FreeRTOS - Debugging and Monitoring
Given the following code snippet, what will be the output stored in
buffer after calling vTaskList(buffer); if there are two tasks named "TaskA" and "TaskB" running?
char buffer[512];
vTaskList(buffer);
printf("%s", buffer);