From 9c668478439b0f987f5a32dfd07cba8adaefcc83 Mon Sep 17 00:00:00 2001 From: Florian Didron Date: Thu, 31 Oct 2019 18:07:04 +0900 Subject: [PATCH] feat: set bcdUSb to 0x210 to trigger BOS descriptors --- tmk_core/protocol/usb_descriptor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmk_core/protocol/usb_descriptor.c b/tmk_core/protocol/usb_descriptor.c index ee930bf90e..aeba363eae 100644 --- a/tmk_core/protocol/usb_descriptor.c +++ b/tmk_core/protocol/usb_descriptor.c @@ -285,7 +285,7 @@ const USB_Descriptor_BOS_t PROGMEM BOSDescriptor = BOS_DESCRIPTOR( * Device descriptor */ const USB_Descriptor_Device_t PROGMEM DeviceDescriptor = {.Header = {.Size = sizeof(USB_Descriptor_Device_t), .Type = DTYPE_Device}, - .USBSpecification = VERSION_BCD(2, 0, 0), + .USBSpecification = VERSION_BCD(2, 1, 0), #if VIRTSER_ENABLE .Class = USB_CSCP_IADDeviceClass, .SubClass = USB_CSCP_IADDeviceSubclass,