-
Notifications
You must be signed in to change notification settings - Fork 426
/
comm_mkdupc.py
executable file
·1127 lines (898 loc) · 38.6 KB
/
comm_mkdupc.py
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
""" DUPC Packet Builder.
This script takes header fields and payload, and builds a proper DUPC
packet from them.
"""
# Copyright (C) 2018 Mefistotelis <[email protected]>
# Copyright (C) 2018 Original Gangsters <https://dji-rev.slack.com/>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
__version__ = "0.5.0"
__author__ = "Mefistotelis @ Original Gangsters"
__license__ = "GPL"
import sys
import argparse
import enum
import re
from ctypes import c_char, c_int, c_ubyte, c_ushort, c_uint, c_float
from ctypes import sizeof, addressof, byref, memmove, Array, LittleEndianStructure
from collections import OrderedDict
sys.path.insert(0, './')
from comm_dat2pcap import (
calc_pkt55_hdr_checksum, calc_pkt55_checksum,
eprint,
)
class DecoratedEnum(enum.Enum):
@classmethod
def from_name(cls, name):
for itm in cls:
if itm.name == name:
return itm
raise ValueError('{} is not a known value'.format(name))
class ACK_TYPE(DecoratedEnum):
NO_ACK_NEEDED = 0
ACK_BEFORE_EXEC = 1
ACK_AFTER_EXEC = 2
class COMM_DEV_TYPE(DecoratedEnum):
ANY = 0
CAMERA = 1
MOBILE_APP = 2
FLYCONTROLLER = 3
GIMBAL = 4
CENTER_BOARD = 5
REMOTE_RADIO = 6
WIFI = 7
LB_DM3XX_SKY = 8
LB_MCU_SKY = 9
PC = 10
BATTERY = 11
ESC = 12
DM368_GROUND = 13
OFDM_GROUND = 14
LB_68013_SKY = 15
SER_68013_GROUND = 16
MVO = 17
SVO = 18
LB_FPGA_SKY = 19
FPGA_GROUND = 20
FPGA_SIM = 21
STATION = 22
XU = 23
WTF = 24
IMU = 25
GPS = 26
WIFI_GROUND = 27
SIG_CVT = 28
PMU = 29
UNKNOWN30 = 30
WM330_OR_WM220 = 31
class ENCRYPT_TYPE(DecoratedEnum):
NO_ENC = 0
AES_128 = 1
SELF_DEF = 2
XOR = 3
DES_56 = 4
DES_112 = 5
AES_192 = 6
AES_256 = 7
class PACKET_TYPE(DecoratedEnum):
REQUEST = 0
RESPONSE = 1
class CMD_SET_TYPE(DecoratedEnum):
GENERAL = 0
SPECIAL = 1
CAMERA = 2
FLYCONTROLLER = 3
ZENMUSE = 4
CENTER_BOARD = 5
RADIO = 6
WIFI = 7
DM368 = 8
OFDM = 9
VO = 10
SIM = 11
ESC = 12
BATTERY = 13
DATA_RECORDER = 14
RTK = 15
AUTOTEST = 16
UNKNOWN17 = 17
UNKNOWN18 = 18
UNKNOWN19 = 19
UNKNOWN20 = 20
UNKNOWN21 = 21
UNKNOWN22 = 22
UNKNOWN23 = 23
UNKNOWN24 = 24
UNKNOWN25 = 25
UNKNOWN26 = 26
UNKNOWN27 = 27
UNKNOWN28 = 28
UNKNOWN29 = 29
UNKNOWN30 = 30
UNKNOWN31 = 31
class PacketProperties:
def __init__(self):
self.sender_type = COMM_DEV_TYPE.ANY
self.sender_index = 0
self.receiver_type = COMM_DEV_TYPE.ANY
self.receiver_index = 0
self.seq_num = 0
self.pack_type = PACKET_TYPE.REQUEST
self.ack_type = ACK_TYPE.NO_ACK_NEEDED
self.encrypt_type = ENCRYPT_TYPE.NO_ENC
self.cmd_set = CMD_SET_TYPE.GENERAL
self.cmd_id = 0
self.payload = bytes()
class DJICmdV1Header(LittleEndianStructure):
_pack_ = 1
_fields_ = [
('sof', c_ubyte), # Start Of Field
('ver_length_tag', c_ushort), # Protocol version and packet length
('header_crc8', c_ubyte), # Checksum of preceding bytes
('sender_info', c_ubyte), # Sender module identificator
('receiver_info', c_ubyte), # Receiver module identificator
('seq_num', c_ushort), # Sequence number of this command id
('cmd_type_data', c_ubyte), # Packet type, required acknowledgement, encryption
('cmd_set', c_ubyte), # Command Set selection
('cmd_id', c_ubyte), # Specific command selection
]
def __init__(self):
self.sof = 0x55
self.version = 1
self.whole_length = sizeof(self) + 2
def dict_export(self):
d = OrderedDict()
for (varkey, vartype) in self._fields_:
d[varkey] = getattr(self, varkey)
return d
def __repr__(self):
d = self.dict_export()
from pprint import pformat
return pformat(d, indent=0, width=160)
def __get_whole_length(self):
return self.ver_length_tag & 1023
def __set_whole_length(self, value):
self.ver_length_tag = (self.ver_length_tag & 64512) | (value & 1023)
whole_length = property(__get_whole_length, __set_whole_length)
def __get_version(self):
return (self.ver_length_tag & 64512) >> 10
def __set_version(self, value):
self.ver_length_tag = (self.ver_length_tag & 1023) | ((value & 63) << 10)
version = property(__get_version, __set_version)
def __get_sender_type(self):
return self.sender_info & 31
def __set_sender_type(self, value):
self.sender_info = (self.sender_info & 224) | (value & 31)
sender_type = property(__get_sender_type, __set_sender_type)
def __get_sender_index(self):
return (self.sender_info & 224) >> 5
def __set_sender_index(self, value):
self.sender_info = (self.sender_info & 31) | ((value & 7) << 5)
sender_index = property(__get_sender_index, __set_sender_index)
def __get_receiver_type(self):
return self.receiver_info & 31
def __set_receiver_type(self, value):
self.receiver_info = (self.receiver_info & 224) | (value & 31)
receiver_type = property(__get_receiver_type, __set_receiver_type)
def __get_receiver_index(self):
return (self.receiver_info & 224) >> 5
def __set_receiver_index(self, value):
self.receiver_info = (self.receiver_info & 31) | ((value & 7) << 5)
receiver_index = property(__get_receiver_index, __set_receiver_index)
def __get_packet_type(self):
return (self.cmd_type_data) >> 7
def __set_packet_type(self, value):
self.cmd_type_data = (self.cmd_type_data & 127) | ((value & 1) << 7)
packet_type = property(__get_packet_type, __set_packet_type)
def __get_ack_type(self):
return (self.cmd_type_data >> 5) & 3
def __set_ack_type(self, value):
self.cmd_type_data = (self.cmd_type_data & 159) | ((value & 3) << 5)
ack_type = property(__get_ack_type, __set_ack_type)
def __get_encrypt_type(self):
return (self.cmd_type_data & 7)
def __set_encrypt_type(self, value):
self.cmd_type_data = (self.cmd_type_data & 248) | (value & 7)
encrypt_type = property(__get_encrypt_type, __set_encrypt_type)
class DJICmdV1Footer(LittleEndianStructure):
_pack_ = 1
_fields_ = [
('crc16', c_ushort), # Whole packet checksum
]
def dict_export(self):
d = dict()
for (varkey, vartype) in self._fields_:
d[varkey] = getattr(self, varkey)
return d
def __repr__(self):
d = self.dict_export()
from pprint import pformat
return pformat(d, indent=4, width=1)
class DJIPayload_Base(LittleEndianStructure):
_pack_ = 1
def dict_export(self):
d = OrderedDict()
for (varkey, vartype) in self._fields_:
d[varkey] = getattr(self, varkey)
return d
def __repr__(self):
d = self.dict_export()
if d.keys():
report = []
for k, v in d.items():
if isinstance(v, Array) and v._type_ == c_ubyte:
report.append(k.rjust(16) + ': ' + repr(bytes(v)))
else:
report.append(k.rjust(16) + ': ' + repr(v))
return "\n".join(report)
class DJIPayload_General_VersionInquiryRe(DJIPayload_Base):
_fields_ = [
('unknown0', c_ubyte),
('unknown1', c_ubyte),
('hw_version', c_char * 16),
('ldr_version', c_uint),
('app_version', c_uint),
('unknown1A', c_uint),
('unknown1E', c_ubyte),
]
class DJIPayload_General_ChipRebootRe(DJIPayload_Base):
_fields_ = [
('status', c_ubyte),
]
class DJIPayload_General_EncryptCmd(DecoratedEnum):
GetChipState = 1
GetModuleState = 2
Config = 3
DoEncrypt = 4
class DJIPayload_General_EncryptOperType(DecoratedEnum):
WriteTarget = 0
WriteSH204 = 1
WriteAll = 2
class DJIPayload_General_EncryptGetStateRq(DJIPayload_Base):
# Matches both GetChipState and GetModuleState
_fields_ = [
('command', c_ubyte),
]
class DJIPayload_General_EncryptConfigRq(DJIPayload_Base):
# Matches only Config command
_fields_ = [
('command', c_ubyte),
('oper_type', c_ubyte),
('config_magic', c_ubyte * 8),
('mod_type', c_ubyte),
('board_sn', c_ubyte * 10),
('key', c_ubyte * 32),
('secure_num', c_ubyte * 16),
]
class DJIPayload_General_EncryptConfig3Rq(DJIPayload_Base):
# Matches only Config command
_fields_ = [
('command', c_ubyte),
('oper_type', c_ubyte),
('config_magic', c_ubyte * 8),
('m01_mod_type', c_ubyte),
('m01_board_sn', c_ubyte * 10),
('m01_key', c_ubyte * 32),
('m01_secure_num', c_ubyte * 16),
('m04_mod_type', c_ubyte),
('m04_board_sn', c_ubyte * 10),
('m04_key', c_ubyte * 32),
('m04_secure_num', c_ubyte * 16),
('m08_mod_type', c_ubyte),
('m08_board_sn', c_ubyte * 10),
('m08_key', c_ubyte * 32),
('m08_secure_num', c_ubyte * 16),
]
class DJIPayload_General_EncryptDoEncryptRq(DJIPayload_Base):
# Matches only DoEncrypt command
_fields_ = [
('command', c_ubyte),
('mod_type', c_ubyte),
('data', c_ubyte * 32),
]
class DJIPayload_General_EncryptGetChipStateRe(DJIPayload_Base):
_fields_ = [
('status', c_ubyte),
('state_flags', c_ubyte),
('m01_boardsn', c_ubyte * 10),
('m04_boardsn', c_ubyte * 10),
('m08_boardsn', c_ubyte * 10),
]
class DJIPayload_General_EncryptGetModuleStateRe(DJIPayload_Base):
_fields_ = [
('status', c_ubyte),
('state_flags', c_ubyte),
]
class DJIPayload_General_EncryptConfigRe(DJIPayload_Base):
_fields_ = [
('status', c_ubyte),
]
class DJIPayload_FlyController_AssistantUnlockRq(DJIPayload_Base):
_fields_ = [
('lock_state', c_uint),
]
class DJIPayload_FlyController_AssistantUnlockRe(DJIPayload_Base):
_fields_ = [
('status', c_ubyte),
]
class DJIPayload_FlyController_GetParamInfoByIndex2015Rq(DJIPayload_Base):
_fields_ = [
('param_index', c_ushort),
]
class DJIPayload_FlyController_GetParamInfoByHash2015Rq(DJIPayload_Base):
_fields_ = [
('param_hash', c_uint),
]
# We cannot define property name with variable size, so let's make const size one
DJIPayload_FlyController_ParamMaxLen = 160
class DJIPayload_FlyController_ParamType(DecoratedEnum):
ubyte = 0x0
ushort = 0x1
ulong = 0x2
ulonglong = 0x3
byte = 0x4
short = 0x5
long = 0x6
longlong = 0x7
float = 0x8
double = 0x9
array = 0xa
bool = 0xb
class DJIPayload_FlyController_GetParamInfoEOL2015Re(DJIPayload_Base):
_fields_ = [
('status', c_ubyte),
]
class DJIPayload_FlyController_GetParamInfoU2015Re(DJIPayload_Base):
_fields_ = [
('status', c_ubyte),
('type_id', c_ushort),
('size', c_ushort),
('attribute', c_ushort),
('limit_min', c_uint),
('limit_max', c_uint),
('limit_def', c_uint),
('name', c_char * DJIPayload_FlyController_ParamMaxLen),
]
class DJIPayload_FlyController_GetParamInfoI2015Re(DJIPayload_Base):
_fields_ = [
('status', c_ubyte),
('type_id', c_ushort),
('size', c_ushort),
('attribute', c_ushort),
('limit_min', c_int),
('limit_max', c_int),
('limit_def', c_int),
('name', c_char * DJIPayload_FlyController_ParamMaxLen),
]
class DJIPayload_FlyController_GetParamInfoF2015Re(DJIPayload_Base):
_fields_ = [
('status', c_ubyte),
('type_id', c_ushort),
('size', c_ushort),
('attribute', c_ushort),
('limit_min', c_float),
('limit_max', c_float),
('limit_def', c_float),
('name', c_char * DJIPayload_FlyController_ParamMaxLen),
]
class DJIPayload_FlyController_ReadParamValByHash2015Rq(DJIPayload_Base):
_fields_ = [
('param_hash', c_uint),
]
class DJIPayload_FlyController_ReadParamValByHash2015Re(DJIPayload_Base):
_fields_ = [
('status', c_ubyte),
('param_hash', c_uint),
('param_value', c_ubyte * DJIPayload_FlyController_ParamMaxLen),
]
class DJIPayload_FlyController_ReadParamValByIndex2017Rq(DJIPayload_Base):
_fields_ = [
('table_no', c_ushort),
('unknown1', c_ushort),
('param_index', c_ushort),
]
class DJIPayload_FlyController_ReadParamValByIndex2017Re(DJIPayload_Base):
_fields_ = [
('status', c_ushort),
('unknown1', c_ushort),
('param_index', c_ushort),
('param_value', c_ubyte * DJIPayload_FlyController_ParamMaxLen),
]
class DJIPayload_FlyController_WriteParamVal1ByIndex2017Rq(DJIPayload_Base):
_fields_ = [
('table_no', c_ushort),
('unknown1', c_ushort),
('param_index', c_ushort),
('param_value', c_ubyte),
]
class DJIPayload_FlyController_WriteParamVal2ByIndex2017Rq(DJIPayload_Base):
_fields_ = [
('table_no', c_ushort),
('unknown1', c_ushort),
('param_index', c_ushort),
('param_value', c_ubyte * 2),
]
class DJIPayload_FlyController_WriteParamVal4ByIndex2017Rq(DJIPayload_Base):
_fields_ = [
('table_no', c_ushort),
('unknown1', c_ushort),
('param_index', c_ushort),
('param_value', c_ubyte * 4),
]
class DJIPayload_FlyController_WriteParamVal8ByIndex2017Rq(DJIPayload_Base):
_fields_ = [
('table_no', c_ushort),
('unknown1', c_ushort),
('param_index', c_ushort),
('param_value', c_ubyte * 8),
]
class DJIPayload_FlyController_WriteParamVal16ByIndex2017Rq(DJIPayload_Base):
_fields_ = [
('table_no', c_ushort),
('unknown1', c_ushort),
('param_index', c_ushort),
('param_value', c_ubyte * 16),
]
class DJIPayload_FlyController_WriteParamValAnyByIndex2017Rq(DJIPayload_Base):
_fields_ = [
('table_no', c_ushort),
('unknown1', c_ushort),
('param_index', c_ushort),
('param_value', c_ubyte * DJIPayload_FlyController_ParamMaxLen),
]
class DJIPayload_FlyController_WriteParamValByIndex2017Re(DJIPayload_Base):
_fields_ = [
('status', c_ushort),
('table_no', c_ushort),
('param_index', c_ushort),
('param_value', c_ubyte * DJIPayload_FlyController_ParamMaxLen),
]
class DJIPayload_FlyController_WriteParamVal1ByHash2015Rq(DJIPayload_Base):
_fields_ = [
('param_hash', c_uint),
('param_value', c_ubyte * 1),
]
class DJIPayload_FlyController_WriteParamVal2ByHash2015Rq(DJIPayload_Base):
_fields_ = [
('param_hash', c_uint),
('param_value', c_ubyte * 2),
]
class DJIPayload_FlyController_WriteParamVal4ByHash2015Rq(DJIPayload_Base):
_fields_ = [
('param_hash', c_uint),
('param_value', c_ubyte * 4),
]
class DJIPayload_FlyController_WriteParamVal8ByHash2015Rq(DJIPayload_Base):
_fields_ = [
('param_hash', c_uint),
('param_value', c_ubyte * 8),
]
class DJIPayload_FlyController_WriteParamVal16ByHash2015Rq(DJIPayload_Base):
_fields_ = [
('param_hash', c_uint),
('param_value', c_ubyte * 16),
]
class DJIPayload_FlyController_WriteParamValAnyByHash2015Rq(DJIPayload_Base):
_fields_ = [
('param_hash', c_uint),
('param_value', c_ubyte * DJIPayload_FlyController_ParamMaxLen),
]
class DJIPayload_FlyController_WriteParamValByHash2015Re(DJIPayload_Base):
_fields_ = [
('status', c_ubyte),
('param_hash', c_uint),
('param_value', c_ubyte * DJIPayload_FlyController_ParamMaxLen),
]
class DJIPayload_FlyController_GetTblAttribute2017Rq(DJIPayload_Base):
_fields_ = [
('table_no', c_ushort),
]
class DJIPayload_FlyController_GetTblAttribute2017Re(DJIPayload_Base):
_fields_ = [
('status', c_ushort),
('table_no', c_ushort),
('entries_crc', c_uint),
('entries_num', c_uint),
]
class DJIPayload_FlyController_GetTblAttributeEOL2017Re(DJIPayload_Base):
_fields_ = [
('status', c_ushort),
]
class DJIPayload_FlyController_GetParamInfoByIndex2017Rq(DJIPayload_Base):
_fields_ = [
('table_no', c_ushort),
('param_index', c_ushort),
]
class DJIPayload_FlyController_GetParamInfoEOL2017Re(DJIPayload_Base):
_fields_ = [
('status', c_ushort),
]
class DJIPayload_FlyController_GetParamInfoU2017Re(DJIPayload_Base):
_fields_ = [
('status', c_ushort),
('table_no', c_ushort),
('param_index', c_ushort),
('type_id', c_ushort),
('size', c_ushort),
('limit_def', c_uint),
('limit_min', c_uint),
('limit_max', c_uint),
('name', c_char * DJIPayload_FlyController_ParamMaxLen),
]
class DJIPayload_FlyController_GetParamInfoI2017Re(DJIPayload_Base):
_fields_ = [
('status', c_ushort),
('table_no', c_ushort),
('param_index', c_ushort),
('type_id', c_ushort),
('size', c_ushort),
('limit_def', c_int),
('limit_min', c_int),
('limit_max', c_int),
('name', c_char * DJIPayload_FlyController_ParamMaxLen),
]
class DJIPayload_FlyController_GetParamInfoF2017Re(DJIPayload_Base):
_fields_ = [
('status', c_ushort),
('table_no', c_ushort),
('param_index', c_ushort),
('type_id', c_ushort),
('size', c_ushort),
('limit_def', c_float),
('limit_min', c_float),
('limit_max', c_float),
('name', c_char * DJIPayload_FlyController_ParamMaxLen),
]
class DJIPayload_Gimbal_CalibCmd(DecoratedEnum):
JointCoarse = 1
LinearHall = 2
class DJIPayload_Gimbal_CalibRq(DJIPayload_Base):
_fields_ = [
('command', c_ubyte),
]
class DJIPayload_Gimbal_CalibRe(DJIPayload_Base):
_fields_ = [
('status1', c_ubyte),
('status2', c_ubyte),
]
class DJIPayload_HDLink_WriteHardwareRegisterRq(DJIPayload_Base):
_fields_ = [
('reg_address', c_ushort),
('reg_value', c_ubyte),
]
class DJIPayload_HDLink_WriteHardwareRegisterRe(DJIPayload_Base):
_fields_ = [
('status', c_ubyte),
]
def flyc_parameter_compute_hash(po, parname):
""" Computes hash from given flyc parameter name. Parameters are recognized by the FC by the hash.
"""
parhash = 0
parbt = parname.encode('gbk') # seriously, they should already know the world uses UTF now
for i in range(0, len(parname)):
ncode = parbt[i]
tmpval = (parhash & 0xffffffff) << 8
parhash = (tmpval + ncode) % 0xfffffffb
return parhash
def flyc_parameter_is_signed(type_id):
""" Returns whether flight param of given type is signed - should use "I" versions of packets.
"""
return (type_id >= DJIPayload_FlyController_ParamType.byte.value) and \
(type_id <= DJIPayload_FlyController_ParamType.longlong.value)
def flyc_parameter_is_float(type_id):
""" Returns whether flight param of given type is float - should use "F" versions of packets.
"""
return (type_id == DJIPayload_FlyController_ParamType.float.value) or \
(type_id == DJIPayload_FlyController_ParamType.double.value)
def encode_command_packet(sender_type, sender_index, receiver_type, receiver_index, seq_num, pack_type, ack_type, encrypt_type, cmd_set, cmd_id, payload):
""" Encodes command packet with given header fields and payload into c_ubyte array.
Accepts integer values of all the fields.
"""
pkthead = DJICmdV1Header()
pkthead.whole_length = sizeof(pkthead) + len(payload) + 2
pkthead.header_crc8 = calc_pkt55_hdr_checksum(0x77, (c_ubyte * 3).from_buffer_copy(pkthead), 3)
pkthead.sender_type = sender_type
pkthead.sender_index = sender_index
pkthead.receiver_type = receiver_type
pkthead.receiver_index = receiver_index
pkthead.seq_num = seq_num
pkthead.packet_type = pack_type
pkthead.ack_type = ack_type
pkthead.encrypt_type = encrypt_type
pkthead.cmd_set = cmd_set
pkthead.cmd_id = cmd_id
enc_data = (c_ubyte * pkthead.whole_length)()
memmove(addressof(enc_data), byref(pkthead), sizeof(pkthead))
pktpayload = (c_ubyte * len(payload)).from_buffer_copy(payload)
memmove(addressof(enc_data) + sizeof(pkthead), byref(pktpayload), sizeof(pktpayload))
pktfoot = DJICmdV1Footer()
pktfoot.crc16 = calc_pkt55_checksum(enc_data, sizeof(enc_data) - 2)
memmove(addressof(enc_data) + sizeof(pkthead) + sizeof(pktpayload), byref(pktfoot), sizeof(pktfoot))
return enc_data
def encode_command_packet_en(sender_type, sender_index, receiver_type, receiver_index, seq_num, pack_type, ack_type, encrypt_type, cmd_set, cmd_id, payload):
""" Encodes command packet with given header fields and payload into c_ubyte array.
A wrapper which accepts enums instead of integer fields for most values.
"""
return encode_command_packet(sender_type.value, sender_index, receiver_type.value, receiver_index,
seq_num, pack_type.value, ack_type.value, encrypt_type.value, cmd_set.value, cmd_id, payload)
def get_known_payload(pkthead, payload):
if pkthead.cmd_set == CMD_SET_TYPE.GENERAL.value and pkthead.packet_type == 0:
if (pkthead.cmd_id == 0x30):
if len(payload) >= sizeof(DJIPayload_General_EncryptConfig3Rq):
return DJIPayload_General_EncryptConfig3Rq.from_buffer_copy(payload)
if len(payload) >= sizeof(DJIPayload_General_EncryptConfigRq):
return DJIPayload_General_EncryptConfigRq.from_buffer_copy(payload)
if len(payload) >= sizeof(DJIPayload_General_EncryptGetStateRq):
return DJIPayload_General_EncryptGetStateRq.from_buffer_copy(payload)
if pkthead.cmd_set == CMD_SET_TYPE.GENERAL.value and pkthead.packet_type == 1:
if (pkthead.cmd_id == 0x01):
if len(payload) >= sizeof(DJIPayload_General_VersionInquiryRe):
return DJIPayload_General_VersionInquiryRe.from_buffer_copy(payload)
if (pkthead.cmd_id == 0x0b):
if len(payload) >= sizeof(DJIPayload_General_ChipRebootRe):
return DJIPayload_General_ChipRebootRe.from_buffer_copy(payload)
if (pkthead.cmd_id == 0x30):
if len(payload) >= sizeof(DJIPayload_General_EncryptGetChipStateRe):
return DJIPayload_General_EncryptGetChipStateRe.from_buffer_copy(payload)
if len(payload) >= sizeof(DJIPayload_General_EncryptGetModuleStateRe):
return DJIPayload_General_EncryptGetModuleStateRe.from_buffer_copy(payload)
if len(payload) >= sizeof(DJIPayload_General_EncryptConfigRe):
return DJIPayload_General_EncryptConfigRe.from_buffer_copy(payload)
if pkthead.cmd_set == CMD_SET_TYPE.FLYCONTROLLER.value and pkthead.packet_type == 0:
if (pkthead.cmd_id == 0xdf):
if len(payload) >= sizeof(DJIPayload_FlyController_AssistantUnlockRq):
return DJIPayload_FlyController_AssistantUnlockRq.from_buffer_copy(payload)
if (pkthead.cmd_id == 0xe0):
if len(payload) >= sizeof(DJIPayload_FlyController_GetTblAttribute2017Rq):
return DJIPayload_FlyController_GetTblAttribute2017Rq.from_buffer_copy(payload)
if (pkthead.cmd_id == 0xe1):
if len(payload) >= sizeof(DJIPayload_FlyController_GetParamInfoByIndex2017Rq):
return DJIPayload_FlyController_GetParamInfoByIndex2017Rq.from_buffer_copy(payload)
if (pkthead.cmd_id == 0xe2):
if len(payload) >= sizeof(DJIPayload_FlyController_ReadParamValByIndex2017Rq):
return DJIPayload_FlyController_ReadParamValByIndex2017Rq.from_buffer_copy(payload)
if (pkthead.cmd_id == 0xe3):
if len(payload) > sizeof(DJIPayload_FlyController_WriteParamVal16ByIndex2017Rq):
return DJIPayload_FlyController_WriteParamValAnyByIndex2017Rq.from_buffer_copy(payload.ljust(sizeof(DJIPayload_FlyController_WriteParamValAnyByIndex2017Rq), b'\0'))
if len(payload) > sizeof(DJIPayload_FlyController_WriteParamVal8ByIndex2017Rq):
return DJIPayload_FlyController_WriteParamVal16ByIndex2017Rq.from_buffer_copy(payload)
if len(payload) > sizeof(DJIPayload_FlyController_WriteParamVal4ByIndex2017Rq):
return DJIPayload_FlyController_WriteParamVal8ByIndex2017Rq.from_buffer_copy(payload)
if len(payload) > sizeof(DJIPayload_FlyController_WriteParamVal2ByIndex2017Rq):
return DJIPayload_FlyController_WriteParamVal4ByIndex2017Rq.from_buffer_copy(payload)
if len(payload) > sizeof(DJIPayload_FlyController_WriteParamVal1ByIndex2017Rq):
return DJIPayload_FlyController_WriteParamVal2ByIndex2017Rq.from_buffer_copy(payload)
if len(payload) >= sizeof(DJIPayload_FlyController_WriteParamVal1ByIndex2017Rq):
return DJIPayload_FlyController_WriteParamVal1ByIndex2017Rq.from_buffer_copy(payload)
if (pkthead.cmd_id == 0xf0):
if len(payload) >= sizeof(DJIPayload_FlyController_GetParamInfoByIndex2015Rq):
return DJIPayload_FlyController_GetParamInfoByIndex2015Rq.from_buffer_copy(payload)
if (pkthead.cmd_id == 0xf8):
if len(payload) >= sizeof(DJIPayload_FlyController_ReadParamValByHash2015Rq):
return DJIPayload_FlyController_ReadParamValByHash2015Rq.from_buffer_copy(payload)
if (pkthead.cmd_id == 0xf9):
if len(payload) > sizeof(DJIPayload_FlyController_WriteParamVal16ByHash2015Rq):
return DJIPayload_FlyController_WriteParamValAnyByHash2015Rq.from_buffer_copy(payload.ljust(sizeof(DJIPayload_FlyController_WriteParamValAnyByHash2015Rq), b'\0'))
if len(payload) > sizeof(DJIPayload_FlyController_WriteParamVal8ByHash2015Rq):
return DJIPayload_FlyController_WriteParamVal16ByHash2015Rq.from_buffer_copy(payload)
if len(payload) > sizeof(DJIPayload_FlyController_WriteParamVal4ByHash2015Rq):
return DJIPayload_FlyController_WriteParamVal8ByHash2015Rq.from_buffer_copy(payload)
if len(payload) > sizeof(DJIPayload_FlyController_WriteParamVal2ByHash2015Rq):
return DJIPayload_FlyController_WriteParamVal4ByHash2015Rq.from_buffer_copy(payload)
if len(payload) > sizeof(DJIPayload_FlyController_WriteParamVal1ByHash2015Rq):
return DJIPayload_FlyController_WriteParamVal2ByHash2015Rq.from_buffer_copy(payload)
if len(payload) >= sizeof(DJIPayload_FlyController_WriteParamVal1ByHash2015Rq):
return DJIPayload_FlyController_WriteParamVal1ByHash2015Rq.from_buffer_copy(payload)
if pkthead.cmd_set == CMD_SET_TYPE.FLYCONTROLLER.value and pkthead.packet_type == 1:
if (pkthead.cmd_id == 0xdf):
if len(payload) >= sizeof(DJIPayload_FlyController_AssistantUnlockRe):
return DJIPayload_FlyController_AssistantUnlockRe.from_buffer_copy(payload)
if (pkthead.cmd_id == 0xe0):
if len(payload) >= sizeof(DJIPayload_FlyController_GetTblAttribute2017Re):
return DJIPayload_FlyController_GetTblAttribute2017Re.from_buffer_copy(payload)
if len(payload) >= sizeof(DJIPayload_FlyController_GetTblAttributeEOL2017Re):
return DJIPayload_FlyController_GetTblAttributeEOL2017Re.from_buffer_copy(payload)
if (pkthead.cmd_id == 0xe1):
if len(payload) >= sizeof(DJIPayload_FlyController_GetParamInfoU2017Re)-DJIPayload_FlyController_ParamMaxLen+1:
out_payload = DJIPayload_FlyController_GetParamInfoU2017Re.from_buffer_copy(payload.ljust(sizeof(DJIPayload_FlyController_GetParamInfoU2017Re), b'\0'))
if flyc_parameter_is_signed(out_payload.type_id):
return DJIPayload_FlyController_GetParamInfoI2017Re.from_buffer_copy(payload.ljust(sizeof(DJIPayload_FlyController_GetParamInfoI2017Re), b'\0'))
elif flyc_parameter_is_float(out_payload.type_id):
return DJIPayload_FlyController_GetParamInfoF2017Re.from_buffer_copy(payload.ljust(sizeof(DJIPayload_FlyController_GetParamInfoF2017Re), b'\0'))
else:
return out_payload
elif len(payload) >= sizeof(DJIPayload_FlyController_GetParamInfoEOL2017Re):
return DJIPayload_FlyController_GetParamInfoEOL2017Re.from_buffer_copy(payload)
if (pkthead.cmd_id == 0xe2):
if len(payload) >= sizeof(DJIPayload_FlyController_ReadParamValByIndex2017Re)-DJIPayload_FlyController_ParamMaxLen+1:
return DJIPayload_FlyController_ReadParamValByIndex2017Re.from_buffer_copy(payload.ljust(sizeof(DJIPayload_FlyController_ReadParamValByIndex2017Re), b'\0'))
if (pkthead.cmd_id == 0xe3):
if len(payload) >= sizeof(DJIPayload_FlyController_WriteParamValByIndex2017Re)-DJIPayload_FlyController_ParamMaxLen+1:
return DJIPayload_FlyController_WriteParamValByIndex2017Re.from_buffer_copy(payload.ljust(sizeof(DJIPayload_FlyController_WriteParamValByIndex2017Re), b'\0'))
if (pkthead.cmd_id == 0xf0) or (pkthead.cmd_id == 0xf7):
if len(payload) >= sizeof(DJIPayload_FlyController_GetParamInfoU2015Re)-DJIPayload_FlyController_ParamMaxLen+1:
out_payload = DJIPayload_FlyController_GetParamInfoU2015Re.from_buffer_copy(payload.ljust(sizeof(DJIPayload_FlyController_GetParamInfoU2015Re), b'\0'))
if flyc_parameter_is_signed(out_payload.type_id):
return DJIPayload_FlyController_GetParamInfoI2015Re.from_buffer_copy(payload.ljust(sizeof(DJIPayload_FlyController_GetParamInfoI2015Re), b'\0'))
elif flyc_parameter_is_float(out_payload.type_id):
return DJIPayload_FlyController_GetParamInfoF2015Re.from_buffer_copy(payload.ljust(sizeof(DJIPayload_FlyController_GetParamInfoF2015Re), b'\0'))
else:
return out_payload
elif len(payload) >= sizeof(DJIPayload_FlyController_GetParamInfoEOL2015Re):
return DJIPayload_FlyController_GetParamInfoEOL2015Re.from_buffer_copy(payload)
if (pkthead.cmd_id == 0xf8):
if len(payload) >= sizeof(DJIPayload_FlyController_ReadParamValByHash2015Re)-DJIPayload_FlyController_ParamMaxLen+1:
return DJIPayload_FlyController_ReadParamValByHash2015Re.from_buffer_copy(payload.ljust(sizeof(DJIPayload_FlyController_ReadParamValByHash2015Re), b'\0'))
if (pkthead.cmd_id == 0xf9):
if len(payload) >= sizeof(DJIPayload_FlyController_WriteParamValByHash2015Re)-DJIPayload_FlyController_ParamMaxLen+1:
return DJIPayload_FlyController_WriteParamValByHash2015Re.from_buffer_copy(payload.ljust(sizeof(DJIPayload_FlyController_WriteParamValByHash2015Re), b'\0'))
if pkthead.cmd_set == CMD_SET_TYPE.ZENMUSE.value and pkthead.packet_type == 0:
if (pkthead.cmd_id == 0x08):
# Response for this packet often lacks type flag
if len(payload) >= sizeof(DJIPayload_Gimbal_CalibRe):
return DJIPayload_Gimbal_CalibRe.from_buffer_copy(payload)
elif len(payload) >= sizeof(DJIPayload_Gimbal_CalibRq):
return DJIPayload_Gimbal_CalibRq.from_buffer_copy(payload)
if pkthead.cmd_set == CMD_SET_TYPE.ZENMUSE.value and pkthead.packet_type == 1:
if (pkthead.cmd_id == 0x08):
if len(payload) >= sizeof(DJIPayload_Gimbal_CalibRe):
return DJIPayload_Gimbal_CalibRe.from_buffer_copy(payload)
if pkthead.cmd_set == CMD_SET_TYPE.OFDM.value and pkthead.packet_type == 0:
if (pkthead.cmd_id == 0x06):
if len(payload) >= sizeof(DJIPayload_HDLink_WriteHardwareRegisterRq):
return DJIPayload_HDLink_WriteHardwareRegisterRq.from_buffer_copy(payload)
if pkthead.cmd_set == CMD_SET_TYPE.OFDM.value and pkthead.packet_type == 1:
if (pkthead.cmd_id == 0x06):
if len(payload) >= sizeof(DJIPayload_HDLink_WriteHardwareRegisterRe):
return DJIPayload_HDLink_WriteHardwareRegisterRe.from_buffer_copy(payload)
return None
def do_build_packet(options):
pkt = encode_command_packet_en(options.sender_type, options.sender_index, options.receiver_type, options.receiver_index,
options.seq_num, options.pack_type, options.ack_type, options.encrypt_type, options.cmd_set, options.cmd_id, options.payload)
print(' '.join('{:02x}'.format(x) for x in pkt))
def parse_module_ident(s):
""" Parses module identification string in known formats.
"""
pat = re.compile(r"^m?([0-9]{1,2})([0-9]{2})$")
out = re.match(pat, s)
if out is None:
raise argparse.ArgumentTypeError("No 4-byte module ident")
return out
def parse_module_type(s):
""" Parses module type string in known formats.
"""
pat = re.compile(r"^[0-9]{1,2}$")
try:
if re.search(pat, s):
return COMM_DEV_TYPE(int(s, 10))
except Exception:
raise argparse.ArgumentTypeError("Numeric value out of range")
try:
return COMM_DEV_TYPE.from_name(s.upper())
except Exception:
raise argparse.ArgumentTypeError("Unrecognized name of enum item")
def parse_ack_type(s):
""" Parses ack type string in known formats.
"""
pat = re.compile(r"^[0-9]{1}$")
try:
if re.search(pat, s):
return ACK_TYPE(int(s, 10))
except Exception:
raise argparse.ArgumentTypeError("Numeric value out of range")
try:
return ACK_TYPE.from_name(s.upper())
except Exception:
raise argparse.ArgumentTypeError("Unrecognized name of enum item")
def parse_encrypt_type(s):
""" Parses encrypt type string in known formats.
"""
pat = re.compile(r"^[0-9]{1}$")
try: