FreeRTOS - Task Notifications
You wrote this code to notify a task:
void notifyTask() {
xTaskNotify(taskHandle, 0x01, eSetValueWithOverwrite);
}
But the task never receives the notification. What is the likely problem?