11#ifndef ZEPHYR_INCLUDE_BLUETOOTH_AUDIO_BAP_
12#define ZEPHYR_INCLUDE_BLUETOOTH_AUDIO_BAP_
31#include <zephyr/autoconf.h>
50#define BT_BAP_BASS_MAX_SUBGROUPS \
51 COND_CODE_1(CONFIG_BT_AUDIO, (CONFIG_BT_BAP_BASS_MAX_SUBGROUPS), (0))
54#define BT_BASE_MAX_SIZE (UINT8_MAX - 1 - BT_UUID_SIZE_16)
57#define BT_BAP_INVALID_BROADCAST_ID 0xFFFFFFFFU
60#define BT_BAP_PD_UNSET 0xFFFFFFFFU
70#define BT_BAP_ADV_PARAM_CONN_QUICK \
71 BT_LE_ADV_PARAM(BT_LE_ADV_OPT_CONN | BT_LE_ADV_OPT_EXT_ADV, BT_GAP_MS_TO_ADV_INTERVAL(20), \
72 BT_GAP_MS_TO_ADV_INTERVAL(30), NULL)
79#define BT_BAP_ADV_PARAM_CONN_REDUCED \
80 BT_LE_ADV_PARAM(BT_LE_ADV_OPT_CONN | BT_LE_ADV_OPT_EXT_ADV, \
81 BT_GAP_MS_TO_ADV_INTERVAL(150), BT_GAP_MS_TO_ADV_INTERVAL(150), NULL)
91#define BT_BAP_CONN_PARAM_SHORT_7_5 \
92 BT_LE_CONN_PARAM(BT_GAP_US_TO_CONN_INTERVAL(7500), BT_GAP_MS_TO_CONN_INTERVAL(30), 0, \
93 BT_GAP_MS_TO_CONN_TIMEOUT(4000))
103#define BT_BAP_CONN_PARAM_SHORT_10 \
104 BT_LE_CONN_PARAM(BT_GAP_MS_TO_CONN_INTERVAL(10), BT_GAP_MS_TO_CONN_INTERVAL(30), 0, \
105 BT_GAP_MS_TO_CONN_TIMEOUT(4000))
112#define BT_BAP_CONN_PARAM_RELAXED \
113 BT_LE_CONN_PARAM(BT_GAP_MS_TO_CONN_INTERVAL(50), BT_GAP_MS_TO_CONN_INTERVAL(70), 0, \
114 BT_GAP_MS_TO_CONN_TIMEOUT(4000))
122#define BT_BAP_ADV_PARAM_BROADCAST_FAST \
123 BT_LE_ADV_PARAM(BT_LE_ADV_OPT_EXT_ADV, BT_GAP_MS_TO_ADV_INTERVAL(60), \
124 BT_GAP_MS_TO_ADV_INTERVAL(60), NULL)
132#define BT_BAP_ADV_PARAM_BROADCAST_SLOW \
133 BT_LE_ADV_PARAM(BT_LE_ADV_OPT_EXT_ADV, BT_GAP_MS_TO_ADV_INTERVAL(150), \
134 BT_GAP_MS_TO_ADV_INTERVAL(150), NULL)
142#define BT_BAP_PER_ADV_PARAM_BROADCAST_FAST \
143 BT_LE_PER_ADV_PARAM(BT_GAP_MS_TO_PER_ADV_INTERVAL(60), BT_GAP_MS_TO_PER_ADV_INTERVAL(60), \
144 BT_LE_PER_ADV_OPT_NONE)
152#define BT_BAP_PER_ADV_PARAM_BROADCAST_SLOW \
153 BT_LE_PER_ADV_PARAM(BT_GAP_MS_TO_PER_ADV_INTERVAL(150), \
154 BT_GAP_MS_TO_PER_ADV_INTERVAL(150), BT_LE_PER_ADV_OPT_NONE)
164#define BT_BAP_BASS_VALID_BIT_BITFIELD(_bis_bitfield) \
165 ((_bis_bitfield) == 0U || (_bis_bitfield) == BT_BAP_BIS_SYNC_NO_PREF || \
166 BT_ISO_VALID_BIS_BITFIELD(_bis_bitfield))
179#define BT_BAP_QOS_CFG(_interval, _framing, _phy, _sdu, _rtn, _latency, _pd) \
180 ((struct bt_bap_qos_cfg){ \
181 .interval = _interval, \
182 .framing = _framing, \
186 IF_ENABLED(UTIL_OR(IS_ENABLED(CONFIG_BT_BAP_BROADCAST_SOURCE), \
187 IS_ENABLED(CONFIG_BT_BAP_UNICAST)), \
188 (.latency = _latency,)) \
219#define BT_BAP_QOS_CFG_UNFRAMED(_interval, _sdu, _rtn, _latency, _pd) \
220 BT_BAP_QOS_CFG(_interval, BT_BAP_QOS_CFG_FRAMING_UNFRAMED, BT_BAP_QOS_CFG_2M, _sdu, _rtn, \
232#define BT_BAP_QOS_CFG_FRAMED(_interval, _sdu, _rtn, _latency, _pd) \
233 BT_BAP_QOS_CFG(_interval, BT_BAP_QOS_CFG_FRAMING_FRAMED, BT_BAP_QOS_CFG_2M, _sdu, _rtn, \
284#if defined(CONFIG_BT_BAP_BROADCAST_SOURCE) || defined(CONFIG_BT_BAP_UNICAST) || \
301#if defined(CONFIG_BT_ISO_TEST_PARAMS) || defined(__DOXYGEN__)
346#define BT_BAP_QOS_CFG_PREF(_unframed_supported, _phy, _rtn, _latency, _pd_min, _pd_max, \
347 _pref_pd_min, _pref_pd_max) \
349 .unframed_supported = _unframed_supported, .phy = _phy, .rtn = _rtn, \
350 .latency = _latency, .pd_min = _pd_min, .pd_max = _pd_max, \
351 .pref_pd_min = _pref_pd_min, .pref_pd_max = _pref_pd_max, \
465#define BT_BAP_PA_INTERVAL_UNKNOWN 0xFFFF
473#define BT_BAP_BIS_SYNC_NO_PREF 0xFFFFFFFF
475#define BT_BAP_BIS_SYNC_FAILED 0xFFFFFFFF
631#define BT_BAP_ASCS_RSP(c, r) (struct bt_bap_ascs_rsp) { .code = c, .reason = r }
665#if defined(CONFIG_BT_AUDIO_CODEC_CFG_MAX_METADATA_SIZE) || defined(__DOXYGEN__)
745 bool past_avail,
uint16_t pa_interval);
960#if defined(CONFIG_BT_BAP_DEBUG_STREAM_SEQ_NUM) || defined(__DOXYGEN__)
973#if defined(CONFIG_BT_BAP_UNICAST) || defined(__DOXYGEN__)
1053#if defined(CONFIG_BT_AUDIO_RX) || defined(__DOXYGEN__)
1069#if defined(CONFIG_BT_AUDIO_TX) || defined(__DOXYGEN__)
1669#if defined(CONFIG_BT_ISO_TEST_PARAMS) || defined(__DOXYGEN__)
2076struct bt_bap_base_subgroup;
2163 bool (*func)(
const struct bt_bap_base_subgroup *subgroup,
2333#if CONFIG_BT_AUDIO_CODEC_CFG_MAX_DATA_SIZE > 0 || defined(__DOXYGEN__)
2393#if defined(CONFIG_BT_ISO_TEST_PARAMS) || defined(__DOXYGEN__)
2477 const uint8_t meta[],
size_t meta_len);
Bluetooth device address definitions and utilities.
Bluetooth Assigned Numbers, codes and identifiers.
Bluetooth Audio handling.
Bluetooth subsystem core APIs.
Bluetooth connection handling.
Bluetooth data types and helpers.
Bluetooth Generic Access Profile defines and Assigned Numbers.
bt_audio_location
Location values for BT Audio.
Definition assigned_numbers.h:1389
bt_audio_metadata_type
Codec metadata type IDs.
Definition assigned_numbers.h:1308
bt_audio_context
Audio Context Type for Generic Audio.
Definition assigned_numbers.h:1179
bt_audio_dir
Audio direction from the perspective of the BAP Unicast Server / BAP Broadcast Sink.
Definition audio.h:318
int bt_bap_broadcast_sink_create(struct bt_le_per_adv_sync *pa_sync, uint32_t broadcast_id, struct bt_bap_broadcast_sink **sink)
Create a Broadcast Sink from a periodic advertising sync.
int bt_bap_broadcast_sink_stop(struct bt_bap_broadcast_sink *sink)
Stop audio broadcast sink.
int bt_bap_broadcast_sink_register_cb(struct bt_bap_broadcast_sink_cb *cb)
Register Broadcast sink callbacks.
int bt_bap_broadcast_sink_delete(struct bt_bap_broadcast_sink *sink)
Release a broadcast sink.
int bt_bap_broadcast_sink_sync(struct bt_bap_broadcast_sink *sink, uint32_t indexes_bitfield, struct bt_bap_stream *streams[], const uint8_t broadcast_code[BT_ISO_BROADCAST_CODE_SIZE])
Sync to a broadcaster's audio.
int bt_bap_broadcast_source_delete(struct bt_bap_broadcast_source *source)
Delete audio broadcast source.
bool(* bt_bap_broadcast_source_foreach_stream_func_t)(struct bt_bap_stream *stream, void *user_data)
Callback function for bt_bap_broadcast_source_foreach_stream().
Definition bap.h:2543
int bt_bap_broadcast_source_stop(struct bt_bap_broadcast_source *source)
Stop audio broadcast source.
int bt_bap_broadcast_source_foreach_stream(struct bt_bap_broadcast_source *source, bt_bap_broadcast_source_foreach_stream_func_t func, void *user_data)
Iterate through all streams in a broadcast source.
int bt_bap_broadcast_source_reconfig(struct bt_bap_broadcast_source *source, struct bt_bap_broadcast_source_param *param)
Reconfigure audio broadcast source.
int bt_bap_broadcast_source_start(struct bt_bap_broadcast_source *source, struct bt_le_ext_adv *adv)
Start audio broadcast source.
int bt_bap_broadcast_source_register_cb(struct bt_bap_broadcast_source_cb *cb)
Registers callbacks for Broadcast Sources.
int bt_bap_broadcast_source_unregister_cb(struct bt_bap_broadcast_source_cb *cb)
Unregisters callbacks for Broadcast Sources.
int bt_bap_broadcast_source_create(struct bt_bap_broadcast_source_param *param, struct bt_bap_broadcast_source **source)
Create audio broadcast source.
int bt_bap_broadcast_source_get_base(struct bt_bap_broadcast_source *source, struct net_buf_simple *base_buf)
Get the Broadcast Audio Stream Endpoint of a broadcast source.
int bt_bap_broadcast_source_update_metadata(struct bt_bap_broadcast_source *source, const uint8_t meta[], size_t meta_len)
Modify the metadata of an audio broadcast source.
int bt_bap_base_get_subgroup_bis_count(const struct bt_bap_base_subgroup *subgroup)
Get the BIS count of a subgroup.
int bt_bap_base_get_subgroup_codec_data(const struct bt_bap_base_subgroup *subgroup, uint8_t **data)
Get the codec configuration data of a subgroup.
const struct bt_bap_base * bt_bap_base_get_base_from_ad(const struct bt_data *ad)
Generate a pointer to a BASE from periodic advertising data.
int bt_bap_base_subgroup_get_bis_indexes(const struct bt_bap_base_subgroup *subgroup, uint32_t *bis_indexes)
Get all BIS indexes of a subgroup.
int bt_bap_base_subgroup_foreach_bis(const struct bt_bap_base_subgroup *subgroup, bool(*func)(const struct bt_bap_base_subgroup_bis *bis, void *user_data), void *user_data)
Iterate on all BIS in the subgroup.
int bt_bap_base_get_size(const struct bt_bap_base *base)
Get the size of a BASE.
int bt_bap_base_foreach_subgroup(const struct bt_bap_base *base, bool(*func)(const struct bt_bap_base_subgroup *subgroup, void *user_data), void *user_data)
Iterate on all subgroups in the BASE.
int bt_bap_base_get_bis_indexes(const struct bt_bap_base *base, uint32_t *bis_indexes)
Get all BIS indexes of a BASE.
int bt_bap_base_subgroup_codec_to_codec_cfg(const struct bt_bap_base_subgroup *subgroup, struct bt_audio_codec_cfg *codec_cfg)
Store subgroup codec data in a Codec config parsing APIs.
int bt_bap_base_subgroup_bis_codec_to_codec_cfg(const struct bt_bap_base_subgroup_bis *bis, struct bt_audio_codec_cfg *codec_cfg)
Store BIS codec configuration data in a Codec config parsing APIs.
int bt_bap_base_get_subgroup_count(const struct bt_bap_base *base)
Get the subgroup count of a BASE.
int bt_bap_base_get_subgroup_codec_id(const struct bt_bap_base_subgroup *subgroup, struct bt_bap_base_codec_id *codec_id)
Get the codec ID of a subgroup.
int bt_bap_base_get_pres_delay(const struct bt_bap_base *base)
Get the presentation delay value of a BASE.
int bt_bap_base_get_subgroup_codec_meta(const struct bt_bap_base_subgroup *subgroup, uint8_t **meta)
Get the codec metadata of a subgroup.
int bt_bap_unicast_group_delete(struct bt_bap_unicast_group *unicast_group)
Delete audio unicast group.
int bt_bap_unicast_group_get_info(const struct bt_bap_unicast_group *unicast_group, struct bt_bap_unicast_group_info *info)
Return structure holding information of unicast group.
int bt_bap_unicast_group_add_streams(struct bt_bap_unicast_group *unicast_group, struct bt_bap_unicast_group_stream_pair_param params[], size_t num_param)
Add streams to a unicast group as a unicast client.
int bt_bap_unicast_group_create(struct bt_bap_unicast_group_param *param, struct bt_bap_unicast_group **unicast_group)
Create unicast group.
int bt_bap_unicast_group_reconfig(struct bt_bap_unicast_group *unicast_group, const struct bt_bap_unicast_group_param *param)
Reconfigure unicast group.
int bt_bap_unicast_client_discover(struct bt_conn *conn, enum bt_audio_dir dir)
Discover remote capabilities and endpoints.
int bt_bap_unicast_group_foreach_stream(struct bt_bap_unicast_group *unicast_group, bt_bap_unicast_group_foreach_stream_func_t func, void *user_data)
Iterate through all streams in a unicast group.
int bt_bap_unicast_client_register_cb(struct bt_bap_unicast_client_cb *cb)
Register unicast client callbacks.
int bt_bap_unicast_client_unregister_cb(struct bt_bap_unicast_client_cb *cb)
Unregister unicast client callbacks.
bool(* bt_bap_unicast_group_foreach_stream_func_t)(struct bt_bap_stream *stream, void *user_data)
Callback function for bt_bap_unicast_group_foreach_stream().
Definition bap.h:1778
int bt_bap_unicast_server_unregister(void)
Unregister the Unicast Server.
int bt_bap_unicast_server_register_cb(const struct bt_bap_unicast_server_cb *cb)
Register unicast server callbacks.
int bt_bap_unicast_server_config_ase(struct bt_conn *conn, struct bt_bap_stream *stream, const struct bt_audio_codec_cfg *codec_cfg, const struct bt_bap_qos_cfg_pref *qos_pref)
Initialize and configure a new ASE.
int bt_bap_unicast_server_register(const struct bt_bap_unicast_server_register_param *param)
Register the Unicast Server.
bool(* bt_bap_ep_func_t)(struct bt_bap_ep *ep, void *user_data)
The callback function called for each endpoint.
Definition bap.h:1592
int bt_bap_unicast_server_unregister_cb(const struct bt_bap_unicast_server_cb *cb)
Unregister unicast server callbacks.
int bt_bap_unicast_server_foreach_ep(struct bt_conn *conn, bt_bap_ep_func_t func, void *user_data)
Iterate through all endpoints of the given connection.
int bt_bap_broadcast_assistant_rem_src(struct bt_conn *conn, uint8_t src_id)
Remove a source from the server.
int bt_bap_stream_metadata(struct bt_bap_stream *stream, const uint8_t meta[], size_t meta_len)
Change Audio Stream Metadata.
int bt_bap_stream_disable(struct bt_bap_stream *stream)
Disable Audio Stream.
int bt_bap_stream_enable(struct bt_bap_stream *stream, const uint8_t meta[], size_t meta_len)
Enable Audio Stream.
bt_bap_bass_att_err
Broadcast Audio Scan Service (BASS) specific ATT error codes.
Definition bap.h:456
bt_bap_qos_cfg_framing
QoS Framing.
Definition bap.h:193
int bt_bap_scan_delegator_set_pa_state(uint8_t src_id, enum bt_bap_pa_state pa_state)
Set the periodic advertising sync state to syncing.
#define BT_BAP_BASS_MAX_SUBGROUPS
Maximum number of subgroups supported in the BAP Scan Delegator API.
Definition bap.h:50
int bt_bap_stream_get_tx_sync(struct bt_bap_stream *stream, struct bt_iso_tx_info *info)
Get ISO transmission timing info for a Basic Audio Profile stream.
void(* bt_bap_broadcast_assistant_write_cb)(struct bt_conn *conn, int err)
Callback function for writes.
Definition bap.h:2894
struct bt_conn * bt_bap_ep_get_conn(const struct bt_bap_ep *ep)
Get the pointer to the ACL connection of an endpoint.
bt_bap_big_enc_state
Broadcast Isochronous Group encryption state reported by the Scan Delegator.
Definition bap.h:441
int bt_bap_stream_send(struct bt_bap_stream *stream, struct net_buf *buf, uint16_t seq_num)
Send data to Audio stream without timestamp.
int bt_bap_broadcast_assistant_unregister_cb(struct bt_bap_broadcast_assistant_cb *cb)
Unregisters the callbacks used by the Broadcast Audio Scan Service client.
int bt_bap_scan_delegator_rem_src(uint8_t src_id)
Remove a receive state source.
int bt_bap_scan_delegator_add_src(const struct bt_bap_scan_delegator_add_src_param *param)
Add a receive state source locally.
int bt_bap_scan_delegator_unregister(void)
unregister the Basic Audio Profile Scan Delegator and BASS.
int bt_bap_scan_delegator_register(struct bt_bap_scan_delegator_cb *cb)
Register the Basic Audio Profile Scan Delegator and BASS.
int bt_bap_broadcast_assistant_scan_stop(struct bt_conn *conn)
Stop remote scanning for BISes for a server.
int bt_bap_stream_start(struct bt_bap_stream *stream)
Start Audio Stream.
int bt_bap_broadcast_assistant_read_recv_state(struct bt_conn *conn, uint8_t idx)
Read the specified receive state from the server.
int bt_bap_broadcast_assistant_scan_start(struct bt_conn *conn, bool start_scan)
Scan start for BISes for a remote server.
bt_bap_ascs_reason
Response Reasons.
Definition bap.h:547
bt_bap_ascs_rsp_code
Response Status Code.
Definition bap.h:507
int bt_bap_stream_send_ts(struct bt_bap_stream *stream, struct net_buf *buf, uint16_t seq_num, uint32_t ts)
Send data to Audio stream with timestamp.
int bt_bap_stream_connect(struct bt_bap_stream *stream)
Connect unicast audio stream.
int bt_bap_stream_reconfig(struct bt_bap_stream *stream, const struct bt_audio_codec_cfg *codec_cfg)
Reconfigure Audio Stream.
int bt_bap_broadcast_assistant_mod_src(struct bt_conn *conn, const struct bt_bap_broadcast_assistant_mod_src_param *param)
Modify a source on the server.
int bt_bap_stream_config(struct bt_conn *conn, struct bt_bap_stream *stream, struct bt_bap_ep *ep, const struct bt_audio_codec_cfg *codec_cfg)
Configure Audio Stream.
int bt_bap_stream_release(struct bt_bap_stream *stream)
Release Audio Stream.
void bt_bap_stream_cb_register(struct bt_bap_stream *stream, struct bt_bap_stream_ops *ops)
Register Audio callbacks for a stream.
int bt_bap_broadcast_assistant_discover(struct bt_conn *conn)
Discover Broadcast Audio Scan Service on the server.
void bt_bap_scan_delegator_foreach_state(bt_bap_scan_delegator_state_func_t func, void *user_data)
Iterate through all existing receive states.
int bt_bap_broadcast_assistant_register_cb(struct bt_bap_broadcast_assistant_cb *cb)
Registers the callbacks used by Broadcast Audio Scan Service client.
int bt_bap_broadcast_assistant_set_broadcast_code(struct bt_conn *conn, uint8_t src_id, const uint8_t broadcast_code[BT_ISO_BROADCAST_CODE_SIZE])
Set a broadcast code to the specified receive state.
const struct bt_bap_scan_delegator_recv_state * bt_bap_scan_delegator_find_state(bt_bap_scan_delegator_state_func_t func, void *user_data)
Find and return a receive state based on a compare function.
int bt_bap_scan_delegator_mod_src(const struct bt_bap_scan_delegator_mod_src_param *param)
Add a receive state source locally.
bt_bap_pa_state
Periodic advertising state reported by the Scan Delegator.
Definition bap.h:423
int bt_bap_stream_qos(struct bt_conn *conn, struct bt_bap_unicast_group *group)
Configure Audio Stream QoS.
int bt_bap_broadcast_assistant_add_src(struct bt_conn *conn, const struct bt_bap_broadcast_assistant_add_src_param *param)
Add a source on the server.
int bt_bap_stream_stop(struct bt_bap_stream *stream)
Stop Audio Stream.
int bt_bap_ep_get_info(const struct bt_bap_ep *ep, struct bt_bap_ep_info *info)
Return structure holding information of audio stream endpoint.
bt_bap_ep_state
Endpoint states.
Definition bap.h:478
bool(* bt_bap_scan_delegator_state_func_t)(const struct bt_bap_scan_delegator_recv_state *recv_state, void *user_data)
Callback function for Scan Delegator receive state search functions.
Definition bap.h:2863
int bt_bap_scan_delegator_set_bis_sync_state(uint8_t src_id, uint32_t bis_synced[0])
Set the sync state of a receive state in the server.
@ BT_BAP_BASS_ERR_OPCODE_NOT_SUPPORTED
Opcode not supported.
Definition bap.h:458
@ BT_BAP_BASS_ERR_INVALID_SRC_ID
Invalid source ID supplied.
Definition bap.h:461
@ BT_BAP_QOS_CFG_FRAMING_FRAMED
Packets are always framed.
Definition bap.h:197
@ BT_BAP_QOS_CFG_FRAMING_UNFRAMED
Packets may be framed or unframed.
Definition bap.h:195
@ BT_BAP_BIG_ENC_STATE_BCODE_REQ
The Broadcast Isochronous Group broadcast code requested.
Definition bap.h:446
@ BT_BAP_BIG_ENC_STATE_NO_ENC
The Broadcast Isochronous Group not encrypted.
Definition bap.h:443
@ BT_BAP_BIG_ENC_STATE_BAD_CODE
The Broadcast Isochronous Group bad broadcast code.
Definition bap.h:452
@ BT_BAP_BIG_ENC_STATE_DEC
The Broadcast Isochronous Group decrypted.
Definition bap.h:449
@ BT_BAP_QOS_CFG_CODED
LE Coded PHY.
Definition bap.h:207
@ BT_BAP_QOS_CFG_2M
LE 2M PHY.
Definition bap.h:205
@ BT_BAP_QOS_CFG_1M
LE 1M PHY.
Definition bap.h:203
@ BT_BAP_ASCS_REASON_NONE
No reason.
Definition bap.h:549
@ BT_BAP_ASCS_REASON_PD
Presendation delay.
Definition bap.h:567
@ BT_BAP_ASCS_REASON_FRAMING
Framing.
Definition bap.h:557
@ BT_BAP_ASCS_REASON_CODEC_DATA
Codec configuration.
Definition bap.h:553
@ BT_BAP_ASCS_REASON_SDU
Maximum SDU size.
Definition bap.h:561
@ BT_BAP_ASCS_REASON_CODEC
Codec ID.
Definition bap.h:551
@ BT_BAP_ASCS_REASON_PHY
PHY.
Definition bap.h:559
@ BT_BAP_ASCS_REASON_LATENCY
Max transport latency.
Definition bap.h:565
@ BT_BAP_ASCS_REASON_CIS
Invalid CIS mapping.
Definition bap.h:569
@ BT_BAP_ASCS_REASON_RTN
RTN.
Definition bap.h:563
@ BT_BAP_ASCS_REASON_INTERVAL
SDU interval.
Definition bap.h:555
@ BT_BAP_ASCS_RSP_CODE_INVALID_ASE_STATE
Invalid ASE state.
Definition bap.h:517
@ BT_BAP_ASCS_RSP_CODE_METADATA_INVALID
Invalid metadata.
Definition bap.h:533
@ BT_BAP_ASCS_RSP_CODE_NOT_SUPPORTED
Server did not support operation by client.
Definition bap.h:511
@ BT_BAP_ASCS_RSP_CODE_CONF_UNSUPPORTED
Configuration parameters not supported by server.
Definition bap.h:523
@ BT_BAP_ASCS_RSP_CODE_INVALID_ASE
Invalid ASE ID.
Definition bap.h:515
@ BT_BAP_ASCS_RSP_CODE_INVALID_DIR
Invalid operation for direction.
Definition bap.h:519
@ BT_BAP_ASCS_RSP_CODE_CONF_INVALID
Invalid Configuration parameters.
Definition bap.h:527
@ BT_BAP_ASCS_RSP_CODE_CAP_UNSUPPORTED
Capabilities not supported by server.
Definition bap.h:521
@ BT_BAP_ASCS_RSP_CODE_NO_MEM
Server has insufficient resources.
Definition bap.h:535
@ BT_BAP_ASCS_RSP_CODE_METADATA_REJECTED
Metadata rejected by server.
Definition bap.h:531
@ BT_BAP_ASCS_RSP_CODE_UNSPECIFIED
Unspecified error.
Definition bap.h:537
@ BT_BAP_ASCS_RSP_CODE_INVALID_LENGTH
Server rejected due to invalid operation length.
Definition bap.h:513
@ BT_BAP_ASCS_RSP_CODE_METADATA_UNSUPPORTED
Unsupported metadata.
Definition bap.h:529
@ BT_BAP_ASCS_RSP_CODE_SUCCESS
Server completed operation successfully.
Definition bap.h:509
@ BT_BAP_ASCS_RSP_CODE_CONF_REJECTED
Configuration parameters rejected by server.
Definition bap.h:525
@ BT_BAP_PA_STATE_NOT_SYNCED
The periodic advertising has not been synchronized.
Definition bap.h:425
@ BT_BAP_PA_STATE_FAILED
Failed to synchronized to periodic advertising.
Definition bap.h:434
@ BT_BAP_PA_STATE_SYNCED
Synchronized to periodic advertising.
Definition bap.h:431
@ BT_BAP_PA_STATE_INFO_REQ
Waiting for SyncInfo from Broadcast Assistant.
Definition bap.h:428
@ BT_BAP_PA_STATE_NO_PAST
No periodic advertising sync transfer receiver from Broadcast Assistant.
Definition bap.h:437
@ BT_BAP_EP_STATE_ENABLING
Audio Stream Endpoint Enabling state.
Definition bap.h:489
@ BT_BAP_EP_STATE_IDLE
Audio Stream Endpoint Idle state.
Definition bap.h:480
@ BT_BAP_EP_STATE_CODEC_CONFIGURED
Audio Stream Endpoint Codec Configured state.
Definition bap.h:483
@ BT_BAP_EP_STATE_RELEASING
Audio Stream Endpoint Releasing state.
Definition bap.h:498
@ BT_BAP_EP_STATE_QOS_CONFIGURED
Audio Stream Endpoint QoS Configured state.
Definition bap.h:486
@ BT_BAP_EP_STATE_DISABLING
Audio Stream Endpoint Disabling state.
Definition bap.h:495
@ BT_BAP_EP_STATE_STREAMING
Audio Stream Endpoint Streaming state.
Definition bap.h:492
#define BT_ISO_BROADCAST_CODE_SIZE
Broadcast code size (16 octets).
Definition iso.h:144
struct _snode sys_snode_t
Single-linked list node structure.
Definition slist.h:39
#define BIT(n)
Unsigned integer with bit position n set (signed in assembly language).
Definition util_macro.h:44
state
Definition parser_state.h:29
#define bool
Definition stdbool.h:13
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
__UINT16_TYPE__ uint16_t
Definition stdint.h:89
Bluetooth LE Device Address.
Definition addr.h:49
Codec capability structure.
Definition audio.h:161
Codec specific configuration structure.
Definition audio.h:228
Structure storing values of fields of ASE Control Point notification.
Definition bap.h:573
enum bt_bap_ascs_reason reason
Response reason.
Definition bap.h:610
enum bt_audio_metadata_type metadata_type
Response metadata type.
Definition bap.h:620
enum bt_bap_ascs_rsp_code code
Value of the Response Code field.
Definition bap.h:587
Codec ID structure for a Broadcast Audio Source Endpoint (BASE).
Definition bap.h:2081
uint16_t cid
Codec Company ID.
Definition bap.h:2085
uint16_t vid
Codec Company Vendor ID.
Definition bap.h:2087
uint8_t id
Codec ID.
Definition bap.h:2083
BIS structure for each BIS in a Broadcast Audio Source Endpoint (BASE) subgroup.
Definition bap.h:2091
uint8_t * data
Codec Specific Data.
Definition bap.h:2097
uint8_t data_len
Codec Specific Data length.
Definition bap.h:2095
uint8_t index
Unique index of the BIS.
Definition bap.h:2093
Struct to hold subgroup specific information for the receive state.
Definition bap.h:658
uint8_t metadata[CONFIG_BT_AUDIO_CODEC_CFG_MAX_METADATA_SIZE]
The metadata.
Definition bap.h:667
uint32_t bis_sync
BIS synced bitfield.
Definition bap.h:660
uint8_t metadata_len
Length of the metadata.
Definition bap.h:663
Parameters for adding a source to a Broadcast Audio Scan Service server.
Definition bap.h:3085
uint8_t num_subgroups
Number of subgroups.
Definition bap.h:3106
bt_addr_le_t addr
Address of the advertiser.
Definition bap.h:3087
uint8_t adv_sid
SID of the advertising set.
Definition bap.h:3090
struct bt_bap_bass_subgroup * subgroups
Pointer to array of subgroups.
Definition bap.h:3113
uint16_t pa_interval
Periodic advertising interval in milliseconds.
Definition bap.h:3103
bool pa_sync
Whether to sync to periodic advertisements.
Definition bap.h:3093
uint32_t broadcast_id
24-bit broadcast ID
Definition bap.h:3096
Struct to hold the Basic Audio Profile Broadcast Assistant callbacks.
Definition bap.h:2902
void(* discover)(struct bt_conn *conn, int err, uint8_t recv_state_count)
Callback function for bt_bap_broadcast_assistant_discover.
Definition bap.h:2912
void(* broadcast_code)(struct bt_conn *conn, int err)
Callback function for bt_bap_broadcast_assistant_set_broadcast_code().
Definition bap.h:2985
void(* recv_state)(struct bt_conn *conn, int err, const struct bt_bap_scan_delegator_recv_state *state)
Callback function for when a receive state is read or updated.
Definition bap.h:2936
void(* scan_stop)(struct bt_conn *conn, int err)
Callback function for bt_bap_broadcast_assistant_scan_stop().
Definition bap.h:2961
void(* mod_src)(struct bt_conn *conn, int err)
Callback function for bt_bap_broadcast_assistant_mod_src().
Definition bap.h:2977
void(* scan)(const struct bt_le_scan_recv_info *info, uint32_t broadcast_id)
Callback function for Broadcast Audio Scan Service client scan results.
Definition bap.h:2924
void(* scan_start)(struct bt_conn *conn, int err)
Callback function for bt_bap_broadcast_assistant_scan_start().
Definition bap.h:2953
void(* add_src)(struct bt_conn *conn, int err)
Callback function for bt_bap_broadcast_assistant_add_src().
Definition bap.h:2969
void(* rem_src)(struct bt_conn *conn, int err)
Callback function for bt_bap_broadcast_assistant_rem_src().
Definition bap.h:2993
void(* recv_state_removed)(struct bt_conn *conn, uint8_t src_id)
Callback function for when a receive state is removed.
Definition bap.h:2945
Parameters for modifying a source.
Definition bap.h:3133
struct bt_bap_bass_subgroup * subgroups
Pointer to array of subgroups.
Definition bap.h:3151
uint8_t num_subgroups
Number of subgroups.
Definition bap.h:3148
uint8_t src_id
Source ID of the receive state.
Definition bap.h:3135
bool pa_sync
Whether to sync to periodic advertisements.
Definition bap.h:3138
uint16_t pa_interval
Periodic advertising interval.
Definition bap.h:3145
Broadcast Audio Sink callback structure.
Definition bap.h:2570
void(* base_recv)(struct bt_bap_broadcast_sink *sink, const struct bt_bap_base *base, size_t base_size)
Broadcast Audio Source Endpoint (BASE) received.
Definition bap.h:2581
void(* stopped)(struct bt_bap_broadcast_sink *sink, uint8_t reason)
The Broadcast Sink has stopped and none of the streams will receive audio data.
Definition bap.h:2612
void(* syncable)(struct bt_bap_broadcast_sink *sink, const struct bt_iso_biginfo *biginfo)
Broadcast sink is syncable.
Definition bap.h:2596
void(* started)(struct bt_bap_broadcast_sink *sink)
The Broadcast Sink has started and audio data may be received from all of the streams.
Definition bap.h:2604
Abstract Audio Broadcast Sink structure.
Struct to hold the Broadcast Source callbacks.
Definition bap.h:2284
void(* started)(struct bt_bap_broadcast_source *source)
The Broadcast Source has started and all of the streams are ready for audio data.
Definition bap.h:2290
void(* stopped)(struct bt_bap_broadcast_source *source, uint8_t reason)
The Broadcast Source has stopped and none of the streams are ready for audio data.
Definition bap.h:2298
Broadcast Source create parameters.
Definition bap.h:2359
uint16_t iso_interval
ISO interval.
Definition bap.h:2419
uint8_t packing
Broadcast Source packing mode.
Definition bap.h:2376
uint8_t pto
Pre-transmission offset.
Definition bap.h:2410
size_t params_count
The number of parameters in subgroup_params.
Definition bap.h:2361
struct bt_bap_broadcast_source_subgroup_param * params
Array of stream parameters.
Definition bap.h:2364
uint8_t broadcast_code[BT_ISO_BROADCAST_CODE_SIZE]
Broadcast code.
Definition bap.h:2391
const struct bt_bap_qos_cfg * qos
Quality of Service configuration.
Definition bap.h:2367
bool encryption
Whether or not to encrypt the streams.
Definition bap.h:2379
uint8_t irc
Immediate Repetition Count.
Definition bap.h:2401
Broadcast Source stream parameters.
Definition bap.h:2329
struct bt_bap_stream * stream
Audio stream.
Definition bap.h:2331
const uint8_t * data
BIS Codec Specific Configuration.
Definition bap.h:2342
size_t data_len
The number of elements in the data array.
Definition bap.h:2339
Broadcast Source subgroup parameters.
Definition bap.h:2347
const struct bt_audio_codec_cfg * codec_cfg
Subgroup Codec configuration.
Definition bap.h:2355
size_t params_count
The number of parameters in stream_params.
Definition bap.h:2349
struct bt_bap_broadcast_source_stream_param * params
Array of stream parameters.
Definition bap.h:2352
Abstract Audio Broadcast Source structure.
Structure holding information of audio stream endpoint.
Definition bap.h:860
uint8_t id
The ID of the endpoint.
Definition bap.h:862
bool can_recv
True if the stream associated with the endpoint is able to receive data.
Definition bap.h:877
struct bt_iso_chan * iso_chan
The isochronous channel associated with the endpoint.
Definition bap.h:871
enum bt_bap_ep_state state
The state of the endpoint.
Definition bap.h:865
struct bt_bap_ep * paired_ep
Pointer to paired endpoint if the endpoint is part of a bidirectional CIS, otherwise NULL.
Definition bap.h:882
enum bt_audio_dir dir
Capabilities type.
Definition bap.h:868
bool can_send
True if the stream associated with the endpoint is able to send data.
Definition bap.h:874
const struct bt_bap_qos_cfg_pref * qos_pref
Pointer to the preferred QoS settings associated with the endpoint.
Definition bap.h:885
Abstract Audio Endpoint structure.
Audio Stream Quality of Service Preference structure.
Definition bap.h:355
uint32_t pref_pd_min
Preferred minimum Presentation Delay in microseconds.
Definition bap.h:410
uint8_t rtn
Preferred Retransmission Number.
Definition bap.h:377
bool unframed_supported
Unframed PDUs supported.
Definition bap.h:362
uint32_t pd_min
Minimum Presentation Delay in microseconds.
Definition bap.h:393
uint32_t pd_max
Maximum Presentation Delay in microseconds.
Definition bap.h:402
uint8_t phy
Preferred PHY bitfield.
Definition bap.h:370
uint32_t pref_pd_max
Preferred maximum Presentation Delay in microseconds.
Definition bap.h:419
uint16_t latency
Preferred Transport Latency.
Definition bap.h:384
QoS configuration structure.
Definition bap.h:237
uint16_t sdu
Maximum SDU size.
Definition bap.h:282
uint8_t burst_number
Burst number.
Definition bap.h:320
enum bt_bap_qos_cfg_framing framing
QoS Framing.
Definition bap.h:259
uint16_t latency
Maximum Transport Latency.
Definition bap.h:291
uint8_t num_subevents
Number of subevents.
Definition bap.h:329
uint8_t rtn
Retransmission Number.
Definition bap.h:275
uint32_t interval
SDU Interval.
Definition bap.h:299
uint8_t phy
PHY.
Definition bap.h:267
uint16_t max_pdu
Maximum PDU size.
Definition bap.h:313
uint32_t pd
Presentation Delay in microseconds.
Definition bap.h:248
Parameters for bt_bap_scan_delegator_add_src().
Definition bap.h:2757
enum bt_bap_pa_state pa_state
Periodic Advertising sync state.
Definition bap.h:2770
uint8_t num_subgroups
Number of subgroups.
Definition bap.h:2779
enum bt_bap_big_enc_state encrypt_state
The broadcast isochronous group encryption state.
Definition bap.h:2773
bt_addr_le_t addr
Periodic Advertiser Address.
Definition bap.h:2759
uint8_t sid
Advertiser SID.
Definition bap.h:2762
uint32_t broadcast_id
The 24-bit broadcast ID.
Definition bap.h:2776
struct bt_bap_bass_subgroup subgroups[0]
Subgroup specific information.
Definition bap.h:2782
Struct to hold the Basic Audio Profile Scan Delegator callbacks.
Definition bap.h:714
int(* pa_sync_req)(struct bt_conn *conn, const struct bt_bap_scan_delegator_recv_state *recv_state, bool past_avail, uint16_t pa_interval)
Periodic advertising sync request.
Definition bap.h:743
int(* add_source)(struct bt_conn *conn, const struct bt_bap_scan_delegator_recv_state *recv_state)
Add Source operation callback.
Definition bap.h:824
int(* pa_sync_term_req)(struct bt_conn *conn, const struct bt_bap_scan_delegator_recv_state *recv_state)
Periodic advertising sync termination request.
Definition bap.h:760
void(* recv_state_updated)(struct bt_conn *conn, const struct bt_bap_scan_delegator_recv_state *recv_state)
Receive state updated.
Definition bap.h:724
void(* broadcast_code)(struct bt_conn *conn, const struct bt_bap_scan_delegator_recv_state *recv_state, const uint8_t broadcast_code[BT_ISO_BROADCAST_CODE_SIZE])
Broadcast code received.
Definition bap.h:774
int(* remove_source)(struct bt_conn *conn, uint8_t src_id)
Remove Source operation callback.
Definition bap.h:856
int(* bis_sync_req)(struct bt_conn *conn, const struct bt_bap_scan_delegator_recv_state *recv_state, const uint32_t bis_sync_req[0])
Broadcast Isochronous Stream synchronize request.
Definition bap.h:798
void(* scanning_state)(struct bt_conn *conn, bool is_scanning)
Broadcast Assistant scanning state callback.
Definition bap.h:810
int(* modify_source)(struct bt_conn *conn, const struct bt_bap_scan_delegator_recv_state *recv_state)
Modify Source operation callback.
Definition bap.h:840
Parameters for bt_bap_scan_delegator_mod_src().
Definition bap.h:2801
uint32_t broadcast_id
The 24-bit broadcast ID.
Definition bap.h:2809
uint8_t num_subgroups
Number of subgroups.
Definition bap.h:2812
struct bt_bap_bass_subgroup subgroups[0]
Subgroup specific information.
Definition bap.h:2820
uint8_t src_id
The periodic adverting sync.
Definition bap.h:2803
enum bt_bap_big_enc_state encrypt_state
The broadcast isochronous group encryption state.
Definition bap.h:2806
Represents the Broadcast Audio Scan Service receive state.
Definition bap.h:672
uint8_t src_id
The source ID.
Definition bap.h:674
uint8_t bad_code[BT_ISO_BROADCAST_CODE_SIZE]
The bad broadcast code.
Definition bap.h:696
enum bt_bap_pa_state pa_sync_state
The periodic adverting sync state.
Definition bap.h:683
struct bt_bap_bass_subgroup subgroups[0]
Subgroup specific information.
Definition bap.h:706
bt_addr_le_t addr
The Bluetooth address.
Definition bap.h:677
uint8_t adv_sid
The advertising set ID.
Definition bap.h:680
uint8_t num_subgroups
Number of subgroups.
Definition bap.h:699
uint32_t broadcast_id
The 24-bit broadcast ID.
Definition bap.h:689
enum bt_bap_big_enc_state encrypt_state
The broadcast isochronous group encryption state.
Definition bap.h:686
Stream operation.
Definition bap.h:972
void(* recv)(struct bt_bap_stream *stream, const struct bt_iso_recv_info *info, struct net_buf *buf)
Stream audio HCI receive callback.
Definition bap.h:1065
void(* enabled)(struct bt_bap_stream *stream)
Stream enabled callback.
Definition bap.h:1001
void(* sent)(struct bt_bap_stream *stream)
Stream audio HCI sent callback.
Definition bap.h:1082
void(* released)(struct bt_bap_stream *stream)
Stream released callback.
Definition bap.h:1030
void(* disabled)(struct bt_bap_stream *stream)
Stream disabled callback.
Definition bap.h:1020
void(* configured)(struct bt_bap_stream *stream, const struct bt_bap_qos_cfg_pref *pref)
Stream configured callback.
Definition bap.h:982
void(* connected)(struct bt_bap_stream *stream)
Isochronous channel connected callback.
Definition bap.h:1097
void(* metadata_updated)(struct bt_bap_stream *stream)
Stream metadata updated callback.
Definition bap.h:1011
void(* started)(struct bt_bap_stream *stream)
Stream started callback.
Definition bap.h:1041
void(* disconnected)(struct bt_bap_stream *stream, uint8_t reason)
Isochronous channel disconnected callback.
Definition bap.h:1111
void(* stopped)(struct bt_bap_stream *stream, uint8_t reason)
Stream stopped callback.
Definition bap.h:1051
void(* qos_set)(struct bt_bap_stream *stream)
Stream QoS set callback.
Definition bap.h:992
Basic Audio Profile stream structure.
Definition bap.h:923
void * group
Unicast or Broadcast group - Used internally.
Definition bap.h:958
const struct bt_audio_codec_cfg * codec_cfg
Codec Configuration.
Definition bap.h:935
struct bt_bap_stream_ops * ops
Audio stream operations.
Definition bap.h:945
const struct bt_bap_qos_cfg * qos
QoS Configuration.
Definition bap.h:942
struct bt_iso_chan * iso
ISO channel reference.
Definition bap.h:955
struct bt_conn * conn
Connection reference.
Definition bap.h:925
struct bt_bap_ep * ep
Endpoint reference.
Definition bap.h:928
void * user_data
Stream user data.
Definition bap.h:948
Unicast Client callback structure.
Definition bap.h:1828
void(* enable)(struct bt_bap_stream *stream, enum bt_bap_ascs_rsp_code rsp_code, enum bt_bap_ascs_reason reason)
Callback function for bt_bap_stream_enable().
Definition bap.h:1904
void(* discover)(struct bt_conn *conn, int err, enum bt_audio_dir dir)
BAP discovery callback function.
Definition bap.h:2018
void(* qos)(struct bt_bap_stream *stream, enum bt_bap_ascs_rsp_code rsp_code, enum bt_bap_ascs_reason reason)
Callback function for bt_bap_stream_qos().
Definition bap.h:1891
void(* pac_record)(struct bt_conn *conn, enum bt_audio_dir dir, const struct bt_audio_codec_cap *codec_cap)
Remote Published Audio Capability (PAC) record discovered.
Definition bap.h:1990
void(* disable)(struct bt_bap_stream *stream, enum bt_bap_ascs_rsp_code rsp_code, enum bt_bap_ascs_reason reason)
Callback function for bt_bap_stream_disable().
Definition bap.h:1947
void(* start)(struct bt_bap_stream *stream, enum bt_bap_ascs_rsp_code rsp_code, enum bt_bap_ascs_reason reason)
Callback function for bt_bap_stream_start().
Definition bap.h:1919
void(* location)(struct bt_conn *conn, enum bt_audio_dir dir, enum bt_audio_location loc)
Remote Unicast Server Audio Locations.
Definition bap.h:1839
void(* metadata)(struct bt_bap_stream *stream, enum bt_bap_ascs_rsp_code rsp_code, enum bt_bap_ascs_reason reason)
Callback function for bt_bap_stream_metadata().
Definition bap.h:1960
void(* release)(struct bt_bap_stream *stream, enum bt_bap_ascs_rsp_code rsp_code, enum bt_bap_ascs_reason reason)
Callback function for bt_bap_stream_release().
Definition bap.h:1973
void(* supported_contexts)(struct bt_conn *conn, enum bt_audio_context snk_ctx, enum bt_audio_context src_ctx)
Remote Unicast Server Supported Contexts.
Definition bap.h:1851
void(* stop)(struct bt_bap_stream *stream, enum bt_bap_ascs_rsp_code rsp_code, enum bt_bap_ascs_reason reason)
Callback function for bt_bap_stream_stop().
Definition bap.h:1934
void(* available_contexts)(struct bt_conn *conn, enum bt_audio_context snk_ctx, enum bt_audio_context src_ctx)
Remote Unicast Server Available Contexts.
Definition bap.h:1864
void(* endpoint)(struct bt_conn *conn, enum bt_audio_dir dir, struct bt_bap_ep *ep)
Remote Audio Stream Endpoint (ASE) discovered.
Definition bap.h:2004
void(* config)(struct bt_bap_stream *stream, enum bt_bap_ascs_rsp_code rsp_code, enum bt_bap_ascs_reason reason)
Callback function for bt_bap_stream_config() and bt_bap_stream_reconfig().
Definition bap.h:1876
Structure holding information of audio stream endpoint.
Definition bap.h:1797
uint32_t source_pd
Presentation delay for source ASEs.
Definition bap.h:1812
uint32_t sink_pd
Presentation delay for sink ASEs.
Definition bap.h:1804
Parameters for the creating unicast groups with bt_bap_unicast_group_create().
Definition bap.h:1653
uint16_t iso_interval
ISO interval.
Definition bap.h:1697
uint8_t packing
Unicast Group packing mode.
Definition bap.h:1667
uint8_t p_to_c_ft
Peripheral to Central flush timeout.
Definition bap.h:1688
uint8_t c_to_p_ft
Central to Peripheral flush timeout.
Definition bap.h:1678
size_t params_count
The number of parameters in params.
Definition bap.h:1655
struct bt_bap_unicast_group_stream_pair_param * params
Array of stream parameters.
Definition bap.h:1658
Parameter struct for the unicast group functions.
Definition bap.h:1644
struct bt_bap_unicast_group_stream_param * rx_param
Pointer to a receiving stream parameters.
Definition bap.h:1646
struct bt_bap_unicast_group_stream_param * tx_param
Pointer to a transmitting stream parameters.
Definition bap.h:1649
Parameter struct for each stream in the unicast group.
Definition bap.h:1630
const struct bt_bap_qos_cfg * qos
The QoS settings for the stream object.
Definition bap.h:1635
struct bt_bap_stream * stream
Pointer to a stream object.
Definition bap.h:1632
Abstract Audio Unicast Group structure.
Unicast Server callback structure.
Definition bap.h:1380
int(* disable)(struct bt_bap_stream *stream, struct bt_bap_ascs_rsp *rsp)
Stream Disable request callback.
Definition bap.h:1495
int(* qos)(struct bt_bap_stream *stream, const struct bt_bap_qos_cfg *qos, struct bt_bap_ascs_rsp *rsp)
Stream QoS request callback.
Definition bap.h:1436
int(* start)(struct bt_bap_stream *stream, struct bt_bap_ascs_rsp *rsp)
Stream Start request callback.
Definition bap.h:1466
int(* metadata)(struct bt_bap_stream *stream, const uint8_t meta[], size_t meta_len, struct bt_bap_ascs_rsp *rsp)
Stream Metadata update request callback.
Definition bap.h:1481
int(* enable)(struct bt_bap_stream *stream, const uint8_t meta[], size_t meta_len, struct bt_bap_ascs_rsp *rsp)
Stream Enable request callback.
Definition bap.h:1452
int(* reconfig)(struct bt_bap_stream *stream, enum bt_audio_dir dir, const struct bt_audio_codec_cfg *codec_cfg, struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp)
Stream reconfig request callback.
Definition bap.h:1419
int(* stop)(struct bt_bap_stream *stream, struct bt_bap_ascs_rsp *rsp)
Stream Stop callback.
Definition bap.h:1508
int(* release)(struct bt_bap_stream *stream, struct bt_bap_ascs_rsp *rsp)
Stream release callback.
Definition bap.h:1522
int(* config)(struct bt_conn *conn, const struct bt_bap_ep *ep, enum bt_audio_dir dir, const struct bt_audio_codec_cfg *codec_cfg, struct bt_bap_stream **stream, struct bt_bap_qos_cfg_pref *const pref, struct bt_bap_ascs_rsp *rsp)
Endpoint config request callback.
Definition bap.h:1399
Structure for registering Unicast Server.
Definition bap.h:1115
uint8_t snk_cnt
Sink Count to register.
Definition bap.h:1121
uint8_t src_cnt
Source Count to register.
Definition bap.h:1127
Opaque type representing a connection to a remote device.
Bluetooth data.
Definition data.h:40
Broadcast Isochronous Group (BIG) information.
Definition iso.h:648
ISO Channel structure.
Definition iso.h:205
ISO Meta Data structure for received ISO packets.
Definition iso.h:352
ISO Meta Data structure for transmitted ISO packets.
Definition iso.h:368
Opaque type representing an advertiser.
Opaque type representing a periodic advertising sync.
LE advertisement and scan response packet information.
Definition bluetooth.h:2355
Group structure.
Definition grp.h:18
Simple network buffer representation.
Definition net_buf.h:89
Network buffer representation.
Definition net_buf.h:1015