send all keycodes beyond the basic 104 keys so f13-f24 etc work

f13
Stefan Dorn 2016-01-04 16:04:48 +00:00
parent d40599230a
commit 590afa8c66
1 changed files with 2 additions and 2 deletions

View File

@ -140,10 +140,10 @@ static const uint8_t PROGMEM keyboard_hid_report_desc[] = {
0x95, 0x06, // Report Count (6),
0x75, 0x08, // Report Size (8),
0x15, 0x00, // Logical Minimum (0),
0x25, 0x68, // Logical Maximum(104),
0x25, 0xff, // Logical Maximum(255),
0x05, 0x07, // Usage Page (Key Codes),
0x19, 0x00, // Usage Minimum (0),
0x29, 0x68, // Usage Maximum (104),
0x29, 0xff, // Usage Maximum (255),
0x81, 0x00, // Input (Data, Array),
0xc0 // End Collection
};