FreeRTOS - Task Notifications
Given the code below, what will happen when
Task2 calls xTaskNotifyGive(Task1Handle); while Task1 is blocked on ulTaskNotifyTake(pdTRUE, portMAX_DELAY);?
void Task1(void *pvParameters) {
ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
// Execution resumes here
}
void Task2(void *pvParameters) {
xTaskNotifyGive(Task1Handle);
}