Due to this bug: https://github.com/zephyrproject-rtos/zephyr/issues/64574 We need to increase the number of L2CAP Tx Buffers so this sample can be used. Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
20 lines
535 B
Text
20 lines
535 B
Text
CONFIG_BT=y
|
|
CONFIG_LOG=y
|
|
CONFIG_BT_PERIPHERAL=y
|
|
CONFIG_BT_AUDIO=y
|
|
CONFIG_BT_BAP_UNICAST_SERVER=y
|
|
CONFIG_BT_ASCS_ASE_SNK_COUNT=2
|
|
CONFIG_BT_ASCS_ASE_SRC_COUNT=1
|
|
CONFIG_BT_ISO_TX_BUF_COUNT=2
|
|
# Support an ISO channel per ASE
|
|
CONFIG_BT_ISO_MAX_CHAN=4
|
|
|
|
# Mandatory to support at least 1 for ASCS
|
|
CONFIG_BT_ATT_PREPARE_COUNT=1
|
|
|
|
CONFIG_BT_EXT_ADV=y
|
|
CONFIG_BT_DEVICE_NAME="Unicast Audio Server"
|
|
|
|
# Due to https://github.com/zephyrproject-rtos/zephyr/issues/64574 we need to increase the number
|
|
# of L2CAP buffers
|
|
CONFIG_BT_L2CAP_TX_BUF_COUNT=4
|