Search found 1 match
- 06 Sep 2021 05:45
- Forum: Z-Uno
- Topic: Increase UART Rx buffer
- Replies: 3
- Views: 3821
Re: Increase UART Rx buffer
you can use the following UART settings Serial.begin(speed, RX_pin, TX_pin, *buffer, len) // to set your buffer Note that the buffer must be larger than the received packet. In addition, for guaranteed reception, packets of 1024 bytes should not arrive faster than 350ms. your code will look like thi...