FreeRTOS - Task Notifications
Identify the problem in this FreeRTOS ISR notification code snippet:
BaseType_t xHigherPriorityTaskWoken = pdFALSE;
xTaskNotifyFromISR(taskHandle, 0x01, eSetBits, &xHigherPriorityTaskWoken);
if (xHigherPriorityTaskWoken) {
vTaskDelay(10);
}