subsystems: migrate includes to <zephyr/...>
In order to bring consistency in-tree, migrate all subsystems code to the new prefix <zephyr/...>. Note that the conversion has been scripted, refer to zephyrproject-rtos#45388 for more details. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
parent
3702f7220a
commit
5113c1418d
|
@ -5,17 +5,17 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/audio/aics.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/audio/aics.h>
|
||||
|
||||
#include "aics_internal.h"
|
||||
|
||||
|
|
|
@ -7,19 +7,19 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/types.h>
|
||||
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/l2cap.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/audio/aics.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/l2cap.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/audio/aics.h>
|
||||
|
||||
#include "aics_internal.h"
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
#ifndef ZEPHYR_INCLUDE_BLUETOOTH_AUDIO_AICS_INTERNAL_
|
||||
#define ZEPHYR_INCLUDE_BLUETOOTH_AUDIO_AICS_INTERNAL_
|
||||
#include <zephyr/types.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
|
||||
#if defined(CONFIG_BT_AICS)
|
||||
#define BT_AICS_MAX_DESC_SIZE CONFIG_BT_AICS_MAX_INPUT_DESCRIPTION_SIZE
|
||||
|
|
|
@ -8,17 +8,17 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/audio/audio.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/audio/audio.h>
|
||||
|
||||
#define BT_DBG_ENABLED IS_ENABLED(CONFIG_BT_DEBUG_ASCS)
|
||||
#define LOG_MODULE_NAME bt_ascs
|
||||
|
|
|
@ -7,17 +7,17 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/iso.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/buf.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/iso.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/buf.h>
|
||||
|
||||
#define BT_DBG_ENABLED IS_ENABLED(CONFIG_BT_DEBUG_BASS)
|
||||
#define LOG_MODULE_NAME bt_bass
|
||||
|
|
|
@ -6,18 +6,18 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/types.h>
|
||||
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/buf.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/buf.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
|
||||
#define BT_DBG_ENABLED IS_ENABLED(CONFIG_BT_DEBUG_BASS_CLIENT)
|
||||
#define LOG_MODULE_NAME bt_bass_client
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
*/
|
||||
|
||||
#include <zephyr/types.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/audio/bass.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/audio/bass.h>
|
||||
|
||||
#define BT_BASS_SCAN_STATE_NOT_SCANNING 0x00
|
||||
#define BT_BASS_SCAN_STATE_SCANNING 0x01
|
||||
|
|
|
@ -6,14 +6,14 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/audio/audio.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/audio/audio.h>
|
||||
|
||||
#include "../host/conn_internal.h"
|
||||
#include "../host/iso_internal.h"
|
||||
|
|
|
@ -6,14 +6,14 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/audio/audio.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/audio/audio.h>
|
||||
|
||||
#define BT_DBG_ENABLED IS_ENABLED(CONFIG_BT_AUDIO_DEBUG_BROADCAST_SOURCE)
|
||||
#define LOG_MODULE_NAME bt_audio_broadcast_source
|
||||
|
|
|
@ -7,17 +7,17 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/audio/audio.h>
|
||||
#include <bluetooth/audio/capabilities.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/audio/audio.h>
|
||||
#include <zephyr/bluetooth/audio/capabilities.h>
|
||||
|
||||
#include "pacs_internal.h"
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
#ifndef ZEPHYR_INCLUDE_BLUETOOTH_CCID_H_
|
||||
#define ZEPHYR_INCLUDE_BLUETOOTH_CCID_H_
|
||||
|
||||
#include <device.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/types.h>
|
||||
|
||||
/**
|
||||
|
|
|
@ -10,9 +10,9 @@
|
|||
* Generic Audio.
|
||||
*/
|
||||
|
||||
#include <bluetooth/audio/audio.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/bluetooth/audio/audio.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
|
||||
#define BT_DBG_ENABLED IS_ENABLED(CONFIG_BT_AUDIO)
|
||||
#define LOG_MODULE_NAME bt_audio
|
||||
|
|
|
@ -7,19 +7,19 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/types.h>
|
||||
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/buf.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/buf.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
#include "csis_internal.h"
|
||||
#include "csis_crypto.h"
|
||||
#include "../host/conn_internal.h"
|
||||
|
|
|
@ -18,19 +18,19 @@
|
|||
* 10) Unlock all members
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/types.h>
|
||||
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/buf.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <bluetooth/audio/csis.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/buf.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/bluetooth/audio/csis.h>
|
||||
#include "csis_crypto.h"
|
||||
#include "csis_internal.h"
|
||||
#include "../host/conn_internal.h"
|
||||
|
|
|
@ -10,13 +10,13 @@
|
|||
* it easier to compare.
|
||||
*/
|
||||
#include "csis_crypto.h"
|
||||
#include <bluetooth/crypto.h>
|
||||
#include <zephyr/bluetooth/crypto.h>
|
||||
#include <tinycrypt/constants.h>
|
||||
#include <tinycrypt/utils.h>
|
||||
#include <tinycrypt/aes.h>
|
||||
#include <tinycrypt/cmac_mode.h>
|
||||
#include <tinycrypt/ccm_mode.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
||||
#define BT_DBG_ENABLED IS_ENABLED(CONFIG_BT_DEBUG_CSIS_CRYPTO)
|
||||
#define LOG_MODULE_NAME bt_csis_crypto
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include <stddef.h>
|
||||
#include <zephyr/types.h>
|
||||
|
||||
#include <bluetooth/audio/csis.h>
|
||||
#include <zephyr/bluetooth/audio/csis.h>
|
||||
|
||||
#define BT_CSIS_CRYPTO_KEY_SIZE 16
|
||||
#define BT_CSIS_CRYPTO_SALT_SIZE 16
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <bluetooth/audio/csis.h>
|
||||
#include <zephyr/bluetooth/audio/csis.h>
|
||||
|
||||
|
||||
#define BT_CSIS_SIRK_TYPE_ENCRYPTED 0x00
|
||||
|
|
|
@ -5,16 +5,16 @@
|
|||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
|
||||
#include <device.h>
|
||||
#include <zephyr/device.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/audio/audio.h>
|
||||
#include <bluetooth/audio/capabilities.h>
|
||||
#include <bluetooth/audio/has.h>
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/audio/audio.h>
|
||||
#include <zephyr/bluetooth/audio/capabilities.h>
|
||||
#include <zephyr/bluetooth/audio/has.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
|
||||
#include "has_internal.h"
|
||||
|
||||
|
|
|
@ -4,12 +4,12 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/audio/has.h>
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/audio/has.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
|
||||
#include "has_internal.h"
|
||||
|
||||
|
|
|
@ -8,19 +8,19 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/types.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <sys/check.h>
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/audio/mcc.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/audio/mcc.h>
|
||||
|
||||
#include <bluetooth/services/ots.h>
|
||||
#include <zephyr/bluetooth/services/ots.h>
|
||||
#include "../services/ots/ots_client_internal.h"
|
||||
|
||||
/* TODO: Temporarily copied here from media_proxy_internal.h - clean up */
|
||||
|
|
|
@ -9,19 +9,19 @@
|
|||
*/
|
||||
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <stdbool.h>
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
#include <stdio.h>
|
||||
#include <zephyr/types.h>
|
||||
#include <sys/util.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/services/ots.h>
|
||||
#include <bluetooth/audio/media_proxy.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/services/ots.h>
|
||||
#include <zephyr/bluetooth/audio/media_proxy.h>
|
||||
|
||||
#include "media_proxy_internal.h"
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#include <stdbool.h>
|
||||
#include <zephyr/types.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
@ -6,11 +6,11 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
|
||||
#include <bluetooth/services/ots.h>
|
||||
#include <bluetooth/audio/media_proxy.h>
|
||||
#include <bluetooth/audio/mcc.h>
|
||||
#include <zephyr/bluetooth/services/ots.h>
|
||||
#include <zephyr/bluetooth/audio/media_proxy.h>
|
||||
#include <zephyr/bluetooth/audio/mcc.h>
|
||||
|
||||
#include "media_proxy_internal.h"
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
/** @brief Internal APIs for Bluetooth Media Control */
|
||||
|
||||
#include <bluetooth/audio/media_proxy.h>
|
||||
#include <zephyr/bluetooth/audio/media_proxy.h>
|
||||
|
||||
#define MPL_NO_TRACK_ID 0
|
||||
|
||||
|
|
|
@ -6,18 +6,18 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/audio/mics.h>
|
||||
#include <bluetooth/audio/aics.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/audio/mics.h>
|
||||
#include <zephyr/bluetooth/audio/aics.h>
|
||||
|
||||
#include "mics_internal.h"
|
||||
|
||||
|
|
|
@ -7,18 +7,18 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/types.h>
|
||||
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/audio/mics.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/audio/mics.h>
|
||||
|
||||
#include "mics_internal.h"
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#ifndef ZEPHYR_INCLUDE_BLUETOOTH_AUDIO_MICS_INTERNAL_
|
||||
#define ZEPHYR_INCLUDE_BLUETOOTH_AUDIO_MICS_INTERNAL_
|
||||
#include <zephyr/types.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
|
||||
#if defined(CONFIG_BT_MICS)
|
||||
struct bt_mics_server {
|
||||
|
|
|
@ -6,10 +6,10 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <sys/util.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
|
||||
#include <bluetooth/services/ots.h>
|
||||
#include <bluetooth/audio/media_proxy.h>
|
||||
#include <zephyr/bluetooth/services/ots.h>
|
||||
#include <zephyr/bluetooth/audio/media_proxy.h>
|
||||
|
||||
#include "media_proxy_internal.h"
|
||||
#include "mpl_internal.h"
|
||||
|
|
|
@ -9,17 +9,17 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/audio/audio.h>
|
||||
#include <bluetooth/audio/capabilities.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/audio/audio.h>
|
||||
#include <zephyr/bluetooth/audio/capabilities.h>
|
||||
#include "../host/conn_internal.h"
|
||||
|
||||
#define BT_DBG_ENABLED IS_ENABLED(CONFIG_BT_DEBUG_PACS)
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <bluetooth/audio/audio.h>
|
||||
#include <zephyr/bluetooth/audio/audio.h>
|
||||
|
||||
#define BT_AUDIO_LOCATION_MASK BIT_MASK(28)
|
||||
|
||||
|
|
|
@ -7,15 +7,15 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/iso.h>
|
||||
#include <bluetooth/audio/audio.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/iso.h>
|
||||
#include <zephyr/bluetooth/audio/audio.h>
|
||||
|
||||
#include "../host/conn_internal.h"
|
||||
#include "../host/iso_internal.h"
|
||||
|
|
|
@ -6,16 +6,16 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/types.h>
|
||||
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
|
||||
#include "tbs_internal.h"
|
||||
#include "ccid_internal.h"
|
||||
|
|
|
@ -6,17 +6,17 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/types.h>
|
||||
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/buf.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/audio/tbs.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/buf.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/audio/tbs.h>
|
||||
|
||||
#include "tbs_internal.h"
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
*/
|
||||
|
||||
#include <zephyr/types.h>
|
||||
#include <bluetooth/audio/tbs.h>
|
||||
#include <zephyr/bluetooth/audio/tbs.h>
|
||||
|
||||
#define BT_TBS_MAX_UCI_SIZE 6
|
||||
#define BT_TBS_MIN_URI_LEN 3 /* a:b */
|
||||
|
|
|
@ -9,13 +9,13 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/audio/audio.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/audio/audio.h>
|
||||
|
||||
#include "../host/hci_core.h"
|
||||
#include "../host/conn_internal.h"
|
||||
|
|
|
@ -6,9 +6,9 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
|
||||
#include <bluetooth/audio/audio.h>
|
||||
#include <zephyr/bluetooth/audio/audio.h>
|
||||
|
||||
#include "pacs_internal.h"
|
||||
|
||||
|
|
|
@ -6,6 +6,6 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <bluetooth/audio/audio.h>
|
||||
#include <zephyr/bluetooth/audio/audio.h>
|
||||
|
||||
extern const struct bt_audio_unicast_server_cb *unicast_server_cb;
|
||||
|
|
|
@ -8,17 +8,17 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/audio/vcs.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/audio/vcs.h>
|
||||
|
||||
#include "vcs_internal.h"
|
||||
|
||||
|
|
|
@ -7,18 +7,18 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/types.h>
|
||||
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/audio/vcs.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/audio/vcs.h>
|
||||
|
||||
#include "vcs_internal.h"
|
||||
|
||||
|
|
|
@ -5,17 +5,17 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/audio/vocs.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/audio/vocs.h>
|
||||
|
||||
#include "vocs_internal.h"
|
||||
|
||||
|
|
|
@ -6,18 +6,18 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/types.h>
|
||||
|
||||
#include <device.h>
|
||||
#include <init.h>
|
||||
#include <sys/check.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/init.h>
|
||||
#include <zephyr/sys/check.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/l2cap.h>
|
||||
#include <bluetooth/conn.h>
|
||||
#include <bluetooth/gatt.h>
|
||||
#include <bluetooth/audio/vocs.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/l2cap.h>
|
||||
#include <zephyr/bluetooth/conn.h>
|
||||
#include <zephyr/bluetooth/gatt.h>
|
||||
#include <zephyr/bluetooth/audio/vocs.h>
|
||||
|
||||
#include "vocs_internal.h"
|
||||
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
|
||||
/*
|
||||
* The unpacked structs below are used inside __packed structures that reflect
|
||||
|
|
|
@ -14,11 +14,11 @@
|
|||
|
||||
#include <stddef.h>
|
||||
#include <zephyr/types.h>
|
||||
#include <zephyr.h>
|
||||
#include <sys/util.h>
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/uuid.h>
|
||||
#include <bluetooth/hci.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/uuid.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
|
||||
const char *bt_hex_real(const void *buf, size_t len)
|
||||
{
|
||||
|
|
|
@ -11,15 +11,15 @@
|
|||
#ifndef __BT_LOG_H
|
||||
#define __BT_LOG_H
|
||||
|
||||
#include <linker/sections.h>
|
||||
#include <zephyr/linker/sections.h>
|
||||
#include <offsets.h>
|
||||
#include <zephyr.h>
|
||||
#include <logging/log.h>
|
||||
#include <sys/__assert.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <zephyr/logging/log.h>
|
||||
#include <zephyr/sys/__assert.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/uuid.h>
|
||||
#include <bluetooth/hci.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/uuid.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <stddef.h>
|
||||
#include <errno.h>
|
||||
#include <string.h>
|
||||
|
@ -19,7 +19,7 @@
|
|||
#define LOG_MODULE_NAME bt_rpa
|
||||
#include "common/log.h"
|
||||
|
||||
#include <bluetooth/crypto.h>
|
||||
#include <zephyr/bluetooth/crypto.h>
|
||||
|
||||
#if defined(CONFIG_BT_CTLR) && defined(CONFIG_BT_HOST_CRYPTO)
|
||||
#include "../controller/util/util.h"
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/hci.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
|
||||
bool bt_rpa_irk_matches(const uint8_t irk[16], const bt_addr_t *addr);
|
||||
int bt_rpa_create(const uint8_t irk[16], bt_addr_t *rpa);
|
||||
|
|
|
@ -11,16 +11,16 @@
|
|||
#include <version.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include <sys/util.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <sys/atomic.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/sys/atomic.h>
|
||||
|
||||
#include <drivers/bluetooth/hci_driver.h>
|
||||
#include <zephyr/drivers/bluetooth/hci_driver.h>
|
||||
|
||||
#include <bluetooth/hci.h>
|
||||
#include <bluetooth/hci_vs.h>
|
||||
#include <bluetooth/buf.h>
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
#include <zephyr/bluetooth/hci_vs.h>
|
||||
#include <zephyr/bluetooth/buf.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
|
||||
#include "../host/hci_ecc.h"
|
||||
|
||||
|
|
|
@ -9,23 +9,23 @@
|
|||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <soc.h>
|
||||
#include <init.h>
|
||||
#include <device.h>
|
||||
#include <drivers/clock_control.h>
|
||||
#include <sys/atomic.h>
|
||||
#include <zephyr/init.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/drivers/clock_control.h>
|
||||
#include <zephyr/sys/atomic.h>
|
||||
|
||||
#include <sys/util.h>
|
||||
#include <debug/stack.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include <zephyr/debug/stack.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/hci.h>
|
||||
#include <drivers/bluetooth/hci_driver.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
#include <zephyr/drivers/bluetooth/hci_driver.h>
|
||||
|
||||
#ifdef CONFIG_CLOCK_CONTROL_NRF
|
||||
#include <drivers/clock_control/nrf_clock_control.h>
|
||||
#include <zephyr/drivers/clock_control/nrf_clock_control.h>
|
||||
#endif
|
||||
|
||||
#define BT_DBG_ENABLED IS_ENABLED(CONFIG_BT_DEBUG_HCI_DRIVER)
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
||||
#include <bluetooth/addr.h>
|
||||
#include <bluetooth/hci_vs.h>
|
||||
#include <zephyr/bluetooth/addr.h>
|
||||
#include <zephyr/bluetooth/hci_vs.h>
|
||||
|
||||
#include <soc.h>
|
||||
|
||||
|
|
|
@ -6,12 +6,12 @@
|
|||
#include <string.h>
|
||||
#include <zephyr/types.h>
|
||||
#include <sys/types.h>
|
||||
#include <toolchain.h>
|
||||
#include <sys/util.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
|
||||
#include "util/memq.h"
|
||||
#include "pdu.h"
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#include <stdint.h>
|
||||
#include <zephyr/types.h>
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
|
||||
/** Function return error codes */
|
||||
typedef uint8_t isoal_status_t;
|
||||
|
|
|
@ -7,10 +7,10 @@
|
|||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <soc.h>
|
||||
#include <bluetooth/hci.h>
|
||||
#include <bluetooth/controller.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
#include <zephyr/bluetooth/controller.h>
|
||||
|
||||
#include "util/util.h"
|
||||
#include "util/memq.h"
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
|
||||
#include "util/util.h"
|
||||
#include "util/memq.h"
|
||||
|
|
|
@ -6,9 +6,9 @@
|
|||
|
||||
#include <string.h>
|
||||
|
||||
#include <settings/settings.h>
|
||||
#include <zephyr/settings/settings.h>
|
||||
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <zephyr/bluetooth/bluetooth.h>
|
||||
|
||||
#include "ll_settings.h"
|
||||
|
||||
|
|
|
@ -5,10 +5,10 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <soc.h>
|
||||
#include <bluetooth/hci.h>
|
||||
#include <bluetooth/hci_vs.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
#include <zephyr/bluetooth/hci_vs.h>
|
||||
|
||||
#include "hal/cpu.h"
|
||||
#include "hal/ccm.h"
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#include <errno.h>
|
||||
#include <zephyr/types.h>
|
||||
#include <device.h>
|
||||
#include <zephyr/device.h>
|
||||
|
||||
#include "util/mem.h"
|
||||
#include "util/memq.h"
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <sys/dlist.h>
|
||||
#include <zephyr/sys/dlist.h>
|
||||
|
||||
#include <hal/nrf_rtc.h>
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#include <string.h>
|
||||
|
||||
#include <sys/dlist.h>
|
||||
#include <zephyr/sys/dlist.h>
|
||||
|
||||
#include <hal/nrf_ecb.h>
|
||||
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <sys/dlist.h>
|
||||
#include <toolchain.h>
|
||||
#include <dt-bindings/gpio/gpio.h>
|
||||
#include <zephyr/sys/dlist.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <zephyr/dt-bindings/gpio/gpio.h>
|
||||
#include <soc.h>
|
||||
|
||||
#include <hal/nrf_rtc.h>
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
#include <stdint.h>
|
||||
#include <errno.h>
|
||||
#include <soc.h>
|
||||
#include <devicetree.h>
|
||||
#include <sys/util_macro.h>
|
||||
#include <zephyr/devicetree.h>
|
||||
#include <zephyr/sys/util_macro.h>
|
||||
#include <hal/nrf_radio.h>
|
||||
#include <hal/nrf_gpio.h>
|
||||
#include <hal/ccm.h>
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
* properties to the generic macros required by the nRF5 radio HAL.
|
||||
*/
|
||||
|
||||
#include <devicetree.h>
|
||||
#include <dt-bindings/gpio/gpio.h>
|
||||
#include <zephyr/devicetree.h>
|
||||
#include <zephyr/dt-bindings/gpio/gpio.h>
|
||||
|
||||
#if DT_NODE_HAS_PROP(DT_NODELABEL(radio), fem)
|
||||
#define FEM_NODE DT_PHANDLE(DT_NODELABEL(radio), fem)
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#include <sys/util.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include "radio_nrf5_fem.h"
|
||||
|
||||
#if defined(CONFIG_BT_CTLR_TIFS_HW) || !defined(CONFIG_BT_CTLR_SW_SWITCH_SINGLE_TIMER)
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
*/
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <sys/dlist.h>
|
||||
#include <sys/util.h>
|
||||
#include <zephyr/sys/dlist.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
|
||||
#include "hal/cntr.h"
|
||||
|
||||
|
|
|
@ -8,12 +8,12 @@
|
|||
#include <stdbool.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
|
||||
#include <soc.h>
|
||||
#include <device.h>
|
||||
#include <zephyr/device.h>
|
||||
|
||||
#include <drivers/entropy.h>
|
||||
#include <zephyr/drivers/entropy.h>
|
||||
|
||||
#include "hal/swi.h"
|
||||
#include "hal/ccm.h"
|
||||
|
|
|
@ -8,8 +8,8 @@
|
|||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include <bluetooth/hci.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <soc.h>
|
||||
|
||||
#include "hal/cpu.h"
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include <sys/byteorder.h>
|
||||
#include <bluetooth/hci.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
#include <soc.h>
|
||||
|
||||
#include "hal/cpu.h"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include <stdint.h>
|
||||
|
||||
#include <soc.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
||||
#include "hal/cpu.h"
|
||||
#include "hal/ccm.h"
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include <soc.h>
|
||||
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
||||
#include "hal/cpu.h"
|
||||
#include "hal/ccm.h"
|
||||
|
|
|
@ -7,10 +7,10 @@
|
|||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
|
||||
#include <sys/util.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
||||
#include "hal/ccm.h"
|
||||
#include "hal/radio.h"
|
||||
|
|
|
@ -5,10 +5,10 @@
|
|||
*/
|
||||
|
||||
#include <soc.h>
|
||||
#include <device.h>
|
||||
#include <zephyr/device.h>
|
||||
|
||||
#include <drivers/clock_control.h>
|
||||
#include <drivers/clock_control/nrf_clock_control.h>
|
||||
#include <zephyr/drivers/clock_control.h>
|
||||
#include <zephyr/drivers/clock_control/nrf_clock_control.h>
|
||||
|
||||
#define BT_DBG_ENABLED IS_ENABLED(CONFIG_BT_DEBUG_HCI_DRIVER)
|
||||
#define LOG_MODULE_NAME bt_ctlr_lll_clock
|
||||
|
|
|
@ -8,10 +8,10 @@
|
|||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <soc.h>
|
||||
|
||||
#include <sys/util.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
|
||||
#include "hal/cpu.h"
|
||||
#include "hal/ccm.h"
|
||||
|
|
|
@ -6,9 +6,9 @@
|
|||
|
||||
#include <stddef.h>
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <zephyr/types.h>
|
||||
#include <sys/util.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
|
||||
#include "util/memq.h"
|
||||
#include "util/mem.h"
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#include <stdint.h>
|
||||
#include <soc.h>
|
||||
#include <bluetooth/hci.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
|
||||
#include "util/util.h"
|
||||
#include "util/memq.h"
|
||||
|
|
|
@ -6,10 +6,10 @@
|
|||
|
||||
#include <stdint.h>
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
|
||||
#include <sys/util.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
||||
#include "hal/ccm.h"
|
||||
#include "hal/radio.h"
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <zephyr/types.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <soc.h>
|
||||
|
||||
#include "hal/cpu.h"
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include <stddef.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
|
||||
#include "hal/ccm.h"
|
||||
#include "hal/radio.h"
|
||||
|
|
|
@ -6,12 +6,12 @@
|
|||
|
||||
#include <stdint.h>
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
|
||||
#include <soc.h>
|
||||
|
||||
#include <sys/byteorder.h>
|
||||
#include <bluetooth/hci.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
|
||||
#include "hal/cpu.h"
|
||||
#include "hal/ccm.h"
|
||||
|
|
|
@ -6,10 +6,10 @@
|
|||
|
||||
#include <stdint.h>
|
||||
|
||||
#include <sys/byteorder.h>
|
||||
#include <sys/util.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
|
||||
#include <bluetooth/hci.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
|
||||
#include "hal/ccm.h"
|
||||
#include "hal/radio.h"
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
*/
|
||||
#include <stdint.h>
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <sys/util.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
||||
#include "hal/ccm.h"
|
||||
#include "hal/radio.h"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include <stdint.h>
|
||||
|
||||
#include <soc.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
||||
#include "hal/cpu.h"
|
||||
#include "hal/ccm.h"
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
|
||||
#include <soc.h>
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
|
||||
/* FIXME: Implement vendor specific data path configuration */
|
||||
static bool dummy;
|
||||
|
|
|
@ -6,14 +6,14 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <sys/dlist.h>
|
||||
#include <zephyr/sys/dlist.h>
|
||||
|
||||
#include "hal/cntr.h"
|
||||
|
||||
#define LOG_MODULE_NAME bt_ctlr_cntr
|
||||
#include "common/log.h"
|
||||
#include "hal/debug.h"
|
||||
#include <dt-bindings/interrupt-controller/openisa-intmux.h>
|
||||
#include <zephyr/dt-bindings/interrupt-controller/openisa-intmux.h>
|
||||
#include "ll_irqs.h"
|
||||
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
*/
|
||||
#ifdef CONFIG_BT_CTLR_DEBUG_PINS
|
||||
|
||||
#include <drivers/gpio.h>
|
||||
#include <zephyr/drivers/gpio.h>
|
||||
|
||||
extern const struct device *vega_debug_portb;
|
||||
extern const struct device *vega_debug_portc;
|
||||
|
|
|
@ -8,8 +8,8 @@
|
|||
|
||||
#include <string.h>
|
||||
|
||||
#include <sys/dlist.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/sys/dlist.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
||||
#include "hal/ecb.h"
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
/* Needed for the DT_INST_* defines below */
|
||||
#include <devicetree.h>
|
||||
#include <zephyr/devicetree.h>
|
||||
|
||||
#define LL_SWI4_IRQn EMVSIM0_IRQn
|
||||
#define LL_SWI5_IRQn MUA_IRQn
|
||||
|
|
|
@ -7,12 +7,12 @@
|
|||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include <sys/printk.h>
|
||||
#include <sys/dlist.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <bluetooth/addr.h>
|
||||
#include <toolchain.h>
|
||||
#include <irq.h>
|
||||
#include <zephyr/sys/printk.h>
|
||||
#include <zephyr/sys/dlist.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
#include <zephyr/bluetooth/addr.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <zephyr/irq.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include "util/mem.h"
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
*/
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <sys/dlist.h>
|
||||
#include <zephyr/sys/dlist.h>
|
||||
|
||||
#include "hal/cntr.h"
|
||||
|
||||
|
|
|
@ -9,12 +9,12 @@
|
|||
#include <stdbool.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
|
||||
#include <soc.h>
|
||||
#include <device.h>
|
||||
#include <zephyr/device.h>
|
||||
|
||||
#include <drivers/entropy.h>
|
||||
#include <zephyr/drivers/entropy.h>
|
||||
|
||||
#include "hal/swi.h"
|
||||
#include "hal/ccm.h"
|
||||
|
|
|
@ -7,10 +7,10 @@
|
|||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <soc.h>
|
||||
#include <bluetooth/hci.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
||||
#include "hal/cpu.h"
|
||||
#include "hal/ccm.h"
|
||||
|
|
|
@ -6,9 +6,9 @@
|
|||
|
||||
#include <stdbool.h>
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <zephyr/types.h>
|
||||
#include <sys/util.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
|
||||
#include "hal/ccm.h"
|
||||
#include "hal/radio.h"
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
|
||||
#include <zephyr/types.h>
|
||||
#include <soc.h>
|
||||
#include <device.h>
|
||||
#include <drivers/clock_control.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/drivers/clock_control.h>
|
||||
|
||||
#define LOG_MODULE_NAME bt_ctlr_llsw_openisa_lll_clock
|
||||
#include "common/log.h"
|
||||
|
|
|
@ -7,9 +7,9 @@
|
|||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <soc.h>
|
||||
#include <sys/util.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
|
||||
#include "hal/cpu.h"
|
||||
#include "hal/ccm.h"
|
||||
|
|
|
@ -6,9 +6,9 @@
|
|||
|
||||
#include <stdbool.h>
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <zephyr/types.h>
|
||||
#include <sys/util.h>
|
||||
#include <zephyr/sys/util.h>
|
||||
|
||||
#include "hal/ccm.h"
|
||||
#include "hal/radio.h"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <zephyr/types.h>
|
||||
|
||||
#include "hal/ccm.h"
|
||||
|
|
|
@ -6,9 +6,9 @@
|
|||
*/
|
||||
|
||||
#include <zephyr/types.h>
|
||||
#include <toolchain.h>
|
||||
#include <bluetooth/hci.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
||||
#include "hal/ccm.h"
|
||||
#include "hal/radio.h"
|
||||
|
|
|
@ -7,10 +7,10 @@
|
|||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <toolchain.h>
|
||||
#include <zephyr/toolchain.h>
|
||||
#include <zephyr/types.h>
|
||||
#include <soc.h>
|
||||
#include <drivers/clock_control.h>
|
||||
#include <zephyr/drivers/clock_control.h>
|
||||
|
||||
#include "hal/cpu.h"
|
||||
#include "hal/cntr.h"
|
||||
|
|
|
@ -8,11 +8,11 @@
|
|||
#include <stdbool.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <soc.h>
|
||||
#include <device.h>
|
||||
#include <drivers/entropy.h>
|
||||
#include <bluetooth/hci.h>
|
||||
#include <zephyr/device.h>
|
||||
#include <zephyr/drivers/entropy.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
|
||||
#include "hal/cpu.h"
|
||||
#include "hal/ccm.h"
|
||||
|
|
|
@ -7,10 +7,10 @@
|
|||
|
||||
#include <string.h>
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <soc.h>
|
||||
#include <bluetooth/hci.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
||||
#include "hal/cpu.h"
|
||||
#include "hal/ccm.h"
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include <zephyr.h>
|
||||
#include <zephyr/zephyr.h>
|
||||
#include <soc.h>
|
||||
#include <bluetooth/hci.h>
|
||||
#include <sys/byteorder.h>
|
||||
#include <zephyr/bluetooth/hci.h>
|
||||
#include <zephyr/sys/byteorder.h>
|
||||
|
||||
#include "hal/cpu.h"
|
||||
#include "hal/ccm.h"
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue