fix(uart): typo error message in commentary · espressif/arduino-esp32@eccec05 (original) (raw)
File tree
1 file changed
lines changed
- libraries/ESP32/examples/Serial/onReceiveExample
1 file changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -56,7 +56,7 @@ | ||
56 | 56 | // global variable to keep the results from onReceive() |
57 | 57 | String uart_buffer = ""; |
58 | 58 | // The Modbus RTU standard prescribes a silent period corresponding to 3.5 characters between each |
59 | -// message, to be able fo figure out where one message ends and the next one starts. | |
59 | +// message, to be able to figure out where one message ends and the next one starts. | |
60 | 60 | const uint32_t modbusRxTimeoutLimit = 4; |
61 | 61 | const uint32_t baudrate = 19200; |
62 | 62 |