nRF Connect SDK API 3.4.99
Loading...
Searching...
No Matches
unicast_client.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2023 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5 */
6
15#ifndef _UNICAST_CLIENT_H_
16#define _UNICAST_CLIENT_H_
17
18#include "bt_le_audio_tx.h"
19
20#include <zephyr/bluetooth/audio/audio.h>
21#include <audio_defines.h>
22
27 UNICAST_SERVER_SINK = BT_AUDIO_DIR_SINK,
28 UNICAST_SERVER_SOURCE = BT_AUDIO_DIR_SOURCE,
29 UNICAST_SERVER_BIDIR = (BT_AUDIO_DIR_SINK | BT_AUDIO_DIR_SOURCE)
30};
31
32#if CONFIG_BT_BAP_UNICAST_16_2_1
33#define BT_BAP_LC3_UNICAST_PRESET_NRF_AUDIO_SINK \
34 BT_BAP_LC3_UNICAST_PRESET_16_2_1(BT_AUDIO_LOCATION_FRONT_LEFT, \
35 BT_AUDIO_CONTEXT_TYPE_UNSPECIFIED)
36
37#define BT_BAP_LC3_UNICAST_PRESET_NRF_AUDIO_SOURCE \
38 BT_BAP_LC3_UNICAST_PRESET_16_2_1(BT_AUDIO_LOCATION_FRONT_LEFT, \
39 BT_AUDIO_CONTEXT_TYPE_UNSPECIFIED)
40
41#elif CONFIG_BT_BAP_UNICAST_24_2_1
42#define BT_BAP_LC3_UNICAST_PRESET_NRF_AUDIO_SINK \
43 BT_BAP_LC3_UNICAST_PRESET_24_2_1(BT_AUDIO_LOCATION_FRONT_LEFT, \
44 BT_AUDIO_CONTEXT_TYPE_UNSPECIFIED)
45
46#define BT_BAP_LC3_UNICAST_PRESET_NRF_AUDIO_SOURCE \
47 BT_BAP_LC3_UNICAST_PRESET_24_2_1(BT_AUDIO_LOCATION_FRONT_LEFT, \
48 BT_AUDIO_CONTEXT_TYPE_UNSPECIFIED)
49#elif CONFIG_BT_BAP_UNICAST_48_4_1
50#define BT_BAP_LC3_UNICAST_PRESET_NRF_AUDIO_SINK \
51 BT_BAP_LC3_UNICAST_PRESET_48_4_1(BT_AUDIO_LOCATION_ANY, BT_AUDIO_CONTEXT_TYPE_UNSPECIFIED)
52
53#define BT_BAP_LC3_UNICAST_PRESET_NRF_AUDIO_SOURCE \
54 BT_BAP_LC3_UNICAST_PRESET_48_4_1(BT_AUDIO_LOCATION_ANY, BT_AUDIO_CONTEXT_TYPE_UNSPECIFIED)
55#else
56#error Unsupported LC3 codec preset for unicast
57#endif /* CONFIG_BT_BAP_UNICAST_16_2_1 */
58
68int unicast_client_config_get(struct bt_bap_stream *stream, uint32_t *bitrate,
69 uint32_t *sampling_rate_hz);
70
79int unicast_client_locations_get(uint32_t *locations, enum bt_audio_dir dir);
80
91int unicast_client_discover(struct bt_conn *conn, enum unicast_discover_dir dir);
92
98void unicast_client_conn_disconnected(struct bt_conn *conn);
99
109int unicast_client_start(uint8_t cig_index);
110
120int unicast_client_stop(uint8_t cig_index);
121
130int unicast_client_send(struct net_buf const *const audio_frame, uint8_t cig_index);
131
139int unicast_client_disable(uint8_t cig_index);
140
149int unicast_client_enable(uint8_t cig_index, le_audio_receive_cb recv_cb);
150
156#endif /* _UNICAST_CLIENT_H_ */
Globally accessible audio related defines.
void(* le_audio_receive_cb)(struct net_buf *audio_frame, struct audio_metadata *meta, uint8_t location_index)
Callback for receiving Bluetooth LE Audio data.
Definition le_audio.h:66
int unicast_client_disable(uint8_t cig_index)
Disable the Bluetooth LE Audio unicast (CIS) client.
int unicast_client_enable(uint8_t cig_index, le_audio_receive_cb recv_cb)
Enable the Bluetooth LE Audio unicast (CIS) client.
int unicast_client_discover(struct bt_conn *conn, enum unicast_discover_dir dir)
Start service discovery for a Bluetooth LE Audio unicast (CIS) server.
int unicast_client_send(struct net_buf const *const audio_frame, uint8_t cig_index)
Send encoded audio using the Bluetooth LE Audio unicast.
int unicast_client_locations_get(uint32_t *locations, enum bt_audio_dir dir)
Get the current audio locations used by the unicast client.
int unicast_client_config_get(struct bt_bap_stream *stream, uint32_t *bitrate, uint32_t *sampling_rate_hz)
Get configuration for the audio stream.
unicast_discover_dir
Unicast discovery direction enumeration.
Definition unicast_client.h:26
@ UNICAST_SERVER_SINK
Definition unicast_client.h:27
@ UNICAST_SERVER_BIDIR
Definition unicast_client.h:29
@ UNICAST_SERVER_SOURCE
Definition unicast_client.h:28
int unicast_client_start(uint8_t cig_index)
Start the Bluetooth LE Audio unicast (CIS) client.
int unicast_client_stop(uint8_t cig_index)
Stop the Bluetooth LE Audio unicast (CIS) client.
void unicast_client_conn_disconnected(struct bt_conn *conn)
Handle a disconnected Bluetooth LE Audio unicast (CIS) server.