1 /* 2 * Copyright (c) 2024 Croxel, Inc. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef ZEPHYR_BLUETOOTH_SERVICES_NUS_INTERNAL_H_ 8 #define ZEPHYR_BLUETOOTH_SERVICES_NUS_INTERNAL_H_ 9 10 #include <zephyr/bluetooth/services/nus.h> 11 #include <zephyr/bluetooth/services/nus/inst.h> 12 13 struct bt_nus_inst *bt_nus_inst_default(void); 14 struct bt_nus_inst *bt_nus_inst_get_from_attr(const struct bt_gatt_attr *attr); 15 16 #endif /* ZEPHYR_BLUETOOTH_SERVICES_NUS_INTERNAL_H_ */ 17