1 /** @file 2 * @brief Bluetooth Link Layer shell functions 3 * 4 * This is not to be included by the application. 5 */ 6 7 /* 8 * Copyright (c) 2017 Nordic Semiconductor ASA 9 * 10 * SPDX-License-Identifier: Apache-2.0 11 */ 12 13 #ifndef __LL_H 14 #define __LL_H 15 16 int cmd_ll_addr_read(const struct shell *sh, size_t argc, char *argv[]); 17 18 int cmd_advx(const struct shell *sh, size_t argc, char *argv[]); 19 int cmd_scanx(const struct shell *sh, size_t argc, char *argv[]); 20 21 int cmd_test_tx(const struct shell *sh, size_t argc, char *argv[]); 22 int cmd_test_rx(const struct shell *sh, size_t argc, char *argv[]); 23 int cmd_test_end(const struct shell *sh, size_t argc, char *argv[]); 24 #endif /* __LL_H */ 25