1 /* Bluetooth Mesh */ 2 3 /* 4 * Copyright (c) 2017 Intel Corporation 5 * 6 * SPDX-License-Identifier: Apache-2.0 7 */ 8 #ifndef _BT_MESH_EVENT_PORT_H_ 9 #define _BT_MESH_EVENT_PORT_H_ 10 11 #include <api/mesh.h> 12 int genie_mesh_port_init(void); 13 14 void genie_mesh_link_open(bt_mesh_prov_bearer_t bearer); 15 void genie_mesh_link_close(bt_mesh_prov_bearer_t bearer); 16 #endif 17