mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
* fixed for new shell_command_t layout
This commit is contained in:
parent
450b9cc58f
commit
02945e22f7
@ -29,9 +29,9 @@ void shell_putchar(int c) {
|
||||
}
|
||||
|
||||
const shell_command_t shell_commands[] = {
|
||||
{"start_test", print_teststart},
|
||||
{"end_test", print_testend},
|
||||
{NULL, NULL}
|
||||
{"start_test", "", print_teststart},
|
||||
{"end_test", "", print_testend},
|
||||
{NULL, NULL, NULL}
|
||||
};
|
||||
|
||||
int main(void) {
|
||||
|
@ -32,11 +32,11 @@ void mutex_trylock_fail(char* cmdline);
|
||||
void test_thread_sleep(char* line);
|
||||
|
||||
const shell_command_t shell_commands[] = {
|
||||
{"start_test", print_teststart},
|
||||
{"end_test", print_testend},
|
||||
{"mutex_trylock_fail", mutex_trylock_fail},
|
||||
{"thread_sleep", test_thread_sleep},
|
||||
{NULL, NULL}
|
||||
{"start_test", "", print_teststart},
|
||||
{"end_test", "", print_testend},
|
||||
{"mutex_trylock_fail", "", mutex_trylock_fail},
|
||||
{"thread_sleep", "", test_thread_sleep},
|
||||
{NULL, NULL, NULL}
|
||||
};
|
||||
|
||||
int main(void) {
|
||||
|
Loading…
Reference in New Issue
Block a user