| // This file is generated by Simplicity Studio. Please do not edit manually. |
| // |
| // |
| |
| // Enclosing macro to prevent multiple inclusion |
| #ifndef SILABS_ATTRIBUTE_STORAGE_GEN |
| #define SILABS_ATTRIBUTE_STORAGE_GEN |
| |
| // Attribute masks modify how attributes are used by the framework |
| // Attribute that has this mask is NOT read-only |
| #define ATTRIBUTE_MASK_WRITABLE (0x01) |
| // Attribute that has this mask is saved to a token |
| #define ATTRIBUTE_MASK_TOKENIZE (0x02) |
| // Attribute that has this mask has a min/max values |
| #define ATTRIBUTE_MASK_MIN_MAX (0x04) |
| // Manufacturer specific attribute |
| #define ATTRIBUTE_MASK_MANUFACTURER_SPECIFIC (0x08) |
| // Attribute deferred to external storage |
| #define ATTRIBUTE_MASK_EXTERNAL_STORAGE (0x10) |
| // Attribute is singleton |
| #define ATTRIBUTE_MASK_SINGLETON (0x20) |
| // Attribute is a client attribute |
| #define ATTRIBUTE_MASK_CLIENT (0x40) |
| |
| // Cluster is a server |
| #define CLUSTER_MASK_SERVER (0x40) |
| // Cluster is a client |
| #define CLUSTER_MASK_CLIENT (0x80) |
| |
| // Command masks modify meanings of commands |
| // Is sending of this client command supported |
| #define COMMAND_MASK_OUTGOING_CLIENT (0x01) |
| // Is sending of this server command supported |
| #define COMMAND_MASK_OUTGOING_SERVER (0x02) |
| // Is receiving of this client command supported |
| #define COMMAND_MASK_INCOMING_CLIENT (0x04) |
| // Is receiving of this server command supported |
| #define COMMAND_MASK_INCOMING_SERVER (0x08) |
| // Is this command manufacturer specific? |
| #define COMMAND_MASK_MANUFACTURER_SPECIFIC (0x10) |
| #endif // SILABS_ATTRIBUTE_STORAGE_GEN |