diff options
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/button.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/firmware/export/button.h b/firmware/export/button.h index 3f6052a..6276a03 100644 --- a/firmware/export/button.h +++ b/firmware/export/button.h @@ -81,13 +81,15 @@ void wheel_send_events(bool send); int button_apply_acceleration(const unsigned int data); #endif -#define BUTTON_NONE 0x00000000 +#define BUTTON_NONE 0x00000000 /* Button modifiers */ -#define BUTTON_REL 0x02000000 -#define BUTTON_REPEAT 0x04000000 -#define BUTTON_TOUCHSCREEN 0x08000000 -#define BUTTON_MULTIMEDIA 0x10000000 +#define BUTTON_REL 0x02000000 +#define BUTTON_REPEAT 0x04000000 +/* Special buttons */ +#define BUTTON_TOUCHSCREEN 0x08000000 +#define BUTTON_MULTIMEDIA 0x10000000 +#define BUTTON_REDRAW 0x20000000 #define BUTTON_MULTIMEDIA_PLAYPAUSE (BUTTON_MULTIMEDIA|0x01) #define BUTTON_MULTIMEDIA_STOP (BUTTON_MULTIMEDIA|0x02) |