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
Data structure for BLE_SMP_EVT_PAIRING_COMPLETE event.
Field Documentation
| Field | Description |
|---|---|
| connHandle | Connection handle associated with this connection. |
| status | Status of pairing procedure. See Pairing result. |
| failReason | The failReason field indicates why the pairing failed if the status is BLE_SMP_PAIRING_FAIL. See Pairing fail reason. |
| bond | The remote is bonded or not. |
| encryptKey | Encryption key associated with this connection. |
| local | Local security keys. |
| remote | Remote security keys. |
