1.2.2.1.2.3.14 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;

Field Documentation

FieldDescription
connHandleConnection handle associated with this connection.
attrPairLengthLength of each attribute handle-value pair in the list.
attrDataLengthLength of attributes data list.
attrDataAttribute data list. Data consists of one or more handle-value pairs. - Format of handle-value pair: <2-byte Characteristic Value handle> <Characteristic Value Read> - Number of handle-value pairs = (attrDataLength/attrPairLength) Note that the format of the data is little endian.