Thanks to visit codestin.com Credit goes to github.com
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 e30b0bf commit 1fc148dCopy full SHA for 1fc148d
cores/esp32/HWCDC.cpp
@@ -213,7 +213,7 @@ static void flushTXBuffer(const uint8_t *buffer, size_t size) {
213
if (queued_size && queued_buff != NULL) {
214
vRingbufferReturnItem(tx_ring_buf, (void *)queued_buff);
215
}
216
- // now add the new data that fits to the ring buffer
+ // now add the new data that fits into the ring buffer
217
uint8_t *bptr = (uint8_t *)buffer;
218
if (size >= ringbufferLength) {
219
size = ringbufferLength;
0 commit comments