Home
last modified time | relevance | path

Searched refs:shell_module (Results 1 – 2 of 2) sorted by relevance

/nrf52832-nimble/packages/NimBLE-latest/porting/npl/rtthread/src/
H A Dnpl_shell.c24 static struct shell_module shell_modules[SHELL_MAX_MODULES];
76 const struct shell_module *shell_module = &shell_modules[module]; in print_module_commands() local
81 for (i = 0; shell_module->commands[i].sc_cmd; i++) in print_module_commands()
83 console_printf("%-30s", shell_module->commands[i].sc_cmd); in print_module_commands()
84 if (shell_module->commands[i].help && in print_module_commands()
85 shell_module->commands[i].help->summary) in print_module_commands()
87 console_printf("%s", shell_module->commands[i].help->summary); in print_module_commands()
217 const struct shell_module *shell_module; in get_cb() local
249 shell_module = &shell_modules[module]; in get_cb()
250 for (i = 0; shell_module->commands[i].sc_cmd; i++) in get_cb()
[all …]
/nrf52832-nimble/packages/NimBLE-latest/porting/npl/rtthread/include/nimble/
H A Dnpl_shell.h42 struct shell_module struct