We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 576d675 commit ab157cfCopy full SHA for ab157cf
cores/esp32/HWCDC.cpp
@@ -350,7 +350,7 @@ size_t HWCDC::write(const uint8_t *buffer, size_t size)
350
space = size;
351
}
352
// Non-Blocking method, Sending data to ringbuffer, and handle the data in ISR.
353
- // USB may be plugged, but CDC may be not connected ==> do not block and flush TX buffer, keeping in the buffer just the lastest data
+ // USB may be plugged, but CDC may be not connected ==> do not block and flush TX buffer, keeping just the lastest data buffered
354
if(xRingbufferSend(tx_ring_buf, (void*) (buffer), space, 0) != pdTRUE){
355
size = 0;
356
} else {
0 commit comments