Hi,
I use Keil uVision to develop Microcontroller Softwares. I use freeRTOS as default RTOS and I wanted to know if there is a way to view freeRTOS statistics like current threads, memory usage, etc…
I know that using the default Keil RTOS ( RTX ), stats view is possible, but I dont want to leave freeRTOS.
For per-task statistics like the task stack high-watermark, current state of the task, current priority of the task, total runtime that is allocated to the task so far etc., you can use uxTaskGetSystemState() and vTaskGetInfo().