Skip to content

Commit 65dc1bd

Browse files
committed
pre-commit Clang format failure. adafruit#491
1 parent 0438323 commit 65dc1bd

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

src/arduino/Adafruit_USBD_Device.cpp

+14-15
Original file line numberDiff line numberDiff line change
@@ -163,24 +163,23 @@ void Adafruit_USBD_Device::task(void) {
163163

164164
void Adafruit_USBD_Device::clearConfiguration(void) {
165165
tusb_desc_device_t const desc_dev = {.bLength = sizeof(tusb_desc_device_t),
166-
.bDescriptorType = TUSB_DESC_DEVICE,
166+
.bDescriptorType = TUSB_DESC_DEVICE,
167167
#if CFG_TUSB_MCU==OPT_MCU_RP2040 // RP2040 only supports full speed
168-
.bcdUSB = 0x0110,
168+
.bcdUSB = 0x0110,
169169
#else
170-
.bcdUSB = 0x0200,
170+
.bcdUSB = 0x0200,
171171
#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};
184183

185184
_desc_device = desc_dev;
186185

0 commit comments

Comments
 (0)