diff options
author | Drashna Jaelre <drashna@live.com> | 2019-02-19 04:00:19 +0100 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2019-04-12 22:55:59 +0200 |
commit | a9a5fd754ed30a3d9453c77b5f622898848d3042 (patch) | |
tree | f3ee8a77862781bcd76d6f1b6ded01137bbba273 | |
parent | c27d96b4c1ed8aa5bf9cad20380b8f723b149a83 (diff) | |
download | qmk_firmware-a9a5fd754ed30a3d9453c77b5f622898848d3042.tar.gz qmk_firmware-a9a5fd754ed30a3d9453c77b5f622898848d3042.tar.xz |
Max out range for max compatibility
-rw-r--r-- | tmk_core/protocol/arm_atsam/usb/udi_hid_kbd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tmk_core/protocol/arm_atsam/usb/udi_hid_kbd.c b/tmk_core/protocol/arm_atsam/usb/udi_hid_kbd.c index 467a284a4..b715b7026 100644 --- a/tmk_core/protocol/arm_atsam/usb/udi_hid_kbd.c +++ b/tmk_core/protocol/arm_atsam/usb/udi_hid_kbd.c @@ -109,9 +109,9 @@ UDC_DESC_STORAGE udi_hid_kbd_report_desc_t udi_hid_kbd_report_desc = { 0x81, 0x02, // Input (Data, Variable, Absolute) 0x81, 0x01, // Input (Constant) 0x19, 0x00, // Usage Minimum (0) - 0x29, 0xE7, // Usage Maximum (231) + 0x29, 0xFF, // Usage Maximum (255) 0x15, 0x00, // Logical Minimum (0) - 0x25, 0xE7, // Logical Maximum (231) + 0x25, 0xFF, // Logical Maximum (255) 0x75, 0x08, // Report Size (8) 0x95, 0x06, // Report Count (6) 0x81, 0x00, // Input (Data, Array) |