The `bluetooth/common/log.h` and `bluetooth/common/log.c` files have been removed. Files that were using them have been updated to use `zephyr/logging/log.h` instead. Those replacement have been done consequently: - `/BT_DBG/LOG_DBG/` - `/BT_ERR/LOG_ERR/` - `/BT_WARN/LOG_WRN/` - `/BT_INFO/LOG_INF/` - `/BT_HEXDUMP_DBG/LOG_HEXDUMP_DBG/` - `/BT_DBG_OBJ_ID/LOG_DBG_OBJ_ID/` Also, some files were relying on the `common/log.h` include to include `zephyr/bluetooth/hci.h`, in those cases the include of `hci.h` has been added. For files that were including `common/log.h` but not using any logs, the include has been removed and not replaced. Signed-off-by: Théo Battrel <theo.battrel@nordicsemi.no>
55 lines
1.7 KiB
Plaintext
55 lines
1.7 KiB
Plaintext
# Bluetooth Audio - Common Audio Profile (CAP) options
|
|
#
|
|
# Copyright (c) 2022 Nordic Semiconductor ASA
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
config BT_CAP
|
|
def_bool BT_CAP_ACCEPTOR || BT_CAP_INITIATOR
|
|
|
|
config BT_CAP_ACCEPTOR
|
|
bool "Common Audio Profile Acceptor Role Support [EXPERIMENTAL]"
|
|
depends on BT_AUDIO_UNICAST_SERVER || (BT_AUDIO_BROADCAST_SINK && BT_BAP_SCAN_DELEGATOR)
|
|
select EXPERIMENTAL
|
|
help
|
|
Enabling this will enable the CAP Acceptor role. This instantiates the
|
|
common audio service (CAS).
|
|
|
|
config BT_CAP_ACCEPTOR_SET_MEMBER
|
|
bool "Common Audio Profile Acceptor Role Set Member support"
|
|
depends on BT_CAP_ACCEPTOR
|
|
depends on BT_CSIP_SET_MEMBER
|
|
help
|
|
Enabling this will allow a CAP acceptor to be a set member.
|
|
Enabling this will require a manual register of the CAS service.
|
|
Enabling will take one of the allocated CSIS instances
|
|
(BT_CSIP_SET_MEMBER_MAX_INSTANCE_COUNT).
|
|
|
|
config BT_DEBUG_CAP_ACCEPTOR
|
|
bool "Common Audio Profile debug"
|
|
select DEPRECATED
|
|
depends on BT_CAP_ACCEPTOR
|
|
help
|
|
Use this option to enable CAP debug logs for the
|
|
Bluetooth Audio functionality.
|
|
|
|
module = BT_CAP_ACCEPTOR
|
|
legacy-debug-sym = BT_DEBUG_CAP_ACCEPTOR
|
|
module-str = "Common Audio Profile"
|
|
source "subsys/bluetooth/common/Kconfig.template.log_config_bt"
|
|
|
|
config BT_CAP_INITIATOR
|
|
bool "Common Audio Profile Initiator Role Support [EXPERIMENTAL]"
|
|
depends on (BT_AUDIO_UNICAST_CLIENT && BT_CSIP_SET_COORDINATOR) || BT_AUDIO_BROADCAST_SOURCE
|
|
select EXPERIMENTAL
|
|
help
|
|
Enabling this will enable the CAP Initiator role.
|
|
|
|
config BT_DEBUG_CAP_INITIATOR
|
|
bool "Common Audio Profile Initiator debug"
|
|
depends on BT_CAP_INITIATOR
|
|
help
|
|
Use this option to enable CAP Initiator debug logs for the
|
|
Bluetooth Audio functionality.
|