1 /* 2 * Copyright (c) 2024 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr/kernel.h> 8 #include <zephyr/bluetooth/addr.h> 9 10 #include "bt_str.h" 11 bt_addr_le_str(const bt_addr_le_t * addr)12const char *bt_addr_le_str(const bt_addr_le_t *addr) 13 { 14 static char str[BT_ADDR_LE_STR_LEN]; 15 16 bt_addr_le_to_str(addr, str, sizeof(str)); 17 18 return str; 19 } 20