yincheng.zhong
2024-04-19 1b4876fa8c75d9a0f3ffbfdc515a59a776f9dd65
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
T46AC 000:105.054   SEGGER J-Link V6.70e Log File
T46AC 000:105.187   DLL Compiled: Apr 17 2020 17:55:05
T46AC 000:105.201   Logging started @ 2024-04-18 03:50
T46AC 000:105.217 JLINK_SetWarnOutHandler(...)
T46AC 000:105.233 - 0.022ms
T46AC 000:105.249 JLINK_OpenEx(...)
T46AC 000:109.123   Firmware: J-Link ARM-OB STM32 compiled Aug 22 2012 19:52:04
T46AC 000:111.677   Hardware: V7.00
T46AC 000:111.715   S/N: 20090928
T46AC 000:111.740   OEM: SEGGER
T46AC 000:111.765   Feature(s): RDI,FlashDL,FlashBP,JFlash,GDB
T46AC 000:113.096   TELNET listener socket opened on port 19021
T46AC 000:113.211   WEBSRV Starting webserver
T46AC 000:113.307   WEBSRV Failed to put socket into listener state (port 19080)
T46AC 000:113.442   WEBSRV Webserver running on local port 19081
T46AC 000:113.470 - 8.229ms returns "O.K."
T46AC 000:113.498 JLINK_GetEmuCaps()
T46AC 000:113.516 - 0.026ms returns 0x88EA5833
T46AC 000:113.535 JLINK_TIF_GetAvailable(...)
T46AC 000:113.850 - 0.333ms
T46AC 000:113.883 JLINK_SetErrorOutHandler(...)
T46AC 000:113.901 - 0.026ms
T46AC 000:113.932 JLINK_ExecCommand("ProjectFile = "E:\GIT\XRange_Tag - ¸±±¾ (2)\MDK-ARM\JLinkSettings.ini"", ...). 
T46AC 000:120.129 - 6.217ms returns 0x00
T46AC 000:120.174 JLINK_ExecCommand("Device = STM32L071RBTx", ...). 
T46AC 000:121.020   Device "STM32L071RB" selected.
T46AC 000:121.595 - 1.416ms returns 0x00
T46AC 000:121.624 JLINK_ExecCommand("DisableConnectionTimeout", ...). 
T46AC 000:121.647 - 0.011ms returns 0x01
T46AC 000:121.666 JLINK_GetHardwareVersion()
T46AC 000:121.683 - 0.026ms returns 0x11170
T46AC 000:121.703 JLINK_GetDLLVersion()  returns 67005
T46AC 000:121.726 JLINK_GetFirmwareString(...)
T46AC 000:121.743 - 0.025ms
T46AC 000:121.782 JLINK_GetDLLVersion()  returns 67005
T46AC 000:121.800 JLINK_GetCompileDateTime()
T46AC 000:121.817 - 0.026ms
T46AC 000:121.841 JLINK_GetFirmwareString(...)
T46AC 000:121.858 - 0.025ms
T46AC 000:121.879 JLINK_GetHardwareVersion()
T46AC 000:121.896 - 0.025ms returns 0x11170
T46AC 000:121.929 JLINK_TIF_Select(JLINKARM_TIF_SWD)
T46AC 000:123.050 - 1.137ms returns 0x00
T46AC 000:123.086 JLINK_SetSpeed(5000)
T46AC 000:123.371 - 0.296ms
T46AC 000:123.393 JLINK_GetId()
T46AC 000:124.929   Found SW-DP with ID 0x2BA01477
T46AC 000:158.176   Active read protected STM32 device detected.
This could cause problems during flash download.
Note: Unsecuring will trigger a mass erase of the internal flash.
T46AC 000:158.213   Executing default behavior previously saved in the registry.
T46AC 000:158.248   Device will be unsecured now.
T46AC 000:171.739   Found SW-DP with ID 0x2BA01477
T46AC 000:196.852   Found SW-DP with ID 0x2BA01477
T46AC 000:228.751   Found SW-DP with ID 0x2BA01477
T46AC 000:234.589   Found SW-DP with ID 0x2BA01477
T46AC 000:239.453   Old FW that does not support reading DPIDR via DAP jobs
T46AC 000:245.722   Unknown DP version. Assuming DPv0
T46AC 000:245.775   Scanning AP map to find all available APs
T46AC 000:249.973   AP[1]: Stopped AP scan as end of AP map has been reached
T46AC 000:250.019   AP[0]: AHB-AP (IDR: 0x24770011)
T46AC 000:250.052   Iterating through AP map to find AHB-AP to use
T46AC 000:257.179   AP[0]: Core found
T46AC 000:257.227   AP[0]: AHB-AP ROM base: 0xE00FF000
T46AC 000:260.799   CPUID register: 0x410FC241. Implementer code: 0x41 (ARM)
T46AC 000:260.837   Found Cortex-M4 r0p1, Little endian.
T46AC 000:361.434   Identified core does not match configuration. (Found: Cortex-M4, Configured: Cortex-M0)
T46AC 000:362.185    -- Max. mem block: 0x00002C08
T46AC 000:362.230   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T46AC 000:363.098   CPU_ReadMem(4 bytes @ 0xE0002000)
T46AC 000:363.721   FPUnit: 6 code (BP) slots and 2 literal slots
T46AC 000:363.748   CPU_ReadMem(4 bytes @ 0xE000EDFC)
T46AC 000:364.338   CPU_ReadMem(4 bytes @ 0xE0001000)
T46AC 000:364.934   CPU_WriteMem(4 bytes @ 0xE0001000)
T46AC 000:365.680   CPU_ReadMem(4 bytes @ 0xE000ED88)
T46AC 000:366.343   CPU_WriteMem(4 bytes @ 0xE000ED88)
T46AC 000:366.939   CPU_ReadMem(4 bytes @ 0xE000ED88)
T46AC 000:367.541   CPU_WriteMem(4 bytes @ 0xE000ED88)
T46AC 000:368.240   CoreSight components:
T46AC 000:368.281   ROMTbl[0] @ E00FF000
T46AC 000:368.311   CPU_ReadMem(64 bytes @ 0xE00FF000)
T46AC 000:369.498   CPU_ReadMem(32 bytes @ 0xE000EFE0)
T46AC 000:370.382   ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB00C SCS-M7
T46AC 000:370.411   CPU_ReadMem(32 bytes @ 0xE0001FE0)
T46AC 000:371.292   ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 003BB002 DWT
T46AC 000:371.323   CPU_ReadMem(32 bytes @ 0xE0002FE0)
T46AC 000:372.187   ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 002BB003 FPB
T46AC 000:372.218   CPU_ReadMem(32 bytes @ 0xE0000FE0)
T46AC 000:373.078   ROMTbl[0][3]: E0000000, CID: B105E00D, PID: 003BB001 ITM
T46AC 000:373.109   CPU_ReadMem(32 bytes @ 0xE0040FE0)
T46AC 000:373.975   ROMTbl[0][4]: E0040000, CID: B105900D, PID: 000BB9A1 TPIU
T46AC 000:374.004   CPU_ReadMem(32 bytes @ 0xE0041FE0)
T46AC 000:374.877   ROMTbl[0][5]: E0041000, CID: B105900D, PID: 000BB925 ETM
T46AC 000:375.613 - 252.234ms   returns 0x2BA01477
T46AC 000:375.644 JLINK_GetDLLVersion()  returns 67005
T46AC 000:375.664 JLINK_CORE_GetFound()
T46AC 000:375.680 - 0.024ms returns 0xE0000FF
T46AC 000:375.699 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX)
T46AC 000:375.719   Value=0xE00FF000
T46AC 000:375.743 - 0.052ms returns 0x00
T46AC 000:375.799 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX)
T46AC 000:375.817   Value=0xE00FF000
T46AC 000:375.841 - 0.050ms returns 0x00
T46AC 000:375.859 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX)
T46AC 000:375.875   Value=0xE0041000
T46AC 000:375.899 - 0.048ms returns 0x00
T46AC 000:375.920   JLINK_ReadMemEx(0xE0041FD0, 0x0020 Bytes, ..., Flags = 0x02000004)
T46AC 000:375.956   CPU_ReadMem(32 bytes @ 0xE0041FD0)
T46AC 000:376.825   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T46AC 000:376.860 - 0.950ms returns 0x20
T46AC 000:376.881 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX)
T46AC 000:376.898   Value=0x00000000
T46AC 000:376.923 - 0.050ms returns 0x00
T46AC 000:376.941 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX)
T46AC 000:376.957   Value=0xE0040000
T46AC 000:376.981 - 0.049ms returns 0x00
T46AC 000:376.999 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX)
T46AC 000:377.016   Value=0xE0000000
T46AC 000:377.040 - 0.049ms returns 0x00
T46AC 000:377.058 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX)
T46AC 000:377.074   Value=0xE0001000
T46AC 000:377.099 - 0.049ms returns 0x00
T46AC 000:377.116 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX)
T46AC 000:377.133   Value=0xE0002000
T46AC 000:377.157 - 0.049ms returns 0x00
T46AC 000:377.175 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX)
T46AC 000:377.191   Value=0xE000E000
T46AC 000:377.215 - 0.049ms returns 0x00
T46AC 000:377.233 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX)
T46AC 000:377.250   Value=0xE000EDF0
T46AC 000:377.274 - 0.049ms returns 0x00
T46AC 000:377.292 JLINK_GetDebugInfo(0x01 = Unknown)
T46AC 000:377.310   Value=0x00000001
T46AC 000:377.334 - 0.050ms returns 0x00
T46AC 000:377.353 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...)
T46AC 000:377.376   CPU_ReadMem(4 bytes @ 0xE000ED00)
T46AC 000:378.040   Data:  41 C2 0F 41
T46AC 000:378.071    - CPUID
T46AC 000:378.092 - 0.745ms returns 1
T46AC 000:378.108 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX)
T46AC 000:378.123   Value=0x00000000
T46AC 000:378.143 - 0.041ms returns 0x00
T46AC 000:378.157 JLINK_Halt()
T46AC 000:381.605 - 3.466ms returns 0x00
T46AC 000:381.637 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...)
T46AC 000:381.662   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T46AC 000:382.342   Data:  03 00 03 00
T46AC 000:382.370    - DHCSR
T46AC 000:382.396 - 0.767ms returns 1
T46AC 000:382.415 JLINK_WriteU32(0xE000EDF0, 0xA05F0003)
T46AC 000:382.432    - DHCSR
T46AC 000:382.468   CPU_WriteMem(4 bytes @ 0xE000EDF0)
T46AC 000:383.092 - 0.685ms returns 0
T46AC 000:383.113 JLINK_WriteU32(0xE000EDFC, 0x01000000)
T46AC 000:383.128    - DEMCR
T46AC 000:383.151   CPU_WriteMem(4 bytes @ 0xE000EDFC)
T46AC 000:383.813 - 0.709ms returns 0
T46AC 000:383.862 JLINK_GetHWStatus(...)
T46AC 000:384.176 - 0.322ms returns 0x00
T46AC 000:384.204 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)
T46AC 000:384.219 - 0.021ms returns 0x06
T46AC 000:384.233 JLINK_GetNumBPUnits(Type = 0xF0)
T46AC 000:384.247 - 0.020ms returns 0x2000
T46AC 000:384.261 JLINK_GetNumWPUnits()
T46AC 000:384.274 - 0.020ms returns 0x04
T46AC 000:384.382 JLINK_GetSpeed()
T46AC 000:384.398 - 0.023ms returns 0xFA0
T46AC 000:384.418 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...)
T46AC 000:384.435   CPU_ReadMem(4 bytes @ 0xE000E004)
T46AC 000:385.037   Data:  02 00 00 00
T46AC 000:385.058 - 0.647ms returns 1
T46AC 000:385.074 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...)
T46AC 000:385.089   CPU_ReadMem(4 bytes @ 0xE000E004)
T46AC 000:385.664   Data:  02 00 00 00
T46AC 000:385.687 - 0.619ms returns 1
T46AC 000:385.702 JLINK_WriteMemEx(0xE0001000, 0x001C Bytes, ..., Flags = 0x02000004)
T46AC 000:385.716   Data:  01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T46AC 000:385.923   CPU_WriteMem(28 bytes @ 0xE0001000)
T46AC 000:386.828 - 1.133ms returns 0x1C
T46AC 000:386.848 JLINK_ReadReg(R15 (PC))
T46AC 000:386.863 - 0.022ms returns 0x080001A8
T46AC 000:386.878 JLINK_ReadReg(XPSR)
T46AC 000:386.892 - 0.020ms returns 0x01000000
T46AC 000:419.784 JLINK_WriteMemEx(0x08010000, 0x0800 Bytes, ..., Flags = 0x02000000)
T46AC 000:419.819   Data:  03 90 20 07 06 D4 02 99 01 98 81 42 02 DB 00 20 ...
T46AC 000:420.007   completely In flash
T46AC 000:420.031 - 0.253ms returns 0x800
T46AC 000:420.357 JLINK_WriteMemEx(0x08010800, 0x0968 Bytes, ..., Flags = 0x02000000)
T46AC 000:420.376   Data:  C3 F8 00 2D 13 D0 6B 46 01 22 03 21 0F 20 FF F7 ...
T46AC 000:420.400   completely In flash
T46AC 000:420.422 - 0.071ms returns 0x968
T46AC 000:477.166 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)
T46AC 000:477.193 - 0.035ms returns JLINKARM_CM3_RESET_TYPE_NORMAL
T46AC 000:477.209 JLINK_Reset()
T46AC 000:477.227   Old firmware which does not support pausing periodic actions during flash download
T46AC 000:477.253   CPU_ReadMem(4 bytes @ 0xE000ED90)
T46AC 000:477.868   CPU_ReadMem(4 bytes @ 0xE000ED94)
T46AC 000:478.445    -- --------------------------------------
T46AC 000:478.472    -- Start of determining dirty areas in flash cache
T46AC 000:480.564    -- End of determining dirty areas
T46AC 000:480.591    -- Start of preparing flash programming
T46AC 000:480.622    -- Calculating RAM usage
T46AC 000:485.802    -- RAM usage = 3100 Bytes
T46AC 000:485.838    -- Preserving CPU registers
T46AC 000:485.877    -- Preparing memory
T46AC 000:485.905    -- Preparing target
T46AC 000:485.932    -- Downloading RAMCode
T46AC 000:520.585    -- Preparing RAMCode
T46AC 003:533.021   
  ***** Error: 
T46AC 003:533.066   Timeout while preparing target, RAMCode did not respond in time. (PC = 0x00000000, CPSR = 0x00000000, LR = 0x01000003)!
T46AC 003:533.095   
  ***** Error: 
T46AC 003:533.119   Failed to prepare RAMCode using RAM
T46AC 003:533.149    -- End of preparing flash programming
T46AC 003:533.193   CPU_WriteMem(4 bytes @ 0xE000EDF0)
T46AC 003:533.220   CPU_WriteMem(4 bytes @ 0xE000EDFC)
T46AC 003:533.273   Reset: Halt core after reset via DEMCR.VC_CORERESET.
T46AC 003:534.053   Reset: Reset device via AIRCR.SYSRESETREQ.
T46AC 003:534.082   CPU_WriteMem(4 bytes @ 0xE000ED0C)
T46AC 003:585.595   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T46AC 003:588.363   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T46AC 003:588.940   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T46AC 003:589.558   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T46AC 003:590.130   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T46AC 003:590.738   CPU_WriteMem(4 bytes @ 0xE000EDF0)
T46AC 003:590.768   CPU_WriteMem(4 bytes @ 0xE000EDFC)
T46AC 003:595.830   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T46AC 003:600.599   CPU_WriteMem(4 bytes @ 0xE0002000)
T46AC 003:600.645   CPU_ReadMem(4 bytes @ 0xE000EDFC)
T46AC 003:601.601   CPU_ReadMem(4 bytes @ 0xE0001000)
T46AC 003:602.203 - 3125.005ms
T46AC 003:604.113 JLINK_ReadReg(R15 (PC))
T46AC 003:604.144 - 0.041ms returns 0x080001A8
T46AC 003:604.166 JLINK_ReadReg(XPSR)
T46AC 003:604.185 - 0.028ms returns 0x01000000
T46AC 003:604.287   JLINK_ReadMemEx(0x080001A8, 0x003C Bytes, ..., Flags = 0x02000000)
T46AC 003:604.323   CPU_ReadMem(128 bytes @ 0x08000180)
T46AC 003:606.259    -- Updating C cache (128 bytes @ 0x08000180)
T46AC 003:606.294    -- Read from C cache (60 bytes @ 0x080001A8)
T46AC 003:606.323   Data:  06 48 80 47 06 48 00 47 FE E7 FE E7 FE E7 FE E7 ...
T46AC 003:606.349 - 2.072ms returns 0x3C
T46AC 003:606.371   JLINK_ReadMemEx(0x080001A8, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 003:606.400    -- Read from C cache (2 bytes @ 0x080001A8)
T46AC 003:606.427   Data:  06 48
T46AC 003:606.453 - 0.091ms returns 0x02
T46AC 003:606.539   JLINK_ReadMemEx(0x080001AA, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 003:606.568    -- Read from C cache (2 bytes @ 0x080001AA)
T46AC 003:606.595   Data:  80 47
T46AC 003:606.621 - 0.091ms returns 0x02
T46AC 003:606.656   JLINK_ReadMemEx(0x080001AA, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 003:606.681    -- Read from C cache (2 bytes @ 0x080001AA)
T46AC 003:606.704   Data:  80 47
T46AC 003:606.727 - 0.079ms returns 0x02
T46AC 003:606.745   JLINK_ReadMemEx(0x080001AC, 0x003C Bytes, ..., Flags = 0x02000000)
T46AC 003:606.768    -- Read from C cache (60 bytes @ 0x080001AC)
T46AC 003:606.792   Data:  06 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...
T46AC 003:606.815 - 0.078ms returns 0x3C
T46AC 003:606.833   JLINK_ReadMemEx(0x080001AC, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 003:606.857    -- Read from C cache (2 bytes @ 0x080001AC)
T46AC 003:606.880   Data:  06 48
T46AC 003:606.903 - 0.078ms returns 0x02
T46AC 003:606.926   JLINK_ReadMemEx(0x080001AC, 0x003C Bytes, ..., Flags = 0x02000000)
T46AC 003:606.950    -- Read from C cache (60 bytes @ 0x080001AC)
T46AC 003:606.974   Data:  06 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...
T46AC 003:606.997 - 0.078ms returns 0x3C
T46AC 003:607.013   JLINK_ReadMemEx(0x080001AC, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 003:607.037    -- Read from C cache (2 bytes @ 0x080001AC)
T46AC 003:607.060   Data:  06 48
T46AC 003:607.083 - 0.077ms returns 0x02
T46AC 003:607.100   JLINK_ReadMemEx(0x080001AE, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 003:607.123    -- Read from C cache (2 bytes @ 0x080001AE)
T46AC 003:607.146   Data:  00 47
T46AC 003:607.169 - 0.077ms returns 0x02
T46AC 003:607.191   JLINK_ReadMemEx(0x080001AE, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 003:607.215    -- Read from C cache (2 bytes @ 0x080001AE)
T46AC 003:607.238   Data:  00 47
T46AC 003:607.261 - 0.077ms returns 0x02
T46AC 003:607.277   JLINK_ReadMemEx(0x080001B0, 0x003C Bytes, ..., Flags = 0x02000000)
T46AC 003:607.301    -- Read from C cache (60 bytes @ 0x080001B0)
T46AC 003:607.324   Data:  FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...
T46AC 003:607.347 - 0.077ms returns 0x3C
T46AC 003:607.364   JLINK_ReadMemEx(0x080001B0, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 003:607.387    -- Read from C cache (2 bytes @ 0x080001B0)
T46AC 003:607.410   Data:  FE E7
T46AC 003:607.433 - 0.077ms returns 0x02
T46AC 003:607.454   JLINK_ReadMemEx(0x080001B0, 0x003C Bytes, ..., Flags = 0x02000000)
T46AC 003:607.478    -- Read from C cache (60 bytes @ 0x080001B0)
T46AC 003:607.502   Data:  FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...
T46AC 003:607.525 - 0.078ms returns 0x3C
T46AC 003:607.542   JLINK_ReadMemEx(0x080001B0, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 003:607.565    -- Read from C cache (2 bytes @ 0x080001B0)
T46AC 003:607.588   Data:  FE E7
T46AC 003:607.612 - 0.077ms returns 0x02
T46AC 003:607.629   JLINK_ReadMemEx(0x080001B2, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 003:607.652    -- Read from C cache (2 bytes @ 0x080001B2)
T46AC 003:607.675   Data:  FE E7
T46AC 003:607.698 - 0.077ms returns 0x02
T46AC 005:642.389 JLINK_WriteMemEx(0x08010000, 0x0800 Bytes, ..., Flags = 0x02000000)
T46AC 005:642.425   Data:  03 90 20 07 06 D4 02 99 01 98 81 42 02 DB 00 20 ...
T46AC 005:642.452   completely In flash
T46AC 005:642.474 - 0.091ms returns 0x800
T46AC 005:642.629 JLINK_WriteMemEx(0x08010800, 0x0968 Bytes, ..., Flags = 0x02000000)
T46AC 005:642.644   Data:  C3 F8 00 2D 13 D0 6B 46 01 22 03 21 0F 20 FF F7 ...
T46AC 005:642.666   completely In flash
T46AC 005:642.687 - 0.064ms returns 0x968
T46AC 005:693.893 JLINK_ReadReg(R0)
T46AC 005:694.500   Old firmware which does not support pausing periodic actions during flash download
T46AC 005:694.532   CPU_ReadMem(4 bytes @ 0xE000ED90)
T46AC 005:695.111   CPU_ReadMem(4 bytes @ 0xE000ED94)
T46AC 005:695.674    -- --------------------------------------
T46AC 005:695.705    -- Start of determining dirty areas in flash cache
T46AC 005:695.773    -- End of determining dirty areas
T46AC 005:695.800    -- Start of preparing flash programming
T46AC 005:695.829    -- Calculating RAM usage
T46AC 005:695.862    -- RAM usage = 3100 Bytes
T46AC 005:695.889    -- Preserving CPU registers
T46AC 005:695.926    -- Preparing memory
T46AC 005:695.953    -- Preparing target
T46AC 005:695.980    -- Preserving target RAM temporarily used for programming
T46AC 005:727.409    -- Downloading RAMCode
T46AC 005:761.724    -- Preparing RAMCode
T46AC 008:770.878   
  ***** Error: 
T46AC 008:770.926   Timeout while preparing target, RAMCode did not respond in time. (PC = 0x00000000, CPSR = 0x00000000, LR = 0x01000003)!
T46AC 008:770.957   
  ***** Error: 
T46AC 008:770.986   Failed to prepare RAMCode using RAM
T46AC 008:771.015    -- End of preparing flash programming
T46AC 008:771.050 - 3077.168ms returns 0x2000071C
T46AC 008:771.106 JLINK_ReadReg(R1)
T46AC 008:771.128 - 0.032ms returns 0x40022004
T46AC 008:771.150 JLINK_ReadReg(R2)
T46AC 008:771.170 - 0.029ms returns 0x2000073C
T46AC 008:771.191 JLINK_ReadReg(R3)
T46AC 008:771.211 - 0.029ms returns 0x00000000
T46AC 008:771.233 JLINK_ReadReg(R4)
T46AC 008:771.253 - 0.029ms returns 0x20000764
T46AC 008:771.274 JLINK_ReadReg(R5)
T46AC 008:771.294 - 0.029ms returns 0x20000774
T46AC 008:771.316 JLINK_ReadReg(R6)
T46AC 008:771.335 - 0.029ms returns 0x2000073C
T46AC 008:771.357 JLINK_ReadReg(R7)
T46AC 008:771.377 - 0.029ms returns 0x00000000
T46AC 008:771.399 JLINK_ReadReg(R8)
T46AC 008:771.418 - 0.029ms returns 0x00000000
T46AC 008:771.440 JLINK_ReadReg(R9)
T46AC 008:771.459 - 0.029ms returns 0x00000000
T46AC 008:771.481 JLINK_ReadReg(R10)
T46AC 008:771.498 - 0.025ms returns 0x00000000
T46AC 008:771.516 JLINK_ReadReg(R11)
T46AC 008:771.532 - 0.023ms returns 0x00000000
T46AC 008:771.549 JLINK_ReadReg(R12)
T46AC 008:771.565 - 0.024ms returns 0x00000000
T46AC 008:771.583 JLINK_ReadReg(R13 (SP))
T46AC 008:771.599 - 0.024ms returns 0x200006E0
T46AC 008:771.617 JLINK_ReadReg(R14)
T46AC 008:771.633 - 0.024ms returns 0xFFFFFFF9
T46AC 008:771.651 JLINK_ReadReg(R15 (PC))
T46AC 008:771.669 - 0.026ms returns 0x08001A80
T46AC 008:771.686 JLINK_ReadReg(XPSR)
T46AC 008:771.703 - 0.024ms returns 0x01000003
T46AC 008:771.720 JLINK_ReadReg(MSP)
T46AC 008:771.736 - 0.023ms returns 0x200006E0
T46AC 008:771.754 JLINK_ReadReg(PSP)
T46AC 008:771.770 - 0.023ms returns 0x00000000
T46AC 008:771.787 JLINK_ReadReg(CFBP)
T46AC 008:771.803 - 0.024ms returns 0x00000000
T46AC 008:771.821 JLINK_ReadReg(FPSCR)
T46AC 008:777.324 - 5.519ms returns 0x00000000
T46AC 008:777.357 JLINK_ReadReg(FPS0)
T46AC 008:777.379 - 0.032ms returns 0x00000000
T46AC 008:777.401 JLINK_ReadReg(FPS1)
T46AC 008:777.421 - 0.030ms returns 0x00000000
T46AC 008:777.443 JLINK_ReadReg(FPS2)
T46AC 008:777.463 - 0.029ms returns 0x00000000
T46AC 008:777.484 JLINK_ReadReg(FPS3)
T46AC 008:777.504 - 0.029ms returns 0x00000000
T46AC 008:777.526 JLINK_ReadReg(FPS4)
T46AC 008:777.545 - 0.029ms returns 0x00000000
T46AC 008:777.567 JLINK_ReadReg(FPS5)
T46AC 008:777.587 - 0.029ms returns 0x00000000
T46AC 008:777.608 JLINK_ReadReg(FPS6)
T46AC 008:777.628 - 0.032ms returns 0x00000000
T46AC 008:777.656 JLINK_ReadReg(FPS7)
T46AC 008:777.677 - 0.030ms returns 0x00000000
T46AC 008:777.698 JLINK_ReadReg(FPS8)
T46AC 008:777.718 - 0.029ms returns 0x00000000
T46AC 008:777.739 JLINK_ReadReg(FPS9)
T46AC 008:777.759 - 0.029ms returns 0x00000000
T46AC 008:777.781 JLINK_ReadReg(FPS10)
T46AC 008:777.800 - 0.029ms returns 0x00000000
T46AC 008:777.821 JLINK_ReadReg(FPS11)
T46AC 008:777.841 - 0.029ms returns 0x00000000
T46AC 008:777.863 JLINK_ReadReg(FPS12)
T46AC 008:777.882 - 0.029ms returns 0x00000000
T46AC 008:777.904 JLINK_ReadReg(FPS13)
T46AC 008:777.923 - 0.029ms returns 0x00000000
T46AC 008:777.945 JLINK_ReadReg(FPS14)
T46AC 008:777.964 - 0.029ms returns 0x00000000
T46AC 008:777.986 JLINK_ReadReg(FPS15)
T46AC 008:778.006 - 0.029ms returns 0x00000000
T46AC 008:778.027 JLINK_ReadReg(FPS16)
T46AC 008:778.047 - 0.029ms returns 0x00000000
T46AC 008:778.068 JLINK_ReadReg(FPS17)
T46AC 008:778.088 - 0.029ms returns 0x00000000
T46AC 008:778.109 JLINK_ReadReg(FPS18)
T46AC 008:778.129 - 0.029ms returns 0x00000000
T46AC 008:778.150 JLINK_ReadReg(FPS19)
T46AC 008:778.170 - 0.029ms returns 0x00000000
T46AC 008:778.191 JLINK_ReadReg(FPS20)
T46AC 008:778.211 - 0.029ms returns 0x00000000
T46AC 008:778.232 JLINK_ReadReg(FPS21)
T46AC 008:778.252 - 0.029ms returns 0x00000000
T46AC 008:778.273 JLINK_ReadReg(FPS22)
T46AC 008:778.293 - 0.029ms returns 0x00000000
T46AC 008:778.314 JLINK_ReadReg(FPS23)
T46AC 008:778.334 - 0.029ms returns 0x00000000
T46AC 008:778.355 JLINK_ReadReg(FPS24)
T46AC 008:778.375 - 0.029ms returns 0x00000000
T46AC 008:778.396 JLINK_ReadReg(FPS25)
T46AC 008:778.416 - 0.029ms returns 0x00000000
T46AC 008:778.437 JLINK_ReadReg(FPS26)
T46AC 008:778.456 - 0.029ms returns 0x00000000
T46AC 008:778.478 JLINK_ReadReg(FPS27)
T46AC 008:778.497 - 0.028ms returns 0x00000000
T46AC 008:778.516 JLINK_ReadReg(FPS28)
T46AC 008:778.532 - 0.023ms returns 0x00000000
T46AC 008:778.550 JLINK_ReadReg(FPS29)
T46AC 008:778.566 - 0.023ms returns 0x00000000
T46AC 008:778.583 JLINK_ReadReg(FPS30)
T46AC 008:778.599 - 0.023ms returns 0x00000000
T46AC 008:778.617 JLINK_ReadReg(FPS31)
T46AC 008:778.633 - 0.024ms returns 0x00000000
T46AC 008:779.578   JLINK_ReadMemEx(0x2000009C, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 008:779.626   CPU_ReadMem(64 bytes @ 0x20000080)
T46AC 008:780.822    -- Updating C cache (64 bytes @ 0x20000080)
T46AC 008:780.853    -- Read from C cache (2 bytes @ 0x2000009C)
T46AC 008:780.881   Data:  09 1D
T46AC 008:780.908 - 1.340ms returns 0x02
T46AC 008:782.870   JLINK_ReadMemEx(0x2000009C, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 008:782.906    -- Read from C cache (2 bytes @ 0x2000009C)
T46AC 008:782.931   Data:  09 1D
T46AC 008:782.955 - 0.093ms returns 0x02
T46AC 008:782.990   JLINK_ReadMemEx(0x2000009C, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 008:783.015    -- Read from C cache (2 bytes @ 0x2000009C)
T46AC 008:783.039   Data:  09 1D
T46AC 008:783.062 - 0.080ms returns 0x02
T46AC 008:784.692   JLINK_ReadMemEx(0x20000078, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:784.732   CPU_ReadMem(64 bytes @ 0x20000040)
T46AC 008:785.959    -- Updating C cache (64 bytes @ 0x20000040)
T46AC 008:785.990    -- Read from C cache (1 bytes @ 0x20000078)
T46AC 008:786.014   Data:  0D
T46AC 008:786.038 - 1.354ms returns 0x01
T46AC 008:786.075   JLINK_ReadMemEx(0x20000078, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:786.103    -- Read from C cache (1 bytes @ 0x20000078)
T46AC 008:786.127   Data:  0D
T46AC 008:786.150 - 0.083ms returns 0x01
T46AC 008:786.181   JLINK_ReadMemEx(0x20000078, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:786.206    -- Read from C cache (1 bytes @ 0x20000078)
T46AC 008:786.230   Data:  0D
T46AC 008:786.253 - 0.080ms returns 0x01
T46AC 008:787.837   JLINK_ReadMemEx(0x20000288, 0x0004 Bytes, ..., Flags = 0x02000000)
T46AC 008:787.874   CPU_ReadMem(64 bytes @ 0x20000280)
T46AC 008:789.102    -- Updating C cache (64 bytes @ 0x20000280)
T46AC 008:789.128    -- Read from C cache (4 bytes @ 0x20000288)
T46AC 008:789.157   Data:  83 B0 0C 00
T46AC 008:789.181 - 1.351ms returns 0x04
T46AC 008:789.211   JLINK_ReadMemEx(0x20000288, 0x0004 Bytes, ..., Flags = 0x02000000)
T46AC 008:789.238    -- Read from C cache (4 bytes @ 0x20000288)
T46AC 008:789.261   Data:  83 B0 0C 00
T46AC 008:789.284 - 0.081ms returns 0x04
T46AC 008:789.311   JLINK_ReadMemEx(0x20000288, 0x0004 Bytes, ..., Flags = 0x02000000)
T46AC 008:789.336    -- Read from C cache (4 bytes @ 0x20000288)
T46AC 008:789.359   Data:  83 B0 0C 00
T46AC 008:789.382 - 0.079ms returns 0x04
T46AC 008:790.271   JLINK_ReadMemEx(0x20001276, 0x0020 Bytes, ..., Flags = 0x02000000)
T46AC 008:790.314   CPU_ReadMem(128 bytes @ 0x20001240)
T46AC 008:792.177    -- Updating C cache (128 bytes @ 0x20001240)
T46AC 008:792.204    -- Read from C cache (32 bytes @ 0x20001276)
T46AC 008:792.228   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T46AC 008:792.251 - 1.988ms returns 0x20
T46AC 008:793.076   JLINK_ReadMemEx(0x20000288, 0x0004 Bytes, ..., Flags = 0x02000000)
T46AC 008:793.120    -- Read from C cache (4 bytes @ 0x20000288)
T46AC 008:793.150   Data:  83 B0 0C 00
T46AC 008:793.178 - 0.113ms returns 0x04
T46AC 008:793.212   JLINK_ReadMemEx(0x20000288, 0x0004 Bytes, ..., Flags = 0x02000000)
T46AC 008:793.244    -- Read from C cache (4 bytes @ 0x20000288)
T46AC 008:793.272   Data:  83 B0 0C 00
T46AC 008:793.301 - 0.098ms returns 0x04
T46AC 008:793.332   JLINK_ReadMemEx(0x20000288, 0x0004 Bytes, ..., Flags = 0x02000000)
T46AC 008:793.364    -- Read from C cache (4 bytes @ 0x20000288)
T46AC 008:793.392   Data:  83 B0 0C 00
T46AC 008:793.420 - 0.098ms returns 0x04
T46AC 008:794.190   JLINK_ReadMemEx(0x20001AF0, 0x0020 Bytes, ..., Flags = 0x02000000)
T46AC 008:794.225   CPU_ReadMem(128 bytes @ 0x20001AC0)
T46AC 008:796.093    -- Updating C cache (128 bytes @ 0x20001AC0)
T46AC 008:796.123    -- Read from C cache (32 bytes @ 0x20001AF0)
T46AC 008:796.151   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T46AC 008:796.177 - 1.996ms returns 0x20
T46AC 008:797.024   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:798.880   CPU_ReadMem(4 bytes @ 0x40023844)
T46AC 008:799.498   CPU_ReadMem(64 bytes @ 0x08000000)
T46AC 008:800.702    -- Updating C cache (64 bytes @ 0x08000000)
T46AC 008:800.734    -- Read from C cache (1 bytes @ 0x08000000)
T46AC 008:800.758   Data:  60
T46AC 008:800.781 - 3.766ms returns 0x01
T46AC 008:800.881   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:800.909    -- Read from C cache (1 bytes @ 0x08000000)
T46AC 008:800.932   Data:  60
T46AC 008:800.955 - 0.082ms returns 0x01
T46AC 008:800.990   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:801.015    -- Read from C cache (1 bytes @ 0x08000000)
T46AC 008:801.038   Data:  60
T46AC 008:801.062 - 0.080ms returns 0x01
T46AC 008:802.850   JLINK_ReadMemEx(0x200000EC, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:802.889   CPU_ReadMem(64 bytes @ 0x200000C0)
T46AC 008:804.119    -- Updating C cache (64 bytes @ 0x200000C0)
T46AC 008:804.143    -- Read from C cache (1 bytes @ 0x200000EC)
T46AC 008:804.166   Data:  0B
T46AC 008:804.188 - 1.346ms returns 0x01
T46AC 008:804.236   JLINK_ReadMemEx(0x200000EC, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:804.262    -- Read from C cache (1 bytes @ 0x200000EC)
T46AC 008:804.285   Data:  0B
T46AC 008:804.307 - 0.079ms returns 0x01
T46AC 008:804.335   JLINK_ReadMemEx(0x200000EC, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:804.359    -- Read from C cache (1 bytes @ 0x200000EC)
T46AC 008:804.381   Data:  0B
T46AC 008:804.403 - 0.075ms returns 0x01
T46AC 008:805.330   JLINK_ReadMemEx(0x2000025F, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:805.370   CPU_ReadMem(64 bytes @ 0x20000240)
T46AC 008:806.561    -- Updating C cache (64 bytes @ 0x20000240)
T46AC 008:806.584    -- Read from C cache (1 bytes @ 0x2000025F)
T46AC 008:806.606   Data:  60
T46AC 008:806.626 - 1.303ms returns 0x01
T46AC 008:806.656   JLINK_ReadMemEx(0x2000025F, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:806.683    -- Read from C cache (1 bytes @ 0x2000025F)
T46AC 008:806.707   Data:  60
T46AC 008:806.728 - 0.079ms returns 0x01
T46AC 008:806.752   JLINK_ReadMemEx(0x2000025F, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:806.775    -- Read from C cache (1 bytes @ 0x2000025F)
T46AC 008:806.795   Data:  60
T46AC 008:806.816 - 0.070ms returns 0x01
T46AC 008:808.426   JLINK_ReadMemEx(0x200000E8, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:808.457    -- Read from C cache (1 bytes @ 0x200000E8)
T46AC 008:808.478   Data:  1C
T46AC 008:808.498 - 0.079ms returns 0x01
T46AC 008:808.522   JLINK_ReadMemEx(0x200000E8, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:808.544    -- Read from C cache (1 bytes @ 0x200000E8)
T46AC 008:808.565   Data:  1C
T46AC 008:808.585 - 0.070ms returns 0x01
T46AC 008:808.610   JLINK_ReadMemEx(0x200000E8, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:808.632    -- Read from C cache (1 bytes @ 0x200000E8)
T46AC 008:808.652   Data:  1C
T46AC 008:808.673 - 0.070ms returns 0x01
T46AC 008:809.338   JLINK_ReadMemEx(0x200016D4, 0x0020 Bytes, ..., Flags = 0x02000000)
T46AC 008:809.368   CPU_ReadMem(64 bytes @ 0x200016C0)
T46AC 008:810.548    -- Updating C cache (64 bytes @ 0x200016C0)
T46AC 008:810.570    -- Read from C cache (32 bytes @ 0x200016D4)
T46AC 008:810.590   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T46AC 008:810.610 - 1.279ms returns 0x20
T46AC 008:811.294   JLINK_ReadMemEx(0x2000005C, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 008:811.322    -- Read from C cache (2 bytes @ 0x2000005C)
T46AC 008:811.342   Data:  8E 59
T46AC 008:811.361 - 0.074ms returns 0x02
T46AC 008:811.385   JLINK_ReadMemEx(0x2000005C, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 008:811.406    -- Read from C cache (2 bytes @ 0x2000005C)
T46AC 008:811.426   Data:  8E 59
T46AC 008:811.445 - 0.067ms returns 0x02
T46AC 008:811.466   JLINK_ReadMemEx(0x2000005C, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 008:811.488    -- Read from C cache (2 bytes @ 0x2000005C)
T46AC 008:811.508   Data:  8E 59
T46AC 008:811.527 - 0.067ms returns 0x02
T46AC 008:812.196   JLINK_ReadMemEx(0x2000005C, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 008:812.223    -- Read from C cache (2 bytes @ 0x2000005C)
T46AC 008:812.244   Data:  8E 59
T46AC 008:812.263 - 0.074ms returns 0x02
T46AC 008:812.291   JLINK_ReadMemEx(0x2000005C, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 008:812.313    -- Read from C cache (2 bytes @ 0x2000005C)
T46AC 008:812.333   Data:  8E 59
T46AC 008:812.352 - 0.068ms returns 0x02
T46AC 008:812.373   JLINK_ReadMemEx(0x2000005C, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 008:812.394    -- Read from C cache (2 bytes @ 0x2000005C)
T46AC 008:812.414   Data:  8E 59
T46AC 008:812.433 - 0.066ms returns 0x02
T46AC 008:813.199   JLINK_ReadMemEx(0x2000009A, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 008:813.235    -- Read from C cache (2 bytes @ 0x2000009A)
T46AC 008:813.260   Data:  0E 68
T46AC 008:813.285 - 0.094ms returns 0x02
T46AC 008:813.314   JLINK_ReadMemEx(0x2000009A, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 008:813.341    -- Read from C cache (2 bytes @ 0x2000009A)
T46AC 008:813.365   Data:  0E 68
T46AC 008:813.389 - 0.083ms returns 0x02
T46AC 008:813.420   JLINK_ReadMemEx(0x2000009A, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 008:813.446    -- Read from C cache (2 bytes @ 0x2000009A)
T46AC 008:813.470   Data:  0E 68
T46AC 008:813.494 - 0.082ms returns 0x02
T46AC 008:816.872   JLINK_ReadMemEx(0x20000198, 0x0004 Bytes, ..., Flags = 0x02000000)
T46AC 008:816.915   CPU_ReadMem(64 bytes @ 0x20000180)
T46AC 008:818.125    -- Updating C cache (64 bytes @ 0x20000180)
T46AC 008:818.152    -- Read from C cache (4 bytes @ 0x20000198)
T46AC 008:818.172   Data:  00 F0 01 F8
T46AC 008:818.193 - 1.329ms returns 0x04
T46AC 008:818.230   JLINK_ReadMemEx(0x20000198, 0x0004 Bytes, ..., Flags = 0x02000000)
T46AC 008:818.255    -- Read from C cache (4 bytes @ 0x20000198)
T46AC 008:818.329   Data:  00 F0 01 F8
T46AC 008:818.350 - 0.127ms returns 0x04
T46AC 008:818.381   JLINK_ReadMemEx(0x20000198, 0x0004 Bytes, ..., Flags = 0x02000000)
T46AC 008:818.403    -- Read from C cache (4 bytes @ 0x20000198)
T46AC 008:818.424   Data:  00 F0 01 F8
T46AC 008:818.444 - 0.069ms returns 0x04
T46AC 008:820.478   JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 008:820.508    -- Read from C cache (2 bytes @ 0x200000FC)
T46AC 008:820.529   Data:  B3 42
T46AC 008:820.548 - 0.077ms returns 0x02
T46AC 008:820.572   JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 008:820.593    -- Read from C cache (2 bytes @ 0x200000FC)
T46AC 008:820.613   Data:  B3 42
T46AC 008:820.633 - 0.068ms returns 0x02
T46AC 008:820.654   JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 008:820.677    -- Read from C cache (2 bytes @ 0x200000FC)
T46AC 008:820.697   Data:  B3 42
T46AC 008:820.717 - 0.069ms returns 0x02
T46AC 008:822.380   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:822.408    -- Read from C cache (1 bytes @ 0x08000000)
T46AC 008:822.429   Data:  60
T46AC 008:822.448 - 0.075ms returns 0x01
T46AC 008:822.472   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:822.493    -- Read from C cache (1 bytes @ 0x08000000)
T46AC 008:822.513   Data:  60
T46AC 008:822.533 - 0.067ms returns 0x01
T46AC 008:822.554   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:822.575    -- Read from C cache (1 bytes @ 0x08000000)
T46AC 008:822.595   Data:  60
T46AC 008:822.614 - 0.067ms returns 0x01
T46AC 008:823.333   JLINK_ReadMemEx(0x2000027A, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 008:823.362    -- Read from C cache (2 bytes @ 0x2000027A)
T46AC 008:823.382   Data:  FF F7
T46AC 008:823.402 - 0.076ms returns 0x02
T46AC 008:823.424   JLINK_ReadMemEx(0x2000027A, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 008:823.446    -- Read from C cache (2 bytes @ 0x2000027A)
T46AC 008:823.466   Data:  FF F7
T46AC 008:823.486 - 0.068ms returns 0x02
T46AC 008:823.507   JLINK_ReadMemEx(0x2000027A, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 008:823.528    -- Read from C cache (2 bytes @ 0x2000027A)
T46AC 008:823.548   Data:  FF F7
T46AC 008:823.568 - 0.067ms returns 0x02
T46AC 008:825.945   JLINK_ReadMemEx(0x20000265, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:825.974    -- Read from C cache (1 bytes @ 0x20000265)
T46AC 008:825.994   Data:  60
T46AC 008:826.014 - 0.076ms returns 0x01
T46AC 008:826.036   JLINK_ReadMemEx(0x20000265, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:826.058    -- Read from C cache (1 bytes @ 0x20000265)
T46AC 008:826.077   Data:  60
T46AC 008:826.097 - 0.067ms returns 0x01
T46AC 008:826.118   JLINK_ReadMemEx(0x20000265, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 008:826.139    -- Read from C cache (1 bytes @ 0x20000265)
T46AC 008:826.159   Data:  60
T46AC 008:826.178 - 0.067ms returns 0x01
T6F74 008:914.123   JLINK_ReadMemEx(0x08001A80, 0x0002 Bytes, ..., Flags = 0x02000000)
T6F74 008:914.170   CPU_ReadMem(64 bytes @ 0x08001A80)
T6F74 008:915.418    -- Updating C cache (64 bytes @ 0x08001A80)
T6F74 008:915.449    -- Read from C cache (2 bytes @ 0x08001A80)
T6F74 008:915.471   Data:  FE E7
T6F74 008:915.492 - 1.415ms returns 0x02
T6F74 008:915.552   JLINK_SetBPEx(Addr = 0x08010B44, Type = 0xFFFFFFF2)
T6F74 008:915.576 - 0.031ms returns 0x00000001
T6F74 008:915.593 JLINK_Go()
T6F74 008:915.621   CPU_WriteMem(3100 bytes @ 0x20000000)
T6F74 008:915.680   CPU_WriteMem(4 bytes @ 0xE0002000)
T6F74 008:915.715   CPU_ReadMem(4 bytes @ 0xE0001000)
T6F74 008:951.816   CPU_WriteMem(4 bytes @ 0xE0002008)
T6F74 008:951.858   CPU_WriteMem(4 bytes @ 0xE000200C)
T6F74 008:951.879   CPU_WriteMem(4 bytes @ 0xE0002010)
T6F74 008:951.904   CPU_WriteMem(4 bytes @ 0xE0002014)
T6F74 008:951.928   CPU_WriteMem(4 bytes @ 0xE0002018)
T6F74 008:951.952   CPU_WriteMem(4 bytes @ 0xE000201C)
T6F74 008:955.126 - 39.550ms
T6F74 009:055.273 JLINK_IsHalted()
T6F74 009:056.043 - 0.787ms returns FALSE
T6F74 009:156.283 JLINK_IsHalted()
T6F74 009:188.042 - 31.779ms returns FALSE
T6F74 009:288.828 JLINK_IsHalted()
T6F74 009:289.457 - 0.649ms returns FALSE
T6F74 009:389.849 JLINK_IsHalted()
T6F74 009:390.454 - 0.618ms returns FALSE
T6F74 009:490.872 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...)
T6F74 009:490.920   CPU_ReadMem(4 bytes @ 0xE0001004)
T6F74 009:491.573   Data:  06 98 60 03
T6F74 009:491.605    - DWT_CYCCNT
T6F74 009:491.632 - 0.769ms returns 1
T46AC 009:491.701   JLINK_ReadMemEx(0x2000009C, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 009:491.745   CPU_ReadMem(2 bytes @ 0x2000009C)
T46AC 009:492.347   Data:  09 1D
T46AC 009:492.379 - 0.689ms returns 0x02
T46AC 009:492.415   JLINK_ReadMemEx(0x20000078, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 009:492.448   CPU_ReadMem(1 bytes @ 0x20000078)
T46AC 009:493.040   Data:  0D
T46AC 009:493.066 - 0.659ms returns 0x01
T46AC 009:501.480   JLINK_ReadMemEx(0x20000288, 0x0004 Bytes, ..., Flags = 0x02000000)
T46AC 009:501.522   CPU_ReadMem(4 bytes @ 0x20000288)
T46AC 009:502.138   Data:  83 B0 0C 00
T46AC 009:502.167 - 0.696ms returns 0x04
T46AC 009:502.208   JLINK_ReadMemEx(0x20001276, 0x0020 Bytes, ..., Flags = 0x02000000)
T46AC 009:502.237   CPU_ReadMem(32 bytes @ 0x20001276)
T46AC 009:503.494   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T46AC 009:503.535 - 1.337ms returns 0x20
T46AC 009:503.569   JLINK_ReadMemEx(0x20000288, 0x0004 Bytes, ..., Flags = 0x02000000)
T46AC 009:503.604   CPU_ReadMem(4 bytes @ 0x20000288)
T46AC 009:504.222   Data:  83 B0 0C 00
T46AC 009:504.247 - 0.687ms returns 0x04
T46AC 009:504.283   JLINK_ReadMemEx(0x20001AF0, 0x0020 Bytes, ..., Flags = 0x02000000)
T46AC 009:504.310   CPU_ReadMem(32 bytes @ 0x20001AF0)
T46AC 009:505.166   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T46AC 009:505.198 - 0.922ms returns 0x20
T46AC 009:505.223   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 009:505.250   CPU_ReadMem(4 bytes @ 0x40023844)
T46AC 009:505.831   CPU_ReadMem(1 bytes @ 0x08000000)
T46AC 009:506.400   Data:  60
T46AC 009:506.425 - 1.210ms returns 0x01
T46AC 009:506.453   JLINK_ReadMemEx(0x200000EC, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 009:506.480   CPU_ReadMem(1 bytes @ 0x200000EC)
T46AC 009:507.050   Data:  0B
T46AC 009:507.075 - 0.630ms returns 0x01
T46AC 009:507.100   JLINK_ReadMemEx(0x2000025F, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 009:507.125   CPU_ReadMem(1 bytes @ 0x2000025F)
T46AC 009:507.723   Data:  60
T46AC 009:507.748 - 0.656ms returns 0x01
T46AC 009:515.073   JLINK_ReadMemEx(0x200000E8, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 009:515.104   CPU_ReadMem(1 bytes @ 0x200000E8)
T46AC 009:515.668   Data:  1C
T46AC 009:515.690 - 0.624ms returns 0x01
T46AC 009:515.719   JLINK_ReadMemEx(0x200016D4, 0x0020 Bytes, ..., Flags = 0x02000000)
T46AC 009:515.742   CPU_ReadMem(32 bytes @ 0x200016D4)
T46AC 009:516.621   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T46AC 009:516.642 - 0.930ms returns 0x20
T46AC 009:516.662   JLINK_ReadMemEx(0x2000005C, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 009:516.683   CPU_ReadMem(2 bytes @ 0x2000005C)
T46AC 009:517.278   Data:  8E 59
T46AC 009:517.306 - 0.651ms returns 0x02
T46AC 009:517.331   JLINK_ReadMemEx(0x2000005C, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 009:517.356   CPU_ReadMem(2 bytes @ 0x2000005C)
T46AC 009:517.941   Data:  8E 59
T46AC 009:517.975 - 0.652ms returns 0x02
T46AC 009:518.005   JLINK_ReadMemEx(0x2000009A, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 009:518.035   CPU_ReadMem(2 bytes @ 0x2000009A)
T46AC 009:518.652   Data:  0E 68
T46AC 009:518.677 - 0.679ms returns 0x02
T46AC 009:518.700   JLINK_ReadMemEx(0x20000198, 0x0004 Bytes, ..., Flags = 0x02000000)
T46AC 009:518.723   CPU_ReadMem(4 bytes @ 0x20000198)
T46AC 009:519.345   Data:  00 F0 01 F8
T46AC 009:519.372 - 0.679ms returns 0x04
T46AC 009:519.414   JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 009:519.445   CPU_ReadMem(2 bytes @ 0x200000FC)
T46AC 009:520.042   Data:  B3 42
T46AC 009:520.068 - 0.660ms returns 0x02
T46AC 009:527.056   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 009:527.087   CPU_ReadMem(1 bytes @ 0x08000000)
T46AC 009:527.670   Data:  60
T46AC 009:527.692 - 0.644ms returns 0x01
T46AC 009:527.716   JLINK_ReadMemEx(0x2000027A, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 009:527.740   CPU_ReadMem(2 bytes @ 0x2000027A)
T46AC 009:528.345   Data:  FF F7
T46AC 009:528.367 - 0.658ms returns 0x02
T46AC 009:542.282   JLINK_ReadMemEx(0x20000265, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 009:542.324   CPU_ReadMem(1 bytes @ 0x20000265)
T46AC 009:542.939   Data:  60
T46AC 009:542.962 - 0.687ms returns 0x01
T6F74 009:543.015 JLINK_IsHalted()
T6F74 009:543.578 - 0.578ms returns FALSE
T6F74 009:643.907 JLINK_IsHalted()
T6F74 009:644.549 - 0.655ms returns FALSE
T6F74 009:744.930 JLINK_IsHalted()
T6F74 009:745.551 - 0.638ms returns FALSE
T6F74 009:845.954 JLINK_IsHalted()
T6F74 009:846.554 - 0.622ms returns FALSE
T6F74 009:947.499 JLINK_IsHalted()
T6F74 009:948.130 - 0.649ms returns FALSE
T6F74 010:048.526 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...)
T6F74 010:048.573   Data:  06 98 60 03
T6F74 010:048.602    - DWT_CYCCNT
T6F74 010:048.629 - 0.112ms returns 1
T46AC 010:048.717   JLINK_ReadMemEx(0x2000009C, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 010:048.764   CPU_ReadMem(2 bytes @ 0x2000009C)
T46AC 010:049.438   Data:  09 1D
T46AC 010:049.472 - 0.766ms returns 0x02
T46AC 010:049.514   JLINK_ReadMemEx(0x20000078, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 010:049.549   CPU_ReadMem(1 bytes @ 0x20000078)
T46AC 010:050.133   Data:  0D
T46AC 010:050.159 - 0.653ms returns 0x01
T46AC 010:058.588   JLINK_ReadMemEx(0x20000288, 0x0004 Bytes, ..., Flags = 0x02000000)
T46AC 010:058.632   CPU_ReadMem(4 bytes @ 0x20000288)
T46AC 010:059.236   Data:  83 B0 0C 00
T46AC 010:059.262 - 0.682ms returns 0x04
T46AC 010:059.302   JLINK_ReadMemEx(0x20001276, 0x0020 Bytes, ..., Flags = 0x02000000)
T46AC 010:059.329   CPU_ReadMem(32 bytes @ 0x20001276)
T46AC 010:060.589   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T46AC 010:060.614 - 1.321ms returns 0x20
T46AC 010:060.638   JLINK_ReadMemEx(0x20000288, 0x0004 Bytes, ..., Flags = 0x02000000)
T46AC 010:060.664   CPU_ReadMem(4 bytes @ 0x20000288)
T46AC 010:061.224   Data:  83 B0 0C 00
T46AC 010:061.253 - 0.624ms returns 0x04
T46AC 010:061.287   JLINK_ReadMemEx(0x20001AF0, 0x0020 Bytes, ..., Flags = 0x02000000)
T46AC 010:061.317   CPU_ReadMem(32 bytes @ 0x20001AF0)
T46AC 010:062.170   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T46AC 010:062.195 - 0.916ms returns 0x20
T46AC 010:062.218   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 010:062.244   CPU_ReadMem(1 bytes @ 0x08000000)
T46AC 010:062.834   Data:  60
T46AC 010:062.859 - 0.649ms returns 0x01
T46AC 010:062.884   JLINK_ReadMemEx(0x200000EC, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 010:062.910   CPU_ReadMem(1 bytes @ 0x200000EC)
T46AC 010:063.508   Data:  0B
T46AC 010:063.537 - 0.662ms returns 0x01
T46AC 010:063.590   JLINK_ReadMemEx(0x2000025F, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 010:063.621   CPU_ReadMem(1 bytes @ 0x2000025F)
T46AC 010:064.208   Data:  60
T46AC 010:064.233 - 0.651ms returns 0x01
T46AC 010:072.044   JLINK_ReadMemEx(0x200000E8, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 010:072.082   CPU_ReadMem(1 bytes @ 0x200000E8)
T46AC 010:072.688   Data:  1C
T46AC 010:072.713 - 0.677ms returns 0x01
T46AC 010:072.747   JLINK_ReadMemEx(0x200016D4, 0x0020 Bytes, ..., Flags = 0x02000000)
T46AC 010:072.774   CPU_ReadMem(32 bytes @ 0x200016D4)
T46AC 010:073.630   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T46AC 010:073.653 - 0.913ms returns 0x20
T46AC 010:073.675   JLINK_ReadMemEx(0x2000005C, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 010:073.698   CPU_ReadMem(2 bytes @ 0x2000005C)
T46AC 010:074.345   Data:  8E 59
T46AC 010:074.367 - 0.699ms returns 0x02
T46AC 010:074.390   JLINK_ReadMemEx(0x2000005C, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 010:074.412   CPU_ReadMem(2 bytes @ 0x2000005C)
T46AC 010:075.036   Data:  8E 59
T46AC 010:075.058 - 0.675ms returns 0x02
T46AC 010:075.079   JLINK_ReadMemEx(0x2000009A, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 010:075.101   CPU_ReadMem(2 bytes @ 0x2000009A)
T46AC 010:075.667   Data:  0E 68
T46AC 010:075.688 - 0.616ms returns 0x02
T46AC 010:075.708   JLINK_ReadMemEx(0x20000198, 0x0004 Bytes, ..., Flags = 0x02000000)
T46AC 010:075.730   CPU_ReadMem(4 bytes @ 0x20000198)
T46AC 010:076.344   Data:  00 F0 01 F8
T46AC 010:076.373 - 0.673ms returns 0x04
T46AC 010:076.417   JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 010:076.447   CPU_ReadMem(2 bytes @ 0x200000FC)
T46AC 010:077.040   Data:  B3 42
T46AC 010:077.069 - 0.661ms returns 0x02
T46AC 010:084.170   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 010:084.215   CPU_ReadMem(1 bytes @ 0x08000000)
T46AC 010:084.806   Data:  60
T46AC 010:084.832 - 0.669ms returns 0x01
T46AC 010:084.863   JLINK_ReadMemEx(0x2000027A, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 010:084.889   CPU_ReadMem(2 bytes @ 0x2000027A)
T46AC 010:085.444   Data:  FF F7
T46AC 010:085.465 - 0.609ms returns 0x02
T46AC 010:099.139   JLINK_ReadMemEx(0x20000265, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 010:099.180   CPU_ReadMem(1 bytes @ 0x20000265)
T46AC 010:099.784   Data:  60
T46AC 010:099.809 - 0.678ms returns 0x01
T6F74 010:099.974 JLINK_IsHalted()
T6F74 010:100.552 - 0.595ms returns FALSE
T6F74 010:201.556 JLINK_IsHalted()
T6F74 010:202.189 - 0.651ms returns FALSE
T6F74 010:303.114 JLINK_IsHalted()
T6F74 010:303.704 - 0.612ms returns FALSE
T6F74 010:404.134 JLINK_IsHalted()
T6F74 010:404.756 - 0.635ms returns FALSE
T6F74 010:505.060 JLINK_IsHalted()
T6F74 010:505.643 - 0.595ms returns FALSE
T6F74 010:605.953 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...)
T6F74 010:606.002   Data:  06 98 60 03
T6F74 010:606.030    - DWT_CYCCNT
T6F74 010:606.057 - 0.113ms returns 1
T46AC 010:606.133   JLINK_ReadMemEx(0x2000009C, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 010:606.180   CPU_ReadMem(2 bytes @ 0x2000009C)
T46AC 010:606.825   Data:  09 1D
T46AC 010:606.855 - 0.732ms returns 0x02
T46AC 010:606.890   JLINK_ReadMemEx(0x20000078, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 010:606.921   CPU_ReadMem(1 bytes @ 0x20000078)
T46AC 010:607.509   Data:  0D
T46AC 010:607.534 - 0.652ms returns 0x01
T46AC 010:616.446   JLINK_ReadMemEx(0x20000288, 0x0004 Bytes, ..., Flags = 0x02000000)
T46AC 010:616.493   CPU_ReadMem(4 bytes @ 0x20000288)
T46AC 010:617.115   Data:  83 B0 0C 00
T46AC 010:617.143 - 0.706ms returns 0x04
T46AC 010:617.189   JLINK_ReadMemEx(0x20001276, 0x0020 Bytes, ..., Flags = 0x02000000)
T46AC 010:617.217   CPU_ReadMem(32 bytes @ 0x20001276)
T46AC 010:618.455   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T46AC 010:618.481 - 1.301ms returns 0x20
T46AC 010:618.505   JLINK_ReadMemEx(0x20000288, 0x0004 Bytes, ..., Flags = 0x02000000)
T46AC 010:618.532   CPU_ReadMem(4 bytes @ 0x20000288)
T46AC 010:619.102   Data:  83 B0 0C 00
T46AC 010:619.128 - 0.630ms returns 0x04
T46AC 010:619.160   JLINK_ReadMemEx(0x20001AF0, 0x0020 Bytes, ..., Flags = 0x02000000)
T46AC 010:619.186   CPU_ReadMem(32 bytes @ 0x20001AF0)
T46AC 010:620.061   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T46AC 010:620.087 - 0.935ms returns 0x20
T46AC 010:620.110   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 010:620.136   CPU_ReadMem(1 bytes @ 0x08000000)
T46AC 010:620.706   Data:  60
T46AC 010:620.731 - 0.629ms returns 0x01
T46AC 010:620.757   JLINK_ReadMemEx(0x200000EC, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 010:620.783   CPU_ReadMem(1 bytes @ 0x200000EC)
T46AC 010:621.421   Data:  0B
T46AC 010:621.446 - 0.697ms returns 0x01
T46AC 010:621.471   JLINK_ReadMemEx(0x2000025F, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 010:621.503   CPU_ReadMem(1 bytes @ 0x2000025F)
T46AC 010:622.076   Data:  60
T46AC 010:622.102 - 0.639ms returns 0x01
T46AC 010:630.393   JLINK_ReadMemEx(0x200000E8, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 010:630.432   CPU_ReadMem(1 bytes @ 0x200000E8)
T46AC 010:631.041   Data:  1C
T46AC 010:631.066 - 0.680ms returns 0x01
T46AC 010:631.099   JLINK_ReadMemEx(0x200016D4, 0x0020 Bytes, ..., Flags = 0x02000000)
T46AC 010:631.122   CPU_ReadMem(32 bytes @ 0x200016D4)
T46AC 010:631.984   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T46AC 010:632.010 - 0.918ms returns 0x20
T46AC 010:632.032   JLINK_ReadMemEx(0x2000005C, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 010:632.057   CPU_ReadMem(2 bytes @ 0x2000005C)
T46AC 010:632.652   Data:  8E 59
T46AC 010:632.678 - 0.654ms returns 0x02
T46AC 010:632.705   JLINK_ReadMemEx(0x2000005C, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 010:632.732   CPU_ReadMem(2 bytes @ 0x2000005C)
T46AC 010:633.342   Data:  8E 59
T46AC 010:633.363 - 0.665ms returns 0x02
T46AC 010:633.384   JLINK_ReadMemEx(0x2000009A, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 010:633.406   CPU_ReadMem(2 bytes @ 0x2000009A)
T46AC 010:633.967   Data:  0E 68
T46AC 010:633.988 - 0.611ms returns 0x02
T46AC 010:634.009   JLINK_ReadMemEx(0x20000198, 0x0004 Bytes, ..., Flags = 0x02000000)
T46AC 010:634.031   CPU_ReadMem(4 bytes @ 0x20000198)
T46AC 010:634.584   Data:  00 F0 01 F8
T46AC 010:634.604 - 0.602ms returns 0x04
T46AC 010:634.640   JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 010:634.662   CPU_ReadMem(2 bytes @ 0x200000FC)
T46AC 010:635.252   Data:  B3 42
T46AC 010:635.274 - 0.640ms returns 0x02
T46AC 010:642.021   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 010:642.051   CPU_ReadMem(1 bytes @ 0x08000000)
T46AC 010:642.668   Data:  60
T46AC 010:642.689 - 0.676ms returns 0x01
T46AC 010:642.712   JLINK_ReadMemEx(0x2000027A, 0x0002 Bytes, ..., Flags = 0x02000000)
T46AC 010:642.735   CPU_ReadMem(2 bytes @ 0x2000027A)
T46AC 010:643.345   Data:  FF F7
T46AC 010:643.380 - 0.676ms returns 0x02
T46AC 010:657.615   JLINK_ReadMemEx(0x20000265, 0x0001 Bytes, ..., Flags = 0x02000000)
T46AC 010:657.661   CPU_ReadMem(1 bytes @ 0x20000265)
T46AC 010:658.275   Data:  60
T46AC 010:658.311 - 0.705ms returns 0x01
T6F74 010:658.398 JLINK_IsHalted()
T6F74 010:658.961 - 0.579ms returns FALSE
T6F74 010:759.991 JLINK_IsHalted()
T6F74 010:760.592 - 0.620ms returns FALSE
T6F74 010:861.530 JLINK_IsHalted()
T6F74 010:862.129 - 0.614ms returns FALSE
T6F74 010:962.550 JLINK_Halt()
T6F74 010:966.069 - 3.540ms returns 0x00
T6F74 010:966.107 JLINK_IsHalted()
T6F74 010:966.128 - 0.030ms returns TRUE
T6F74 010:966.150 JLINK_IsHalted()
T6F74 010:966.170 - 0.029ms returns TRUE
T6F74 010:966.191 JLINK_IsHalted()
T6F74 010:966.211 - 0.029ms returns TRUE
T6F74 010:966.266 JLINK_ReadReg(R15 (PC))
T6F74 010:966.296 - 0.039ms returns 0x08001A80
T6F74 010:966.315 JLINK_ReadReg(XPSR)
T6F74 010:966.332 - 0.025ms returns 0x01000003
T6F74 010:966.353 JLINK_ClrBPEx(BPHandle = 0x00000001)
T6F74 010:966.370 - 0.025ms returns 0x00
T6F74 010:966.390 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...)
T6F74 010:966.412   CPU_ReadMem(4 bytes @ 0xE000ED30)
T6F74 010:967.042   Data:  01 00 00 00
T6F74 010:967.068 - 0.686ms returns 1
T6F74 010:967.087 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...)
T6F74 010:967.106   CPU_ReadMem(4 bytes @ 0xE0001028)
T6F74 010:967.671   Data:  00 00 00 00
T6F74 010:967.698    - DWT_FUNC[0]
T6F74 010:967.721 - 0.642ms returns 1
T6F74 010:967.739 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...)
T6F74 010:967.757   CPU_ReadMem(4 bytes @ 0xE0001038)
T6F74 010:968.347   Data:  00 02 00 00
T6F74 010:968.372    - DWT_FUNC[1]
T6F74 010:968.396 - 0.664ms returns 1
T6F74 010:968.413 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...)
T6F74 010:968.432   CPU_ReadMem(4 bytes @ 0xE0001048)
T6F74 010:969.040   Data:  00 00 00 00
T6F74 010:969.065    - DWT_FUNC[2]
T6F74 010:969.095 - 0.689ms returns 1
T6F74 010:969.113 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...)
T6F74 010:969.131   CPU_ReadMem(4 bytes @ 0xE0001058)
T6F74 010:969.700   Data:  00 00 00 00
T6F74 010:969.726    - DWT_FUNC[3]
T6F74 010:969.750 - 0.645ms returns 1
T46AC 011:614.446 JLINK_Close()
T46AC 011:615.107   CPU_WriteMem(4 bytes @ 0xE0002008)
T46AC 011:615.715   CPU_ReadMem(4 bytes @ 0xE0001000)
T46AC 011:618.240 - 3.809ms
T46AC 011:618.264   
T46AC 011:618.281   Closed