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

How to handle a sudden disconnection of the master on the peripheral (NRF8001)

Hello Nordic team,

I am working on a BLE RedBearLab shield (nrf8001) mounted on an Arduino board.

Consider that a connection is correctly made from a Master app to my nrf8001 (Peripheral) . The master have already subscribed to an advertising characteristic (with a notify mod) and every thing is fine.

If the Master suddenly stop running (for exemple if the Master is out of battery or just crashed…) I would like to know the proper way to inform my nrf8001 board that the subscription of the advertising characteristic previously made is not valid anymore.

How can I do that ? My first idea was to sent a packet every X period of time from my peripheral board with an acknowledgement and if I haven’t received any response before a pre-determined time , I can consider that the connection is lost. Is there any other/better way to do that ? How can I know that there is no more valid connection on the peripheral side?

Thanks, Regards,

Parents
  • If the Central goes out of range or in any other way crashes, you'll see a DisconnectedEvent (section 26.6. in the nRF8001 Product specification) coming from the nRF8001. Keeping a link alive and well by sending packets is a fundamental part of the BLE specification, so this is not something you need to take care about from the application. Once a conneciton has been established, the Central and the Peripheral will exchange packets every connection interval.

    When you get this event, you typically want to start advertising again, to make it possible for the Central to reconnect, and this can be done with the Connect command (secton 24.14).

Reply
  • If the Central goes out of range or in any other way crashes, you'll see a DisconnectedEvent (section 26.6. in the nRF8001 Product specification) coming from the nRF8001. Keeping a link alive and well by sending packets is a fundamental part of the BLE specification, so this is not something you need to take care about from the application. Once a conneciton has been established, the Central and the Peripheral will exchange packets every connection interval.

    When you get this event, you typically want to start advertising again, to make it possible for the Central to reconnect, and this can be done with the Connect command (secton 24.14).

Children
No Data
Related