diff options
author | Ryan <fauxpark@gmail.com> | 2020-12-21 13:12:07 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-21 13:12:07 +1100 |
commit | e3211e307ec14c326b03b39806ed7bb11b927d34 (patch) | |
tree | c4a2cd47154ba3f4060d9f76cf5138a251ec71ea /tmk_core/protocol/vusb/vusb.c | |
parent | 0239ce025aca542e4e37ec9003399bab2e92d82b (diff) |
Fix small typo in V-USB configuration descriptor (#11253)
Diffstat (limited to 'tmk_core/protocol/vusb/vusb.c')
-rw-r--r-- | tmk_core/protocol/vusb/vusb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/protocol/vusb/vusb.c b/tmk_core/protocol/vusb/vusb.c index 9b65ba9ac7..9ce75334a5 100644 --- a/tmk_core/protocol/vusb/vusb.c +++ b/tmk_core/protocol/vusb/vusb.c @@ -680,7 +680,7 @@ const PROGMEM usbConfigurationDescriptor_t usbConfigurationDescriptor = { }, .bcdHID = 0x0101, .bCountryCode = 0x00, - .bNumDescriptors = 2, + .bNumDescriptors = 1, .bDescriptorType = USBDESCR_HID_REPORT, .wDescriptorLength = sizeof(raw_hid_report) }, |