FreeRTOS - Task Scheduling
Find the problem in this FreeRTOS idle hook code:
void vApplicationIdleHook(void) {
static int counter = 0;
counter++;
if(counter > 1000000) {
counter = 0;
}
}Find the problem in this FreeRTOS idle hook code:
void vApplicationIdleHook(void) {
static int counter = 0;
counter++;
if(counter > 1000000) {
counter = 0;
}
}15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions