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;

Description

Structure for BLE_SMP_EVT_PAIRING_COMPLETE event.

Field Documentation

FieldDescription
connHandleConnection handle associated with this connection.
statusPairing procedure status. Refer to Pairing result for possible values.
failReasonReason for pairing failure, if applicable. Refer to 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.