Page 1 of 1

ESP32 UART RXINT interrupt is missing

Posted: Thu Jan 07, 2021 8:24 pm
by dvcam99
Hello FC Team,

I`m missing the RXINT Interrupt function inside the ESP32 command interrupt icon.

I´ll compare this with the PIC-8 command interrupt icon. There you have a choice to select this important function.


Is a RXINT possible with the ESP32??

BR

Dirk

Re: ESP32 UART RXINT interrupt is missing

Posted: Fri Jan 08, 2021 5:16 pm
by stefan.erni
Hi Dvcam99

Interrupt is working on my esp32. I used A3 for rx pin
and
GPIO3 for the Interrupt

regards
Stefan
IRQ_2021-01-08_18-14-34.png
IRQ_2021-01-08_18-14-34.png (13.25 KiB) Viewed 3971 times

Re: ESP32 UART RXINT interrupt is missing

Posted: Fri Jan 08, 2021 10:52 pm
by dvcam99
Hi Stefan,

many thanks for the feedback.

Yes I saw this possibility too but you can trigger only at the rising or falling edge of the input.

I`m looking for example for incoming received byte trigger. Same like we have in the PIC8 section.

BR

Dirk

Re: ESP32 UART RXINT interrupt is missing

Posted: Tue Jan 12, 2021 4:11 pm
by LeighM
UART Rx interrupt is now done, it will be available from the auto update system sometime soon

Note that UART receive is buffered, so interrupt is not as necessary on ESP32 as other (non-RTOS) devices

Re: ESP32 UART RXINT interrupt is missing

Posted: Sat Jan 16, 2021 11:12 am
by dvcam99
Hello Leigh,

very good news!!

I`ll check it out asap it is available.

Regarding the ESP32 buffer, do you know how many bytes it can store??

BR

Dirk

Re: ESP32 UART RXINT interrupt is missing

Posted: Sat Jan 16, 2021 2:35 pm
by LeighM
A quick Google seems to indicate 128

Re: ESP32 UART RXINT interrupt is missing

Posted: Tue Jan 19, 2021 7:26 pm
by dvcam99
...many thanks!!

BR

Dirk