Select one of the symbols to view example projects that use it.
 
Outline
#define _PROV_PVNR_H_
#include "mesh/main.h"
#include "prov_common.h"
#include "mesh/adapter.h"
#define RM_AFTER_PROV
#define START_PROV_NOW
#define FLUSHABLE_DEV
bt_mesh_unprov_dev_add
bt_mesh_device_delete
#define NET_IDX_FLAG
#define FLAGS_FLAG
#define IV_INDEX_FLAG
bt_mesh_prov_data_info
bt_mesh_provisioner_pbg_count_dec();
bt_mesh_provisioner_clear_link_info(const uint8_t *);
bt_mesh_provisioner_pb_adv_recv(struct net_buf_simple *);
bt_mesh_provisioner_pb_gatt_open(struct bt_mesh_conn *, const uint8_t *);
bt_mesh_provisioner_pb_gatt_close(struct bt_mesh_conn *, uint8_t);
bt_mesh_provisioner_pb_gatt_recv(struct bt_mesh_conn *, struct net_buf_simple *);
bt_mesh_provisioner_prov_init();
bt_mesh_provisioner_prov_reset(bool);
bt_mesh_provisioner_prov_deinit(bool);
bt_mesh_provisioner_unprov_beacon_recv(struct net_buf_simple *, int8_t);
bt_mesh_provisioner_prov_adv_recv(struct net_buf_simple *, const bt_mesh_addr_t *, int8_t);
bt_mesh_provisioner_restore_prov_info(uint16_t, uint16_t);
bt_mesh_provisioner_add_unprov_dev(struct bt_mesh_unprov_dev_add *, uint8_t);
bt_mesh_provisioner_prov_device_with_addr(const uint8_t *, const uint8_t *, uint8_t, bt_mesh_prov_bearer_t, uint16_t, uint16_t);
bt_mesh_provisioner_delete_device(struct bt_mesh_device_delete *);
bt_mesh_provisioner_set_dev_uuid_match(uint8_t, uint8_t, const uint8_t *, bool);
unprov_adv_pkt_cb_t
bt_mesh_provisioner_adv_pkt_cb_register(unprov_adv_pkt_cb_t);
bt_mesh_provisioner_set_prov_data_info(struct bt_mesh_prov_data_info *);
bt_mesh_provisioner_init_prov_info();
bt_mesh_provisioner_set_prov_bearer(bt_mesh_prov_bearer_t, bool);
bt_mesh_provisioner_get_prov_bearer();
bt_mesh_provisioner_set_static_oob_value(const uint8_t *, uint8_t);
bt_mesh_provisioner_get_primary_elem_addr();
bt_mesh_provisioner_set_primary_elem_addr(uint16_t);
bt_mesh_test_provisioner_update_alloc_addr(uint16_t, uint16_t);
bt_mesh_provisioner_set_oob_input_data(const uint8_t, const uint8_t *, bool);
bt_mesh_provisioner_set_oob_output_data(const uint8_t, const uint8_t *, uint8_t, bool);
bt_mesh_provisioner_read_oob_pub_key(const uint8_t, const uint8_t *, const uint8_t *);
bt_mesh_provisioner_fast_prov_enable(bool);
bt_mesh_provisioner_set_fast_prov_net_idx(uint16_t);
bt_mesh_provisioner_get_fast_prov_net_idx();
bt_mesh_set_fast_prov_unicast_addr_range(uint16_t, uint16_t);
bt_mesh_rpr_cli_pdu_recv(struct bt_mesh_prov_link *, uint8_t, struct net_buf_simple *);
bt_mesh_rpr_cli_pdu_send(struct bt_mesh_prov_link *, uint8_t);
bt_mesh_rpr_cli_recv_pub_key_outbound_report(struct bt_mesh_prov_link *);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/esp_ble_mesh/core/prov_pvnr.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2017-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef _PROV_PVNR_H_ #define _PROV_PVNR_H_ #include "mesh/main.h" #include "prov_common.h" #include "mesh/adapter.h" #ifdef __cplusplus extern "C" { #endif #define RM_AFTER_PROV BIT(0) #define START_PROV_NOW BIT(1) #define FLUSHABLE_DEV BIT(2) struct bt_mesh_unprov_dev_add { uint8_t addr[6]; uint8_t addr_type; uint8_t uuid[16]; uint16_t oob_info; uint8_t bearer; }{ ... }; struct bt_mesh_device_delete { uint8_t addr[6]; uint8_t addr_type; uint8_t uuid[16]; }{ ... }; #define NET_IDX_FLAG BIT(0) #define FLAGS_FLAG BIT(1) #define IV_INDEX_FLAG BIT(2) struct bt_mesh_prov_data_info { union { uint16_t net_idx; uint8_t flags; uint32_t iv_index; }{ ... }; uint8_t flag; }{ ... }; /* The following APIs are for primary provisioner internal use */ /** * @brief This function decrements the current PB-GATT count. * * @return None *//* ... */ void bt_mesh_provisioner_pbg_count_dec(void); /** * @brief This function clears the part of the link info of the proper device. * * @param[in] addr: Remote device address * * @return None *//* ... */ void bt_mesh_provisioner_clear_link_info(const uint8_t addr[6]); /** * @brief This function handles the received PB-ADV PDUs. * * @param[in] buf: Pointer to the buffer containing generic provisioning PDUs * * @return Zero - success, otherwise - fail *//* ... */ void bt_mesh_provisioner_pb_adv_recv(struct net_buf_simple *buf); /** * @brief This function sends provisioning invite to start * provisioning this unprovisioned device. * * @param[in] conn: Pointer to the bt_conn structure * @param[in] addr: Address of the connected device * * @return Zero - success, otherwise - fail *//* ... */ int bt_mesh_provisioner_pb_gatt_open(struct bt_mesh_conn *conn, const uint8_t addr[6]); /** * @brief This function resets the used information when * related connection is terminated. * * @param[in] conn: Pointer to the bt_conn structure * @param[in] reason: Connection terminated reason * * @return Zero - success, otherwise - fail *//* ... */ int bt_mesh_provisioner_pb_gatt_close(struct bt_mesh_conn *conn, uint8_t reason); /** * @brief This function handles the received PB-GATT provision * PDUs. * * @param[in] conn: Pointer to the bt_conn structure * @param[in] buf: Pointer to the buffer containing provision PDUs * * @return Zero - success, otherwise - fail *//* ... */ int bt_mesh_provisioner_pb_gatt_recv(struct bt_mesh_conn *conn, struct net_buf_simple *buf); /** * @brief This function initializes provisioner's PB-GATT and PB-ADV * related information. * * @return Zero - success, otherwise - fail *//* ... */ int bt_mesh_provisioner_prov_init(void); int bt_mesh_provisioner_prov_reset(bool erase); /** * @brief This function de-initializes provisioner's PB-GATT and PB-ADV * related information. * * @param[in] erase: Indicate if erasing provisioning information from flash. * * @return Zero - success, otherwise - fail *//* ... */ int bt_mesh_provisioner_prov_deinit(bool erase); /** * @brief This function parses the received unprovisioned device * beacon advertising packets, and if checked, starts to provision this device * using PB-ADV bearer. * * @param[in] buf: Pointer to the buffer containing unprovisioned device beacon * @param[in] rssi: RSSI of the received unprovisioned device beacon * * @return None *//* ... */ void bt_mesh_provisioner_unprov_beacon_recv(struct net_buf_simple *buf, int8_t rssi); void bt_mesh_provisioner_prov_adv_recv(struct net_buf_simple *buf, const bt_mesh_addr_t *addr, int8_t rssi); void bt_mesh_provisioner_restore_prov_info(uint16_t primary_addr, uint16_t alloc_addr); /* The following APIs are for primary provisioner application use */ /** @brief Add unprovisioned device info to unprov_dev queue * * @param[in] add_dev: Pointer to the structure containing the device information * @param[in] flags: Flags indicate several operations of the device information * - Remove device information from queue after it is provisioned (BIT0) * - Start provisioning as soon as device is added to queue (BIT1) * - Device can be flushed when device queue is full (BIT2) * * @return Zero on success or (negative) error code otherwise. * * @note 1. Currently address type only supports public address and static random address. * 2. If device UUID and/or device address and address type already exist in the * device queue, but the bearer differs from the existing one, add operation * will also be successful and it will update the provision bearer supported by * the device. *//* ... */ int bt_mesh_provisioner_add_unprov_dev(struct bt_mesh_unprov_dev_add *add_dev, uint8_t flags); /** @brief Provision an unprovisioned device with fixed unicast address. * * @param[in] uuid: Device UUID of the unprovisioned device * @param[in] addr: Device address of the unprovisioned device * @param[in] addr_type: Device address type of the unprovisioned device * @param[in] bearer: Provisioning bearer going to be used * @param[in] oob_info: OOB info of the unprovisioned device * @param[in] unicast_addr: Unicast address going to be allocated for the unprovisioned device * * @return Zero on success or (negative) error code otherwise. * * @note 1. Currently address type only supports public address and static random address. * 2. Bearer must be equal to BLE_MESH_PROV_ADV or BLE_MESH_PROV_GATT *//* ... */ int bt_mesh_provisioner_prov_device_with_addr(const uint8_t uuid[16], const uint8_t addr[6], uint8_t addr_type, bt_mesh_prov_bearer_t bearer, uint16_t oob_info, uint16_t unicast_addr); /** @brief Delete device from queue, reset current provisioning link and reset the node * * @param[in] del_dev: Pointer to the structure containing the device information * * @return Zero on success or (negative) error code otherwise. *//* ... */ int bt_mesh_provisioner_delete_device(struct bt_mesh_device_delete *del_dev); /** * @brief This function sets a part of the device UUID for comparison before * starting to provision the device. * * @param[in] offset: offset of the device UUID to be compared * @param[in] length: length of the device UUID to be compared * @param[in] match: value to be compared * @param[in] prov_flag: flags indicate if uuid_match advertising packets are received, after that * the device will be provisioned at once or reported to the application layer * * @return Zero - success, otherwise - fail *//* ... */ int bt_mesh_provisioner_set_dev_uuid_match(uint8_t offset, uint8_t length, const uint8_t *match, bool prov_flag); /** @brief Callback for provisioner receiving advertising packet from unprovisioned devices which are * not in the unprovisioned device queue. * * Report on the unprovisioned device beacon and mesh provisioning service advertising data to application layer * * @param addr Unprovisioned device address pointer * @param addr_type Unprovisioned device address type * @param dev_uuid Unprovisioned device device UUID pointer * @param bearer Advertising packet received from PB-GATT or PB-ADV bearer * @param adv_type Adv packet type, currently this is not used and we can use bearer to device * the adv_type(ADV_IND or ADV_NONCONN_IND). This parameter will be used, when * scan response data will be supported. * @param rssi RSSI of the received advertising packet * *//* ... */ typedef void (*unprov_adv_pkt_cb_t)(const uint8_t addr[6], const uint8_t addr_type, const uint8_t adv_type, const uint8_t dev_uuid[16], uint16_t oob_info, bt_mesh_prov_bearer_t bearer, int8_t rssi); /** * @brief This function registers the callback which notifies the application * layer of the received mesh provisioning or unprovisioned device * beacon advertizing packets (from devices not in the unprov device queue). * * @param[in] cb: Callback of the notifying adv pkts function * * @return Zero - success, otherwise - fail *//* ... */ int bt_mesh_provisioner_adv_pkt_cb_register(unprov_adv_pkt_cb_t cb); /** * @brief This function changes net_idx or flags or iv_index used in provisioning data. * * @param[in] info: Pointer of structure containing net_idx or flags or iv_index * * @return Zero - success, otherwise - fail *//* ... */ int bt_mesh_provisioner_set_prov_data_info(struct bt_mesh_prov_data_info *info); /** * @brief This function initializes the provisioning information needed by Provisioner, * including NetKey Index, flags, IV Index, etc. * * @return Zero - success, otherwise - fail *//* ... */ int bt_mesh_provisioner_init_prov_info(void); /** * @brief This function sets the provisioning bearer type used by Provisioner. * * @param[in] bearers: Provisioning bearer type * @param[in] clear: Indicate if the corresponding bearer type will be cleared * * @return None *//* ... */ void bt_mesh_provisioner_set_prov_bearer(bt_mesh_prov_bearer_t bearers, bool clear); /** * @brief This function gets the provisioning bearer type used by Provisioner. * * @return Currently supported provisioning bearer type *//* ... */ bt_mesh_prov_bearer_t bt_mesh_provisioner_get_prov_bearer(void); /** * @brief This function sets the Static OOB value used by Provisioner. * * @param[in] value: Static OOB value * @param[in] length: Static OOB value length * * @return Zero - success, otherwise - fail *//* ... */ int bt_mesh_provisioner_set_static_oob_value(const uint8_t *value, uint8_t length); /** * @brief This function gets the unicast address of primary element of Provisioner. * * @return Unicast address of primary element of Provisioner. *//* ... */ uint16_t bt_mesh_provisioner_get_primary_elem_addr(void); /** * @brief This function sets the unicast address of primary element of Provisioner. * * @param[in] addr: unicast address of primary element * * @return Zero - success, otherwise - fail *//* ... */ int bt_mesh_provisioner_set_primary_elem_addr(uint16_t addr); /** * @brief This function is used to update next allocated address by Provisioner. * * @note This function is used for mesh internal test. * * @param[in] unicast_addr: unicast address of the node * @param[in] element_num: element count of the node * * @return Zero - success, otherwise - fail *//* ... */ int bt_mesh_test_provisioner_update_alloc_addr(uint16_t unicast_addr, uint16_t element_num); /** * @brief This function is called to input number/string out-put by unprovisioned device. * * @param[in] idx The provisioning link index * @param[in] val Pointer of the input number/string * @param[in] num_flag Flag indicates if it is a number or string * * @return Zero - success, otherwise - fail *//* ... */ int bt_mesh_provisioner_set_oob_input_data(const uint8_t idx, const uint8_t *val, bool num_flag); /** * @brief This function is called to output number/string which will be input by unprovisioned device. * * @param[in] idx The provisioning link index * @param[in] num Pointer of the output number/string * @param[in] size Size of the output number/string * @param[in] num_flag Flag indicates if it is a number or string * * @return Zero - success, otherwise - fail *//* ... */ int bt_mesh_provisioner_set_oob_output_data(const uint8_t idx, const uint8_t *num, uint8_t size, bool num_flag); /** * @brief This function is called to read unprovisioned device's oob public key. * * @param[in] idx The provisioning link index * @param[in] pub_key_x Unprovisioned device's Public Key X * @param[in] pub_key_y Unprovisioned device's Public Key Y * * @return Zero - success, otherwise - fail *//* ... */ int bt_mesh_provisioner_read_oob_pub_key(const uint8_t idx, const uint8_t pub_key_x[32], const uint8_t pub_key_y[32]); /* The following APIs are for fast provisioning */ /** * @brief This function is called to set fast_prov_flag. * * @param[in] enable: Enable or disable fast provisioning * * @return None *//* ... */ void bt_mesh_provisioner_fast_prov_enable(bool enable); /** * @brief This function is called to set netkey index used for fast provisioning. * * @param[in] net_idx: Netkey index * * @return None *//* ... */ void bt_mesh_provisioner_set_fast_prov_net_idx(uint16_t net_idx); /** * @brief This function is called to get netkey index used for fast provisioning. * * @return net_idx of fast provisioning *//* ... */ uint16_t bt_mesh_provisioner_get_fast_prov_net_idx(void); /** * @brief This function is called to set unicast address range used for fast provisioning. * * @param[in] min: Minimum unicast address * @param[in] max: Maximum unicast address * * @return status for set unicast address range message *//* ... */ uint8_t bt_mesh_set_fast_prov_unicast_addr_range(uint16_t min, uint16_t max); int bt_mesh_rpr_cli_pdu_recv(struct bt_mesh_prov_link *link, uint8_t type, struct net_buf_simple *buf); int bt_mesh_rpr_cli_pdu_send(struct bt_mesh_prov_link *link, uint8_t type); int bt_mesh_rpr_cli_recv_pub_key_outbound_report(struct bt_mesh_prov_link *link); #ifdef __cplusplus }{...} #endif /* ... */ #endif /* _PROV_PVNR_H_ */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.