Adds initial BAP Broadcast Source unit tests. Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
21 lines
348 B
C
21 lines
348 B
C
/*
|
|
* Copyright (c) 2023 Codecoup
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef MOCKS_CONN_H_
|
|
#define MOCKS_CONN_H_
|
|
|
|
#include <zephyr/bluetooth/conn.h>
|
|
|
|
struct bt_conn {
|
|
uint8_t index;
|
|
struct bt_conn_info info;
|
|
struct bt_iso_chan *chan;
|
|
};
|
|
|
|
void mock_bt_conn_disconnected(struct bt_conn *conn, uint8_t err);
|
|
|
|
#endif /* MOCKS_CONN_H_ */
|