Page 1 of 1

Is possible avoid xQueueSendFromISR within in ISR?

Posted: Mon Oct 05, 2020 8:04 pm
by iotdeveloperfw
Hi, I'm new. I'm working with HW timers interruption. So, my question is: Is it possible to avoid xQueueSendFromISR in order to get back to the point that jumped previously after the end of the ISR function was executed?.


THanks.

Re: Is possible avoid xQueueSendFromISR within in ISR?

Posted: Tue Oct 06, 2020 7:07 am
by ESP_Sprite
That should happen automatically. Your ISR is a function and when it returns, your program should continue running from the place it was before it was interrupted. No need to add anything specific for that to the ISR.