FreeRTOS - Task Notifications
Identify the issue in the following FreeRTOS code snippet using
xTaskNotifyGive():
void Task1(void *pvParameters) {
ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
}
void Task2(void *pvParameters) {
xTaskNotifyGive();
}