Bluetooth: Audio: Rename BASS and BASS client
Rename BASS to BAP Scan Delegator and BASS Client to BAP Broadcast Assistant. This is the first step towards integrating the BASS with the rest of BAP. Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
This commit is contained in:
parent
c417cbc050
commit
ecb7591d6b
25 changed files with 1020 additions and 974 deletions
|
@ -189,6 +189,69 @@ config BT_AUDIO_BROADCAST_SNK_STREAM_COUNT
|
|||
|
||||
endif # BT_AUDIO_BROADCAST_SINK
|
||||
|
||||
config BT_BAP_SCAN_DELEGATOR
|
||||
bool "Basic Audio Profile Scan Delegator role support [EXPERIMENTAL]"
|
||||
select EXPERIMENTAL
|
||||
select BT_OBSERVER
|
||||
select BT_EXT_ADV
|
||||
select BT_PER_ADV_SYNC
|
||||
select BT_ISO_SYNC_RECEIVER
|
||||
help
|
||||
This option enables support for the Scan Delegator role and the
|
||||
Broadcast Audio Scan Service (BASS).
|
||||
|
||||
if BT_BAP_SCAN_DELEGATOR
|
||||
|
||||
config BT_BAP_SCAN_DELEGATOR_RECV_STATE_COUNT
|
||||
int "Scan Delegator Receive State Count"
|
||||
default 1
|
||||
range 1 3
|
||||
help
|
||||
Sets the number of receive state characteristics present on the
|
||||
server. Each characteristic may hold information to sync to a
|
||||
periodic advertise or a broadcast isochronous stream.
|
||||
|
||||
config BT_BAP_SCAN_DELEGATOR_MAX_METADATA_LEN
|
||||
int "Scan Delegator Maximum Metadata Length"
|
||||
default 32
|
||||
range 0 255
|
||||
help
|
||||
The maximum metadata length support by the BASS server.
|
||||
|
||||
config BT_BAP_SCAN_DELEGATOR_MAX_SUBGROUPS
|
||||
int "Scan Delegator Maximum Number of Subgroups support"
|
||||
default 1
|
||||
range 0 31
|
||||
help
|
||||
The maximum number of BIS subgroups supported.
|
||||
|
||||
endif # BT_BAP_SCAN_DELEGATOR
|
||||
|
||||
config BT_BAP_BROADCAST_ASSISTANT
|
||||
bool "Basic Audio Profile Broadcast Assistant role support [EXPERIMENTAL]"
|
||||
select EXPERIMENTAL
|
||||
select BT_OBSERVER
|
||||
select BT_EXT_ADV
|
||||
select BT_PER_ADV_SYNC
|
||||
select BT_ISO_SYNC_RECEIVER
|
||||
select BT_GATT_CLIENT
|
||||
select BT_GATT_AUTO_DISCOVER_CCC
|
||||
select BT_GATT_AUTO_UPDATE_MTU
|
||||
help
|
||||
This option enables support for the Broadcast Assistant role.
|
||||
|
||||
if BT_BAP_BROADCAST_ASSISTANT
|
||||
|
||||
config BT_BAP_BROADCAST_ASSISTANT_RECV_STATE_COUNT
|
||||
int "Broadcast Assistant Max Receive State Count"
|
||||
default 1
|
||||
range 1 255
|
||||
help
|
||||
Sets the number of maximum receive stat characteristics that will be
|
||||
discovered and ready to use. Each characteristic may hold information
|
||||
to sync to a periodic advertise or a broadcast isochronous stream.
|
||||
|
||||
endif # BT_BAP_BROADCAST_ASSISTANT
|
||||
|
||||
config BT_AUDIO_DEBUG_STREAM
|
||||
bool "Bluetooth Audio Stream debug"
|
||||
|
@ -240,6 +303,19 @@ config BT_AUDIO_DEBUG_BROADCAST_SINK
|
|||
Use this option to enable Bluetooth Audio Broadcast Sink debug logs
|
||||
for the Bluetooth Audio functionality.
|
||||
|
||||
config BT_DEBUG_BAP_SCAN_DELEGATOR
|
||||
bool "Broadcast Audio Scan Service debug"
|
||||
depends on BT_BAP_SCAN_DELEGATOR
|
||||
help
|
||||
Use this option to enable Broadcast Audio Scan Service debug logs for
|
||||
the Bluetooth Audio functionality.
|
||||
|
||||
config BT_DEBUG_BAP_BROADCAST_ASSISTANT
|
||||
bool "Broadcast Audio Scan Service client debug"
|
||||
depends on BT_BAP_BROADCAST_ASSISTANT
|
||||
help
|
||||
Use this option to enable Broadcast Audio Scan Service client
|
||||
debug logs for the Bluetooth Audio functionality.
|
||||
|
||||
config BT_AUDIO_STREAM
|
||||
# Virtual/hidden option
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue