File tree 1 file changed +14
-15
lines changed
1 file changed +14
-15
lines changed Original file line number Diff line number Diff line change @@ -163,24 +163,23 @@ void Adafruit_USBD_Device::task(void) {
163
163
164
164
void Adafruit_USBD_Device::clearConfiguration (void ) {
165
165
tusb_desc_device_t const desc_dev = {.bLength = sizeof (tusb_desc_device_t ),
166
- .bDescriptorType = TUSB_DESC_DEVICE,
166
+ .bDescriptorType = TUSB_DESC_DEVICE,
167
167
#if CFG_TUSB_MCU==OPT_MCU_RP2040 // RP2040 only supports full speed
168
- .bcdUSB = 0x0110 ,
168
+ .bcdUSB = 0x0110 ,
169
169
#else
170
- .bcdUSB = 0x0200 ,
170
+ .bcdUSB = 0x0200 ,
171
171
#endif
172
- .bDeviceClass = 0 ,
173
- .bDeviceSubClass = 0 ,
174
- .bDeviceProtocol = 0 ,
175
- .bMaxPacketSize0 =
176
- CFG_TUD_ENDPOINT0_SIZE,
177
- .idVendor = USB_VID,
178
- .idProduct = USB_PID,
179
- .bcdDevice = 0x0100 ,
180
- .iManufacturer = STRID_MANUFACTURER,
181
- .iProduct = STRID_PRODUCT,
182
- .iSerialNumber = STRID_SERIAL,
183
- .bNumConfigurations = 0x01 };
172
+ .bDeviceClass = 0 ,
173
+ .bDeviceSubClass = 0 ,
174
+ .bDeviceProtocol = 0 ,
175
+ .bMaxPacketSize0 = CFG_TUD_ENDPOINT0_SIZE,
176
+ .idVendor = USB_VID,
177
+ .idProduct = USB_PID,
178
+ .bcdDevice = 0x0100 ,
179
+ .iManufacturer = STRID_MANUFACTURER,
180
+ .iProduct = STRID_PRODUCT,
181
+ .iSerialNumber = STRID_SERIAL,
182
+ .bNumConfigurations = 0x01 };
184
183
185
184
_desc_device = desc_dev;
186
185
You can’t perform that action at this time.
0 commit comments