Is there any method to remove a single node from the network in current mesh SDK 2.1.0 with s132 soft-device 6.0?
With "config_client_node_reset" it will remove all the nodes from the network who has received this message at the time, but I wanted to remove only one specific node from the network.
I've looked through Device State Manager Key refresh APIs which might be used for the same functionality, but I wasn't able to figure out how to use those for removing a node. so could you point out me for the same?
P.S. My observed Key refresh APIs was:
uint32_t dsm_subnet_kr_phase_get(dsm_handle_t subnet_handle, nrf_mesh_key_refresh_phase_t * p_phase);
uint32_t dsm_subnet_update(dsm_handle_t subnet_handle, const uint8_t * p_key);
uint32_t dsm_subnet_update_swap_keys(dsm_handle_t subnet_handle);
uint32_t dsm_subnet_update_commit(dsm_handle_t subnet_handle);
If there was any other method to achieve the same then also suggest.