I run FreeRTOS 10.01 on stm32l476. A sequence number is printed out from 1 task every 100ms.
The trace on RTT console in embedded studio is like:
0, 1, 2, 3, 4, 5, 6.....
If I enable configUSE_TICKLESS_IDLE, The trace becomes incorrect.
It could be like:
0, 1, 2, 0, 1, 2, 3, 4, 0, 1, 2....
I also output the number to UART and it increases correctly.
I am wondering if there is a solution for it?
The trace on RTT console in embedded studio is like:
0, 1, 2, 3, 4, 5, 6.....
If I enable configUSE_TICKLESS_IDLE, The trace becomes incorrect.
It could be like:
0, 1, 2, 0, 1, 2, 3, 4, 0, 1, 2....
I also output the number to UART and it increases correctly.
I am wondering if there is a solution for it?
The post was edited 1 time, last by blanc ().