File: zdo.py

package info (click to toggle)
zigpy-znp 0.13.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,120 kB
  • sloc: python: 14,459; makefile: 6
file content (1453 lines) | stat: -rw-r--r-- 47,033 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
"""ZDO Interface

This interface allows the tester to issue commands to the ZDO layer in the target
and receive responses. Each of these messages has a corresponding message that is
returned by the target. The response message only indicates that the command message
was received and executed. The result of the command execution will be conveyed to
the tester via a callback message interface"""

from __future__ import annotations

import zigpy.zdo.types

import zigpy_znp.types as t


class SecurityEntry(t.FixedList, item_type=t.uint8_t, length=5):
    pass


class StartupState(t.enum8):
    RestoredNetworkState = 0x00
    NewNetworkState = 0x01
    NotStarted = 0x02


class RouteDiscoveryOptions(t.bitmap8):
    UNICAST = 0x00
    MTO_WITH_ROUTE_CACHE = 0x01
    MTO_WITHOUT_ROUTE_CACHE = 0x03


class RouteStatus(t.enum8):
    INIT = 0
    ACTIVE = 1
    DISC = 2
    LINK_FAIL = 3
    REPAIR = 4


class RouteOptions(t.bitmap8):
    # Used in option of NLME_RouteDiscoveryRequest() and rtgTable[]
    MTO_ROUTE = 0x01

    # Used in option of NLME_RouteDiscoveryRequest() and rtgTable[]
    NO_ROUTE_CACHE = 0x02

    # Used in option of rtgTable[]
    RTG_RECORD = 0x04

    # Sender has route cache. Used in option of rtgTable[]
    MTO_ROUTE_RC = 0x08

    # Sender doesn't have route cache. Used in option of rtgTable[]
    MTO_ROUTE_NRC = 0x10

    # Used in option of route request command frame
    DEST_IEEE_ADDR = 0x20

    # Used in all three places
    MULTICAST_ROUTE = 0x40


class RoutingStatus(t.enum8):
    SUCCESS = 0
    FAIL = 1
    TBL_FULL = 2
    HIGHER_COST = 3
    NO_ENTRY = 4
    INVALID_PATH = 5
    INVALID_PARAM = 6
    SRC_TBL_FULL = 7


class MACCapabilities(t.bitmap8):
    PANCoordinator = 1 << 0
    Router = 1 << 1
    MainsPowered = 1 << 2
    RXWhenIdle = 1 << 3
    Reserved5 = 1 << 4
    Reserved6 = 1 << 5
    SecurityCapable = 1 << 6
    AllocateShortAddrDuringAssocNeeded = 1 << 7


class LeaveOptions(t.bitmap8):
    NONE = 0
    Rejoin = 1 << 0
    RemoveChildren = 1 << 1


class NetworkList(t.LVList, item_type=t.Network, length_type=t.uint8_t):
    pass


class EndpointList(t.LVList, item_type=t.uint8_t, length_type=t.uint8_t):
    pass


class GroupIdList(t.LVList, item_type=t.GroupId, length_type=t.uint8_t):
    pass


class BindEntryList(t.LVList, item_type=zigpy.zdo.types.Binding, length_type=t.uint8_t):
    pass


class BeaconList(t.LVList, item_type=t.Beacon, length_type=t.uint8_t):
    pass


class EnergyValues(t.LVList, item_type=t.uint8_t, length_type=t.uint8_t):
    pass


class ChildInfoList(t.LVList, item_type=t.EUI64, length_type=t.uint8_t):
    pass


class NWKArray(t.CompleteList, item_type=t.NWK):
    pass


class NullableNodeDescriptor(zigpy.zdo.types.NodeDescriptor):
    @classmethod
    def deserialize(cls, data: bytes) -> tuple[NullableNodeDescriptor, bytes]:
        if data == b"\x00":
            return cls(), b""

        return super().deserialize(data)

    def serialize(self) -> bytes:
        # Special case when the node descriptor is completely empty
        if not self.assigned_fields():
            return b"\x00"

        return super().serialize()


class AddrRequestType(t.enum8):
    SINGLE = 0x00
    EXTENDED = 0x01


class ZDO(t.CommandsBase, subsystem=t.Subsystem.ZDO):
    # send a "Network Address Request". This message sends a broadcast message looking
    # for a 16 bit address with a known 64 bit IEEE address. You must subscribe to
    # "ZDO Network Address Response" to receive the response to this message
    NwkAddrReq = t.CommandDef(
        t.CommandType.SREQ,
        0x00,
        req_schema=(
            t.Param(
                "IEEE",
                t.EUI64,
                "Extended address of the device requesting association",
            ),
            t.Param(
                "RequestType",
                AddrRequestType,
                "0x00 -- single device request, 0x01 -- Extended",
            ),
            t.Param(
                "StartIndex", t.uint8_t, "Starting index into the list of children"
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # request a device's IEEE 64-bit address
    IEEEAddrReq = t.CommandDef(
        t.CommandType.SREQ,
        0x01,
        req_schema=(
            t.Param("NWK", t.NWK, "Short address of the device"),
            t.Param(
                "RequestType",
                AddrRequestType,
                "0x00 -- single device request, 0x01 -- Extended",
            ),
            t.Param(
                "StartIndex", t.uint8_t, "Starting index into the list of children"
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # inquire about the Node Descriptor information of the destination device
    NodeDescReq = t.CommandDef(
        t.CommandType.SREQ,
        0x02,
        req_schema=(
            t.Param(
                "DstAddr",
                t.NWK,
                "Short address of the device generating the inquiry",
            ),
            t.Param(
                "NWKAddrOfInterest",
                t.NWK,
                "Short address of the device being queried",
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # inquire about the Power Descriptor information of the destination device
    PowerDescReq = t.CommandDef(
        t.CommandType.SREQ,
        0x03,
        req_schema=(
            t.Param(
                "DstAddr",
                t.NWK,
                "Short address of the device generating the inquiry",
            ),
            t.Param(
                "NWKAddrOfInterest",
                t.NWK,
                "Short address of the device being queried",
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # inquire as to the Simple Descriptor of the destination device's Endpoint
    SimpleDescReq = t.CommandDef(
        t.CommandType.SREQ,
        0x04,
        req_schema=(
            t.Param(
                "DstAddr",
                t.NWK,
                "Short address of the device generating the inquiry",
            ),
            t.Param(
                "NWKAddrOfInterest",
                t.NWK,
                "Short address of the device being queried",
            ),
            t.Param("Endpoint", t.uint8_t, "application endpoint the data is from"),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # request a list of active endpoint from the destination device
    ActiveEpReq = t.CommandDef(
        t.CommandType.SREQ,
        0x05,
        req_schema=(
            t.Param(
                "DstAddr",
                t.NWK,
                "Short address of the device generating the inquiry",
            ),
            t.Param(
                "NWKAddrOfInterest",
                t.NWK,
                "Short address of the device being queried",
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # request the device match descriptor
    MatchDescReq = t.CommandDef(
        t.CommandType.SREQ,
        0x06,
        req_schema=(
            t.Param(
                "DstAddr",
                t.NWK,
                "Short address of the device generating the inquiry",
            ),
            t.Param(
                "NWKAddrOfInterest",
                t.NWK,
                "Short address of the device being queried",
            ),
            t.Param("ProfileId", t.uint16_t, "profile id of the device"),
            t.Param("InputClusters", t.ClusterIdList, "Input cluster id list"),
            t.Param("OutputClusters", t.ClusterIdList, "Output cluster id list"),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # request for the destination device's complex descriptor
    ComplexDescReq = t.CommandDef(
        t.CommandType.SREQ,
        0x07,
        req_schema=(
            t.Param(
                "DstAddr",
                t.NWK,
                "Short address of the device generating the inquiry",
            ),
            t.Param(
                "NWKAddrOfInterest",
                t.NWK,
                "Short address of the device being queried",
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # request for the destination device's user descriptor
    UserDescReq = t.CommandDef(
        t.CommandType.SREQ,
        0x08,
        req_schema=(
            t.Param(
                "DstAddr",
                t.NWK,
                "Short address of the device generating the inquiry",
            ),
            t.Param(
                "NWKAddrOfInterest",
                t.NWK,
                "Short address of the device being queried",
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # This command will cause the CC2480 device to issue an "End device announce"
    # broadcast packet to the network. This is typically used by an end-device to
    # announce itself to the network
    EndDeviceAnnce = t.CommandDef(
        t.CommandType.SREQ,
        0x0A,
        req_schema=(
            t.Param("NWK", t.NWK, "Short address of the device"),
            t.Param(
                "IEEE",
                t.EUI64,
                "Extended address of the device generating the request",
            ),
            t.Param("Capabilities", t.uint8_t, "MAC Capabilities"),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # write a User Descriptor value to the targeted device
    UserDescSet = t.CommandDef(
        t.CommandType.SREQ,
        0x0B,
        req_schema=(
            t.Param(
                "DstAddr",
                t.NWK,
                "network address of the device generating the set request",
            ),
            t.Param(
                "NWK", t.NWK, "NWK address of the destination device being queried"
            ),
            t.Param("UserDescriptor", t.ShortBytes, "User descriptor array"),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # discover the location of a particular system server or servers as indicated by
    # the ServerMask parameter. The destination addressing on this request is
    # 'broadcast to all RxOnWhenIdle devices'
    ServerDiscReq = t.CommandDef(
        t.CommandType.SREQ,
        0x0C,
        req_schema=(
            t.Param(
                "ServerMask", t.uint16_t, "system server capabilities of the device"
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # request an End Device Bind with the destination device
    EndDeviceBindReq = t.CommandDef(
        t.CommandType.SREQ,
        0x20,
        req_schema=(
            t.Param(
                "DstAddr",
                t.NWK,
                "Short address of the device generating the request",
            ),
            t.Param(
                "LocalCoordinator",
                t.NWK,
                (
                    "local coordinator's short address. In the case of source "
                    "binding, it's the short address of the source address"
                ),
            ),
            t.Param("IEEE", t.EUI64, "Local coordinator's IEEE address"),
            t.Param("Endpoint", t.uint8_t, "device's endpoint"),
            t.Param("ProfileId", t.uint16_t, "profile id of the device"),
            t.Param("InputClusters", t.ClusterIdList, "Input cluster id list"),
            t.Param("OutputClusters", t.ClusterIdList, "Output cluster id list"),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # request a Bind
    BindReq = t.CommandDef(
        t.CommandType.SREQ,
        0x21,
        req_schema=(
            t.Param("Dst", t.NWK, "Short address of the destination device"),
            t.Param("Src", t.EUI64, "Binding source IEEE address"),
            t.Param("SrcEndpoint", t.uint8_t, "binding source endpoint"),
            t.Param("ClusterId", t.ClusterId, "Cluster id to match in messages"),
            t.Param(
                "Address", zigpy.zdo.types.MultiAddress, "Binding address/endpoint"
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # request a UnBind
    UnBindReq = t.CommandDef(
        t.CommandType.SREQ,
        0x22,
        req_schema=(
            t.Param("Dst", t.NWK, "Short address of the destination device"),
            t.Param("Src", t.EUI64, "Binding source IEEE address"),
            t.Param("SrcEndpoint", t.uint8_t, "binding source endpoint"),
            t.Param("ClusterId", t.ClusterId, "Cluster id to match in messages"),
            t.Param(
                "Address", zigpy.zdo.types.MultiAddress, "Unbinding address/endpoint"
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # request the destination device to perform a network discovery
    MgmtNwkDiscReq = t.CommandDef(
        t.CommandType.SREQ,
        0x30,
        req_schema=(
            t.Param("Dst", t.NWK, "Short address of the destination device"),
            t.Param("Channels", t.Channels, "Bitmask of channels to scan"),
            t.Param("ScanDuration", t.uint8_t, "Scanning time"),
            t.Param(
                "StartIndex",
                t.uint8_t,
                "Specifies where to start in the response array",
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # request the destination device to perform a LQI query of other devices
    # in the network
    MgmtLqiReq = t.CommandDef(
        t.CommandType.SREQ,
        0x31,
        req_schema=(
            t.Param("Dst", t.NWK, "Short address of the destination device"),
            t.Param(
                "StartIndex",
                t.uint8_t,
                "Specifies where to start in the response array",
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # request the Routing Table of the destination device
    MgmtRtgReq = t.CommandDef(
        t.CommandType.SREQ,
        0x32,
        req_schema=(
            t.Param("Dst", t.NWK, "Short address of the destination device"),
            t.Param(
                "StartIndex",
                t.uint8_t,
                "Specifies where to start in the response array",
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # request the Binding Table of the destination device
    MgmtBindReq = t.CommandDef(
        t.CommandType.SREQ,
        0x33,
        req_schema=(
            t.Param("Dst", t.NWK, "Short address of the destination device"),
            t.Param(
                "StartIndex",
                t.uint8_t,
                "Specifies where to start in the response array",
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # request a Management Leave Request for the target device
    MgmtLeaveReq = t.CommandDef(
        t.CommandType.SREQ,
        0x34,
        req_schema=(
            t.Param(
                "DstAddr",
                t.NWK,
                "Short address of the device that will process the "
                "mgmt leave (remote or self)",
            ),
            t.Param(
                "IEEE",
                t.EUI64,
                (
                    "The 64-bit IEEE address of the entity to be removed from the "
                    "network or 0x0000000000000000 if the device removes itself "
                    "from the network."
                ),
            ),
            t.Param(
                "RemoveChildren_Rejoin",
                LeaveOptions,
                "Specifies actions to be performed by "
                "device when leaving the network.",
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # request the Management Direct Join Request of a designated device
    MgmtDirectJoinReq = t.CommandDef(
        t.CommandType.SREQ,
        0x35,
        req_schema=(
            t.Param("Dst", t.NWK, "Short address of the device to join"),
            t.Param("IEEE", t.EUI64, "IEEE address of the device to join"),
            t.Param("Capabilities", t.uint8_t, "MAC Capabilities"),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # set the Permit Join for the destination device
    MgmtPermitJoinReq = t.CommandDef(
        t.CommandType.SREQ,
        0x36,
        req_schema=(
            t.Param("AddrMode", t.AddrMode, "Address mode of DST: short or broadcast"),
            t.Param("Dst", t.NWK, "Short address of the device to join"),
            t.Param("Duration", t.uint8_t, "Specifies the duration to permit joining"),
            t.Param(
                "TCSignificance",
                t.uint8_t,
                "Trust Center Significance  -- unused in the code!",
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # allow updating of network configuration parameters or to request information
    # from devices on network conditions in the local operating environment
    MgmtNWKUpdateReq = t.CommandDef(
        t.CommandType.SREQ,
        0x37,
        req_schema=(
            t.Param("Dst", t.NWK, "Short address of the destination device"),
            t.Param("DstAddrMode", t.AddrMode, "Destination Address mode"),
            t.Param("Channels", t.Channels, "Bitmask of channels to scan"),
            t.Param(
                "ScanDuration",
                t.uint8_t,
                " - 0x00-0x05: Scanning time\n"
                " - 0xFE: Command to switch channels\n"
                " - 0xFF: Set a new channel mask and NWK manager addr",
            ),
            t.Param(
                "ScanCount",
                t.uint8_t,
                "The number of energy scans to be conducted and reported",
            ),
            t.Param(
                "NwkManagerAddr",
                t.NWK,
                "NWK address for the device with the Network Manager bit set",
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # register for a ZDO callback
    MsgCallbackRegister = t.CommandDef(
        t.CommandType.SREQ,
        0x3E,
        req_schema=(
            t.Param(
                "ClusterId",
                t.ClusterId,
                "Cluster id for which to receive ZDO callback",
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # de-register for a ZDO callback
    MsgCallbackRemove = t.CommandDef(
        t.CommandType.SREQ,
        0x3F,
        req_schema=(
            t.Param(
                "ClusterId",
                t.ClusterId,
                "Cluster id for which to receive ZDO callback",
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # starts the device in the network
    # XXX: In Z-Stack 3, this actually just calls `bdb_StartCommissioning()` and returns
    #  ZSuccess. It just happens that ZSuccess == StartupState.RestoredNetworkState == 0
    StartupFromApp = t.CommandDef(
        t.CommandType.SREQ,
        0x40,
        req_schema=(t.Param("StartDelay", t.uint16_t, "Startup delay"),),
        rsp_schema=(t.Param("State", StartupState, "State after startup"),),
    )

    # Extended version of ZDO to indicate to router devices to create
    # a distributed network
    StartupFromAppExt = t.CommandDef(
        t.CommandType.SREQ,
        0x54,
        req_schema=(
            t.Param("StartDelay", t.uint16_t, "Startup delay"),
            t.Param(
                "Mode", t.Bool, "True -- ZR devices to create a distributed network"
            ),
        ),
        rsp_schema=(t.Param("State", StartupState, "State after startup"),),
    )

    # set the application link key for a given device
    SetLinkKey = t.CommandDef(
        t.CommandType.SREQ,
        0x23,
        req_schema=(
            t.Param("NWK", t.NWK, "Short address of the device"),
            t.Param("IEEE", t.EUI64, "Extended address of the device"),
            t.Param("LinkKeyData", t.KeyData, "128bit link key"),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # remove the application link key for a given device
    RemoveLinkKey = t.CommandDef(
        t.CommandType.SREQ,
        0x24,
        req_schema=(t.Param("IEEE", t.EUI64, "Extended address of the device"),),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # get the application link key for a given device
    GetLinkKey = t.CommandDef(
        t.CommandType.SREQ,
        0x25,
        req_schema=(t.Param("IEEE", t.EUI64, "Extended address of the device"),),
        rsp_schema=(
            t.Param("Status", t.Status, "Status is either Success (0) or Failure (1)"),
            t.Param("IEEE", t.EUI64, "Extended address of the device"),
            t.Param("LinkKeyData", t.KeyData, "128bit link key"),
        ),
    )

    # initiate a network discovery (active scan)
    NetworkDiscoveryReq = t.CommandDef(
        t.CommandType.SREQ,
        0x26,
        req_schema=(
            t.Param("Channels", t.Channels, "Bitmask of channels to scan"),
            t.Param("ScanDuration", t.uint8_t, "Scanning time"),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # request the device to join itself to a parent device on a network
    JoinReq = t.CommandDef(
        t.CommandType.SREQ,
        0x27,
        req_schema=(
            t.Param("LogicalChannel", t.uint8_t, "Channel where the PAN is located"),
            t.Param("PanId", t.PanId, "The PAN Id to join."),
            t.Param("ExtendedPanId", t.ExtendedPanId, "64-bit extended PAN ID"),
            t.Param(
                "ChosenParent",
                t.NWK,
                "Short address of the parent device chosen to join",
            ),
            t.Param("Depth", t.uint8_t, "Depth of the parent"),
            t.Param("StackProfile", t.uint8_t, "Stack profile of the network to use"),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # XXX: Undocumented
    SendData = t.CommandDef(
        t.CommandType.SREQ,
        0x28,
        req_schema=(
            t.Param("Dst", t.NWK, "Short address of the destination"),
            t.Param("TSN", t.uint8_t, "Transaction sequence number"),
            t.Param("CommandId", t.uint16_t, "ZDO Command ID"),
            t.Param(
                "Data",
                t.Bytes,
                "Data to send",
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # handles the ZDO security add link key extension message
    SecAddLinkKey = t.CommandDef(
        t.CommandType.SREQ,
        0x42,
        req_schema=(
            t.Param("NWK", t.NWK, "Short address of the device"),
            t.Param("IEEE", t.EUI64, "Extended address of the device"),
            t.Param("LinkKeyData", t.KeyData, "128bit link key"),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # handle the ZDO security entry lookup extended extension message
    SecEntryLookupExt = t.CommandDef(
        t.CommandType.SREQ,
        0x43,
        req_schema=(
            t.Param("IEEE", t.EUI64, "Extended address of the device"),
            t.Param("Entry", SecurityEntry, "Valid entry"),
        ),
        rsp_schema=(
            t.Param("AMI", t.uint16_t, "Address manager index"),
            t.Param("KeyNVID", t.uint16_t, "Index to link key table in NV"),
            t.Param("Option", t.uint8_t, "Authentication option for device"),
        ),
    )

    # handle the ZDO security remove device extended extension message
    SecDeviceRemove = t.CommandDef(
        t.CommandType.SREQ,
        0x44,
        req_schema=(t.Param("IEEE", t.EUI64, "Extended address of the device"),),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # handle the ZDO route discovery extension message
    ExtRouteDisc = t.CommandDef(
        t.CommandType.SREQ,
        0x45,
        req_schema=(
            t.Param("Dst", t.NWK, "Short address of the destination"),
            t.Param("Options", RouteDiscoveryOptions, "Route options"),
            t.Param("Radius", t.uint8_t, "Broadcast radius"),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # handle the ZDO route check extension messages
    ExtRouteChk = t.CommandDef(
        t.CommandType.SREQ,
        0x46,
        req_schema=(
            t.Param("Dst", t.NWK, "Short address of the destination"),
            t.Param("RtStatus", RouteStatus, "Status value for routing entries"),
            t.Param("Options", RouteOptions, "Route options"),
        ),
        rsp_schema=(t.Param("Status", RoutingStatus, "Route status"),),
    )

    # handle the ZDO extended remove group extension message
    ExtRemoveGroup = t.CommandDef(
        t.CommandType.SREQ,
        0x47,
        req_schema=(
            t.Param("Endpoint", t.uint8_t, "Endpoint to look for"),
            t.Param("GroupId", t.GroupId, "ID to look for group"),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # handle the ZDO extended remove all group extension message
    ExtRemoveAllGroups = t.CommandDef(
        t.CommandType.SREQ,
        0x48,
        req_schema=(t.Param("Endpoint", t.uint8_t, "Endpoint to look for"),),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # handle the ZDO extension find all groups for endpoint message
    ExtFindAllGroupsEndpoint = t.CommandDef(
        t.CommandType.SREQ,
        0x49,
        req_schema=(
            t.Param("Endpoint", t.uint8_t, "Endpoint to look for"),
            # this parameter does not make sense
            t.Param("Groups", t.uint16_t, "List to hold group IDs"),
        ),
        rsp_schema=(t.Param("Groups", GroupIdList, "List of Group IDs"),),
    )

    # handle the ZDO extension find group message
    ExtFindGroup = t.CommandDef(
        t.CommandType.SREQ,
        0x4A,
        req_schema=(
            t.Param("Endpoint", t.uint8_t, "Endpoint to look for"),
            t.Param("GroupId", t.GroupId, "ID to look for group"),
        ),
        rsp_schema=(t.Param("Group", t.Bytes, "Group information"),),
    )

    # handle the ZDO extension add group message
    ExtAddGroup = t.CommandDef(
        t.CommandType.SREQ,
        0x4B,
        req_schema=(
            t.Param("Endpoint", t.uint8_t, "Endpoint to look for"),
            t.Param("GroupId", t.GroupId, "ID to look for group"),
            t.Param("GroupName", t.CharacterString, "Group name"),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # handle the ZDO extension count all groups message
    ExtCountAllGroups = t.CommandDef(
        t.CommandType.SREQ,
        0x4C,
        req_schema=(),
        rsp_schema=(t.Param("GroupCount", t.uint8_t, "Total number of groups"),),
    )

    # handle the ZDO extension Get/Set RxOnIdle to ZMac message
    ExtRxIdle = t.CommandDef(
        t.CommandType.SREQ,
        0x4D,
        req_schema=(
            t.Param("SetFlag", t.uint8_t, "Set or get value"),
            t.Param("SetValue", t.uint8_t, "Value to be set to ZMac message"),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # handle the ZDO security update network key extension message
    ExtUpdateNwkKey = t.CommandDef(
        t.CommandType.SREQ,
        0x4E,
        req_schema=(
            t.Param("Dst", t.NWK, "Short address of the destination"),
            t.Param("KeySeqNum", t.uint8_t, "Key sequence number"),
            t.Param("Key", t.KeyData, "Network key"),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # handle the ZDO security switch network key extension message
    ExtSwitchNwkKey = t.CommandDef(
        t.CommandType.SREQ,
        0x4F,
        req_schema=(
            t.Param("Dst", t.NWK, "Short address of the destination"),
            t.Param("KeySeqNum", t.uint8_t, "Key sequence number"),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # handle the ZDO extension network message
    ExtNwkInfo = t.CommandDef(
        t.CommandType.SREQ,
        0x50,
        req_schema=(),
        rsp_schema=(
            t.Param("Dst", t.NWK, "Short address of the destination"),
            t.Param("PanId", t.PanId, "The PAN Id to join."),
            t.Param("ParentNWK", t.NWK, "Short address of the parent"),
            t.Param("ExtendedPanId", t.ExtendedPanId, "64-bit extended PAN ID"),
            t.Param("ParentIEEE", t.EUI64, "IEEE address of the parent"),
            t.Param("Channel", t.Channels, "Current Channel"),
        ),
    )

    # handle the ZDO extension Security Manager APS Remove Request message
    ExtSecApsRemoveReq = t.CommandDef(
        t.CommandType.SREQ,
        0x51,
        req_schema=(
            t.Param("NWK", t.NWK, "Short address of the device"),
            t.Param("IEEE", t.EUI64, "IEEE address of the device"),
            t.Param("ParentNWK", t.NWK, "Short address of the parent"),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # forces a network concentrator change by resetting zgConcentratorEnable and
    # zgConcentratorDiscoveryTime from NV and set nwk event
    ForceConcentratorChange = t.CommandDef(
        t.CommandType.SREQ, 0x52, req_schema=(), rsp_schema=()
    )

    # set parameters not settable through NV
    ExtSetParams = t.CommandDef(
        t.CommandType.SREQ,
        0x53,
        req_schema=(t.Param("UseMulticast", t.Bool, "Set or reset of multicast"),),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # handle ZDO network address of interest request
    NwkAddrOfInterestReq = t.CommandDef(
        t.CommandType.SREQ,
        0x29,
        req_schema=(
            t.Param("NWK", t.NWK, "Short address of the destination"),
            t.Param(
                "NWKAddrOfInterest",
                t.NWK,
                "Short address of the device being queried",
            ),
            t.Param(
                "Cmd",
                t.uint8_t,
                "A valid Cluster ID command as specified by profile",
            ),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )

    # ZDO Callbacks
    # return the results to the NwkAddrReq
    NwkAddrRsp = t.CommandDef(
        t.CommandType.AREQ,
        0x80,
        rsp_schema=(
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
            t.Param("IEEE", t.EUI64, "Extended address of the source device"),
            t.Param("NWK", t.NWK, "Short address of the source device"),
            t.Param("NumAssoc", t.uint8_t, "Number of associated devices"),
            t.Param(
                "Index",
                t.uint8_t,
                "Starting index into the list of associated devices",
            ),
            t.Param("Devices", NWKArray, "List of the associated devices"),
        ),
    )

    # return the results to the IEEEAddrReq
    IEEEAddrRsp = t.CommandDef(
        t.CommandType.AREQ,
        0x81,
        rsp_schema=(
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
            t.Param("IEEE", t.EUI64, "Extended address of the source device"),
            t.Param("NWK", t.NWK, "Short address of the source device"),
            t.Param("NumAssoc", t.uint8_t, "Number of associated devices"),
            t.Param(
                "Index",
                t.uint8_t,
                "Starting index into the list of associated devices",
            ),
            t.Param("Devices", NWKArray, "List of the associated devices"),
        ),
    )

    # return the results to the NodeDescReq
    NodeDescRsp = t.CommandDef(
        t.CommandType.AREQ,
        0x82,
        rsp_schema=(
            t.Param("Src", t.NWK, "The message's source network address."),
            t.Param(
                "Status",
                t.ZDOStatus,
                "This field indicates either SUCCESS or FAILURE.",
            ),
            t.Param("NWK", t.NWK, "Device's short address of this Node descriptor"),
            t.Param(
                "NodeDescriptor",
                NullableNodeDescriptor,
                "Node descriptor",
                optional=True,
            ),
        ),
    )

    # return the results to the PowerDescReq
    PowerDescRsp = t.CommandDef(
        t.CommandType.AREQ,
        0x83,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
            t.Param("NWK", t.NWK, "Short address of the device response describes"),
            t.Param(
                "PowerDescriptor",
                zigpy.zdo.types.PowerDescriptor,
                "Power descriptor response",
            ),
        ),
    )

    # return the results to the SimpleDescReq
    SimpleDescRsp = t.CommandDef(
        t.CommandType.AREQ,
        0x84,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
            t.Param("NWK", t.NWK, "Short address of the device response describes"),
            t.Param(
                "SimpleDescriptor",
                zigpy.zdo.types.SizePrefixedSimpleDescriptor,
                "Simple descriptor",
            ),
        ),
    )

    # return the results to the ActiveEpReq
    ActiveEpRsp = t.CommandDef(
        t.CommandType.AREQ,
        0x85,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
            t.Param("NWK", t.NWK, "Short address of the device response describes"),
            t.Param("ActiveEndpoints", EndpointList, "Active endpoints list"),
        ),
    )

    # return the results to the MatchDescReq
    MatchDescRsp = t.CommandDef(
        t.CommandType.AREQ,
        0x86,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
            t.Param("NWK", t.NWK, "Short address of the device response describes"),
            t.Param("MatchList", EndpointList, "Endpoints list"),
        ),
    )

    # return the results to the ComplexDescReq
    ComplexDescRsp = t.CommandDef(
        t.CommandType.AREQ,
        0x87,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
            t.Param("NWK", t.NWK, "Short address of the device response describes"),
            t.Param("ComplexDesc", t.ShortBytes, "Complex descriptor"),
        ),
    )

    # return the results to the UserDescReq
    UserDescRsp = t.CommandDef(
        t.CommandType.AREQ,
        0x88,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
            t.Param("NWK", t.NWK, "Short address of the device response describes"),
            t.Param("UserDesc", t.ShortBytes, "User descriptor"),
        ),
    )

    # notify the user when the device receives a user descriptor
    UserDescCnf = t.CommandDef(
        t.CommandType.AREQ,
        0x89,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
            t.Param("NWK", t.NWK, "Short address of the device response describes"),
        ),
    )

    # return the results to the ServerDiscReq
    ServerDiscRsp = t.CommandDef(
        t.CommandType.AREQ,
        0x8A,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
            t.Param("ServerMask", t.ZDOStatus, "Server mask response"),
        ),
    )

    ParentAnnceRsp = t.CommandDef(
        t.CommandType.AREQ,
        0x9F,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
            t.Param("ChildInfo", ChildInfoList),
        ),
    )

    # return the results to the EndDeviceBindReq
    EndDeviceBindRsp = t.CommandDef(
        t.CommandType.AREQ,
        0xA0,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
        ),
    )

    # return the results to the BindReq
    BindRsp = t.CommandDef(
        t.CommandType.AREQ,
        0xA1,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
        ),
    )

    # return the results to the UnBindReq
    UnBindRsp = t.CommandDef(
        t.CommandType.AREQ,
        0xA2,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
        ),
    )

    # return the results to the MgmtNwkDiscReq
    MgmtNwkDiscRsp = t.CommandDef(
        t.CommandType.AREQ,
        0xB0,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
            t.Param("NetworkCount", t.uint8_t, "Total number of entries available"),
            t.Param("Index", t.uint8_t, "Where the response starts"),
            t.Param("Networks", NetworkList, "Discovered networks list"),
        ),
    )

    # return the results to the MgmtLqiReq
    MgmtLqiRsp = t.CommandDef(
        t.CommandType.AREQ,
        0xB1,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
            t.Param("Neighbors", zigpy.zdo.types.Neighbors, "Neighbors", optional=True),
        ),
    )

    # return the results to the MgmtRtgReq
    MgmtRtgRsp = t.CommandDef(
        t.CommandType.AREQ,
        0xB2,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
            t.Param("Routes", zigpy.zdo.types.Routes, "Routes"),
        ),
    )

    # return the results to the MgmtBingReq
    MgmtBindRsp = t.CommandDef(
        t.CommandType.AREQ,
        0xB3,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
            t.Param(
                "BindTableEntries",
                t.uint8_t,
                "Total number of entries available on the device",
            ),
            t.Param("StartIndex", t.uint8_t, "Index where the response starts"),
            t.Param("BindTableList", BindEntryList, "list of BindEntries"),
        ),
    )

    # return the results to the MgmtLeaveReq
    MgmtLeaveRsp = t.CommandDef(
        t.CommandType.AREQ,
        0xB4,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
        ),
    )

    # return the results to the MgmtDirectJoinReq
    MgmtDirectJoinRsp = t.CommandDef(
        t.CommandType.AREQ,
        0xB5,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
        ),
    )

    # return the results to the MgmtPermitJoinReq
    MgmtPermitJoinRsp = t.CommandDef(
        t.CommandType.AREQ,
        0xB6,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
        ),
    )

    # return the results to the MgmtPermitJoinReq
    MgmtNWKUpdateNotify = t.CommandDef(
        t.CommandType.AREQ,
        0xB8,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param("Status", t.ZDOStatus, "Status"),
            t.Param("ScannedChannels", t.Channels, "Scanned channels"),
            t.Param("TotalTransmissions", t.uint16_t, "Total transmissions"),
            t.Param("TransmissionFailures", t.uint16_t, "Transmission failures"),
            t.Param(
                "EnergyValues",
                EnergyValues,
                "The result of an energy measurement made on this channel",
            ),
        ),
    )

    # indicates ZDO state change
    StateChangeInd = t.CommandDef(
        t.CommandType.AREQ,
        0xC0,
        rsp_schema=(t.Param("State", t.DeviceState, "New ZDO state"),),
    )

    # indicates the ZDO End Device Announce
    EndDeviceAnnceInd = t.CommandDef(
        t.CommandType.AREQ,
        0xC1,
        rsp_schema=(
            t.Param("Src", t.NWK, "Source address of the message."),
            t.Param("NWK", t.NWK, "Specifies the device's short address"),
            t.Param(
                "IEEE",
                t.EUI64,
                "Extended address of the device generating the request",
            ),
            t.Param("Capabilities", MACCapabilities, "MAC Capabilities"),
        ),
    )

    # indicates that Match Descriptor Response has been sent
    MatchDescRspSent = t.CommandDef(
        t.CommandType.AREQ,
        0xC2,
        rsp_schema=(
            t.Param("NWK", t.NWK, "Device's network address"),
            t.Param("InputClusters", t.ClusterIdList, "Input cluster id list"),
            t.Param("OutputClusters", t.ClusterIdList, "Output cluster id list"),
        ),
    )

    # default message for error status
    StatusErrorRsp = t.CommandDef(
        t.CommandType.AREQ,
        0xC3,
        rsp_schema=(
            t.Param("Src", t.NWK, "message's source network address"),
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
        ),
    )

    # indication to inform host device the receipt of a source route to a given device
    SrcRtgInd = t.CommandDef(
        t.CommandType.AREQ,
        0xC4,
        rsp_schema=(
            t.Param(
                "DstAddr",
                t.NWK,
                "Network address of the destination of the source route",
            ),
            t.Param("Relays", t.NWKList, "List of relay devices"),
        ),
    )

    # indication to inform host device the receipt of a beacon notification
    BeaconNotifyInd = t.CommandDef(
        t.CommandType.AREQ,
        0xC5,
        rsp_schema=(t.Param("Beacons", BeaconList, "Beacons list"),),
    )

    # inform the host device of a ZDO join request result
    JoinCnf = t.CommandDef(
        t.CommandType.AREQ,
        0xC6,
        rsp_schema=(
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
            t.Param("Nwk", t.NWK, "device's network address"),
            t.Param("ParentNwk", t.NWK, "Parent's network address"),
        ),
    )

    # indication to inform host device the completion of network discovery scan
    NwkDiscoveryCnf = t.CommandDef(
        t.CommandType.AREQ,
        0xC7,
        rsp_schema=(
            t.Param(
                "Status", t.ZDOStatus, "Status is either Success (0) or Failure (1)"
            ),
        ),
    )

    # ???
    ConcentratorInd = t.CommandDef(
        t.CommandType.AREQ,
        0xC8,
        rsp_schema=(
            t.Param("NWK", t.NWK, "Short address"),
            t.Param("IEEE", t.EUI64, "IEEE address"),
            t.Param("PktCost", t.uint8_t, "Packet cost"),
        ),
    )

    # an indication to inform the host of a device leaving the network
    LeaveInd = t.CommandDef(
        t.CommandType.AREQ,
        0xC9,
        rsp_schema=(
            t.Param(
                "NWK", t.NWK, "Short address of the source of the leave indication"
            ),
            t.Param(
                "IEEE",
                t.EUI64,
                "IEEE address of the source of the leave indication",
            ),
            t.Param("Request", t.Bool, "True -- request, False -- indication"),
            t.Param("Remove", t.Bool, "True -- Remove children"),
            t.Param("Rejoin", t.Bool, "True -- Rejoin"),
        ),
    )

    # ZDO callback for a Cluster Id that the host requested to receive
    # with a MsgCallbackRegister request
    MsgCbIncoming = t.CommandDef(
        t.CommandType.AREQ,
        0xFF,
        rsp_schema=(
            t.Param("Src", t.NWK, "Source address of the ZDO message"),
            t.Param(
                "IsBroadcast",
                t.Bool,
                "Indicates whether the message was a broadcast",
            ),
            t.Param("ClusterId", t.ClusterId, "Cluster Id of this ZDO message"),
            t.Param("SecurityUse", t.uint8_t, "Not used"),
            t.Param("TSN", t.uint8_t, "Transaction sequence number"),
            t.Param(
                "MacDst", t.NWK, "Mac destination short address of the ZDO message"
            ),
            t.Param(
                "Data",
                t.Bytes,
                "Data that corresponds to the cluster ID of the message",
            ),
        ),
    )

    # a ZDO callback for TC Device Indication
    TCDevInd = t.CommandDef(
        t.CommandType.AREQ,
        0xCA,
        rsp_schema=(
            t.Param("SrcNwk", t.NWK, "device's network address"),
            t.Param("SrcIEEE", t.EUI64, "IEEE address of the source"),
            t.Param("ParentNwk", t.NWK, "Parent's network address"),
        ),
    )

    # a ZDO callback for Permit Join Indication
    PermitJoinInd = t.CommandDef(
        t.CommandType.AREQ,
        0xCB,
        rsp_schema=(t.Param("Duration", t.uint8_t, "Permit join duration"),),
    )

    # set rejoin backoff duration and rejoin scan duration for an end device
    SetRejoinParams = t.CommandDef(
        t.CommandType.SREQ,
        # in documentation CmdId=0x26 which conflict with discover req
        0xCC,
        req_schema=(
            t.Param(
                "BackoffDuraation",
                t.uint32_t,
                "Rejoin backoff  duration for end device",
            ),
            t.Param("ScanDuration", t.uint32_t, "Rejoin scan duration for end device"),
        ),
        rsp_schema=t.STATUS_SCHEMA,
    )