Select one of the symbols to view example projects that use it.
 
Outline
#define _BEACON_H_
#include "net.h"
#define BEACON_TYPE_UNPROVISIONED
#define BEACON_TYPE_SECURE
#define BEACON_TYPE_PRIVATE
#define NET_IDX_SET
#define NET_IDX_GET
#define BEACON_THRESHOLD
bt_mesh_secure_beacon_enable();
bt_mesh_secure_beacon_disable();
bt_mesh_beacon_ivu_initiator(bool);
bt_mesh_beacon_recv(struct net_buf_simple *, int8_t);
bt_mesh_secure_beacon_create(struct bt_mesh_subnet *, struct net_buf_simple *);
bt_mesh_beacon_init();
bt_mesh_beacon_deinit();
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/esp_ble_mesh/core/beacon.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* Bluetooth Mesh */ /* * SPDX-FileCopyrightText: 2017 Intel Corporation * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef _BEACON_H_ #define _BEACON_H_ #include "net.h" #ifdef __cplusplus extern "C" { #endif #define BEACON_TYPE_UNPROVISIONED 0x00 #define BEACON_TYPE_SECURE 0x01 #define BEACON_TYPE_PRIVATE 0x02 #define NET_IDX_SET(_val) ((void *)((uint32_t)(_val))) #define NET_IDX_GET(_ptr) ((uint32_t)(_ptr)) /* If the interval has passed or is within 5 seconds from now send a beacon */ #define BEACON_THRESHOLD(last) (K_SECONDS(10 * ((last) + 1)) - K_SECONDS(5))6 defines void bt_mesh_secure_beacon_enable(void); void bt_mesh_secure_beacon_disable(void); void bt_mesh_beacon_ivu_initiator(bool enable); void bt_mesh_beacon_recv(struct net_buf_simple *buf, int8_t rssi); void bt_mesh_secure_beacon_create(struct bt_mesh_subnet *sub, struct net_buf_simple *buf); void bt_mesh_beacon_init(void); void bt_mesh_beacon_deinit(void); #ifdef __cplusplus }{...} #endif /* ... */ #endif /* _BEACON_H_ */
Details