This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

How to unprovision nrf Mesh DK board using the hardware?

Hello, 

I am using nrf52832 with nrf Mesh DK. Is there a way to unprovision the board from the hardware  or command line and not from the app?

Many thanks in advance ,

Rp

Parents
  • Hi Rp, 

    In our app when you click remove node, we will send a "Node Reset" 0x8049 message to the client server on the node to reset the node. 

    In the nRF52 code you can find the code to handle that message in handle_node_reset(); and node_reset().

    If you want to reset a node locally, you can also call node_reset() in your code, either trigger by hardware or command line (if you have an interface).

    Note that, this won't tell the provisioner to remove the node itself. I don't think there is a way a node can notify that it's leaving the network. But you can always define your own protocol to do so. 

Reply
  • Hi Rp, 

    In our app when you click remove node, we will send a "Node Reset" 0x8049 message to the client server on the node to reset the node. 

    In the nRF52 code you can find the code to handle that message in handle_node_reset(); and node_reset().

    If you want to reset a node locally, you can also call node_reset() in your code, either trigger by hardware or command line (if you have an interface).

    Note that, this won't tell the provisioner to remove the node itself. I don't think there is a way a node can notify that it's leaving the network. But you can always define your own protocol to do so. 

Children
Related