Skip to content

Commit

Permalink
fix Logical Maximum to be recognized as 255 instead of -1
Browse files Browse the repository at this point in the history
SEE ALSO: qmk#312
  • Loading branch information
ma2gedev authored and Gareth RSS Pye committed May 1, 2018
1 parent c2c7c30 commit ad04044
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tmk_core/protocol/chibios/usb_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ static const uint8_t keyboard_hid_report_desc_data[] = {
0x95, KBD_REPORT_KEYS, // Report Count (),
0x75, 0x08, // Report Size (8),
0x15, 0x00, // Logical Minimum (0),
0x25, 0xFF, // Logical Maximum(255),
0x26, 0xFF, 0x00, // Logical Maximum(255),
0x05, 0x07, // Usage Page (Key Codes),
0x19, 0x00, // Usage Minimum (0),
0x29, 0xFF, // Usage Maximum (255),
Expand Down

0 comments on commit ad04044

Please sign in to comment.