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 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 the attribute data list in bytes. |
attrData | Attribute 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. |