2020-05-12 06:13:59 +08:00
|
|
|
# Bluetooth Audio configuration options
|
|
|
|
|
|
|
|
#
|
|
|
|
# Copyright (c) 2020 Intel Corporation
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
|
|
|
|
menuconfig BT_AUDIO
|
|
|
|
bool "Bluetooth Audio support [Experimental]"
|
|
|
|
help
|
|
|
|
This option enables Bluetooth Audio support. The specific
|
|
|
|
features that are available may depend on other features
|
|
|
|
that have been enabled in the stack, such as Periodic
|
|
|
|
Advertisement for Broadcast and L2CAP Dynamic Channel
|
|
|
|
for Unicast.
|
|
|
|
|
|
|
|
if BT_AUDIO
|
|
|
|
|
|
|
|
if BT_CONN
|
|
|
|
|
|
|
|
config BT_AUDIO_UNICAST
|
|
|
|
bool "Bluetooth Unicast Audio Support"
|
|
|
|
select BT_SMP
|
|
|
|
select BT_L2CAP_DYNAMIC_CHANNEL
|
2021-05-20 17:25:31 +08:00
|
|
|
select BT_ISO_UNICAST
|
2020-05-12 06:13:59 +08:00
|
|
|
select BT_GATT_DYNAMIC_DB
|
|
|
|
select BT_GATT_CACHING
|
2020-10-30 20:02:47 +08:00
|
|
|
select BT_L2CAP_ECRED
|
2020-05-12 06:13:59 +08:00
|
|
|
select BT_EATT
|
|
|
|
help
|
|
|
|
This option enables support for Bluetooth Unicast Audio using
|
|
|
|
Isochronous channels.
|
|
|
|
|
2020-08-12 20:22:51 +08:00
|
|
|
# TODO: Make BT_AUDIO_BROADCAST not depend on BT_CONN
|
|
|
|
config BT_AUDIO_BROADCAST
|
|
|
|
bool "Bluetooth Broadcast Audio Support"
|
|
|
|
select BT_ISO_BROADCAST
|
|
|
|
help
|
|
|
|
This option enables support for Bluetooth Broadcast Audio using
|
|
|
|
Isochronous channels.
|
|
|
|
|
2020-05-12 06:13:59 +08:00
|
|
|
endif # BT_CONN
|
|
|
|
|
|
|
|
config BT_AUDIO_DEBUG
|
|
|
|
bool "Enable debug logs"
|
|
|
|
depends on BT_DEBUG
|
|
|
|
help
|
|
|
|
Use this option to enable debug logs for the Bluetooth
|
|
|
|
Audio functionality.
|
|
|
|
|
2021-07-20 15:16:38 +08:00
|
|
|
rsource "Kconfig.vocs"
|
|
|
|
rsource "Kconfig.aics"
|
|
|
|
rsource "Kconfig.vcs"
|
|
|
|
rsource "Kconfig.mics"
|
2021-03-19 20:21:04 +08:00
|
|
|
|
2020-05-12 06:13:59 +08:00
|
|
|
endif # BT_AUDIO
|