nRF Connect SDK API 2.8.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
7#ifndef _UNICAST_CLIENT_H_
8#define _UNICAST_CLIENT_H_
9
10#include "bt_le_audio_tx.h"
11
12#include <zephyr/bluetooth/audio/audio.h>
13#include <audio_defines.h>
14
16 UNICAST_SERVER_SINK = BT_AUDIO_DIR_SINK,
17 UNICAST_SERVER_SOURCE = BT_AUDIO_DIR_SOURCE,
18 UNICAST_SERVER_BIDIR = (BT_AUDIO_DIR_SINK | BT_AUDIO_DIR_SOURCE)
19};
20
21#if CONFIG_BT_BAP_UNICAST_CONFIGURABLE
22#define BT_BAP_LC3_UNICAST_PRESET_NRF5340_AUDIO_SINK \
23 BT_BAP_LC3_PRESET_CONFIGURABLE(BT_AUDIO_LOCATION_FRONT_LEFT, \
24 BT_AUDIO_CONTEXT_TYPE_UNSPECIFIED, \
25 CONFIG_BT_AUDIO_BITRATE_UNICAST_SINK)
26
27#define BT_BAP_LC3_UNICAST_PRESET_NRF5340_AUDIO_SOURCE \
28 BT_BAP_LC3_PRESET_CONFIGURABLE(BT_AUDIO_LOCATION_FRONT_LEFT, \
29 BT_AUDIO_CONTEXT_TYPE_UNSPECIFIED, \
30 CONFIG_BT_AUDIO_BITRATE_UNICAST_SRC)
31
32#elif CONFIG_BT_BAP_UNICAST_16_2_1
33#define BT_BAP_LC3_UNICAST_PRESET_NRF5340_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_NRF5340_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_NRF5340_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_NRF5340_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_NRF5340_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_NRF5340_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_CONFIGURABLE */
58
69int unicast_client_config_get(struct bt_conn *conn, enum bt_audio_dir dir, uint32_t *bitrate,
70 uint32_t *sampling_rate_hz);
71
82int unicast_client_discover(struct bt_conn *conn, enum unicast_discover_dir dir);
83
89void unicast_client_conn_disconnected(struct bt_conn *conn);
90
100int unicast_client_start(uint8_t cig_index);
101
111int unicast_client_stop(uint8_t cig_index);
112
121int unicast_client_send(uint8_t cig_index, struct le_audio_encoded_audio enc_audio);
122
130int unicast_client_disable(uint8_t cig_index);
131
140int unicast_client_enable(uint8_t cig_index, le_audio_receive_cb recv_cb);
141
142#endif /* _UNICAST_CLIENT_H_ */
Globally accessible audio related defines.
void(* le_audio_receive_cb)(const uint8_t *const data, size_t size, bool bad_frame, uint32_t sdu_ref, enum audio_channel channel_index, size_t desired_size)
Callback for receiving Bluetooth LE Audio data.
Definition le_audio.h:54
Encoded audio data and information.
Definition le_audio.h:63
int unicast_client_disable(uint8_t cig_index)
Disable the Bluetooth LE Audio unicast (CIS) client.
int unicast_client_send(uint8_t cig_index, struct le_audio_encoded_audio enc_audio)
Send encoded audio using the Bluetooth LE Audio unicast.
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_config_get(struct bt_conn *conn, enum bt_audio_dir dir, uint32_t *bitrate, uint32_t *sampling_rate_hz)
Get configuration for the audio stream.
unicast_discover_dir
Definition unicast_client.h:15
@ UNICAST_SERVER_SINK
Definition unicast_client.h:16
@ UNICAST_SERVER_BIDIR
Definition unicast_client.h:18
@ UNICAST_SERVER_SOURCE
Definition unicast_client.h:17
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.