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

Field Documentation

FieldDescription
connHandleConnection handle associated with this connection.
responseTypeRead response type. See ATT opcodes. Only ATT_READ_RSP/ATT_READ_BLOB_RSP are allowed.
attrDataLengthLength of the data read.
readValueData Read from the handle that was specified in Read Request.
charHandleCharacteristic handle for the response.