X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=usb_mouse.h;h=da975c26266b44a4c46ef0738756ada9b1d36d8f;hb=37ced39ae2ecfc945c21526faffb2449577bbeb7;hp=f1f39776f78e0310a3995ef368717055a0d98a69;hpb=d3b1af9572e123c939fc355474bf12402c86d292;p=max%2Ftmk_keyboard.git diff --git a/usb_mouse.h b/usb_mouse.h index f1f39776..da975c26 100644 --- a/usb_mouse.h +++ b/usb_mouse.h @@ -2,6 +2,7 @@ #define USB_MOUSE_H 1 #include +#include #include "usb.h" @@ -10,11 +11,21 @@ #define MOUSE_SIZE 8 #define MOUSE_BUFFER EP_DOUBLE_BUFFER +#define BIT_BTN1 (1<<0) +#define BIT_BTN2 (1<<1) +#define BIT_BTN3 (1<<2) +#define BIT_BTN4 (1<<3) +#define BIT_BTN5 (1<<4) + + extern uint8_t mouse_buttons; extern uint8_t mouse_protocol; int8_t usb_mouse_buttons(uint8_t left, uint8_t middle, uint8_t right); -int8_t usb_mouse_move(int8_t x, int8_t y, int8_t wheel); +int8_t usb_mouse_move(int8_t x, int8_t y, int8_t wheel, int8_t hwheel); +void usb_mouse_clear(void); +bool usb_mouse_is_sent(void); +void usb_mouse_print(int8_t mouse_x, int8_t mouse_y, int8_t wheel_v, int8_t wheel_h); #endif