1# Bluetooth Audio configuration options 2 3# 4# Copyright (c) 2020 Intel Corporation 5# Copyright (c) 2022 Nordic Semiconductor ASA 6# 7# SPDX-License-Identifier: Apache-2.0 8# 9 10menuconfig BT_AUDIO 11 bool "Bluetooth Audio support" 12 help 13 This option enables Bluetooth Audio support. The specific 14 features that are available may depend on other features 15 that have been enabled in the stack, such as Periodic 16 Advertisement for Broadcast and L2CAP Dynamic Channel 17 for Unicast. 18 19if BT_AUDIO 20 21config BT_AUDIO_RX 22 def_bool BT_ASCS_ASE_SNK || BT_BAP_UNICAST_CLIENT_ASE_SRC || BT_BAP_BROADCAST_SINK 23 24config BT_AUDIO_TX 25 def_bool BT_ASCS_ASE_SRC || BT_BAP_UNICAST_CLIENT_ASE_SNK || BT_BAP_BROADCAST_SOURCE 26 27config BT_AUDIO_NOTIFY_RETRY_DELAY 28 int "Delay for notification sending retried attempt in 1.25 ms units" 29 range 6 3200 30 default 20 31 help 32 This option sets the time in 1.25 ms units before the stack will 33 retry to send notification that failed due to lack of TX buffers 34 available. 35 36rsource "Kconfig.bap" 37rsource "Kconfig.vocs" 38rsource "Kconfig.aics" 39rsource "Kconfig.vcp" 40rsource "Kconfig.micp" 41rsource "Kconfig.csip" 42rsource "Kconfig.tbs" 43rsource "Kconfig.mcs" 44rsource "Kconfig.has" 45rsource "Kconfig.mpl" 46rsource "Kconfig.mctl" 47rsource "Kconfig.cap" 48rsource "Kconfig.tmap" 49rsource "Kconfig.gmap" 50rsource "Kconfig.pbp" 51 52module = BT_AUDIO 53module-str = "Bluetooth Audio" 54source "subsys/logging/Kconfig.template.log_config" 55 56endif # BT_AUDIO 57