zephyr/subsys/bluetooth/audio/Kconfig.vocs
Emil Gydesen c547079cc2 Bluetooth: Audio: Upgrade from experimental to unstable
This commit upgrades the LE audio API and implementation
from experimental to unstable.

LE Audio have existing for quite a few years in Zephyr
and is not going anywhere, but at the same time it still
has significant effort remaining before it can be
considered stable.

Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
2024-05-17 14:33:39 +02:00

50 lines
1.3 KiB
Plaintext

# Bluetooth Audio - Volume Offset Control Service options
#
# Copyright (c) 2020 Bose Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
##################### Volume Offset Control Service #####################
config BT_VOCS_MAX_INSTANCE_COUNT
int "Volume Offset Control Service max instance count"
default 0
range 0 15
help
This option sets the maximum number of instances of Volume Offset
Control Services.
config BT_VOCS
bool # hidden
default y if BT_VOCS_MAX_INSTANCE_COUNT > 0
help
This hidden option enables support for Volume Control Service.
if BT_VOCS
config BT_VOCS_MAX_OUTPUT_DESCRIPTION_SIZE
int "Volume Offset Control Service max output description size"
default 32
range 0 512
help
This option sets the maximum output description size in octets.
endif # BT_VOCS
##################### Volume Offset Control Service Client #####################
config BT_VOCS_CLIENT_MAX_INSTANCE_COUNT
int "Volume Offset Control Service client max instance count"
default 0
range 0 15
help
This option sets the maximum number of instances of Volume Offset
Control Service clients.
config BT_VOCS_CLIENT
bool # hidden
default y if BT_VOCS_CLIENT_MAX_INSTANCE_COUNT > 0
help
This hidden option enables support for Volume Offset Control Service.