1 /* 2 * Copyright (c) 2017 Intel Corporation 3 * Copyright (c) 2021 Lingao Meng 4 * 5 * SPDX-License-Identifier: Apache-2.0 6 */ 7 8 #ifndef ZEPHYR_SUBSYS_BLUETOOTH_MESH_PB_GATT_SRV_H_ 9 #define ZEPHYR_SUBSYS_BLUETOOTH_MESH_PB_GATT_SRV_H_ 10 11 #include <zephyr/bluetooth/gatt.h> 12 13 int bt_mesh_pb_gatt_srv_enable(void); 14 int bt_mesh_pb_gatt_srv_disable(void); 15 16 int bt_mesh_pb_gatt_srv_adv_start(void); 17 18 #endif /* ZEPHYR_SUBSYS_BLUETOOTH_MESH_PB_GATT_SRV_H_ */ 19