Add broadcast support for the CAP acceptor sample. This adds new sample-specific Kconfig options to help select the right Kconfig options based on whether unicast, broadcast or both is being used. The babblesim implemented for the broadcast has been expanded to verify that the CAP acceptor receives the broadcast audio. Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
24 lines
483 B
Plaintext
24 lines
483 B
Plaintext
CONFIG_BT=y
|
|
CONFIG_LOG=y
|
|
CONFIG_BT_PERIPHERAL=y
|
|
CONFIG_BT_GATT_CLIENT=y
|
|
CONFIG_BT_EXT_ADV=y
|
|
CONFIG_BT_DEVICE_NAME="CAP Acceptor"
|
|
CONFIG_BT_AUDIO=y
|
|
CONFIG_BT_SMP=y
|
|
CONFIG_BT_KEYS_OVERWRITE_OLDEST=y
|
|
|
|
# CAP
|
|
CONFIG_BT_CAP_ACCEPTOR=y
|
|
|
|
# Mandatory to support at least 1 for ASCS
|
|
CONFIG_BT_ATT_PREPARE_COUNT=1
|
|
|
|
# Support an ISO channel per ASE
|
|
CONFIG_BT_ASCS=y
|
|
CONFIG_BT_ASCS_MAX_ASE_SNK_COUNT=1
|
|
CONFIG_BT_ASCS_MAX_ASE_SRC_COUNT=1
|
|
|
|
# Support an ISO channel per ASE
|
|
CONFIG_BT_ISO_MAX_CHAN=2
|