FreeRTOS always turned on: any problems?

Hi. Are there any problems to leave always turned on the FreeRTOS? For example: tick counter overflow? Thanks.

FreeRTOS always turned on: any problems?

Most systems will just roll the counter – xTickCount. take a look in tasks.c in vTaskIncrementTick() on how this is handled. your application can suspend or stop the scheduler any time it wants. Regards, John W.