Select one of the symbols to view example projects that use it.
 
Outline
#define _ACCESS_H_
#include "net.h"
<anonymous enum>
bt_mesh_elem_register(struct bt_mesh_elem *, uint8_t);
bt_mesh_elem_count();
bt_mesh_elem_find(uint16_t);
bt_mesh_model_find_group(struct bt_mesh_model *, uint16_t);
bt_mesh_get_opcode(struct net_buf_simple *, uint32_t *, bool);
bt_mesh_fixed_group_match(uint16_t);
bt_mesh_fixed_direct_match(struct bt_mesh_subnet *, uint16_t);
bt_mesh_model_foreach(void (*)(struct bt_mesh_model *, struct bt_mesh_elem *, bool, bool, void *), void *);
bt_mesh_model_pub_period_get(struct bt_mesh_model *);
bt_mesh_comp_provision(uint16_t);
bt_mesh_comp_unprovision();
bt_mesh_primary_addr();
bt_mesh_comp_get();
bt_mesh_model_get(bool, uint8_t, uint8_t);
bt_mesh_model_recv(struct bt_mesh_net_rx *, struct net_buf_simple *);
bt_mesh_comp_register(const struct bt_mesh_comp *);
bt_mesh_comp_deregister();
bt_mesh_dev_key_get(uint16_t);
bt_mesh_rx_netkey_size();
bt_mesh_rx_netkey_get(size_t);
bt_mesh_rx_devkey_size();
bt_mesh_rx_devkey_get(size_t, uint16_t);
bt_mesh_rx_appkey_size();
bt_mesh_rx_appkey_get(size_t);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/esp_ble_mesh/core/access.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
79
80
81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* Bluetooth Mesh */ /* * SPDX-FileCopyrightText: 2017 Intel Corporation * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef _ACCESS_H_ #define _ACCESS_H_ #include "net.h" #ifdef __cplusplus extern "C" { #endif /* bt_mesh_model.flags */ enum { BLE_MESH_MOD_BIND_PENDING = BIT(0), BLE_MESH_MOD_SUB_PENDING = BIT(1), BLE_MESH_MOD_PUB_PENDING = BIT(2), }{ ... }; void bt_mesh_elem_register(struct bt_mesh_elem *elem, uint8_t count); uint8_t bt_mesh_elem_count(void); /* Find local element based on unicast or group address */ struct bt_mesh_elem *bt_mesh_elem_find(uint16_t addr); uint16_t *bt_mesh_model_find_group(struct bt_mesh_model *mod, uint16_t addr); int bt_mesh_get_opcode(struct net_buf_simple *buf, uint32_t *opcode, bool pull_buf); bool bt_mesh_fixed_group_match(uint16_t addr); bool bt_mesh_fixed_direct_match(struct bt_mesh_subnet *sub, uint16_t addr); void bt_mesh_model_foreach(void (*func)(struct bt_mesh_model *mod, struct bt_mesh_elem *elem, bool vnd, bool primary, void *user_data), void *user_data); int32_t bt_mesh_model_pub_period_get(struct bt_mesh_model *mod); void bt_mesh_comp_provision(uint16_t addr); void bt_mesh_comp_unprovision(void); uint16_t bt_mesh_primary_addr(void); const struct bt_mesh_comp *bt_mesh_comp_get(void); struct bt_mesh_model *bt_mesh_model_get(bool vnd, uint8_t elem_idx, uint8_t mod_idx); void bt_mesh_model_recv(struct bt_mesh_net_rx *rx, struct net_buf_simple *buf); int bt_mesh_comp_register(const struct bt_mesh_comp *comp); int bt_mesh_comp_deregister(void); const uint8_t *bt_mesh_dev_key_get(uint16_t dst); size_t bt_mesh_rx_netkey_size(void); struct bt_mesh_subnet *bt_mesh_rx_netkey_get(size_t index); size_t bt_mesh_rx_devkey_size(void); const uint8_t *bt_mesh_rx_devkey_get(size_t index, uint16_t src); size_t bt_mesh_rx_appkey_size(void); struct bt_mesh_app_key *bt_mesh_rx_appkey_get(size_t index); #ifdef __cplusplus }{...} #endif /* ... */ #endif /* _ACCESS_H_ */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.