mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-13 03:51:57 +00:00
This should have been upper case and not lower case. Fixes: ZEP-2322 Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
19 lines
285 B
C
19 lines
285 B
C
/** @file
|
|
* @brief Bluetooth shell functions
|
|
*
|
|
* This is not to be included by the application.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __BT_H
|
|
#define __BT_H
|
|
|
|
extern struct bt_conn *default_conn;
|
|
|
|
#endif /* __BT_H */
|