Bluetooth: BAP: Unicast server depend on PACS
When in the BAP unicast server role, at least PAC sink or PAC source shall be set. In order to fulfill this new requirement, a few other Kconfig options had to be changed to a `depends on` from `select` to avoid recursive Kconfig requirements. This change may require some applications to update their configurations according to the migration guide. The change from `select` to `depends on` is ideal anyhow as that is the recommended way to add dependencies. This can checked via the combined BT_PACS Kconfig value. Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
This commit is contained in:
parent
4fe5ac9248
commit
353a05b116
11 changed files with 28 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
|||
CONFIG_BT=y
|
||||
CONFIG_BT_PERIPHERAL=y
|
||||
CONFIG_BT_ISO_PERIPHERAL=y
|
||||
CONFIG_BT_PRIVACY=y
|
||||
|
||||
CONFIG_BT_SMP=y
|
||||
|
@ -16,6 +17,7 @@ CONFIG_BT_ATT_PREPARE_COUNT=1
|
|||
|
||||
CONFIG_BT_AUDIO=y
|
||||
CONFIG_BT_BAP_UNICAST_SERVER=y
|
||||
CONFIG_BT_ASCS=y
|
||||
CONFIG_BT_ASCS_ASE_SNK_COUNT=1
|
||||
CONFIG_BT_ASCS_ASE_SRC_COUNT=1
|
||||
# Support an ISO channel per ASE
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
CONFIG_BT=y
|
||||
CONFIG_LOG=y
|
||||
CONFIG_BT_PERIPHERAL=y
|
||||
CONFIG_BT_ISO_PERIPHERAL=y
|
||||
CONFIG_BT_PRIVACY=y
|
||||
CONFIG_BT_AUDIO=y
|
||||
CONFIG_UTF8=y
|
||||
|
@ -27,6 +28,7 @@ CONFIG_BT_VCP_VOL_REND=y
|
|||
CONFIG_BT_MCC=y
|
||||
|
||||
# Support an ISO channel per ASE
|
||||
CONFIG_BT_ASCS=y
|
||||
CONFIG_BT_ASCS_ASE_SNK_COUNT=1
|
||||
CONFIG_BT_ASCS_ASE_SRC_COUNT=1
|
||||
# Support an ISO channel per ASE
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
CONFIG_BT=y
|
||||
CONFIG_LOG=y
|
||||
CONFIG_BT_PERIPHERAL=y
|
||||
CONFIG_BT_ISO_PERIPHERAL=y
|
||||
CONFIG_BT_AUDIO=y
|
||||
CONFIG_BT_BAP_UNICAST_SERVER=y
|
||||
CONFIG_BT_ASCS=y
|
||||
CONFIG_BT_ASCS_ASE_SNK_COUNT=2
|
||||
CONFIG_BT_ASCS_ASE_SRC_COUNT=1
|
||||
CONFIG_BT_ISO_TX_BUF_COUNT=2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue