24 lines
466 B
C
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 */
|