taskYIELD_FROM_ISR in MPLAB PIC24 port?

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

taskYIELD_FROM_ISR in MPLAB PIC24 port?

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

taskYIELD_FROM_ISR in MPLAB PIC24 port?

Great! thanks. I’ll try it.