ESP8266 Developer Zone The Official ESP8266 Forum 2017-10-14T20:34:19+08:00 https://bbs.espressif.com:443/feed.php?f=7&t=6889 2017-10-14T20:34:19+08:00 2017-10-14T20:34:19+08:00 https://bbs.espressif.com:443/viewtopic.php?t=6889&p=16431#p16431 <![CDATA[Re: UART0 Receive Overflow [RX OVF!!]]]> The second thing I'd try is to lower the baud rate (in the sender and receiver of course).

Statistics: Posted by blubb — Sat Oct 14, 2017 8:34 pm


]]>
2017-10-14T03:47:02+08:00 2017-10-14T03:47:02+08:00 https://bbs.espressif.com:443/viewtopic.php?t=6889&p=16421#p16421 <![CDATA[Re: UART0 Receive Overflow [RX OVF!!]]]>
WRITE_PERI_REG(UART_CONF1(uart_no),
((100 & UART_RXFIFO_FULL_THRHD) << UART_RXFIFO_FULL_THRHD_S) |

Can you please let me know what is the maximum threshold we can set?
What is the maximum size of UART0 RXFIFO?

Statistics: Posted by gailu — Sat Oct 14, 2017 3:47 am


]]>
2017-10-12T18:03:23+08:00 2017-10-12T18:03:23+08:00 https://bbs.espressif.com:443/viewtopic.php?t=6889&p=16394#p16394 <![CDATA[UART0 Receive Overflow [RX OVF!!]]]>
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


]]>