From dde643925725a17a13bcbe209f54a22d66530890 Mon Sep 17 00:00:00 2001 From: Drashna Jaelre Date: Thu, 8 Jul 2021 00:05:09 -0700 Subject: Fix USB Descriptor issue with Endpoints (#340) --- tmk_core/protocol/usb_descriptor.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tmk_core/protocol/usb_descriptor.c b/tmk_core/protocol/usb_descriptor.c index 4a5edb1907..71d45e5bfe 100644 --- a/tmk_core/protocol/usb_descriptor.c +++ b/tmk_core/protocol/usb_descriptor.c @@ -364,11 +364,8 @@ const USB_Descriptor_Device_t PROGMEM DeviceDescriptor = { .Size = sizeof(USB_Descriptor_Device_t), .Type = DTYPE_Device }, -#if WEBUSB_ENABLE - .USBSpecification = VERSION_BCD(2, 1, 0), -#else - .USBSpecification = VERSION_BCD(1, 1, 0), -#endif + .USBSpecification = VERSION_BCD(2, 0, 0), + #if VIRTSER_ENABLE .Class = USB_CSCP_IADDeviceClass, .SubClass = USB_CSCP_IADDeviceSubclass, -- cgit v1.2.3