From 991534a6b51d1558bcc588946903d9941bdd90bf Mon Sep 17 00:00:00 2001 From: Peter Lawrence <12226419+majbthrd@users.noreply.github.com> Date: Mon, 21 Mar 2022 15:18:09 -0500 Subject: [PATCH] change bcdUSB to 1.10 and bcdDevice to 1.04 --- usb_descriptors.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usb_descriptors.c b/usb_descriptors.c index aca8eaa..3ae77bb 100644 --- a/usb_descriptors.c +++ b/usb_descriptors.c @@ -16,7 +16,7 @@ tusb_desc_device_t const desc_device = { .bLength = sizeof(tusb_desc_device_t), .bDescriptorType = TUSB_DESC_DEVICE, - .bcdUSB = 0x0200, + .bcdUSB = 0x0110, .bDeviceClass = 0x00, .bDeviceSubClass = 0x00, .bDeviceProtocol = 0x00, @@ -25,7 +25,7 @@ tusb_desc_device_t const desc_device = /* using Dapper Miser CMSIS-DAP VID:PID */ .idVendor = 0x1209, .idProduct = 0x2488, - .bcdDevice = 0x1003, + .bcdDevice = 0x1004, .iManufacturer = STRID_MANUFACTURER, .iProduct = STRID_PRODUCT,