1 /** @file 2 * @brief Bluetooth shell functions 3 * 4 * This is not to be included by the application. 5 */ 6 7 /* 8 * Copyright 2025 NXP 9 * 10 * SPDX-License-Identifier: Apache-2.0 11 */ 12 13 #ifndef __BREDR_H 14 #define __BREDR_H 15 #include <stddef.h> 16 #include <stdint.h> 17 18 void role_changed(struct bt_conn *conn, uint8_t status); 19 20 #endif /* __BREDR_H */ 21