Using vApplicationTickHook()

rwilder46 wrote on Thursday, September 08, 2011:

I’d like to use xQueueSendFromISR() inside  vApplicationTickHook(). But, how does the task preemption flag pxHigherPriorityTaskWoken get passed back to the kernel, since vApplicationTickHook() has a void return value?

richard_damon wrote on Thursday, September 08, 2011:

The tick interrupt will ALWAYS do a reschedule (unless the schedule is disabled), so it doesn’t need the flag.

rwilder46 wrote on Friday, September 09, 2011:

Thank you.