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

Bonding occurs after incorrect Passkey entry.

I am using a static passkey to set up pairing and after that the devices are supposed to bond. The issue I am encountering is that when the wrong passkey is entered or if the passkey entry is allowed to time out the central device acts like it has successfully bonded(which it shouldn't have done) but if services are discovered or enabled it will show that they all have insufficient authentication. Why is the bonding occurring when the passkey that is entered is incorrect/the passkey is never entered?

Parents
  • To me it sounds like bonding is not occuring, since you get insufficient aithentication.

    It is up to the application to react when pairing fails.

    You will get the BLE_GAP_EVT_AUTH_STATUS event.

    With it you can check the auth_status field in the ble_gap_evt_auth_status_t struct to see the security status:

    BLE_GAP_SEC_STATUS_SUCCESS (0x00)
    BLE_GAP_SEC_STATUS_TIMEOUT (0x01)
    BLE_GAP_SEC_STATUS_PASSKEY_ENTRY_FAILED (0x81)
    

    Implement the reaction you want when pairing is not successful.

  • I've seen it happen on an iPad and with Master Control Panel. In Master Control Panel it will show the words "Bonded: True" at the top and will not start the bonding process when I press the Bond button. On the iPad it will not open up the pairing passkey request box and if I look under Settings->Bluetooth->devices it shows the board I'm using as a remembered device.

Reply Children
No Data
Related