Hi,
My question is, when I set a callback using the following API call,
mgos_uart_set_dispatcher(_uartNo, uart_dispatcher, (void *)NULL);
Does the "uart_dispatcher" function runs in ISR context?
I have failed to find any documentation that provided me an answer.
Regards,
Mohammad
Comments
If you take a look in this code, your question will be answered: every function labeled/tagged with "IRAM" runs in the ISR context, others not. It's that simple.