FreeRTOS - Debugging and Monitoring
Given the following code snippet, what will be the output stored in
statsBuffer?
char statsBuffer[100];
vTaskGetRunTimeStats(statsBuffer);
printf("%s", statsBuffer);
Assuming two tasks "TaskA" and "TaskB" run and TaskA used 70% CPU, TaskB used 30%.