diff options
| author | Thomas Weißschuh <thomas@t-8ch.de> | 2021-09-16 09:04:26 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-16 17:04:26 +1000 |
| commit | 5fb6d57f36bdafa41b6346942ad6ff975aa897ba (patch) | |
| tree | fec3ed3979ec7b3992fd1a953a92eb0fe87ba4fc /tmk_core | |
| parent | e2994eed66644d42fc02f296bfa655fe0b2ca2ba (diff) | |
| download | qmk_firmware-5fb6d57f36bdafa41b6346942ad6ff975aa897ba.tar.gz qmk_firmware-5fb6d57f36bdafa41b6346942ad6ff975aa897ba.zip | |
[Bug] fix logical minimum in Programmable Button rdesc (#14464)
Diffstat (limited to 'tmk_core')
| -rw-r--r-- | tmk_core/protocol/usb_descriptor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/protocol/usb_descriptor.c b/tmk_core/protocol/usb_descriptor.c index ebe27a145..a43755f89 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[] = { | |||
| 247 | HID_RI_USAGE_PAGE(8, 0x09), // Button | 247 | HID_RI_USAGE_PAGE(8, 0x09), // Button |
| 248 | HID_RI_USAGE_MINIMUM(8, 0x01), // Button 1 | 248 | HID_RI_USAGE_MINIMUM(8, 0x01), // Button 1 |
| 249 | HID_RI_USAGE_MAXIMUM(8, 0x20), // Button 32 | 249 | HID_RI_USAGE_MAXIMUM(8, 0x20), // Button 32 |
| 250 | HID_RI_LOGICAL_MINIMUM(8, 0x01), | 250 | HID_RI_LOGICAL_MINIMUM(8, 0x00), |
| 251 | HID_RI_LOGICAL_MAXIMUM(8, 0x01), | 251 | HID_RI_LOGICAL_MAXIMUM(8, 0x01), |
| 252 | HID_RI_REPORT_COUNT(8, 32), | 252 | HID_RI_REPORT_COUNT(8, 32), |
| 253 | HID_RI_REPORT_SIZE(8, 1), | 253 | HID_RI_REPORT_SIZE(8, 1), |
