GATTS_Attribute_T
C
typedef struct GATTS_Attribute_T
{
uint8_t *p_uuid;
uint8_t *p_value;
uint16_t *p_len;
uint16_t maxLen;
uint8_t settings;
uint8_t permissions;
} GATTS_Attribute_T;Description
GATT attribute.
Field Documentation
| Field | Description |
|---|---|
| p_uuid | Pointer to the attribute's UUID (attribute type). |
| p_value | Pointer to the attribute's value. |
| p_len | Pointer to the length of the attribute's value. |
| maxLen | Maximum length of attribute's value. |
| settings | Attribute settings. |
| permissions | Attribute permissions. |
