We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cac99b commit 252bf6fCopy full SHA for 252bf6f
libraries/ESP32/examples/Serial/onReceiveExample/onReceiveExample.ino
@@ -85,7 +85,7 @@ void setup() {
85
// setClockSource() must be called before begin()
86
UART0.setClockSource(UART_CLK_SRC_APB);
87
#endif
88
- // the amount of data received or waiting to be proessed shall not exceed this limit of 1024 bytes
+ // the amount of data received or waiting to be processed shall not exceed this limit (1024 bytes)
89
UART0.setRxBufferSize(1024); // default is 256 bytes
90
UART0.begin(baudrate); // default pins and default mode 8N1 (8 bits data, no parity bit, 1 stopbit)
91
// set RX Timeout based on UART symbols ~ 3.5 symbols of 11 bits (MODBUS standard) ~= 2 ms at 19200
0 commit comments