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;
Description
Data structure for GATTC_EVT_READ_USING_UUID_RESP event.
Field Documentation
Field | Description |
---|---|
connHandle | Connection handle associated with this connection. |
attrPairLength | Length of each attribute handle-value pair in the list. |
attrDataLength | Length of attributes data list. |
attrData | Attribute 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. |