vTaskList question

Hi, Im using freertos with AT90CAN128 and im trying to use vTaskList for debugging, but it display some information that i didnt figure out what it is. The info is shown like this taskName        Status       Priority       UnknownInfo1       UnknownInfo2 What is those UnknownInfo?????? thanks

vTaskList question

UnknownInfo1 is the high water mark of the task stack. It gives the least number of free bytes of the task stack since the scheduler is running. UnknownInfo2 is the task ID. The ID is assigned automatically on task creation and incremented for each following task. This information is only availabe when configUSE_TRACE_FACILITY ist set. I hope that helps.

vTaskList question

thanks thats what i wanted ^^