mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-29 23:05:22 +00:00
Add shell scanx command to start Extended Scanning on 1M or Coded PHY. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
20 lines
341 B
C
20 lines
341 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[]);
|
|
|
|
#endif /* __LL_H */
|