diff options
author | Michael Stapelberg <stapelberg@users.noreply.github.com> | 2021-06-07 00:48:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-07 08:48:26 +1000 |
commit | 7e4f01f454cc03e6c204be9947fc23ea020d4ce5 (patch) | |
tree | 79ad2e5b292bbd4f9bab95dc826f49c7f0ab21c3 /tmk_core | |
parent | 56ce0e4e33c8cb940d431e81cb48eaf7d1cef09f (diff) | |
download | qmk_firmware-7e4f01f454cc03e6c204be9947fc23ea020d4ce5.tar.gz qmk_firmware-7e4f01f454cc03e6c204be9947fc23ea020d4ce5.zip |
core: bump USB spec version in device descriptor to 2.0 (#13078)
Co-authored-by: Ryan <fauxpark@gmail.com>
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 ba7760f28..c88aceb6e 100644 --- a/tmk_core/protocol/usb_descriptor.c +++ b/tmk_core/protocol/usb_descriptor.c | |||
@@ -351,7 +351,7 @@ const USB_Descriptor_Device_t PROGMEM DeviceDescriptor = { | |||
351 | .Size = sizeof(USB_Descriptor_Device_t), | 351 | .Size = sizeof(USB_Descriptor_Device_t), |
352 | .Type = DTYPE_Device | 352 | .Type = DTYPE_Device |
353 | }, | 353 | }, |
354 | .USBSpecification = VERSION_BCD(1, 1, 0), | 354 | .USBSpecification = VERSION_BCD(2, 0, 0), |
355 | 355 | ||
356 | #if VIRTSER_ENABLE | 356 | #if VIRTSER_ENABLE |
357 | .Class = USB_CSCP_IADDeviceClass, | 357 | .Class = USB_CSCP_IADDeviceClass, |