ESP-IDF + 0/1 examples
SourceVu will show references to bt_mesh_prov from the following samples and libraries:
 
Symbols
loading...
Files
loading...
SummarySyntaxRelatedReferences

Fields

Field
Declared as
Description
const uint8_t *
The UUID that's used when advertising as unprovisioned.
const char *
Optional URI. This will be advertised separately from the unprovisioned beacon, however the unprovisioned beacon will contain a hash of it so the two can be associated by the provisioner.
Out of Band information field.
bool
Flag indicates whether unprovisioned devices support OOB public key.
void (*)(void)
Set device OOB public key. This callback notifies the application to set OOB public key & private key pair.
uint8_t
OOB type.
const uint8_t *
Static OOB value.
uint8_t
Static OOB value length.
uint8_t
Maximum size of Output OOB supported.
uint16_t
Supported Output OOB Actions.
uint8_t
uint16_t
Supported Input OOB Actions.
int (*)(bt_mesh_output_action_t act, uint32_t num)
Output of a number is requested. This callback notifies the application to output the given number using the given action.
int (*)(const char *str)
Output of a string is requested. This callback notifies the application to display the given string to the user.
int (*)(bt_mesh_input_action_t act, uint8_t size)
Input is requested. This callback notifies the application to request input from the user using the given action. The requested input will either be a string or a number, and the application needs to consequently call the bt_mesh_input_string() or bt_mesh_input_number() functions once the data has been acquired from the user.
void (*)(bt_mesh_prov_bearer_t bearer)
Provisioning link has been opened. This callback notifies the application that a provisioning link has been opened on the given provisioning bearer.
void (*)(bt_mesh_prov_bearer_t bearer, uint8_t reason)
Provisioning link has been closed. This callback notifies the application that a provisioning link has been closed on the given provisioning bearer.
void (*)(uint16_t net_idx, const uint8_t net_key[16], uint16_t addr, uint8_t flags, uint32_t iv_index)
Provisioning is complete. This callback notifies the application that provisioning has been successfully completed, and that the local node has been assigned the specified NetKeyIndex and primary element address.
void (*)(void)
Node has been reset. This callback notifies the application that the local node has been reset and needs to be re-provisioned. The node will not automatically advertise as unprovisioned, rather the bt_mesh_prov_enable() API needs to be called to enable unprovisioned advertising on one or more provisioning bearers.
const uint8_t *
const uint16_t
uint16_t
uint8_t
uint8_t
uint8_t
int (*)(uint8_t link_idx)
Input is requested. This callback notifies the application that it should read device's public key with OOB.
uint8_t *
uint8_t
int (*)(uint8_t method, bt_mesh_output_action_t act, uint8_t size, uint8_t link_idx)
Provisioner input a number read from device output This callback notifies the application that it should input the number given by the device.
int (*)(uint8_t method, bt_mesh_input_action_t act, void *data, uint8_t size, uint8_t link_idx)
Provisioner output a number to the device This callback notifies the application that it should output the number to the device.
uint8_t
uint32_t
void (*)(bt_mesh_prov_bearer_t bearer)
Provisioner has opened a provisioning link. This callback notifies the application that a provisioning link has been opened on the given provisioning bearer.
void (*)(bt_mesh_prov_bearer_t bearer, uint8_t reason)
Provisioner has closed a provisioning link. This callback notifies the application that a provisioning link has been closed on the given provisioning bearer.
void (*)(uint16_t node_idx, const uint8_t device_uuid[16], uint16_t unicast_addr, uint8_t element_num, uint16_t netkey_idx)
Provision one device is complete. This callback notifies the application that provisioner has successfully provisioned a device, and the node has been assigned the specified NetKeyIndex and primary element address.
void (*)(uint16_t link_idx)
Provisioner start certificate based provisioning. This callback notifies the application that certificate based provisioning has started. Provisioner need to send prov_records_get, prov_record_request or prov_invite message.
void (*)(uint16_t link_idx, struct net_buf_simple *data)
Provisioner receive provisioning records list from device. This callback notifies the application that provisioner has received provisioning records list, and will send the list to application.
void (*)(uint8_t status, uint16_t link_idx, uint16_t record_id, uint16_t frag_offset, uint16_t total_len, uint8_t *record)
Provisioner receive complete provisioning record from device. This callback notifies the application that provisioner has received complete provisioning record, and will send the record to application.

References

from examples