GATT_EvtRead_T
C
typedef struct GATT_EvtRead_T
{
    uint16_t    connHandle;
    uint16_t    attrHandle;
    uint8_t     readType;
    uint16_t    readOffset;
}   GATT_EvtRead_T;Description
Data structure for GATTS_EVT_READ event.
Field Documentation
| Field | Description | 
|---|---|
| connHandle | Connection handle associated with this connection. | 
| attrHandle | Handle of the attribute to be read. | 
| readType | Read Type. Only ATT_READ_BY_TYPE_REQ/ATT_READ_REQ/ATT_READ_BLOB_REQ are allowed. See ATT opcodes. | 
| readOffset | Offset of the first octet to be read. Used for Read Blob request only. | 
