taskYIELD_FROM_ISR in MPLAB PIC24 port?

wardw wrote on Wednesday, August 27, 2008:

Greetings.

As the subject says, I would like to "resume from isr" and "yield from isr" in my pic24 code to wake-up a high-priority thread. But taskYIELD_FROM_ISR seems to not be in this port.

Am I out of luck? (or simply dumb? – wouldn’t be the first time, ask my wife…)

Thanks,

– Ward

picmeup wrote on Wednesday, August 27, 2008:

PIC24 isr can make call to taskYIELD() directly in isr but only as the last function call. The uart code shows an example.

wardw wrote on Wednesday, August 27, 2008:

Great! thanks. I’ll try it.