Select one of the symbols to view example projects that use it.
 
Outline
#define _LPN_H_
#include "net.h"
bt_mesh_lpn_friend_update(struct bt_mesh_net_rx *, struct net_buf_simple *);
bt_mesh_lpn_friend_offer(struct bt_mesh_net_rx *, struct net_buf_simple *);
bt_mesh_lpn_friend_clear_cfm(struct bt_mesh_net_rx *, struct net_buf_simple *);
bt_mesh_lpn_friend_sub_cfm(struct bt_mesh_net_rx *, struct net_buf_simple *);
bt_mesh_lpn_established()
bt_mesh_lpn_match(uint16_t)
bt_mesh_lpn_waiting_update()
bt_mesh_lpn_timer()
bt_mesh_lpn_msg_received(struct bt_mesh_net_rx *);
bt_mesh_lpn_group_add(uint16_t);
bt_mesh_lpn_group_del(uint16_t *, size_t);
bt_mesh_lpn_disable(bool);
bt_mesh_lpn_init();
bt_mesh_lpn_deinit();
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/esp_ble_mesh/core/lpn.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* Bluetooth Mesh */ /* * SPDX-FileCopyrightText: 2017 Intel Corporation * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef _LPN_H_ #define _LPN_H_ #include "net.h" #ifdef __cplusplus extern "C" { #endif int bt_mesh_lpn_friend_update(struct bt_mesh_net_rx *rx, struct net_buf_simple *buf); int bt_mesh_lpn_friend_offer(struct bt_mesh_net_rx *rx, struct net_buf_simple *buf); int bt_mesh_lpn_friend_clear_cfm(struct bt_mesh_net_rx *rx, struct net_buf_simple *buf); int bt_mesh_lpn_friend_sub_cfm(struct bt_mesh_net_rx *rx, struct net_buf_simple *buf); static inline bool bt_mesh_lpn_established(void) { #if CONFIG_BLE_MESH_LOW_POWER return bt_mesh.lpn.established; #else return false; #endif }{ ... } static inline bool bt_mesh_lpn_match(uint16_t addr) { #if CONFIG_BLE_MESH_LOW_POWER if (bt_mesh_lpn_established()) { return (addr == bt_mesh.lpn.frnd); }{...} #endif/* ... */ return false; }{ ... } static inline bool bt_mesh_lpn_waiting_update(void) { #if CONFIG_BLE_MESH_LOW_POWER return (bt_mesh.lpn.state == BLE_MESH_LPN_WAIT_UPDATE); #else return false; #endif }{ ... } static inline bool bt_mesh_lpn_timer(void) { #if CONFIG_BLE_MESH_LPN_AUTO return (bt_mesh.lpn.state == BLE_MESH_LPN_TIMER); #else return false; #endif }{ ... } void bt_mesh_lpn_msg_received(struct bt_mesh_net_rx *rx); void bt_mesh_lpn_group_add(uint16_t group); void bt_mesh_lpn_group_del(uint16_t *groups, size_t group_count); void bt_mesh_lpn_disable(bool force); int bt_mesh_lpn_init(void); int bt_mesh_lpn_deinit(void); #ifdef __cplusplus }{...} #endif /* ... */ #endif /* _LPN_H_ */
Details