1 #include <zephyr/bluetooth/bluetooth.h> 2 #include <zephyr/bluetooth/conn.h> 3 4 void bs_bt_utils_setup(void); 5 6 void clear_conn(struct bt_conn *conn); 7 void wait_connected(struct bt_conn **conn); 8 void wait_disconnected(void); 9 void disconnect(struct bt_conn *conn); 10 void advertise_connectable(int id); 11 12 void set_security(struct bt_conn *conn, bt_security_t sec); 13 void wait_pairing_completed(void); 14 15 void bas_notify(struct bt_conn *conn); 16