FreeRTOS - Task Scheduling
Given this FreeRTOS idle hook code:
void vApplicationIdleHook(void) {
vTaskDelay(1000);
printf("Idle hook delay\n");
}What will happen when this runs?
Given this FreeRTOS idle hook code:
void vApplicationIdleHook(void) {
vTaskDelay(1000);
printf("Idle hook delay\n");
}15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions