summaryrefslogtreecommitdiff
path: root/tmk_core
diff options
context:
space:
mode:
authorThomas Weißschuh <thomas@t-8ch.de>2021-09-16 09:04:26 +0200
committerGitHub <noreply@github.com>2021-09-16 17:04:26 +1000
commit5fb6d57f36bdafa41b6346942ad6ff975aa897ba (patch)
treefec3ed3979ec7b3992fd1a953a92eb0fe87ba4fc /tmk_core
parente2994eed66644d42fc02f296bfa655fe0b2ca2ba (diff)
[Bug] fix logical minimum in Programmable Button rdesc (#14464)
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/protocol/usb_descriptor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/protocol/usb_descriptor.c b/tmk_core/protocol/usb_descriptor.c
index ebe27a1450..a43755f899 100644
--- a/tmk_core/protocol/usb_descriptor.c
+++ b/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),