typedef struct { uint16_t len; uint8_t value[LGATT_ATT_MAX_VALUE_LEN]; } LGATTAttributeValue;
typedef struct { uint16_t len; uint8_t value[LGATT_ATT_MAX_VALUE_LEN]; } LGATTAttributeValue;
This represents value of a GATT attribute.
LGATT.h
|
Members |
Description |
|
uint16_t len; |
This is the valid length of the value array. The maximum length of the value array is LGATT_ATT_MAX_VALUE_LEN in bytes. |
|
uint8_t value[LGATT_ATT_MAX_VALUE_LEN]; |
The array of the attribute value. |