zephyr/subsys/bluetooth/audio/Kconfig.aics
Asbjørn Sæbø 34de2af394 Bluetooth: audio - remove BT_AUDIO_DEBUG
Remove the BT_AUDIO_DEBUG Kconfig option.

Given that all the audio modules are guarded by the BT_AUDIO config,
it seems excessive to also have a separate guard for audio module
debug. It is sufficient that this is turned on/off module by module.

Note that the BT_AUDIO_DEBUG was also located in the wrong file - the
babs Kconfig file, not the main Kconfig file.

Signed-off-by: Asbjørn Sæbø <asbjorn.sabo@nordicsemi.no>
2022-02-21 22:03:04 -05:00

73 lines
1.8 KiB
Plaintext

# Bluetooth Audio - Audio Input Control Service options
#
# Copyright (c) 2020 Bose Corporation
# Copyright (c) 2020 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: Apache-2.0
#
##################### Audio Input Control Service #####################
config BT_AICS_MAX_INSTANCE_COUNT
int "Audio Input Control Service max instance count [EXPERIMENTAL]"
default 0
range 0 15
help
This option sets the maximum number of instances of Audio Input
Control Services.
config BT_AICS
bool # hidden
default y if BT_AICS_MAX_INSTANCE_COUNT > 0
select EXPERIMENTAL
help
This hidden option enables support for Audio Input Control Service.
if BT_AICS
config BT_AICS_MAX_INPUT_DESCRIPTION_SIZE
int "Audio Input Control Service max input description size"
default 32
range 0 512
help
This option sets the maximum input description size in octets.
############# DEBUG #############
config BT_DEBUG_AICS
bool "Audio Input Control Service debug"
help
Use this option to enable Audio Input Control Service debug logs for
the Bluetooth Audio functionality.
endif # BT_AICS
##################### Audio Input Control Service Client #####################
config BT_AICS_CLIENT_MAX_INSTANCE_COUNT
int "Audio Input Control Service client max instance count [EXPERIMENTAL]"
default 0
range 0 15
help
This option sets the maximum number of instances of Audio Input
Control Services.
config BT_AICS_CLIENT
bool # hidden
default y if BT_AICS_CLIENT_MAX_INSTANCE_COUNT > 0
select EXPERIMENTAL
help
This hidden option enables support for Audio Input Control Service.
if BT_AICS_CLIENT
############# DEBUG #############
config BT_DEBUG_AICS_CLIENT
bool "Audio Input Control Service client debug"
help
Use this option to enable Audio Input Control Service client debug
logs for the Bluetooth Audio functionality.
endif # BT_AICS_CLIENT