ATT_Uuid_T
C
typedef struct ATT_Uuid_T { uint8_t uuid[ATT_MAX_UUID_SIZE]; uint8_t uuidLength; } ATT_Uuid_T;
Description
Structure representing a universally unique identifier (UUID) for ATT (Attribute Protocol) operations.
Field Documentation
Field | Description |
---|---|
uuid | Array to store the UUID value. The maximum size is defined by ATT_MAX_UUID_SIZE. |
uuidLength | The actual length of the UUID stored in the array. This can vary depending on whether a 16-bit, 32-bit, or 128-bit UUID is used. |