zephyr/subsys/bluetooth/shell/ll.h
Vinayak Kariappa Chettimada 6831351799 Bluetooth: shell: Add controller DTM commands
Add controller Direct Test Mode commands to bt shell module.

Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
2017-09-29 20:56:11 +02:00

24 lines
466 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_advx(int argc, char *argv[]);
int cmd_scanx(int argc, char *argv[]);
int cmd_test_tx(int argc, char *argv[]);
int cmd_test_rx(int argc, char *argv[]);
int cmd_test_end(int argc, char *argv[]);
#endif /* __LL_H */