FreeRTOS - Debugging and Monitoring
How should you correctly invoke
vTaskList() to store the task status information in a character array named taskInfo?vTaskList() to store the task status information in a character array named taskInfo?vTaskList() takes a single parameter: a pointer to a character buffer.taskInfo (an array) decays to a pointer to its first element, which is correct.&taskInfo is a pointer to the array, not a char pointer. Calling without parameters is invalid. Passing size is not supported by vTaskList().15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions