diff options
Diffstat (limited to 'tinyusb/class')
| -rw-r--r-- | tinyusb/class/hid.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tinyusb/class/hid.h b/tinyusb/class/hid.h index e68d1596f..3c550cd3e 100644 --- a/tinyusb/class/hid.h +++ b/tinyusb/class/hid.h @@ -125,9 +125,9 @@ typedef ATTR_PACKED_STRUCT(struct) * \brief buttons codes for HID mouse */ enum { - HID_MOUSEBUTTON_LEFT = BIT_(0), - HID_MOUSEBUTTON_RIGHT = BIT_(1), - HID_MOUSEBUTTON_MIDDLE = BIT_(2) + MOUSE_BUTTON_LEFT = BIT_(0), + MOUSE_BUTTON_RIGHT = BIT_(1), + MOUSE_BUTTON_MIDDLE = BIT_(2) }; /** |
