GATT_EvtReadUsingUuidResp_T

C

typedef struct GATT_EvtReadUsingUuidResp_T
{
    uint16_t            connHandle;
    uint8_t             attrPairLength;
    uint16_t            attrDataLength;
    uint8_t             attrData[BLE_ATT_MAX_MTU_LEN-ATT_READ_BY_TYPE_RESP_HEADER_SIZE];
} GATT_EvtReadUsingUuidResp_T;

Description

Structure for the GATTC_EVT_READ_USING_UUID_RESP event.

Field Documentation

FieldDescription
connHandleConnection handle associated with this connection.
attrPairLengthLength of each attribute handle-value pair in the list.
attrDataLengthLength of the attribute data list in bytes.
attrDataAttribute data list containing one or more handle-value pairs in the format:<2-byte Characteristic Value handle> .The number of handle-value pairs is determined by (attrDataLength / attrPairLength).Data is in little-endian format.