tests: Bluetooth: shell: Remove cmd_ull_reset

Remove cmd_ull_reset command, as this would put the host out
of sync. Also, this command is seldom used/required.

Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
Vinayak Kariappa Chettimada 2020-07-16 14:48:38 +05:30 committed by Carles Cufí
commit c9332e76b3
3 changed files with 1 additions and 11 deletions

View file

@ -2567,8 +2567,7 @@ SHELL_STATIC_SUBCMD_SET_CREATE(bt_cmds,
SHELL_CMD_ARG(test_rx, NULL, "<chan> <phy> <mod_idx>", cmd_test_rx,
4, 0),
SHELL_CMD_ARG(test_end, NULL, HELP_NONE, cmd_test_end, 1, 0),
#endif /* CONFIG_BT_CTLR_ADV_EXT */
SHELL_CMD(ull_reset, NULL, HELP_NONE, cmd_ull_reset),
#endif /* CONFIG_BT_CTLR_DTM */
SHELL_SUBCMD_SET_END
);

View file

@ -346,10 +346,3 @@ exit:
}
#endif /* CONFIG_BT_OBSERVER */
#endif /* CONFIG_BT_CTLR_ADV_EXT */
int cmd_ull_reset(const struct shell *shell, size_t argc, char *argv[])
{
ll_reset();
return 0;
}

View file

@ -21,6 +21,4 @@ int cmd_scanx(const struct shell *shell, size_t argc, char *argv[]);
int cmd_test_tx(const struct shell *shell, size_t argc, char *argv[]);
int cmd_test_rx(const struct shell *shell, size_t argc, char *argv[]);
int cmd_test_end(const struct shell *shell, size_t argc, char *argv[]);
int cmd_ull_reset(const struct shell *shell, size_t argc, char *argv[]);
#endif /* __LL_H */