Hello,
I am a beginner about FreeRTOS. I train myself with the soft of Arduino but now I try to use FreeRTOS with Atmel Studio.
I just creat one task with the only job is to print something :
void TFT_task_coil(void *param)
{
while(1)
{
printf(“Tache coil \r\n”);
vTaskDelay(10);
} //End of while
vTaskDelete( NULL );
}
and it is the only I task I create and launch with the scheduler but when I look at Putty, the print is just make 1 time :
Why my task only run once and not every 10ms ?