2017-06-06 19:58:55 +08:00
|
|
|
/** @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[]);
|
2017-06-08 14:58:05 +08:00
|
|
|
int cmd_scanx(int argc, char *argv[]);
|
2017-06-06 19:58:55 +08:00
|
|
|
|
2017-09-27 19:00:38 +08:00
|
|
|
int cmd_test_tx(int argc, char *argv[]);
|
|
|
|
int cmd_test_rx(int argc, char *argv[]);
|
|
|
|
int cmd_test_end(int argc, char *argv[]);
|
|
|
|
|
2017-06-06 19:58:55 +08:00
|
|
|
#endif /* __LL_H */
|