Page 1 of 1

How can i use the ESP_INTR_ALLOC() function to pin a interrupt and it's ISR to a specific core?

Posted: Wed Nov 01, 2017 9:04 pm
by YvesDS
Hi,

How can I use the "ESP_INTR_ALLOC() API to pin a interrupt to a specific core, and can i be sure that the ISR function would be on the same core?

I can nowhere find a example for this question
Grtz,
Yves

Re: How can i use the ESP_INTR_ALLOC() function to pin a interrupt and it's ISR to a specific core?

Posted: Thu Nov 02, 2017 2:26 am
by WiFive
It is advised to use xTaskCreatePinnedToCore() with a specific CoreID argument to create tasks that will allocate interrupts.