zephyr/subsys/bluetooth/shell/ll.h
Carles Cufi 3b33ba2320 Bluetooth: shell: Avoid reusing the same label
To avoid hitting the following violation:
Violation to rule 5.7 (Tag name should be unique)

Replace the use of "shell" in the shell as an instance of a pointer to
const struct shell.

Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
2021-09-20 20:01:32 +02:00

25 lines
678 B
C

/** @file
* @brief Bluetooth Link Layer shell functions
*
* This is not to be included by the application.
*/
/*
* Copyright (c) 2017 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef __LL_H
#define __LL_H
int cmd_ll_addr_get(const struct shell *sh, size_t argc, char *argv[]);
int cmd_advx(const struct shell *sh, size_t argc, char *argv[]);
int cmd_scanx(const struct shell *sh, size_t argc, char *argv[]);
int cmd_test_tx(const struct shell *sh, size_t argc, char *argv[]);
int cmd_test_rx(const struct shell *sh, size_t argc, char *argv[]);
int cmd_test_end(const struct shell *sh, size_t argc, char *argv[]);
#endif /* __LL_H */