Trident IoT Zigbee SDK
Loading...
Searching...
No Matches
tr_zcl_cmd_structs.h
Go to the documentation of this file.
1
11#ifndef TR_ZCL_CMD_STRUCTS_H
12#define TR_ZCL_CMD_STRUCTS_H
13
14// Command structure for Identify identify
15typedef ZB_PACKED_PRE struct
16{
17 zb_uint16_t identify_time;
18} ZB_PACKED_STRUCT tr_identify_identify_cmd_t;
19
20// Command structure for Identifyez mode invoke
21typedef ZB_PACKED_PRE struct
22{
23 zb_uint8_t action;
25
26// Command structure for Identify update commission state
27typedef ZB_PACKED_PRE struct
28{
29 zb_uint8_t action;
32
33// Command structure for Identify trigger effect
34typedef ZB_PACKED_PRE struct
35{
36 zb_uint8_t effect_id;
37 zb_uint8_t effect_variant;
39
40// Command structure for Identify identify query response
41typedef ZB_PACKED_PRE struct
42{
43 zb_uint16_t timeout;
45
46// Command structure for Groups add group
47typedef ZB_PACKED_PRE struct
48{
49 zb_uint16_t group_id;
50 zb_uint8_t * group_name;
51} ZB_PACKED_STRUCT tr_groups_add_group_cmd_t;
52
53// Command structure for Groups view group
54typedef ZB_PACKED_PRE struct
55{
56 zb_uint16_t group_id;
57} ZB_PACKED_STRUCT tr_groups_view_group_cmd_t;
58
59// Command structure for Groups get group membership
60typedef ZB_PACKED_PRE struct
61{
62 zb_uint8_t group_count;
63 zb_uint8_t * group_list;
65
66// Command structure for Groups remove group
67typedef ZB_PACKED_PRE struct
68{
69 zb_uint16_t group_id;
71
72// Command structure for Groups add group if identifying
73typedef ZB_PACKED_PRE struct
74{
75 zb_uint16_t group_id;
76 zb_uint8_t * group_name;
78
79// Command structure for Groups add group response
80typedef ZB_PACKED_PRE struct
81{
82 zb_uint8_t status;
83 zb_uint16_t group_id;
85
86// Command structure for Groups view group response
87typedef ZB_PACKED_PRE struct
88{
89 zb_uint8_t status;
90 zb_uint16_t group_id;
91 zb_uint8_t * group_name;
93
94// Command structure for Groups get group membership response
95typedef ZB_PACKED_PRE struct
96{
97 zb_uint8_t capacity;
98 zb_uint8_t group_count;
99 zb_uint8_t * group_list;
101
102// Command structure for Groups remove group response
103typedef ZB_PACKED_PRE struct
104{
105 zb_uint8_t status;
106 zb_uint16_t group_id;
108
109// Command structure for Scenes add scene
110typedef ZB_PACKED_PRE struct
111{
112 zb_uint16_t group_id;
113 zb_uint8_t scene_id;
114 zb_uint16_t transition_time;
115 zb_uint8_t * scene_name;
117} ZB_PACKED_STRUCT tr_scenes_add_scene_cmd_t;
118
119// Command structure for Scenes view scene
120typedef ZB_PACKED_PRE struct
121{
122 zb_uint16_t group_id;
123 zb_uint8_t scene_id;
124} ZB_PACKED_STRUCT tr_scenes_view_scene_cmd_t;
125
126// Command structure for Scenes remove scene
127typedef ZB_PACKED_PRE struct
128{
129 zb_uint16_t group_id;
130 zb_uint8_t scene_id;
132
133// Command structure for Scenes remove all scenes
134typedef ZB_PACKED_PRE struct
135{
136 zb_uint16_t group_id;
138
139// Command structure for Scenes store scene
140typedef ZB_PACKED_PRE struct
141{
142 zb_uint16_t group_id;
143 zb_uint8_t scene_id;
145
146// Command structure for Scenes recall scene
147typedef ZB_PACKED_PRE struct
148{
149 zb_uint16_t group_id;
150 zb_uint8_t scene_id;
151 zb_uint16_t transition_time;
153
154// Command structure for Scenes get scene membership
155typedef ZB_PACKED_PRE struct
156{
157 zb_uint16_t group_id;
159
160// Command structure for Scenes enhanced add scene
161typedef ZB_PACKED_PRE struct
162{
163 zb_uint16_t group_id;
164 zb_uint8_t scene_id;
165 zb_uint16_t transition_time;
166 zb_uint8_t * scene_name;
167 zb_uint8_t * extension_field_sets;
169
170// Command structure for Scenes enhanced view scene
171typedef ZB_PACKED_PRE struct
172{
173 zb_uint16_t group_id;
174 zb_uint8_t scene_id;
176
177// Command structure for Scenes copy scene
178typedef ZB_PACKED_PRE struct
179{
180 zb_uint8_t mode;
181 zb_uint16_t group_id_from;
182 zb_uint8_t scene_id_from;
183 zb_uint16_t group_id_to;
184 zb_uint8_t scene_id_to;
185} ZB_PACKED_STRUCT tr_scenes_copy_scene_cmd_t;
186
187// Command structure for Scenes add scene response
188typedef ZB_PACKED_PRE struct
189{
190 zb_uint8_t status;
191 zb_uint16_t group_id;
192 zb_uint8_t scene_id;
194
195// Command structure for Scenes view scene response
196typedef ZB_PACKED_PRE struct
197{
198 zb_uint8_t status;
199 zb_uint16_t group_id;
200 zb_uint8_t scene_id;
201 zb_uint16_t transition_time;
202 zb_uint8_t * scene_name;
203 zb_uint8_t * extension_field_sets;
205
206// Command structure for Scenes remove scene response
207typedef ZB_PACKED_PRE struct
208{
209 zb_uint8_t status;
210 zb_uint16_t group_id;
211 zb_uint8_t scene_id;
213
214// Command structure for Scenes remove all scenes response
215typedef ZB_PACKED_PRE struct
216{
217 zb_uint8_t status;
218 zb_uint16_t group_id;
220
221// Command structure for Scenes store scene response
222typedef ZB_PACKED_PRE struct
223{
224 zb_uint8_t status;
225 zb_uint16_t group_id;
226 zb_uint8_t scene_id;
228
229// Command structure for Scenes get scene membership response
230typedef ZB_PACKED_PRE struct
231{
232 zb_uint8_t status;
233 zb_uint8_t capacity;
234 zb_uint16_t group_id;
235 zb_uint8_t scene_count;
236 zb_uint8_t * scene_list;
238
239// Command structure for Scenes enhanced add scene response
240typedef ZB_PACKED_PRE struct
241{
242 zb_uint8_t status;
243 zb_uint16_t group_id;
244 zb_uint8_t scene_id;
246
247// Command structure for Scenes enhanced view scene response
248typedef ZB_PACKED_PRE struct
249{
250 zb_uint8_t status;
251 zb_uint16_t group_id;
252 zb_uint8_t scene_id;
253 zb_uint16_t transition_time;
254 zb_uint8_t * scene_name;
255 zb_uint8_t * extension_field_sets;
257
258// Command structure for Scenes copy scene response
259typedef ZB_PACKED_PRE struct
260{
261 zb_uint8_t status;
262 zb_uint16_t group_id_from;
263 zb_uint8_t scene_id_from;
265
266// Command structure for On/off off with effect
267typedef ZB_PACKED_PRE struct
268{
269 zb_uint8_t effect_id;
270 zb_uint8_t effect_variant;
272
273// Command structure for On/off on with timed off
274typedef ZB_PACKED_PRE struct
275{
276 zb_uint8_t on_off_control;
277 zb_uint16_t on_time;
278 zb_uint16_t off_wait_time;
280
281// Command structure for Level Control move to level
282typedef ZB_PACKED_PRE struct
283{
284 zb_uint8_t level;
285 zb_uint16_t transition_time;
286 zb_uint8_t option_mask;
287 zb_uint8_t option_override;
289
290// Command structure for Level Control move
291typedef ZB_PACKED_PRE struct
292{
293 zb_uint8_t move_mode;
294 zb_uint8_t rate;
295 zb_uint8_t option_mask;
296 zb_uint8_t option_override;
298
299// Command structure for Level Control step
300typedef ZB_PACKED_PRE struct
301{
302 zb_uint8_t step_mode;
303 zb_uint8_t step_size;
304 zb_uint16_t transition_time;
305 zb_uint8_t option_mask;
306 zb_uint8_t option_override;
308
309// Command structure for Level Control stop
310typedef ZB_PACKED_PRE struct
311{
312 zb_uint8_t option_mask;
313 zb_uint8_t option_override;
315
316// Command structure for Level Control move to level with on off
317typedef ZB_PACKED_PRE struct
318{
319 zb_uint8_t level;
320 zb_uint16_t transition_time;
321 zb_uint8_t option_mask;
322 zb_uint8_t option_override;
324
325// Command structure for Level Control move with on off
326typedef ZB_PACKED_PRE struct
327{
328 zb_uint8_t move_mode;
329 zb_uint8_t rate;
330 zb_uint8_t option_mask;
331 zb_uint8_t option_override;
333
334// Command structure for Level Control step with on off
335typedef ZB_PACKED_PRE struct
336{
337 zb_uint8_t step_mode;
338 zb_uint8_t step_size;
339 zb_uint16_t transition_time;
340 zb_uint8_t option_mask;
341 zb_uint8_t option_override;
343
344// Command structure for Level Control stop with on off
345typedef ZB_PACKED_PRE struct
346{
347 zb_uint8_t option_mask;
348 zb_uint8_t option_override;
350
351// Command structure for Alarms reset alarm
352typedef ZB_PACKED_PRE struct
353{
354 zb_uint8_t alarm_code;
355 zb_uint16_t cluster_id;
357
358// Command structure for Alarms alarm
359typedef ZB_PACKED_PRE struct
360{
361 zb_uint8_t alarm_code;
362 zb_uint16_t cluster_id;
363} ZB_PACKED_STRUCT tr_alarms_alarm_cmd_t;
364
365// Command structure for Alarms get alarm response
366typedef ZB_PACKED_PRE struct
367{
368 zb_uint8_t status;
369 zb_uint8_t alarm_code;
370 zb_uint16_t cluster_id;
371 zb_uint32_t time_stamp;
373
374// Command structure for RSSI Location set absolute location
375typedef ZB_PACKED_PRE struct
376{
377 zb_int16_t coordinate1;
378 zb_int16_t coordinate2;
379 zb_int16_t coordinate3;
380 zb_int16_t power;
383
384// Command structure for RSSI Location set device configuration
385typedef ZB_PACKED_PRE struct
386{
387 zb_int16_t power;
388 zb_uint16_t path_loss_exponent;
391 zb_uint16_t reporting_period;
393
394// Command structure for RSSI Location get device configuration
395typedef ZB_PACKED_PRE struct
396{
397 zb_ieee_addr_t target_address;
399
400// Command structure for RSSI Location get location data
401typedef ZB_PACKED_PRE struct
402{
403 zb_uint8_t flags;
405 zb_ieee_addr_t target_address;
407
408// Command structure for RSSI Location rssi response
409typedef ZB_PACKED_PRE struct
410{
411 zb_ieee_addr_t replying_device;
412 zb_int16_t coordinate1;
413 zb_int16_t coordinate2;
414 zb_int16_t coordinate3;
415 zb_int8_t rssi;
416 zb_uint8_t number_rssi_measurements;
418
419// Command structure for RSSI Location send pings
420typedef ZB_PACKED_PRE struct
421{
422 zb_ieee_addr_t target_address;
423 zb_uint8_t number_rssi_measurements;
424 zb_uint16_t calculation_period;
426
427// Command structure for RSSI Location anchor node announce
428typedef ZB_PACKED_PRE struct
429{
431 zb_int16_t coordinate1;
432 zb_int16_t coordinate2;
433 zb_int16_t coordinate3;
435
436// Command structure for RSSI Location device configuration response
437typedef ZB_PACKED_PRE struct
438{
439 zb_uint8_t status;
440 zb_int16_t power;
441 zb_uint16_t path_loss_exponent;
442 zb_uint16_t calculation_period;
443 zb_uint8_t number_rssi_measurements;
444 zb_uint16_t reporting_period;
446
447// Command structure for RSSI Location location data response
448typedef ZB_PACKED_PRE struct
449{
450 zb_uint8_t status;
451 zb_uint8_t location_type;
452 zb_int16_t coordinate1;
453 zb_int16_t coordinate2;
454 zb_int16_t coordinate3;
455 zb_int16_t power;
456 zb_uint16_t path_loss_exponent;
457 zb_uint8_t location_method;
458 zb_uint8_t quality_measure;
459 zb_uint16_t location_age;
461
462// Command structure for RSSI Location location data notification
463typedef ZB_PACKED_PRE struct
464{
465 zb_uint8_t location_type;
466 zb_int16_t coordinate1;
467 zb_int16_t coordinate2;
468 zb_int16_t coordinate3;
469 zb_int16_t power;
470 zb_uint16_t path_loss_exponent;
471 zb_uint8_t location_method;
472 zb_uint8_t quality_measure;
473 zb_uint16_t location_age;
475
476// Command structure for RSSI Location compact location data notification
477typedef ZB_PACKED_PRE struct
478{
479 zb_uint8_t location_type;
480 zb_int16_t coordinate1;
481 zb_int16_t coordinate2;
482 zb_int16_t coordinate3;
483 zb_uint8_t quality_measure;
484 zb_uint16_t location_age;
486
487// Command structure for RSSI Location rssi ping
488typedef ZB_PACKED_PRE struct
489{
490 zb_uint8_t location_type;
492
493// Command structure for RSSI Location report rssi measurements
494typedef ZB_PACKED_PRE struct
495{
496 zb_ieee_addr_t measuring_device;
497 zb_uint8_t neighbors;
498 zb_uint8_t * neighbors_info;
500
501// Command structure for RSSI Location request own location
502typedef ZB_PACKED_PRE struct
503{
504 zb_ieee_addr_t blind_node;
506
507// Command structure for Commissioning restart device
508typedef ZB_PACKED_PRE struct
509{
510 zb_uint8_t options;
511 zb_uint8_t delay;
512 zb_uint8_t jitter;
514
515// Command structure for Commissioning save startup parameters
516typedef ZB_PACKED_PRE struct
517{
518 zb_uint8_t options;
519 zb_uint8_t index;
521
522// Command structure for Commissioning restore startup parameters
523typedef ZB_PACKED_PRE struct
524{
525 zb_uint8_t options;
526 zb_uint8_t index;
528
529// Command structure for Commissioning reset startup parameters
530typedef ZB_PACKED_PRE struct
531{
532 zb_uint8_t options;
533 zb_uint8_t index;
535
536// Command structure for Commissioning restart device response
537typedef ZB_PACKED_PRE struct
538{
539 zb_uint8_t status;
541
542// Command structure for Commissioning save startup parameters response
543typedef ZB_PACKED_PRE struct
544{
545 zb_uint8_t status;
547
548// Command structure for Commissioning restore startup parameters response
549typedef ZB_PACKED_PRE struct
550{
551 zb_uint8_t status;
553
554// Command structure for Commissioning reset startup parameters response
555typedef ZB_PACKED_PRE struct
556{
557 zb_uint8_t status;
559
560// Command structure for Partition transfer partitioned frame
561typedef ZB_PACKED_PRE struct
562{
566
567// Command structure for Partition read handshake param
568typedef ZB_PACKED_PRE struct
569{
571 zb_uint8_t * attribute_list;
573
574// Command structure for Partition write handshake param
575typedef ZB_PACKED_PRE struct
576{
577 zb_uint16_t partitioned_cluster_id;
580
581// Command structure for Partition multiple ack
582typedef ZB_PACKED_PRE struct
583{
584 zb_uint8_t ack_options;
587
588// Command structure for Partition read handshake param response
589typedef ZB_PACKED_PRE struct
590{
591 zb_uint16_t partitioned_cluster_id;
594
595// Command structure for Over the Air Bootloading query next image request
596typedef ZB_PACKED_PRE struct
597{
598 zb_uint8_t field_control;
599 zb_uint16_t manufacturer_id;
600 zb_uint16_t image_type;
602 zb_uint16_t hardware_version;
604
605// Command structure for Over the Air Bootloading image block request
606typedef ZB_PACKED_PRE struct
607{
608 zb_uint8_t field_control;
609 zb_uint16_t manufacturer_id;
610 zb_uint16_t image_type;
611 zb_uint32_t file_version;
612 zb_uint32_t file_offset;
613 zb_uint8_t max_data_size;
614 zb_ieee_addr_t request_node_address;
616
617// Command structure for Over the Air Bootloading image page request
618typedef ZB_PACKED_PRE struct
619{
620 zb_uint8_t field_control;
621 zb_uint16_t manufacturer_id;
622 zb_uint16_t image_type;
623 zb_uint32_t file_version;
624 zb_uint32_t file_offset;
625 zb_uint8_t max_data_size;
626 zb_uint16_t page_size;
627 zb_uint16_t response_spacing;
628 zb_ieee_addr_t request_node_address;
630
631// Command structure for Over the Air Bootloading upgrade end request
632typedef ZB_PACKED_PRE struct
633{
634 zb_uint8_t status;
635 zb_uint16_t manufacturer_id;
636 zb_uint16_t image_type;
637 zb_uint32_t file_version;
639
640// Command structure for Over the Air Bootloading query specific file request
641typedef ZB_PACKED_PRE struct
642{
643 zb_ieee_addr_t request_node_address;
644 zb_uint16_t manufacturer_id;
645 zb_uint16_t image_type;
646 zb_uint32_t file_version;
649
650// Command structure for Over the Air Bootloading image notify
651typedef ZB_PACKED_PRE struct
652{
653 zb_uint8_t payload_type;
654 zb_uint8_t query_jitter;
655 zb_uint16_t manufacturer_id;
656 zb_uint16_t image_type;
657 zb_uint32_t new_file_version;
659
660// Command structure for Over the Air Bootloading query next image response
661typedef ZB_PACKED_PRE struct
662{
663 zb_uint8_t status;
664 zb_uint16_t manufacturer_id;
665 zb_uint16_t image_type;
666 zb_uint32_t file_version;
667 zb_uint32_t image_size;
669
670// Command structure for Over the Air Bootloading image block response
671typedef ZB_PACKED_PRE struct
672{
673 zb_uint8_t status;
674 zb_uint16_t manufacturer_id;
675 zb_uint16_t image_type;
676 zb_uint32_t file_version;
677 zb_uint32_t file_offset;
678 zb_uint8_t data_size;
679 zb_uint8_t * image_data;
681
682// Command structure for Over the Air Bootloading upgrade end response
683typedef ZB_PACKED_PRE struct
684{
685 zb_uint16_t manufacturer_id;
686 zb_uint16_t image_type;
687 zb_uint32_t file_version;
688 zb_uint32_t current_time;
689 zb_uint32_t upgrade_time;
691
692// Command structure for Over the Air Bootloading query specific file response
693typedef ZB_PACKED_PRE struct
694{
695 zb_uint8_t status;
696 zb_uint16_t manufacturer_id;
697 zb_uint16_t image_type;
698 zb_uint32_t file_version;
699 zb_uint32_t image_size;
701
702// Command structure for Power Profile power profile request
703typedef ZB_PACKED_PRE struct
704{
707
708// Command structure for Power Profile get power profile price response
709typedef ZB_PACKED_PRE struct
710{
711 zb_uint8_t power_profile_id;
712 zb_uint16_t currency;
713 zb_uint32_t price;
716
717// Command structure for Power Profile get overall schedule price response
718typedef ZB_PACKED_PRE struct
719{
720 zb_uint16_t currency;
721 zb_uint32_t price;
722 zb_uint8_t price_trailing_digit;
724
725// Command structure for Power Profile energy phases schedule notification
726typedef ZB_PACKED_PRE struct
727{
728 zb_uint8_t power_profile_id;
730 zb_uint8_t * scheduled_phases;
732
733// Command structure for Power Profile energy phases schedule response
734typedef ZB_PACKED_PRE struct
735{
736 zb_uint8_t power_profile_id;
737 zb_uint8_t num_of_scheduled_phases;
738 zb_uint8_t * scheduled_phases;
740
741// Command structure for Power Profile power profile schedule constraints request
742typedef ZB_PACKED_PRE struct
743{
744 zb_uint8_t power_profile_id;
746
747// Command structure for Power Profile energy phases schedule state request
748typedef ZB_PACKED_PRE struct
749{
750 zb_uint8_t power_profile_id;
752
753// Command structure for Power Profile get power profile price extended response
754typedef ZB_PACKED_PRE struct
755{
756 zb_uint8_t power_profile_id;
757 zb_uint16_t currency;
758 zb_uint32_t price;
759 zb_uint8_t price_trailing_digit;
761
762// Command structure for Power Profile power profile notification
763typedef ZB_PACKED_PRE struct
764{
766 zb_uint8_t power_profile_id;
768 zb_uint8_t * transferred_phases;
770
771// Command structure for Power Profile power profile response
772typedef ZB_PACKED_PRE struct
773{
774 zb_uint8_t total_profile_num;
775 zb_uint8_t power_profile_id;
776 zb_uint8_t num_of_transferred_phases;
777 zb_uint8_t * transferred_phases;
779
780// Command structure for Power Profile power profile state response
781typedef ZB_PACKED_PRE struct
782{
786
787// Command structure for Power Profile get power profile price
788typedef ZB_PACKED_PRE struct
789{
790 zb_uint8_t power_profile_id;
792
793// Command structure for Power Profile power profiles state notification
794typedef ZB_PACKED_PRE struct
795{
796 zb_uint8_t power_profile_count;
797 zb_uint8_t * power_profile_records;
799
800// Command structure for Power Profile energy phases schedule request
801typedef ZB_PACKED_PRE struct
802{
803 zb_uint8_t power_profile_id;
805
806// Command structure for Power Profile energy phases schedule state response
807typedef ZB_PACKED_PRE struct
808{
809 zb_uint8_t power_profile_id;
810 zb_uint8_t num_of_scheduled_phases;
811 zb_uint8_t * scheduled_phases;
813
814// Command structure for Power Profile energy phases schedule state notification
815typedef ZB_PACKED_PRE struct
816{
817 zb_uint8_t power_profile_id;
818 zb_uint8_t num_of_scheduled_phases;
819 zb_uint8_t * scheduled_phases;
821
822// Command structure for Power Profile power profile schedule constraints notification
823typedef ZB_PACKED_PRE struct
824{
825 zb_uint8_t power_profile_id;
826 zb_uint16_t start_after;
827 zb_uint16_t stop_before;
829
830// Command structure for Power Profile power profile schedule constraints response
831typedef ZB_PACKED_PRE struct
832{
833 zb_uint8_t power_profile_id;
834 zb_uint16_t start_after;
835 zb_uint16_t stop_before;
837
838// Command structure for Power Profile get power profile price extended
839typedef ZB_PACKED_PRE struct
840{
841 zb_uint8_t options;
842 zb_uint8_t power_profile_id;
845
846// Command structure for Appliance Control execution ofa command
847typedef ZB_PACKED_PRE struct
848{
849 zb_uint8_t command_id;
851
852// Command structure for Appliance Control write functions
853typedef ZB_PACKED_PRE struct
854{
855 zb_uint16_t function_id;
857 zb_uint8_t * function_data;
859
860// Command structure for Appliance Control overload warning
861typedef ZB_PACKED_PRE struct
862{
863 zb_uint8_t warning_event;
865
866// Command structure for Appliance Control signal state response
867typedef ZB_PACKED_PRE struct
868{
871 zb_uint32_t appliance_status2;
873
874// Command structure for Appliance Control signal state notification
875typedef ZB_PACKED_PRE struct
876{
877 zb_uint8_t appliance_status;
879 zb_uint32_t appliance_status2;
881
882// Command structure for Poll Control check in response
883typedef ZB_PACKED_PRE struct
884{
886 zb_uint16_t fast_poll_timeout;
888
889// Command structure for Poll Control set long poll interval
890typedef ZB_PACKED_PRE struct
891{
894
895// Command structure for Poll Control set short poll interval
896typedef ZB_PACKED_PRE struct
897{
900
901// Command structure for Green Power gp notification
902typedef ZB_PACKED_PRE struct
903{
904 zb_uint16_t options;
905 zb_uint32_t gpd_src_id;
906 zb_ieee_addr_t gpd_ieee;
907 zb_uint8_t gpd_endpoint;
909 zb_uint8_t gpd_command_id;
911 zb_uint16_t gpp_short_address;
912 zb_uint8_t gpp_distance;
914
915// Command structure for Green Power gp pairing search
916typedef ZB_PACKED_PRE struct
917{
918 zb_uint16_t options;
919 zb_uint32_t gpd_src_id;
920 zb_ieee_addr_t gpd_ieee;
921 zb_uint8_t endpoint;
923
924// Command structure for Green Power gp tunneling stop
925typedef ZB_PACKED_PRE struct
926{
927 zb_uint8_t options;
928 zb_uint32_t gpd_src_id;
929 zb_ieee_addr_t gpd_ieee;
930 zb_uint8_t endpoint;
931 zb_uint32_t gpd_security_frame_counter;
932 zb_uint16_t gpp_short_address;
933 zb_int8_t gpp_distance;
935
936// Command structure for Green Power gp commissioning notification
937typedef ZB_PACKED_PRE struct
938{
939 zb_uint16_t options;
940 zb_uint32_t gpd_src_id;
941 zb_ieee_addr_t gpd_ieee;
942 zb_uint8_t endpoint;
943 zb_uint32_t gpd_security_frame_counter;
944 zb_uint8_t gpd_command_id;
945 zb_uint8_t * gpd_command_payload;
946 zb_uint16_t gpp_short_address;
947 zb_uint8_t gpp_link;
948 zb_uint32_t mic;
950
951// Command structure for Green Power gp sink commissioning mode
952typedef ZB_PACKED_PRE struct
953{
954 zb_uint8_t options;
957 zb_uint8_t sink_endpoint;
959
960// Command structure for Green Power gp translation table update
961typedef ZB_PACKED_PRE struct
962{
963 zb_uint16_t options;
964 zb_uint32_t gpd_src_id;
965 zb_ieee_addr_t gpd_ieee;
966 zb_uint8_t endpoint;
967 zb_uint8_t * translations;
969
970// Command structure for Green Power gp translation table request
971typedef ZB_PACKED_PRE struct
972{
973 zb_uint8_t start_index;
975
976// Command structure for Green Power gp pairing configuration
977typedef ZB_PACKED_PRE struct
978{
979 zb_uint8_t actions;
980 zb_uint16_t options;
981 zb_uint32_t gpd_src_id;
982 zb_ieee_addr_t gpd_ieee;
983 zb_uint8_t endpoint;
984 zb_uint8_t device_id;
986 zb_uint8_t * group_list;
990 zb_uint32_t gpd_security_frame_counter;
991 zb_uint8_t gpd_security_key[16];
993 zb_uint8_t * paired_endpoints;
995 zb_uint16_t manufacturer_id;
996 zb_uint16_t mode_id;
1007 zb_uint8_t * report_descriptor;
1009
1010// Command structure for Green Power gp sink table request
1011typedef ZB_PACKED_PRE struct
1012{
1013 zb_uint8_t options;
1014 zb_uint32_t gpd_src_id;
1015 zb_uint8_t * gpd_ieee;
1016 zb_uint8_t endpoint;
1017 zb_uint8_t index;
1019
1020// Command structure for Green Power gp proxy table response
1021typedef ZB_PACKED_PRE struct
1022{
1023 zb_uint8_t status;
1025 zb_uint8_t start_index;
1026 zb_uint8_t entries_count;
1029
1030// Command structure for Green Power gp notification response
1031typedef ZB_PACKED_PRE struct
1032{
1033 zb_uint8_t options;
1034 zb_uint32_t gpd_src_id;
1035 zb_ieee_addr_t gpd_ieee;
1036 zb_uint8_t endpoint;
1037 zb_uint32_t gpd_security_frame_counter;
1039
1040// Command structure for Green Power gp pairing
1041typedef ZB_PACKED_PRE struct
1042{
1043 zb_uint32_t options;
1044 zb_uint32_t gpd_src_id;
1045 zb_ieee_addr_t gpd_ieee;
1046 zb_uint8_t endpoint;
1047 zb_ieee_addr_t sink_ieee_address;
1048 zb_uint16_t sink_nwk_address;
1049 zb_uint16_t sink_group_id;
1050 zb_uint8_t device_id;
1051 zb_uint32_t gpd_security_frame_counter;
1052 zb_uint8_t gpd_key[16];
1053 zb_uint16_t assigned_alias;
1054 zb_uint8_t groupcast_radius;
1056
1057// Command structure for Green Power gp proxy commissioning mode
1058typedef ZB_PACKED_PRE struct
1059{
1060 zb_uint8_t options;
1062 zb_uint8_t channel;
1064
1065// Command structure for Green Power gp response
1066typedef ZB_PACKED_PRE struct
1067{
1068 zb_uint8_t options;
1071 zb_uint32_t gpd_src_id;
1072 zb_ieee_addr_t gpd_ieee;
1073 zb_uint8_t endpoint;
1074 zb_uint8_t gpd_command_id;
1075 zb_uint8_t * gpd_command_payload;
1077
1078// Command structure for Green Power gp translation table response
1079typedef ZB_PACKED_PRE struct
1080{
1081 zb_uint8_t status;
1082 zb_uint8_t options;
1084 zb_uint8_t start_index;
1085 zb_uint8_t entries_count;
1088
1089// Command structure for Green Power gp sink table response
1090typedef ZB_PACKED_PRE struct
1091{
1092 zb_uint8_t status;
1094 zb_uint8_t start_index;
1098
1099// Command structure for Green Power gp proxy table request
1100typedef ZB_PACKED_PRE struct
1101{
1102 zb_uint8_t options;
1103 zb_uint32_t gpd_src_id;
1104 zb_uint8_t * gpd_ieee;
1105 zb_uint8_t endpoint;
1106 zb_uint8_t index;
1108
1109// Command structure for Door Lock lock door
1110typedef ZB_PACKED_PRE struct
1111{
1112 zb_uint8_t * pin;
1114
1115// Command structure for Door Lock unlock door
1116typedef ZB_PACKED_PRE struct
1117{
1118 zb_uint8_t * pin;
1120
1121// Command structure for Door Lock toggle
1122typedef ZB_PACKED_PRE struct
1123{
1124 zb_uint8_t * pin;
1125} ZB_PACKED_STRUCT tr_door_lock_toggle_cmd_t;
1126
1127// Command structure for Door Lock unlock with timeout
1128typedef ZB_PACKED_PRE struct
1129{
1131 zb_uint8_t * pin;
1133
1134// Command structure for Door Lock get log record
1135typedef ZB_PACKED_PRE struct
1136{
1137 zb_uint16_t log_index;
1139
1140// Command structure for Door Lock set pin
1141typedef ZB_PACKED_PRE struct
1142{
1143 zb_uint16_t user_id;
1144 zb_uint8_t user_status;
1145 zb_uint8_t user_type;
1146 zb_uint8_t * pin;
1148
1149// Command structure for Door Lock get pin
1150typedef ZB_PACKED_PRE struct
1151{
1152 zb_uint16_t user_id;
1154
1155// Command structure for Door Lock clear pin
1156typedef ZB_PACKED_PRE struct
1157{
1158 zb_uint16_t user_id;
1160
1161// Command structure for Door Lock set user status
1162typedef ZB_PACKED_PRE struct
1163{
1164 zb_uint16_t user_id;
1165 zb_uint8_t user_status;
1167
1168// Command structure for Door Lock get user status
1169typedef ZB_PACKED_PRE struct
1170{
1171 zb_uint16_t user_id;
1173
1174// Command structure for Door Lock set weekday schedule
1175typedef ZB_PACKED_PRE struct
1176{
1177 zb_uint8_t schedule_id;
1178 zb_uint16_t user_id;
1179 zb_uint8_t days_mask;
1180 zb_uint8_t start_hour;
1181 zb_uint8_t start_minute;
1182 zb_uint8_t end_hour;
1183 zb_uint8_t end_minute;
1185
1186// Command structure for Door Lock get weekday schedule
1187typedef ZB_PACKED_PRE struct
1188{
1189 zb_uint8_t schedule_id;
1190 zb_uint16_t user_id;
1192
1193// Command structure for Door Lock clear weekday schedule
1194typedef ZB_PACKED_PRE struct
1195{
1196 zb_uint8_t schedule_id;
1197 zb_uint16_t user_id;
1199
1200// Command structure for Door Lock set yearday schedule
1201typedef ZB_PACKED_PRE struct
1202{
1203 zb_uint8_t schedule_id;
1204 zb_uint16_t user_id;
1205 zb_uint32_t local_start_time;
1206 zb_uint32_t local_end_time;
1208
1209// Command structure for Door Lock get yearday schedule
1210typedef ZB_PACKED_PRE struct
1211{
1212 zb_uint8_t schedule_id;
1213 zb_uint16_t user_id;
1215
1216// Command structure for Door Lock clear yearday schedule
1217typedef ZB_PACKED_PRE struct
1218{
1219 zb_uint8_t schedule_id;
1220 zb_uint16_t user_id;
1222
1223// Command structure for Door Lock set holiday schedule
1224typedef ZB_PACKED_PRE struct
1225{
1226 zb_uint8_t schedule_id;
1227 zb_uint32_t local_start_time;
1228 zb_uint32_t local_end_time;
1231
1232// Command structure for Door Lock get holiday schedule
1233typedef ZB_PACKED_PRE struct
1234{
1235 zb_uint8_t schedule_id;
1237
1238// Command structure for Door Lock clear holiday schedule
1239typedef ZB_PACKED_PRE struct
1240{
1241 zb_uint8_t schedule_id;
1243
1244// Command structure for Door Lock set user type
1245typedef ZB_PACKED_PRE struct
1246{
1247 zb_uint16_t user_id;
1248 zb_uint8_t user_type;
1250
1251// Command structure for Door Lock get user type
1252typedef ZB_PACKED_PRE struct
1253{
1254 zb_uint16_t user_id;
1256
1257// Command structure for Door Lock set rfid
1258typedef ZB_PACKED_PRE struct
1259{
1260 zb_uint16_t user_id;
1261 zb_uint8_t user_status;
1262 zb_uint8_t user_type;
1263 zb_uint8_t * id;
1265
1266// Command structure for Door Lock get rfid
1267typedef ZB_PACKED_PRE struct
1268{
1269 zb_uint16_t user_id;
1271
1272// Command structure for Door Lock clear rfid
1273typedef ZB_PACKED_PRE struct
1274{
1275 zb_uint16_t user_id;
1277
1278// Command structure for Door Lock lock door response
1279typedef ZB_PACKED_PRE struct
1280{
1281 zb_uint8_t status;
1283
1284// Command structure for Door Lock unlock door response
1285typedef ZB_PACKED_PRE struct
1286{
1287 zb_uint8_t status;
1289
1290// Command structure for Door Lock toggle response
1291typedef ZB_PACKED_PRE struct
1292{
1293 zb_uint8_t status;
1295
1296// Command structure for Door Lock unlock with timeout response
1297typedef ZB_PACKED_PRE struct
1298{
1299 zb_uint8_t status;
1301
1302// Command structure for Door Lock get log record response
1303typedef ZB_PACKED_PRE struct
1304{
1305 zb_uint16_t log_entry_id;
1306 zb_uint32_t timestamp;
1307 zb_uint8_t event_type;
1308 zb_uint8_t source;
1310 zb_uint16_t user_id;
1311 zb_uint8_t * pin;
1313
1314// Command structure for Door Lock set pin response
1315typedef ZB_PACKED_PRE struct
1316{
1317 zb_uint8_t status;
1319
1320// Command structure for Door Lock get pin response
1321typedef ZB_PACKED_PRE struct
1322{
1323 zb_uint16_t user_id;
1324 zb_uint8_t user_status;
1325 zb_uint8_t user_type;
1326 zb_uint8_t * pin;
1328
1329// Command structure for Door Lock clear pin response
1330typedef ZB_PACKED_PRE struct
1331{
1332 zb_uint8_t status;
1334
1335// Command structure for Door Lock clear all pins response
1336typedef ZB_PACKED_PRE struct
1337{
1338 zb_uint8_t status;
1340
1341// Command structure for Door Lock set user status response
1342typedef ZB_PACKED_PRE struct
1343{
1344 zb_uint8_t status;
1346
1347// Command structure for Door Lock get user status response
1348typedef ZB_PACKED_PRE struct
1349{
1350 zb_uint16_t user_id;
1351 zb_uint8_t status;
1353
1354// Command structure for Door Lock set weekday schedule response
1355typedef ZB_PACKED_PRE struct
1356{
1357 zb_uint8_t status;
1359
1360// Command structure for Door Lock get weekday schedule response
1361typedef ZB_PACKED_PRE struct
1362{
1363 zb_uint8_t schedule_id;
1364 zb_uint16_t user_id;
1365 zb_uint8_t status;
1366 zb_uint8_t days_mask;
1367 zb_uint8_t start_hour;
1368 zb_uint8_t start_minute;
1369 zb_uint8_t end_hour;
1370 zb_uint8_t end_minute;
1372
1373// Command structure for Door Lock clear weekday schedule response
1374typedef ZB_PACKED_PRE struct
1375{
1376 zb_uint8_t status;
1378
1379// Command structure for Door Lock set yearday schedule response
1380typedef ZB_PACKED_PRE struct
1381{
1382 zb_uint8_t status;
1384
1385// Command structure for Door Lock get yearday schedule response
1386typedef ZB_PACKED_PRE struct
1387{
1388 zb_uint8_t schedule_id;
1389 zb_uint16_t user_id;
1390 zb_uint8_t status;
1391 zb_uint32_t local_start_time;
1392 zb_uint32_t local_end_time;
1394
1395// Command structure for Door Lock clear yearday schedule response
1396typedef ZB_PACKED_PRE struct
1397{
1398 zb_uint8_t status;
1400
1401// Command structure for Door Lock set holiday schedule response
1402typedef ZB_PACKED_PRE struct
1403{
1404 zb_uint8_t status;
1406
1407// Command structure for Door Lock get holiday schedule response
1408typedef ZB_PACKED_PRE struct
1409{
1410 zb_uint8_t schedule_id;
1411 zb_uint8_t status;
1412 zb_uint32_t local_start_time;
1413 zb_uint32_t local_end_time;
1416
1417// Command structure for Door Lock clear holiday schedule response
1418typedef ZB_PACKED_PRE struct
1419{
1420 zb_uint8_t status;
1422
1423// Command structure for Door Lock set user type response
1424typedef ZB_PACKED_PRE struct
1425{
1426 zb_uint8_t status;
1428
1429// Command structure for Door Lock get user type response
1430typedef ZB_PACKED_PRE struct
1431{
1432 zb_uint16_t user_id;
1433 zb_uint8_t user_type;
1435
1436// Command structure for Door Lock set rfid response
1437typedef ZB_PACKED_PRE struct
1438{
1439 zb_uint8_t status;
1441
1442// Command structure for Door Lock get rfid response
1443typedef ZB_PACKED_PRE struct
1444{
1445 zb_uint16_t user_id;
1446 zb_uint8_t user_status;
1447 zb_uint8_t user_type;
1448 zb_uint8_t * rfid;
1450
1451// Command structure for Door Lock clear rfid response
1452typedef ZB_PACKED_PRE struct
1453{
1454 zb_uint8_t status;
1456
1457// Command structure for Door Lock clear all rfids response
1458typedef ZB_PACKED_PRE struct
1459{
1460 zb_uint8_t status;
1462
1463// Command structure for Door Lock operation event notification
1464typedef ZB_PACKED_PRE struct
1465{
1466 zb_uint8_t source;
1467 zb_uint8_t event_code;
1468 zb_uint16_t user_id;
1469 zb_uint8_t * pin;
1470 zb_uint32_t time_stamp;
1471 zb_uint8_t * data;
1473
1474// Command structure for Door Lock programming event notification
1475typedef ZB_PACKED_PRE struct
1476{
1477 zb_uint8_t source;
1478 zb_uint8_t event_code;
1479 zb_uint16_t user_id;
1480 zb_uint8_t * pin;
1481 zb_uint8_t user_type;
1482 zb_uint8_t user_status;
1483 zb_uint32_t time_stamp;
1484 zb_uint8_t * data;
1486
1487// Command structure for Window Covering window covering go to lift value
1488typedef ZB_PACKED_PRE struct
1489{
1490 zb_uint16_t lift_value;
1492
1493// Command structure for Window Covering window covering go to lift percentage
1494typedef ZB_PACKED_PRE struct
1495{
1498
1499// Command structure for Window Covering window covering go to tilt value
1500typedef ZB_PACKED_PRE struct
1501{
1502 zb_uint16_t tilt_value;
1504
1505// Command structure for Window Covering window covering go to tilt percentage
1506typedef ZB_PACKED_PRE struct
1507{
1510
1511// Command structure for Barrier Control barrier control go to percent
1512typedef ZB_PACKED_PRE struct
1513{
1514 zb_uint8_t percent_open;
1516
1517// Command structure for Thermostat setpoint raise lower
1518typedef ZB_PACKED_PRE struct
1519{
1520 zb_uint8_t mode;
1521 zb_int8_t amount;
1523
1524// Command structure for Thermostat set weekly schedule
1525typedef ZB_PACKED_PRE struct
1526{
1530 zb_uint8_t * payload;
1532
1533// Command structure for Thermostat get weekly schedule
1534typedef ZB_PACKED_PRE struct
1535{
1536 zb_uint8_t days_to_return;
1537 zb_uint8_t mode_to_return;
1539
1540// Command structure for Thermostat current weekly schedule
1541typedef ZB_PACKED_PRE struct
1542{
1544 zb_uint8_t day_of_week_for_sequence;
1545 zb_uint8_t mode_for_sequence;
1546 zb_uint8_t * payload;
1548
1549// Command structure for Thermostat relay status log
1550typedef ZB_PACKED_PRE struct
1551{
1552 zb_uint16_t time_of_day;
1553 zb_uint16_t relay_status;
1556 zb_int16_t setpoint;
1557 zb_uint16_t unread_entries;
1559
1560// Command structure for Color Control move to hue
1561typedef ZB_PACKED_PRE struct
1562{
1563 zb_uint8_t hue;
1564 zb_uint8_t direction;
1565 zb_uint16_t transition_time;
1566 zb_uint8_t options_mask;
1569
1570// Command structure for Color Control move hue
1571typedef ZB_PACKED_PRE struct
1572{
1573 zb_uint8_t move_mode;
1574 zb_uint8_t rate;
1575 zb_uint8_t options_mask;
1576 zb_uint8_t options_override;
1578
1579// Command structure for Color Control step hue
1580typedef ZB_PACKED_PRE struct
1581{
1582 zb_uint8_t step_mode;
1583 zb_uint8_t step_size;
1584 zb_uint8_t transition_time;
1585 zb_uint8_t options_mask;
1586 zb_uint8_t options_override;
1588
1589// Command structure for Color Control move to saturation
1590typedef ZB_PACKED_PRE struct
1591{
1592 zb_uint8_t saturation;
1593 zb_uint16_t transition_time;
1594 zb_uint8_t options_mask;
1595 zb_uint8_t options_override;
1597
1598// Command structure for Color Control move saturation
1599typedef ZB_PACKED_PRE struct
1600{
1601 zb_uint8_t move_mode;
1602 zb_uint8_t rate;
1603 zb_uint8_t options_mask;
1604 zb_uint8_t options_override;
1606
1607// Command structure for Color Control step saturation
1608typedef ZB_PACKED_PRE struct
1609{
1610 zb_uint8_t step_mode;
1611 zb_uint8_t step_size;
1612 zb_uint8_t transition_time;
1613 zb_uint8_t options_mask;
1614 zb_uint8_t options_override;
1616
1617// Command structure for Color Control move to hue and saturation
1618typedef ZB_PACKED_PRE struct
1619{
1620 zb_uint8_t hue;
1621 zb_uint8_t saturation;
1622 zb_uint16_t transition_time;
1623 zb_uint8_t options_mask;
1624 zb_uint8_t options_override;
1626
1627// Command structure for Color Control move to color
1628typedef ZB_PACKED_PRE struct
1629{
1630 zb_uint16_t color_x;
1631 zb_uint16_t color_y;
1632 zb_uint16_t transition_time;
1633 zb_uint8_t options_mask;
1634 zb_uint8_t options_override;
1636
1637// Command structure for Color Control move color
1638typedef ZB_PACKED_PRE struct
1639{
1640 zb_int16_t rate_x;
1641 zb_int16_t rate_y;
1642 zb_uint8_t options_mask;
1643 zb_uint8_t options_override;
1645
1646// Command structure for Color Control step color
1647typedef ZB_PACKED_PRE struct
1648{
1649 zb_int16_t step_x;
1650 zb_int16_t step_y;
1651 zb_uint16_t transition_time;
1652 zb_uint8_t options_mask;
1653 zb_uint8_t options_override;
1655
1656// Command structure for Color Control move to color temperature
1657typedef ZB_PACKED_PRE struct
1658{
1660 zb_uint16_t transition_time;
1661 zb_uint8_t options_mask;
1662 zb_uint8_t options_override;
1664
1665// Command structure for Color Control enhanced move to hue
1666typedef ZB_PACKED_PRE struct
1667{
1668 zb_uint16_t enhanced_hue;
1669 zb_uint8_t direction;
1670 zb_uint16_t transition_time;
1672
1673// Command structure for Color Control enhanced move hue
1674typedef ZB_PACKED_PRE struct
1675{
1676 zb_uint8_t move_mode;
1677 zb_uint16_t rate;
1679
1680// Command structure for Color Control enhanced step hue
1681typedef ZB_PACKED_PRE struct
1682{
1683 zb_uint8_t step_mode;
1684 zb_uint16_t step_size;
1685 zb_uint16_t transition_time;
1687
1688// Command structure for Color Control enhanced move to hue and saturation
1689typedef ZB_PACKED_PRE struct
1690{
1691 zb_uint16_t enhanced_hue;
1692 zb_uint8_t saturation;
1693 zb_uint16_t transition_time;
1695
1696// Command structure for Color Control color loop set
1697typedef ZB_PACKED_PRE struct
1698{
1699 zb_uint8_t update_flags;
1700 zb_uint8_t action;
1701 zb_uint8_t direction;
1702 zb_uint16_t time;
1703 zb_uint16_t start_hue;
1705
1706// Command structure for Color Control stop move step
1707typedef ZB_PACKED_PRE struct
1708{
1709 zb_uint8_t options_mask;
1710 zb_uint8_t options_override;
1712
1713// Command structure for Color Control move color temperature
1714typedef ZB_PACKED_PRE struct
1715{
1716 zb_uint8_t move_mode;
1717 zb_uint16_t rate;
1720 zb_uint8_t options_mask;
1721 zb_uint8_t options_override;
1723
1724// Command structure for Color Control step color temperature
1725typedef ZB_PACKED_PRE struct
1726{
1727 zb_uint8_t step_mode;
1728 zb_uint16_t step_size;
1729 zb_uint16_t transition_time;
1730 zb_uint16_t color_temperature_minimum;
1731 zb_uint16_t color_temperature_maximum;
1732 zb_uint8_t options_mask;
1733 zb_uint8_t options_override;
1735
1736// Command structure for IAS Zone zone enroll response
1737typedef ZB_PACKED_PRE struct
1738{
1740 zb_uint8_t zone_id;
1742
1743// Command structure for IAS Zone initiate test mode
1744typedef ZB_PACKED_PRE struct
1745{
1749
1750// Command structure for IAS Zone zone status change notification
1751typedef ZB_PACKED_PRE struct
1752{
1753 zb_uint16_t zone_status;
1755 zb_uint8_t zone_id;
1756 zb_uint16_t delay;
1758
1759// Command structure for IAS Zone zone enroll request
1760typedef ZB_PACKED_PRE struct
1761{
1762 zb_uint16_t zone_type;
1765
1766// Command structure for IAS ACE arm
1767typedef ZB_PACKED_PRE struct
1768{
1769 zb_uint8_t arm_mode;
1770 zb_uint8_t * arm_disarm_code;
1771 zb_uint8_t zone_id;
1772} ZB_PACKED_STRUCT tr_ias_ace_arm_cmd_t;
1773
1774// Command structure for IAS ACE bypass
1775typedef ZB_PACKED_PRE struct
1776{
1778 zb_uint8_t * zone_ids;
1779 zb_uint8_t * arm_disarm_code;
1780} ZB_PACKED_STRUCT tr_ias_ace_bypass_cmd_t;
1781
1782// Command structure for IAS ACE get zone information
1783typedef ZB_PACKED_PRE struct
1784{
1785 zb_uint8_t zone_id;
1787
1788// Command structure for IAS ACE get zone status
1789typedef ZB_PACKED_PRE struct
1790{
1794 zb_uint16_t zone_status_mask;
1796
1797// Command structure for IAS ACE arm response
1798typedef ZB_PACKED_PRE struct
1799{
1802
1803// Command structure for IAS ACE get zone id map response
1804typedef ZB_PACKED_PRE struct
1805{
1806 zb_uint16_t section0;
1807 zb_uint16_t section1;
1808 zb_uint16_t section2;
1809 zb_uint16_t section3;
1810 zb_uint16_t section4;
1811 zb_uint16_t section5;
1812 zb_uint16_t section6;
1813 zb_uint16_t section7;
1814 zb_uint16_t section8;
1815 zb_uint16_t section9;
1816 zb_uint16_t section10;
1817 zb_uint16_t section11;
1818 zb_uint16_t section12;
1819 zb_uint16_t section13;
1820 zb_uint16_t section14;
1821 zb_uint16_t section15;
1823
1824// Command structure for IAS ACE get zone information response
1825typedef ZB_PACKED_PRE struct
1826{
1827 zb_uint8_t zone_id;
1828 zb_uint16_t zone_type;
1829 zb_ieee_addr_t ieee_address;
1830 zb_uint8_t * zone_label;
1832
1833// Command structure for IAS ACE zone status changed
1834typedef ZB_PACKED_PRE struct
1835{
1836 zb_uint8_t zone_id;
1837 zb_uint16_t zone_status;
1839 zb_uint8_t * zone_label;
1841
1842// Command structure for IAS ACE panel status changed
1843typedef ZB_PACKED_PRE struct
1844{
1845 zb_uint8_t panel_status;
1847 zb_uint8_t audible_notification;
1848 zb_uint8_t alarm_status;
1850
1851// Command structure for IAS ACE get panel status response
1852typedef ZB_PACKED_PRE struct
1853{
1854 zb_uint8_t panel_status;
1855 zb_uint8_t seconds_remaining;
1856 zb_uint8_t audible_notification;
1857 zb_uint8_t alarm_status;
1859
1860// Command structure for IAS ACE set bypassed zone list
1861typedef ZB_PACKED_PRE struct
1862{
1863 zb_uint8_t number_of_zones;
1864 zb_uint8_t * zone_ids;
1866
1867// Command structure for IAS ACE bypass response
1868typedef ZB_PACKED_PRE struct
1869{
1870 zb_uint8_t number_of_zones;
1871 zb_uint8_t * bypass_result;
1873
1874// Command structure for IAS ACE get zone status response
1875typedef ZB_PACKED_PRE struct
1876{
1878 zb_uint8_t number_of_zones;
1881
1882// Command structure for IAS WD start warning
1883typedef ZB_PACKED_PRE struct
1884{
1885 zb_uint8_t warning_info;
1886 zb_uint16_t warning_duration;
1888 zb_uint8_t strobe_level;
1890
1891// Command structure for IAS WD squawk
1892typedef ZB_PACKED_PRE struct
1893{
1894 zb_uint8_t squawk_info;
1895} ZB_PACKED_STRUCT tr_ias_wd_squawk_cmd_t;
1896
1897// Command structure for Generic Tunnel match protocol address
1898typedef ZB_PACKED_PRE struct
1899{
1900 zb_uint8_t * protocol_address;
1902
1903// Command structure for Generic Tunnel match protocol address response
1904typedef ZB_PACKED_PRE struct
1905{
1906 zb_ieee_addr_t device_ieee_address;
1907 zb_uint8_t * protocol_address;
1909
1910// Command structure for Generic Tunnel advertise protocol address
1911typedef ZB_PACKED_PRE struct
1912{
1913 zb_uint8_t * protocol_address;
1915
1916// Command structure for BACnet Protocol Tunnel transfer npdu
1917typedef ZB_PACKED_PRE struct
1918{
1919 zb_uint8_t * npdu;
1921
1922// Command structure for 11073 Protocol Tunnel transferapdu
1923typedef ZB_PACKED_PRE struct
1924{
1925 zb_uint8_t * apdu;
1927
1928// Command structure for 11073 Protocol Tunnel connect request
1929typedef ZB_PACKED_PRE struct
1930{
1932 zb_uint16_t idle_timeout;
1933 zb_ieee_addr_t manager_target;
1936
1937// Command structure for 11073 Protocol Tunnel disconnect request
1938typedef ZB_PACKED_PRE struct
1939{
1940 zb_ieee_addr_t manager_ieee_address;
1942
1943// Command structure for 11073 Protocol Tunnel connect status notification
1944typedef ZB_PACKED_PRE struct
1945{
1946 zb_uint8_t connect_status;
1948
1949// Command structure for ISO 7816 Protocol Tunnel transfer apdu
1950typedef ZB_PACKED_PRE struct
1951{
1952 zb_uint8_t * apdu;
1954
1955// Command structure for Price get current price
1956typedef ZB_PACKED_PRE struct
1957{
1960
1961// Command structure for Price get scheduled prices
1962typedef ZB_PACKED_PRE struct
1963{
1964 zb_uint32_t start_time;
1967
1968// Command structure for Price price acknowledgement
1969typedef ZB_PACKED_PRE struct
1970{
1971 zb_uint32_t provider_id;
1972 zb_uint32_t issuer_event_id;
1973 zb_uint32_t price_ack_time;
1974 zb_uint8_t control;
1976
1977// Command structure for Price get block periods
1978typedef ZB_PACKED_PRE struct
1979{
1980 zb_uint32_t start_time;
1981 zb_uint8_t number_of_events;
1982 zb_uint8_t tariff_type;
1984
1985// Command structure for Price get conversion factor
1986typedef ZB_PACKED_PRE struct
1987{
1992
1993// Command structure for Price get calorific value
1994typedef ZB_PACKED_PRE struct
1995{
1996 zb_uint32_t earliest_start_time;
1997 zb_uint32_t min_issuer_event_id;
1998 zb_uint8_t number_of_commands;
2000
2001// Command structure for Price get tariff information
2002typedef ZB_PACKED_PRE struct
2003{
2004 zb_uint32_t earliest_start_time;
2005 zb_uint32_t min_issuer_event_id;
2006 zb_uint8_t number_of_commands;
2007 zb_uint8_t tariff_type;
2009
2010// Command structure for Price get price matrix
2011typedef ZB_PACKED_PRE struct
2012{
2013 zb_uint32_t issuer_tariff_id;
2015
2016// Command structure for Price get block thresholds
2017typedef ZB_PACKED_PRE struct
2018{
2019 zb_uint32_t issuer_tariff_id;
2021
2022// Command structure for Price getco2 value
2023typedef ZB_PACKED_PRE struct
2024{
2025 zb_uint32_t earliest_start_time;
2026 zb_uint32_t min_issuer_event_id;
2027 zb_uint8_t number_of_commands;
2028 zb_uint8_t tariff_type;
2030
2031// Command structure for Price get tier labels
2032typedef ZB_PACKED_PRE struct
2033{
2034 zb_uint32_t issuer_tariff_id;
2036
2037// Command structure for Price get billing period
2038typedef ZB_PACKED_PRE struct
2039{
2040 zb_uint32_t earliest_start_time;
2041 zb_uint32_t min_issuer_event_id;
2042 zb_uint8_t number_of_commands;
2043 zb_uint8_t tariff_type;
2045
2046// Command structure for Price get consolidated bill
2047typedef ZB_PACKED_PRE struct
2048{
2049 zb_uint32_t earliest_start_time;
2050 zb_uint32_t min_issuer_event_id;
2051 zb_uint8_t number_of_commands;
2052 zb_uint8_t tariff_type;
2054
2055// Command structure for Price cpp event response
2056typedef ZB_PACKED_PRE struct
2057{
2058 zb_uint32_t issuer_event_id;
2059 zb_uint8_t cpp_auth;
2061
2062// Command structure for Price get credit payment
2063typedef ZB_PACKED_PRE struct
2064{
2065 zb_uint32_t latest_end_time;
2068
2069// Command structure for Price publish price
2070typedef ZB_PACKED_PRE struct
2071{
2072 zb_uint32_t provider_id;
2073 zb_uint8_t * rate_label;
2074 zb_uint32_t issuer_event_id;
2075 zb_uint32_t current_time;
2077 zb_uint16_t currency;
2080 zb_uint32_t start_time;
2082 zb_uint32_t price;
2083 zb_uint8_t price_ratio;
2084 zb_uint32_t generation_price;
2090 zb_uint8_t price_control;
2097
2098// Command structure for Price publish block period
2099typedef ZB_PACKED_PRE struct
2100{
2101 zb_uint32_t provider_id;
2102 zb_uint32_t issuer_event_id;
2107 zb_uint8_t tariff_type;
2110
2111// Command structure for Price publish conversion factor
2112typedef ZB_PACKED_PRE struct
2113{
2114 zb_uint32_t issuer_event_id;
2115 zb_uint32_t start_time;
2119
2120// Command structure for Price publish calorific value
2121typedef ZB_PACKED_PRE struct
2122{
2123 zb_uint32_t issuer_event_id;
2124 zb_uint32_t start_time;
2125 zb_uint32_t calorific_value;
2129
2130// Command structure for Price publish tariff information
2131typedef ZB_PACKED_PRE struct
2132{
2133 zb_uint32_t provider_id;
2134 zb_uint32_t issuer_event_id;
2135 zb_uint32_t issuer_tariff_id;
2136 zb_uint32_t start_time;
2138 zb_uint8_t * tariff_label;
2141 zb_uint8_t unit_of_measure;
2142 zb_uint16_t currency;
2143 zb_uint8_t price_trailing_digit;
2144 zb_uint32_t standing_charge;
2149
2150// Command structure for Price publish price matrix
2151typedef ZB_PACKED_PRE struct
2152{
2153 zb_uint32_t provider_id;
2154 zb_uint32_t issuer_event_id;
2155 zb_uint32_t start_time;
2156 zb_uint32_t issuer_tariff_id;
2157 zb_uint8_t command_index;
2158 zb_uint8_t number_of_commands;
2160 zb_uint8_t * payload;
2162
2163// Command structure for Price publish block thresholds
2164typedef ZB_PACKED_PRE struct
2165{
2166 zb_uint32_t provider_id;
2167 zb_uint32_t issuer_event_id;
2168 zb_uint32_t start_time;
2169 zb_uint32_t issuer_tariff_id;
2170 zb_uint8_t command_index;
2171 zb_uint8_t number_of_commands;
2172 zb_uint8_t sub_payload_control;
2173 zb_uint8_t * payload;
2175
2176// Command structure for Price publishco2 value
2177typedef ZB_PACKED_PRE struct
2178{
2179 zb_uint32_t provider_id;
2180 zb_uint32_t issuer_event_id;
2181 zb_uint32_t start_time;
2182 zb_uint8_t tariff_type;
2183 zb_uint32_t c_o2_value;
2187
2188// Command structure for Price publish tier labels
2189typedef ZB_PACKED_PRE struct
2190{
2191 zb_uint32_t provider_id;
2192 zb_uint32_t issuer_event_id;
2193 zb_uint32_t issuer_tariff_id;
2194 zb_uint8_t command_index;
2195 zb_uint8_t number_of_commands;
2199
2200// Command structure for Price publish billing period
2201typedef ZB_PACKED_PRE struct
2202{
2203 zb_uint32_t provider_id;
2204 zb_uint32_t issuer_event_id;
2208 zb_uint8_t tariff_type;
2210
2211// Command structure for Price publish consolidated bill
2212typedef ZB_PACKED_PRE struct
2213{
2214 zb_uint32_t provider_id;
2215 zb_uint32_t issuer_event_id;
2216 zb_uint32_t billing_period_start_time;
2217 zb_uint32_t billing_period_duration;
2219 zb_uint8_t tariff_type;
2221 zb_uint16_t currency;
2224
2225// Command structure for Price publish cpp event
2226typedef ZB_PACKED_PRE struct
2227{
2228 zb_uint32_t provider_id;
2229 zb_uint32_t issuer_event_id;
2230 zb_uint32_t start_time;
2231 zb_uint16_t duration_in_minutes;
2232 zb_uint8_t tariff_type;
2233 zb_uint8_t cpp_price_tier;
2234 zb_uint8_t cpp_auth;
2236
2237// Command structure for Price publish credit payment
2238typedef ZB_PACKED_PRE struct
2239{
2240 zb_uint32_t provider_id;
2241 zb_uint32_t issuer_event_id;
2245 zb_uint32_t credit_payment;
2249
2250// Command structure for Price publish currency conversion
2251typedef ZB_PACKED_PRE struct
2252{
2253 zb_uint32_t provider_id;
2254 zb_uint32_t issuer_event_id;
2255 zb_uint32_t start_time;
2256 zb_uint16_t old_currency;
2257 zb_uint16_t new_currency;
2258 zb_uint32_t conversion_factor;
2262
2263// Command structure for Price cancel tariff
2264typedef ZB_PACKED_PRE struct
2265{
2266 zb_uint32_t provider_id;
2267 zb_uint32_t issuer_tariff_id;
2268 zb_uint8_t tariff_type;
2270
2271// Command structure for Demand Response and Load Control report event status
2272typedef ZB_PACKED_PRE struct
2273{
2274 zb_uint32_t issuer_event_id;
2275 zb_uint8_t event_status;
2282 zb_uint8_t event_control;
2283 zb_uint8_t signature_type;
2284 /* TYPE WARNING: Signature defaults to */ zb_uint8_t * signature;
2286
2287// Command structure for Demand Response and Load Control get scheduled events
2288typedef ZB_PACKED_PRE struct
2289{
2290 zb_uint32_t start_time;
2291 zb_uint8_t number_of_events;
2292 zb_uint32_t issuer_event_id;
2294
2295// Command structure for Demand Response and Load Control load control event
2296typedef ZB_PACKED_PRE struct
2297{
2298 zb_uint32_t issuer_event_id;
2299 zb_uint16_t device_class;
2301 zb_uint32_t start_time;
2302 zb_uint16_t duration_in_minutes;
2309 zb_uint8_t duty_cycle;
2310 zb_uint8_t event_control;
2312
2313// Command structure for Demand Response and Load Control cancel load control event
2314typedef ZB_PACKED_PRE struct
2315{
2316 zb_uint32_t issuer_event_id;
2317 zb_uint16_t device_class;
2318 zb_uint8_t utility_enrollment_group;
2319 zb_uint8_t cancel_control;
2320 zb_uint32_t effective_time;
2322
2323// Command structure for Demand Response and Load Control cancel all load control events
2324typedef ZB_PACKED_PRE struct
2325{
2326 zb_uint8_t cancel_control;
2328
2329// Command structure for Simple Metering get profile
2330typedef ZB_PACKED_PRE struct
2331{
2333 zb_uint32_t end_time;
2336
2337// Command structure for Simple Metering request mirror response
2338typedef ZB_PACKED_PRE struct
2339{
2340 zb_uint16_t endpoint_id;
2342
2343// Command structure for Simple Metering mirror removed
2344typedef ZB_PACKED_PRE struct
2345{
2346 zb_uint16_t endpoint_id;
2348
2349// Command structure for Simple Metering request fast poll mode
2350typedef ZB_PACKED_PRE struct
2351{
2353 zb_uint8_t duration;
2355
2356// Command structure for Simple Metering schedule snapshot
2357typedef ZB_PACKED_PRE struct
2358{
2359 zb_uint32_t issuer_event_id;
2360 zb_uint8_t command_index;
2361 zb_uint8_t command_count;
2364
2365// Command structure for Simple Metering take snapshot
2366typedef ZB_PACKED_PRE struct
2367{
2368 zb_uint32_t snapshot_cause;
2370
2371// Command structure for Simple Metering get snapshot
2372typedef ZB_PACKED_PRE struct
2373{
2374 zb_uint32_t earliest_start_time;
2375 zb_uint32_t latest_end_time;
2377 zb_uint32_t snapshot_cause;
2379
2380// Command structure for Simple Metering start sampling
2381typedef ZB_PACKED_PRE struct
2382{
2383 zb_uint32_t issuer_event_id;
2385 zb_uint8_t sample_type;
2389
2390// Command structure for Simple Metering get sampled data
2391typedef ZB_PACKED_PRE struct
2392{
2393 zb_uint16_t sample_id;
2395 zb_uint8_t sample_type;
2398
2399// Command structure for Simple Metering mirror report attribute response
2400typedef ZB_PACKED_PRE struct
2401{
2405
2406// Command structure for Simple Metering reset load limit counter
2407typedef ZB_PACKED_PRE struct
2408{
2409 zb_uint32_t provider_id;
2410 zb_uint32_t issuer_event_id;
2412
2413// Command structure for Simple Metering change supply
2414typedef ZB_PACKED_PRE struct
2415{
2416 zb_uint32_t provider_id;
2417 zb_uint32_t issuer_event_id;
2423
2424// Command structure for Simple Metering local change supply
2425typedef ZB_PACKED_PRE struct
2426{
2427 zb_uint8_t proposed_supply_status;
2429
2430// Command structure for Simple Metering set supply status
2431typedef ZB_PACKED_PRE struct
2432{
2433 zb_uint32_t issuer_event_id;
2439
2440// Command structure for Simple Metering set uncontrolled flow threshold
2441typedef ZB_PACKED_PRE struct
2442{
2443 zb_uint32_t provider_id;
2444 zb_uint32_t issuer_event_id;
2446 zb_uint8_t unit_of_measure;
2447 zb_uint16_t multiplier;
2448 zb_uint16_t divisor;
2452
2453// Command structure for Simple Metering get profile response
2454typedef ZB_PACKED_PRE struct
2455{
2456 zb_uint32_t end_time;
2457 zb_uint8_t status;
2460 zb_uint8_t * intervals;
2462
2463// Command structure for Simple Metering request fast poll mode response
2464typedef ZB_PACKED_PRE struct
2465{
2469
2470// Command structure for Simple Metering schedule snapshot response
2471typedef ZB_PACKED_PRE struct
2472{
2473 zb_uint32_t issuer_event_id;
2476
2477// Command structure for Simple Metering take snapshot response
2478typedef ZB_PACKED_PRE struct
2479{
2480 zb_uint32_t snapshot_id;
2483
2484// Command structure for Simple Metering publish snapshot
2485typedef ZB_PACKED_PRE struct
2486{
2487 zb_uint32_t snapshot_id;
2488 zb_uint32_t snapshot_time;
2490 zb_uint8_t command_index;
2491 zb_uint8_t total_commands;
2492 zb_uint32_t snapshot_cause;
2494 zb_uint8_t * snapshot_payload;
2496
2497// Command structure for Simple Metering get sampled data response
2498typedef ZB_PACKED_PRE struct
2499{
2500 zb_uint16_t sample_id;
2502 zb_uint8_t sample_type;
2503 zb_uint16_t sample_request_interval;
2504 zb_uint16_t number_of_samples;
2505 zb_uint8_t * samples;
2507
2508// Command structure for Simple Metering configure mirror
2509typedef ZB_PACKED_PRE struct
2510{
2511 zb_uint32_t issuer_event_id;
2514 zb_uint8_t notification_scheme;
2516
2517// Command structure for Simple Metering configure notification scheme
2518typedef ZB_PACKED_PRE struct
2519{
2520 zb_uint32_t issuer_event_id;
2521 zb_uint8_t notification_scheme;
2524
2525// Command structure for Simple Metering configure notification flags
2526typedef ZB_PACKED_PRE struct
2527{
2528 zb_uint32_t issuer_event_id;
2529 zb_uint8_t notification_scheme;
2531 zb_uint16_t cluster_id;
2532 zb_uint16_t manufacturer_code;
2533 zb_uint8_t number_of_commands;
2534 zb_uint8_t * command_ids;
2536
2537// Command structure for Simple Metering get notified message
2538typedef ZB_PACKED_PRE struct
2539{
2540 zb_uint8_t notification_scheme;
2544
2545// Command structure for Simple Metering supply status response
2546typedef ZB_PACKED_PRE struct
2547{
2548 zb_uint32_t provider_id;
2549 zb_uint32_t issuer_event_id;
2550 zb_uint32_t implementation_date_time;
2551 zb_uint8_t supply_status;
2553
2554// Command structure for Simple Metering start sampling response
2555typedef ZB_PACKED_PRE struct
2556{
2557 zb_uint16_t sample_id;
2559
2560// Command structure for Messaging message confirmation
2561typedef ZB_PACKED_PRE struct
2562{
2563 zb_uint32_t message_id;
2566 zb_uint8_t * message_response;
2568
2569// Command structure for Messaging get message cancellation
2570typedef ZB_PACKED_PRE struct
2571{
2574
2575// Command structure for Messaging display message
2576typedef ZB_PACKED_PRE struct
2577{
2578 zb_uint32_t message_id;
2580 zb_uint32_t start_time;
2581 zb_uint16_t duration_in_minutes;
2582 zb_uint8_t * message;
2585
2586// Command structure for Messaging cancel message
2587typedef ZB_PACKED_PRE struct
2588{
2589 zb_uint32_t message_id;
2590 zb_uint8_t message_control;
2592
2593// Command structure for Messaging display protected message
2594typedef ZB_PACKED_PRE struct
2595{
2596 zb_uint32_t message_id;
2597 zb_uint8_t message_control;
2598 zb_uint32_t start_time;
2599 zb_uint16_t duration_in_minutes;
2600 zb_uint8_t * message;
2603
2604// Command structure for Messaging cancel all messages
2605typedef ZB_PACKED_PRE struct
2606{
2607 zb_uint32_t implementation_date_time;
2609
2610// Command structure for Tunneling request tunnel
2611typedef ZB_PACKED_PRE struct
2612{
2613 zb_uint8_t protocol_id;
2614 zb_uint16_t manufacturer_code;
2618
2619// Command structure for Tunneling close tunnel
2620typedef ZB_PACKED_PRE struct
2621{
2622 zb_uint16_t tunnel_id;
2624
2625// Command structure for Tunneling transfer data client to server
2626typedef ZB_PACKED_PRE struct
2627{
2628 zb_uint16_t tunnel_id;
2629 zb_uint8_t * data;
2631
2632// Command structure for Tunneling transfer data error client to server
2633typedef ZB_PACKED_PRE struct
2634{
2635 zb_uint16_t tunnel_id;
2638
2639// Command structure for Tunneling ack transfer data client to server
2640typedef ZB_PACKED_PRE struct
2641{
2642 zb_uint16_t tunnel_id;
2645
2646// Command structure for Tunneling ready data client to server
2647typedef ZB_PACKED_PRE struct
2648{
2649 zb_uint16_t tunnel_id;
2652
2653// Command structure for Tunneling get supported tunnel protocols
2654typedef ZB_PACKED_PRE struct
2655{
2658
2659// Command structure for Tunneling request tunnel response
2660typedef ZB_PACKED_PRE struct
2661{
2662 zb_uint16_t tunnel_id;
2663 zb_uint8_t tunnel_status;
2666
2667// Command structure for Tunneling transfer data server to client
2668typedef ZB_PACKED_PRE struct
2669{
2670 zb_uint16_t tunnel_id;
2671 zb_uint8_t * data;
2673
2674// Command structure for Tunneling transfer data error server to client
2675typedef ZB_PACKED_PRE struct
2676{
2677 zb_uint16_t tunnel_id;
2678 zb_uint8_t transfer_data_status;
2680
2681// Command structure for Tunneling ack transfer data server to client
2682typedef ZB_PACKED_PRE struct
2683{
2684 zb_uint16_t tunnel_id;
2685 zb_uint16_t number_of_bytes_left;
2687
2688// Command structure for Tunneling ready data server to client
2689typedef ZB_PACKED_PRE struct
2690{
2691 zb_uint16_t tunnel_id;
2692 zb_uint16_t number_of_octets_left;
2694
2695// Command structure for Tunneling supported tunnel protocols response
2696typedef ZB_PACKED_PRE struct
2697{
2699 zb_uint8_t protocol_count;
2700 zb_uint8_t * protocol_list;
2702
2703// Command structure for Tunneling tunnel closure notification
2704typedef ZB_PACKED_PRE struct
2705{
2706 zb_uint16_t tunnel_id;
2708
2709// Command structure for Prepayment select available emergency credit
2710typedef ZB_PACKED_PRE struct
2711{
2715
2716// Command structure for Prepayment change debt
2717typedef ZB_PACKED_PRE struct
2718{
2719 zb_uint32_t issuer_event_id;
2720 zb_uint8_t * debt_label;
2721 zb_uint32_t debt_amount;
2730
2731// Command structure for Prepayment emergency credit setup
2732typedef ZB_PACKED_PRE struct
2733{
2734 zb_uint32_t issuer_event_id;
2735 zb_uint32_t start_time;
2739
2740// Command structure for Prepayment consumer top up
2741typedef ZB_PACKED_PRE struct
2742{
2743 zb_uint8_t originating_device;
2744 zb_uint8_t * top_up_code;
2746
2747// Command structure for Prepayment credit adjustment
2748typedef ZB_PACKED_PRE struct
2749{
2750 zb_uint32_t issuer_event_id;
2751 zb_uint32_t start_time;
2755
2756// Command structure for Prepayment change payment mode
2757typedef ZB_PACKED_PRE struct
2758{
2759 zb_uint32_t provider_id;
2760 zb_uint32_t issuer_event_id;
2761 zb_uint32_t implementation_date_time;
2763 zb_uint32_t cut_off_value;
2765
2766// Command structure for Prepayment get prepay snapshot
2767typedef ZB_PACKED_PRE struct
2768{
2769 zb_uint32_t earliest_start_time;
2770 zb_uint32_t latest_end_time;
2771 zb_uint8_t snapshot_offset;
2772 zb_uint32_t snapshot_cause;
2774
2775// Command structure for Prepayment get top up log
2776typedef ZB_PACKED_PRE struct
2777{
2778 zb_uint32_t latest_end_time;
2779 zb_uint8_t number_of_records;
2781
2782// Command structure for Prepayment set low credit warning level
2783typedef ZB_PACKED_PRE struct
2784{
2787
2788// Command structure for Prepayment get debt repayment log
2789typedef ZB_PACKED_PRE struct
2790{
2791 zb_uint32_t latest_end_time;
2793 zb_uint8_t debt_type;
2795
2796// Command structure for Prepayment set maximum credit limit
2797typedef ZB_PACKED_PRE struct
2798{
2799 zb_uint32_t provider_id;
2800 zb_uint32_t issuer_event_id;
2801 zb_uint32_t implementation_date_time;
2805
2806// Command structure for Prepayment set overall debt cap
2807typedef ZB_PACKED_PRE struct
2808{
2809 zb_uint32_t provider_id;
2810 zb_uint32_t issuer_event_id;
2811 zb_uint32_t implementation_date_time;
2812 zb_uint32_t overall_debt_cap;
2814
2815// Command structure for Prepayment publish prepay snapshot
2816typedef ZB_PACKED_PRE struct
2817{
2818 zb_uint32_t snapshot_id;
2819 zb_uint32_t snapshot_time;
2820 zb_uint8_t total_snapshots_found;
2821 zb_uint8_t command_index;
2823 zb_uint32_t snapshot_cause;
2824 zb_uint8_t snapshot_payload_type;
2825 zb_uint8_t * snapshot_payload;
2827
2828// Command structure for Prepayment change payment mode response
2829typedef ZB_PACKED_PRE struct
2830{
2833 zb_uint32_t emergency_credit_limit;
2834 zb_uint32_t emergency_credit_threshold;
2836
2837// Command structure for Prepayment consumer top up response
2838typedef ZB_PACKED_PRE struct
2839{
2840 zb_uint8_t result_type;
2841 zb_uint32_t top_up_value;
2843 zb_uint32_t credit_remaining;
2845
2846// Command structure for Prepayment publish top up log
2847typedef ZB_PACKED_PRE struct
2848{
2849 zb_uint8_t command_index;
2850 zb_uint8_t total_number_of_commands;
2851 zb_uint8_t * top_up_payload;
2853
2854// Command structure for Prepayment publish debt log
2855typedef ZB_PACKED_PRE struct
2856{
2857 zb_uint8_t command_index;
2858 zb_uint8_t total_number_of_commands;
2859 zb_uint8_t * debt_payload;
2861
2862// Command structure for Energy Management manage event
2863typedef ZB_PACKED_PRE struct
2864{
2865 zb_uint32_t issuer_event_id;
2866 zb_uint16_t device_class;
2867 zb_uint8_t utility_enrollment_group;
2870
2871// Command structure for Energy Management report event status
2872typedef ZB_PACKED_PRE struct
2873{
2874 zb_uint32_t issuer_event_id;
2875 zb_uint8_t event_status;
2876 zb_uint32_t event_status_time;
2877 zb_uint8_t criticality_level_applied;
2881 zb_uint8_t duty_cycle_applied;
2882 zb_uint8_t event_control;
2884
2885// Command structure for Calendar get calendar
2886typedef ZB_PACKED_PRE struct
2887{
2888 zb_uint32_t earliest_start_time;
2889 zb_uint32_t min_issuer_event_id;
2891 zb_uint8_t calendar_type;
2892 zb_uint32_t provider_id;
2894
2895// Command structure for Calendar get day profiles
2896typedef ZB_PACKED_PRE struct
2897{
2898 zb_uint32_t provider_id;
2900 zb_uint8_t start_day_id;
2901 zb_uint8_t number_of_days;
2903
2904// Command structure for Calendar get week profiles
2905typedef ZB_PACKED_PRE struct
2906{
2907 zb_uint32_t provider_id;
2908 zb_uint32_t issuer_calendar_id;
2909 zb_uint8_t start_week_id;
2912
2913// Command structure for Calendar get seasons
2914typedef ZB_PACKED_PRE struct
2915{
2916 zb_uint32_t provider_id;
2917 zb_uint32_t issuer_calendar_id;
2919
2920// Command structure for Calendar get special days
2921typedef ZB_PACKED_PRE struct
2922{
2923 zb_uint32_t start_time;
2924 zb_uint8_t number_of_events;
2925 zb_uint8_t calendar_type;
2926 zb_uint32_t provider_id;
2927 zb_uint32_t issuer_calendar_id;
2929
2930// Command structure for Calendar publish calendar
2931typedef ZB_PACKED_PRE struct
2932{
2933 zb_uint32_t provider_id;
2934 zb_uint32_t issuer_event_id;
2935 zb_uint32_t issuer_calendar_id;
2936 zb_uint32_t start_time;
2937 zb_uint8_t calendar_type;
2939 zb_uint8_t * calendar_name;
2944
2945// Command structure for Calendar publish day profile
2946typedef ZB_PACKED_PRE struct
2947{
2948 zb_uint32_t provider_id;
2949 zb_uint32_t issuer_event_id;
2950 zb_uint32_t issuer_calendar_id;
2951 zb_uint8_t day_id;
2953 zb_uint8_t command_index;
2954 zb_uint8_t total_number_of_commands;
2955 zb_uint8_t calendar_type;
2958
2959// Command structure for Calendar publish week profile
2960typedef ZB_PACKED_PRE struct
2961{
2962 zb_uint32_t provider_id;
2963 zb_uint32_t issuer_event_id;
2964 zb_uint32_t issuer_calendar_id;
2965 zb_uint8_t week_id;
2974
2975// Command structure for Calendar publish seasons
2976typedef ZB_PACKED_PRE struct
2977{
2978 zb_uint32_t provider_id;
2979 zb_uint32_t issuer_event_id;
2980 zb_uint32_t issuer_calendar_id;
2981 zb_uint8_t command_index;
2982 zb_uint8_t total_number_of_commands;
2983 zb_uint8_t * season_entries;
2985
2986// Command structure for Calendar publish special days
2987typedef ZB_PACKED_PRE struct
2988{
2989 zb_uint32_t provider_id;
2990 zb_uint32_t issuer_event_id;
2991 zb_uint32_t issuer_calendar_id;
2992 zb_uint32_t start_time;
2993 zb_uint8_t calendar_type;
2995 zb_uint8_t command_index;
2996 zb_uint8_t total_number_of_commands;
2999
3000// Command structure for Calendar cancel calendar
3001typedef ZB_PACKED_PRE struct
3002{
3003 zb_uint32_t provider_id;
3004 zb_uint32_t issuer_calendar_id;
3005 zb_uint8_t calendar_type;
3007
3008// Command structure for Device Management request new password
3009typedef ZB_PACKED_PRE struct
3010{
3011 zb_uint8_t password_type;
3013
3014// Command structure for Device Management report event configuration
3015typedef ZB_PACKED_PRE struct
3016{
3017 zb_uint8_t command_index;
3018 zb_uint8_t total_commands;
3021
3022// Command structure for Device Management publish change of tenancy
3023typedef ZB_PACKED_PRE struct
3024{
3025 zb_uint32_t provider_id;
3026 zb_uint32_t issuer_event_id;
3027 zb_uint8_t tariff_type;
3028 zb_uint32_t implementation_date_time;
3031
3032// Command structure for Device Management publish change of supplier
3033typedef ZB_PACKED_PRE struct
3034{
3036 zb_uint32_t issuer_event_id;
3037 zb_uint8_t tariff_type;
3044
3045// Command structure for Device Management request new password response
3046typedef ZB_PACKED_PRE struct
3047{
3048 zb_uint32_t issuer_event_id;
3049 zb_uint32_t implementation_date_time;
3050 zb_uint16_t duration_in_minutes;
3051 zb_uint8_t password_type;
3052 zb_uint8_t * password;
3054
3055// Command structure for Device Management update site id
3056typedef ZB_PACKED_PRE struct
3057{
3058 zb_uint32_t issuer_event_id;
3059 zb_uint32_t site_id_time;
3060 zb_uint32_t provider_id;
3061 zb_uint8_t * site_id;
3063
3064// Command structure for Device Management set event configuration
3065typedef ZB_PACKED_PRE struct
3066{
3067 zb_uint32_t issuer_event_id;
3068 zb_uint32_t start_date_time;
3071 zb_uint8_t * event_configuration_payload;
3073
3074// Command structure for Device Management get event configuration
3075typedef ZB_PACKED_PRE struct
3076{
3077 zb_uint16_t event_id;
3079
3080// Command structure for Device Management updatecin
3081typedef ZB_PACKED_PRE struct
3082{
3083 zb_uint32_t issuer_event_id;
3085 zb_uint32_t provider_id;
3088
3089// Command structure for Events get event log
3090typedef ZB_PACKED_PRE struct
3091{
3093 zb_uint16_t event_id;
3094 zb_uint32_t start_time;
3095 zb_uint32_t end_time;
3096 zb_uint8_t number_of_events;
3097 zb_uint16_t event_offset;
3099
3100// Command structure for Events clear event log request
3101typedef ZB_PACKED_PRE struct
3102{
3103 zb_uint8_t log_id;
3105
3106// Command structure for Events publish event
3107typedef ZB_PACKED_PRE struct
3108{
3109 zb_uint8_t log_id;
3110 zb_uint16_t event_id;
3111 zb_uint32_t event_time;
3112 zb_uint8_t event_control;
3113 zb_uint8_t * event_data;
3115
3116// Command structure for Events publish event log
3117typedef ZB_PACKED_PRE struct
3118{
3120 zb_uint8_t command_index;
3121 zb_uint8_t total_commands;
3123 zb_uint8_t * log_payload;
3125
3126// Command structure for Events clear event log response
3127typedef ZB_PACKED_PRE struct
3128{
3131
3132// Command structure for MDU Pairing pairing request
3133typedef ZB_PACKED_PRE struct
3134{
3138
3139// Command structure for MDU Pairing pairing response
3140typedef ZB_PACKED_PRE struct
3141{
3144 zb_uint8_t command_index;
3145 zb_uint8_t total_number_of_commands;
3146 zb_uint8_t * eui64s;
3148
3149// Command structure for Sub-GHz suspend zcl messages
3150typedef ZB_PACKED_PRE struct
3151{
3152 zb_uint8_t period;
3154
3155// Command structure for Key Establishment initiate key establishment request
3156typedef ZB_PACKED_PRE struct
3157{
3161 /* TYPE WARNING: Identity defaults to */ zb_uint8_t * identity;
3163
3164// Command structure for Key Establishment ephemeral data request
3165typedef ZB_PACKED_PRE struct
3166{
3167 /* TYPE WARNING: EphemeralData defaults to */ zb_uint8_t * ephemeral_data;
3169
3170// Command structure for Key Establishment confirm key data request
3171typedef ZB_PACKED_PRE struct
3172{
3173 /* TYPE WARNING: Smac defaults to */ zb_uint8_t * secure_message_authentication_code;
3175
3176// Command structure for Key Establishment terminate key establishment
3177typedef ZB_PACKED_PRE struct
3178{
3179 zb_uint8_t status_code;
3180 zb_uint8_t wait_time;
3181 zb_uint16_t key_establishment_suite;
3183
3184// Command structure for Key Establishment initiate key establishment response
3185typedef ZB_PACKED_PRE struct
3186{
3189 zb_uint8_t confirm_key_generate_time;
3190 /* TYPE WARNING: Identity defaults to */ zb_uint8_t * identity;
3192
3193// Command structure for Key Establishment ephemeral data response
3194typedef ZB_PACKED_PRE struct
3195{
3196 /* TYPE WARNING: EphemeralData defaults to */ zb_uint8_t * ephemeral_data;
3198
3199// Command structure for Key Establishment confirm key data response
3200typedef ZB_PACKED_PRE struct
3201{
3202 /* TYPE WARNING: Smac defaults to */ zb_uint8_t * secure_message_authentication_code;
3204
3205// Command structure for Information request information
3206typedef ZB_PACKED_PRE struct
3207{
3208 zb_uint8_t inquiry_id;
3209 zb_uint8_t data_type_id;
3212
3213// Command structure for Information push information response
3214typedef ZB_PACKED_PRE struct
3215{
3216 zb_uint8_t * notification_list;
3218
3219// Command structure for Information send preference
3220typedef ZB_PACKED_PRE struct
3221{
3222 zb_uint16_t preference_type;
3225
3226// Command structure for Information request preference response
3227typedef ZB_PACKED_PRE struct
3228{
3230 zb_uint16_t preference_type;
3231 zb_uint8_t * preference_payload;
3233
3234// Command structure for Information update
3235typedef ZB_PACKED_PRE struct
3236{
3237 zb_uint8_t access_control;
3238 zb_uint8_t option;
3239 zb_uint8_t * contents;
3241
3242// Command structure for Information delete
3243typedef ZB_PACKED_PRE struct
3244{
3246 zb_uint8_t * content_ids;
3248
3249// Command structure for Information configure node description
3250typedef ZB_PACKED_PRE struct
3251{
3252 zb_uint8_t * description;
3254
3255// Command structure for Information configure delivery enable
3256typedef ZB_PACKED_PRE struct
3257{
3258 zb_uint8_t enable;
3260
3261// Command structure for Information configure push information timer
3262typedef ZB_PACKED_PRE struct
3263{
3264 zb_uint32_t timer;
3266
3267// Command structure for Information configure set root id
3268typedef ZB_PACKED_PRE struct
3269{
3270 zb_uint16_t root_id;
3272
3273// Command structure for Information request information response
3274typedef ZB_PACKED_PRE struct
3275{
3276 zb_uint8_t number;
3277 zb_uint8_t * buffer;
3279
3280// Command structure for Information push information
3281typedef ZB_PACKED_PRE struct
3282{
3283 zb_uint8_t * contents;
3285
3286// Command structure for Information send preference response
3287typedef ZB_PACKED_PRE struct
3288{
3291
3292// Command structure for Information request preference confirmation
3293typedef ZB_PACKED_PRE struct
3294{
3295 zb_uint8_t * status_feedback_list;
3297
3298// Command structure for Information update response
3299typedef ZB_PACKED_PRE struct
3300{
3301 zb_uint8_t * notification_list;
3303
3304// Command structure for Information delete response
3305typedef ZB_PACKED_PRE struct
3306{
3307 zb_uint8_t * notification_list;
3309
3310// Command structure for Data Sharing read file request
3311typedef ZB_PACKED_PRE struct
3312{
3313 zb_uint16_t file_index;
3316
3317// Command structure for Data Sharing read record request
3318typedef ZB_PACKED_PRE struct
3319{
3320 zb_uint16_t file_index;
3323
3324// Command structure for Data Sharing write file response
3325typedef ZB_PACKED_PRE struct
3326{
3327 zb_uint8_t status;
3328 zb_uint8_t * file_index;
3330
3331// Command structure for Data Sharing write file request
3332typedef ZB_PACKED_PRE struct
3333{
3334 zb_uint8_t write_options;
3335 zb_uint8_t * file_size;
3337
3338// Command structure for Data Sharing modify file request
3339typedef ZB_PACKED_PRE struct
3340{
3341 zb_uint16_t file_index;
3343 zb_uint32_t octet_count;
3345
3346// Command structure for Data Sharing modify record request
3347typedef ZB_PACKED_PRE struct
3348{
3349 zb_uint16_t file_index;
3351 zb_uint16_t record_count;
3353
3354// Command structure for Data Sharing file transmission
3355typedef ZB_PACKED_PRE struct
3356{
3358 zb_uint8_t * buffer;
3360
3361// Command structure for Data Sharing record transmission
3362typedef ZB_PACKED_PRE struct
3363{
3364 zb_uint8_t transmit_options;
3365 zb_uint8_t * buffer;
3367
3368// Command structure for Gaming search game
3369typedef ZB_PACKED_PRE struct
3370{
3371 zb_uint8_t specific_game;
3372 zb_uint16_t game_id;
3374
3375// Command structure for Gaming join game
3376typedef ZB_PACKED_PRE struct
3377{
3378 zb_uint16_t game_id;
3379 zb_uint8_t join_as_master;
3380 zb_uint8_t * name_of_game;
3381} ZB_PACKED_STRUCT tr_gaming_join_game_cmd_t;
3382
3383// Command structure for Gaming action control
3384typedef ZB_PACKED_PRE struct
3385{
3386 zb_uint32_t actions;
3388
3389// Command structure for Gaming game announcement
3390typedef ZB_PACKED_PRE struct
3391{
3392 zb_uint16_t game_id;
3393 zb_uint8_t game_master;
3394 zb_uint8_t * list_of_game;
3396
3397// Command structure for Gaming general response
3398typedef ZB_PACKED_PRE struct
3399{
3400 zb_uint8_t command_id;
3401 zb_uint8_t status;
3402 zb_uint8_t * message;
3404
3405// Command structure for Data Rate Control path creation
3406typedef ZB_PACKED_PRE struct
3407{
3410 zb_uint8_t data_rate;
3412
3413// Command structure for Data Rate Control data rate notification
3414typedef ZB_PACKED_PRE struct
3415{
3416 zb_uint16_t originator_address;
3417 zb_uint16_t destination_address;
3418 zb_uint8_t data_rate;
3420
3421// Command structure for Data Rate Control path deletion
3422typedef ZB_PACKED_PRE struct
3423{
3424 zb_uint16_t originator_address;
3425 zb_uint16_t destination_address;
3427
3428// Command structure for Data Rate Control data rate control
3429typedef ZB_PACKED_PRE struct
3430{
3431 zb_uint16_t originator_address;
3432 zb_uint16_t destination_address;
3433 zb_uint8_t data_rate;
3435
3436// Command structure for Voice over ZigBee establishment request
3437typedef ZB_PACKED_PRE struct
3438{
3439 zb_uint8_t flag;
3440 zb_uint8_t codec_type;
3441 zb_uint8_t samp_freq;
3442 zb_uint8_t codec_rate;
3443 zb_uint8_t service_type;
3444 zb_uint8_t * buffer;
3446
3447// Command structure for Voice over ZigBee voice transmission
3448typedef ZB_PACKED_PRE struct
3449{
3450 zb_uint8_t * voice_data;
3452
3453// Command structure for Voice over ZigBee control response
3454typedef ZB_PACKED_PRE struct
3455{
3456 zb_uint8_t ack_nack;
3458
3459// Command structure for Voice over ZigBee establishment response
3460typedef ZB_PACKED_PRE struct
3461{
3462 zb_uint8_t ack_nack;
3463 zb_uint8_t codec_type;
3465
3466// Command structure for Voice over ZigBee voice transmission response
3467typedef ZB_PACKED_PRE struct
3468{
3470 zb_uint8_t error_flag;
3472
3473// Command structure for Voice over ZigBee control
3474typedef ZB_PACKED_PRE struct
3475{
3476 zb_uint8_t control_type;
3478
3479// Command structure for Chatting join chat request
3480typedef ZB_PACKED_PRE struct
3481{
3482 zb_uint16_t uid;
3483 zb_uint8_t * nickname;
3484 zb_uint16_t cid;
3486
3487// Command structure for Chatting leave chat request
3488typedef ZB_PACKED_PRE struct
3489{
3490 zb_uint16_t cid;
3491 zb_uint16_t uid;
3493
3494// Command structure for Chatting switch chairman response
3495typedef ZB_PACKED_PRE struct
3496{
3497 zb_uint16_t cid;
3498 zb_uint16_t uid;
3500
3501// Command structure for Chatting start chat request
3502typedef ZB_PACKED_PRE struct
3503{
3504 zb_uint8_t * name;
3505 zb_uint16_t uid;
3506 zb_uint8_t * nickname;
3508
3509// Command structure for Chatting chat message
3510typedef ZB_PACKED_PRE struct
3511{
3512 zb_uint16_t destination_uid;
3513 zb_uint16_t source_uid;
3514 zb_uint16_t cid;
3515 zb_uint8_t * nickname;
3516 zb_uint8_t * message;
3518
3519// Command structure for Chatting get node information request
3520typedef ZB_PACKED_PRE struct
3521{
3522 zb_uint16_t cid;
3523 zb_uint16_t uid;
3525
3526// Command structure for Chatting start chat response
3527typedef ZB_PACKED_PRE struct
3528{
3529 zb_uint8_t status;
3530 zb_uint16_t cid;
3532
3533// Command structure for Chatting join chat response
3534typedef ZB_PACKED_PRE struct
3535{
3536 zb_uint8_t status;
3537 zb_uint16_t cid;
3540
3541// Command structure for Chatting user left
3542typedef ZB_PACKED_PRE struct
3543{
3544 zb_uint16_t cid;
3545 zb_uint16_t uid;
3546 zb_uint8_t * nickname;
3548
3549// Command structure for Chatting user joined
3550typedef ZB_PACKED_PRE struct
3551{
3552 zb_uint16_t cid;
3553 zb_uint16_t uid;
3554 zb_uint8_t * nickname;
3556
3557// Command structure for Chatting search chat response
3558typedef ZB_PACKED_PRE struct
3559{
3560 zb_uint8_t options;
3561 zb_uint8_t * chat_room_list;
3563
3564// Command structure for Chatting switch chairman request
3565typedef ZB_PACKED_PRE struct
3566{
3567 zb_uint16_t cid;
3569
3570// Command structure for Chatting switch chairman confirm
3571typedef ZB_PACKED_PRE struct
3572{
3573 zb_uint16_t cid;
3576
3577// Command structure for Chatting switch chairman notification
3578typedef ZB_PACKED_PRE struct
3579{
3580 zb_uint16_t cid;
3581 zb_uint16_t uid;
3582 zb_uint16_t address;
3583 zb_uint8_t endpoint;
3585
3586// Command structure for Chatting get node information response
3587typedef ZB_PACKED_PRE struct
3588{
3589 zb_uint8_t status;
3590 zb_uint16_t cid;
3591 zb_uint16_t uid;
3594
3595// Command structure for Payment buy request
3596typedef ZB_PACKED_PRE struct
3597{
3598 zb_uint8_t * user_id;
3599 zb_uint16_t user_type;
3600 zb_uint16_t service_id;
3601 zb_uint8_t * good_id;
3603
3604// Command structure for Payment accept payment
3605typedef ZB_PACKED_PRE struct
3606{
3607 zb_uint8_t * user_id;
3608 zb_uint16_t user_type;
3609 zb_uint16_t service_id;
3610 zb_uint8_t * good_id;
3612
3613// Command structure for Payment payment confirm
3614typedef ZB_PACKED_PRE struct
3615{
3616 zb_uint8_t * serial_number;
3617 zb_uint16_t trans_id;
3618 zb_uint8_t trans_status;
3620
3621// Command structure for Payment buy confirm
3622typedef ZB_PACKED_PRE struct
3623{
3624 zb_uint8_t * serial_number;
3625 zb_uint32_t currency;
3626 zb_uint8_t price_trailing_digit;
3627 zb_uint32_t price;
3628 zb_uint8_t * timestamp;
3629 zb_uint16_t trans_id;
3630 zb_uint8_t trans_status;
3632
3633// Command structure for Payment receipt delivery
3634typedef ZB_PACKED_PRE struct
3635{
3636 zb_uint8_t * serial_number;
3637 zb_uint32_t currency;
3638 zb_uint8_t price_trailing_digit;
3639 zb_uint32_t price;
3640 zb_uint8_t * timestamp;
3642
3643// Command structure for Payment transaction end
3644typedef ZB_PACKED_PRE struct
3645{
3646 zb_uint8_t * serial_number;
3647 zb_uint8_t status;
3649
3650// Command structure for Billing subscribe
3651typedef ZB_PACKED_PRE struct
3652{
3653 zb_uint8_t * user_id;
3654 zb_uint16_t service_id;
3657
3658// Command structure for Billing unsubscribe
3659typedef ZB_PACKED_PRE struct
3660{
3661 zb_uint8_t * user_id;
3662 zb_uint16_t service_id;
3663 zb_uint16_t service_provider_id;
3665
3666// Command structure for Billing start billing session
3667typedef ZB_PACKED_PRE struct
3668{
3669 zb_uint8_t * user_id;
3670 zb_uint16_t service_id;
3671 zb_uint16_t service_provider_id;
3673
3674// Command structure for Billing stop billing session
3675typedef ZB_PACKED_PRE struct
3676{
3677 zb_uint8_t * user_id;
3678 zb_uint16_t service_id;
3679 zb_uint16_t service_provider_id;
3681
3682// Command structure for Billing bill status notification
3683typedef ZB_PACKED_PRE struct
3684{
3685 zb_uint8_t * user_id;
3686 zb_uint8_t status;
3688
3689// Command structure for Billing session keep alive
3690typedef ZB_PACKED_PRE struct
3691{
3692 zb_uint8_t * user_id;
3693 zb_uint16_t service_id;
3694 zb_uint16_t service_provider_id;
3696
3697// Command structure for Billing check bill status
3698typedef ZB_PACKED_PRE struct
3699{
3700 zb_uint8_t * user_id;
3701 zb_uint16_t service_id;
3702 zb_uint16_t service_provider_id;
3704
3705// Command structure for Billing send bill record
3706typedef ZB_PACKED_PRE struct
3707{
3708 zb_uint8_t * user_id;
3709 zb_uint16_t service_id;
3710 zb_uint16_t service_provider_id;
3711 zb_uint8_t * timestamp;
3712 zb_uint16_t duration;
3714
3715// Command structure for Appliance Events and Alert get alerts response
3716typedef ZB_PACKED_PRE struct
3717{
3718 zb_uint8_t alerts_count;
3719 zb_uint8_t * alert_structures;
3721
3722// Command structure for Appliance Events and Alert alerts notification
3723typedef ZB_PACKED_PRE struct
3724{
3725 zb_uint8_t alerts_count;
3726 zb_uint8_t * alert_structures;
3728
3729// Command structure for Appliance Events and Alert events notification
3730typedef ZB_PACKED_PRE struct
3731{
3732 zb_uint8_t event_header;
3733 zb_uint8_t event_id;
3735
3736// Command structure for Appliance Statistics log request
3737typedef ZB_PACKED_PRE struct
3738{
3739 zb_uint32_t log_id;
3741
3742// Command structure for Appliance Statistics log notification
3743typedef ZB_PACKED_PRE struct
3744{
3745 zb_uint32_t time_stamp;
3746 zb_uint32_t log_id;
3747 zb_uint32_t log_length;
3748 zb_uint8_t * log_payload;
3750
3751// Command structure for Appliance Statistics log response
3752typedef ZB_PACKED_PRE struct
3753{
3754 zb_uint32_t time_stamp;
3755 zb_uint32_t log_id;
3756 zb_uint32_t log_length;
3757 zb_uint8_t * log_payload;
3759
3760// Command structure for Appliance Statistics log queue response
3761typedef ZB_PACKED_PRE struct
3762{
3763 zb_uint8_t log_queue_size;
3764 zb_uint8_t * log_ids;
3766
3767// Command structure for Appliance Statistics statistics available
3768typedef ZB_PACKED_PRE struct
3769{
3770 zb_uint8_t log_queue_size;
3771 zb_uint8_t * log_ids;
3773
3774// Command structure for Electrical Measurement get measurement profile command
3775typedef ZB_PACKED_PRE struct
3776{
3777 zb_uint16_t attribute_id;
3778 zb_uint32_t start_time;
3781
3782// Command structure for Electrical Measurement get profile info response command
3783typedef ZB_PACKED_PRE struct
3784{
3785 zb_uint8_t profile_count;
3786 zb_uint8_t profile_interval_period;
3790
3791// Command structure for Electrical Measurement get measurement profile response command
3792typedef ZB_PACKED_PRE struct
3793{
3794 zb_uint32_t start_time;
3795 zb_uint8_t status;
3796 zb_uint8_t profile_interval_period;
3798 zb_uint16_t attribute_id;
3799 zb_uint8_t * intervals;
3801
3802// Command structure for ZLL Commissioning scan request
3803typedef ZB_PACKED_PRE struct
3804{
3805 zb_uint32_t transaction;
3809
3810// Command structure for ZLL Commissioning device information request
3811typedef ZB_PACKED_PRE struct
3812{
3813 zb_uint32_t transaction;
3814 zb_uint8_t start_index;
3816
3817// Command structure for ZLL Commissioning identify request
3818typedef ZB_PACKED_PRE struct
3819{
3820 zb_uint32_t transaction;
3823
3824// Command structure for ZLL Commissioning reset to factory new request
3825typedef ZB_PACKED_PRE struct
3826{
3827 zb_uint32_t transaction;
3829
3830// Command structure for ZLL Commissioning network start request
3831typedef ZB_PACKED_PRE struct
3832{
3833 zb_uint32_t transaction;
3834 zb_ieee_addr_t extended_pan_id;
3835 zb_uint8_t key_index;
3838 zb_uint16_t pan_id;
3839 zb_uint16_t network_address;
3849
3850// Command structure for ZLL Commissioning network join router request
3851typedef ZB_PACKED_PRE struct
3852{
3853 zb_uint32_t transaction;
3854 zb_ieee_addr_t extended_pan_id;
3855 zb_uint8_t key_index;
3856 zb_uint8_t encrypted_network_key[16];
3858 zb_uint8_t logical_channel;
3859 zb_uint16_t pan_id;
3860 zb_uint16_t network_address;
3861 zb_uint16_t group_identifiers_begin;
3862 zb_uint16_t group_identifiers_end;
3868
3869// Command structure for ZLL Commissioning network join end device request
3870typedef ZB_PACKED_PRE struct
3871{
3872 zb_uint32_t transaction;
3873 zb_ieee_addr_t extended_pan_id;
3874 zb_uint8_t key_index;
3875 zb_uint8_t encrypted_network_key[16];
3876 zb_uint8_t network_update_id;
3877 zb_uint8_t logical_channel;
3878 zb_uint16_t pan_id;
3879 zb_uint16_t network_address;
3880 zb_uint16_t group_identifiers_begin;
3881 zb_uint16_t group_identifiers_end;
3887
3888// Command structure for ZLL Commissioning network update request
3889typedef ZB_PACKED_PRE struct
3890{
3891 zb_uint32_t transaction;
3892 zb_ieee_addr_t extended_pan_id;
3893 zb_uint8_t network_update_id;
3894 zb_uint8_t logical_channel;
3895 zb_uint16_t pan_id;
3896 zb_uint16_t network_address;
3898
3899// Command structure for ZLL Commissioning get group identifiers request
3900typedef ZB_PACKED_PRE struct
3901{
3902 zb_uint8_t start_index;
3904
3905// Command structure for ZLL Commissioning get endpoint list request
3906typedef ZB_PACKED_PRE struct
3907{
3908 zb_uint8_t start_index;
3910
3911// Command structure for ZLL Commissioning scan response
3912typedef ZB_PACKED_PRE struct
3913{
3914 zb_uint32_t transaction;
3916 zb_uint8_t zigbee_information;
3917 zb_uint8_t zll_information;
3918 zb_uint16_t key_bitmask;
3919 zb_uint32_t response_id;
3920 zb_ieee_addr_t extended_pan_id;
3921 zb_uint8_t network_update_id;
3922 zb_uint8_t logical_channel;
3923 zb_uint16_t pan_id;
3924 zb_uint16_t network_address;
3927 zb_uint8_t endpoint_id;
3928 zb_uint16_t profile_id;
3929 zb_uint16_t device_id;
3930 zb_uint8_t version;
3931 zb_uint8_t group_id_count;
3933
3934// Command structure for ZLL Commissioning device information response
3935typedef ZB_PACKED_PRE struct
3936{
3937 zb_uint32_t transaction;
3938 zb_uint8_t number_of_sub_devices;
3939 zb_uint8_t start_index;
3943
3944// Command structure for ZLL Commissioning network start response
3945typedef ZB_PACKED_PRE struct
3946{
3947 zb_uint32_t transaction;
3948 zb_uint8_t status;
3949 zb_ieee_addr_t extended_pan_id;
3950 zb_uint8_t network_update_id;
3951 zb_uint8_t logical_channel;
3952 zb_uint16_t pan_id;
3954
3955// Command structure for ZLL Commissioning network join router response
3956typedef ZB_PACKED_PRE struct
3957{
3958 zb_uint32_t transaction;
3959 zb_uint8_t status;
3961
3962// Command structure for ZLL Commissioning network join end device response
3963typedef ZB_PACKED_PRE struct
3964{
3965 zb_uint32_t transaction;
3966 zb_uint8_t status;
3968
3969// Command structure for ZLL Commissioning endpoint information
3970typedef ZB_PACKED_PRE struct
3971{
3972 zb_ieee_addr_t ieee_address;
3973 zb_uint16_t network_address;
3974 zb_uint8_t endpoint_id;
3975 zb_uint16_t profile_id;
3976 zb_uint16_t device_id;
3977 zb_uint8_t version;
3979
3980// Command structure for ZLL Commissioning get group identifiers response
3981typedef ZB_PACKED_PRE struct
3982{
3983 zb_uint8_t total;
3984 zb_uint8_t start_index;
3985 zb_uint8_t count;
3988
3989// Command structure for ZLL Commissioning get endpoint list response
3990typedef ZB_PACKED_PRE struct
3991{
3992 zb_uint8_t total;
3993 zb_uint8_t start_index;
3994 zb_uint8_t count;
3997
3998// Command structure for Remote CLI cli command
3999typedef ZB_PACKED_PRE struct
4000{
4001 zb_uint8_t * cli_cmd;
4003
4004// Command structure for Remote CLI enable remote cli
4005typedef ZB_PACKED_PRE struct
4006{
4007 zb_uint8_t cli_enable;
4010
4011// Command structure for Remote CLI cli command response
4012typedef ZB_PACKED_PRE struct
4013{
4014 zb_uint8_t * cli_cmd_resp;
4016
4017// Command structure for SL Works With All Hubs enable aps link key authorization
4018typedef ZB_PACKED_PRE struct
4019{
4021 zb_uint8_t * cluster_id;
4023
4024// Command structure for SL Works With All Hubs disable aps link key authorization
4025typedef ZB_PACKED_PRE struct
4026{
4027 zb_uint8_t number_exempt_clusters;
4028 zb_uint8_t * cluster_id;
4030
4031// Command structure for SL Works With All Hubs aps link key authorization query
4032typedef ZB_PACKED_PRE struct
4033{
4034 zb_uint16_t cluster_id;
4036
4037// Command structure for SL Works With All Hubs enable wwah app event retry algorithm
4038typedef ZB_PACKED_PRE struct
4039{
4045
4046// Command structure for SL Works With All Hubs enable wwah rejoin algorithm
4047typedef ZB_PACKED_PRE struct
4048{
4052 zb_uint16_t max_backoff_time_seconds;
4055
4056// Command structure for SL Works With All Hubs set ias zone enrollment method
4057typedef ZB_PACKED_PRE struct
4058{
4061
4062// Command structure for SL Works With All Hubs enable periodic router check ins
4063typedef ZB_PACKED_PRE struct
4064{
4067
4068// Command structure for SL Works With All Hubs set mac poll failure wait time
4069typedef ZB_PACKED_PRE struct
4070{
4071 zb_uint8_t wait_time;
4073
4074// Command structure for SL Works With All Hubs set pending network update
4075typedef ZB_PACKED_PRE struct
4076{
4077 zb_uint8_t channel;
4078 zb_uint16_t pan_id;
4080
4081// Command structure for SL Works With All Hubs require aps acks on unicasts
4082typedef ZB_PACKED_PRE struct
4083{
4084 zb_uint8_t number_exempt_clusters;
4085 zb_uint8_t * cluster_id;
4087
4088// Command structure for SL Works With All Hubs debug report query
4089typedef ZB_PACKED_PRE struct
4090{
4093
4094// Command structure for SL Works With All Hubs survey beacons
4095typedef ZB_PACKED_PRE struct
4096{
4099
4100// Command structure for SL Works With All Hubs use trust center for cluster server
4101typedef ZB_PACKED_PRE struct
4102{
4104 zb_uint8_t * cluster_id;
4106
4107// Command structure for SL Works With All Hubs aps link key authorization query response
4108typedef ZB_PACKED_PRE struct
4109{
4110 zb_uint16_t cluster_id;
4113
4114// Command structure for SL Works With All Hubs powering off notification
4115typedef ZB_PACKED_PRE struct
4116{
4118 zb_uint16_t manufacturer_id;
4122
4123// Command structure for SL Works With All Hubs powering on notification
4124typedef ZB_PACKED_PRE struct
4125{
4126 zb_uint8_t power_notification_reason;
4127 zb_uint16_t manufacturer_id;
4128 zb_uint8_t manufacturer_reason_length;
4129 zb_uint8_t * manufacturer_reason;
4131
4132// Command structure for SL Works With All Hubs short address change
4133typedef ZB_PACKED_PRE struct
4134{
4135 zb_ieee_addr_t device_eui64;
4136 zb_uint16_t device_short;
4138
4139// Command structure for SL Works With All Hubs aps ack enablement query response
4140typedef ZB_PACKED_PRE struct
4141{
4142 zb_uint8_t number_exempt_clusters;
4143 zb_uint8_t * cluster_id;
4145
4146// Command structure for SL Works With All Hubs power descriptor change
4147typedef ZB_PACKED_PRE struct
4148{
4154
4155// Command structure for SL Works With All Hubs new debug report notification
4156typedef ZB_PACKED_PRE struct
4157{
4158 zb_uint8_t debug_report_id;
4161
4162// Command structure for SL Works With All Hubs debug report query response
4163typedef ZB_PACKED_PRE struct
4164{
4165 zb_uint8_t debug_report_id;
4166 zb_uint8_t * debug_report_data;
4168
4169// Command structure for SL Works With All Hubs trust center for cluster server query response
4170typedef ZB_PACKED_PRE struct
4171{
4172 zb_uint8_t number_of_clusters;
4173 zb_uint8_t * cluster_id;
4175
4176// Command structure for SL Works With All Hubs survey beacons response
4177typedef ZB_PACKED_PRE struct
4178{
4180 zb_uint8_t * beacon;
4182
4183// Command structure for SL Works With All Hubs use trust center for cluster server response
4184typedef ZB_PACKED_PRE struct
4185{
4186 zb_uint8_t status;
4188 zb_uint8_t * cluster_status;
4190
4191
4192#endif // TR_ZCL_CMD_STRUCTS_H
ZB_PACKED_PRE struct @172253110004306157150152044335272231243136346121 tr_information_configure_delivery_enable_cmd_t
zb_uint8_t * partitioned_indicator_and_frame
Definition tr_zcl_cmd_structs.h:564
zb_uint16_t new_currency
Definition tr_zcl_cmd_structs.h:2257
zb_ieee_addr_t eui64_of_requesting_device
Definition tr_zcl_cmd_structs.h:3136
ZB_PACKED_PRE struct @113242070140243161360030327147354244337040232351 tr_chatting_get_node_information_request_cmd_t
zb_uint8_t step_size
Definition tr_zcl_cmd_structs.h:303
zb_int16_t step_y
Definition tr_zcl_cmd_structs.h:1650
zb_uint32_t end_time
Definition tr_zcl_cmd_structs.h:2333
zb_uint8_t status_feedback
Definition tr_zcl_cmd_structs.h:3229
ZB_PACKED_PRE struct @364273364302123344176046235165302311157127216305 tr_ias_ace_arm_cmd_t
ZB_PACKED_PRE struct @306372164055333163144353361157076372324147036012 tr_identify_update_commission_state_cmd_t
ZB_PACKED_PRE struct @051366353025130313103216012250145262042324174322 tr_prepayment_change_debt_cmd_t
zb_int8_t average_load_adjustment_percentage_applied
Definition tr_zcl_cmd_structs.h:2280
ZB_PACKED_PRE struct @234247303004224220313320054316002231113110315236 tr_voice_over_zig_bee_voice_transmission_cmd_t
zb_uint8_t sub_payload_control
Definition tr_zcl_cmd_structs.h:2159
ZB_PACKED_PRE struct @024252205100225315214331165152320005247075344024 tr_power_profile_power_profile_response_cmd_t
zb_int16_t rate_x
Definition tr_zcl_cmd_structs.h:1640
ZB_PACKED_PRE struct @020353060120233175107356222075332051345356065070 tr_information_update_cmd_t
zb_int8_t average_load_adjustment_percentage
Definition tr_zcl_cmd_structs.h:2308
ZB_PACKED_PRE struct @310173117231065373240075014155376244075063141147 tr_sl_works_with_all_hubs_debug_report_query_cmd_t
ZB_PACKED_PRE struct @301217257135263202272211221301342300001005035065 tr_sl_works_with_all_hubs_debug_report_query_response_cmd_t
zb_uint8_t alarm_status
Definition tr_zcl_cmd_structs.h:1848
zb_uint8_t * samples
Definition tr_zcl_cmd_structs.h:2505
ZB_PACKED_PRE struct @122205131230234314157350022347073236003147014122 tr_simple_metering_request_fast_poll_mode_cmd_t
ZB_PACKED_PRE struct @024073110340333312032254347147375236104170344245 tr_ias_ace_bypass_cmd_t
zb_uint8_t total_number_of_reports
Definition tr_zcl_cmd_structs.h:1005
zb_uint32_t site_id_time
Definition tr_zcl_cmd_structs.h:3059
ZB_PACKED_PRE struct @175200201124132146360225054353006164100204164304 tr_tunneling_transfer_data_server_to_client_cmd_t
ZB_PACKED_PRE struct @353335071172041057123265017243012366041015047037 tr_ias_zone_zone_status_change_notification_cmd_t
zb_uint8_t optional_extended_message_control
Definition tr_zcl_cmd_structs.h:2583
zb_uint32_t start_date_time
Definition tr_zcl_cmd_structs.h:3068
zb_uint8_t cli_enable
Definition tr_zcl_cmd_structs.h:4007
ZB_PACKED_PRE struct @150032303055057336023044137052152041311310347253 tr_appliance_events_and_alert_events_notification_cmd_t
zb_uint8_t max_redelivery_attempts
Definition tr_zcl_cmd_structs.h:4043
zb_uint8_t arm_mode
Definition tr_zcl_cmd_structs.h:1769
zb_uint8_t * contents
Definition tr_zcl_cmd_structs.h:3239
zb_uint16_t zone_type
Definition tr_zcl_cmd_structs.h:1762
zb_uint16_t service_provider_id
Definition tr_zcl_cmd_structs.h:3655
zb_uint8_t samp_freq
Definition tr_zcl_cmd_structs.h:3441
ZB_PACKED_PRE struct @104132303003315327264212177377036053317237150116 tr_door_lock_set_pin_cmd_t
ZB_PACKED_PRE struct @057205313160173355076137234307272100074115201004 tr_tunneling_ready_data_server_to_client_cmd_t
zb_uint8_t calorific_value_trailing_digit
Definition tr_zcl_cmd_structs.h:2127
ZB_PACKED_PRE struct @172262343043307314364065055320325013146166366163 tr_electrical_measurement_get_profile_info_response_command_cmd_t
zb_uint8_t ack_options
Definition tr_zcl_cmd_structs.h:584
ZB_PACKED_PRE struct @001313113034112107211140330353152022177322017265 tr_ias_ace_panel_status_changed_cmd_t
zb_uint8_t c_o2_value_trailing_digit
Definition tr_zcl_cmd_structs.h:2185
zb_uint32_t current_provider_id
Definition tr_zcl_cmd_structs.h:3035
zb_uint32_t credit_payment
Definition tr_zcl_cmd_structs.h:2245
zb_uint32_t start_time
Definition tr_zcl_cmd_structs.h:1964
zb_int16_t rate_y
Definition tr_zcl_cmd_structs.h:1641
zb_uint8_t price_trailing_digit_and_price_tier
Definition tr_zcl_cmd_structs.h:2078
ZB_PACKED_PRE struct @154111170164316223066204060013271123261300227176 tr_price_publish_block_period_cmd_t
zb_uint16_t sample_request_interval
Definition tr_zcl_cmd_structs.h:2386
ZB_PACKED_PRE struct @124150131324235031373166200031026024155005342072 tr_price_publish_cpp_event_cmd_t
ZB_PACKED_PRE struct @315063204230032007041115266331012235116116306042 tr_partition_read_handshake_param_response_cmd_t
zb_uint8_t configuration_control
Definition tr_zcl_cmd_structs.h:3070
zb_uint8_t log_payload_control
Definition tr_zcl_cmd_structs.h:3122
zb_uint8_t * chat_participant_list
Definition tr_zcl_cmd_structs.h:3538
ZB_PACKED_PRE struct @017227152007314310245374045206131133216162052115 tr_level_control_move_with_on_off_cmd_t
ZB_PACKED_PRE struct @013250264354313047274204217354315102216136156273 tr_price_publish_co2_value_cmd_t
ZB_PACKED_PRE struct @275245231020226007176042370025203237123200163324 tr_prepayment_change_payment_mode_response_cmd_t
zb_int8_t amount
Definition tr_zcl_cmd_structs.h:1521
ZB_PACKED_PRE struct @240106235232253102277243354235037230206304305235 tr_information_delete_response_cmd_t
zb_uint8_t codec_rate
Definition tr_zcl_cmd_structs.h:3442
zb_uint8_t schedule_id
Definition tr_zcl_cmd_structs.h:1177
ZB_PACKED_PRE struct @261010303347142341273270070031221025010145154377 tr_device_management_publish_change_of_supplier_cmd_t
zb_uint8_t profile_count
Definition tr_zcl_cmd_structs.h:3785
zb_uint8_t day_id_ref_tuesday
Definition tr_zcl_cmd_structs.h:2967
zb_uint16_t cooling_temperature_set_point_applied
Definition tr_zcl_cmd_structs.h:2278
ZB_PACKED_PRE struct @035332247031207154023221377106100235106323216026 tr_information_send_preference_response_cmd_t
ZB_PACKED_PRE struct @346233334025363347220270110256031010076322066336 tr_poll_control_set_long_poll_interval_cmd_t
ZB_PACKED_PRE struct @257332277160302307022174313313024257163157102336 tr_door_lock_set_pin_response_cmd_t
zb_uint32_t debug_report_size
Definition tr_zcl_cmd_structs.h:4159
zb_uint32_t block_period_start_time
Definition tr_zcl_cmd_structs.h:2103
zb_uint32_t local_pairing_information_version
Definition tr_zcl_cmd_structs.h:3135
zb_uint16_t identify_duration
Definition tr_zcl_cmd_structs.h:3821
zb_uint8_t number_of_price_tiers_in_use
Definition tr_zcl_cmd_structs.h:2139
ZB_PACKED_PRE struct @031173174334051332052042055243064200100242040276 tr_price_publish_currency_conversion_cmd_t
zb_uint8_t debt_recovery_method
Definition tr_zcl_cmd_structs.h:2722
zb_uint8_t supply_uncontrolled_flow_state
Definition tr_zcl_cmd_structs.h:2436
ZB_PACKED_PRE struct @305214045003272061004257323312163144076160217242 tr_electrical_measurement_get_measurement_profile_response_command_cmd_t
ZB_PACKED_PRE struct @363031100235370346327307240212051022264355054057 tr_tunneling_transfer_data_error_server_to_client_cmd_t
zb_uint8_t max_data_size
Definition tr_zcl_cmd_structs.h:613
zb_uint8_t gpd_key[16]
Definition tr_zcl_cmd_structs.h:1052
ZB_PACKED_PRE struct @211311064051037255364123066172044337004323054360 tr_zll_commissioning_network_start_request_cmd_t
ZB_PACKED_PRE struct @251034216276362243174075012350227151262053247050 tr_tunneling_supported_tunnel_protocols_response_cmd_t
zb_uint16_t source_uid
Definition tr_zcl_cmd_structs.h:3513
zb_uint8_t * protocol_list
Definition tr_zcl_cmd_structs.h:2700
ZB_PACKED_PRE struct @346024027141323212104072360037036060226214045240 tr_scenes_remove_all_scenes_response_cmd_t
ZB_PACKED_PRE struct @336273113143314166143167325321215061214007362011 tr_chatting_switch_chairman_confirm_cmd_t
ZB_PACKED_PRE struct @264221256002355140056345267146140041132310135130 tr_price_publish_block_thresholds_cmd_t
zb_uint8_t sink_table_entries_count
Definition tr_zcl_cmd_structs.h:1095
zb_uint8_t deletion_options
Definition tr_zcl_cmd_structs.h:3245
zb_uint8_t number_of_block_thresholds_in_use
Definition tr_zcl_cmd_structs.h:2140
ZB_PACKED_PRE struct @215046034312155352016242104153251044063366227304 tr_scenes_add_scene_cmd_t
ZB_PACKED_PRE struct @265030246256351116037310112311041017326077253122 tr_power_profile_get_overall_schedule_price_response_cmd_t
zb_uint8_t * message_response
Definition tr_zcl_cmd_structs.h:2566
zb_uint8_t * file_size
Definition tr_zcl_cmd_structs.h:3335
ZB_PACKED_PRE struct @244006267037314134256150237312106264114201351221 tr_door_lock_set_weekday_schedule_cmd_t
zb_uint8_t query_jitter
Definition tr_zcl_cmd_structs.h:654
zb_uint8_t update_flags
Definition tr_zcl_cmd_structs.h:1699
ZB_PACKED_PRE struct @357327030017362346362174257275307022025274014346 tr_prepayment_publish_top_up_log_cmd_t
zb_uint8_t credit_payment_status
Definition tr_zcl_cmd_structs.h:2244
zb_uint32_t timestamp
Definition tr_zcl_cmd_structs.h:1306
ZB_PACKED_PRE struct @331154217247000267062375235121240240137367362131 tr_over_the_air_bootloading_upgrade_end_response_cmd_t
zb_uint32_t billing_period_start_time
Definition tr_zcl_cmd_structs.h:2205
ZB_PACKED_PRE struct @137124045154353235364326244255101331177257125023 tr_gaming_game_announcement_cmd_t
zb_uint16_t zone_status
Definition tr_zcl_cmd_structs.h:1753
zb_ieee_addr_t replying_device
Definition tr_zcl_cmd_structs.h:411
zb_uint8_t notification_scheme
Definition tr_zcl_cmd_structs.h:2402
ZB_PACKED_PRE struct @054342023360024253055230012050001332047241327065 tr_power_profile_power_profile_schedule_constraints_request_cmd_t
zb_uint8_t total_number_of_non_empty_proxy_table_entries
Definition tr_zcl_cmd_structs.h:1024
zb_uint16_t unread_entries
Definition tr_zcl_cmd_structs.h:1557
ZB_PACKED_PRE struct @007074350271302071071171233145055073235156262322 tr_door_lock_lock_door_cmd_t
ZB_PACKED_PRE struct @134300143347040312230224237354337345002126154043 tr_door_lock_set_yearday_schedule_cmd_t
ZB_PACKED_PRE struct @243212173235136002361265333334103031232126340147 tr_prepayment_get_debt_repayment_log_cmd_t
ZB_PACKED_PRE struct @103216127244255243254253027131224352335042365156 tr_door_lock_get_rfid_response_cmd_t
zb_uint8_t sink_endpoint
Definition tr_zcl_cmd_structs.h:957
zb_uint16_t warning_duration
Definition tr_zcl_cmd_structs.h:1886
zb_int8_t rssi
Definition tr_zcl_cmd_structs.h:415
zb_uint32_t current_power_source
Definition tr_zcl_cmd_structs.h:4151
ZB_PACKED_PRE struct @364216232306134056241306035315104040261367076364 tr_scenes_view_scene_cmd_t
zb_uint8_t debt_amount_type
Definition tr_zcl_cmd_structs.h:2723
zb_uint32_t start_sampling_time
Definition tr_zcl_cmd_structs.h:2384
zb_uint8_t * calendar_name
Definition tr_zcl_cmd_structs.h:2939
ZB_PACKED_PRE struct @053355116074171065357271023231265015006074301046 tr_key_establishment_initiate_key_establishment_response_cmd_t
zb_uint16_t event_offset
Definition tr_zcl_cmd_structs.h:3097
zb_uint8_t number_of_generation_tiers
Definition tr_zcl_cmd_structs.h:2091
ZB_PACKED_PRE struct @142046264022231224127306110074153162127066275172 tr_rssi_location_report_rssi_measurements_cmd_t
zb_uint8_t group_id_count
Definition tr_zcl_cmd_structs.h:3931
zb_uint8_t protocol_list_complete
Definition tr_zcl_cmd_structs.h:2698
ZB_PACKED_PRE struct @246214003130264026347333250265320056013211224130 tr_prepayment_consumer_top_up_response_cmd_t
zb_uint16_t service_id
Definition tr_zcl_cmd_structs.h:3600
zb_uint16_t debt_recovery_collection_time
Definition tr_zcl_cmd_structs.h:2725
zb_uint8_t * cli_cmd_resp
Definition tr_zcl_cmd_structs.h:4014
ZB_PACKED_PRE struct @355276037366135276143224310363223351105051324065 tr_sl_works_with_all_hubs_aps_link_key_authorization_query_response_cmd_t
ZB_PACKED_PRE struct @213232074126176164120263241273354300327103114303 tr_price_publish_tariff_information_cmd_t
ZB_PACKED_PRE struct @161154166051102132130043045245136136116032217373 tr_power_profile_energy_phases_schedule_notification_cmd_t
zb_int16_t step_x
Definition tr_zcl_cmd_structs.h:1649
ZB_PACKED_PRE struct @363030221202137013032012117146023046302366020313 tr_zll_commissioning_scan_response_cmd_t
zb_uint32_t local_end_time
Definition tr_zcl_cmd_structs.h:1206
ZB_PACKED_PRE struct @132207363016022050111372151066245056157150117367 tr_window_covering_window_covering_go_to_lift_value_cmd_t
ZB_PACKED_PRE struct @021141341144040037104123320215004013210173246360 tr_price_get_price_matrix_cmd_t
ZB_PACKED_PRE struct @221306363047037140334167223251211310240130242251 tr_scenes_remove_scene_response_cmd_t
zb_uint8_t proposed_supply_status
Definition tr_zcl_cmd_structs.h:2420
zb_ieee_addr_t manager_target
Definition tr_zcl_cmd_structs.h:1933
zb_uint8_t debt_type
Definition tr_zcl_cmd_structs.h:2793
zb_uint8_t total_number_of_commands
Definition tr_zcl_cmd_structs.h:2822
ZB_PACKED_PRE struct @222013273063321002376251271336043164252320214372 tr_door_lock_set_weekday_schedule_response_cmd_t
zb_uint8_t cpp_auth
Definition tr_zcl_cmd_structs.h:2059
ZB_PACKED_PRE struct @303314106066255344052142177141250157227036163160 tr_door_lock_programming_event_notification_cmd_t
zb_uint8_t event_control
Definition tr_zcl_cmd_structs.h:2282
zb_uint8_t appliance_status
Definition tr_zcl_cmd_structs.h:869
zb_uint32_t confirmation_time
Definition tr_zcl_cmd_structs.h:2564
ZB_PACKED_PRE struct @067106105007077375211375367025160227221070217100 tr_price_get_scheduled_prices_cmd_t
zb_uint8_t entries_count
Definition tr_zcl_cmd_structs.h:1026
ZB_PACKED_PRE struct @372042041337330012102302143371310355306271043045 tr_scenes_add_scene_response_cmd_t
zb_uint8_t scene_id_from
Definition tr_zcl_cmd_structs.h:182
ZB_PACKED_PRE struct @131334160266325035225237110163104267242305221262 tr_prepayment_set_low_credit_warning_level_cmd_t
zb_uint8_t * site_id
Definition tr_zcl_cmd_structs.h:3061
zb_uint8_t alternate_cost_unit
Definition tr_zcl_cmd_structs.h:2087
zb_uint8_t generation_price_ratio
Definition tr_zcl_cmd_structs.h:2085
ZB_PACKED_PRE struct @151327223131104270140157077364155120241135366250 tr_price_cancel_tariff_cmd_t
ZB_PACKED_PRE struct @143237347266335054161323045216101056224250214064 tr_price_get_block_periods_cmd_t
zb_uint8_t channel
Definition tr_zcl_cmd_structs.h:1062
ZB_PACKED_PRE struct @117134020103367254365230276307001106373041075234 tr_green_power_gp_notification_cmd_t
zb_uint8_t number_of_labels
Definition tr_zcl_cmd_structs.h:2196
ZB_PACKED_PRE struct @000077260266146012235247337037114020304035323073 tr_chatting_chat_message_cmd_t
ZB_PACKED_PRE struct @124070166220313274027257037350377313140021237213 tr_ias_ace_bypass_response_cmd_t
ZB_PACKED_PRE struct @350320146231201320205365112357211217104304243042 tr_billing_unsubscribe_cmd_t
zb_uint8_t extended_register_tier
Definition tr_zcl_cmd_structs.h:2095
ZB_PACKED_PRE struct @001002017250130042004347302056124055074156012130 tr_sl_works_with_all_hubs_powering_off_notification_cmd_t
zb_uint8_t * cluster_list_server
Definition tr_zcl_cmd_structs.h:1000
zb_uint16_t device_short
Definition tr_zcl_cmd_structs.h:4136
ZB_PACKED_PRE struct @043333322376244316324033075351131245310116027162 tr_level_control_move_cmd_t
zb_uint8_t on_off_control
Definition tr_zcl_cmd_structs.h:276
ZB_PACKED_PRE struct @061221366146145347266331205152207276325261045047 tr_commissioning_reset_startup_parameters_cmd_t
zb_uint8_t specific_game
Definition tr_zcl_cmd_structs.h:3371
zb_uint16_t section15
Definition tr_zcl_cmd_structs.h:1821
ZB_PACKED_PRE struct @221073071225202274365151144156015240065102301255 tr_payment_receipt_delivery_cmd_t
zb_uint8_t total_profile_num
Definition tr_zcl_cmd_structs.h:765
zb_uint8_t command_options
Definition tr_zcl_cmd_structs.h:1958
zb_uint8_t block_period_duration_type
Definition tr_zcl_cmd_structs.h:2106
ZB_PACKED_PRE struct @134027342056162244366376333311046143062100232375 tr_calendar_get_seasons_cmd_t
zb_ieee_addr_t device_ieee_address
Definition tr_zcl_cmd_structs.h:1906
zb_uint16_t off_wait_time
Definition tr_zcl_cmd_structs.h:278
ZB_PACKED_PRE struct @074315375262261372314052374036076102367146007350 tr_level_control_move_to_level_with_on_off_cmd_t
ZB_PACKED_PRE struct @004016025155042161067117344352075342020122052211 tr_voice_over_zig_bee_establishment_response_cmd_t
ZB_PACKED_PRE struct @170065331201346310224203342043347311301107033210 tr_billing_session_keep_alive_cmd_t
ZB_PACKED_PRE struct @052210202177276074365064341116353007061260317372 tr_ias_zone_initiate_test_mode_cmd_t
zb_uint16_t file_start_record
Definition tr_zcl_cmd_structs.h:3350
ZB_PACKED_PRE struct @177356321107043052071331041137252117333273351231 tr_messaging_get_message_cancellation_cmd_t
ZB_PACKED_PRE struct @112345260051105116035123243053162354000217001321 tr_price_get_conversion_factor_cmd_t
ZB_PACKED_PRE struct @303347003021145243313157257371117234122264377030 tr_door_lock_clear_rfid_response_cmd_t
ZB_PACKED_PRE struct @344156036072156151134245166040370170156131074161 tr_door_lock_set_user_type_response_cmd_t
zb_uint16_t page_size
Definition tr_zcl_cmd_structs.h:626
ZB_PACKED_PRE struct @015214047057143004022145354135346125050110125321 tr_price_get_tier_labels_cmd_t
zb_uint8_t transmit_options
Definition tr_zcl_cmd_structs.h:3357
zb_uint16_t number_of_bytes_left
Definition tr_zcl_cmd_structs.h:2643
ZB_PACKED_PRE struct @336142367146150115004026305377227130247005031123 tr_door_lock_clear_yearday_schedule_response_cmd_t
zb_uint8_t gpd_endpoint
Definition tr_zcl_cmd_structs.h:907
ZB_PACKED_PRE struct @207005046216273106334102210115301203066056007232 tr_price_price_acknowledgement_cmd_t
zb_uint8_t first_backoff_time_seconds
Definition tr_zcl_cmd_structs.h:4040
zb_uint16_t timeout
Definition tr_zcl_cmd_structs.h:43
ZB_PACKED_PRE struct @123113275371056352274120336072214276151213215224 tr_generic_tunnel_advertise_protocol_address_cmd_t
zb_uint8_t jitter
Definition tr_zcl_cmd_structs.h:512
zb_uint16_t section0
Definition tr_zcl_cmd_structs.h:1806
ZB_PACKED_PRE struct @377164206305337277243261276300214007045114166222 tr_poll_control_set_short_poll_interval_cmd_t
zb_uint8_t price_control
Definition tr_zcl_cmd_structs.h:2090
zb_uint8_t * address_endpoint_and_nickname
Definition tr_zcl_cmd_structs.h:3592
ZB_PACKED_PRE struct @357231341344101047312156231272215344314275332347 tr_over_the_air_bootloading_query_specific_file_response_cmd_t
zb_uint16_t fast_rejoin_timeout_seconds
Definition tr_zcl_cmd_structs.h:4049
zb_uint8_t effect_variant
Definition tr_zcl_cmd_structs.h:37
zb_uint32_t provider_change_control
Definition tr_zcl_cmd_structs.h:3040
ZB_PACKED_PRE struct @032115013142244011241104124260356063046005226266 tr_data_sharing_modify_record_request_cmd_t
zb_uint8_t signature_type
Definition tr_zcl_cmd_structs.h:2283
ZB_PACKED_PRE struct @364305231307242033041367216042262136235201007131 tr_sl_works_with_all_hubs_enable_wwah_rejoin_algorithm_cmd_t
ZB_PACKED_PRE struct @025141063041350016221051342002056233052073323341 tr_simple_metering_schedule_snapshot_response_cmd_t
ZB_PACKED_PRE struct @216327202242226341211370264221073001056152003271 tr_sl_works_with_all_hubs_enable_aps_link_key_authorization_cmd_t
zb_uint8_t duration
Definition tr_zcl_cmd_structs.h:2353
ZB_PACKED_PRE struct @204052002002350005153102341076164100351377225126 tr_tunneling_get_supported_tunnel_protocols_cmd_t
ZB_PACKED_PRE struct @345341230031233004266314311376200172224050147327 tr_price_get_block_thresholds_cmd_t
ZB_PACKED_PRE struct @333276375020173321076220167276053057017223250311 tr_simple_metering_change_supply_cmd_t
ZB_PACKED_PRE struct @161261317101334277051200175316270027061346145001 tr_simple_metering_start_sampling_cmd_t
zb_uint16_t section11
Definition tr_zcl_cmd_structs.h:1817
ZB_PACKED_PRE struct @166336077263275277122001115216003311136363252060 tr_price_publish_price_cmd_t
ZB_PACKED_PRE struct @302233041364010227131113126273047276264004013045 tr_calendar_get_special_days_cmd_t
zb_uint32_t issuer_tariff_id
Definition tr_zcl_cmd_structs.h:2013
zb_uint16_t key_bitmask
Definition tr_zcl_cmd_structs.h:3918
zb_uint8_t step_mode
Definition tr_zcl_cmd_structs.h:302
ZB_PACKED_PRE struct @253365206055110301145024365063046044067247110103 tr_door_lock_get_weekday_schedule_response_cmd_t
zb_uint8_t * eui64s
Definition tr_zcl_cmd_structs.h:3146
ZB_PACKED_PRE struct @375230107101215205020130260277053036265016272126 tr_voice_over_zig_bee_establishment_request_cmd_t
zb_uint16_t free_group_identifier_range_end
Definition tr_zcl_cmd_structs.h:3845
zb_uint16_t color_x
Definition tr_zcl_cmd_structs.h:1630
ZB_PACKED_PRE struct @031036020142070312365054243027020214115243360335 tr_chatting_join_chat_response_cmd_t
ZB_PACKED_PRE struct @002011033251172333047255106267021170174056027332 tr_information_configure_set_root_id_cmd_t
ZB_PACKED_PRE struct @252031227161313222310201264050156214217130156110 tr_door_lock_clear_yearday_schedule_cmd_t
ZB_PACKED_PRE struct @235243360061322076300073003321340324072217030344 tr_chatting_search_chat_response_cmd_t
zb_uint16_t duration_between_rejoins_seconds
Definition tr_zcl_cmd_structs.h:4050
zb_uint32_t snapshot_cause
Definition tr_zcl_cmd_structs.h:2368
ZB_PACKED_PRE struct @051011277314002057006213127372214361323101170325 tr_color_control_move_hue_cmd_t
ZB_PACKED_PRE struct @116134307177134100044136142014172051026342326221 tr_prepayment_get_prepay_snapshot_cmd_t
zb_int16_t cooling_temperature_set_point
Definition tr_zcl_cmd_structs.h:2306
zb_uint16_t section3
Definition tr_zcl_cmd_structs.h:1809
zb_uint16_t zone_status_mask
Definition tr_zcl_cmd_structs.h:1794
ZB_PACKED_PRE struct @210143361156263003054142254036274045310364146013 tr_door_lock_get_log_record_cmd_t
zb_uint8_t event_status
Definition tr_zcl_cmd_structs.h:2275
ZB_PACKED_PRE struct @017256224226340144142022323213215031036121053072 tr_key_establishment_confirm_key_data_request_cmd_t
zb_uint8_t * rate_label
Definition tr_zcl_cmd_structs.h:2073
ZB_PACKED_PRE struct @033252115072245115161077042000016144032122257112 tr_door_lock_get_log_record_response_cmd_t
ZB_PACKED_PRE struct @016335062137156076067355206234132335340254037012 tr_price_publish_conversion_factor_cmd_t
zb_uint8_t duty_cycle_applied
Definition tr_zcl_cmd_structs.h:2281
ZB_PACKED_PRE struct @041061102201121056153031164036341201051271350301 tr_scenes_enhanced_add_scene_response_cmd_t
ZB_PACKED_PRE struct @127344270123243002044267301024265241066042204217 tr_prepayment_consumer_top_up_cmd_t
zb_uint8_t * endpoint_information_record_list
Definition tr_zcl_cmd_structs.h:3995
zb_uint8_t cluster_status_length
Definition tr_zcl_cmd_structs.h:4187
ZB_PACKED_PRE struct @037253134217347025006002317211135230106220214157 tr_key_establishment_initiate_key_establishment_request_cmd_t
zb_uint8_t number_of_intervals_delivered
Definition tr_zcl_cmd_structs.h:3797
zb_uint32_t c_o2_value
Definition tr_zcl_cmd_structs.h:2183
ZB_PACKED_PRE struct @136104065047021155054032263322271272132336274124 tr_messaging_display_protected_message_cmd_t
zb_uint8_t join_as_master
Definition tr_zcl_cmd_structs.h:3379
zb_uint8_t day_id_ref_monday
Definition tr_zcl_cmd_structs.h:2966
zb_uint8_t * snapshot_schedule_payload
Definition tr_zcl_cmd_structs.h:2362
ZB_PACKED_PRE struct @064364245012011014122202166176351260252117155352 tr_device_management_request_new_password_cmd_t
ZB_PACKED_PRE struct @226213227127202011252311045067154233153344004037 tr_color_control_move_to_hue_cmd_t
ZB_PACKED_PRE struct @167022356334131212124122051212306030051145103247 tr_door_lock_get_yearday_schedule_cmd_t
zb_uint8_t log_queue_size
Definition tr_zcl_cmd_structs.h:3763
ZB_PACKED_PRE struct @233130162375316102245223300235043044010304002163 tr_green_power_gp_translation_table_request_cmd_t
zb_uint8_t snapshot_offset
Definition tr_zcl_cmd_structs.h:2376
zb_uint32_t transaction
Definition tr_zcl_cmd_structs.h:3805
zb_uint16_t log_entry_id
Definition tr_zcl_cmd_structs.h:1305
ZB_PACKED_PRE struct @126341255216226110057317262101210100134003037021 tr_device_management_update_site_id_cmd_t
zb_uint16_t section2
Definition tr_zcl_cmd_structs.h:1808
zb_uint8_t total_commands
Definition tr_zcl_cmd_structs.h:2491
ZB_PACKED_PRE struct @226163307377012316344017204047134143060041146126 tr_color_control_move_to_hue_and_saturation_cmd_t
ZB_PACKED_PRE struct @071043257146146004243003064233146101366125070133 tr_door_lock_get_holiday_schedule_response_cmd_t
zb_uint8_t source
Definition tr_zcl_cmd_structs.h:1308
zb_uint16_t group_id_to
Definition tr_zcl_cmd_structs.h:183
ZB_PACKED_PRE struct @361216244066363361271074225361272371313057315163 tr_key_establishment_ephemeral_data_response_cmd_t
zb_uint8_t * gpd_command_payload
Definition tr_zcl_cmd_structs.h:910
zb_ieee_addr_t gpd_ieee
Definition tr_zcl_cmd_structs.h:906
zb_uint8_t ephemeral_data_generate_time
Definition tr_zcl_cmd_structs.h:3159
ZB_PACKED_PRE struct @006321376076231356040324373121256221122356370251 tr_power_profile_energy_phases_schedule_state_response_cmd_t
zb_uint8_t * cluster_list_client
Definition tr_zcl_cmd_structs.h:1001
zb_uint8_t day_id_ref_wednesday
Definition tr_zcl_cmd_structs.h:2968
ZB_PACKED_PRE struct @332334241107244305175144005173033276175225201305 tr_identify_identify_cmd_t
zb_uint8_t day_id
Definition tr_zcl_cmd_structs.h:2951
ZB_PACKED_PRE struct @342367301274072007027160031043026271322143371062 tr_information_configure_node_description_cmd_t
zb_uint8_t power_profile_count
Definition tr_zcl_cmd_structs.h:783
ZB_PACKED_PRE struct @060370365140311347045306043141006231345324107142 tr_ias_wd_start_warning_cmd_t
ZB_PACKED_PRE struct @302230144363263170154323160154267130230036375253 tr_sl_works_with_all_hubs_set_ias_zone_enrollment_method_cmd_t
zb_uint8_t * snapshot_response_payload
Definition tr_zcl_cmd_structs.h:2474
ZB_PACKED_PRE struct @126375063371251011132070201225013340121035100024 tr_door_lock_get_holiday_schedule_cmd_t
zb_uint8_t event_configuration
Definition tr_zcl_cmd_structs.h:3069
ZB_PACKED_PRE struct @170240352200221154325321243257137155156215102004 tr_alarms_alarm_cmd_t
ZB_PACKED_PRE struct @313007307226114340064015155212343210310033032122 tr_simple_metering_mirror_removed_cmd_t
ZB_PACKED_PRE struct @314150034011373066345373106370340011322360055361 tr_door_lock_get_pin_response_cmd_t
ZB_PACKED_PRE struct @121125204047167133116303147062322335144273373103 tr_calendar_cancel_calendar_cmd_t
ZB_PACKED_PRE struct @260111350216123103022335356324024027324336254262 tr_sl_works_with_all_hubs_survey_beacons_cmd_t
zb_uint8_t * node_information_list
Definition tr_zcl_cmd_structs.h:3574
zb_uint8_t neighbors
Definition tr_zcl_cmd_structs.h:497
zb_int16_t coordinate1
Definition tr_zcl_cmd_structs.h:377
zb_uint8_t * nickname
Definition tr_zcl_cmd_structs.h:3483
zb_uint8_t supply_tamper_state
Definition tr_zcl_cmd_structs.h:2434
zb_uint8_t * identity
Definition tr_zcl_cmd_structs.h:3161
ZB_PACKED_PRE struct @357326134220165254230051257030060012100003324147 tr_price_publish_credit_payment_cmd_t
ZB_PACKED_PRE struct @030037065077027010307253061246257360221030323330 tr_poll_control_check_in_response_cmd_t
zb_uint8_t * chat_room_list
Definition tr_zcl_cmd_structs.h:3561
zb_uint32_t pairing_information_version
Definition tr_zcl_cmd_structs.h:3142
zb_uint16_t divisor
Definition tr_zcl_cmd_structs.h:2448
zb_uint16_t measurement_period
Definition tr_zcl_cmd_structs.h:2450
zb_uint8_t flag
Definition tr_zcl_cmd_structs.h:3439
zb_uint8_t manager_endpoint
Definition tr_zcl_cmd_structs.h:1934
zb_uint8_t generation_tier
Definition tr_zcl_cmd_structs.h:2092
ZB_PACKED_PRE struct @173322147043207375376020245165313354133236176206 tr_rssi_location_set_absolute_location_cmd_t
zb_uint8_t scene_id_to
Definition tr_zcl_cmd_structs.h:184
ZB_PACKED_PRE struct @300054176007023173314336142031252047016024140152 tr_information_send_preference_cmd_t
zb_uint8_t alerts_count
Definition tr_zcl_cmd_structs.h:3718
zb_uint16_t section6
Definition tr_zcl_cmd_structs.h:1812
ZB_PACKED_PRE struct @212135057053257316202157116131312166064250230367 tr_data_sharing_read_file_request_cmd_t
ZB_PACKED_PRE struct @366375065200172222133366367111335133131276134106 tr_zll_commissioning_network_join_router_response_cmd_t
zb_uint8_t connect_control
Definition tr_zcl_cmd_structs.h:1931
ZB_PACKED_PRE struct @316047330064303024226043072122201252251370161365 tr_simple_metering_take_snapshot_cmd_t
ZB_PACKED_PRE struct @025155177357157034353021142272200022352045205112 tr_color_control_move_to_saturation_cmd_t
ZB_PACKED_PRE struct @310154005150344240324104142013162267152151162102 tr_appliance_statistics_log_queue_response_cmd_t
ZB_PACKED_PRE struct @036222020132324163036046165161143137143361052310 tr_appliance_control_overload_warning_cmd_t
zb_uint16_t log_index
Definition tr_zcl_cmd_structs.h:1137
ZB_PACKED_PRE struct @133232311167114000077040372073073047046325152215 tr_sl_works_with_all_hubs_trust_center_for_cluster_server_query_response_cmd_t
zb_uint8_t interval_channel
Definition tr_zcl_cmd_structs.h:2332
ZB_PACKED_PRE struct @362353335165154213367133252113331066144170237051 tr_green_power_gp_proxy_table_request_cmd_t
ZB_PACKED_PRE struct @324354277236211165015351140012352254117203101223 tr_tunneling_close_tunnel_cmd_t
zb_uint8_t extended_number_of_price_tiers
Definition tr_zcl_cmd_structs.h:2093
zb_uint8_t calendar_time_reference
Definition tr_zcl_cmd_structs.h:2938
zb_uint8_t * apdu
Definition tr_zcl_cmd_structs.h:1925
zb_uint8_t price_trailing_digit
Definition tr_zcl_cmd_structs.h:714
zb_uint8_t key_index
Definition tr_zcl_cmd_structs.h:3835
ZB_PACKED_PRE struct @176336310103121060213001116122101373362260276136 tr_groups_view_group_response_cmd_t
zb_uint8_t number_of_debts
Definition tr_zcl_cmd_structs.h:2792
ZB_PACKED_PRE struct @115220053125111332274217060003336304050270354374 tr_demand_response_and_load_control_load_control_event_cmd_t
ZB_PACKED_PRE struct @075134130100110333334113150231036115371034214326 tr_appliance_control_write_functions_cmd_t
ZB_PACKED_PRE struct @247006031103273017352266236274255140277307121204 tr_on_off_off_with_effect_cmd_t
ZB_PACKED_PRE struct @017136202372012276015356162314153023052123173353 tr_simple_metering_local_change_supply_cmd_t
zb_uint8_t number_of_seasons
Definition tr_zcl_cmd_structs.h:2940
zb_uint8_t * device_information_record_list
Definition tr_zcl_cmd_structs.h:3941
zb_uint32_t min_issuer_event_id
Definition tr_zcl_cmd_structs.h:1989
zb_uint8_t number_of_zones
Definition tr_zcl_cmd_structs.h:1777
zb_uint16_t current_zigbee_stack_version
Definition tr_zcl_cmd_structs.h:647
ZB_PACKED_PRE struct @067143167116073166037016116331124052147373253067 tr_zll_commissioning_get_endpoint_list_request_cmd_t
zb_uint8_t arm_notification
Definition tr_zcl_cmd_structs.h:1800
ZB_PACKED_PRE struct @074217270171165352233312174205346312344171037077 tr_device_management_set_event_configuration_cmd_t
zb_uint8_t * scheduled_phases
Definition tr_zcl_cmd_structs.h:730
zb_uint16_t gpd_assigned_alias
Definition tr_zcl_cmd_structs.h:987
ZB_PACKED_PRE struct @222300036302365243045125017043363321064320315270 tr_data_rate_control_path_creation_cmd_t
zb_uint32_t issuer_calendar_id
Definition tr_zcl_cmd_structs.h:2899
zb_uint32_t fast_poll_mode_endtime
Definition tr_zcl_cmd_structs.h:2467
ZB_PACKED_PRE struct @167024362105055174125344216016012242156304075106 tr_calendar_publish_calendar_cmd_t
zb_int16_t heating_temperature_set_point
Definition tr_zcl_cmd_structs.h:2307
ZB_PACKED_PRE struct @042240343320014103003322232051042341364202376351 tr_11073_protocol_tunnel_connect_status_notification_cmd_t
ZB_PACKED_PRE struct @232307070234201026033005146052272073227110377000 tr_11073_protocol_tunnel_disconnect_request_cmd_t
ZB_PACKED_PRE struct @245301213373253047102164335352260200372271253054 tr_simple_metering_configure_notification_flags_cmd_t
zb_uint8_t bill_trailing_digit
Definition tr_zcl_cmd_structs.h:2222
zb_ieee_addr_t target_address
Definition tr_zcl_cmd_structs.h:397
zb_uint16_t enhanced_hue
Definition tr_zcl_cmd_structs.h:1668
zb_uint16_t originator_address
Definition tr_zcl_cmd_structs.h:3408
ZB_PACKED_PRE struct @007110326221023014131362345336033120315062243211 tr_sl_works_with_all_hubs_set_pending_network_update_cmd_t
zb_uint32_t standing_charge
Definition tr_zcl_cmd_structs.h:2144
ZB_PACKED_PRE struct @375036235067325034255304261203260043126367020257 tr_over_the_air_bootloading_image_notify_cmd_t
ZB_PACKED_PRE struct @332314220223051274065301377076051273317242022115 tr_information_configure_push_information_timer_cmd_t
zb_uint32_t snapshot_time
Definition tr_zcl_cmd_structs.h:2488
zb_uint8_t quality_measure
Definition tr_zcl_cmd_structs.h:458
zb_uint32_t currency_change_control_flags
Definition tr_zcl_cmd_structs.h:2260
zb_uint16_t mode_id
Definition tr_zcl_cmd_structs.h:996
zb_uint8_t fast_poll_update_period
Definition tr_zcl_cmd_structs.h:2352
ZB_PACKED_PRE struct @254332023136277304345357146360256266100044164150 tr_ba_cnet_protocol_tunnel_transfer_npdu_cmd_t
ZB_PACKED_PRE struct @263014044223015063242263234261153160233251355071 tr_information_request_information_cmd_t
zb_uint32_t block_threshold_multiplier
Definition tr_zcl_cmd_structs.h:2146
zb_uint32_t proposed_provider_id
Definition tr_zcl_cmd_structs.h:3038
ZB_PACKED_PRE struct @243147345072166113251322216101011364362017333262 tr_data_sharing_write_file_request_cmd_t
zb_uint8_t criticality_level
Definition tr_zcl_cmd_structs.h:2303
zb_uint8_t supply_depletion_state
Definition tr_zcl_cmd_structs.h:2435
ZB_PACKED_PRE struct @265056161244225226044076061175273375137032055127 tr_ias_ace_get_zone_information_response_cmd_t
zb_uint32_t consolidated_bill
Definition tr_zcl_cmd_structs.h:2220
ZB_PACKED_PRE struct @370271300357052042276127241160026214005235123113 tr_chatting_join_chat_request_cmd_t
ZB_PACKED_PRE struct @063136006236104127276153271050100363347336361242 tr_gaming_search_game_cmd_t
ZB_PACKED_PRE struct @173100004043361257342356365346070347320023256327 tr_gaming_general_response_cmd_t
zb_uint32_t maximum_credit_level
Definition tr_zcl_cmd_structs.h:2802
zb_uint8_t hue
Definition tr_zcl_cmd_structs.h:1563
ZB_PACKED_PRE struct @376124013123074321230046215300107311017203347263 tr_identify_trigger_effect_cmd_t
zb_uint32_t proposed_tenancy_change_control
Definition tr_zcl_cmd_structs.h:3029
zb_uint32_t calorific_value
Definition tr_zcl_cmd_structs.h:2125
ZB_PACKED_PRE struct @052273262306145241064324025305330011026337357123 tr_door_lock_get_weekday_schedule_cmd_t
ZB_PACKED_PRE struct @001264141007072174222232011112377027257010243327 tr_tunneling_ack_transfer_data_server_to_client_cmd_t
zb_uint32_t current_power_source_level
Definition tr_zcl_cmd_structs.h:4152
zb_uint16_t sink_nwk_address
Definition tr_zcl_cmd_structs.h:1048
ZB_PACKED_PRE struct @043203155060203065326176207161046076366237264072 tr_device_management_update_cin_cmd_t
ZB_PACKED_PRE struct @067347160251165307220277052027114012023273162015 tr_green_power_gp_pairing_configuration_cmd_t
zb_uint8_t event_control_log_id
Definition tr_zcl_cmd_structs.h:3092
ZB_PACKED_PRE struct @056316143153247330057304203226266231351151211011 tr_scenes_copy_scene_cmd_t
zb_uint8_t * buffer
Definition tr_zcl_cmd_structs.h:3277
zb_ieee_addr_t initiator_ieee_address
Definition tr_zcl_cmd_structs.h:3846
zb_uint32_t command_issue_date_time
Definition tr_zcl_cmd_structs.h:2712
zb_uint8_t number
Definition tr_zcl_cmd_structs.h:3276
zb_uint8_t end_hour
Definition tr_zcl_cmd_structs.h:1182
zb_uint16_t duration_in_minutes
Definition tr_zcl_cmd_structs.h:2081
ZB_PACKED_PRE struct @252374116051100321313245142047327144127303273315 tr_simple_metering_publish_snapshot_cmd_t
zb_uint32_t max_backoff_time_seconds
Definition tr_zcl_cmd_structs.h:4042
zb_uint8_t * first_frame_id_and_nack_list
Definition tr_zcl_cmd_structs.h:585
ZB_PACKED_PRE struct @363242062054366341015361023067375356307316362266 tr_chatting_start_chat_response_cmd_t
zb_uint8_t aps_link_key_auth_status
Definition tr_zcl_cmd_structs.h:4111
zb_uint32_t implementation_time
Definition tr_zcl_cmd_structs.h:3084
zb_uint8_t gpd_security_key[16]
Definition tr_zcl_cmd_structs.h:991
zb_uint16_t game_id
Definition tr_zcl_cmd_structs.h:3372
zb_uint8_t load_limit_supply_state
Definition tr_zcl_cmd_structs.h:2437
zb_uint8_t zigbee_information
Definition tr_zcl_cmd_structs.h:3806
zb_uint8_t flags
Definition tr_zcl_cmd_structs.h:403
ZB_PACKED_PRE struct @004153052014232251363363253337106030354143236001 tr_green_power_gp_tunneling_stop_cmd_t
ZB_PACKED_PRE struct @115064350274063257244234346051132040267245365340 tr_commissioning_restore_startup_parameters_cmd_t
zb_uint8_t percent_open
Definition tr_zcl_cmd_structs.h:1514
zb_uint8_t week_id
Definition tr_zcl_cmd_structs.h:2965
zb_uint8_t seconds_remaining
Definition tr_zcl_cmd_structs.h:1846
zb_uint8_t protocol_offset
Definition tr_zcl_cmd_structs.h:2656
ZB_PACKED_PRE struct @360213274341323313236001055353263270111305132067 tr_sl_works_with_all_hubs_enable_periodic_router_check_ins_cmd_t
zb_uint8_t strobe_duty_cycle
Definition tr_zcl_cmd_structs.h:1887
ZB_PACKED_PRE struct @365275372011007356067152106211043330004071144366 tr_thermostat_setpoint_raise_lower_cmd_t
zb_uint32_t current_power_mode
Definition tr_zcl_cmd_structs.h:4149
zb_uint8_t saturation
Definition tr_zcl_cmd_structs.h:1592
zb_uint8_t number_of_periods_delivered
Definition tr_zcl_cmd_structs.h:2459
zb_uint8_t switch_information_length
Definition tr_zcl_cmd_structs.h:1002
ZB_PACKED_PRE struct @347246200373143233072236254155106176121347105142 tr_groups_get_group_membership_response_cmd_t
ZB_PACKED_PRE struct @266214107355363350066312227300244015114102304243 tr_scenes_enhanced_view_scene_cmd_t
zb_uint8_t total_snapshots_found
Definition tr_zcl_cmd_structs.h:2489
zb_uint8_t * attribute_list
Definition tr_zcl_cmd_structs.h:571
zb_uint16_t free_group_identifier_range_begin
Definition tr_zcl_cmd_structs.h:3844
zb_uint8_t option_override
Definition tr_zcl_cmd_structs.h:287
zb_uint16_t new_short_poll_interval
Definition tr_zcl_cmd_structs.h:898
zb_uint8_t * file_start_record_and_requested_record_count
Definition tr_zcl_cmd_structs.h:3321
ZB_PACKED_PRE struct @322016372256332200215221137136200011072365243217 tr_thermostat_relay_status_log_cmd_t
zb_uint16_t long_poll_interval
Definition tr_zcl_cmd_structs.h:4008
ZB_PACKED_PRE struct @103062005137102145170013070023110207104325020157 tr_data_sharing_file_transmission_cmd_t
zb_uint32_t block_threshold_divisor
Definition tr_zcl_cmd_structs.h:2147
ZB_PACKED_PRE struct @236176251022274154171025304044107042076170241215 tr_door_lock_set_rfid_response_cmd_t
ZB_PACKED_PRE struct @326121362325101364343130160342077266317067263162 tr_prepayment_set_overall_debt_cap_cmd_t
zb_uint32_t debt_recovery_start_time
Definition tr_zcl_cmd_structs.h:2724
zb_uint8_t panel_status
Definition tr_zcl_cmd_structs.h:1845
zb_uint32_t available_power_sources
Definition tr_zcl_cmd_structs.h:4150
zb_uint8_t * day_schedule_entries
Definition tr_zcl_cmd_structs.h:2956
zb_uint8_t error_flag
Definition tr_zcl_cmd_structs.h:3470
zb_uint8_t cluster_id_list_count
Definition tr_zcl_cmd_structs.h:999
ZB_PACKED_PRE struct @220367357345107002317057310011126214034257023005 tr_simple_metering_schedule_snapshot_cmd_t
zb_uint8_t day_id_ref_sunday
Definition tr_zcl_cmd_structs.h:2972
ZB_PACKED_PRE struct @373105221101006120235374346220164142030274154004 tr_calendar_get_day_profiles_cmd_t
ZB_PACKED_PRE struct @261171073207314124054124013063042061063050031154 tr_zll_commissioning_network_join_router_request_cmd_t
zb_uint8_t location_type
Definition tr_zcl_cmd_structs.h:451
zb_uint8_t power_notification_reason
Definition tr_zcl_cmd_structs.h:4117
zb_int16_t local_temperature
Definition tr_zcl_cmd_structs.h:1554
zb_uint8_t number_of_weeks
Definition tr_zcl_cmd_structs.h:2910
ZB_PACKED_PRE struct @075272364241335317230312156310177147250056044313 tr_events_publish_event_cmd_t
ZB_PACKED_PRE struct @103105213300162163205160343105260375162267234355 tr_information_request_information_response_cmd_t
ZB_PACKED_PRE struct @357157342162202107335070056244073224071315247274 tr_rssi_location_request_own_location_cmd_t
zb_uint16_t trans_id
Definition tr_zcl_cmd_structs.h:3617
zb_uint8_t * top_up_payload
Definition tr_zcl_cmd_structs.h:2851
zb_uint16_t temp_master_short_address
Definition tr_zcl_cmd_structs.h:1069
ZB_PACKED_PRE struct @025161044222377207216226212206001143037376255203 tr_door_lock_set_holiday_schedule_cmd_t
zb_uint8_t alternate_cost_trailing_digit
Definition tr_zcl_cmd_structs.h:2088
zb_uint8_t backoff_seq_common_ratio
Definition tr_zcl_cmd_structs.h:4041
zb_uint8_t * special_day_entries
Definition tr_zcl_cmd_structs.h:2997
zb_uint16_t section14
Definition tr_zcl_cmd_structs.h:1820
zb_uint8_t password_type
Definition tr_zcl_cmd_structs.h:3011
zb_uint32_t credit_payment_due_date
Definition tr_zcl_cmd_structs.h:2242
zb_uint32_t top_up_value
Definition tr_zcl_cmd_structs.h:2841
zb_uint8_t * function_data
Definition tr_zcl_cmd_structs.h:857
ZB_PACKED_PRE struct @246016320023113361216340033231131070121103033275 tr_ias_wd_squawk_cmd_t
zb_uint8_t operating_mode_during_holiday
Definition tr_zcl_cmd_structs.h:1229
zb_uint16_t lift_value
Definition tr_zcl_cmd_structs.h:1490
ZB_PACKED_PRE struct @233306167022365204363137037030374052227240060055 tr_messaging_display_message_cmd_t
zb_uint8_t * notification_list
Definition tr_zcl_cmd_structs.h:3216
ZB_PACKED_PRE struct @044313276267151012310336370025332356345250130217 tr_green_power_gp_sink_table_request_cmd_t
ZB_PACKED_PRE struct @226247171134201070247117072246023207253306163204 tr_appliance_events_and_alert_alerts_notification_cmd_t
zb_uint16_t assigned_alias
Definition tr_zcl_cmd_structs.h:1053
ZB_PACKED_PRE struct @155305250161265326240004072273350070012227224373 tr_zll_commissioning_network_start_response_cmd_t
ZB_PACKED_PRE struct @061254337264226024304105136135125220161237074066 tr_door_lock_clear_rfid_cmd_t
zb_uint16_t uid
Definition tr_zcl_cmd_structs.h:3482
ZB_PACKED_PRE struct @230352277160234014126115015046053366070207175050 tr_door_lock_set_user_status_cmd_t
zb_uint8_t temp_master_tx_channel
Definition tr_zcl_cmd_structs.h:1070
ZB_PACKED_PRE struct @111056367246222140070351151056103177177034072047 tr_appliance_control_signal_state_notification_cmd_t
ZB_PACKED_PRE struct @374121336043135314300225163360321031173133316067 tr_green_power_gp_translation_table_update_cmd_t
zb_uint16_t max_number_of_samples
Definition tr_zcl_cmd_structs.h:2387
zb_uint8_t result_type
Definition tr_zcl_cmd_structs.h:2840
zb_uint8_t event_id_or_alarm_code
Definition tr_zcl_cmd_structs.h:1309
zb_uint8_t heating_temperature_offset
Definition tr_zcl_cmd_structs.h:2305
ZB_PACKED_PRE struct @203371334127274202051343263322304105123101316243 tr_price_publish_calorific_value_cmd_t
zb_uint8_t snapshot_confirmation
Definition tr_zcl_cmd_structs.h:2481
ZB_PACKED_PRE struct @154067315271074270123375073075242151037044334013 tr_tunneling_request_tunnel_cmd_t
zb_uint8_t * beacon
Definition tr_zcl_cmd_structs.h:4180
zb_uint32_t log_length
Definition tr_zcl_cmd_structs.h:3747
zb_uint16_t hardware_version
Definition tr_zcl_cmd_structs.h:602
zb_uint8_t billing_period_duration_type
Definition tr_zcl_cmd_structs.h:2207
zb_uint8_t c_o2_value_unit
Definition tr_zcl_cmd_structs.h:2184
ZB_PACKED_PRE struct @010327371211020024245030111170054051320171247355 tr_price_get_co2_value_cmd_t
zb_uint32_t new_file_version
Definition tr_zcl_cmd_structs.h:657
ZB_PACKED_PRE struct @046023256046055200111231332111366152126227175362 tr_green_power_gp_translation_table_response_cmd_t
ZB_PACKED_PRE struct @225330360272255305100027176037202207172211007257 tr_key_establishment_terminate_key_establishment_cmd_t
ZB_PACKED_PRE struct @053304307371246356324006320002171165247310276077 tr_sl_works_with_all_hubs_require_aps_acks_on_unicasts_cmd_t
ZB_PACKED_PRE struct @207222337333102267030216172032114257004314364304 tr_prepayment_set_maximum_credit_limit_cmd_t
zb_uint8_t * image_data
Definition tr_zcl_cmd_structs.h:679
zb_uint8_t field_control
Definition tr_zcl_cmd_structs.h:598
zb_uint8_t location_method
Definition tr_zcl_cmd_structs.h:457
zb_uint8_t num_of_scheduled_phases
Definition tr_zcl_cmd_structs.h:729
ZB_PACKED_PRE struct @275260167072142101030162013052303205310005316372 tr_color_control_enhanced_move_hue_cmd_t
zb_uint8_t inquiry_id
Definition tr_zcl_cmd_structs.h:3208
zb_uint8_t * serial_number
Definition tr_zcl_cmd_structs.h:3616
ZB_PACKED_PRE struct @306073147127364103165224132057265201374363050231 tr_color_control_move_color_temperature_cmd_t
ZB_PACKED_PRE struct @075122355122375103376202170054141367103013121015 tr_zll_commissioning_network_join_end_device_response_cmd_t
zb_uint8_t * debt_label
Definition tr_zcl_cmd_structs.h:2720
zb_uint16_t sample_id
Definition tr_zcl_cmd_structs.h:2393
zb_uint32_t reporting_interval
Definition tr_zcl_cmd_structs.h:2512
zb_int16_t coordinate2
Definition tr_zcl_cmd_structs.h:378
ZB_PACKED_PRE struct @162170225053250242110130055326114165225310012004 tr_price_get_calorific_value_cmd_t
zb_uint32_t earliest_implementation_time
Definition tr_zcl_cmd_structs.h:2572
zb_uint16_t partitioned_cluster_id
Definition tr_zcl_cmd_structs.h:570
zb_uint8_t extended_status
Definition tr_zcl_cmd_structs.h:1754
zb_uint8_t protocol_count
Definition tr_zcl_cmd_structs.h:2699
ZB_PACKED_PRE struct @034021307355223003304243007213163073103316307165 tr_commissioning_save_startup_parameters_cmd_t
zb_ieee_addr_t sink_ieee_address
Definition tr_zcl_cmd_structs.h:1047
ZB_PACKED_PRE struct @210150257374254201044330235027230010053076101034 tr_scenes_get_scene_membership_cmd_t
ZB_PACKED_PRE struct @041261344052363161376012267251245277265121207164 tr_power_profile_power_profile_schedule_constraints_notification_cmd_t
ZB_PACKED_PRE struct @334343003357143213026170056064043022332131326222 tr_data_sharing_read_record_request_cmd_t
ZB_PACKED_PRE struct @001165002031046001052057350050020122234133353120 tr_zll_commissioning_scan_request_cmd_t
zb_uint8_t * name
Definition tr_zcl_cmd_structs.h:3504
zb_uint8_t * rfid
Definition tr_zcl_cmd_structs.h:1448
ZB_PACKED_PRE struct @076012201233106024105327071124067020171021075077 tr_sl_works_with_all_hubs_set_mac_poll_failure_wait_time_cmd_t
zb_uint32_t credit_payment_date
Definition tr_zcl_cmd_structs.h:2246
zb_uint8_t * power_profile_records
Definition tr_zcl_cmd_structs.h:784
ZB_PACKED_PRE struct @352026137036327137163175173164050120176317151104 tr_door_lock_clear_holiday_schedule_cmd_t
ZB_PACKED_PRE struct @351053146002052326174377100027054162012103032330 tr_demand_response_and_load_control_report_event_status_cmd_t
ZB_PACKED_PRE struct @100045232154353076166254155127104210365341035242 tr_zll_commissioning_device_information_request_cmd_t
ZB_PACKED_PRE struct @240110050353074220213221133310215150362066110344 tr_groups_remove_group_cmd_t
zb_uint8_t extended_price_tier
Definition tr_zcl_cmd_structs.h:2094
ZB_PACKED_PRE struct @201323205066104261263344364305126173307262160040 tr_identify_identify_query_response_cmd_t
zb_uint8_t * group_information_record_list
Definition tr_zcl_cmd_structs.h:3986
ZB_PACKED_PRE struct @030311135031050025376333170025143066031021264111 tr_calendar_publish_day_profile_cmd_t
ZB_PACKED_PRE struct @016155333230234166130005241025046261031254374262 tr_level_control_stop_with_on_off_cmd_t
zb_uint8_t effect_id
Definition tr_zcl_cmd_structs.h:36
zb_uint8_t * paired_endpoints
Definition tr_zcl_cmd_structs.h:993
zb_uint8_t start_day_id
Definition tr_zcl_cmd_structs.h:2900
ZB_PACKED_PRE struct @355260374211345035326273047123152154314332055176 tr_information_request_preference_confirmation_cmd_t
zb_uint32_t event_time
Definition tr_zcl_cmd_structs.h:3111
ZB_PACKED_PRE struct @113270223321023247341112215063010010257230026367 tr_remote_cli_cli_command_response_cmd_t
ZB_PACKED_PRE struct @344227262171214371322050253302051010025156067335 tr_11073_protocol_tunnel_connect_request_cmd_t
ZB_PACKED_PRE struct @321141023213303267051071276305010303132272034262 tr_calendar_publish_seasons_cmd_t
ZB_PACKED_PRE struct @165226357050357364163236167003321052257062315070 tr_door_lock_unlock_door_response_cmd_t
zb_uint8_t * zone_status_result
Definition tr_zcl_cmd_structs.h:1879
zb_uint32_t debt_recovery_amount
Definition tr_zcl_cmd_structs.h:2727
zb_uint8_t number_of_day_profiles
Definition tr_zcl_cmd_structs.h:2942
zb_uint16_t free_network_address_range_begin
Definition tr_zcl_cmd_structs.h:3842
zb_uint8_t number_of_block_thresholds
Definition tr_zcl_cmd_structs.h:2089
zb_uint8_t * event_configuration_payload
Definition tr_zcl_cmd_structs.h:3019
zb_uint8_t * translations
Definition tr_zcl_cmd_structs.h:967
zb_uint16_t destination_uid
Definition tr_zcl_cmd_structs.h:3512
zb_uint32_t event_status_time
Definition tr_zcl_cmd_structs.h:2276
ZB_PACKED_PRE struct @313053207214365062233326352042212027165343115252 tr_rssi_location_anchor_node_announce_cmd_t
ZB_PACKED_PRE struct @266300246306340375324110136131365214135036013173 tr_zll_commissioning_device_information_response_cmd_t
ZB_PACKED_PRE struct @134024231265220001107325052061321235204234077311 tr_green_power_gp_notification_response_cmd_t
zb_uint8_t remote_enable_flags_and_device_status2
Definition tr_zcl_cmd_structs.h:870
zb_uint8_t * data
Definition tr_zcl_cmd_structs.h:1471
zb_uint8_t enable
Definition tr_zcl_cmd_structs.h:3258
zb_uint8_t * content_ids
Definition tr_zcl_cmd_structs.h:3246
ZB_PACKED_PRE struct @166027023260071277140126047042064124173346245217 tr_ias_ace_set_bypassed_zone_list_cmd_t
zb_uint8_t * protocol_address
Definition tr_zcl_cmd_structs.h:1900
ZB_PACKED_PRE struct @357016166211005174360031133225217336370307217205 tr_scenes_enhanced_add_scene_cmd_t
zb_uint8_t number_of_beacons
Definition tr_zcl_cmd_structs.h:4179
zb_uint8_t sequence_number
Definition tr_zcl_cmd_structs.h:3469
ZB_PACKED_PRE struct @160127050057164156024017004235065147204147300170 tr_groups_add_group_cmd_t
ZB_PACKED_PRE struct @132045066073330000145101265155067146007245232254 tr_information_push_information_cmd_t
zb_uint8_t debug_report_id
Definition tr_zcl_cmd_structs.h:4091
ZB_PACKED_PRE struct @232333316302320114336165330341362362171124322043 tr_color_control_enhanced_step_hue_cmd_t
ZB_PACKED_PRE struct @053045252374072122033132002336110106124312031163 tr_color_control_step_color_cmd_t
ZB_PACKED_PRE struct @062052144154164106330053037232004216030324264166 tr_sl_works_with_all_hubs_aps_link_key_authorization_query_cmd_t
zb_uint8_t percentage_lift_value
Definition tr_zcl_cmd_structs.h:1496
ZB_PACKED_PRE struct @050172374372210223315222102373113226353017275162 tr_door_lock_clear_holiday_schedule_response_cmd_t
zb_uint8_t * write_attribute_records
Definition tr_zcl_cmd_structs.h:578
ZB_PACKED_PRE struct @331371235351174366237212204044370206122012310351 tr_simple_metering_set_uncontrolled_flow_threshold_cmd_t
ZB_PACKED_PRE struct @234043023045036367057367035264342163217161076332 tr_scenes_recall_scene_cmd_t
ZB_PACKED_PRE struct @001130221112375362056225321220077131126327213077 tr_groups_add_group_response_cmd_t
zb_uint8_t current_zone_sensitivity_level
Definition tr_zcl_cmd_structs.h:1747
ZB_PACKED_PRE struct @240050152341112100367355003070125021062143156046 tr_mdu_pairing_pairing_request_cmd_t
ZB_PACKED_PRE struct @327011135311336006027220051005266036171312153301 tr_door_lock_clear_all_rfids_response_cmd_t
ZB_PACKED_PRE struct @020116043076266240162125275235212133111034055215 tr_voice_over_zig_bee_control_cmd_t
zb_uint8_t option
Definition tr_zcl_cmd_structs.h:3238
ZB_PACKED_PRE struct @107027306254351351305305022022313263147136352201 tr_simple_metering_take_snapshot_response_cmd_t
ZB_PACKED_PRE struct @272176047023352053031257341140253101375064272357 tr_commissioning_reset_startup_parameters_response_cmd_t
ZB_PACKED_PRE struct @146343376250167200037174020044346157370301006223 tr_green_power_gp_proxy_table_response_cmd_t
ZB_PACKED_PRE struct @376137022161035036262010203034036017047175363315 tr_demand_response_and_load_control_cancel_load_control_event_cmd_t
zb_uint8_t rate
Definition tr_zcl_cmd_structs.h:294
zb_uint8_t * message
Definition tr_zcl_cmd_structs.h:2582
zb_uint16_t uncontrolled_flow_threshold
Definition tr_zcl_cmd_structs.h:2445
zb_uint8_t * bypass_result
Definition tr_zcl_cmd_structs.h:1871
zb_uint8_t friendly_credit
Definition tr_zcl_cmd_structs.h:2831
zb_ieee_addr_t anchor_node_ieee_address
Definition tr_zcl_cmd_structs.h:430
zb_uint32_t generation_price
Definition tr_zcl_cmd_structs.h:2084
zb_uint8_t number_of_week_profiles
Definition tr_zcl_cmd_structs.h:2941
zb_uint16_t key_establishment_suite
Definition tr_zcl_cmd_structs.h:3158
zb_uint8_t total_number_of_entries
Definition tr_zcl_cmd_structs.h:1083
ZB_PACKED_PRE struct @163023123001211117242202251127127233111233352301 tr_simple_metering_get_sampled_data_response_cmd_t
zb_uint8_t start_fast_polling
Definition tr_zcl_cmd_structs.h:885
zb_uint16_t calculation_period
Definition tr_zcl_cmd_structs.h:389
ZB_PACKED_PRE struct @153365201321372356066316043143303011253111324266 tr_simple_metering_get_snapshot_cmd_t
zb_uint32_t notification_flag_order
Definition tr_zcl_cmd_structs.h:2522
zb_uint32_t provider_change_implementation_time
Definition tr_zcl_cmd_structs.h:3039
zb_uint8_t service_type
Definition tr_zcl_cmd_structs.h:3443
ZB_PACKED_PRE struct @216360065171240174076100116137152054060351234137 tr_door_lock_get_user_type_response_cmd_t
ZB_PACKED_PRE struct @026040357207143116355274253041044253170355201275 tr_color_control_move_to_color_cmd_t
ZB_PACKED_PRE struct @365011116116141062163272202327343221124022007102 tr_simple_metering_request_mirror_response_cmd_t
zb_uint8_t start_week_id
Definition tr_zcl_cmd_structs.h:2909
zb_uint16_t start_hue
Definition tr_zcl_cmd_structs.h:1703
ZB_PACKED_PRE struct @007342352353144311233320320210167173030272237057 tr_prepayment_publish_prepay_snapshot_cmd_t
ZB_PACKED_PRE struct @373165157225131253260235044012222256037312042357 tr_simple_metering_configure_mirror_cmd_t
zb_uint8_t * credit_payment_ref
Definition tr_zcl_cmd_structs.h:2247
zb_uint16_t gpm_addr_for_security
Definition tr_zcl_cmd_structs.h:955
zb_uint8_t network_update_id
Definition tr_zcl_cmd_structs.h:3857
zb_uint8_t message_confirmation_control
Definition tr_zcl_cmd_structs.h:2565
ZB_PACKED_PRE struct @064364224242264160045213027235237314344343232320 tr_events_publish_event_log_cmd_t
zb_uint8_t originating_device
Definition tr_zcl_cmd_structs.h:2713
ZB_PACKED_PRE struct @221353263332254174126246373153116105155270107212 tr_scenes_store_scene_cmd_t
zb_ieee_addr_t manager_ieee_address
Definition tr_zcl_cmd_structs.h:1940
zb_uint8_t tariff_type_charging_scheme
Definition tr_zcl_cmd_structs.h:2137
zb_uint8_t * zone_ids
Definition tr_zcl_cmd_structs.h:1778
ZB_PACKED_PRE struct @225333154036153015150055161077347132047147276121 tr_green_power_gp_proxy_commissioning_mode_cmd_t
ZB_PACKED_PRE struct @066160345173073001317025232207065220001276161146 tr_voice_over_zig_bee_control_response_cmd_t
zb_uint16_t tilt_value
Definition tr_zcl_cmd_structs.h:1502
zb_uint8_t codec_type
Definition tr_zcl_cmd_structs.h:3440
zb_uint8_t number_of_records
Definition tr_zcl_cmd_structs.h:2066
ZB_PACKED_PRE struct @142032364251214315264227045017327200317101177014 tr_simple_metering_supply_status_response_cmd_t
zb_uint8_t number_of_commands
Definition tr_zcl_cmd_structs.h:1990
ZB_PACKED_PRE struct @222132375134330247353114217233363000314326101105 tr_power_profile_energy_phases_schedule_response_cmd_t
ZB_PACKED_PRE struct @323046103000272104133161205174170312300073113341 tr_events_clear_event_log_response_cmd_t
zb_uint8_t options
Definition tr_zcl_cmd_structs.h:510
zb_uint32_t sample_start_time
Definition tr_zcl_cmd_structs.h:2501
zb_uint8_t credit_adjustment_type
Definition tr_zcl_cmd_structs.h:2752
zb_uint32_t latest_end_time
Definition tr_zcl_cmd_structs.h:2065
zb_uint8_t index
Definition tr_zcl_cmd_structs.h:519
zb_uint8_t conversion_factor_trailing_digit
Definition tr_zcl_cmd_structs.h:2117
zb_uint16_t device_class
Definition tr_zcl_cmd_structs.h:2299
zb_uint8_t calorific_value_unit
Definition tr_zcl_cmd_structs.h:2126
zb_uint8_t message_control
Definition tr_zcl_cmd_structs.h:2579
zb_uint16_t stop_before
Definition tr_zcl_cmd_structs.h:827
zb_uint32_t emergency_credit_threshold
Definition tr_zcl_cmd_structs.h:2737
zb_uint8_t number_of_paired_endpoints
Definition tr_zcl_cmd_structs.h:992
zb_uint8_t game_master
Definition tr_zcl_cmd_structs.h:3393
ZB_PACKED_PRE struct @377154264305147115354052121226104025241137367133 tr_tunneling_ack_transfer_data_client_to_server_cmd_t
ZB_PACKED_PRE struct @041122230156031150134217170311327025312064352314 tr_over_the_air_bootloading_query_next_image_request_cmd_t
ZB_PACKED_PRE struct @257315013366240353127223264223062126273131241322 tr_door_lock_get_user_status_response_cmd_t
zb_uint16_t start_after
Definition tr_zcl_cmd_structs.h:826
zb_uint8_t commission_state_mask
Definition tr_zcl_cmd_structs.h:30
zb_uint8_t * customer_id_number
Definition tr_zcl_cmd_structs.h:3086
zb_uint8_t * notification_flags
Definition tr_zcl_cmd_structs.h:2403
ZB_PACKED_PRE struct @247357326227325172163060312233066143213165226013 tr_door_lock_set_holiday_schedule_response_cmd_t
ZB_PACKED_PRE struct @112316127265141245274301014042353376265043252011 tr_chatting_get_node_information_response_cmd_t
zb_uint16_t commissioning_window
Definition tr_zcl_cmd_structs.h:1061
ZB_PACKED_PRE struct @356133120070120046037025265201074047151163101026 tr_information_push_information_response_cmd_t
ZB_PACKED_PRE struct @276105022055333170236261177073163215120236205374 tr_power_profile_get_power_profile_price_extended_response_cmd_t
ZB_PACKED_PRE struct @165107004224213132361317304304207263231150041330 tr_price_get_tariff_information_cmd_t
zb_uint8_t * extension_field_sets
Definition tr_zcl_cmd_structs.h:116
zb_int16_t setpoint
Definition tr_zcl_cmd_structs.h:1556
zb_uint8_t function_data_type
Definition tr_zcl_cmd_structs.h:856
ZB_PACKED_PRE struct @176215037307003371173140265361251374116023316076 tr_door_lock_toggle_response_cmd_t
zb_uint8_t flow_control_support
Definition tr_zcl_cmd_structs.h:2615
ZB_PACKED_PRE struct @335153370370144150201362204356360064002235202201 tr_mdu_pairing_pairing_response_cmd_t
ZB_PACKED_PRE struct @260336116266167352364073036240262140024136142012 tr_iso_7816_protocol_tunnel_transfer_apdu_cmd_t
zb_uint16_t group_identifiers_begin
Definition tr_zcl_cmd_structs.h:3840
zb_uint32_t notification_flags_n
Definition tr_zcl_cmd_structs.h:2542
zb_uint8_t * log_ids
Definition tr_zcl_cmd_structs.h:3764
zb_uint8_t tariff_type
Definition tr_zcl_cmd_structs.h:1982
ZB_PACKED_PRE struct @232310041310376044343071022241004221026351340231 tr_scenes_enhanced_view_scene_response_cmd_t
zb_uint8_t mode_to_return
Definition tr_zcl_cmd_structs.h:1537
zb_uint8_t period
Definition tr_zcl_cmd_structs.h:3152
zb_uint8_t control_type
Definition tr_zcl_cmd_structs.h:3476
zb_uint8_t log_id
Definition tr_zcl_cmd_structs.h:3103
ZB_PACKED_PRE struct @063034345374214216307230063125113355364120273057 tr_green_power_gp_pairing_search_cmd_t
zb_uint8_t rssi_correction
Definition tr_zcl_cmd_structs.h:3915
zb_uint32_t emergency_credit_limit
Definition tr_zcl_cmd_structs.h:2736
zb_uint8_t number_of_reports
Definition tr_zcl_cmd_structs.h:1006
ZB_PACKED_PRE struct @337174143364110215203102063343266336300162110356 tr_simple_metering_set_supply_status_cmd_t
zb_uint8_t * read_attribute_status_records
Definition tr_zcl_cmd_structs.h:592
ZB_PACKED_PRE struct @150232024041170203113117375053115375204366101056 tr_green_power_gp_pairing_cmd_t
ZB_PACKED_PRE struct @121072210242333313044241157222172151202255170376 tr_level_control_step_cmd_t
zb_uint8_t * debug_report_data
Definition tr_zcl_cmd_structs.h:4166
zb_uint8_t * proxy_table_entries
Definition tr_zcl_cmd_structs.h:1027
ZB_PACKED_PRE struct @232175307043372155036347225120050064256004226241 tr_calendar_get_calendar_cmd_t
ZB_PACKED_PRE struct @360061237147322251027233111027224003273172117340 tr_tunneling_request_tunnel_response_cmd_t
zb_uint16_t section13
Definition tr_zcl_cmd_structs.h:1819
zb_uint8_t * secure_message_authentication_code
Definition tr_zcl_cmd_structs.h:3173
ZB_PACKED_PRE struct @250147072202345176211167243141125044132314307177 tr_chatting_switch_chairman_response_cmd_t
zb_uint8_t * manufacturer_reason
Definition tr_zcl_cmd_structs.h:4120
ZB_PACKED_PRE struct @033303055264321140052252144117243310270232202072 tr_key_establishment_ephemeral_data_request_cmd_t
zb_uint8_t applied_update_period
Definition tr_zcl_cmd_structs.h:2466
ZB_PACKED_PRE struct @140363016033111313240272343351134265161072254052 tr_prepayment_get_top_up_log_cmd_t
zb_uint16_t reporting_period
Definition tr_zcl_cmd_structs.h:391
ZB_PACKED_PRE struct @140157120277173233006307361042127373373265024166 tr_door_lock_clear_all_pins_response_cmd_t
zb_uint8_t sample_type
Definition tr_zcl_cmd_structs.h:2385
zb_uint8_t write_options
Definition tr_zcl_cmd_structs.h:3334
zb_uint8_t gpd_command_id
Definition tr_zcl_cmd_structs.h:909
ZB_PACKED_PRE struct @370020124061106214076013160305115377132244346267 tr_rssi_location_compact_location_data_notification_cmd_t
ZB_PACKED_PRE struct @275267253342323316107276177232130346353332252112 tr_color_control_enhanced_move_to_hue_cmd_t
zb_ieee_addr_t measuring_device
Definition tr_zcl_cmd_structs.h:496
zb_uint32_t gpd_security_frame_counter
Definition tr_zcl_cmd_structs.h:908
ZB_PACKED_PRE struct @070375242043145341152231377255037144305325327017 tr_partition_read_handshake_param_cmd_t
ZB_PACKED_PRE struct @310210130377020370220201013276160120224254014354 tr_sl_works_with_all_hubs_use_trust_center_for_cluster_server_response_cmd_t
ZB_PACKED_PRE struct @044276167270335217131352302313017375116332214307 tr_color_control_stop_move_step_cmd_t
zb_uint16_t total_number_of_events
Definition tr_zcl_cmd_structs.h:3119
zb_uint8_t price_ratio
Definition tr_zcl_cmd_structs.h:2083
ZB_PACKED_PRE struct @201310141331343222134131147115221013372271034143 tr_price_get_credit_payment_cmd_t
ZB_PACKED_PRE struct @313247305336275017344361140051033210104171277072 tr_door_lock_get_pin_cmd_t
zb_uint32_t effective_time
Definition tr_zcl_cmd_structs.h:2320
ZB_PACKED_PRE struct @024257347241276050261370210351321163261271354357 tr_payment_transaction_end_cmd_t
zb_uint16_t max_backoff_iterations
Definition tr_zcl_cmd_structs.h:4053
zb_uint8_t * signature
Definition tr_zcl_cmd_structs.h:2284
zb_uint8_t tunnel_status
Definition tr_zcl_cmd_structs.h:2663
zb_uint8_t switch_configuration
Definition tr_zcl_cmd_structs.h:1003
ZB_PACKED_PRE struct @335342132351102177042364065010136255120006030162 tr_level_control_stop_cmd_t
zb_uint16_t group_identifiers_end
Definition tr_zcl_cmd_structs.h:3841
ZB_PACKED_PRE struct @106166353033107007264076304054332346117014023363 tr_scenes_copy_scene_response_cmd_t
zb_uint8_t calendar_type
Definition tr_zcl_cmd_structs.h:2891
ZB_PACKED_PRE struct @304266277216205023302342104066145167006035002212 tr_scenes_remove_scene_cmd_t
ZB_PACKED_PRE struct @011207154212305167271220107323001273124264373367 tr_green_power_gp_commissioning_notification_cmd_t
zb_uint16_t currency
Definition tr_zcl_cmd_structs.h:712
ZB_PACKED_PRE struct @375273271165175215174234202136306306016327216247 tr_groups_add_group_if_identifying_cmd_t
ZB_PACKED_PRE struct @217360342260251112144266056322377237312317260330 tr_rssi_location_location_data_response_cmd_t
zb_ieee_addr_t extended_pan_id
Definition tr_zcl_cmd_structs.h:3834
zb_uint8_t zone_status_complete
Definition tr_zcl_cmd_structs.h:1877
ZB_PACKED_PRE struct @112046271024245166253020273331262271172036025167 tr_power_profile_power_profile_request_cmd_t
zb_uint16_t time
Definition tr_zcl_cmd_structs.h:1702
ZB_PACKED_PRE struct @063333161014206143074300312025323265251024103222 tr_over_the_air_bootloading_upgrade_end_request_cmd_t
zb_uint32_t appliance_status2
Definition tr_zcl_cmd_structs.h:871
zb_uint32_t provider_id
Definition tr_zcl_cmd_structs.h:1971
zb_uint16_t section5
Definition tr_zcl_cmd_structs.h:1811
zb_uint8_t data_rate
Definition tr_zcl_cmd_structs.h:3410
zb_uint16_t free_network_address_range_end
Definition tr_zcl_cmd_structs.h:3843
zb_uint8_t number_of_calendars
Definition tr_zcl_cmd_structs.h:2890
ZB_PACKED_PRE struct @033123022117213315344022005057310336136111127223 tr_groups_get_group_membership_cmd_t
ZB_PACKED_PRE struct @005366303032361045330240251004056125002020127250 tr_rssi_location_rssi_ping_cmd_t
zb_uint16_t gpp_short_address
Definition tr_zcl_cmd_structs.h:911
zb_uint32_t low_credit_warning_level
Definition tr_zcl_cmd_structs.h:2785
zb_uint8_t * request_information_payload
Definition tr_zcl_cmd_structs.h:3210
zb_uint8_t command_count
Definition tr_zcl_cmd_structs.h:2361
ZB_PACKED_PRE struct @271327352077222107015332076344353074361271053220 tr_payment_buy_confirm_cmd_t
ZB_PACKED_PRE struct @355211026324047356003311061112113344165222273333 tr_alarms_get_alarm_response_cmd_t
ZB_PACKED_PRE struct @106344340323157204212307271066316300133206133022 tr_rssi_location_rssi_response_cmd_t
zb_uint16_t tunnel_id
Definition tr_zcl_cmd_structs.h:2622
zb_uint8_t transfer_data_status
Definition tr_zcl_cmd_structs.h:2636
ZB_PACKED_PRE struct @273376342050272311120314234015137251361062173237 tr_simple_metering_mirror_report_attribute_response_cmd_t
ZB_PACKED_PRE struct @035265003152131303350011367103122251134306105312 tr_price_get_current_price_cmd_t
zb_uint8_t day_id_ref_thursday
Definition tr_zcl_cmd_structs.h:2969
zb_uint32_t price
Definition tr_zcl_cmd_structs.h:713
ZB_PACKED_PRE struct @233323114051163165023154045174032072335365351022 tr_power_profile_energy_phases_schedule_state_notification_cmd_t
zb_uint16_t gpm_addr_for_pairing
Definition tr_zcl_cmd_structs.h:956
ZB_PACKED_PRE struct @067061167016110154353253060225113114152241106162 tr_identify_ez_mode_invoke_cmd_t
ZB_PACKED_PRE struct @015113215146253230224147001076150264365025027150 tr_sl_works_with_all_hubs_new_debug_report_notification_cmd_t
ZB_PACKED_PRE struct @174377130334322225322173102174144245241015366116 tr_power_profile_power_profile_schedule_constraints_response_cmd_t
zb_uint16_t location_age
Definition tr_zcl_cmd_structs.h:459
zb_uint8_t zone_status_mask_flag
Definition tr_zcl_cmd_structs.h:1793
ZB_PACKED_PRE struct @177301047340314312043205024174172300034243321203 tr_messaging_cancel_all_messages_cmd_t
ZB_PACKED_PRE struct @273375042007100031065123143071041316113350155017 tr_tunneling_transfer_data_error_client_to_server_cmd_t
ZB_PACKED_PRE struct @144014010121022112317147335331051176247147157124 tr_door_lock_get_rfid_cmd_t
zb_uint16_t section7
Definition tr_zcl_cmd_structs.h:1813
ZB_PACKED_PRE struct @257176031306352114145306374113226364247104203070 tr_barrier_control_barrier_control_go_to_percent_cmd_t
zb_uint8_t enrollment_mode
Definition tr_zcl_cmd_structs.h:4059
ZB_PACKED_PRE struct @104324046237240105165033150175271041206131345334 tr_simple_metering_start_sampling_response_cmd_t
ZB_PACKED_PRE struct @055270334025200374327063025271330061352064131265 tr_level_control_step_with_on_off_cmd_t
zb_uint16_t profile_id
Definition tr_zcl_cmd_structs.h:3928
ZB_PACKED_PRE struct @053240020247346155015024276260001004113374340136 tr_color_control_enhanced_move_to_hue_and_saturation_cmd_t
ZB_PACKED_PRE struct @146201253035063127007006223042301213234304361143 tr_sl_works_with_all_hubs_short_address_change_cmd_t
zb_uint16_t section1
Definition tr_zcl_cmd_structs.h:1807
zb_uint16_t relay_status
Definition tr_zcl_cmd_structs.h:1553
ZB_PACKED_PRE struct @016160005263266364267006110332154036117163161375 tr_simple_metering_reset_load_limit_counter_cmd_t
ZB_PACKED_PRE struct @230200147276052033353214264213004271275051213132 tr_color_control_move_saturation_cmd_t
zb_uint16_t maximum_incoming_transfer_size
Definition tr_zcl_cmd_structs.h:2616
zb_uint16_t group_id_from
Definition tr_zcl_cmd_structs.h:181
ZB_PACKED_PRE struct @055242341173215350355062062136231050157226256130 tr_billing_send_bill_record_cmd_t
ZB_PACKED_PRE struct @076015024053160342374176014373032036101226306123 tr_information_delete_cmd_t
ZB_PACKED_PRE struct @251212156236021267225034123017376117124243264135 tr_simple_metering_request_fast_poll_mode_response_cmd_t
ZB_PACKED_PRE struct @122054067237210006340057137010036031255022147126 tr_simple_metering_get_profile_response_cmd_t
zb_uint16_t destination_address
Definition tr_zcl_cmd_structs.h:3409
zb_uint8_t * tariff_label
Definition tr_zcl_cmd_structs.h:2138
zb_uint8_t criticality_level_applied
Definition tr_zcl_cmd_structs.h:2277
zb_uint8_t warning_event
Definition tr_zcl_cmd_structs.h:863
zb_uint8_t * proposed_provider_contact_details
Definition tr_zcl_cmd_structs.h:3042
zb_uint8_t tier_block_mode
Definition tr_zcl_cmd_structs.h:2145
ZB_PACKED_PRE struct @232056356204066006020212072233277310065254375316 tr_sl_works_with_all_hubs_aps_ack_enablement_query_response_cmd_t
ZB_PACKED_PRE struct @221176224166272200231166356103204324203021111244 tr_chatting_leave_chat_request_cmd_t
zb_uint16_t number_of_samples
Definition tr_zcl_cmd_structs.h:2396
ZB_PACKED_PRE struct @247217261174263165243346276037313225342037267146 tr_demand_response_and_load_control_cancel_all_load_control_events_cmd_t
zb_uint16_t cid
Definition tr_zcl_cmd_structs.h:3484
ZB_PACKED_PRE struct @073112252340250030037165241125073332041364077253 tr_ias_ace_get_zone_id_map_response_cmd_t
ZB_PACKED_PRE struct @345251206227300113166311175347104141341103276115 tr_door_lock_unlock_with_timeout_response_cmd_t
ZB_PACKED_PRE struct @124000363133222032032162234006021231112136127051 tr_sl_works_with_all_hubs_powering_on_notification_cmd_t
zb_uint8_t mirror_notification_reporting
Definition tr_zcl_cmd_structs.h:2513
zb_uint16_t root_id
Definition tr_zcl_cmd_structs.h:3270
zb_uint8_t power_profile_id
Definition tr_zcl_cmd_structs.h:705
zb_uint8_t * arm_disarm_code
Definition tr_zcl_cmd_structs.h:1770
zb_uint32_t new_long_poll_interval
Definition tr_zcl_cmd_structs.h:892
ZB_PACKED_PRE struct @047160215201276035047065167226136174105017373123 tr_payment_accept_payment_cmd_t
zb_uint8_t gpp_link
Definition tr_zcl_cmd_structs.h:947
zb_uint8_t * command_ids
Definition tr_zcl_cmd_structs.h:2534
zb_uint8_t * npdu
Definition tr_zcl_cmd_structs.h:1919
zb_uint8_t * neighbors_info
Definition tr_zcl_cmd_structs.h:498
ZB_PACKED_PRE struct @157115060134154366252035300026270012067153112241 tr_chatting_start_chat_request_cmd_t
zb_uint8_t * name_of_game
Definition tr_zcl_cmd_structs.h:3380
ZB_PACKED_PRE struct @365107122042160175216222107251243025317104005366 tr_green_power_gp_sink_commissioning_mode_cmd_t
ZB_PACKED_PRE struct @305345347274307121123317031275251140364047271001 tr_sl_works_with_all_hubs_survey_beacons_response_cmd_t
zb_uint8_t * tier_labels_payload
Definition tr_zcl_cmd_structs.h:2197
ZB_PACKED_PRE struct @171130074275335134117124061023044070345365043245 tr_color_control_move_to_color_temperature_cmd_t
ZB_PACKED_PRE struct @233073330021202065226301135127137151176102100165 tr_thermostat_set_weekly_schedule_cmd_t
ZB_PACKED_PRE struct @165373121332332373302101201154116121066004027035 tr_rssi_location_device_configuration_response_cmd_t
zb_uint8_t squawk_info
Definition tr_zcl_cmd_structs.h:1894
ZB_PACKED_PRE struct @045051010271115321102056320007271276203207316240 tr_data_rate_control_data_rate_control_cmd_t
zb_uint8_t day_id_ref_friday
Definition tr_zcl_cmd_structs.h:2970
ZB_PACKED_PRE struct @115057064162022212154001371235315162035062240073 tr_door_lock_unlock_door_cmd_t
ZB_PACKED_PRE struct @124334124016275025320205273057353327333261152123 tr_power_profile_energy_phases_schedule_state_request_cmd_t
zb_uint8_t * ephemeral_data
Definition tr_zcl_cmd_structs.h:3167
ZB_PACKED_PRE struct @301071033157103101335172324337263234225124276362 tr_appliance_statistics_log_request_cmd_t
zb_uint8_t supply_control_bits
Definition tr_zcl_cmd_structs.h:2421
ZB_PACKED_PRE struct @014055027251213311074154301115144063046073362247 tr_electrical_measurement_get_measurement_profile_command_cmd_t
zb_uint32_t block_period_duration
Definition tr_zcl_cmd_structs.h:2104
zb_uint16_t network_address
Definition tr_zcl_cmd_structs.h:3839
ZB_PACKED_PRE struct @163244061317011300332143056037104152352301032116 tr_commissioning_save_startup_parameters_response_cmd_t
zb_uint8_t protocol_id
Definition tr_zcl_cmd_structs.h:2613
zb_uint8_t total_numberof_non_empty_sink_table_entries
Definition tr_zcl_cmd_structs.h:1093
ZB_PACKED_PRE struct @127015224176114315367260114366226032240314075063 tr_scenes_get_scene_membership_response_cmd_t
zb_uint16_t notification_flag_attribute_id
Definition tr_zcl_cmd_structs.h:2530
ZB_PACKED_PRE struct @277307176167105032033162215024223060152063141003 tr_appliance_statistics_log_notification_cmd_t
ZB_PACKED_PRE struct @236020312126313020354274362203205175006110341241 tr_information_update_response_cmd_t
zb_uint32_t message_id
Definition tr_zcl_cmd_structs.h:2563
zb_uint32_t credit_adjustment_value
Definition tr_zcl_cmd_structs.h:2753
zb_uint8_t gpp_distance
Definition tr_zcl_cmd_structs.h:912
zb_ieee_addr_t ieee_address
Definition tr_zcl_cmd_structs.h:1829
ZB_PACKED_PRE struct @262303314257302243342275373364027207205266135345 tr_partition_transfer_partitioned_frame_cmd_t
ZB_PACKED_PRE struct @021053214232372226037134335067152157125232250257 tr_over_the_air_bootloading_query_specific_file_request_cmd_t
zb_uint8_t * event_data
Definition tr_zcl_cmd_structs.h:3113
ZB_PACKED_PRE struct @177045215233234230302172113244243165076147310337 tr_prepayment_credit_adjustment_cmd_t
zb_uint8_t * intervals
Definition tr_zcl_cmd_structs.h:2460
zb_uint32_t issuer_event_id
Definition tr_zcl_cmd_structs.h:1972
zb_uint8_t * voice_data
Definition tr_zcl_cmd_structs.h:3450
ZB_PACKED_PRE struct @261137323167255056062147334367223150326043114226 tr_sl_works_with_all_hubs_use_trust_center_for_cluster_server_cmd_t
zb_uint8_t status_code
Definition tr_zcl_cmd_structs.h:3179
zb_uint32_t local_start_time
Definition tr_zcl_cmd_structs.h:1205
zb_uint8_t mode
Definition tr_zcl_cmd_structs.h:180
ZB_PACKED_PRE struct @353216010252356243065156016311052360115076103126 tr_sl_works_with_all_hubs_enable_wwah_app_event_retry_algorithm_cmd_t
zb_uint32_t file_start_position
Definition tr_zcl_cmd_structs.h:3342
ZB_PACKED_PRE struct @124173162052377125251147135135036025272371341300 tr_billing_subscribe_cmd_t
zb_uint32_t file_offset
Definition tr_zcl_cmd_structs.h:612
zb_uint16_t fast_poll_timeout
Definition tr_zcl_cmd_structs.h:886
ZB_PACKED_PRE struct @201135123311360123125356157321306074114343232153 tr_power_profile_energy_phases_schedule_request_cmd_t
zb_uint8_t connect_status
Definition tr_zcl_cmd_structs.h:1946
ZB_PACKED_PRE struct @223040110056350222342067071271130177005271247137 tr_rssi_location_location_data_notification_cmd_t
zb_uint8_t * season_entries
Definition tr_zcl_cmd_structs.h:2983
ZB_PACKED_PRE struct @073116257101321145314215374004030135102372213272 tr_over_the_air_bootloading_image_page_request_cmd_t
zb_uint8_t control
Definition tr_zcl_cmd_structs.h:1974
ZB_PACKED_PRE struct @067152216061257261064225252077143372064052047251 tr_door_lock_toggle_cmd_t
ZB_PACKED_PRE struct @016324211355314161340262122365022057113073161070 tr_energy_management_manage_event_cmd_t
ZB_PACKED_PRE struct @274000137217114157364213236213262172142360301352 tr_zll_commissioning_network_update_request_cmd_t
ZB_PACKED_PRE struct @376166235136311275123146244262332074316124277242 tr_calendar_get_week_profiles_cmd_t
ZB_PACKED_PRE struct @017171026070232366171324166134333322001074127014 tr_events_get_event_log_cmd_t
zb_uint16_t endpoint_id
Definition tr_zcl_cmd_structs.h:2340
zb_uint8_t number_of_sub_devices
Definition tr_zcl_cmd_structs.h:3925
zb_uint8_t event_header
Definition tr_zcl_cmd_structs.h:3732
ZB_PACKED_PRE struct @161272141317271161174252225330037310033152072116 tr_zll_commissioning_reset_to_factory_new_request_cmd_t
ZB_PACKED_PRE struct @361305141060225362273367247105000334227375105273 tr_remote_cli_enable_remote_cli_cmd_t
zb_uint8_t event_code
Definition tr_zcl_cmd_structs.h:1467
zb_uint16_t idle_timeout
Definition tr_zcl_cmd_structs.h:1932
ZB_PACKED_PRE struct @330231153032235150155201245031204175301177104135 tr_rssi_location_set_device_configuration_cmd_t
zb_uint32_t time_stamp
Definition tr_zcl_cmd_structs.h:371
zb_uint8_t * top_up_code
Definition tr_zcl_cmd_structs.h:2744
ZB_PACKED_PRE struct @244156222075100215265243016045213263024236366164 tr_demand_response_and_load_control_get_scheduled_events_cmd_t
zb_uint32_t price_ack_time
Definition tr_zcl_cmd_structs.h:1973
ZB_PACKED_PRE struct @254245242210111157104371263363243312035125351204 tr_ias_zone_zone_enroll_request_cmd_t
zb_uint32_t billing_period_duration
Definition tr_zcl_cmd_structs.h:2206
ZB_PACKED_PRE struct @317051132137360126051152045163316165266273202152 tr_door_lock_set_user_type_cmd_t
ZB_PACKED_PRE struct @147225202027031324131127333057226370066301253114 tr_door_lock_set_user_status_response_cmd_t
ZB_PACKED_PRE struct @300046102205276155034201250052072234121054372345 tr_groups_view_group_cmd_t
ZB_PACKED_PRE struct @144073367336100271161215141367157235343262132333 tr_sl_works_with_all_hubs_disable_aps_link_key_authorization_cmd_t
zb_uint8_t * sink_table_entries
Definition tr_zcl_cmd_structs.h:1096
ZB_PACKED_PRE struct @260165061042355004252206337035240341231203125140 tr_green_power_gp_response_cmd_t
zb_uint16_t color_y
Definition tr_zcl_cmd_structs.h:1631
ZB_PACKED_PRE struct @017225134134377307377044266017034046364066343021 tr_chatting_switch_chairman_request_cmd_t
ZB_PACKED_PRE struct @102072041060221003075334004316303244342317377144 tr_sub_g_hz_suspend_zcl_messages_cmd_t
zb_ieee_addr_t blind_node
Definition tr_zcl_cmd_structs.h:504
ZB_PACKED_PRE struct @022233104004253142303365322257033244066335163146 tr_billing_bill_status_notification_cmd_t
ZB_PACKED_PRE struct @366017241270364260306333335105207153142026011177 tr_11073_protocol_tunnel_transfer_apdu_cmd_t
zb_uint16_t file_index
Definition tr_zcl_cmd_structs.h:3313
zb_uint8_t number_of_periods
Definition tr_zcl_cmd_structs.h:2334
zb_uint16_t preference_type
Definition tr_zcl_cmd_structs.h:3222
ZB_PACKED_PRE struct @061344062360230200022116215013354250363173000266 tr_generic_tunnel_match_protocol_address_response_cmd_t
zb_uint8_t count
Definition tr_zcl_cmd_structs.h:3985
zb_uint8_t zone_id
Definition tr_zcl_cmd_structs.h:1740
ZB_PACKED_PRE struct @076342162150147015275054223243067277167317114212 tr_thermostat_current_weekly_schedule_cmd_t
ZB_PACKED_PRE struct @216335047312252303326002222061200007306353334340 tr_over_the_air_bootloading_image_block_request_cmd_t
zb_uint8_t number_of_events
Definition tr_zcl_cmd_structs.h:1965
ZB_PACKED_PRE struct @067374212357360031337146243134340131015363200001 tr_partition_multiple_ack_cmd_t
ZB_PACKED_PRE struct @233043037374033226065212172022377326036166057035 tr_messaging_message_confirmation_cmd_t
ZB_PACKED_PRE struct @261307236247041256361204166274200244264145122203 tr_groups_remove_group_response_cmd_t
ZB_PACKED_PRE struct @370310223337052265311270226272002366101342161171 tr_remote_cli_cli_command_cmd_t
ZB_PACKED_PRE struct @243357247270356357164372232165261163223363221035 tr_data_rate_control_path_deletion_cmd_t
zb_uint8_t command_index
Definition tr_zcl_cmd_structs.h:2157
zb_uint16_t attribute_id
Definition tr_zcl_cmd_structs.h:3777
zb_uint8_t options_override
Definition tr_zcl_cmd_structs.h:1567
zb_uint8_t * transferred_phases
Definition tr_zcl_cmd_structs.h:768
ZB_PACKED_PRE struct @273037201354133253045030215102144362233340216276 tr_appliance_events_and_alert_get_alerts_response_cmd_t
ZB_PACKED_PRE struct @020374246073043256074071312341071055166066331042 tr_commissioning_restart_device_cmd_t
ZB_PACKED_PRE struct @237375146004326313226352265345137023046302305172 tr_window_covering_window_covering_go_to_tilt_percentage_cmd_t
zb_uint8_t day_id_ref_saturday
Definition tr_zcl_cmd_structs.h:2971
zb_int16_t power
Definition tr_zcl_cmd_structs.h:380
zb_uint16_t event_id
Definition tr_zcl_cmd_structs.h:3077
ZB_PACKED_PRE struct @145144126062204371112134336252263166345335132322 tr_billing_stop_billing_session_cmd_t
zb_uint16_t record_count
Definition tr_zcl_cmd_structs.h:3351
ZB_PACKED_PRE struct @204237346054117025345120066202241047027121102345 tr_payment_buy_request_cmd_t
ZB_PACKED_PRE struct @062042113035160067270014335134073364127200115177 tr_window_covering_window_covering_go_to_lift_percentage_cmd_t
ZB_PACKED_PRE struct @072135353114302343067122370170123056136321372075 tr_simple_metering_get_profile_cmd_t
ZB_PACKED_PRE struct @137077061137076307203152073005174127041335000125 tr_scenes_remove_all_scenes_cmd_t
ZB_PACKED_PRE struct @223120020116265033120262101244214145113214271056 tr_gaming_join_game_cmd_t
zb_uint8_t * password
Definition tr_zcl_cmd_structs.h:3052
ZB_PACKED_PRE struct @321363217005047167247267247047170324271376045012 tr_prepayment_select_available_emergency_credit_cmd_t
ZB_PACKED_PRE struct @114164302017251220230353162016221325041270322170 tr_billing_start_billing_session_cmd_t
zb_uint8_t max_number_of_zone_ids
Definition tr_zcl_cmd_structs.h:1792
zb_uint8_t block_period_control
Definition tr_zcl_cmd_structs.h:2105
zb_uint8_t profile_interval_period
Definition tr_zcl_cmd_structs.h:2458
ZB_PACKED_PRE struct @316274153166001021254260226244050246145011272251 tr_voice_over_zig_bee_voice_transmission_response_cmd_t
zb_uint8_t total_number_of_schedule_entries
Definition tr_zcl_cmd_structs.h:2952
ZB_PACKED_PRE struct @222301040363120135075012356263376055372004250372 tr_zll_commissioning_get_group_identifiers_response_cmd_t
ZB_PACKED_PRE struct @127354263346041252274244306213233001161222264027 tr_appliance_control_execution_of_a_command_cmd_t
zb_uint32_t credit_payment_over_due_amount
Definition tr_zcl_cmd_structs.h:2243
zb_uint8_t trans_status
Definition tr_zcl_cmd_structs.h:3618
zb_uint8_t current_contact_status
Definition tr_zcl_cmd_structs.h:1004
zb_uint16_t color_temperature_maximum
Definition tr_zcl_cmd_structs.h:1719
zb_uint32_t overall_debt_cap
Definition tr_zcl_cmd_structs.h:2812
ZB_PACKED_PRE struct @271273221031114345372175030351130071035072163271 tr_ias_ace_get_panel_status_response_cmd_t
zb_uint16_t color_temperature
Definition tr_zcl_cmd_structs.h:1659
zb_uint8_t payload_type
Definition tr_zcl_cmd_structs.h:653
zb_uint8_t application_information
Definition tr_zcl_cmd_structs.h:994
ZB_PACKED_PRE struct @146022176343311213233204042235316313377307372067 tr_zll_commissioning_endpoint_information_cmd_t
ZB_PACKED_PRE struct @041047247205155203121164072145046041062156322346 tr_power_profile_power_profile_state_response_cmd_t
ZB_PACKED_PRE struct @056252065220116220100150321170250372356116033124 tr_rssi_location_send_pings_cmd_t
zb_uint16_t section10
Definition tr_zcl_cmd_structs.h:1816
zb_uint8_t * proposed_provider_name
Definition tr_zcl_cmd_structs.h:3041
zb_uint8_t test_mode_duration
Definition tr_zcl_cmd_structs.h:1746
zb_uint8_t cleared_events_logs
Definition tr_zcl_cmd_structs.h:3129
ZB_PACKED_PRE struct @273363166004140237310167240333061352063217077205 tr_door_lock_clear_pin_response_cmd_t
ZB_PACKED_PRE struct @066222256367263141325254143177333076046157267267 tr_thermostat_get_weekly_schedule_cmd_t
ZB_PACKED_PRE struct @367337351030375261260047167034377021315126122046 tr_price_get_billing_period_cmd_t
zb_ieee_addr_t request_node_address
Definition tr_zcl_cmd_structs.h:614
ZB_PACKED_PRE struct @274216123361264304347067257014216053253032044015 tr_device_management_publish_change_of_tenancy_cmd_t
ZB_PACKED_PRE struct @250100371225112043357170263005063333355270372273 tr_door_lock_clear_weekday_schedule_cmd_t
zb_uint8_t * list_of_attributes
Definition tr_zcl_cmd_structs.h:3788
zb_uint32_t current_file_version
Definition tr_zcl_cmd_structs.h:601
zb_uint32_t credit_remaining
Definition tr_zcl_cmd_structs.h:2843
ZB_PACKED_PRE struct @130136352302206313320102360065144054247360233065 tr_tunneling_transfer_data_client_to_server_cmd_t
ZB_PACKED_PRE struct @077052007326021126342110022255372063121026222353 tr_appliance_statistics_statistics_available_cmd_t
ZB_PACKED_PRE struct @301175104170247116000100324370234166204241355076 tr_over_the_air_bootloading_query_next_image_response_cmd_t
zb_uint8_t * status_feedback_list
Definition tr_zcl_cmd_structs.h:3289
zb_uint8_t number_of_days
Definition tr_zcl_cmd_structs.h:2901
zb_uint32_t image_size
Definition tr_zcl_cmd_structs.h:667
ZB_PACKED_PRE struct @275373307322370373204115244365254314316247341167 tr_commissioning_restore_startup_parameters_response_cmd_t
ZB_PACKED_PRE struct @025046157025015107004115252025162313123232221346 tr_scenes_view_scene_response_cmd_t
zb_uint8_t * cluster_status
Definition tr_zcl_cmd_structs.h:4188
ZB_PACKED_PRE struct @307170002366334063335334266333002067362372204371 tr_calendar_publish_week_profile_cmd_t
zb_uint32_t cut_off_value
Definition tr_zcl_cmd_structs.h:2763
zb_uint8_t start_hour
Definition tr_zcl_cmd_structs.h:1180
zb_uint16_t address
Definition tr_zcl_cmd_structs.h:3582
zb_uint8_t audible_notification
Definition tr_zcl_cmd_structs.h:1838
zb_uint8_t duty_cycle
Definition tr_zcl_cmd_structs.h:2309
zb_uint8_t stabilisation_period
Definition tr_zcl_cmd_structs.h:2449
ZB_PACKED_PRE struct @211272221265363121263167106157370102031067326032 tr_price_publish_tier_labels_cmd_t
ZB_PACKED_PRE struct @333026214344165367074177143032113223267210003026 tr_power_profile_power_profiles_state_notification_cmd_t
ZB_PACKED_PRE struct @335044354300076066230327323376334251320372141046 tr_data_sharing_record_transmission_cmd_t
ZB_PACKED_PRE struct @177172250230317015250035372042203100250321064077 tr_door_lock_get_user_type_cmd_t
zb_uint32_t friendly_credit_calendar_id
Definition tr_zcl_cmd_structs.h:2832
ZB_PACKED_PRE struct @225105262206002125207273113007303252270206210145 tr_calendar_publish_special_days_cmd_t
zb_uint32_t earliest_sample_time
Definition tr_zcl_cmd_structs.h:2394
ZB_PACKED_PRE struct @172365326004142060110202215255133266102255230150 tr_chatting_user_left_cmd_t
zb_uint8_t number_responses
Definition tr_zcl_cmd_structs.h:404
ZB_PACKED_PRE struct @123225171271032037055364236110055016242347270123 tr_simple_metering_get_sampled_data_cmd_t
zb_uint16_t power_profile_start_time
Definition tr_zcl_cmd_structs.h:843
zb_uint8_t num_of_transferred_phases
Definition tr_zcl_cmd_structs.h:767
ZB_PACKED_PRE struct @124035112170253106242062346347032202115241123153 tr_price_get_consolidated_bill_cmd_t
zb_uint8_t data_type_id
Definition tr_zcl_cmd_structs.h:3209
ZB_PACKED_PRE struct @245135236176216013243360116300361272356123141303 tr_data_sharing_modify_file_request_cmd_t
ZB_PACKED_PRE struct @025037042263353377272140173261015276153213214127 tr_zll_commissioning_get_endpoint_list_response_cmd_t
ZB_PACKED_PRE struct @167002012016104240134102202327364310355340131152 tr_chatting_switch_chairman_notification_cmd_t
zb_uint8_t move_mode
Definition tr_zcl_cmd_structs.h:293
zb_uint16_t path_loss_exponent
Definition tr_zcl_cmd_structs.h:381
zb_uint32_t debt_amount
Definition tr_zcl_cmd_structs.h:2721
zb_uint8_t enroll_response_code
Definition tr_zcl_cmd_structs.h:1739
zb_uint32_t alternate_cost_delivered
Definition tr_zcl_cmd_structs.h:2086
ZB_PACKED_PRE struct @171022176163122136362126133137102346131226217073 tr_price_publish_billing_period_cmd_t
zb_uint16_t time_of_day
Definition tr_zcl_cmd_structs.h:1552
ZB_PACKED_PRE struct @376010024302035223141242240013044335313070202066 tr_ias_ace_arm_response_cmd_t
zb_uint8_t option_mask
Definition tr_zcl_cmd_structs.h:286
zb_uint8_t event_type
Definition tr_zcl_cmd_structs.h:1307
zb_uint16_t on_time
Definition tr_zcl_cmd_structs.h:277
zb_uint8_t start_minute
Definition tr_zcl_cmd_structs.h:1181
zb_uint8_t wait_time
Definition tr_zcl_cmd_structs.h:3180
zb_uint8_t snapshot_payload_type
Definition tr_zcl_cmd_structs.h:2493
zb_uint8_t end_minute
Definition tr_zcl_cmd_structs.h:1183
zb_uint8_t cpp_price_tier
Definition tr_zcl_cmd_structs.h:2233
ZB_PACKED_PRE struct @106260222363032064202003173300331331325041175225 tr_zll_commissioning_identify_request_cmd_t
zb_uint8_t unit_of_measure
Definition tr_zcl_cmd_structs.h:2076
ZB_PACKED_PRE struct @052313334324371227116214026217352111355011221117 tr_door_lock_get_user_status_cmd_t
ZB_PACKED_PRE struct @120144062371375120232215270017223007164277171335 tr_door_lock_lock_door_response_cmd_t
ZB_PACKED_PRE struct @005362375376225234276162167221330101267004171071 tr_device_management_request_new_password_response_cmd_t
ZB_PACKED_PRE struct @045353147021131374000272103302104374267215077003 tr_door_lock_get_yearday_schedule_response_cmd_t
zb_uint8_t logical_channel
Definition tr_zcl_cmd_structs.h:3837
ZB_PACKED_PRE struct @312247167115043350361076303131263200130037364264 tr_door_lock_set_rfid_cmd_t
zb_uint8_t days_mask
Definition tr_zcl_cmd_structs.h:1179
zb_uint8_t max_number_of_intervals
Definition tr_zcl_cmd_structs.h:3787
zb_uint16_t heating_temperature_set_point_applied
Definition tr_zcl_cmd_structs.h:2279
zb_uint16_t manufacturer_id
Definition tr_zcl_cmd_structs.h:599
zb_uint8_t tariff_resolution_period
Definition tr_zcl_cmd_structs.h:2108
zb_uint16_t section8
Definition tr_zcl_cmd_structs.h:1814
ZB_PACKED_PRE struct @242034200001273253325204077030135265104104147157 tr_door_lock_clear_weekday_schedule_response_cmd_t
zb_uint8_t alarm_code
Definition tr_zcl_cmd_structs.h:354
ZB_PACKED_PRE struct @073027124323340145350114144015116106371362044002 tr_energy_management_report_event_status_cmd_t
zb_uint8_t humidity_in_percentage
Definition tr_zcl_cmd_structs.h:1555
zb_uint8_t options_mask
Definition tr_zcl_cmd_structs.h:1566
ZB_PACKED_PRE struct @101337217014375146155222053026164112102005353156 tr_on_off_on_with_timed_off_cmd_t
zb_uint8_t total_number_of_devices
Definition tr_zcl_cmd_structs.h:3143
zb_uint8_t total_number_of_special_days
Definition tr_zcl_cmd_structs.h:2994
zb_uint32_t request_date_time
Definition tr_zcl_cmd_structs.h:2418
zb_uint8_t number_of_intervals
Definition tr_zcl_cmd_structs.h:3779
ZB_PACKED_PRE struct @066241272220225304320366243303033164142247151374 tr_door_lock_clear_pin_cmd_t
zb_uint8_t standard_beacons
Definition tr_zcl_cmd_structs.h:4097
zb_uint8_t manufacturer_reason_length
Definition tr_zcl_cmd_structs.h:4119
ZB_PACKED_PRE struct @301157105046026247053275073116166174303065373236 tr_information_request_preference_response_cmd_t
zb_uint8_t percentage_tilt_value
Definition tr_zcl_cmd_structs.h:1508
zb_uint8_t strobe_level
Definition tr_zcl_cmd_structs.h:1888
ZB_PACKED_PRE struct @227120051356347263237115025033156275144133020052 tr_appliance_control_signal_state_response_cmd_t
ZB_PACKED_PRE struct @066065311124105006301327330263043040024017360072 tr_color_control_color_loop_set_cmd_t
zb_uint8_t supply_status
Definition tr_zcl_cmd_structs.h:2551
ZB_PACKED_PRE struct @157007054315156006171036235302134141175063003372 tr_prepayment_publish_debt_log_cmd_t
zb_uint32_t mic
Definition tr_zcl_cmd_structs.h:948
zb_uint8_t total
Definition tr_zcl_cmd_structs.h:3983
zb_uint8_t command_id
Definition tr_zcl_cmd_structs.h:849
zb_uint8_t group_list_count
Definition tr_zcl_cmd_structs.h:985
zb_uint8_t * report_descriptor
Definition tr_zcl_cmd_structs.h:1007
zb_uint8_t * gpd_command_id_list
Definition tr_zcl_cmd_structs.h:998
zb_uint8_t number_rssi_measurements
Definition tr_zcl_cmd_structs.h:390
zb_uint8_t number_of_price_tiers_and_register_tier
Definition tr_zcl_cmd_structs.h:2079
zb_uint16_t pan_id
Definition tr_zcl_cmd_structs.h:3838
ZB_PACKED_PRE struct @247030104276162166211232013163165263204135101126 tr_billing_check_bill_status_cmd_t
zb_uint8_t fragmentation_options
Definition tr_zcl_cmd_structs.h:563
ZB_PACKED_PRE struct @163071157366271105231176003126271375014315015041 tr_power_profile_power_profile_notification_cmd_t
ZB_PACKED_PRE struct @046031246061327270173074350072376331336053131133 tr_tunneling_ready_data_client_to_server_cmd_t
zb_uint8_t data_size
Definition tr_zcl_cmd_structs.h:678
zb_uint16_t proposed_payment_control_configuration
Definition tr_zcl_cmd_structs.h:2762
ZB_PACKED_PRE struct @120001071002216042046062171173320041201252346077 tr_data_sharing_write_file_response_cmd_t
zb_uint16_t sink_group_id
Definition tr_zcl_cmd_structs.h:1049
zb_uint8_t * description
Definition tr_zcl_cmd_structs.h:3252
ZB_PACKED_PRE struct @107104177142030322244122262000072344117005054266 tr_commissioning_restart_device_response_cmd_t
ZB_PACKED_PRE struct @026230347246117310160300317055233346357102344360 tr_door_lock_operation_event_notification_cmd_t
zb_uint8_t * log_payload
Definition tr_zcl_cmd_structs.h:3123
zb_uint8_t utility_enrollment_group
Definition tr_zcl_cmd_structs.h:2300
ZB_PACKED_PRE struct @050111224231316075112157142327216032217372004175 tr_tunneling_tunnel_closure_notification_cmd_t
zb_uint8_t security_options
Definition tr_zcl_cmd_structs.h:989
ZB_PACKED_PRE struct @326344242021122053236240011366020172057355331061 tr_messaging_cancel_message_cmd_t
zb_uint8_t * zone_label
Definition tr_zcl_cmd_structs.h:1830
zb_uint8_t days_to_return
Definition tr_zcl_cmd_structs.h:1536
ZB_PACKED_PRE struct @161247174273227226256131164177120354237314323202 tr_device_management_report_event_configuration_cmd_t
zb_uint8_t action
Definition tr_zcl_cmd_structs.h:23
zb_int16_t coordinate3
Definition tr_zcl_cmd_structs.h:379
zb_uint16_t section12
Definition tr_zcl_cmd_structs.h:1818
ZB_PACKED_PRE struct @053367027314107226024376313212152373313172273133 tr_device_management_get_event_configuration_cmd_t
ZB_PACKED_PRE struct @275227155052312250225335173176042343067224070055 tr_zll_commissioning_network_join_end_device_request_cmd_t
zb_uint32_t maximum_credit_per_top_up
Definition tr_zcl_cmd_structs.h:2803
zb_uint8_t * list_of_game
Definition tr_zcl_cmd_structs.h:3394
zb_uint16_t timeout_in_seconds
Definition tr_zcl_cmd_structs.h:1130
zb_uint8_t * file_start_position_and_requested_octet_count
Definition tr_zcl_cmd_structs.h:3314
ZB_PACKED_PRE struct @126361033307142313155026174347013043054015316010 tr_price_cpp_event_response_cmd_t
ZB_PACKED_PRE struct @235105255023173262133277321206123302337072023125 tr_color_control_step_hue_cmd_t
zb_uint16_t requested_key_establishment_suite
Definition tr_zcl_cmd_structs.h:3187
zb_uint8_t number_of_clusters
Definition tr_zcl_cmd_structs.h:4103
zb_uint8_t starting_zone_id
Definition tr_zcl_cmd_structs.h:1791
zb_uint16_t multiplier
Definition tr_zcl_cmd_structs.h:2447
zb_uint32_t implementation_date_time
Definition tr_zcl_cmd_structs.h:2419
ZB_PACKED_PRE struct @056240122057317037137110166055210101352231171040 tr_alarms_reset_alarm_cmd_t
zb_uint16_t fast_rejoin_first_backoff_seconds
Definition tr_zcl_cmd_structs.h:4051
ZB_PACKED_PRE struct @020310131072146133331114226010033131061045060307 tr_color_control_step_saturation_cmd_t
zb_uint16_t check_in_interval
Definition tr_zcl_cmd_structs.h:4065
zb_uint8_t * translation_table_list
Definition tr_zcl_cmd_structs.h:1086
zb_uint8_t confirm_key_generate_time
Definition tr_zcl_cmd_structs.h:3160
ZB_PACKED_PRE struct @347112176002326011110252373131206001054302110267 tr_payment_payment_confirm_cmd_t
zb_uint8_t actions
Definition tr_zcl_cmd_structs.h:979
ZB_PACKED_PRE struct @165322373365365336162224011053236130201245024021 tr_zll_commissioning_get_group_identifiers_request_cmd_t
ZB_PACKED_PRE struct @344125336150133320216075311177164204257222271052 tr_partition_write_handshake_param_cmd_t
zb_uint16_t section4
Definition tr_zcl_cmd_structs.h:1810
zb_uint8_t * alert_structures
Definition tr_zcl_cmd_structs.h:3719
zb_uint32_t earliest_start_time
Definition tr_zcl_cmd_structs.h:1988
ZB_PACKED_PRE struct @304314030360135071250353315373015010274022262011 tr_sl_works_with_all_hubs_power_descriptor_change_cmd_t
ZB_PACKED_PRE struct @243116262257132063044222263311174361265362276307 tr_events_clear_event_log_request_cmd_t
zb_uint16_t number_of_octets_left
Definition tr_zcl_cmd_structs.h:2650
ZB_PACKED_PRE struct @043300347040117302266123326013167340037230001042 tr_key_establishment_confirm_key_data_response_cmd_t
ZB_PACKED_PRE struct @316254330313252332024210160140364237342017063137 tr_scenes_store_scene_response_cmd_t
ZB_PACKED_PRE struct @246350172100113216240130327152037222124131145007 tr_ias_ace_get_zone_information_cmd_t
zb_uint8_t cooling_temperature_offset
Definition tr_zcl_cmd_structs.h:2304
zb_uint8_t warning_info
Definition tr_zcl_cmd_structs.h:1885
zb_uint8_t level
Definition tr_zcl_cmd_structs.h:284
zb_uint8_t delay
Definition tr_zcl_cmd_structs.h:511
ZB_PACKED_PRE struct @145110202377253363064331301020164257013105340147 tr_door_lock_unlock_with_timeout_cmd_t
ZB_PACKED_PRE struct @306047340213072176201062043255012340375300137351 tr_power_profile_get_power_profile_price_response_cmd_t
zb_uint16_t initiator_network_address
Definition tr_zcl_cmd_structs.h:3847
zb_uint8_t total_group_ids
Definition tr_zcl_cmd_structs.h:3926
ZB_PACKED_PRE struct @265326173362262312024012162207146357343276026044 tr_ias_zone_zone_enroll_response_cmd_t
zb_uint8_t number_of_gpd_commands
Definition tr_zcl_cmd_structs.h:997
zb_uint16_t identify_time
Definition tr_zcl_cmd_structs.h:17
ZB_PACKED_PRE struct @306353346350121367300145104372077361071343321301 tr_window_covering_window_covering_go_to_tilt_value_cmd_t
ZB_PACKED_PRE struct @040262232101226361113100362071175273065245357230 tr_ias_ace_get_zone_status_cmd_t
ZB_PACKED_PRE struct @070071057003360231122045352016260135040266217126 tr_green_power_gp_sink_table_response_cmd_t
zb_ieee_addr_t device_eui64
Definition tr_zcl_cmd_structs.h:4135
zb_uint8_t * snapshot_payload
Definition tr_zcl_cmd_structs.h:2494
zb_uint32_t snapshot_id
Definition tr_zcl_cmd_structs.h:2480
zb_uint16_t response_spacing
Definition tr_zcl_cmd_structs.h:627
zb_uint32_t timer
Definition tr_zcl_cmd_structs.h:3264
ZB_PACKED_PRE struct @170050025073114166042064025304306354217033306077 tr_generic_tunnel_match_protocol_address_cmd_t
zb_uint32_t response_id
Definition tr_zcl_cmd_structs.h:3919
ZB_PACKED_PRE struct @352003354044067376165245240170311017336321161014 tr_appliance_statistics_log_response_cmd_t
zb_uint16_t color_temperature_minimum
Definition tr_zcl_cmd_structs.h:1718
ZB_PACKED_PRE struct @024345037241156126166361141120343237126363115331 tr_power_profile_get_power_profile_price_extended_cmd_t
ZB_PACKED_PRE struct @041220045016232156241230310361140200212060147107 tr_prepayment_emergency_credit_setup_cmd_t
zb_uint8_t number_exempt_clusters
Definition tr_zcl_cmd_structs.h:4020
zb_uint8_t device_information_record_count
Definition tr_zcl_cmd_structs.h:3940
zb_uint8_t device_id
Definition tr_zcl_cmd_structs.h:984
ZB_PACKED_PRE struct @306337177162010335254150231366330327214247006064 tr_prepayment_change_payment_mode_cmd_t
ZB_PACKED_PRE struct @140302171101220361355264061032017100047052133157 tr_simple_metering_get_notified_message_cmd_t
zb_uint8_t * good_id
Definition tr_zcl_cmd_structs.h:3601
zb_uint8_t * debt_payload
Definition tr_zcl_cmd_structs.h:2859
ZB_PACKED_PRE struct @246360057057205323267101070312143016320362117022 tr_door_lock_set_yearday_schedule_response_cmd_t
zb_uint8_t debt_recovery_frequency
Definition tr_zcl_cmd_structs.h:2726
ZB_PACKED_PRE struct @250367156123071302145350177347361346335167071046 tr_price_publish_consolidated_bill_cmd_t
zb_uint8_t action_required
Definition tr_zcl_cmd_structs.h:2868
zb_uint8_t access_control
Definition tr_zcl_cmd_structs.h:3237
zb_uint32_t octet_count
Definition tr_zcl_cmd_structs.h:3343
zb_uint8_t * id
Definition tr_zcl_cmd_structs.h:1263
zb_uint8_t direction
Definition tr_zcl_cmd_structs.h:1564
ZB_PACKED_PRE struct @351004236324175055165017317270203046203155317207 tr_data_rate_control_data_rate_notification_cmd_t
ZB_PACKED_PRE struct @263200005271351135151074171230066051364010130306 tr_rssi_location_get_location_data_cmd_t
ZB_PACKED_PRE struct @354116257133102017121000136153216034260076275061 tr_color_control_step_color_temperature_cmd_t
zb_uint8_t cancel_control
Definition tr_zcl_cmd_structs.h:2319
ZB_PACKED_PRE struct @345225033350001246247310252301276004353074377161 tr_over_the_air_bootloading_image_block_response_cmd_t
zb_uint16_t old_currency
Definition tr_zcl_cmd_structs.h:2256
zb_uint8_t * cli_cmd
Definition tr_zcl_cmd_structs.h:4001
ZB_PACKED_PRE struct @226045137364143034030060251257106356244026345236 tr_ias_ace_zone_status_changed_cmd_t
ZB_PACKED_PRE struct @074114203052131115134055030260312055236017031175 tr_color_control_move_color_cmd_t
ZB_PACKED_PRE struct @131276363173251014173025060106204247210203125066 tr_price_publish_price_matrix_cmd_t
zb_uint8_t source_of_top_up
Definition tr_zcl_cmd_structs.h:2842
zb_uint8_t encrypted_network_key[16]
Definition tr_zcl_cmd_structs.h:3836
ZB_PACKED_PRE struct @253322065240062107350004157374276237270237062071 tr_chatting_user_joined_cmd_t
zb_uint16_t section9
Definition tr_zcl_cmd_structs.h:1815
zb_uint8_t version
Definition tr_zcl_cmd_structs.h:3930
zb_uint8_t groupcast_radius
Definition tr_zcl_cmd_structs.h:988
zb_uint8_t * preference_payload
Definition tr_zcl_cmd_structs.h:3223
ZB_PACKED_PRE struct @141344343124223077361060057006170021055317211137 tr_simple_metering_configure_notification_scheme_cmd_t
ZB_PACKED_PRE struct @355244303143271151257024363131006270345226122107 tr_rssi_location_get_device_configuration_cmd_t
zb_uint16_t function_id
Definition tr_zcl_cmd_structs.h:855
zb_uint8_t ack_nack
Definition tr_zcl_cmd_structs.h:3456
zb_uint8_t zll_information
Definition tr_zcl_cmd_structs.h:3807
zb_uint8_t start_index
Definition tr_zcl_cmd_structs.h:973
zb_uint32_t conversion_factor
Definition tr_zcl_cmd_structs.h:2116
ZB_PACKED_PRE struct @244351332145001335261361143102176146224237005352 tr_gaming_action_control_cmd_t
zb_uint32_t gpd_src_id
Definition tr_zcl_cmd_structs.h:905
zb_uint16_t debt_recovery_balance_percentage
Definition tr_zcl_cmd_structs.h:2728
ZB_PACKED_PRE struct @227206147070264145321235142057316313254024326163 tr_ias_ace_get_zone_status_response_cmd_t
zb_uint32_t upgrade_time
Definition tr_zcl_cmd_structs.h:689
ZB_PACKED_PRE struct @204320030126245005374203035000362327266361037323 tr_level_control_move_to_level_cmd_t
ZB_PACKED_PRE struct @102300025320116071005175372266224244126374162047 tr_power_profile_get_power_profile_price_cmd_t
zb_uint8_t pin[TR_DOOR_LOCK_SERVER_MAX_PIN_LEN+1]
Definition tr_door_lock_server.h:28
tr_door_lock_user_status_t user_status
Definition tr_door_lock_server.h:34
tr_door_lock_user_status_t status
Definition tr_door_lock_server.h:26
tr_door_lock_user_type_t user_type
Definition tr_door_lock_server.h:35
zb_uint16_t user_id
Definition tr_door_lock_server.h:33
zb_uint8_t group_name[TR_GROUPS_SERVER_GROUP_NAME_MAX_LEN+1]
Definition tr_groups_server.h:26
zb_uint16_t group_id
Definition tr_groups_server.h:25
zb_uint8_t group_count
Definition tr_groups_server.h:32
zb_uint8_t capacity
Definition tr_groups_server.h:31
zb_uint16_t group_list[ZB_APS_GROUP_TABLE_SIZE]
Definition tr_groups_server.h:33
zb_uint8_t endpoint
Definition tr_nvram_attr.h:176
zb_uint16_t cluster_id
Definition tr_nvram_attr.h:177
zb_uint32_t file_version
Definition tr_over_the_air_bootloading_client.h:150
zb_uint16_t manufacturer_code
Definition tr_over_the_air_bootloading_client.h:148
zb_uint16_t image_type
Definition tr_over_the_air_bootloading_client.h:149
zb_uint32_t current_time
Definition tr_over_the_air_bootloading_client.h:112
zb_uint8_t scene_name[TR_SCENES_COMMON_SCENE_NAME_MAX_LEN]
Definition tr_scenes_common.h:50
zb_uint8_t scene_count
Definition tr_scenes_common.h:85
zb_uint8_t scene_id
Definition tr_scenes_common.h:40
zb_uint16_t transition_time
Definition tr_scenes_common.h:49
zb_uint8_t scene_list[ZB_ZCL_MAX_SCENE_TABLE_RECORDS]
Definition tr_scenes_common.h:86
zb_uint8_t day_of_week_for_sequence
Definition tr_thermostat_server.h:46
zb_uint8_t payload[TR_THERMOSTAT_SERVER_MAX_SET_CMD_PAYLOAD]
Definition tr_thermostat_server.h:48
zb_uint8_t mode_for_sequence
Definition tr_thermostat_server.h:47
zb_uint8_t number_of_transitions_for_sequence
Definition tr_thermostat_server.h:45