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

FieldDescription
uuidArray to store the UUID value. The maximum size is defined by Maximum UUID length definitions.
uuidLengthThe 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.