Suggest rewriting some of the ESP-IDF UART doc

zliudr
Posts: 357
Joined: Thu Oct 03, 2019 5:15 am

Suggest rewriting some of the ESP-IDF UART doc

Postby zliudr » Fri Dec 13, 2019 6:49 am

I've read from the technical manual that there is a shared 1KB memory among the 3 UART controllers for RX and TX fifo buffer. With ESP-IDF uart driver installer, you can provide RX and TX fifo buffer. I want to suggest the author(s) of the document to make clear distinctions between the "hardware" shared FIFO buffer that I think is managed independently from CPU and the "software" buffer that I think is filled by CPU emptying the hardware FIFO RX buffer or dumping to the hardware FIFO TX buffer. As the doc reads now, there is no distinction:

https://docs.espressif.com/projects/esp ... /uart.html

For instance, the uart_read_bytes() says it reads from RX buffer but what if there are m bytes in the hardware buffer and n bytes in the software buffer? Will read returns them all if I ask to read a large enough length?

WiFive
Posts: 3529
Joined: Tue Dec 01, 2015 7:35 am

Re: Suggest rewriting some of the ESP-IDF UART doc

Postby WiFive » Fri Dec 13, 2019 6:55 am

Data is copied out of hardware fifo into ringbuffer when ringbuffer is full (threshold) or when frame ends (rx line idle).

zliudr
Posts: 357
Joined: Thu Oct 03, 2019 5:15 am

Re: Suggest rewriting some of the ESP-IDF UART doc

Postby zliudr » Sun Dec 15, 2019 6:07 am

Thanks for clarifying. So there are interrupts and handlers such as FIFO full and RX idle for those? FYI, from my logic analyzer, the stop after each byte is rather short (nothing wrong with being short), compared with what I get from an arduino board's 16U2 that acts as USB/UART adapter. Same baud rate, 16U2's firmware takes almost twice the time to transfer the same data as ESP32 because it has long stops.

Who is online

Users browsing this forum: Bing [Bot] and 108 guests