zephyr/subsys/bluetooth/shell/ll.h
Vinayak Kariappa Chettimada 4c77bf6194 Bluetooth: controller: Remove redundant tmp role implementation
Remove the redundant proof of concept template temporary
role implementation from the repository.

Relates to #12860.

Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
2019-02-05 15:00:08 +01:00

27 lines
771 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 *shell, size_t argc, char *argv[]);
int cmd_advx(const struct shell *shell, size_t argc, char *argv[]);
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 */