1
0
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:
Kaspar Schleiser 2010-11-04 16:46:25 +01:00
parent 450b9cc58f
commit 02945e22f7
2 changed files with 8 additions and 8 deletions

View File

@ -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) {

View File

@ -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) {