blob: ae6d3dc70d4690cd7ad7bf2186653739f77b372f [file] [log] [blame]
/*
* 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_ */