Trident IoT Zigbee SDK
 
Loading...
Searching...
No Matches
tr_remote_cli_common.h
Go to the documentation of this file.
1
10#ifndef TR_REMOTE_CLI_COMMON_H
11#define TR_REMOTE_CLI_COMMON_H
12
13#define REMOTE_CLI_MFG_ID 0x1570
14
15// Note: the cli status attribute is the same as the cli status argument
16typedef union
17{
18 struct
19 {
20 zb_uint8_t local_enable : 1;
21 zb_uint8_t remote_enable : 1;
22 zb_uint8_t unused : 6;
23 } bits;
24
25 zb_uint8_t value;
27
28#endif // ifndef TR_REMOTE_CLI_COMMON_H
union tr_remote_cli_cli_status_arg_t tr_remote_cli_cli_status_attr_t
Definition tr_remote_cli_common.h:17
zb_uint8_t remote_enable
Definition tr_remote_cli_common.h:21
zb_uint8_t unused
Definition tr_remote_cli_common.h:22
zb_uint8_t local_enable
Definition tr_remote_cli_common.h:20
zb_uint8_t value
Definition tr_remote_cli_common.h:25