1.2.2.2.1.2.1 BLE_DM_EventId_T

C

typedef enum BLE_DM_EventId_T
{
    BLE_DM_EVT_DISCONNECTED,
    BLE_DM_EVT_CONNECTED,
    BLE_DM_EVT_SECURITY_START,
    BLE_DM_EVT_SECURITY_SUCCESS,
    BLE_DM_EVT_SECURITY_FAIL,
    BLE_DM_EVT_PAIRED_DEVICE_FULL,
    BLE_DM_EVT_PAIRED_DEVICE_UPDATED,
    BLE_DM_EVT_CONN_UPDATE_SUCCESS,
    BLE_DM_EVT_CONN_UPDATE_FAIL,
}BLE_DM_EventId_T;

Description

Enumeration type of BLE DM callback events.

EnumeratorDescription
BLE_DM_EVT_DISCONNECTEDBLE link is terminated. See BLE_DM_Event_T for the event details.
BLE_DM_EVT_CONNECTEDBLE link is established. See BLE_DM_Event_T for the event details.
BLE_DM_EVT_SECURITY_STARTSecurity procedure has started. See BLE_DM_EvtSecurityStart_T. for the event detail.
BLE_DM_EVT_SECURITY_SUCCESSSecurity procedure has finished successfully. See BLE_DM_EvtSecuritySuccess_T. for the event detail.
BLE_DM_EVT_SECURITY_FAILSecurity procedure has failed. See BLE_DM_EvtSecurityFail_T. for the event detail.
BLE_DM_EVT_PAIRED_DEVICE_FULLThe maximum record number of paired device have been reached. DM cannot store the latest bonding data to flash. To solve this problem, delete paired device that is not needed anymore. See the BLE_DM_EvtPairedDeviceFull_T for the event content.
BLE_DM_EVT_PAIRED_DEVICE_UPDATEDA paired device have been updated. Application can use peerDevId get paired device information by BLE_DM_GetPairedDevice.
BLE_DM_EVT_CONN_UPDATE_SUCCESSConnection parameter update triggered by BLE_DM_ConnectionParameterUpdate is success. See BLE_DM_Event_T for the event details.
BLE_DM_EVT_CONN_UPDATE_FAILConnection parameter update triggered by BLE_DM_ConnectionParameterUpdate is fail. See BLE_DM_Event_T for the event details.