zephyr/tests/bluetooth/audio/mocks/include/conn.h
Emil Gydesen 830aa5f7da tests: Bluetooth: Add initial BAP Broadcast Source unit tests
Adds initial BAP Broadcast Source unit tests.

Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
2023-09-11 11:06:52 +02:00

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_ */