FreeRTOS - Design Patterns for RTOS
Consider the following FreeRTOS task code:
void Task(void *pvParameters) {
for (;;) {
if (ulTaskNotifyTake(pdTRUE, 0)) {
printf("Shutdown signal received\n");
break;
}
printf("Task running\n");
vTaskDelay(pdMS_TO_TICKS(100));
}
}What will be printed if the shutdown notification is sent to this task?