Browse Source

[Bug] fix logical minimum in Programmable Button rdesc (#14464)

Thomas Weißschuh 3 years ago
parent
commit
5fb6d57f36
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tmk_core/protocol/usb_descriptor.c

+ 1 - 1
tmk_core/protocol/usb_descriptor.c

@@ -247,7 +247,7 @@ const USB_Descriptor_HIDReport_Datatype_t PROGMEM SharedReport[] = {
             HID_RI_USAGE_PAGE(8, 0x09),    // Button
             HID_RI_USAGE_MINIMUM(8, 0x01), // Button 1
             HID_RI_USAGE_MAXIMUM(8, 0x20), // Button 32
-            HID_RI_LOGICAL_MINIMUM(8, 0x01),
+            HID_RI_LOGICAL_MINIMUM(8, 0x00),
             HID_RI_LOGICAL_MAXIMUM(8, 0x01),
             HID_RI_REPORT_COUNT(8, 32),
             HID_RI_REPORT_SIZE(8, 1),