1 /* Bluetooth Mesh */ 2 3 /* 4 * Copyright (c) 2017 Intel Corporation 5 * 6 * SPDX-License-Identifier: Apache-2.0 7 */ 8 9 #ifndef __BEACON_H__ 10 #define __BEACON_H__ 11 12 #include "os/os_mbuf.h" 13 14 void bt_mesh_beacon_enable(void); 15 void bt_mesh_beacon_disable(void); 16 17 void bt_mesh_beacon_ivu_initiator(bool enable); 18 19 void bt_mesh_beacon_recv(struct os_mbuf *buf); 20 21 void bt_mesh_beacon_create(struct bt_mesh_subnet *sub, 22 struct os_mbuf *buf); 23 24 void bt_mesh_beacon_init(void); 25 26 #endif 27