bt_mesh_subnet_kr_phase_set() function
Set the Subnet's Key Refresh phase. The Key Refresh procedure is started by updating the Subnet keys through bt_mesh_subnet_update. This puts the Subnet in Key Refresh Phase 1. Once all nodes have received the new Subnet key, Key Refresh Phase 2 can be activated through this function to start transmitting with the new network key. Finally, to revoke the old key, set the Key Refresh Phase to 3. This removes the old keys from the node, and returns the Subnet back to normal single-key operation with the new key set.
Syntax
uint8_t bt_mesh_subnet_kr_phase_set(uint16_t net_idx,
uint8_t *phase);
Arguments
phase
Pointer to the new Key Refresh phase. Will return the actual Key Refresh phase after updating.
Return value
STATUS_SUCCESS The Key Refresh phase of the Subnet was successfully changed. STATUS_INVALID_NETKEY The NetIdx is unknown. STATUS_CANNOT_UPDATE The given phase change is invalid.