Zephyr API 3.6.99
|
Bluetooth Common Audio Profile (CAP) APIs. More...
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <zephyr/bluetooth/audio/audio.h>
#include <zephyr/bluetooth/audio/bap.h>
#include <zephyr/bluetooth/audio/csip.h>
#include <zephyr/bluetooth/addr.h>
#include <zephyr/bluetooth/bluetooth.h>
#include <zephyr/bluetooth/conn.h>
#include <zephyr/bluetooth/iso.h>
#include <zephyr/net_buf.h>
Go to the source code of this file.
Enumerations | |
enum | bt_cap_set_type { BT_CAP_SET_TYPE_AD_HOC , BT_CAP_SET_TYPE_CSIP } |
Type of CAP set. More... | |
Functions | |
int | bt_cap_acceptor_register (const struct bt_csip_set_member_register_param *param, struct bt_csip_set_member_svc_inst **svc_inst) |
Register the Common Audio Service. | |
int | bt_cap_initiator_unicast_discover (struct bt_conn *conn) |
Discovers audio support on a remote device. | |
void | bt_cap_stream_ops_register (struct bt_cap_stream *stream, struct bt_bap_stream_ops *ops) |
Register Audio operations for a Common Audio Profile stream. | |
int | bt_cap_stream_send (struct bt_cap_stream *stream, struct net_buf *buf, uint16_t seq_num) |
Send data to Common Audio Profile stream without timestamp. | |
int | bt_cap_stream_send_ts (struct bt_cap_stream *stream, struct net_buf *buf, uint16_t seq_num, uint32_t ts) |
Send data to Common Audio Profile stream with timestamp. | |
int | bt_cap_stream_get_tx_sync (struct bt_cap_stream *stream, struct bt_iso_tx_info *info) |
Get ISO transmission timing info for a Common Audio Profile stream. | |
int | bt_cap_initiator_register_cb (const struct bt_cap_initiator_cb *cb) |
Register Common Audio Profile Initiator callbacks. | |
int | bt_cap_initiator_unregister_cb (const struct bt_cap_initiator_cb *cb) |
Unregister Common Audio Profile Initiator callbacks. | |
int | bt_cap_initiator_unicast_audio_start (const struct bt_cap_unicast_audio_start_param *param) |
Setup and start unicast audio streams for a set of devices. | |
int | bt_cap_initiator_unicast_audio_update (const struct bt_cap_unicast_audio_update_param *param) |
Update unicast audio streams. | |
int | bt_cap_initiator_unicast_audio_stop (const struct bt_cap_unicast_audio_stop_param *param) |
Stop unicast audio streams. | |
int | bt_cap_initiator_unicast_audio_cancel (void) |
Cancel any current Common Audio Profile procedure. | |
int | bt_cap_initiator_broadcast_audio_create (const struct bt_cap_initiator_broadcast_create_param *param, struct bt_cap_broadcast_source **broadcast_source) |
Create a Common Audio Profile broadcast source. | |
int | bt_cap_initiator_broadcast_audio_start (struct bt_cap_broadcast_source *broadcast_source, struct bt_le_ext_adv *adv) |
Start Common Audio Profile broadcast source. | |
int | bt_cap_initiator_broadcast_audio_update (struct bt_cap_broadcast_source *broadcast_source, const uint8_t meta[], size_t meta_len) |
Update broadcast audio streams for a Common Audio Profile broadcast source. | |
int | bt_cap_initiator_broadcast_audio_stop (struct bt_cap_broadcast_source *broadcast_source) |
Stop broadcast audio streams for a Common Audio Profile broadcast source. | |
int | bt_cap_initiator_broadcast_audio_delete (struct bt_cap_broadcast_source *broadcast_source) |
Delete Common Audio Profile broadcast source. | |
int | bt_cap_initiator_broadcast_get_id (const struct bt_cap_broadcast_source *broadcast_source, uint32_t *const broadcast_id) |
Get the broadcast ID of a Common Audio Profile broadcast source. | |
int | bt_cap_initiator_broadcast_get_base (struct bt_cap_broadcast_source *broadcast_source, struct net_buf_simple *base_buf) |
Get the Broadcast Audio Stream Endpoint of a Common Audio Profile broadcast source. | |
int | bt_cap_initiator_unicast_to_broadcast (const struct bt_cap_unicast_to_broadcast_param *param, struct bt_cap_broadcast_source **source) |
Hands over the data streams in a unicast group to a broadcast source. | |
int | bt_cap_initiator_broadcast_to_unicast (const struct bt_cap_broadcast_to_unicast_param *param, struct bt_bap_unicast_group **unicast_group) |
Hands over the data streams in a broadcast source to a unicast group. | |
int | bt_cap_commander_register_cb (const struct bt_cap_commander_cb *cb) |
Register Common Audio Profile Commander callbacks. | |
int | bt_cap_commander_unregister_cb (const struct bt_cap_commander_cb *cb) |
Unregister Common Audio Profile Commander callbacks. | |
int | bt_cap_commander_discover (struct bt_conn *conn) |
Discovers audio support on a remote device. | |
int | bt_cap_commander_cancel (void) |
Cancel any current Common Audio Profile commander procedure. | |
int | bt_cap_commander_broadcast_reception_start (const struct bt_cap_commander_broadcast_reception_start_param *param) |
Starts the reception of broadcast audio on one or more remote Common Audio Profile Acceptors. | |
int | bt_cap_commander_broadcast_reception_stop (const struct bt_cap_commander_broadcast_reception_stop_param *param) |
Stops the reception of broadcast audio on one or more remote Common Audio Profile Acceptors. | |
int | bt_cap_commander_change_volume (const struct bt_cap_commander_change_volume_param *param) |
Change the volume on one or more Common Audio Profile Acceptors. | |
int | bt_cap_commander_change_volume_offset (const struct bt_cap_commander_change_volume_offset_param *param) |
Change the volume offset on one or more Common Audio Profile Acceptors. | |
int | bt_cap_commander_change_volume_mute_state (const struct bt_cap_commander_change_volume_mute_state_param *param) |
Change the volume mute state on one or more Common Audio Profile Acceptors. | |
int | bt_cap_commander_change_microphone_mute_state (const struct bt_cap_commander_change_microphone_mute_state_param *param) |
Change the microphone mute state on one or more Common Audio Profile Acceptors. | |
int | bt_cap_commander_change_microphone_gain_setting (const struct bt_cap_commander_change_microphone_gain_setting_param *param) |
Change the microphone gain setting on one or more Common Audio Profile Acceptors. | |
Bluetooth Common Audio Profile (CAP) APIs.