BLE_L2CAP_EventId_T

C

typedef enum BLE_L2CAP_EventId_T
{
    BLE_L2CAP_EVT_CONN_PARA_UPD_REQ=0x00,
    BLE_L2CAP_EVT_CONN_PARA_UPD_RSP,
    BLE_L2CAP_EVT_CB_CONN_IND,
    BLE_L2CAP_EVT_CB_CONN_FAIL_IND,
    BLE_L2CAP_EVT_CB_SDU_IND,
    BLE_L2CAP_EVT_CB_ADD_CREDITS_IND,
    BLE_L2CAP_EVT_CB_DISC_IND,
}BLE_L2CAP_EventId_T;

Description

Enumeration of L2CAP events delivered to the application from the BLE Stack.

EnumeratorDescription
BLE_L2CAP_EVT_CONN_PARA_UPD_REQEvent indicating a request to update connection parameters has been received. Refer to BLE_L2CAP_EvtConnParamUpdateReq_T for details of the event payload.
BLE_L2CAP_EVT_CONN_PARA_UPD_RSPEvent indicating a response to the connection parameter update request has been received. Refer to BLE_L2CAP_EvtConnParamUpdateRsp_T for details of the event payload.
BLE_L2CAP_EVT_CB_CONN_INDEvent indicating that a credit-based L2CAP connection has been established. Refer to BLE_L2CAP_EvtCbConnInd_T for details of the event payload.
BLE_L2CAP_EVT_CB_CONN_FAIL_INDEvent indicating that an attempt to establish a credit-based L2CAP connection has failed. Refer to BLE_L2CAP_EvtCbConnFailInd_T for details of the event payload.
BLE_L2CAP_EVT_CB_SDU_INDEvent indicating that a Service Data Unit (SDU) for a credit-based L2CAP connection has been received. Refer to BLE_L2CAP_EvtCbSduInd_T for details of the event payload.
BLE_L2CAP_EVT_CB_ADD_CREDITS_INDEvent indicating that additional credits for a credit-based L2CAP connection have been received. Refer to BLE_L2CAP_EvtCbAddCreditsInd_T for details of the event payload.
BLE_L2CAP_EVT_CB_DISC_INDEvent indicating that a disconnect request for a credit-based L2CAP connection has been received. Refer to BLE_L2CAP_EvtCbDiscInd_T for details of the event payload.