1 /*
2  * Copyright (c) 2023 Codecoup
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/bluetooth/audio/bap.h>
8 
bt_bap_ep_is_unicast_client(const struct bt_bap_ep * ep)9 bool bt_bap_ep_is_unicast_client(const struct bt_bap_ep *ep)
10 {
11 	return false;
12 }
13 
bt_bap_unicast_client_config(struct bt_bap_stream * stream,const struct bt_audio_codec_cfg * codec_cfg)14 int bt_bap_unicast_client_config(struct bt_bap_stream *stream,
15 				 const struct bt_audio_codec_cfg *codec_cfg)
16 {
17 	zassert_unreachable("Unexpected call to '%s()' occurred", __func__);
18 	return 0;
19 }
20 
bt_bap_unicast_client_qos(struct bt_conn * conn,struct bt_bap_unicast_group * group)21 int bt_bap_unicast_client_qos(struct bt_conn *conn, struct bt_bap_unicast_group *group)
22 {
23 	zassert_unreachable("Unexpected call to '%s()' occurred", __func__);
24 	return 0;
25 }
26 
bt_bap_unicast_client_enable(struct bt_bap_stream * stream,uint8_t meta[],size_t meta_len)27 int bt_bap_unicast_client_enable(struct bt_bap_stream *stream, uint8_t meta[],
28 				 size_t meta_len)
29 {
30 	zassert_unreachable("Unexpected call to '%s()' occurred", __func__);
31 	return 0;
32 }
33 
bt_bap_unicast_client_metadata(struct bt_bap_stream * stream,uint8_t meta[],size_t meta_len)34 int bt_bap_unicast_client_metadata(struct bt_bap_stream *stream, uint8_t meta[],
35 				   size_t meta_len)
36 {
37 	zassert_unreachable("Unexpected call to '%s()' occurred", __func__);
38 	return 0;
39 }
40 
bt_bap_unicast_client_disable(struct bt_bap_stream * stream)41 int bt_bap_unicast_client_disable(struct bt_bap_stream *stream)
42 {
43 	zassert_unreachable("Unexpected call to '%s()' occurred", __func__);
44 	return 0;
45 }
46 
bt_bap_unicast_client_start(struct bt_bap_stream * stream)47 int bt_bap_unicast_client_start(struct bt_bap_stream *stream)
48 {
49 	zassert_unreachable("Unexpected call to '%s()' occurred", __func__);
50 	return 0;
51 }
52 
bt_bap_unicast_client_stop(struct bt_bap_stream * stream)53 int bt_bap_unicast_client_stop(struct bt_bap_stream *stream)
54 {
55 	zassert_unreachable("Unexpected call to '%s()' occurred", __func__);
56 	return 0;
57 }
58 
bt_bap_unicast_client_release(struct bt_bap_stream * stream)59 int bt_bap_unicast_client_release(struct bt_bap_stream *stream)
60 {
61 	zassert_unreachable("Unexpected call to '%s()' occurred", __func__);
62 	return 0;
63 }
64