File tree 3 files changed +2
-14
lines changed
zap-templates/templates/app
zzz_generated/app-common/app-common/zap-generated
3 files changed +2
-14
lines changed Original file line number Diff line number Diff line change @@ -89,12 +89,6 @@ void emAfCallInits(void);
89
89
90
90
#define emberAfClusterIsClient (cluster ) ((bool) (((cluster)->mask & CLUSTER_MASK_CLIENT) != 0))
91
91
#define emberAfClusterIsServer (cluster ) ((bool) (((cluster)->mask & CLUSTER_MASK_SERVER) != 0))
92
- #define emberAfDoesClusterHaveInitFunction (cluster ) ((bool) (((cluster)->mask & CLUSTER_MASK_INIT_FUNCTION) != 0))
93
- #define emberAfDoesClusterHaveAttributeChangedFunction (cluster ) \
94
- ((bool) (((cluster)->mask & CLUSTER_MASK_ATTRIBUTE_CHANGED_FUNCTION) != 0))
95
- #define emberAfDoesClusterHaveDefaultResponseFunction (cluster ) \
96
- ((bool) (((cluster)->mask & CLUSTER_MASK_DEFAULT_RESPONSE_FUNCTION) != 0))
97
- #define emberAfDoesClusterHaveMessageSentFunction (cluster ) ((bool) (((cluster)->mask & CLUSTER_MASK_MESSAGE_SENT_FUNCTION) != 0))
98
92
99
93
// Initial configuration
100
94
void emberAfEndpointConfigure (void );
Original file line number Diff line number Diff line change 9
9
#define CLUSTER_MASK_INIT_FUNCTION (0x01)
10
10
// Does this cluster have attribute changed function?
11
11
#define CLUSTER_MASK_ATTRIBUTE_CHANGED_FUNCTION (0x02)
12
- // Does this cluster have default response function?
13
- #define CLUSTER_MASK_DEFAULT_RESPONSE_FUNCTION (0x04)
14
- // Does this cluster have message sent function?
15
- #define CLUSTER_MASK_MESSAGE_SENT_FUNCTION (0x08)
12
+ // Bits 0x04 and 0x08 are free.
16
13
// Does this cluster have shutdown function?
17
14
#define CLUSTER_MASK_SHUTDOWN_FUNCTION (0x10)
18
15
// Does this cluster have pre-attribute changed function?
You can’t perform that action at this time.
0 commit comments