diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2010-12-13 06:05:05 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2010-12-13 06:05:05 +0000 |
| commit | 012e3a0433b8536b6731be1016a930007a54e857 (patch) | |
| tree | c1f91e88c40e35ccea2cdfa580bc2f8f921a7f7c /LUFA/Drivers/USB/Class | |
| parent | 9e17a68245dda43b741dc193b1098729886c94c2 (diff) | |
Fixed incorrect definition of the HID_KEYBOARD_SC_D constant in the HID class driver (thanks to Opendous Inc.).
Add extra comments to the ISPTarget.c source file in the AVRISP-MKII clone project.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1604 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/Drivers/USB/Class')
| -rw-r--r-- | LUFA/Drivers/USB/Class/Common/HID.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/LUFA/Drivers/USB/Class/Common/HID.h b/LUFA/Drivers/USB/Class/Common/HID.h index d9824dbd..024158aa 100644 --- a/LUFA/Drivers/USB/Class/Common/HID.h +++ b/LUFA/Drivers/USB/Class/Common/HID.h @@ -111,7 +111,7 @@ #define HID_KEYBOARD_SC_A 0x04 #define HID_KEYBOARD_SC_B 0x05 #define HID_KEYBOARD_SC_C 0x06 - #define HID_KEYBOARD_SC_D 0x04 + #define HID_KEYBOARD_SC_D 0x07 #define HID_KEYBOARD_SC_E 0x08 #define HID_KEYBOARD_SC_F 0x09 #define HID_KEYBOARD_SC_G 0x0A @@ -239,7 +239,8 @@ #define HID_KEYBOARD_SC_KEYPAD_EQUAL_SIGN 0x86 #define HID_KEYBOARD_SC_INTERNATIONAL1 0x87 #define HID_KEYBOARD_SC_INTERNATIONAL2 0x88 - #define HID_KEYBOARD_SC_INTERNATIONAL3 0x8A + #define HID_KEYBOARD_SC_INTERNATIONAL3 0x89 + #define HID_KEYBOARD_SC_INTERNATIONAL4 0x8A #define HID_KEYBOARD_SC_INTERNATIONAL5 0x8B #define HID_KEYBOARD_SC_INTERNATIONAL6 0x8C #define HID_KEYBOARD_SC_INTERNATIONAL7 0x8D |
