mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
added a seperate shellcommand to show candidates
This commit is contained in:
parent
85211f8408
commit
a7c0e325a7
@ -59,12 +59,16 @@ void init(char *str){
|
|||||||
|
|
||||||
void table(char *str){
|
void table(char *str){
|
||||||
thread_print_all();
|
thread_print_all();
|
||||||
|
}
|
||||||
|
|
||||||
|
void candidates(char *str){
|
||||||
show_candidates();
|
show_candidates();
|
||||||
}
|
}
|
||||||
|
|
||||||
const shell_command_t shell_commands[] = {
|
const shell_command_t shell_commands[] = {
|
||||||
{"init", "", init},
|
{"init", "", init},
|
||||||
{"table", "", table},
|
{"table", "", table},
|
||||||
|
{"cand", "", candidates},
|
||||||
{NULL, NULL, NULL}
|
{NULL, NULL, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user