We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca3faa6 commit 10ab4c0Copy full SHA for 10ab4c0
examples/system/console/main/cmd_system.c
@@ -94,6 +94,7 @@ static int tasks_info(int argc, char** argv)
94
ESP_LOGE(__func__, "failed to allocate buffer for vTaskList output");
95
return 1;
96
}
97
+ fputs("Task Name\tStatus\tPrio\tHWM\tTask Number\n", stdout);
98
vTaskList(task_list_buffer);
99
fputs(task_list_buffer, stdout);
100
free(task_list_buffer);
0 commit comments