Is there a way to generate an uart interrupt on an ESP32 as soon as a single character has been received?
I know you can generate an interrupt when the whole message has been received, or on a specific pattern, buffer overflows, errors, etc., but I am looking for a (simple) way to this on a per character basis.
Assuming you're working with ESP IDF, you can configure the UART interrupts to trigger from a RX threshold of a single byte quite easily. Omitting all error handling: