Bluetooth Mesh Stack Provisioner#
Bluetooth Mesh Stack Provisioner.
Bluetooth mesh stack API for the embedded Provisioner
Commands in this class provision nodes in the mesh network and generate security keys for the network.
Initialization:
Provisioning a node:
sl_btmesh_prov_scan_unprov_beacons : Scan for unprovisioned device beacons
sl_btmesh_prov_stop_scan_unprov_beacons : Stop scanning for unprovisioned device beacons
sl_btmesh_evt_prov_unprov_beacon : Unprovisioned device beacon seen
sl_btmesh_evt_prov_uri : URI advertisement seen
sl_btmesh_prov_create_provisioning_session : Create provisioning session
sl_btmesh_prov_provision_adv_device : Provision a device over PB-ADV
sl_btmesh_prov_provision_gatt_device : Provision a device over PB-GATT
sl_btmesh_evt_prov_oob_display_input : Request to display input out-of-band data to the user to input on the node
sl_btmesh_evt_prov_oob_pkey_request : Request for out-of-band public key of a node
sl_btmesh_prov_send_oob_pkey_response : Provide stack with out-of-band public key of a node
sl_btmesh_evt_prov_oob_auth_request : Request for out-of-band authentication data of a node
sl_btmesh_prov_send_oob_auth_response : Provide stack with out-of-band authentication data of a node
sl_btmesh_evt_prov_device_provisioned : Device Provisioned
sl_btmesh_evt_prov_provisioning_failed : Provisioning a device failed
Key Management
sl_btmesh_prov_create_network : Create a new network key on the Provisioner
sl_btmesh_prov_create_appkey : Create a new application key on the Provisioner
sl_btmesh_prov_start_key_refresh : Start a key refresh procedure
sl_btmesh_prov_suspend_key_refresh : Suspend an ongoing key refresh procedure
sl_btmesh_prov_resume_key_refresh : Resume a suspended key refresh procedure
sl_btmesh_prov_get_key_refresh_exclusion : Get node key refresh exclusion status
sl_btmesh_prov_set_key_refresh_exclusion : Set node key refresh exclusion status
sl_btmesh_prov_get_key_refresh_phase : Get node key refresh phase
sl_btmesh_prov_start_key_refresh_from_phase : Start a key refresh procedure from the given phase
Device Database
sl_btmesh_prov_add_ddb_entry : Add a node to the device database
sl_btmesh_prov_delete_ddb_entry : Remove a node from the device database
sl_btmesh_prov_get_ddb_entry : Fetch node data from the device database
sl_btmesh_prov_list_ddb_entries : Request a list of nodes in the device database
sl_btmesh_evt_prov_ddb_list : Device database list result
sl_btmesh_prov_update_device_netkey_index : Update default network key index for a device database entry
These commands are available only if the Provisioner functionality is compiled in the device. Otherwise, a "feature not implemented" error code will be returned for all functions in this class.
Modules#
sl_btmesh_evt_prov_initialized
sl_btmesh_evt_prov_provisioning_suspended
sl_btmesh_evt_prov_capabilities
sl_btmesh_evt_prov_provisioning_failed
sl_btmesh_evt_prov_device_provisioned
sl_btmesh_evt_prov_unprov_beacon
sl_btmesh_evt_prov_oob_pkey_request
sl_btmesh_evt_prov_oob_auth_request
sl_btmesh_evt_prov_oob_display_input
sl_btmesh_evt_prov_key_refresh_phase_update
sl_btmesh_evt_prov_key_refresh_node_update
sl_btmesh_evt_prov_key_refresh_complete
sl_btmesh_evt_prov_add_ddb_entry_complete
sl_btmesh_evt_prov_delete_ddb_entry_complete
sl_btmesh_evt_prov_initialization_failed
sl_btmesh_evt_prov_provisioning_records_list
sl_btmesh_evt_prov_provisioning_record_data
Functions#
Macros#
Function Documentation#
sl_btmesh_prov_init#
sl_status_t sl_btmesh_prov_init ()
Initialize the Bluetooth mesh stack in the Provisioner role. Note that the result code of this command only indicates that the request to initialize has been accepted for processing. When initialization is completed successfully, a sl_btmesh_evt_prov_initialized will be generated. On failed initialization a sl_btmesh_evt_prov_initialization_failed event will be generated. Note that the application must wait for an event to be generated before executing further BGAPI commands.
This command must be issued before any other Bluetooth mesh stack commands. Note that the Bluetooth mesh stack can be initialized either in the Provisioner or the Node role, but not both.
Returns
SL_STATUS_OK if successful. Error code otherwise.
Events
2750
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_scan_unprov_beacons#
sl_status_t sl_btmesh_prov_scan_unprov_beacons ()
Start scanning for unprovisioned device beacons.
Unprovisioned devices send out beacons containing their UUID. An sl_btmesh_evt_prov_unprov_beacon will be generated for each beacon seen. Once the UUID of a device is known, the Provisioner may start provisioning the device with the sl_btmesh_prov_create_provisioning_session command.
Returns
SL_STATUS_OK if successful. Error code otherwise.
Events
2768
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_create_provisioning_session#
sl_status_t sl_btmesh_prov_create_provisioning_session (uint16_t netkey_index, uuid_128 uuid, uint8_t attention_timer_sec)
[in] | netkey_index | Index of the initial network key, which is sent to the device during provisioning |
[in] | uuid | UUID of the device |
[in] | attention_timer_sec | Attention timer value, in seconds, which indicates the time that the provisioned device should attract human attention |
Initialize the provisioning session. After this command, it is possible to set the provisioning parameter with the following command:
After all optional parameters have been set, the provisioning process is triggered by one of the following commands:
Returns
SL_STATUS_OK if successful. Error code otherwise.
Events
2796
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_set_provisioning_suspend_event#
sl_status_t sl_btmesh_prov_set_provisioning_suspend_event (uint8_t status)
[in] | status | Controls when provisioning is suspended and sl_btmesh_evt_prov_provisioning_suspended event is created. The value is a bitmap so multiple possibilities can be set.
If no bits are set (value is zero) provisioning will not be suspended. This is the default. |
Set whether the provisioning can be suspended at a specified point while it is occurring. Currently, this can happen after reception on provisioning capabilities message or when the provisioning link is opened.
Returns
SL_STATUS_OK if successful. Error code otherwise.
Events
2826
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_provision_adv_device#
sl_status_t sl_btmesh_prov_provision_adv_device (uuid_128 uuid)
[in] | uuid | UUID of the device |
Provision device over PB-ADV
Returns
SL_STATUS_OK if successful. Error code otherwise.
Events
2841
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_provision_gatt_device#
sl_status_t sl_btmesh_prov_provision_gatt_device (uuid_128 uuid, uint8_t connection)
[in] | uuid | UUID of the device |
[in] | connection | Connection handle |
Provision device over PB-GATT
Returns
SL_STATUS_OK if successful. Error code otherwise.
Events
2858
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_provision_remote_device#
sl_status_t sl_btmesh_prov_provision_remote_device (uuid_128 uuid, uint16_t server)
[in] | uuid | UUID of the device |
[in] | server | Address of the remote provisioning server |
Provision device over remote provisioning server connection
Returns
SL_STATUS_OK if successful. Error code otherwise.
Events
2876
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_continue_provisioning#
sl_status_t sl_btmesh_prov_continue_provisioning (uuid_128 uuid)
[in] | uuid | UUID of the device being provisioned |
Continue provisioning after the suspension indicated by sl_btmesh_evt_prov_provisioning_suspended.
Returns
SL_STATUS_OK if successful. Error code otherwise.
Events
2892
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_abort_provisioning#
sl_status_t sl_btmesh_prov_abort_provisioning (uuid_128 uuid, uint8_t reason)
[in] | uuid | UUID of the device being provisioned |
[in] | reason | Reason for aborting. Values are as follows:
|
Abort provisioning. This command is typically used after the suspension indicated by sl_btmesh_evt_prov_provisioning_suspended.
Returns
SL_STATUS_OK if successful. Error code otherwise.
Events
2916
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_set_device_address#
sl_status_t sl_btmesh_prov_set_device_address (uuid_128 uuid, uint16_t address)
[in] | uuid | UUID of the device being provisioned |
[in] | address | Unicast address to be assigned for the primary element of the node. |
Set the address for the device after the provisioning has been suspended, as indicated by sl_btmesh_evt_prov_provisioning_suspended event.
Returns
SL_STATUS_OK if successful. Error code otherwise.
Events
2933
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_create_network#
sl_status_t sl_btmesh_prov_create_network (uint16_t netkey_index, size_t key_len, const uint8_t * key)
[in] | netkey_index | Index to use for network key. Allowed values are from 0x000 to 0xfff. |
[in] | key_len | Length of data in |
[in] | key | Key value to use. Set to zero-length array to generate a random key. |
Create a new network key on the Provisioner.
The created key can be deployed on a node using the sl_btmesh_config_client_add_netkey command.
Returns
SL_STATUS_OK if successful. Error code otherwise.
2951
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_create_appkey#
sl_status_t sl_btmesh_prov_create_appkey (uint16_t netkey_index, uint16_t appkey_index, size_t key_len, const uint8_t * key, size_t max_application_key_size, size_t * application_key_len, uint8_t * application_key)
[in] | netkey_index | Index of the network key to which the application key will be bound |
[in] | appkey_index | Index to use for application key. Allowed values are from 0x000 to 0xfff. |
[in] | key_len | Length of data in |
[in] | key | Key value to use; set to zero-length array to generate random key. |
[in] | max_application_key_size | Size of output buffer passed in |
[out] | application_key_len | On return, set to the length of output data written to |
[out] | application_key | New application key. Ignore it if the result was non-zero. |
Create a new application key on the Provisioner.
An application key is always bound to a network key. In other words, the application key is only valid in the context of a particular network key. The selected network key must exist on the Provisioner (see sl_btmesh_prov_create_network command).
The created application key can be deployed on a node using the sl_btmesh_config_client_add_appkey command.
Returns
SL_STATUS_OK if successful. Error code otherwise.
2984
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_send_oob_pkey_response#
sl_status_t sl_btmesh_prov_send_oob_pkey_response (uuid_128 uuid, size_t pkey_len, const uint8_t * pkey)
[in] | uuid | UUID of the Device |
[in] | pkey_len | Length of data in |
[in] | pkey | Public Key read out-of-band |
Respond to the prov_oob_pkey_request.
Returns
SL_STATUS_OK if successful. Error code otherwise.
3003
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_send_oob_auth_response#
sl_status_t sl_btmesh_prov_send_oob_auth_response (uuid_128 uuid, size_t data_len, const uint8_t * data)
[in] | uuid | UUID of the Device |
[in] | data_len | Length of data in |
[in] | data | Output or static OOB data |
Respond to the prov_oob_auth_request.
Returns
SL_STATUS_OK if successful. Error code otherwise.
3018
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_set_oob_requirements#
sl_status_t sl_btmesh_prov_set_oob_requirements (uuid_128 uuid, uint8_t public_key, uint8_t auth_methods, uint16_t output_actions, uint16_t input_actions, uint8_t min_size, uint8_t max_size)
[in] | uuid | UUID of the Device being provisioned |
[in] | public_key | The public key. Set to zero if the provisioning does not use OOB public Key. |
[in] | auth_methods | Enum sl_btmesh_node_auth_method_flag_t. Allowed OOB authentication methods The value is a bitmap so that multiple methods can be supported. |
[in] | output_actions | Enum sl_btmesh_node_oob_output_action_flag_t. Allowed OOB Output Action types |
[in] | input_actions | Enum sl_btmesh_node_oob_input_action_flag_t. Allowed OOB Input Action types |
[in] | min_size | Minimum input/output OOB size. Values range from 0 (input/output OOB not used) to 8. |
[in] | max_size | Maximum input/output OOB size. Must be smaller than or equal to the minimum size. Values range from 0 (input/output OOB not used) to 8. |
Set the OOB requirements for a device being provisioned. This command can be issued after sl_btmesh_prov_create_provisioning_session.
Returns
SL_STATUS_OK if successful. Error code otherwise.
3046
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_start_key_refresh#
sl_status_t sl_btmesh_prov_start_key_refresh (uint16_t netkey_index, uint8_t num_appkeys, size_t appkey_indices_len, const uint8_t * appkey_indices)
[in] | netkey_index | Index of the network key to update |
[in] | num_appkeys | Number of application keys to update; may be zero. |
[in] | appkey_indices_len | Length of data in |
[in] | appkey_indices | Indices of the application keys to update, represented as little endian two byte sequences. The array must contain num_appkeys indices and therefore 2*num_appkeys bytes total. |
Start a key refresh procedure in the network.
A key refresh procedure updates a network key and, optionally, application keys associated with it in all nodes of the network except for excluded nodes. After the refresh procedure is complete, the old keys will be discarded. Therefore, the excluded nodes, which did not receive new keys will be shut out of the network at the completion of the procedure.
Returns
SL_STATUS_OK if successful. Error code otherwise.
Events
3079
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_get_key_refresh_exclusion#
sl_status_t sl_btmesh_prov_get_key_refresh_exclusion (uint16_t key, uuid_128 uuid, uint8_t * status)
[in] | key | Network key index |
[in] | uuid | UUID of the Device |
[out] | status | Non-zero for excluded node |
Check the key refresh exclusion status of a node. Excluded nodes do not participate in the key refresh procedure and can therefore be shut out of the network.
Returns
SL_STATUS_OK if successful. Error code otherwise.
3097
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_set_key_refresh_exclusion#
sl_status_t sl_btmesh_prov_set_key_refresh_exclusion (uint16_t key, uint8_t status, uuid_128 uuid)
[in] | key | Network key index |
[in] | status | Non-zero for excluded node |
[in] | uuid | UUID of the Device |
Set the key refresh exclusion status of a node. Excluded nodes do not participate in the key refresh procedure and can therefore be shut out of the network.
Returns
SL_STATUS_OK if successful. Error code otherwise.
3114
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_set_key_refresh_failure#
sl_status_t sl_btmesh_prov_set_key_refresh_failure (uint16_t key, uuid_128 uuid)
[in] | key | Network key index |
[in] | uuid | UUID of the Device |
Mark the node as failed for the keyrefresh. This function should be called if the provisioner knows that the node has become unresponsive for some external reason (such as factory reset performed by the end user), and will not respond to key refresh messages even after a long delay. Note that if a node drops out of the key refresh procedure, it will not be possible to communicate with the node using the key that was refreshed during the key refresh procedure.
Returns
SL_STATUS_OK if successful. Error code otherwise.
3134
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_phase_timeout_get#
sl_status_t sl_btmesh_prov_phase_timeout_get (uint32_t * phase_timeout_s)
[out] | phase_timeout_s | Value to get in seconds |
Get the phase_timeout_s parameter that will be used for the start key refresh command. A node fails the key refresh procedure phase, if it doesnt reply to the provisioner during the timeout.
Returns
SL_STATUS_OK if successful. Error code otherwise.
3147
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_phase_timeout_set#
sl_status_t sl_btmesh_prov_phase_timeout_set (uint32_t phase_timeout_s)
[in] | phase_timeout_s | Value to be set in seconds |
Set the phase_timeout_s parameter that will be used for the start key refresh command. A node fails the key refresh procedure phase, if it doesnt reply to the provisioner during the timeout. Maximum allowed value is 345600 sec (4days).
Returns
SL_STATUS_OK if successful. Error code otherwise.
3161
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_get_ddb_entry#
sl_status_t sl_btmesh_prov_get_ddb_entry (uuid_128 uuid, aes_key_128 * device_key, uint16_t * netkey_index, uint16_t * address, uint8_t * elements)
[in] | uuid | UUID of the Device to retrieve |
[out] | device_key | Device Key |
[out] | netkey_index | Index of the network key with which the node was initially provisioned. Used for network-level encryption of Configuration Client messages. |
[out] | address | Unicast address of the primary element of the node |
[out] | elements | Number of elements in the node |
Get a Provisioner device database entry with a matching UUID.
Returns
SL_STATUS_OK if successful. Error code otherwise.
3178
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_delete_ddb_entry#
sl_status_t sl_btmesh_prov_delete_ddb_entry (uuid_128 uuid)
[in] | uuid | UUID of the node to delete |
Delete the node information from the Provisioner database. Note that a successful result from this command only means the command has been accepted for processing. The status of the actual operation will be returned in the following event; application should not make new BGAPI requests until the event is received. Note also that this should be followed by a sl_btmesh_prov_start_key_refresh updating the keys of the remaining nodes to make sure the deleted node is shut off from the network.
Returns
SL_STATUS_OK if successful. Error code otherwise.
Events
3202
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_add_ddb_entry#
sl_status_t sl_btmesh_prov_add_ddb_entry (uuid_128 uuid, aes_key_128 device_key, uint16_t netkey_index, uint16_t address, uint8_t elements)
[in] | uuid | UUID of the node to add |
[in] | device_key | Device key value for the node |
[in] | netkey_index | Index of the network key the node will be used for configuration |
[in] | address | Unicast address to allocate for the node's primary element |
[in] | elements | Number of elements the device has |
Add a new node entry to the Provisioner's device database. Note that a successful result from this command only means the command has been accepted for processing. The status of the actual operation will be returned in the following event; application should not make new BGAPI requests until the event is received. Note also that the device key, primary element address, and network key need to be deployed to the node being added to ensure it's configurable. See sl_btmesh_node_set_provisioning_data command.
Returns
SL_STATUS_OK if successful. Error code otherwise.
Events
3227
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_list_ddb_entries#
sl_status_t sl_btmesh_prov_list_ddb_entries (uint16_t * count)
[out] | count | Number of events that will follow |
List nodes known by this Provisioner. A number of sl_btmesh_evt_prov_ddb_list events will be generated.
Returns
SL_STATUS_OK if successful. Error code otherwise.
Events
3246
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_initialize_network#
sl_status_t sl_btmesh_prov_initialize_network (uint16_t address, uint32_t ivi)
[in] | address | Address to assign for provisioner. |
[in] | ivi | IV index of the network. |
Initialize the mesh network and assign the provisioner address and IV index for the network. If this command is not invoked prior to invoking sl_btmesh_prov_create_network, the network will be initialized with default address and IV index.
Returns
SL_STATUS_OK if successful. Error code otherwise.
3261
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_get_key_refresh_appkey_exclusion#
sl_status_t sl_btmesh_prov_get_key_refresh_appkey_exclusion (uint16_t netkey_index, uint16_t appkey_index, uuid_128 uuid, uint8_t * status)
[in] | netkey_index | Network key index |
[in] | appkey_index | Application key index |
[in] | uuid | UUID of the Device |
[out] | status | Non-zero for excluded node |
Check the application key refresh exclusion status of a node. Nodes which are excluded for a given application key do not receive updates for that particular application key, but do participate in the key refresh procedure as a whole. This enables the Provisioner to set up and update restricted sets of application keys across nodes.
Returns
SL_STATUS_OK if successful. Error code otherwise.
3279
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_set_key_refresh_appkey_exclusion#
sl_status_t sl_btmesh_prov_set_key_refresh_appkey_exclusion (uint16_t netkey_index, uint16_t appkey_index, uint8_t status, uuid_128 uuid)
[in] | netkey_index | Network key index |
[in] | appkey_index | Application key index |
[in] | status | Non-zero for excluded node |
[in] | uuid | UUID of the device |
Set the application key refresh exclusion status of a node. Nodes which are excluded for a given application key do not receive updates for that particular application key, but do participate in the key refresh procedure as a whole. This enables the Provisioner to set up and update restricted sets of application keys across nodes.
Returns
SL_STATUS_OK if successful. Error code otherwise.
3300
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_stop_scan_unprov_beacons#
sl_status_t sl_btmesh_prov_stop_scan_unprov_beacons ()
Stop scanning for unprovisioned device beacons.
Returns
SL_STATUS_OK if successful. Error code otherwise.
3313
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_update_device_netkey_index#
sl_status_t sl_btmesh_prov_update_device_netkey_index (uuid_128 uuid, uint16_t netkey_index)
[in] | uuid | UUID of the node |
[in] | netkey_index | Index of the network key used in configuring the node. |
Update a node's entry in the Provisioner's device database by setting a new value to the netkey_index field. The netkey_index field is used to determine the network key to use when encrypting and decrypting configuration model messages to and from the node.
Returns
SL_STATUS_OK if successful. Error code otherwise.
3329
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_suspend_key_refresh#
sl_status_t sl_btmesh_prov_suspend_key_refresh (uint16_t netkey_index)
[in] | netkey_index | Index of the network key identifying an ongoing key refresh procedure |
Suspend an ongoing key refresh procedure.
Suspending a key refresh procedure means no further requests for updating keys or setting key refresh phase will be sent to the network by the Provisioner until the key refresh procedure is resumed.
Returns
SL_STATUS_OK if successful. Error code otherwise.
3346
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_resume_key_refresh#
sl_status_t sl_btmesh_prov_resume_key_refresh (uint16_t netkey_index)
[in] | netkey_index | Index of the network key identifying a suspended key refresh procedure |
Resume a suspended key refresh procedure.
By resuming a suspended key refresh procedure, the Provisioner will again start to send requests for updating keys or setting key refresh phase to the network.
Returns
SL_STATUS_OK if successful. Error code otherwise.
3362
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_get_key_refresh_phase#
sl_status_t sl_btmesh_prov_get_key_refresh_phase (uint16_t netkey_index, uint8_t * phase)
[in] | netkey_index | Index of the network key identifying an ongoing key refresh procedure |
[out] | phase | The current key refresh phase. Values are as follows:
|
Get the key refresh phase of an ongoing key refresh procedure.
Returns
SL_STATUS_OK if successful. Error code otherwise.
3379
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_start_key_refresh_from_phase#
sl_status_t sl_btmesh_prov_start_key_refresh_from_phase (uint8_t phase, uint16_t netkey_index, uint8_t num_appkeys, size_t appkey_indices_len, const uint8_t * appkey_indices)
[in] | phase | Current key refresh phase |
[in] | netkey_index | Index of the network key identifying a key refresh procedure |
[in] | num_appkeys | Number of application keys to update; may be zero. |
[in] | appkey_indices_len | Length of data in |
[in] | appkey_indices | Indices of the application keys to update, represented as little endian two byte sequences. The array must contain num_appkeys indices and therefore 2*num_appkeys bytes total. |
Start a key refresh procedure from a non-default phase. Before calling this function, keys to be used in the key refresh procedure should have been specified by calling sl_btmesh_test_prov_prepare_key_refresh command.
Note that this command should not normally be used. It is intended only for resuming an interrupted key refresh procedure on a backup Provisioner when the original Provisioner, that started the key refresh procedure, is no longer available to complete the procedure.
Returns
SL_STATUS_OK if successful. Error code otherwise.
Events
3410
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_flush_key_refresh_state#
sl_status_t sl_btmesh_prov_flush_key_refresh_state (uint16_t netkey_index)
[in] | netkey_index | Index of the network key identifying a key refresh procedure |
Clear the key refresh state stored in persistent storage.
Note that this command should not normally be used. It is intended only for clearing stored key refresh state when a key refresh procedure has been suspended and will not be resumed, either because the network key has been deleted from all nodes or the responsibility for completing the key refresh has been moved to another Provisioner.
Returns
SL_STATUS_OK if successful. Error code otherwise.
3432
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_test_identity#
SL_BGAPI_DEPRECATED sl_status_t sl_btmesh_prov_test_identity (uint16_t address, uint16_t netkey_index, size_t data_len, const uint8_t * data, uint8_t * match)
[in] | address | Mesh address of the node |
[in] | netkey_index | Network key index of the node. |
[in] | data_len | Length of data in |
[in] | data | Contents of the identity beacon. |
[out] | match | - 0: Identity record did not match
|
Test if data in the identity beacon matches the mesh device and network. This is a deprecated function. Please use sl_btmesh_node_test_identity
Returns
SL_STATUS_OK if successful. Error code otherwise.
3449
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_get_provisioning_records_list#
sl_status_t sl_btmesh_prov_get_provisioning_records_list (uuid_128 uuid)
[in] | uuid | UUID of the Device being provisioned |
Get the list of provisioning records on the device. This command can be issued when provisioning is suspended after the provisioning session has been opened, but no earlier or later. The list of provisioning records on the device will be delivered with the sl_btmesh_evt_prov_provisioning_records_list event.
Returns
SL_STATUS_OK if successful. Error code otherwise.
Events
3471
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_get_provisioning_record_data#
sl_status_t sl_btmesh_prov_get_provisioning_record_data (uuid_128 uuid, uint16_t record)
[in] | uuid | UUID of the Device being provisioned |
[in] | record | Provisioning record ID |
Get provisioning record data from the device. This command can be issued when provisioning is suspended after the provisioning session has been opened, but no earlier or later. The provisioning record data will be delivered with the sl_btmesh_evt_prov_provisioning_record_data event.
Returns
SL_STATUS_OK if successful. Error code otherwise.
Events
3489
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_prov_init_provisioning_records#
sl_status_t sl_btmesh_prov_init_provisioning_records ()
Initialize provisioning record retrieval functionality on the Provisioner. This must be called before trying to retrieve provisioning records list or individual record data.
Returns
SL_STATUS_OK if successful. Error code otherwise.
3502
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
Macro Definition Documentation#
sl_btmesh_cmd_prov_init_id#
#define sl_btmesh_cmd_prov_init_idValue:
0x00150028
2063
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_scan_unprov_beacons_id#
#define sl_btmesh_cmd_prov_scan_unprov_beacons_idValue:
0x01150028
2064
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_create_provisioning_session_id#
#define sl_btmesh_cmd_prov_create_provisioning_session_idValue:
0x41150028
2065
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_set_provisioning_suspend_event_id#
#define sl_btmesh_cmd_prov_set_provisioning_suspend_event_idValue:
0x42150028
2066
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_provision_adv_device_id#
#define sl_btmesh_cmd_prov_provision_adv_device_idValue:
0x43150028
2067
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_provision_gatt_device_id#
#define sl_btmesh_cmd_prov_provision_gatt_device_idValue:
0x44150028
2068
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_provision_remote_device_id#
#define sl_btmesh_cmd_prov_provision_remote_device_idValue:
0x7f150028
2069
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_continue_provisioning_id#
#define sl_btmesh_cmd_prov_continue_provisioning_idValue:
0x45150028
2070
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_abort_provisioning_id#
#define sl_btmesh_cmd_prov_abort_provisioning_idValue:
0x47150028
2071
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_set_device_address_id#
#define sl_btmesh_cmd_prov_set_device_address_idValue:
0x46150028
2072
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_create_network_id#
#define sl_btmesh_cmd_prov_create_network_idValue:
0x03150028
2073
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_create_appkey_id#
#define sl_btmesh_cmd_prov_create_appkey_idValue:
0x07150028
2074
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_send_oob_pkey_response_id#
#define sl_btmesh_cmd_prov_send_oob_pkey_response_idValue:
0x08150028
2075
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_send_oob_auth_response_id#
#define sl_btmesh_cmd_prov_send_oob_auth_response_idValue:
0x09150028
2076
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_set_oob_requirements_id#
#define sl_btmesh_cmd_prov_set_oob_requirements_idValue:
0x0a150028
2077
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_start_key_refresh_id#
#define sl_btmesh_cmd_prov_start_key_refresh_idValue:
0x0b150028
2078
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_get_key_refresh_exclusion_id#
#define sl_btmesh_cmd_prov_get_key_refresh_exclusion_idValue:
0x0c150028
2079
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_set_key_refresh_exclusion_id#
#define sl_btmesh_cmd_prov_set_key_refresh_exclusion_idValue:
0x0d150028
2080
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_set_key_refresh_failure_id#
#define sl_btmesh_cmd_prov_set_key_refresh_failure_idValue:
0x12150028
2081
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_phase_timeout_get_id#
#define sl_btmesh_cmd_prov_phase_timeout_get_idValue:
0x10150028
2082
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_phase_timeout_set_id#
#define sl_btmesh_cmd_prov_phase_timeout_set_idValue:
0x11150028
2083
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_get_ddb_entry_id#
#define sl_btmesh_cmd_prov_get_ddb_entry_idValue:
0x16150028
2084
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_delete_ddb_entry_id#
#define sl_btmesh_cmd_prov_delete_ddb_entry_idValue:
0x17150028
2085
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_add_ddb_entry_id#
#define sl_btmesh_cmd_prov_add_ddb_entry_idValue:
0x18150028
2086
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_list_ddb_entries_id#
#define sl_btmesh_cmd_prov_list_ddb_entries_idValue:
0x19150028
2087
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_initialize_network_id#
#define sl_btmesh_cmd_prov_initialize_network_idValue:
0x37150028
2088
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_get_key_refresh_appkey_exclusion_id#
#define sl_btmesh_cmd_prov_get_key_refresh_appkey_exclusion_idValue:
0x38150028
2089
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_set_key_refresh_appkey_exclusion_id#
#define sl_btmesh_cmd_prov_set_key_refresh_appkey_exclusion_idValue:
0x39150028
2090
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_stop_scan_unprov_beacons_id#
#define sl_btmesh_cmd_prov_stop_scan_unprov_beacons_idValue:
0x3a150028
2091
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_update_device_netkey_index_id#
#define sl_btmesh_cmd_prov_update_device_netkey_index_idValue:
0x3b150028
2092
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_suspend_key_refresh_id#
#define sl_btmesh_cmd_prov_suspend_key_refresh_idValue:
0x3c150028
2093
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_resume_key_refresh_id#
#define sl_btmesh_cmd_prov_resume_key_refresh_idValue:
0x3d150028
2094
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_get_key_refresh_phase_id#
#define sl_btmesh_cmd_prov_get_key_refresh_phase_idValue:
0x3e150028
2095
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_start_key_refresh_from_phase_id#
#define sl_btmesh_cmd_prov_start_key_refresh_from_phase_idValue:
0x3f150028
2096
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_flush_key_refresh_state_id#
#define sl_btmesh_cmd_prov_flush_key_refresh_state_idValue:
0x40150028
2097
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_test_identity_id#
#define sl_btmesh_cmd_prov_test_identity_idValue:
0x48150028
2098
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_get_provisioning_records_list_id#
#define sl_btmesh_cmd_prov_get_provisioning_records_list_idValue:
0x1c150028
2099
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_get_provisioning_record_data_id#
#define sl_btmesh_cmd_prov_get_provisioning_record_data_idValue:
0x1d150028
2100
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_cmd_prov_init_provisioning_records_id#
#define sl_btmesh_cmd_prov_init_provisioning_records_idValue:
0x1e150028
2101
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_init_id#
#define sl_btmesh_rsp_prov_init_idValue:
0x00150028
2102
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_scan_unprov_beacons_id#
#define sl_btmesh_rsp_prov_scan_unprov_beacons_idValue:
0x01150028
2103
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_create_provisioning_session_id#
#define sl_btmesh_rsp_prov_create_provisioning_session_idValue:
0x41150028
2104
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_set_provisioning_suspend_event_id#
#define sl_btmesh_rsp_prov_set_provisioning_suspend_event_idValue:
0x42150028
2105
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_provision_adv_device_id#
#define sl_btmesh_rsp_prov_provision_adv_device_idValue:
0x43150028
2106
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_provision_gatt_device_id#
#define sl_btmesh_rsp_prov_provision_gatt_device_idValue:
0x44150028
2107
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_provision_remote_device_id#
#define sl_btmesh_rsp_prov_provision_remote_device_idValue:
0x7f150028
2108
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_continue_provisioning_id#
#define sl_btmesh_rsp_prov_continue_provisioning_idValue:
0x45150028
2109
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_abort_provisioning_id#
#define sl_btmesh_rsp_prov_abort_provisioning_idValue:
0x47150028
2110
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_set_device_address_id#
#define sl_btmesh_rsp_prov_set_device_address_idValue:
0x46150028
2111
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_create_network_id#
#define sl_btmesh_rsp_prov_create_network_idValue:
0x03150028
2112
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_create_appkey_id#
#define sl_btmesh_rsp_prov_create_appkey_idValue:
0x07150028
2113
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_send_oob_pkey_response_id#
#define sl_btmesh_rsp_prov_send_oob_pkey_response_idValue:
0x08150028
2114
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_send_oob_auth_response_id#
#define sl_btmesh_rsp_prov_send_oob_auth_response_idValue:
0x09150028
2115
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_set_oob_requirements_id#
#define sl_btmesh_rsp_prov_set_oob_requirements_idValue:
0x0a150028
2116
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_start_key_refresh_id#
#define sl_btmesh_rsp_prov_start_key_refresh_idValue:
0x0b150028
2117
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_get_key_refresh_exclusion_id#
#define sl_btmesh_rsp_prov_get_key_refresh_exclusion_idValue:
0x0c150028
2118
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_set_key_refresh_exclusion_id#
#define sl_btmesh_rsp_prov_set_key_refresh_exclusion_idValue:
0x0d150028
2119
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_set_key_refresh_failure_id#
#define sl_btmesh_rsp_prov_set_key_refresh_failure_idValue:
0x12150028
2120
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_phase_timeout_get_id#
#define sl_btmesh_rsp_prov_phase_timeout_get_idValue:
0x10150028
2121
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_phase_timeout_set_id#
#define sl_btmesh_rsp_prov_phase_timeout_set_idValue:
0x11150028
2122
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_get_ddb_entry_id#
#define sl_btmesh_rsp_prov_get_ddb_entry_idValue:
0x16150028
2123
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_delete_ddb_entry_id#
#define sl_btmesh_rsp_prov_delete_ddb_entry_idValue:
0x17150028
2124
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_add_ddb_entry_id#
#define sl_btmesh_rsp_prov_add_ddb_entry_idValue:
0x18150028
2125
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_list_ddb_entries_id#
#define sl_btmesh_rsp_prov_list_ddb_entries_idValue:
0x19150028
2126
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_initialize_network_id#
#define sl_btmesh_rsp_prov_initialize_network_idValue:
0x37150028
2127
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_get_key_refresh_appkey_exclusion_id#
#define sl_btmesh_rsp_prov_get_key_refresh_appkey_exclusion_idValue:
0x38150028
2128
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_set_key_refresh_appkey_exclusion_id#
#define sl_btmesh_rsp_prov_set_key_refresh_appkey_exclusion_idValue:
0x39150028
2129
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_stop_scan_unprov_beacons_id#
#define sl_btmesh_rsp_prov_stop_scan_unprov_beacons_idValue:
0x3a150028
2130
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_update_device_netkey_index_id#
#define sl_btmesh_rsp_prov_update_device_netkey_index_idValue:
0x3b150028
2131
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_suspend_key_refresh_id#
#define sl_btmesh_rsp_prov_suspend_key_refresh_idValue:
0x3c150028
2132
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_resume_key_refresh_id#
#define sl_btmesh_rsp_prov_resume_key_refresh_idValue:
0x3d150028
2133
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_get_key_refresh_phase_id#
#define sl_btmesh_rsp_prov_get_key_refresh_phase_idValue:
0x3e150028
2134
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_start_key_refresh_from_phase_id#
#define sl_btmesh_rsp_prov_start_key_refresh_from_phase_idValue:
0x3f150028
2135
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_flush_key_refresh_state_id#
#define sl_btmesh_rsp_prov_flush_key_refresh_state_idValue:
0x40150028
2136
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_test_identity_id#
#define sl_btmesh_rsp_prov_test_identity_idValue:
0x48150028
2137
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_get_provisioning_records_list_id#
#define sl_btmesh_rsp_prov_get_provisioning_records_list_idValue:
0x1c150028
2138
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_get_provisioning_record_data_id#
#define sl_btmesh_rsp_prov_get_provisioning_record_data_idValue:
0x1d150028
2139
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h
sl_btmesh_rsp_prov_init_provisioning_records_id#
#define sl_btmesh_rsp_prov_init_provisioning_records_idValue:
0x1e150028
2140
of file /mnt/raid/workspaces/ws.wDIAeKYhQ/overlay/gsdk/protocol/bluetooth/build/native/mesh_app/inc/sl_btmesh_api.h