* fixed for new shell_command_t layout

dev/timer
Kaspar Schleiser 13 years ago
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…
Cancel
Save