GATT_EvtReceiveHandleValue_T

C

typedef struct GATT_EvtReceiveHandleValue_T
{
    uint16_t            connHandle;
    uint16_t            charHandle;
    uint16_t            receivedLength;
    uint8_t             receivedValue[BLE_ATT_MAX_MTU_LEN-ATT_NOTI_INDI_HEADER_SIZE];
} GATT_EvtReceiveHandleValue_T;

Description

Structure for the GATTC_EVT_HV_NOTIFY or GATTC_EVT_HV_INDICATE event.

Field Documentation

FieldDescription
connHandleConnection handle associated with this connection.
charHandleHandle of the characteristic for which the notification or indication was received.
receivedLengthLength of the received notification or indication value.
receivedValueBuffer containing the value received in the notification or indication.