Search Results
Search results 1-3 of 3.
This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.
-
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?