NimBLE-Arduino 2.1.2
Loading...
Searching...
No Matches
beacon.h
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 "nimble/porting/nimble/include/os/os_mbuf.h"
13
14void bt_mesh_beacon_enable(void);
15void bt_mesh_beacon_disable(void);
16
17void bt_mesh_beacon_ivu_initiator(bool enable);
18
19void bt_mesh_beacon_recv(struct os_mbuf *buf);
20
21void bt_mesh_beacon_create(struct bt_mesh_subnet *sub,
22 struct os_mbuf *buf);
23
24void bt_mesh_beacon_init(void);
25void bt_mesh_beacon_update(struct bt_mesh_subnet *sub);
26
27#endif
Definition subnet.h:35
Definition os_mbuf.h:86