FreeRTOS - Interrupt Management
Given this ISR code snippet, what will be the value of
higherPriorityTaskWoken after calling xQueueSendFromISR if a higher priority task was woken?
BaseType_t higherPriorityTaskWoken = pdFALSE;
xQueueSendFromISR(queue, &data, &higherPriorityTaskWoken);
