Merge branch 'bigfix/BLEQABR23-503' into 'master'

fix(ble_mesh): reject node-reseting when provision link is active

See merge request espressif/esp-idf!25848
This commit is contained in:
Jiang Jiang Jian 2024-01-02 15:37:42 +08:00
commit 7537c4fcea

View File

@ -109,6 +109,11 @@ void bt_mesh_node_reset(void)
return;
}
if (bt_prov_active()) {
BT_WARN("%s, link is still active", __func__);
return;
}
bt_mesh.iv_index = 0U;
bt_mesh.seq = 0U;