diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2011-11-16 08:19:34 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2011-11-16 08:19:34 +0000 |
| commit | 2bca24be7c38ccaddaab90d1085b5772686419d0 (patch) | |
| tree | f54f510c871256fe331810f4d590c66822c463c5 /LUFA/Drivers/USB/Class/Common | |
| parent | 3f8a49aa670646f756bdcb71ed64b89c910fc572 (diff) | |
Fixed misspelled HID_KEYBOARD_MODIFIER_* macros in the HID class driver (thanks to Laszlo Monda).
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1977 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/Drivers/USB/Class/Common')
| -rw-r--r-- | LUFA/Drivers/USB/Class/Common/HID.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/LUFA/Drivers/USB/Class/Common/HID.h b/LUFA/Drivers/USB/Class/Common/HID.h index 74012b67..95b3484f 100644 --- a/LUFA/Drivers/USB/Class/Common/HID.h +++ b/LUFA/Drivers/USB/Class/Common/HID.h @@ -68,28 +68,28 @@ /** \name Keyboard Standard Report Modifier Masks */ //@{ /** Constant for a keyboard report modifier byte, indicating that the keyboard's left control key is currently pressed. */ - #define HID_KEYBOARD_MODIFER_LEFTCTRL (1 << 0) + #define HID_KEYBOARD_MODIFIER_LEFTCTRL (1 << 0) /** Constant for a keyboard report modifier byte, indicating that the keyboard's left shift key is currently pressed. */ - #define HID_KEYBOARD_MODIFER_LEFTSHIFT (1 << 1) + #define HID_KEYBOARD_MODIFIER_LEFTSHIFT (1 << 1) /** Constant for a keyboard report modifier byte, indicating that the keyboard's left alt key is currently pressed. */ - #define HID_KEYBOARD_MODIFER_LEFTALT (1 << 2) + #define HID_KEYBOARD_MODIFIER_LEFTALT (1 << 2) /** Constant for a keyboard report modifier byte, indicating that the keyboard's left GUI key is currently pressed. */ - #define HID_KEYBOARD_MODIFER_LEFTGUI (1 << 3) + #define HID_KEYBOARD_MODIFIER_LEFTGUI (1 << 3) /** Constant for a keyboard report modifier byte, indicating that the keyboard's right control key is currently pressed. */ - #define HID_KEYBOARD_MODIFER_RIGHTCTRL (1 << 4) + #define HID_KEYBOARD_MODIFIER_RIGHTCTRL (1 << 4) /** Constant for a keyboard report modifier byte, indicating that the keyboard's right shift key is currently pressed. */ - #define HID_KEYBOARD_MODIFER_RIGHTSHIFT (1 << 5) + #define HID_KEYBOARD_MODIFIER_RIGHTSHIFT (1 << 5) /** Constant for a keyboard report modifier byte, indicating that the keyboard's right alt key is currently pressed. */ - #define HID_KEYBOARD_MODIFER_RIGHTALT (1 << 6) + #define HID_KEYBOARD_MODIFIER_RIGHTALT (1 << 6) /** Constant for a keyboard report modifier byte, indicating that the keyboard's right GUI key is currently pressed. */ - #define HID_KEYBOARD_MODIFER_RIGHTGUI (1 << 7) + #define HID_KEYBOARD_MODIFIER_RIGHTGUI (1 << 7) //@} /** \name Keyboard Standard Report LED Masks */ |
