BLE_SMP_EvtPairingComplete_T

C

typedef struct  BLE_SMP_EvtPairingComplete_T
{
    uint16_t                connHandle;
    uint8_t                 status;
    uint8_t                 failReason;
    bool                    bond;
    uint8_t                 encryptKey[16];
    BLE_SMP_SecKeys_T       local;
    BLE_SMP_SecKeys_T       remote;
} BLE_SMP_EvtPairingComplete_T;

Field Documentation

FieldDescription
connHandleConnection handle associated with this connection.
statusPairing procedure status. Refer to Pairing result for possible values.
failReasonThe failReason field indicates why the pairing failed if the status is BLE_SMP_PAIRING_FAIL. See Pairing failure reasons for details.
bondIndicates whether the devices have successfully bonded (true) or not (false).
encryptKeyEncryption key used for securing the connection.
localSecurity keys of the local device post-pairing. See BLE_SMP_SecKeys_T.
remoteSecurity keys of the remote device post-pairing. See BLE_SMP_SecKeys_T.