diff options
author | tmk <nobody@nowhere> | 2012-06-28 23:54:54 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2012-06-28 23:54:54 +0900 |
commit | 52011f08c9b4fcfc55817d24bdc4b4ff7b4fe06f (patch) | |
tree | 20286bfd84d3d65b8ef4729c36b1e80f789bcd3e | |
parent | cc68adeb5744cba9e8650bab04ff0f0a4033db9f (diff) |
Make console compatible with PJRC hid_listen.
-rw-r--r-- | protocol/lufa/descriptor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocol/lufa/descriptor.c b/protocol/lufa/descriptor.c index e9925cca29..59adcd184c 100644 --- a/protocol/lufa/descriptor.c +++ b/protocol/lufa/descriptor.c @@ -130,8 +130,8 @@ const USB_Descriptor_HIDReport_Datatype_t PROGMEM MouseReport[] = const USB_Descriptor_HIDReport_Datatype_t PROGMEM ConsoleReport[] = { - HID_RI_USAGE_PAGE(16, 0xFF00), /* Vendor Page 0 */ - HID_RI_USAGE(8, 0x01), /* Vendor Usage 1 */ + HID_RI_USAGE_PAGE(16, 0xFF31), /* Vendor Page(PJRC Teensy compatible) */ + HID_RI_USAGE(8, 0x74), /* Vendor Usage(PJRC Teensy compatible) */ HID_RI_COLLECTION(8, 0x01), /* Application */ HID_RI_USAGE(8, 0x02), /* Vendor Usage 2 */ HID_RI_LOGICAL_MINIMUM(8, 0x00), |