Skip to content

Commit 10ab4c0

Browse files
committed
example(console): print column name for tasks.
1 parent ca3faa6 commit 10ab4c0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

examples/system/console/main/cmd_system.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ static int tasks_info(int argc, char** argv)
9494
ESP_LOGE(__func__, "failed to allocate buffer for vTaskList output");
9595
return 1;
9696
}
97+
fputs("Task Name\tStatus\tPrio\tHWM\tTask Number\n", stdout);
9798
vTaskList(task_list_buffer);
9899
fputs(task_list_buffer, stdout);
99100
free(task_list_buffer);

0 commit comments

Comments
 (0)