Bluetooth: Mesh: Add callback for unprovisioned device beacon
Adds the unprovisioned_beacon callback to the bt_mesh_prov structure. Signed-off-by: Tobias Svehagen <tobias.svehagen@gmail.com>
This commit is contained in:
parent
4ccf4f4ccb
commit
de92d1a83b
2 changed files with 49 additions and 1 deletions
|
@ -136,6 +136,20 @@ struct bt_mesh_prov {
|
|||
*/
|
||||
void (*input_complete)(void);
|
||||
|
||||
/** @brief Unprovisioned beacon has been received.
|
||||
*
|
||||
* This callback notifies the application that an unprovisioned
|
||||
* beacon has been received.
|
||||
*
|
||||
* @param uuid UUID
|
||||
* @param oob_info OOB Information
|
||||
* @param uri_hash Pointer to URI Hash value. NULL if no hash was
|
||||
* present in the beacon.
|
||||
*/
|
||||
void (*unprovisioned_beacon)(u8_t uuid[16],
|
||||
bt_mesh_prov_oob_info_t oob_info,
|
||||
u32_t *uri_hash);
|
||||
|
||||
/** @brief Provisioning link has been opened.
|
||||
*
|
||||
* This callback notifies the application that a provisioning
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue