-
Notifications
You must be signed in to change notification settings - Fork 244
/
tool2.py
1062 lines (975 loc) · 39.3 KB
/
tool2.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 python2
# md380-tool by KK4VCZ and Friends
# This is the client for the patched MD380 firmware. It does all
# sorts of clever things that the official clients can't, but it
# probably has bugs and will do all sorts of unsavory things. Do not
# expose it to light, do not feed it after midnight, and *NEVER* give
# it water.
# 2017-01-10, DL4YHF : Added some new "potentially lethal" functions
# to poke around in the C5000, that shouldn't be in md380_tool.py .
# Thus using a different name (tool2.py) for this evil twin.
from DFU import DFU, State, Request
import time
import sys
import struct
#import msvcrt # why the heck doesn't Python have a SIMPLE, PORTABLE 'conio' ?!
import usb.core
from collections import namedtuple
import json
# The tricky thing is that *THREE* different applications all show up
# as this same VID/PID pair.
#
# 1. The Tytera application image.
# 2. The Tytera bootloader at 0x08000000
# 3. The mask-rom bootloader from the STM32F405.
md380_vendor = 0x0483
md380_product = 0xdf11
# the PEP8 dictator disagreed with multiple spaces before operators. Oh, shut up !
sfr_addresses = { # tiny subset of special function registers in an STM32F4
0xE000ED08L: "VTOR", # Vector Table Offset Register, part of the SCB, PM0214 Rev5 page 220
0xE000ED00L: "SCB", # System Control Block, with CPUID[0], ICSR[4], VTOR[8], AIRCR[12], .... PM0214 pg 220.
0xA0000000L: "FSMC", # Static memory controller, here used as LCD interface
0xA0000004L: "FSMC_BTR1", # names from RM0090 (not from the stupid C header)
0xA0000008L: "FSMC_BCR2",
0xA000000CL: "FSMC_BTR2",
0xA0000010L: "FSMC_BCR3",
0xA0000014L: "FSMC_BTR3",
0xA0000018L: "FSMC_BCR4",
0xA000001CL: "FSMC_BTR4",
0xA0000104L: "FSMC_BWTR1",
0xA000010CL: "FSMC_BWTR2",
0x40026000L: "DMA1", # first DMA unit, register offsets in RM0090 Rev7 pages 332 .. 335
0x40026004L: "DMA1HISR",
0x40026008L: "DMA1LIFCR",
0x4002600CL: "DMA1HIFCR",
0x40026010L: "DMA1S0CR",
0x40026028L: "DMA1S1CR",
0x40026040L: "DMA1S2CR", # one of the USED streams in D013.020
0x40026044L: "DMA1S2NDTR",
0x40026048L: "DMA1S2PAR",
0x4002604CL: "DMA1S2M0AR",
0x40026050L: "DMA1S2M1AR",
0x40026054L: "DMA1S2FCR",
0x40026058L: "DMA1S3CR",
0x40026078L: "DMA1S4CR",
0x40026088L: "DMA1S5CR", # another of the USED streams in D013.020
0x4002608CL: "DMA1S5NDTR",
0x40026090L: "DMA1S5PAR",
0x40026094L: "DMA1S5M0AR",
0x40026098L: "DMA1S5M1AR",
0x4002609CL: "DMA1S5FCR",
0x400260A0L: "DMA1S6CR",
0x400260B8L: "DMA1S7CR",
0x40026400L: "DMA2", # second DMA unit (each DMA has registers at offsets 0x00..0xCC)
0x40026404L: "DMA2HISR",
0x40026408L: "DMA2LIFCR",
0x4002640CL: "DMA2HIFCR",
0x40026410L: "DMA2S0CR",
0x40026414L: "DMA2S0NDTR",
0x40026418L: "DMA2S0PAR",
0x4002641CL: "DMA2S0M0AR",
0x40026420L: "DMA2S0M1AR",
0x40026424L: "DMA2S0FCR",
0x40026428L: "DMA2S1CR",
0x4002642CL: "DMA2S1NDTR",
0x40026430L: "DMA2S1PAR",
0x40026434L: "DMA2S1M0AR",
0x40026438L: "DMA2S1M1AR",
0x4002643CL: "DMA2S1FCR",
0x40026440L: "DMA2S2CR",
0x40026444L: "DMA2S2NDTR",
0x40026448L: "DMA2S2PAR",
0x4002644CL: "DMA2S2M0AR",
0x40026450L: "DMA2S2M1AR",
0x40026454L: "DMA2S2FCR",
0x40026458L: "DMA2S3CR", # another of the USED streams in D013.020
0x4002645CL: "DMA2S3NDTR", # RM0090 Rev13 page 333 : number of data items to transfer
0x40026460L: "DMA2S3PAR",
0x40026464L: "DMA2S3M0AR",
0x40026468L: "DMA2S3M1AR",
0x4002646CL: "DMA2S3FCR",
0x40026470L: "DMA2S4CR",
0x40026474L: "DMA2S4NDTR",
0x40026478L: "DMA2S4PAR",
0x4002647CL: "DMA2S4M0AR",
0x40026480L: "DMA2S4M1AR",
0x40026484L: "DMA2S4FCR",
0x40026488L: "DMA2S5CR", # another of the USED streams in D013.020
0x4002648CL: "DMA2S5NDTR",
0x40026490L: "DMA2S5PAR",
0x40026494L: "DMA2S5M0AR",
0x40026498L: "DMA2S5M1AR",
0x4002649CL: "DMA2S5FCR",
0x400264A0L: "DMA2S6CR",
0x400264A4L: "DMA2S6NDTR",
0x400264A8L: "DMA2S6PAR",
0x400264ACL: "DMA2S6M0AR",
0x400264B0L: "DMA2S6M1AR",
0x400264B4L: "DMA2S6FCR",
0x400264B8L: "DMA2S7CR",
0x400264BCL: "DMA2S7NDTR",
0x400264C0L: "DMA2S7PAR",
0x400264C4L: "DMA2S7M0AR",
0x400264C8L: "DMA2S7M1AR",
0x400264CCL: "DMA2S7FCR",
# GPIO register offsets: 0x00="MODER", 0x10="IDR", 0x14="ODR", 0x20="AFRL", etc
0x40020000L: "GPIOA", # .. with PA8="Save", PA1="Batt", PA0="TX LED", PA3="VOX", PA7="POW_C", ..
0x40020004L: "PA_OTYPE",0x40020008L:"PA_OSPEED", 0x4002000CL:"PA_PUPD",
0x40020010L: "PA_IDR", 0x40020014L:"PA_ODR", 0x40020018L:"PA_BSRR",
0x4002001CL: "PA_LCKR", 0x40020020L:"PA_AFRL", 0x40020024L:"PC_AFRH",
0x40020400L: "GPIOB", # .. with PB8='anti-pop' switch for speaker, PB9=audio PA power switch, ..
0x40020404L: "PB_OTYPE",0x40020408L:"PB_OSPEED", 0x4002040CL:"PB_PUPD",
0x40020410L: "PB_IDR", 0x40020414L:"PB_ODR", 0x40020418L:"PB_BSRR",
0x4002041CL: "PB_LCKR", 0x40020420L:"PB_AFRL", 0x40020424L:"PB_AFRH",
0x40020800L: "GPIOC", # .. with PC8="Beep", offset0 = "MODER", ..
0x40020804L: "PC_OTYPE",0x40020808L:"PC_OSPEED", 0x4002080CL:"PC_PUPD",
0x40020810L: "PC_IDR", 0x40020814L:"PC_ODR", 0x40020818L:"PC_BSRR",
0x4002081CL: "PC_LCKR", 0x40020820L:"PC_AFRL", 0x40020824L:"PC_AFRH",
0x40020C00L: "GPIOD", # .. with PD3="K3" ("Key 3" .. what's that ? )
0x40020C04L: "PD_OTYPE",0x40020C08L:"PD_OSPEED", 0x40020C0CL:"PD_PUPD",
0x40020C10L: "PD_IDR", 0x40020C14L:"PD_ODR", 0x40020C18L:"PD_BSRR",
0x40020C1CL: "PD_LCKR", 0x40020C20L:"PD_AFRL", 0x40020C24L:"PD_AFRH",
0x40021000L: "GPIOE", # .. with RX_LED, TX_LED, FSMC, PTT, etc..
0x40021004L: "PE_OTYPE",0x40021008L:"PE_OSPEED", 0x4002100CL:"PE_PUPD",
0x40021010L: "PE_IDR", 0x40021014L:"PE_ODR", 0x40021018L:"PE_BSRR",
0x4002101CL: "PE_LCKR", 0x40021020L:"PE_AFRL", 0x40021024L:"PE_AFRH",
0x40011400L: "USART6",# abused by DL4YHF to generate PWM(!) on PC6 = USART6_TX. offsets in RM0090 Rev7 page 1002 .
0x40012000L: "ADC1", 0x40012004L: "A1CR1", 0x40012008L: "A1CR2", 0x4001200CL: "A1SM1",
0x40012010L: "A1SM2", 0x40012014L: "A1OF1", 0x40012018L: "A1OF2", 0x4001201CL: "A1OF3",
0x40012020L: "A1OF4", 0x40012024L: "A1HTR", 0x40012028L: "A1LTR", 0x4001202CL: "A1SQ1",
0x40012030L: "A1SQ2", 0x40012034L: "A1SQ3", 0x40012038L: "A1JSQ", 0x4001203CL: "A1JD1",
0x40012040L: "A1JD2", 0x40012044L: "A1JD3", 0x40012048L: "A1JD4", 0x4001204CL: "A1DAT",
0x40012100L: "ADC2", 0x40012104L: "A2CR1", 0x40012108L: "A2CR2", 0x4001210CL: "A2SM1",
0x40012110L: "A2SM2", 0x40012114L: "A2OF1", 0x40012118L: "A2OF2", 0x4001211CL: "A2OF3",
0x40012120L: "A2OF4", 0x40012124L: "A2HTR", 0x40012128L: "A2LTR", 0x4001212CL: "A2SQ1",
0x40012130L: "A2SQ2", 0x40012134L: "A2SQ3", 0x40012138L: "A2JSQ", 0x4001213CL: "A2JD1",
0x40012140L: "A2JD2", 0x40012144L: "A2JD3", 0x40012148L: "A2JD4", 0x4001214CL: "A2DAT",
0x40012200L: "ADC3", 0x40012204L: "A3CR1", 0x40012208L: "A3CR2", 0x4001220CL: "A3SM1",
0x40012210L: "A3SM2", 0x40012214L: "A3OF1", 0x40012218L: "A3OF2", 0x4001221CL: "A3OF3",
0x40012220L: "A3OF4", 0x40012224L: "A3HTR", 0x40012228L: "A3LTR", 0x4001222CL: "A3SQ1",
0x40012230L: "A3SQ2", 0x40012234L: "A3SQ3", 0x40012238L: "A3JSQ", 0x4001223CL: "A3JD1",
0x40012240L: "A3JD2", 0x40012244L: "A3JD3", 0x40012248L: "A3JD4", 0x4001224CL: "A3DAT",
0x40012300L: "ADCCSR",0x40012304L: "ADCCCR",0x40012308L: "ADCCDR",
0x40023800L: "RCC", # RCC = Reset and Clock Control, RM0090 Rev7 page 363(!) for STM32F405
0x40023824L: "RCC_APB2RSTR", # APB2 peripheral ReSeT Register. Bit 5 controls USART6. RM0090 Rev7 page 236 .
0x40023844L: "RCC_APB2ENR", # APB2 peripheral clock ENable Register. Bit 5 controls USART6. RM0090 Rev7 page 246 .
0x40001800L: "TIM12", # register offsets in RM0090 Rev13 page 672 .
0x40010400L: "TIM8", # added 2017-02-19 to develop the Morse generator . RM0090 Rev13 page 588 .
0x40010404L:"T8CR2", 0x40010408L:"T8SMCR", 0x4001040CL:"T8DIER",
0x40010410L:"T8SR", 0x40010414L:"T8EGR", 0x40010418L:"T8CCMR1",
0x4001041CL:"T8CCMR2",0x40010420L:"T8CCER", 0x40010424L:"T8CNT",
0x40010428L:"T8PSC", 0x4001042CL:"T8ARR", 0x40010430L:"T8RCR",
0x40010434L:"T8CCR1", 0x40010438L:"T8CCR2", 0x4001043CL:"T8CCR3",
0x40010440L:"T8CCR4", 0x40010444L:"T8BDTR", 0x40010448L:"T8DCR",
0x4001044CL:"T8DMAR"
}
def NonBlockingGetKey():
if msvcrt.kbhit():
return msvcrt.getch()
else:
return 0
class UsersDB:
"""List of registered DMR-MARC users."""
users = {}
def __init__(self, filename=None):
"""Loads the database."""
import csv
try:
if filename is None:
filename = sys.path[0]+'/user.bin'
with open(filename,'rb') as csvfile:
reader = csv.reader(csvfile)
for row in reader:
if len(row)>0:
self.users[int(row[0])]=row
except:
print "WARNING: Unable to load user.bin."
def getuser(self,id):
"""Returns a user from the ID."""
try:
return self.users[id]
except:
call = ""
name = ""
nickname = ""
city = ""
state = ""
country = ""
comment = ""
return ["%i"%id,call,name,nickname,city,state,country,comment]
def getusername(self,id):
"""Returns a formatted username from the ID."""
user = self.getuser(id)
return("%s %s (%s)"%( user[1], user[2], user[0]))
# ex: Quick to load, so might as well do it early.
# users=UsersDB();
class Tool(DFU):
"""Client class for extra features patched into the MD380's firmware.
None of this will work with the official firmware, of course."""
def __init__(self, device, alt):
super(Tool, self).__init__(device, alt)
# We need to read the manufacturer string to hook the added USB functions
# Some systems (Raspian Jessie) don't have this property
getattr(device, "manufacturer")
def drawtext(self,str,a,b):
"""Sends a new MD380 command to draw text on the screen.."""
cmd=0x80 #Drawtext
a=a&0xFF
b=b&0xFF
self._device.ctrl_transfer(0x21, Request.DNLOAD, 1, 0, chr(cmd)+chr(a)+chr(b)+self.widestr(str))
self.get_status() #this changes state
time.sleep(0.1)
status=self.get_status() #this gets the status
if status[2]==State.dfuDNLOAD_IDLE:
if self.verbose: print "Sent custom %02x %02x." % (a,b)
self.enter_dfu_mode()
else:
print "Failed to send custom %02x %02x." % (a,b)
return False
return True
def peek(self,adr,size):
"""Returns so many bytes from an address."""
self.set_address(adr)
return self.upload(1,size,0)
def spiflashgetid(self):
size=4
"""Returns SPI Flash ID."""
cmd=0x05; #SPIFLASHGETID
cmdstr=(chr(cmd))
self._device.ctrl_transfer(0x21, Request.DNLOAD, 1, 0, cmdstr)
self.get_status(); #this changes state
status=self.get_status(); #this gets the status
return self.upload(1,size,0)
def spiflashpeek(self,adr,size=1024):
"""Returns so many bytes from SPI Flash."""
cmd=0x01 #SPIFLASHREAD
cmdstr=(chr(cmd)+
chr(adr&0xFF)+
chr((adr>>8)&0xFF)+
chr((adr>>16)&0xFF)+
chr((adr>>24)&0xFF)
)
self._device.ctrl_transfer(0x21, Request.DNLOAD, 1, 0, cmdstr)
self.get_status(); #this changes state
status=self.get_status(); #this gets the status
return self.upload(1,size,0)
def spiflash_erase64kblock(self, adr,size=1024):
"""Clear 64kb block on spi flash."""
cmd=0x03; #SPIFLASHWRITE
cmdstr=(chr(cmd)+
chr(adr&0xFF)+
chr((adr>>8)&0xFF)+
chr((adr>>16)&0xFF)+
chr((adr>>24)&0xFF)
)
self._device.ctrl_transfer(0x21, Request.DNLOAD, 1, 0, cmdstr)
self.get_status() #this changes state
time.sleep(0.1)
status=self.get_status() #this gets the status
return self.upload(1,size,0)
def spiflashpoke(self,adr,size,data):
"""Returns so many bytes from SPI Flash."""
cmd=0x04 #SPIFLASHWRITE_NEW
# print size
cmdstr=(chr(cmd)+
chr(adr&0xFF)+
chr((adr>>8)&0xFF)+
chr((adr>>16)&0xFF)+
chr((adr>>24)&0xFF)+
chr(size&0xFF)+
chr((size>>8)&0xFF)+
chr((size>>16)&0xFF)+
chr((size>>24)&0xFF)
)
for i in range(0,size,1):
cmdstr=cmdstr+data[i]
# print len(cmdstr)
self._device.ctrl_transfer(0x21, Request.DNLOAD, 1, 0, cmdstr)
self.get_status() #this changes state
status=self.get_status() #this gets the status
# print status
return self.upload(1,size,0)
def getinbox(self,address):
"""return non-deleted messages from inbox"""
buf = self.spiflashpeek(address, 50 * 4 )
messages = []
for i in range(0,50*4,4):
message = {}
header = buf[i:i+4]
message["deleted"] = (header[0]) != 0x01
if header[1] == 0x1 :
message["read"] = True
elif header[1] == 0x2:
message["read"] = False
else:
message["read"] = "N/A"
message["order"] = (header[2])
message["index"] = (header[3])
if not message["deleted"]:
messages.append(message)
for message in messages:
message_bytes = self.spiflashpeek(address+50*4+message["index"]*0x124,50*4+message["index"]*0x124+0x124)
message["srcaddr"] = message_bytes[0]+(message_bytes[1]<<8)+(message_bytes[2]<<16)
message["flags"] = message_bytes[4]
message_text = ""
for i in range(4,0x124,2):
c = chr(message_bytes[i])
if c!= '\0':
message_text = message_text + c
else:
break
message["text"] = message_text
return messages
def getkey(self,index):
"""Returns an Enhanced Privacy key from SPI Flash. 1-indexed"""
buf=self.spiflashpeek(0x59c0+16*index-16, 16)
return buf
def c5000peek(self,reg):
"""Returns one byte from a C5000 register."""
cmd=0x11 #C5000 Read Reg
cmdstr=(chr(cmd) + chr(reg&0xFF) )
self._device.ctrl_transfer(0x21, Request.DNLOAD, 1, 0, cmdstr)
self.get_status() #this changes state
status=self.get_status() #this gets the status
buf=self.upload(1,1024,0) #Peek the 1024 byte dmesg buffer.
return buf[0]
def c5000poke(self,reg,val):
"""Writes a byte into a C5000 register."""
cmd=0x10 #C5000 Write Reg
cmdstr=(chr(cmd)+
chr(reg&0xFF)+
chr(val&0xFF)
)
self._device.ctrl_transfer(0x21, Request.DNLOAD, 1, 0, cmdstr)
self.get_status() #this changes state
status=self.get_status() #this gets the status
def custom( self, cmd):
"""Returns the 1024 byte DMESG buffer."""
self._device.ctrl_transfer(0x21, Request.DNLOAD, 1, 0, chr(cmd))
self.get_status() #this changes state
#time.sleep(0.1)
status=self.get_status() #this gets the status
def getdmesg(self):
"""Returns the 1024 byte DMESG buffer."""
cmd=0x00 #DMESG
self._device.ctrl_transfer(0x21, Request.DNLOAD, 1, 0, chr(cmd))
self.get_status() #this changes state
#time.sleep(0.1)
status=self.get_status() #this gets the status
buf=self.upload(1,1024,0) #Peek the 1024 byte dmesg buffer.
#Okay, so at this point we have the buffer, but it's a ring
#buffer that might have already looped, so we need to reorder
#if that is the case or crop it if it isn't.
tail=""
head=None
for b in buf:
if head is None:
if b>0:
tail=tail+chr(b)
else:
head=""
else:
if b>0:
head=head+chr(b)
else:
break
if head is None:
return tail
return head+tail
def parse_calibration_data(self,data):
freqs_bcd = data[432:] #last 80 bytes represent 9*2 BCD frequencies,for example 00 35 10 40 == 401.03500
freqs = [] #parse into a list of frequency settings
def bcd2freq(bcd):
freq_whole = "%02x"%ord(bcd[3]) + ("%02x"%ord(bcd[2]))[0]
freq_decimal = ("%02x"%ord(bcd[2]))[1] + "%02x"%ord(bcd[1]) + "%02x"%ord(bcd[0])
return "%s.%s"%(freq_whole,freq_decimal)
Frequency = namedtuple("Frequency","rx_freq tx_freq vox1 vox10 rx_low_voltage rx_full_voltage RSSI1 \
RSSI4 analog_mic digital_mic freq_adjust_high freq_adjust_mid freq_adjust_low1 \
tx_high_power tx_low_power rx_sensitivity open_sql_9 close_sql_9 open_sql_1 \
close_sql_1 max_volume ctcss_67hz ctcss_151_4hz ctcss_254_1hz dcs_mod2 dcs_mod1\
mod1_partial analog_voice_adjust lock_voltage_partial send_i_partial \
send_q_partial send_i_range send_q_range rx_i_partial rx_q_partial \
analog_send_i_range analog_send_q_range")
rest = data[16:432] # first 16 bytes are settings which seem to be equal for all frequencies
rest_i = ""
for k in range(0,9): # invert the 2d array so it's easier to map
for j in range(0,24):
rest_i += rest[j*16+k]
codes_per_freq = []
for i in range(0,9): # 9 frequencies
rx_freq = bcd2freq(freqs_bcd[i*8:i*8+4])
tx_freq = bcd2freq(freqs_bcd[i*8+4:i*8+8])
codes = data[:11] # from vox1 till freq_adjust_low , the mutual ones
codes += rest_i[i*24:i*24+24] # the rest of info , each is a single 8 bit integer
freqs.append(Frequency._asdict(Frequency._make((rx_freq,tx_freq ) + struct.unpack("B"*35,codes))))
return freqs
def calllog(dfu):
"""Prints a call log to stdout, fetched from the MD380's memory."""
dfu.drawtext("Hooking calls!",160,50)
#Set the target address to the list of DMR addresses.
dfu.set_address(0x2001d098)
old1=0
old2=0
while 1:
data=dfu.upload(1,16,0) # Peek sixteen bytes.
llid0=(data[0]+
(data[1]<<8)+
(data[2]<<16)+
(data[3]<<24))
llid1=(data[4]+
(data[5]<<8)+
(data[6]<<16)+
(data[7]<<24))
llid2=(data[8]+
(data[9]<<8)+
(data[10]<<16)+
(data[11]<<24))
if old1!=llid1 or old2!=llid2:
old1=llid1
old2=llid2
print "DMR call from %s to %s." % (
users.getusername(llid1),users.getusername(llid2))
#get actual canel name
dfu.set_address(0x2001c9d4)
data=dfu.upload(1,32,0);
message=""
for i in range(0,32,2):
c=chr(data[i]&0x7F);
if c!='\0':
message=message+c
print message
#get actual zone name
dfu.set_address(0x2001b958)
data=dfu.upload(1,32,0)
message=""
for i in range(0,32,2):
c=chr(data[i]&0x7F)
if c!='\0':
message=message+c
print message
sys.stdout.flush()
def dmesg(dfu):
"""Prints the dmesg log from main memory."""
#dfu.drawtext("Dumping dmesg",160,50);
print dfu.getdmesg()
def parse_calibration(dfu):
dfu.md380_custom(0xA2,0x05)
data = str(bytearray(dfu.upload(0,512)))
freqs = dfu.parse_calibration_data(data)
print(json.dumps(freqs,indent=4))
def coredump(dfu,filename):
"""Dumps a corefile of RAM."""
with open(filename,'wb') as f:
for adr in range(0x20000000,
0x20000000+(128*1024),
1024):
#print "Fetching %08x"%adr
buf=dfu.peek(adr,1024)
f.write(buf)
f.close()
def hexdump(dfu,address,length=512):
"""Dumps from memory to the screen"""
adr=address
buf=dfu.peek(adr,length)
i=0
cbuf=""
for b in buf:
if i%16==0:
sys.stdout.write("%08X: "%(adr+i))
sys.stdout.write("%02x "%b)
i=i+1
if(b > 32 and b < 127 ):
cbuf = cbuf + chr(b)
else:
cbuf = cbuf + "."
if i%16==0:
sys.stdout.write(" " + cbuf)
sys.stdout.write("\n")
cbuf=""
elif i%8==0:
sys.stdout.write(" ")
def ascdump(dfu,address,length=1024):
"""Dumps 8-bit chars from memory to the screen"""
adr=address
buf=dfu.peek(adr,length)
i=0
cbuf=""
for b in buf:
if i%64==0:
sys.stdout.write("%08X: "%(adr+i))
i=i+1
if(b==0):
cbuf = cbuf + '~'
elif(b >= 32 and b < 127 ):
cbuf = cbuf + chr(b)
else:
cbuf = cbuf + "."
if i%64==0:
sys.stdout.write( cbuf )
sys.stdout.write("\n")
cbuf=""
def hexwatch(dfu,address,length=16):
"""Live hex display"""
adr=ParseHexOrRegName(address)
while True:
hexdump(dfu,adr,length)
sys.stdout.flush() # required for mingw and similar shells
if length<=16 :
time.sleep(0.05)
else:
time.sleep(0.2) # non-Pythonic. I know. Who cares ?
def ascwatch(dfu,address,length=2048):
"""Live ASCII display (8 bit chars)"""
adr=ParseHexOrRegName(address)
while True:
sys.stdout.write("\n")
ascdump(dfu,adr,length)
sys.stdout.flush() # required for mingw and similar shells
if length<=64 :
time.sleep(0.05)
else:
time.sleep(0.2) # non-Pythonic. I know. Who cares ?
def ParseHexOrRegName(address):
if address in sfr_addresses.values():
return sfr_addresses.keys()[sfr_addresses.values().index(address)]
else:
return int(address,16)
def ShowRegNameIfKnown(address):
if address in sfr_addresses:
sys.stdout.write(' ; '+ sfr_addresses[address] )
def hexdump32(dfu,address,length=512,bytesPerLine=16):
"""Dumps 32-bit hex values to the screen"""
adr=ParseHexOrRegName(address)
buf=dfu.peek(adr,length+3)
i=0
know_name=0;
cbuf=""
names=""
while i<length:
if i%bytesPerLine==0:
if know_name: # if at least one address is a known SFR, show them
sys.stdout.write("("+names+")")
sys.stdout.write("\n%08X: "%(adr+i))
know_name=0
names=""
dw = buf[i] | (buf[i+1]<<8) | (buf[i+2]<<16) | (buf[i+3]<<24)
sys.stdout.write("%08X "%dw)
if (adr+i) in sfr_addresses:
know_name=1
names = names+sfr_addresses[adr+i]
else:
names = names+"?"
if i%bytesPerLine < (bytesPerLine-4):
names = names+","
i=i+4
if know_name: # if known, show SFR names for the last line
sys.stdout.write("("+names+")")
def hexwatch32(dfu,address,length=32,bytesPerLine=16):
"""Continously samples/displays 32-bit words"""
if bytesPerLine>length:
bytesPerLine=length
while True:
hexdump32(dfu,address,length,bytesPerLine)
sys.stdout.flush() # required for mingw and similar shells
if length<=4:
time.sleep(0.05)
else:
time.sleep(0.2)
# Simple keyboard control ? Hopeless without bulky or non-portable crap !
def bindump32(dfu,address,length=256):
"""Dumps 32-bit binary values to the screen"""
adr=ParseHexOrRegName(address)
buf=dfu.peek(adr,length+3)
i=0
cbuf=""
sys.stdout.write('\n Bit Nr : 3 2 1 0' )
sys.stdout.write('\n 10987654321098765432109876543210' )
while i<length:
sys.stdout.write("\n%08X: "%(adr+i))
dw = buf[i] | (buf[i+1]<<8) | (buf[i+2]<<16) | (buf[i+3]<<24)
sys.stdout.write( '{0:032b}'.format(dw) )
ShowRegNameIfKnown( adr+i )
i=i+4
def dump(dfu,filename,address):
"""1k Binary dumps"""
adr=int(address,16);
with open(filename,'wb') as f:
buf=dfu.peek(adr,1024);
f.write(buf);
f.close();
def flashgetid(dfu):
size=0;
buf=dfu.spiflashgetid();
print "SPI Flash ID: %x %x %x"%(buf[0],buf[1],buf[2])
if (buf[0] == 0xef and buf[1] == 0x40):
if (buf[2] == 0x18):
sys.stdout.write("W25Q128FV 16MByte\n");
size=16*1024*1024;
elif (buf[2] == 0x14):
sys.stdout.write("W25Q80BL 1MByte\n");
size=1*1024*1024;
elif (buf[0] == 0x10 and buf[1] == 0xdc):
if (buf[2] == 0x01):
sys.stdout.write("W25Q128FV 16MByte maybe\n");
size=16*1024*1024;
else:
sys.stdout.write("Unknown SPI Flash - please report\n");
return size;
def flashdump(dfu,filename):
"""Dumps flash."""
with open(filename,'wb') as f:
for adr in range(0x08000000,
0x08000000+(1024*1024),
1024):
#print "Fetching %08x"%adr
buf=dfu.peek(adr,1024);
f.write(buf);
f.close();
def spiflashdump(dfu,filename):
"""Dumps SPI Flash."""
with open(filename,'wb') as f:
for adr in range(0x00000000,
0x00000000+(16*1024*1024),
1024):
#print "Fetching %08x"%adr
buf=dfu.spiflashpeek(adr,1024);
f.write(buf);
f.close();
def spiflashwrite(dfu,filename,adr):
"""Programm SPI Flash."""
if (flashgetid(dfu) == 16*1024*1024):
with open(filename,'rb') as f:
data = f.read()
size=len(data)
dfu.md380_custom(0x91,0x01); # disable any radio and UI events
# while on spi flash
print "erase %d bytes @ 0x%x" % (size, adr);
for n in range(adr,adr+size+1,0x1000):
# print "erase %x " % n
dfu.spiflash_erase64kblock(n)
fullparts = int(size/1024)
print "flashing %d bytes @ 0x%x" % (size, adr);
if fullparts > 0:
for n in range(0,fullparts,1):
# print "%d %d %x %d " % (fullparts, n, adr+n*1024, 1024)
dfu.spiflashpoke( adr+n*1024,1024,data[n*1024:(n+1)*1024]);
lastpartsize= size - fullparts * 1024
if ( lastpartsize > 0 ):
# print "%d %x %d " % (fullparts, adr+fullparts*1024, lastpartsize)
dfu.spiflashpoke(adr+fullparts*1024,lastpartsize,data[(fullparts)*1024:(fullparts)*1024+lastpartsize]);
sys.stdout.write("reboot radio now\n");
dfu.md380_reboot();
f.close();
else:
sys.stdout.write("can't programm spi flash wrong flash type\n");
def dmesgfasttail(dfu):
"""Keeps printing the dmesg buffer."""
while True:
sys.stdout.write(dfu.getdmesg());
#time.sleep(0.1);
sys.stdout.flush();
def dmesgtail(dfu):
"""Keeps printing the dmesg buffer."""
while True:
sys.stdout.write(dfu.getdmesg());
time.sleep(0.1);
sys.stdout.flush();
def c5000(dfu):
"""Prints some DMR registers."""
for r in range(0,0x87):
sys.stdout.write("[0x%02x]=0x%02x\t" % (r,dfu.c5000peek(r)));
if r%4==3:
sys.stdout.write("\n");
sys.stdout.flush();
sys.stdout.write("\n");
def c5read(dfu, regaddr ): # DL4YHF 2016-12
sys.stdout.write("C5000 reg %02X contains ...\n" % (regaddr) );
for i in range(0,256):
sys.stdout.write("0x%02X " % (dfu.c5000peek(regaddr)) );
time.sleep(0.02);
if i%16==15:
sys.stdout.write("\n");
sys.stdout.flush();
sys.stdout.write("\n");
def c5write(dfu, regaddr, value ): # DL4YHF 2016-12
dfu.c5000poke(regaddr, value ); # beware ! potentially dangerous !
sys.stdout.write("Tried to write C5000 reg %02X := %02X\n" % (regaddr, value) );
c5read(dfu, regaddr );
def rssi(dfu):
"""Graphs the RSSI value. Kinda useless."""
while True:
rssih=dfu.c5000peek(0x43);
rssil=dfu.c5000peek(0x44);
rssi=(rssih<<8)|rssil;
print "%04x" % rssi;
sys.stdout.flush() # required for mingw and similar shells
time.sleep(0.25);
def messages(dfu):
"""Prints all the SMS messages."""
print "Inbox:"
messages = dfu.getinbox(0x416d0)[::-1]
for msg in messages:
print "From: %s Text: %s"%(msg["srcaddr"],msg["text"])
print "Sent:"
messages = dfu.getinbox(0x45100)[::-1]
for msg in messages:
print "To : %s Text: %s"%(msg["srcaddr"],msg["text"])
def keys(dfu):
"""Prints all the Enhanced Privacy keys."""
for i in range(1,9):
buf=dfu.getkey(i);
keystr=""; #Keys are displayed as big-endian, stored as little.
for b in buf:
keystr="%02x %s" % (b,keystr);
print "%02i: %s"%(i,keystr);
def findcc(dfu):
"""Hunts for the color code of a transmitter."""
cc=0; #Guess at the color code.
while True:
#Try a new color.
cc=cc+1;
print "Trying color %d." % (cc&0xf);
sys.stdout.flush();
dfu.c5000poke(0x1f,(cc&0xF)<<4);
time.sleep(1.0);
if dfu.c5000peek(0x0d)&0x10:
print "Got a match on color %i"%(cc&0xf);
while dfu.c5000peek(0x0d)&0x10:
time.sleep(0.5);
sys.stdout.write(".");
sys.stdout.flush();
sys.stdout.write("\n");
def bcd(b):
return int("%02x"%b);
def calldate(dfu):
"""Print Time and Date to stdout, fetched from the MD380's RTC."""
dfu.set_address(0x40002800); # 2.032
data=dfu.upload(1,8,0);
print "%02d.%02d.%02d %02d:%02d:%02d" % (
bcd(data[4] & (0x0f | 0x30)),
bcd(data[5] & (0x0f )),
bcd(data[6] ),
bcd(data[2] ),
bcd(data[1] & (0x0f | 0x70)),
bcd(data[0] & (0x0f | 0x70)) )
def calladc1(dfu):
"""Print ADC1 Voltage (Battery), fetched from the MD380's Memory (Update with DMA)."""
dfu.set_address(0x2001cfcc); # 2.032
data=dfu.upload(1,4,0);
# 7.2V ~ 2.4V PA1 (BATT) ... 2715 ~ 6.5V ... 3.3V 12BIT
print "%f Volt" % ( 3.3 / 0xfff * ((data[3] << 8 )+ data[2]) * 3 )
def getchannel(dfu):
"""Print actual Channel, fetched from the MD380's Memory."""
dfu.set_address(0x2001d376); # 2.032
data=dfu.upload(1,4,0);
print "%02d %02d %02d %02d" % ( data[3], data[2], data[1], data[0])
def readword(dfu, address):
print "%x"%(int(address, 0))
dfu.set_address(int(address,0)); # 2.032
data=dfu.upload(1,4*4,0);
print "%x %02x%02x%02x%02x" % (int(address, 0), data[3], data[2], data[1], data[0])
print "%x %02x %02x %02x %02x" % (int(address, 0), data[3], data[2], data[1], data[0])
print "%x %02x %02x %02x %02x" % (int(address, 0)+4, data[7], data[6], data[5], data[4])
print "%x %02x %02x %02x %02x" % (int(address, 0)+8, data[11], data[10], data[9], data[8])
print "%x %02x %02x %02x %02x" % (int(address, 0)+12, data[15], data[14], data[13], data[12])
print "%d" % ( data[3] << 24| data[2]<<16 | data[1]<<8 | data[0])
def init_dfu(alt=0):
dev = usb.core.find(idVendor=md380_vendor,
idProduct=md380_product)
if dev is None:
raise RuntimeError('Device not found')
dfu = Tool(dev, alt) # YHF: 'dfu' = "device firmware update" .. but THIS does much more
dev.default_timeout = 3000
try:
dfu.enter_dfu_mode()
pass;
except usb.core.USBError, e:
if len(e.args) > 0 and e.args[0] == 'Pipe error':
raise RuntimeError('Failed to enter DFU mode. Is bootloader running?')
else:
raise e
return dfu
def usage():
print("""
Usage: md380-tool <command> <arguments>
Print a log of incoming DMR calls to stdout.
md380-tool calllog
Looks up the name by an ID number.
md380-tool lookup 12345
Prints the dmesg buffer.
md380-tool dmesg
Follow the dmesg buffer.
md380-tool dmesgtail
Prints the C5000 baseband registers.
md380-tool c5000
Scans for DMR traffic on all color codes.
md380-tool findcc
Dumps all the inbound and outbound text messages.
md380-tool messages
Dumps all the keys.
md380-tool keys
Prints the SPI Flash Type.
md380-tool spiflashid
Dump all of flash memory.
md380-tool flashdump <filename.bin>
Dump the complete SPI Flash image (16MByte).
md380-tool spiflashdump <filename.bin>
Dump a core file of RAM.
md380-tool coredump <filename.bin>
Dumps memory in hex.
md380-tool hexdump <0xcafebabe>
Dumps 32-bit values from memory in hex.
md380-tool hexdump32 <address or regname like VTOR> [<count>]
Watches a hex address.
md380-tool hexwatch <0xcafebabe>
Dump one word.
md380-tool readword <0xcafebabe>
Dump 1kB from arbitrary address
md380-tool dump <filename.bin> <address>
Dump calibration data
md380-tool calibration
Copy File to SPI flash.
md380-tool spiflashwrite <filename> <address>"
Copy users.csv to SPI flash:
wc -c < db/users.csv > data ; cat db/users.csv >> data
md380-tool spiflashwrite data 0x100000
""")
def main():
try:
if len(sys.argv) == 2:
if sys.argv[1] == 'dmesg':
dfu=init_dfu();
dmesg(dfu);
elif sys.argv[1] == 'dmesgtail':
dfu=init_dfu();
dmesgtail(dfu);
elif sys.argv[1] == 'calllog':
dfu=init_dfu();
calllog(dfu);
elif sys.argv[1] == 'date':
dfu=init_dfu();
calldate(dfu);
elif sys.argv[1] == 'adc1':
dfu=init_dfu();
calladc1(dfu);
elif sys.argv[1] == 'channel':
dfu=init_dfu();
getchannel(dfu);
elif sys.argv[1] == 'c5000':
dfu=init_dfu();
c5000(dfu);
elif sys.argv[1] == 'rssi':
dfu=init_dfu();
rssi(dfu);
elif sys.argv[1] == 'findcc':
dfu=init_dfu();
findcc(dfu);
elif sys.argv[1] == 'messages':
dfu=init_dfu();
messages(dfu);
elif sys.argv[1] == 'keys':
dfu=init_dfu();
keys(dfu);
elif sys.argv[1] == 'spiflashid':
dfu=init_dfu();
flashgetid(dfu);
elif sys.argv[1] == "calibration":
dfu=init_dfu();
parse_calibration(dfu)
elif len(sys.argv) == 3:
if sys.argv[1] == 'flashdump':
print "Dumping flash from 0x08000000 to '%s'." % sys.argv[2];
dfu=init_dfu();
flashdump(dfu,sys.argv[2]);
elif sys.argv[1] == 'spiflashdump':
print "Dumping SPI Flash to '%s'." % sys.argv[2];
dfu=init_dfu();
spiflashdump(dfu,sys.argv[2]);
elif sys.argv[1] == 'coredump':
print "Dumping ram from 0x20000000 to '%s'." % sys.argv[2];
dfu=init_dfu();
coredump(dfu,sys.argv[2]);
elif sys.argv[1] == 'hexdump':
print "Dumping memory from %s." % sys.argv[2];
adr=ParseHexOrRegName(sys.argv[2])
dfu=init_dfu();
hexdump(dfu,adr);
elif sys.argv[1] == 'hexdump32':
dfu=init_dfu();
hexdump32(dfu,sys.argv[2]);
elif sys.argv[1] == 'bindump32':
dfu = init_dfu()
bindump32(dfu, sys.argv[2])
elif sys.argv[1] == 'ramdump':
print "Dumping memory from %s." % sys.argv[3]
dfu=init_dfu()
ramdump(dfu,sys.argv[2],sys.argv[3])
elif sys.argv[1] == 'hexwatch':
print "Watching memory at %s." % sys.argv[2]
dfu=init_dfu()
hexwatch(dfu,sys.argv[2])
elif sys.argv[1] == 'hexwatch32':
print "Watching 32-bit words at %s." % sys.argv[2]
dfu=init_dfu()
hexwatch32(dfu,sys.argv[2])
elif sys.argv[1] == 'ascwatch':
print "Watching 8-bit strings at %s." % sys.argv[2]
dfu=init_dfu()