ESP-IDF
Select one of the symbols to view example projects that use it.
Symbol previews are coming soon...
Outline
#define _FAST_PROV_H_
#include "net.h"
bt_mesh_fast_prov_dev_key_get(uint16_t);
bt_mesh_fast_prov_subnet_get(uint16_t);
bt_mesh_fast_prov_app_key_find(uint16_t);
bt_mesh_set_fast_prov_net_idx(uint16_t);
bt_mesh_fast_prov_net_key_add(const uint8_t *);
bt_mesh_fast_prov_net_key_get(uint16_t);
bt_mesh_get_fast_prov_app_key(uint16_t, uint16_t);
bt_mesh_set_fast_prov_action(uint8_t);
Files
loading...
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
components/bt/esp_ble_mesh/core/fast_prov.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
/*
* SPDX-FileCopyrightText: 2017-2021 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
/* ... */
#ifndef
_FAST_PROV_H_
#define
_FAST_PROV_H_
#include
"
net.h"
#ifdef
__cplusplus
extern
"C"
{
#endif
const
uint8_t
*
bt_mesh_fast_prov_dev_key_get
(
uint16_t
dst
)
;
struct
bt_mesh_subnet
*
bt_mesh_fast_prov_subnet_get
(
uint16_t
net_idx
)
;
struct
bt_mesh_app_key
*
bt_mesh_fast_prov_app_key_find
(
uint16_t
app_idx
)
;
uint8_t
bt_mesh_set_fast_prov_net_idx
(
uint16_t
net_idx
)
;
uint8_t
bt_mesh_fast_prov_net_key_add
(
const
uint8_t
net_key
[
16
]
)
;
const
uint8_t
*
bt_mesh_fast_prov_net_key_get
(
uint16_t
net_idx
)
;
const
uint8_t
*
bt_mesh_get_fast_prov_app_key
(
uint16_t
net_idx
,
uint16_t
app_idx
)
;
uint8_t
bt_mesh_set_fast_prov_action
(
uint8_t
action
)
;
#ifdef
__cplusplus
}
{...}
#endif
/* ... */
#endif
/* _FAST_PROV_H_ */
Details
Show:
from
Types:
Columns:
All items filtered out
All items filtered out
This file uses the notable symbols shown below. Click anywhere in the file to view more details.
bt_mesh_fast_prov_subnet_get()
bt_mesh_fast_prov_app_key_find()
bt_mesh_fast_prov_dev_key_get()
bt_mesh_set_fast_prov_net_idx()
bt_mesh_fast_prov_net_key_get()
bt_mesh_get_fast_prov_app_key()
bt_mesh_set_fast_prov_action()
bt_mesh_fast_prov_net_key_add()
bt_mesh_subnet
bt_mesh_app_key
bt_mesh_set_fast_prov_action()::action
bt_mesh_fast_prov_dev_key_get()::dst
bt_mesh_fast_prov_subnet_get()::net_idx
bt_mesh_fast_prov_app_key_find()::app_idx
bt_mesh_set_fast_prov_net_idx()::net_idx
bt_mesh_fast_prov_net_key_get()::net_idx
bt_mesh_get_fast_prov_app_key()::app_idx
bt_mesh_fast_prov_net_key_add()::net_key
bt_mesh_get_fast_prov_app_key()::net_idx
_FAST_PROV_H_