GATTC_ReadByTypeParams_T
C
typedef struct GATTC_ReadByTypeParams_T
{
    uint16_t    startHandle;
    uint16_t    endHandle;
    uint8_t     attrTypeLength;
    uint8_t     attrType[ATT_MAX_UUID_SIZE];
}   GATTC_ReadByTypeParams_T;Description
GATT Read By Type Request parameters.
Field Documentation
| Field | Description | 
|---|---|
| startHandle | Starting handle for querying. | 
| endHandle | Ending handle for querying. | 
| attrTypeLength | Length of the attribute type in bytes. Should be set to 2 for 16-bit UUID and 16 for 128 bit UUID. | 
| attrType | Attribute Type i.e., Characteristic UUID. The format of UUID is little endian. | 
