summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/usbstack/usb_core.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/firmware/usbstack/usb_core.c b/firmware/usbstack/usb_core.c
index 5a748bf55f..d16ada276b 100644
--- a/firmware/usbstack/usb_core.c
+++ b/firmware/usbstack/usb_core.c
@@ -62,7 +62,11 @@
62static const struct usb_device_descriptor device_descriptor= { 62static const struct usb_device_descriptor device_descriptor= {
63 .bLength = sizeof(struct usb_device_descriptor), 63 .bLength = sizeof(struct usb_device_descriptor),
64 .bDescriptorType = USB_DT_DEVICE, 64 .bDescriptorType = USB_DT_DEVICE,
65#ifdef USE_HIGH_SPEED
65 .bcdUSB = 0x0200, 66 .bcdUSB = 0x0200,
67#else
68 .bcdUSB = 0x0110,
69#endif
66 .bDeviceClass = USB_CLASS_PER_INTERFACE, 70 .bDeviceClass = USB_CLASS_PER_INTERFACE,
67 .bDeviceSubClass = 0, 71 .bDeviceSubClass = 0,
68 .bDeviceProtocol = 0, 72 .bDeviceProtocol = 0,