Search found 2 matches
- Thu Dec 20, 2018 3:15 pm
- Forum: ESP-IDF
- Topic: How to reduce UART RX Latency
- Replies: 2
- Views: 5055
Re: How to reduce UART RX Latency
Thanks for the info it worked, I am getting an interrupt after 8 us approx for each byte recieved. For future reference I added this to my code uart_intr_config_t uart_intr = { .intr_enable_mask = UART_RXFIFO_FULL_INT_ENA_M | UART_RXFIFO_TOUT_INT_ENA_M | UART_FRM_ERR_INT_ENA_M | UART_RXFIFO_OVF_INT_...
- Tue Dec 18, 2018 4:33 pm
- Forum: ESP-IDF
- Topic: How to reduce UART RX Latency
- Replies: 2
- Views: 5055
How to reduce UART RX Latency
Hi guys, I am implementing an interrupt handler for reception of data through the UART of the ESP32. Ive measured the response by sending the same data I recieve through the TX output of the UART. The problem is that I want to reduce the current latency time I have (2 ms). Is there any way of gettin...