Skip to content

Commit 8833edb

Browse files
ci(pre-commit): Apply automatic fixes
1 parent 743b6e9 commit 8833edb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/esp32/USBCDC.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ size_t USBCDC::write(const uint8_t *buffer, size_t size) {
405405
return 0;
406406
}
407407
size_t to_send = size, so_far = 0;
408-
// writeTimeout will prevent that TinyUSB failure locks the while(to_send) loop
408+
// writeTimeout will prevent that TinyUSB failure locks the while(to_send) loop
409409
uint32_t writeTimeout = millis() + tx_timeout_ms;
410410
while (to_send) {
411411
if (!tud_cdc_n_connected(itf) || (int32_t)(millis() - writeTimeout) >= 0) {

0 commit comments

Comments
 (0)