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,

  • 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).

  • Thanks Ole Morten to answer to my question.

    My application (Peripheral) is based on your github :: NordicSemiconducteur/ble-sdk-arduino / libraries / BLE / examples / ble_heart_rate_template /

    • On the Central side I effectively have an alert when the peripheral peripheral goes out of range (iOS app).

    • However, on the peripheral(nrf8001) side even if I have a ACI_EVT_DISCONNECTED (0x86) in the loop (aci_loop()) (as you made in “the ble_heart_rate_template” source code), I don’t have any callback information when I stop my application from the central side.

    What/where I should have a look at the code ( ble_heart_rate_template ) to resolve this problem ? What did I do wrong ? What kind of information you need to better answer to my question ?

    Thanks, Regards,

  • You are using the ble_heart_rate_template , this means that you are not using any encryption on the link. This also means that as soon as the ACI Disconnected Event is received, all subscriptions for Notify and Indicate are cancelled. This means that the next time the master connects, she will have to subscribe again to the Characteristics that are Notify or Indicate. When the master subscribes, a ACI Pipe Status Event will be received that shows that the specific Notify pipe is available. The subscription has to be done for every connection from the master when encryption is not used.

    In short: The ACI Disconnected Event can act as the way to signal that the app has finished.

    I hope this helps.

  • Thanks for your answer,

    All your sentences are correct, I mean, it's what is happening.

    • I not using any encryption on the link.
    • The master has to subscribe again (At each reconnection) to the Characteristics that are Notify or Indicate.
    • The subscription has to be done for every connection from the master when encryption is not used.

    And effectively, if the master close properly the connection, the peripheral receive an ACI Disconnected Event to signal that the app has finished.

    However, even if I think I understand what you said, what is the link between this and my problem? My goal is to receive an event from the peripheral side when I lost the master. To be able to get that, do I have to do an encryption on the link (for example a paring without man-in-the-middle (MITM) protection would work)?

    I am little bite confused about what you call encryption. Do you have any example or document to help me to understand this concept and how it will resolve my problem?

    Thanks,

  • I'm not sure I understand what you mean; as I said initially you'll get a DisconnectedEvent once the Central device goes out of range or disconnects the link in any way, no matter if it crashes, runs out of battery or anything else. At that time, you can restart advertising again by sending the Connect command to the nRF8001. No encryption is needed for this.

Related