GATT_EvtReadResp_T
C
typedef struct GATT_EvtReadResp_T
{
uint16_t connHandle;
uint8_t responseType;
uint16_t attrDataLength;
uint8_t readValue[BLE_ATT_MAX_MTU_LEN-ATT_READ_RESP_HEADER_SIZE];
uint16_t charHandle;
} GATT_EvtReadResp_T;Description
Data structure for GATTC_EVT_READ_RESP event.
Field Documentation
| Field | Description |
|---|---|
| connHandle | Connection handle associated with this connection. |
| responseType | Read response type. See ATT opcodes. Only ATT_READ_RSP/ATT_READ_BLOB_RSP are allowed. |
| attrDataLength | Length of the data read. |
| readValue | Data Read from the handle that was specified in Read Request. |
| charHandle | Characteristic handle for the response. |
