Task switching does not work without osDelay in loop

Hi, In this simple example, I have created a task where I start a Timer (for a blinking LED). After the timer is running a start the endless loop. The LED will only blink if I include the osDelay(1) function in it. Am I missing something? Best, Erik ~~~ void ControlCenter(void const *argument) { osTimerId activityLedID;
osTimerDef(activityLed, ActivityLed);
activityLedID = osTimerCreate(osTimer(activityLed), osTimerPeriodic, NULL);
osTimerStart(activityLedID, 20UL);

while(1)
{
  osDelay(1); // Why do I need this ????
}
} ~~~

Task switching does not work without osDelay in loop

Check your task prio vs. configTIMERTASKPRIORITY. Seems that your task starves the timer task due to running at higher prio than the timer service. The delay puts your task in blocked state and allows the timer task to run for a while. You should block your task(s) somehow (waiting for an event) to avoid hogging the CPU doing nothing.

Task switching does not work without osDelay in loop

Another posibility is that you have configured FreeRTOS to not use preemption, in which case the loop needs some call that allows FreeRTOS to preempt the task. Also, there is no reason for a user task to just have a while(1) {} loop, a task should only use the CPU when it has something to do, and when it doesn’t, it should block till it has something (or exit if it is totally done).

Task switching does not work without osDelay in loop

Thanks, it was indeed a prio problem.