We are communicating with server through modem connected to esp8266 over UART0. When our server sends a message [256] bytes, We get UART Rx overflow and message RX OVF!! is printed on console that is coming from uart.c
We have increased following defines in uart.h as the maximum size packet that our server can send is 768 bytes.
#define UART_TX_BUFFER_SIZE 768 //Ring buffer length of tx buffer
#define UART_RX_BUFFER_SIZE 768 //Ring buffer length of rx buffer
However this does not help to stop RX OVF!!
How can we increase the Receive buffer to avoid RX OVF!! error?
esp is communicated with modem on baud rate 115200
Does UART0 support Software Flow Control (XON/XOFF)?
Your help is appreciated.Statistics: Posted by gailu — Thu Oct 12, 2017 6:03 pm
]]>