yincheng.zhong
2023-08-09 adec93c184bbeb692dcd3e74c1e379a9aa5d9eb9
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
T7788 000:032.154   SEGGER J-Link V6.70e Log File
T7788 000:032.270   DLL Compiled: Apr 17 2020 17:55:05
T7788 000:032.284   Logging started @ 2023-08-09 02:36
T7788 000:032.298 JLINK_SetWarnOutHandler(...)
T7788 000:032.312 - 0.020ms
T7788 000:032.327 JLINK_OpenEx(...)
T7788 000:033.564   Firmware: J-Link ARM-OB STM32 compiled Aug 22 2012 19:52:04
T7788 000:036.141   Hardware: V7.00
T7788 000:036.167   S/N: 20090928
T7788 000:036.189   OEM: SEGGER
T7788 000:036.211   Feature(s): RDI,FlashDL,FlashBP,JFlash,GDB
T7788 000:037.465   TELNET listener socket opened on port 19021
T7788 000:037.534   WEBSRV Starting webserver
T7788 000:037.658   WEBSRV Webserver running on local port 19080
T7788 000:037.678 - 5.357ms returns "O.K."
T7788 000:037.699 JLINK_GetEmuCaps()
T7788 000:037.712 - 0.018ms returns 0x88EA5833
T7788 000:037.726 JLINK_TIF_GetAvailable(...)
T7788 000:038.020 - 0.301ms
T7788 000:038.036 JLINK_SetErrorOutHandler(...)
T7788 000:038.048 - 0.018ms
T7788 000:038.071 JLINK_ExecCommand("ProjectFile = "E:\GIT\XRange_Tag - ¸±±¾\MDK-ARM\JLinkSettings.ini"", ...). 
T7788 000:044.308 - 6.261ms returns 0x00
T7788 000:044.365 JLINK_ExecCommand("Device = STM32L051C8Tx", ...). 
T7788 000:044.564   Device "STM32L051C8" selected.
T7788 000:045.081 - 0.708ms returns 0x00
T7788 000:045.103 JLINK_ExecCommand("DisableConnectionTimeout", ...). 
T7788 000:045.120 - 0.008ms returns 0x01
T7788 000:045.135 JLINK_GetHardwareVersion()
T7788 000:045.148 - 0.019ms returns 0x11170
T7788 000:045.161 JLINK_GetDLLVersion()  returns 67005
T7788 000:045.179 JLINK_GetFirmwareString(...)
T7788 000:045.191 - 0.018ms
T7788 000:045.223 JLINK_GetDLLVersion()  returns 67005
T7788 000:045.237 JLINK_GetCompileDateTime()
T7788 000:045.249 - 0.018ms
T7788 000:045.267 JLINK_GetFirmwareString(...)
T7788 000:045.280 - 0.018ms
T7788 000:045.297 JLINK_GetHardwareVersion()
T7788 000:045.310 - 0.018ms returns 0x11170
T7788 000:045.335 JLINK_TIF_Select(JLINKARM_TIF_SWD)
T7788 000:046.602 - 1.278ms returns 0x00
T7788 000:046.629 JLINK_SetSpeed(5000)
T7788 000:047.101 - 0.480ms
T7788 000:047.118 JLINK_GetId()
T7788 000:048.704   Found SW-DP with ID 0x0BC11477
T7788 000:081.709   Found SW-DP with ID 0x0BC11477
T7788 000:086.528   Old FW that does not support reading DPIDR via DAP jobs
T7788 000:092.800   Unknown DP version. Assuming DPv0
T7788 000:092.857   Scanning AP map to find all available APs
T7788 000:097.052   AP[1]: Stopped AP scan as end of AP map has been reached
T7788 000:097.092   AP[0]: AHB-AP (IDR: 0x04770031)
T7788 000:097.119   Iterating through AP map to find AHB-AP to use
T7788 000:103.957   AP[0]: Core found
T7788 000:103.991   AP[0]: AHB-AP ROM base: 0xF0000000
T7788 000:107.382   CPUID register: 0x410CC601. Implementer code: 0x41 (ARM)
T7788 000:107.423   Found Cortex-M0 r0p1, Little endian.
T7788 000:208.944    -- Max. mem block: 0x00002C18
T7788 000:208.996   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T7788 000:210.185   CPU_WriteMem(4 bytes @ 0xE000EDF0)
T7788 000:210.814   CPU_ReadMem(4 bytes @ 0xE0002000)
T7788 000:211.445   FPUnit: 4 code (BP) slots and 0 literal slots
T7788 000:211.476   CPU_ReadMem(4 bytes @ 0xE000EDFC)
T7788 000:212.076   CPU_WriteMem(4 bytes @ 0xE000EDFC)
T7788 000:212.665   CPU_ReadMem(4 bytes @ 0xE0001000)
T7788 000:213.260   CPU_WriteMem(4 bytes @ 0xE0001000)
T7788 000:213.962   CoreSight components:
T7788 000:213.993   ROMTbl[0] @ F0000000
T7788 000:214.016   CPU_ReadMem(64 bytes @ 0xF0000000)
T7788 000:215.187   CPU_ReadMem(32 bytes @ 0xE00FFFE0)
T7788 000:216.061   ROMTbl[0][0]: E00FF000, CID: B105100D, PID: 000BB4C0 ROM Table
T7788 000:216.089   ROMTbl[1] @ E00FF000
T7788 000:216.110   CPU_ReadMem(64 bytes @ 0xE00FF000)
T7788 000:217.285   CPU_ReadMem(32 bytes @ 0xE000EFE0)
T7788 000:218.164   ROMTbl[1][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS
T7788 000:218.195   CPU_ReadMem(32 bytes @ 0xE0001FE0)
T7788 000:219.065   ROMTbl[1][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT
T7788 000:219.089   CPU_ReadMem(32 bytes @ 0xE0002FE0)
T7788 000:219.976   ROMTbl[1][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB
T7788 000:220.797 - 173.694ms   returns 0x0BC11477
T7788 000:220.829 JLINK_GetDLLVersion()  returns 67005
T7788 000:220.850 JLINK_CORE_GetFound()
T7788 000:220.868 - 0.026ms returns 0x60000FF
T7788 000:220.888 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX)
T7788 000:220.909   Value=0xF0000000
T7788 000:220.935 - 0.055ms returns 0x00
T7788 000:220.989 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX)
T7788 000:221.009   Value=0xF0000000
T7788 000:221.035 - 0.054ms returns 0x00
T7788 000:221.054 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX)
T7788 000:221.071   Value=0x00000000
T7788 000:221.096 - 0.051ms returns 0x00
T7788 000:221.119   JLINK_ReadMemEx(0xE0041FF0, 0x0010 Bytes, ..., Flags = 0x02000004)
T7788 000:221.157   CPU_ReadMem(16 bytes @ 0xE0041FF0)
T7788 000:221.898   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
T7788 000:221.927 - 0.817ms returns 0x10
T7788 000:221.945 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX)
T7788 000:221.960   Value=0x00000000
T7788 000:221.980 - 0.043ms returns 0x00
T7788 000:221.996 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX)
T7788 000:222.010   Value=0x00000000
T7788 000:222.031 - 0.042ms returns 0x00
T7788 000:222.047   JLINK_ReadMemEx(0xE0040FF0, 0x0010 Bytes, ..., Flags = 0x02000004)
T7788 000:222.072   CPU_ReadMem(16 bytes @ 0xE0040FF0)
T7788 000:222.792   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
T7788 000:222.815 - 0.776ms returns 0x10
T7788 000:222.832 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX)
T7788 000:222.846   Value=0xE0000000
T7788 000:222.867 - 0.042ms returns 0x00
T7788 000:222.883 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX)
T7788 000:222.897   Value=0xE0001000
T7788 000:222.917 - 0.041ms returns 0x00
T7788 000:222.932 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX)
T7788 000:222.947   Value=0xE0002000
T7788 000:222.967 - 0.041ms returns 0x00
T7788 000:222.982 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX)
T7788 000:222.996   Value=0xE000E000
T7788 000:223.017 - 0.042ms returns 0x00
T7788 000:223.032 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX)
T7788 000:223.046   Value=0xE000EDF0
T7788 000:223.067 - 0.042ms returns 0x00
T7788 000:223.082 JLINK_GetDebugInfo(0x01 = Unknown)
T7788 000:223.099   Value=0x00000000
T7788 000:223.119 - 0.044ms returns 0x00
T7788 000:223.136 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...)
T7788 000:223.153   CPU_ReadMem(4 bytes @ 0xE000ED00)
T7788 000:223.718   Data:  01 C6 0C 41
T7788 000:223.749    - CPUID
T7788 000:223.770 - 0.641ms returns 1
T7788 000:223.788 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX)
T7788 000:223.803   Value=0x00000000
T7788 000:223.823 - 0.043ms returns 0x00
T7788 000:223.841 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)
T7788 000:223.855 - 0.021ms returns JLINKARM_CM3_RESET_TYPE_NORMAL
T7788 000:223.870 JLINK_Reset()
T7788 000:223.893   CPU is running
T7788 000:223.915   CPU_WriteMem(4 bytes @ 0xE000EDF0)
T7788 000:224.514   CPU is running
T7788 000:224.542   CPU_WriteMem(4 bytes @ 0xE000EDFC)
T7788 000:225.180   Reset: Halt core after reset via DEMCR.VC_CORERESET.
T7788 000:225.886   Reset: Reset device via AIRCR.SYSRESETREQ.
T7788 000:225.910   CPU is running
T7788 000:225.932   CPU_WriteMem(4 bytes @ 0xE000ED0C)
T7788 000:279.051   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T7788 000:279.634   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T7788 000:280.257   CPU is running
T7788 000:280.285   CPU_WriteMem(4 bytes @ 0xE000EDF0)
T7788 000:280.945   CPU is running
T7788 000:280.973   CPU_WriteMem(4 bytes @ 0xE000EDFC)
T7788 000:287.311   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T7788 000:291.341   CPU_WriteMem(4 bytes @ 0xE0002000)
T7788 000:291.980   CPU_ReadMem(4 bytes @ 0xE000EDFC)
T7788 000:292.567   CPU_ReadMem(4 bytes @ 0xE0001000)
T7788 000:293.132   CPU_WriteMem(4 bytes @ 0xE0001000)
T7788 000:293.723 - 69.868ms
T7788 000:293.760 JLINK_ReadReg(R15 (PC))
T7788 000:293.781 - 0.030ms returns 0x080000D4
T7788 000:293.800 JLINK_ReadReg(XPSR)
T7788 000:293.816 - 0.022ms returns 0xF1000000
T7788 000:293.832 JLINK_Halt()
T7788 000:293.847 - 0.021ms returns 0x00
T7788 000:293.864 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...)
T7788 000:293.882   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T7788 000:294.459   Data:  03 00 03 01
T7788 000:294.487    - DHCSR
T7788 000:294.508 - 0.652ms returns 1
T7788 000:294.527 JLINK_WriteU32(0xE000EDF0, 0xA05F0003)
T7788 000:294.543    - DHCSR
T7788 000:294.574   CPU_WriteMem(4 bytes @ 0xE000EDF0)
T7788 000:295.281 - 0.764ms returns 0
T7788 000:295.305 JLINK_WriteU32(0xE000EDFC, 0x01000000)
T7788 000:295.331    - DEMCR
T7788 000:295.361   CPU_WriteMem(4 bytes @ 0xE000EDFC)
T7788 000:295.953 - 0.657ms returns 0
T7788 000:296.004 JLINK_GetHWStatus(...)
T7788 000:296.342 - 0.346ms returns 0x00
T7788 000:296.375 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)
T7788 000:296.390 - 0.022ms returns 0x04
T7788 000:296.405 JLINK_GetNumBPUnits(Type = 0xF0)
T7788 000:296.419 - 0.021ms returns 0x2000
T7788 000:296.434 JLINK_GetNumWPUnits()
T7788 000:296.448 - 0.021ms returns 0x02
T7788 000:296.472 JLINK_GetSpeed()
T7788 000:296.486 - 0.021ms returns 0xFA0
T7788 000:296.506 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...)
T7788 000:296.523   CPU_ReadMem(4 bytes @ 0xE000E004)
T7788 000:297.109   Data:  00 00 00 00
T7788 000:297.131 - 0.632ms returns 1
T7788 000:297.149 JLINK_ReadReg(R15 (PC))
T7788 000:297.165 - 0.023ms returns 0x080000D4
T7788 000:297.181 JLINK_ReadReg(XPSR)
T7788 000:297.195 - 0.021ms returns 0xF1000000
T7788 000:372.908 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)
T7788 000:372.948 - 0.047ms returns JLINKARM_CM3_RESET_TYPE_NORMAL
T7788 000:372.964 JLINK_Reset()
T7788 000:372.990   CPU_WriteMem(4 bytes @ 0xE000EDF0)
T7788 000:373.646   CPU_WriteMem(4 bytes @ 0xE000EDFC)
T7788 000:374.291   Reset: Halt core after reset via DEMCR.VC_CORERESET.
T7788 000:375.055   Reset: Reset device via AIRCR.SYSRESETREQ.
T7788 000:375.085   CPU_WriteMem(4 bytes @ 0xE000ED0C)
T7788 000:428.059   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T7788 000:428.670   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T7788 000:429.276   CPU_WriteMem(4 bytes @ 0xE000EDF0)
T7788 000:429.866   CPU_WriteMem(4 bytes @ 0xE000EDFC)
T7788 000:436.344   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T7788 000:440.400   CPU_WriteMem(4 bytes @ 0xE0002000)
T7788 000:440.997   CPU_ReadMem(4 bytes @ 0xE000EDFC)
T7788 000:441.594   CPU_ReadMem(4 bytes @ 0xE0001000)
T7788 000:442.166   CPU_WriteMem(4 bytes @ 0xE0001000)
T7788 000:442.750 - 69.796ms
T7788 000:442.812 JLINK_ReadReg(R15 (PC))
T7788 000:442.836 - 0.032ms returns 0x080000D4
T7788 000:442.855 JLINK_ReadReg(XPSR)
T7788 000:442.872 - 0.025ms returns 0xF1000000
T7788 000:442.960   JLINK_ReadMemEx(0x080000D4, 0x003C Bytes, ..., Flags = 0x02000000)
T7788 000:442.992   CPU_ReadMem(128 bytes @ 0x080000C0)
T7788 000:444.864    -- Updating C cache (128 bytes @ 0x080000C0)
T7788 000:444.889    -- Read from C cache (60 bytes @ 0x080000D4)
T7788 000:444.911   Data:  04 48 80 47 04 48 00 47 FE E7 FE E7 FE E7 FE E7 ...
T7788 000:444.932 - 1.979ms returns 0x3C
T7788 000:444.949   JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 000:444.971    -- Read from C cache (2 bytes @ 0x080000D4)
T7788 000:444.992   Data:  04 48
T7788 000:445.014 - 0.072ms returns 0x02
T7788 000:445.083   JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 000:445.109    -- Read from C cache (2 bytes @ 0x080000D6)
T7788 000:445.133   Data:  80 47
T7788 000:445.157 - 0.082ms returns 0x02
T7788 000:445.194   JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 000:445.219    -- Read from C cache (2 bytes @ 0x080000D6)
T7788 000:445.242   Data:  80 47
T7788 000:445.266 - 0.080ms returns 0x02
T7788 000:445.284   JLINK_ReadMemEx(0x080000D8, 0x003C Bytes, ..., Flags = 0x02000000)
T7788 000:445.308    -- Read from C cache (60 bytes @ 0x080000D8)
T7788 000:445.339   Data:  04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...
T7788 000:445.372 - 0.096ms returns 0x3C
T7788 000:445.391   JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 000:445.415    -- Read from C cache (2 bytes @ 0x080000D8)
T7788 000:445.439   Data:  04 48
T7788 000:445.463 - 0.080ms returns 0x02
T7788 000:445.490   JLINK_ReadMemEx(0x080000D8, 0x003C Bytes, ..., Flags = 0x02000000)
T7788 000:445.514    -- Read from C cache (60 bytes @ 0x080000D8)
T7788 000:445.539   Data:  04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...
T7788 000:445.562 - 0.081ms returns 0x3C
T7788 000:445.580   JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 000:445.604    -- Read from C cache (2 bytes @ 0x080000D8)
T7788 000:445.628   Data:  04 48
T7788 000:445.651 - 0.079ms returns 0x02
T7788 000:445.669   JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 000:445.693    -- Read from C cache (2 bytes @ 0x080000DA)
T7788 000:445.717   Data:  00 47
T7788 000:445.741 - 0.080ms returns 0x02
T7788 000:445.764   JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 000:445.788    -- Read from C cache (2 bytes @ 0x080000DA)
T7788 000:445.812   Data:  00 47
T7788 000:445.836 - 0.080ms returns 0x02
T7788 000:445.853   JLINK_ReadMemEx(0x080000DC, 0x003C Bytes, ..., Flags = 0x02000000)
T7788 000:445.877    -- Read from C cache (60 bytes @ 0x080000DC)
T7788 000:445.902   Data:  FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 A9 25 00 08 ...
T7788 000:445.925 - 0.080ms returns 0x3C
T7788 000:445.943   JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 000:445.967    -- Read from C cache (2 bytes @ 0x080000DC)
T7788 000:445.990   Data:  FE E7
T7788 000:446.014 - 0.079ms returns 0x02
T7788 000:446.035   JLINK_ReadMemEx(0x080000DC, 0x003C Bytes, ..., Flags = 0x02000000)
T7788 000:446.058    -- Read from C cache (60 bytes @ 0x080000DC)
T7788 000:446.079   Data:  FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 A9 25 00 08 ...
T7788 000:446.099 - 0.071ms returns 0x3C
T7788 000:446.114   JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 000:446.135    -- Read from C cache (2 bytes @ 0x080000DC)
T7788 000:446.156   Data:  FE E7
T7788 000:446.177 - 0.069ms returns 0x02
T7788 000:446.192   JLINK_ReadMemEx(0x080000DE, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 000:446.213    -- Read from C cache (2 bytes @ 0x080000DE)
T7788 000:446.234   Data:  FE E7
T7788 000:446.254 - 0.069ms returns 0x02
T7788 001:706.959 JLINK_ReadReg(R0)
T7788 001:707.574 - 0.627ms returns 0xFFFFFFFF
T7788 001:707.595 JLINK_ReadReg(R1)
T7788 001:707.608 - 0.019ms returns 0xFFFFFFFF
T7788 001:707.621 JLINK_ReadReg(R2)
T7788 001:707.634 - 0.018ms returns 0xFFFFFFFF
T7788 001:707.647 JLINK_ReadReg(R3)
T7788 001:707.659 - 0.018ms returns 0xFFFFFFFF
T7788 001:707.672 JLINK_ReadReg(R4)
T7788 001:707.684 - 0.018ms returns 0xFFFFFFFF
T7788 001:707.697 JLINK_ReadReg(R5)
T7788 001:707.710 - 0.018ms returns 0xFFFFFFFF
T7788 001:707.722 JLINK_ReadReg(R6)
T7788 001:707.735 - 0.018ms returns 0xFFFFFFFF
T7788 001:707.747 JLINK_ReadReg(R7)
T7788 001:707.760 - 0.018ms returns 0xFFFFFFFF
T7788 001:707.773 JLINK_ReadReg(R8)
T7788 001:707.785 - 0.018ms returns 0xFFFFFFFF
T7788 001:707.798 JLINK_ReadReg(R9)
T7788 001:707.810 - 0.018ms returns 0xFFFFFFFF
T7788 001:707.823 JLINK_ReadReg(R10)
T7788 001:707.835 - 0.018ms returns 0xFFFFFFFF
T7788 001:707.849 JLINK_ReadReg(R11)
T7788 001:707.861 - 0.018ms returns 0xFFFFFFFF
T7788 001:707.874 JLINK_ReadReg(R12)
T7788 001:707.886 - 0.018ms returns 0xFFFFFFFF
T7788 001:707.899 JLINK_ReadReg(R13 (SP))
T7788 001:707.911 - 0.018ms returns 0x20001140
T7788 001:707.924 JLINK_ReadReg(R14)
T7788 001:707.936 - 0.018ms returns 0xFFFFFFFF
T7788 001:707.949 JLINK_ReadReg(R15 (PC))
T7788 001:707.962 - 0.019ms returns 0x080000D4
T7788 001:707.975 JLINK_ReadReg(XPSR)
T7788 001:707.988 - 0.018ms returns 0xF1000000
T7788 001:708.000 JLINK_ReadReg(MSP)
T7788 001:708.013 - 0.073ms returns 0x20001140
T7788 001:708.085 JLINK_ReadReg(PSP)
T7788 001:708.098 - 0.019ms returns 0xFFFFFFFC
T7788 001:708.111 JLINK_ReadReg(CFBP)
T7788 001:708.123 - 0.018ms returns 0x00000000
T7788 001:708.140   JLINK_ReadMemEx(0x20000098, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 001:708.164   CPU_ReadMem(64 bytes @ 0x20000080)
T7788 001:709.333    -- Updating C cache (64 bytes @ 0x20000080)
T7788 001:709.366    -- Read from C cache (2 bytes @ 0x20000098)
T7788 001:709.389   Data:  00 00
T7788 001:709.412 - 1.279ms returns 0x02
T7788 001:717.088   JLINK_ReadMemEx(0x20000098, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 001:717.132    -- Read from C cache (2 bytes @ 0x20000098)
T7788 001:717.157   Data:  00 00
T7788 001:717.181 - 0.102ms returns 0x02
T7788 001:717.218   JLINK_ReadMemEx(0x20000098, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 001:717.245    -- Read from C cache (2 bytes @ 0x20000098)
T7788 001:717.269   Data:  00 00
T7788 001:717.294 - 0.085ms returns 0x02
T7788 001:722.992   JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 001:723.025   CPU_ReadMem(64 bytes @ 0x20000040)
T7788 001:724.234    -- Updating C cache (64 bytes @ 0x20000040)
T7788 001:724.266    -- Read from C cache (1 bytes @ 0x20000070)
T7788 001:724.288   Data:  F8
T7788 001:724.312 - 1.328ms returns 0x01
T7788 001:724.345   JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 001:724.371    -- Read from C cache (1 bytes @ 0x20000070)
T7788 001:724.394   Data:  F8
T7788 001:724.415 - 0.077ms returns 0x01
T7788 001:724.444   JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 001:724.468    -- Read from C cache (1 bytes @ 0x20000070)
T7788 001:724.489   Data:  F8
T7788 001:724.511 - 0.074ms returns 0x01
T7788 001:727.558   JLINK_ReadMemEx(0x20000074, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 001:727.586    -- Read from C cache (1 bytes @ 0x20000074)
T7788 001:727.604   Data:  F8
T7788 001:727.622 - 0.070ms returns 0x01
T7788 001:727.643   JLINK_ReadMemEx(0x20000074, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 001:727.663    -- Read from C cache (1 bytes @ 0x20000074)
T7788 001:727.681   Data:  F8
T7788 001:727.698 - 0.061ms returns 0x01
T7788 001:727.722   JLINK_ReadMemEx(0x20000074, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 001:727.741    -- Read from C cache (1 bytes @ 0x20000074)
T7788 001:727.758   Data:  F8
T7788 001:727.776 - 0.060ms returns 0x01
T7788 001:731.183   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 001:731.220   CPU_ReadMem(4 bytes @ 0x40023844)
T7788 001:731.958   CPU_ReadMem(64 bytes @ 0x08000000)
T7788 001:733.170    -- Updating C cache (64 bytes @ 0x08000000)
T7788 001:733.197    -- Read from C cache (1 bytes @ 0x08000000)
T7788 001:733.222   Data:  40
T7788 001:733.247 - 2.072ms returns 0x01
T7788 001:733.343   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 001:733.371    -- Read from C cache (1 bytes @ 0x08000000)
T7788 001:733.395   Data:  40
T7788 001:733.419 - 0.084ms returns 0x01
T7788 001:733.450   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 001:733.476    -- Read from C cache (1 bytes @ 0x08000000)
T7788 001:733.500   Data:  40
T7788 001:733.524 - 0.082ms returns 0x01
T7788 001:737.221   JLINK_ReadMemEx(0x200000E4, 0x0004 Bytes, ..., Flags = 0x02000000)
T7788 001:737.250   CPU_ReadMem(64 bytes @ 0x200000C0)
T7788 001:738.409    -- Updating C cache (64 bytes @ 0x200000C0)
T7788 001:738.430    -- Read from C cache (4 bytes @ 0x200000E4)
T7788 001:738.448   Data:  00 00 00 00
T7788 001:738.466 - 1.251ms returns 0x04
T7788 001:738.491   JLINK_ReadMemEx(0x200000E4, 0x0004 Bytes, ..., Flags = 0x02000000)
T7788 001:738.519    -- Read from C cache (4 bytes @ 0x200000E4)
T7788 001:738.543   Data:  00 00 00 00
T7788 001:738.567 - 0.084ms returns 0x04
T7788 001:738.597   JLINK_ReadMemEx(0x200000E4, 0x0004 Bytes, ..., Flags = 0x02000000)
T7788 001:738.622    -- Read from C cache (4 bytes @ 0x200000E4)
T7788 001:738.652   Data:  00 00 00 00
T7788 001:738.676 - 0.088ms returns 0x04
T7788 001:743.206   JLINK_ReadMemEx(0x200014F0, 0x000C Bytes, ..., Flags = 0x02000000)
T7788 001:743.237   CPU_ReadMem(64 bytes @ 0x200014C0)
T7788 001:744.432    -- Updating C cache (64 bytes @ 0x200014C0)
T7788 001:744.457    -- Read from C cache (12 bytes @ 0x200014F0)
T7788 001:744.476   Data:  02 00 00 00 00 00 00 00 00 00 00 00
T7788 001:744.494 - 1.294ms returns 0x0C
T7788 001:748.654   JLINK_ReadMemEx(0x200000A0, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 001:748.688    -- Read from C cache (2 bytes @ 0x200000A0)
T7788 001:748.707   Data:  00 00
T7788 001:748.725 - 0.078ms returns 0x02
T7788 001:748.749   JLINK_ReadMemEx(0x200000A0, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 001:748.769    -- Read from C cache (2 bytes @ 0x200000A0)
T7788 001:748.787   Data:  00 00
T7788 001:748.805 - 0.062ms returns 0x02
T7788 001:748.829   JLINK_ReadMemEx(0x200000A0, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 001:748.849    -- Read from C cache (2 bytes @ 0x200000A0)
T7788 001:748.867   Data:  00 00
T7788 001:748.885 - 0.062ms returns 0x02
T7788 001:753.140   JLINK_ReadMemEx(0x2000015A, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 001:753.171   CPU_ReadMem(64 bytes @ 0x20000140)
T7788 001:754.354    -- Updating C cache (64 bytes @ 0x20000140)
T7788 001:754.386    -- Read from C cache (2 bytes @ 0x2000015A)
T7788 001:754.408   Data:  00 00
T7788 001:754.430 - 1.298ms returns 0x02
T7788 001:755.668   JLINK_ReadMemEx(0x2000015A, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 001:755.696    -- Read from C cache (2 bytes @ 0x2000015A)
T7788 001:755.714   Data:  00 00
T7788 001:755.732 - 0.069ms returns 0x02
T7788 001:755.755   JLINK_ReadMemEx(0x2000015A, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 001:755.774    -- Read from C cache (2 bytes @ 0x2000015A)
T7788 001:755.792   Data:  00 00
T7788 001:755.810 - 0.061ms returns 0x02
T7788 001:756.316   JLINK_ReadMemEx(0x2000015A, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 001:756.342    -- Read from C cache (2 bytes @ 0x2000015A)
T7788 001:756.360   Data:  00 00
T7788 001:756.378 - 0.068ms returns 0x02
T7788 001:756.398   JLINK_ReadMemEx(0x2000015A, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 001:756.417    -- Read from C cache (2 bytes @ 0x2000015A)
T7788 001:756.435   Data:  00 00
T7788 001:756.453 - 0.060ms returns 0x02
T7788 001:756.473   JLINK_ReadMemEx(0x2000015A, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 001:756.492    -- Read from C cache (2 bytes @ 0x2000015A)
T7788 001:756.509   Data:  00 00
T7788 001:756.527 - 0.059ms returns 0x02
T6AB4 001:783.307   JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000)
T6AB4 001:783.360    -- Read from C cache (2 bytes @ 0x080000D4)
T6AB4 001:783.383   Data:  04 48
T6AB4 001:783.406 - 0.107ms returns 0x02
T6AB4 001:783.427   JLINK_SetBPEx(Addr = 0x0800B408, Type = 0xFFFFFFF2)
T6AB4 001:783.453 - 0.034ms returns 0x00000001
T6AB4 001:783.472 JLINK_Go()
T6AB4 001:783.515   CPU_WriteMem(4 bytes @ 0xE0002000)
T6AB4 001:784.186   CPU_ReadMem(4 bytes @ 0xE0001000)
T6AB4 001:784.807   CPU_WriteMem(4 bytes @ 0xE0001000)
T6AB4 001:784.833   CPU_WriteMem(4 bytes @ 0xE0002008)
T6AB4 001:784.851   CPU_WriteMem(4 bytes @ 0xE000200C)
T6AB4 001:784.870   CPU_WriteMem(4 bytes @ 0xE0002010)
T6AB4 001:784.888   CPU_WriteMem(4 bytes @ 0xE0002014)
T6AB4 001:786.959   CPU_WriteMem(4 bytes @ 0xE0001004)
T6AB4 001:788.231 - 4.768ms
T6AB4 001:888.358 JLINK_IsHalted()
T6AB4 001:888.959 - 0.612ms returns FALSE
T6AB4 001:989.375 JLINK_IsHalted()
T6AB4 001:989.993 - 0.629ms returns FALSE
T6AB4 002:090.398 JLINK_IsHalted()
T6AB4 002:090.975 - 0.589ms returns FALSE
T6AB4 002:191.423 JLINK_IsHalted()
T6AB4 002:192.037 - 0.627ms returns FALSE
T7788 002:292.548   JLINK_ReadMemEx(0x20000098, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 002:292.607   CPU_ReadMem(2 bytes @ 0x20000098)
T7788 002:293.274   Data:  00 00
T7788 002:293.302 - 0.763ms returns 0x02
T7788 002:293.351   JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 002:293.387   CPU_ReadMem(1 bytes @ 0x20000070)
T7788 002:293.990   Data:  F7
T7788 002:294.014 - 0.670ms returns 0x01
T7788 002:296.990   JLINK_ReadMemEx(0x20000074, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 002:297.025   CPU_ReadMem(1 bytes @ 0x20000074)
T7788 002:297.595   Data:  FA
T7788 002:297.620 - 0.637ms returns 0x01
T7788 002:300.362   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 002:300.393   CPU_ReadMem(4 bytes @ 0x40023844)
T7788 002:301.066   CPU_ReadMem(1 bytes @ 0x08000000)
T7788 002:301.619   Data:  40
T7788 002:301.643 - 1.289ms returns 0x01
T7788 002:301.670   JLINK_ReadMemEx(0x200000E4, 0x0004 Bytes, ..., Flags = 0x02000000)
T7788 002:301.696   CPU_ReadMem(4 bytes @ 0x200000E4)
T7788 002:302.299   Data:  00 00 00 00
T7788 002:302.322 - 0.660ms returns 0x04
T7788 002:302.355   JLINK_ReadMemEx(0x200014F0, 0x000C Bytes, ..., Flags = 0x02000000)
T7788 002:302.379   CPU_ReadMem(12 bytes @ 0x200014F0)
T7788 002:303.031   Data:  02 00 00 00 00 00 00 00 00 00 00 00
T7788 002:303.054 - 0.706ms returns 0x0C
T7788 002:303.075   JLINK_ReadMemEx(0x200000A0, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 002:303.099   CPU_ReadMem(2 bytes @ 0x200000A0)
T7788 002:303.668   Data:  00 00
T7788 002:303.691 - 0.623ms returns 0x02
T6AB4 002:303.742 JLINK_IsHalted()
T6AB4 002:304.310 - 0.579ms returns FALSE
T6AB4 002:404.469 JLINK_IsHalted()
T6AB4 002:405.085 - 0.627ms returns FALSE
T6AB4 002:505.492 JLINK_IsHalted()
T6AB4 002:506.089 - 0.609ms returns FALSE
T6AB4 002:606.515 JLINK_IsHalted()
T6AB4 002:607.142 - 0.638ms returns FALSE
T6AB4 002:707.542 JLINK_IsHalted()
T6AB4 002:708.141 - 0.611ms returns FALSE
T7788 002:808.613   JLINK_ReadMemEx(0x20000098, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 002:808.669   CPU_ReadMem(2 bytes @ 0x20000098)
T7788 002:809.300   Data:  00 00
T7788 002:809.328 - 0.726ms returns 0x02
T7788 002:809.376   JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 002:809.406   CPU_ReadMem(1 bytes @ 0x20000070)
T7788 002:810.001   Data:  FB
T7788 002:810.024 - 0.656ms returns 0x01
T7788 002:815.701   JLINK_ReadMemEx(0x20000074, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 002:815.735   CPU_ReadMem(1 bytes @ 0x20000074)
T7788 002:816.310   Data:  02
T7788 002:816.334 - 0.640ms returns 0x01
T7788 002:821.643   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 002:821.676   CPU_ReadMem(1 bytes @ 0x08000000)
T7788 002:822.281   Data:  40
T7788 002:822.304 - 0.668ms returns 0x01
T7788 002:822.329   JLINK_ReadMemEx(0x200000E4, 0x0004 Bytes, ..., Flags = 0x02000000)
T7788 002:822.355   CPU_ReadMem(4 bytes @ 0x200000E4)
T7788 002:822.963   Data:  00 00 00 00
T7788 002:822.987 - 0.665ms returns 0x04
T7788 002:823.016   JLINK_ReadMemEx(0x200014F0, 0x000C Bytes, ..., Flags = 0x02000000)
T7788 002:823.040   CPU_ReadMem(12 bytes @ 0x200014F0)
T7788 002:823.688   Data:  02 00 00 00 00 00 00 00 00 00 00 00
T7788 002:823.711 - 0.702ms returns 0x0C
T7788 002:823.732   JLINK_ReadMemEx(0x200000A0, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 002:823.756   CPU_ReadMem(2 bytes @ 0x200000A0)
T7788 002:824.322   Data:  00 00
T7788 002:824.344 - 0.619ms returns 0x02
T6AB4 002:824.390 JLINK_IsHalted()
T6AB4 002:824.961 - 0.582ms returns FALSE
T6AB4 002:925.591 JLINK_IsHalted()
T6AB4 002:926.258 - 0.678ms returns FALSE
T6AB4 003:026.612 JLINK_IsHalted()
T6AB4 003:027.253 - 0.653ms returns FALSE
T6AB4 003:127.639 JLINK_IsHalted()
T6AB4 003:128.257 - 0.630ms returns FALSE
T6AB4 003:228.662 JLINK_IsHalted()
T6AB4 003:232.119 - 3.477ms returns TRUE
T6AB4 003:232.154 JLINK_Halt()
T6AB4 003:232.171 - 0.025ms returns 0x00
T6AB4 003:232.190 JLINK_IsHalted()
T6AB4 003:232.207 - 0.025ms returns TRUE
T6AB4 003:232.224 JLINK_IsHalted()
T6AB4 003:232.240 - 0.024ms returns TRUE
T6AB4 003:232.258 JLINK_IsHalted()
T6AB4 003:232.274 - 0.024ms returns TRUE
T6AB4 003:232.295 JLINK_ReadReg(R15 (PC))
T6AB4 003:232.314 - 0.027ms returns 0x0800B408
T6AB4 003:232.335 JLINK_ReadReg(XPSR)
T6AB4 003:232.355 - 0.028ms returns 0x61000000
T6AB4 003:232.376 JLINK_ClrBPEx(BPHandle = 0x00000001)
T6AB4 003:232.393 - 0.025ms returns 0x00
T6AB4 003:232.414 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...)
T6AB4 003:232.437   CPU_ReadMem(4 bytes @ 0xE000ED30)
T6AB4 003:233.049   Data:  03 00 00 00
T6AB4 003:233.076 - 0.670ms returns 1
T6AB4 003:233.095 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...)
T6AB4 003:233.115   CPU_ReadMem(4 bytes @ 0xE0001028)
T6AB4 003:233.708   Data:  00 00 00 00
T6AB4 003:233.738    - DWT_FUNC[0]
T6AB4 003:233.760 - 0.671ms returns 1
T6AB4 003:233.776 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...)
T6AB4 003:233.793   CPU_ReadMem(4 bytes @ 0xE0001038)
T6AB4 003:234.364   Data:  00 00 00 00
T6AB4 003:234.386    - DWT_FUNC[1]
T6AB4 003:234.407 - 0.637ms returns 1
T6AB4 003:234.447 JLINK_ReadReg(R0)
T6AB4 003:234.463 - 0.023ms returns 0x0800B409
T6AB4 003:234.479 JLINK_ReadReg(R1)
T6AB4 003:234.493 - 0.021ms returns 0x20001E10
T6AB4 003:234.508 JLINK_ReadReg(R2)
T6AB4 003:234.523 - 0.021ms returns 0x00000000
T6AB4 003:234.538 JLINK_ReadReg(R3)
T6AB4 003:234.552 - 0.021ms returns 0x0800A781
T6AB4 003:234.568 JLINK_ReadReg(R4)
T6AB4 003:234.582 - 0.021ms returns 0x0800B8DC
T6AB4 003:234.597 JLINK_ReadReg(R5)
T6AB4 003:234.612 - 0.021ms returns 0x00000001
T6AB4 003:234.627 JLINK_ReadReg(R6)
T6AB4 003:234.641 - 0.023ms returns 0x0800B8DC
T6AB4 003:234.662 JLINK_ReadReg(R7)
T6AB4 003:234.677 - 0.022ms returns 0xFFFFFFFF
T6AB4 003:234.692 JLINK_ReadReg(R8)
T6AB4 003:234.707 - 0.021ms returns 0xFFFFFFFF
T6AB4 003:234.722 JLINK_ReadReg(R9)
T6AB4 003:234.737 - 0.021ms returns 0xFFFFFFFF
T6AB4 003:234.752 JLINK_ReadReg(R10)
T6AB4 003:234.767 - 0.021ms returns 0xFFFFFFFF
T6AB4 003:234.782 JLINK_ReadReg(R11)
T6AB4 003:234.796 - 0.021ms returns 0xFFFFFFFF
T6AB4 003:234.811 JLINK_ReadReg(R12)
T6AB4 003:234.826 - 0.021ms returns 0xFFFFFFFF
T6AB4 003:234.841 JLINK_ReadReg(R13 (SP))
T6AB4 003:234.856 - 0.022ms returns 0x20001E10
T6AB4 003:234.871 JLINK_ReadReg(R14)
T6AB4 003:234.885 - 0.021ms returns 0x080059F9
T6AB4 003:234.901 JLINK_ReadReg(R15 (PC))
T6AB4 003:234.915 - 0.021ms returns 0x0800B408
T6AB4 003:234.930 JLINK_ReadReg(XPSR)
T6AB4 003:234.945 - 0.021ms returns 0x61000000
T6AB4 003:234.960 JLINK_ReadReg(MSP)
T6AB4 003:234.974 - 0.021ms returns 0x20001E10
T6AB4 003:234.989 JLINK_ReadReg(PSP)
T6AB4 003:235.004 - 0.021ms returns 0xFFFFFFFC
T6AB4 003:235.019 JLINK_ReadReg(CFBP)
T6AB4 003:235.033 - 0.021ms returns 0x00000000
T7788 003:236.564   JLINK_ReadMemEx(0x20000098, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 003:236.599   CPU_ReadMem(64 bytes @ 0x20000080)
T7788 003:237.802    -- Updating C cache (64 bytes @ 0x20000080)
T7788 003:237.826    -- Read from C cache (2 bytes @ 0x20000098)
T7788 003:237.848   Data:  00 00
T7788 003:237.869 - 1.313ms returns 0x02
T7788 003:237.902   JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 003:237.926   CPU_ReadMem(64 bytes @ 0x20000040)
T7788 003:239.088    -- Updating C cache (64 bytes @ 0x20000040)
T7788 003:239.111    -- Read from C cache (1 bytes @ 0x20000070)
T7788 003:239.133   Data:  01
T7788 003:239.154 - 1.259ms returns 0x01
T7788 003:244.915   JLINK_ReadMemEx(0x20000074, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 003:244.949    -- Read from C cache (1 bytes @ 0x20000074)
T7788 003:244.970   Data:  00
T7788 003:244.992 - 0.084ms returns 0x01
T7788 003:250.318   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 003:250.349   CPU_ReadMem(4 bytes @ 0x40023844)
T7788 003:251.031   CPU_ReadMem(64 bytes @ 0x08000000)
T7788 003:252.184    -- Updating C cache (64 bytes @ 0x08000000)
T7788 003:252.208    -- Read from C cache (1 bytes @ 0x08000000)
T7788 003:252.230   Data:  40
T7788 003:252.251 - 1.940ms returns 0x01
T7788 003:252.276   JLINK_ReadMemEx(0x200000E4, 0x0004 Bytes, ..., Flags = 0x02000000)
T7788 003:252.301   CPU_ReadMem(64 bytes @ 0x200000C0)
T7788 003:253.483    -- Updating C cache (64 bytes @ 0x200000C0)
T7788 003:253.567    -- Read from C cache (4 bytes @ 0x200000E4)
T7788 003:253.589   Data:  00 00 00 00
T7788 003:253.610 - 1.341ms returns 0x04
T7788 003:253.642   JLINK_ReadMemEx(0x200014F0, 0x000C Bytes, ..., Flags = 0x02000000)
T7788 003:253.673   CPU_ReadMem(64 bytes @ 0x200014C0)
T7788 003:254.876    -- Updating C cache (64 bytes @ 0x200014C0)
T7788 003:254.901    -- Read from C cache (12 bytes @ 0x200014F0)
T7788 003:254.921   Data:  00 00 00 00 00 00 00 00 00 00 00 00
T7788 003:254.941 - 1.306ms returns 0x0C
T7788 003:257.339   JLINK_ReadMemEx(0x200000A0, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 003:257.368    -- Read from C cache (2 bytes @ 0x200000A0)
T7788 003:257.388   Data:  00 00
T7788 003:257.407 - 0.075ms returns 0x02
T6AB4 003:730.558   JLINK_ReadMemEx(0x0800B408, 0x0002 Bytes, ..., Flags = 0x02000000)
T6AB4 003:730.620   CPU_ReadMem(64 bytes @ 0x0800B400)
T6AB4 003:731.882    -- Updating C cache (64 bytes @ 0x0800B400)
T6AB4 003:731.913    -- Read from C cache (2 bytes @ 0x0800B408)
T6AB4 003:731.935   Data:  FB F7
T6AB4 003:731.956 - 1.407ms returns 0x02
T6AB4 003:731.979 JLINK_Go()
T6AB4 003:732.526   CPU_ReadMem(4 bytes @ 0xE0001000)
T6AB4 003:733.106   CPU_WriteMem(4 bytes @ 0xE0001000)
T6AB4 003:733.132   CPU_WriteMem(4 bytes @ 0xE0002008)
T6AB4 003:734.860 - 2.892ms
T6AB4 003:835.803 JLINK_IsHalted()
T6AB4 003:837.623 - 1.833ms returns FALSE
T6AB4 003:937.828 JLINK_IsHalted()
T6AB4 003:938.790 - 0.974ms returns FALSE
T6AB4 004:038.850 JLINK_IsHalted()
T6AB4 004:039.973 - 1.134ms returns FALSE
T6AB4 004:140.874 JLINK_IsHalted()
T6AB4 004:144.476 - 3.614ms returns FALSE
T7788 004:244.937   JLINK_ReadMemEx(0x20000098, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 004:244.989   CPU_ReadMem(2 bytes @ 0x20000098)
T7788 004:245.621   Data:  00 00
T7788 004:245.649 - 0.721ms returns 0x02
T7788 004:245.692   JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 004:245.718   CPU_ReadMem(1 bytes @ 0x20000070)
T7788 004:248.988   Data:  01
T7788 004:249.016 - 3.333ms returns 0x01
T7788 004:252.188   JLINK_ReadMemEx(0x20000074, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 004:252.223   CPU_ReadMem(1 bytes @ 0x20000074)
T7788 004:255.733   Data:  00
T7788 004:255.761 - 3.581ms returns 0x01
T7788 004:258.430   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 004:258.461   CPU_ReadMem(4 bytes @ 0x40023844)
T7788 004:259.221   CPU_ReadMem(1 bytes @ 0x08000000)
T7788 004:262.482   Data:  40
T7788 004:262.516 - 4.095ms returns 0x01
T7788 004:262.549   JLINK_ReadMemEx(0x200000E4, 0x0004 Bytes, ..., Flags = 0x02000000)
T7788 004:262.580   CPU_ReadMem(4 bytes @ 0x200000E4)
T7788 004:265.849   Data:  00 00 00 00
T7788 004:265.875 - 3.336ms returns 0x04
T7788 004:265.916   JLINK_ReadMemEx(0x200014F0, 0x000C Bytes, ..., Flags = 0x02000000)
T7788 004:265.945   CPU_ReadMem(12 bytes @ 0x200014F0)
T7788 004:275.985   Data:  00 00 00 00 00 00 00 00 00 00 00 00
T7788 004:276.020 - 10.112ms returns 0x0C
T7788 004:276.072   JLINK_ReadMemEx(0x200000A0, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 004:276.106   CPU_ReadMem(2 bytes @ 0x200000A0)
T7788 004:279.326   Data:  00 00
T7788 004:279.355 - 3.292ms returns 0x02
T6AB4 004:279.483 JLINK_IsHalted()
T6AB4 004:282.690 - 3.218ms returns FALSE
T6AB4 004:382.929 JLINK_IsHalted()
T6AB4 004:383.826 - 0.908ms returns FALSE
T6AB4 004:483.951 JLINK_IsHalted()
T6AB4 004:484.982 - 1.044ms returns FALSE
T6AB4 004:585.973 JLINK_IsHalted()
T6AB4 004:589.513 - 3.556ms returns FALSE
T6AB4 004:690.001 JLINK_IsHalted()
T6AB4 004:690.651 - 0.660ms returns FALSE
T7788 004:791.268   JLINK_ReadMemEx(0x20000098, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 004:791.325   CPU_ReadMem(2 bytes @ 0x20000098)
T7788 004:791.979   Data:  00 00
T7788 004:792.009 - 0.754ms returns 0x02
T7788 004:792.060   JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 004:792.090   CPU_ReadMem(1 bytes @ 0x20000070)
T7788 004:792.656   Data:  01
T7788 004:792.685 - 0.633ms returns 0x01
T7788 004:792.710   JLINK_ReadMemEx(0x20000074, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 004:792.734   CPU_ReadMem(1 bytes @ 0x20000074)
T7788 004:793.322   Data:  00
T7788 004:793.345 - 0.642ms returns 0x01
T7788 004:793.368   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 004:793.392   CPU_ReadMem(1 bytes @ 0x08000000)
T7788 004:793.989   Data:  40
T7788 004:794.015 - 0.656ms returns 0x01
T7788 004:794.040   JLINK_ReadMemEx(0x200000E4, 0x0004 Bytes, ..., Flags = 0x02000000)
T7788 004:794.065   CPU_ReadMem(4 bytes @ 0x200000E4)
T7788 004:794.657   Data:  00 00 00 00
T7788 004:794.680 - 0.647ms returns 0x04
T7788 004:794.708   JLINK_ReadMemEx(0x200014F0, 0x000C Bytes, ..., Flags = 0x02000000)
T7788 004:794.732   CPU_ReadMem(12 bytes @ 0x200014F0)
T7788 004:795.403   Data:  00 00 00 00 00 00 00 00 00 00 00 00
T7788 004:795.427 - 0.726ms returns 0x0C
T7788 004:795.450   JLINK_ReadMemEx(0x200000A0, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 004:795.474   CPU_ReadMem(2 bytes @ 0x200000A0)
T7788 004:796.084   Data:  00 00
T7788 004:796.107 - 0.664ms returns 0x02
T6AB4 004:796.152 JLINK_IsHalted()
T6AB4 004:796.725 - 0.583ms returns FALSE
T6AB4 004:897.080 JLINK_IsHalted()
T6AB4 004:897.687 - 0.618ms returns FALSE
T6AB4 004:998.108 JLINK_IsHalted()
T6AB4 004:998.737 - 0.639ms returns FALSE
T6AB4 005:099.125 JLINK_IsHalted()
T6AB4 005:099.739 - 0.625ms returns FALSE
T6AB4 005:200.152 JLINK_IsHalted()
T6AB4 005:200.779 - 0.639ms returns FALSE
T6AB4 005:301.198 JLINK_IsHalted()
T6AB4 005:301.832 - 0.645ms returns FALSE
T7788 005:402.617   JLINK_ReadMemEx(0x20000098, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 005:402.672   CPU_ReadMem(2 bytes @ 0x20000098)
T7788 005:403.293   Data:  00 00
T7788 005:403.324 - 0.716ms returns 0x02
T7788 005:403.367   JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 005:403.394   CPU_ReadMem(1 bytes @ 0x20000070)
T7788 005:403.985   Data:  79
T7788 005:404.014 - 0.655ms returns 0x01
T7788 005:407.058   JLINK_ReadMemEx(0x20000074, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 005:407.092   CPU_ReadMem(1 bytes @ 0x20000074)
T7788 005:407.685   Data:  7D
T7788 005:407.709 - 0.658ms returns 0x01
T7788 005:410.492   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 005:410.524   CPU_ReadMem(1 bytes @ 0x08000000)
T7788 005:411.104   Data:  40
T7788 005:411.127 - 0.643ms returns 0x01
T7788 005:411.153   JLINK_ReadMemEx(0x200000E4, 0x0004 Bytes, ..., Flags = 0x02000000)
T7788 005:411.178   CPU_ReadMem(4 bytes @ 0x200000E4)
T7788 005:411.780   Data:  00 00 00 00
T7788 005:411.803 - 0.658ms returns 0x04
T7788 005:411.834   JLINK_ReadMemEx(0x200014F0, 0x000C Bytes, ..., Flags = 0x02000000)
T7788 005:411.859   CPU_ReadMem(12 bytes @ 0x200014F0)
T7788 005:412.500   Data:  00 00 00 00 00 00 00 00 00 00 00 00
T7788 005:412.523 - 0.696ms returns 0x0C
T7788 005:412.545   JLINK_ReadMemEx(0x200000A0, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 005:412.568   CPU_ReadMem(2 bytes @ 0x200000A0)
T7788 005:413.138   Data:  00 00
T7788 005:413.160 - 0.623ms returns 0x02
T6AB4 005:413.211 JLINK_IsHalted()
T6AB4 005:413.779 - 0.579ms returns FALSE
T6AB4 005:514.220 JLINK_IsHalted()
T6AB4 005:514.843 - 0.634ms returns FALSE
T6AB4 005:615.245 JLINK_IsHalted()
T6AB4 005:615.849 - 0.615ms returns FALSE
T6AB4 005:716.268 JLINK_IsHalted()
T6AB4 005:716.891 - 0.634ms returns FALSE
T6AB4 005:817.289 JLINK_IsHalted()
T6AB4 005:817.901 - 0.623ms returns FALSE
T7788 005:918.371   JLINK_ReadMemEx(0x20000098, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 005:918.426   CPU_ReadMem(2 bytes @ 0x20000098)
T7788 005:919.066   Data:  00 00
T7788 005:919.093 - 0.731ms returns 0x02
T7788 005:919.140   JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 005:919.169   CPU_ReadMem(1 bytes @ 0x20000070)
T7788 005:919.754   Data:  7D
T7788 005:919.778 - 0.645ms returns 0x01
T7788 005:925.051   JLINK_ReadMemEx(0x20000074, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 005:925.091   CPU_ReadMem(1 bytes @ 0x20000074)
T7788 005:925.732   Data:  83
T7788 005:925.756 - 0.712ms returns 0x01
T7788 005:930.763   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 005:930.795   CPU_ReadMem(1 bytes @ 0x08000000)
T7788 005:931.365   Data:  40
T7788 005:931.402 - 0.648ms returns 0x01
T7788 005:931.435   JLINK_ReadMemEx(0x200000E4, 0x0004 Bytes, ..., Flags = 0x02000000)
T7788 005:931.467   CPU_ReadMem(4 bytes @ 0x200000E4)
T7788 005:932.083   Data:  00 00 00 00
T7788 005:932.108 - 0.680ms returns 0x04
T7788 005:932.142   JLINK_ReadMemEx(0x200014F0, 0x000C Bytes, ..., Flags = 0x02000000)
T7788 005:932.167   CPU_ReadMem(12 bytes @ 0x200014F0)
T7788 005:932.813   Data:  00 00 00 00 00 00 00 00 00 00 00 00
T7788 005:932.836 - 0.701ms returns 0x0C
T7788 005:932.857   JLINK_ReadMemEx(0x200000A0, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 005:932.881   CPU_ReadMem(2 bytes @ 0x200000A0)
T7788 005:933.448   Data:  00 00
T7788 005:933.473 - 0.623ms returns 0x02
T6AB4 005:933.520 JLINK_IsHalted()
T6AB4 005:934.096 - 0.586ms returns FALSE
T6AB4 006:034.341 JLINK_IsHalted()
T6AB4 006:034.981 - 0.651ms returns FALSE
T6AB4 006:135.365 JLINK_IsHalted()
T6AB4 006:135.985 - 0.630ms returns FALSE
T6AB4 006:236.387 JLINK_IsHalted()
T6AB4 006:236.994 - 0.617ms returns FALSE
T6AB4 006:337.410 JLINK_IsHalted()
T6AB4 006:337.992 - 0.593ms returns FALSE
T7788 006:438.491   JLINK_ReadMemEx(0x20000098, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 006:438.546   CPU_ReadMem(2 bytes @ 0x20000098)
T7788 006:439.162   Data:  00 00
T7788 006:439.198 - 0.716ms returns 0x02
T7788 006:439.250   JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 006:439.281   CPU_ReadMem(1 bytes @ 0x20000070)
T7788 006:439.851   Data:  01
T7788 006:439.879 - 0.639ms returns 0x01
T7788 006:445.409   JLINK_ReadMemEx(0x20000074, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 006:445.453   CPU_ReadMem(1 bytes @ 0x20000074)
T7788 006:446.049   Data:  00
T7788 006:446.072 - 0.672ms returns 0x01
T7788 006:451.122   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 006:451.155   CPU_ReadMem(1 bytes @ 0x08000000)
T7788 006:451.756   Data:  40
T7788 006:451.780 - 0.666ms returns 0x01
T7788 006:451.828   JLINK_ReadMemEx(0x200000E4, 0x0004 Bytes, ..., Flags = 0x02000000)
T7788 006:451.855   CPU_ReadMem(4 bytes @ 0x200000E4)
T7788 006:452.420   Data:  00 00 00 00
T7788 006:452.447 - 0.626ms returns 0x04
T7788 006:452.480   JLINK_ReadMemEx(0x200014F0, 0x000C Bytes, ..., Flags = 0x02000000)
T7788 006:452.505   CPU_ReadMem(12 bytes @ 0x200014F0)
T7788 006:453.173   Data:  00 00 00 00 00 00 00 00 00 00 00 00
T7788 006:453.200 - 0.729ms returns 0x0C
T7788 006:453.226   JLINK_ReadMemEx(0x200000A0, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 006:453.254   CPU_ReadMem(2 bytes @ 0x200000A0)
T7788 006:453.833   Data:  00 00
T7788 006:453.855 - 0.637ms returns 0x02
T6AB4 006:453.905 JLINK_IsHalted()
T6AB4 006:454.485 - 0.591ms returns FALSE
T6AB4 006:555.463 JLINK_IsHalted()
T6AB4 006:556.070 - 0.619ms returns FALSE
T6AB4 006:656.485 JLINK_IsHalted()
T6AB4 006:657.121 - 0.648ms returns FALSE
T6AB4 006:757.508 JLINK_IsHalted()
T6AB4 006:758.132 - 0.635ms returns FALSE
T6AB4 006:858.531 JLINK_IsHalted()
T6AB4 006:859.125 - 0.611ms returns FALSE
T7788 006:959.606   JLINK_ReadMemEx(0x20000098, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 006:959.664   CPU_ReadMem(2 bytes @ 0x20000098)
T7788 006:960.299   Data:  00 00
T7788 006:960.328 - 0.731ms returns 0x02
T7788 006:960.376   JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 006:960.406   CPU_ReadMem(1 bytes @ 0x20000070)
T7788 006:960.993   Data:  01
T7788 006:961.017 - 0.648ms returns 0x01
T7788 006:963.807   JLINK_ReadMemEx(0x20000074, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 006:963.841   CPU_ReadMem(1 bytes @ 0x20000074)
T7788 006:964.451   Data:  00
T7788 006:964.474 - 0.674ms returns 0x01
T7788 006:967.137   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 006:967.176   CPU_ReadMem(1 bytes @ 0x08000000)
T7788 006:967.773   Data:  40
T7788 006:967.797 - 0.667ms returns 0x01
T7788 006:967.822   JLINK_ReadMemEx(0x200000E4, 0x0004 Bytes, ..., Flags = 0x02000000)
T7788 006:967.847   CPU_ReadMem(4 bytes @ 0x200000E4)
T7788 006:968.438   Data:  00 00 00 00
T7788 006:968.469 - 0.654ms returns 0x04
T7788 006:968.504   JLINK_ReadMemEx(0x200014F0, 0x000C Bytes, ..., Flags = 0x02000000)
T7788 006:968.529   CPU_ReadMem(12 bytes @ 0x200014F0)
T7788 006:969.225   Data:  00 00 00 00 00 00 00 00 00 00 00 00
T7788 006:969.248 - 0.752ms returns 0x0C
T7788 006:969.270   JLINK_ReadMemEx(0x200000A0, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 006:969.294   CPU_ReadMem(2 bytes @ 0x200000A0)
T7788 006:969.855   Data:  00 00
T7788 006:969.883 - 0.622ms returns 0x02
T6AB4 006:969.938 JLINK_IsHalted()
T6AB4 006:970.501 - 0.572ms returns FALSE
T6AB4 007:070.585 JLINK_IsHalted()
T6AB4 007:071.279 - 0.705ms returns FALSE
T6AB4 007:171.603 JLINK_IsHalted()
T6AB4 007:172.281 - 0.689ms returns FALSE
T6AB4 007:272.626 JLINK_IsHalted()
T6AB4 007:273.217 - 0.601ms returns FALSE
T6AB4 007:373.653 JLINK_IsHalted()
T6AB4 007:374.283 - 0.641ms returns FALSE
T7788 007:474.722   JLINK_ReadMemEx(0x20000098, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 007:474.778   CPU_ReadMem(2 bytes @ 0x20000098)
T7788 007:475.382   Data:  88 73
T7788 007:475.410 - 0.698ms returns 0x02
T7788 007:478.985   JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 007:479.021   CPU_ReadMem(1 bytes @ 0x20000070)
T7788 007:479.606   Data:  02
T7788 007:479.629 - 0.652ms returns 0x01
T7788 007:482.253   JLINK_ReadMemEx(0x20000074, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 007:482.286   CPU_ReadMem(1 bytes @ 0x20000074)
T7788 007:482.876   Data:  00
T7788 007:482.905 - 0.660ms returns 0x01
T7788 007:482.931   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 007:482.955   CPU_ReadMem(1 bytes @ 0x08000000)
T7788 007:483.531   Data:  40
T7788 007:483.553 - 0.629ms returns 0x01
T7788 007:483.576   JLINK_ReadMemEx(0x200000E4, 0x0004 Bytes, ..., Flags = 0x02000000)
T7788 007:483.599   CPU_ReadMem(4 bytes @ 0x200000E4)
T7788 007:484.197   Data:  00 00 00 00
T7788 007:484.217 - 0.647ms returns 0x04
T7788 007:484.241   JLINK_ReadMemEx(0x200014F0, 0x000C Bytes, ..., Flags = 0x02000000)
T7788 007:484.262   CPU_ReadMem(12 bytes @ 0x200014F0)
T7788 007:484.994   Data:  00 00 00 00 00 00 00 00 00 00 00 00
T7788 007:485.018 - 0.784ms returns 0x0C
T7788 007:485.039   JLINK_ReadMemEx(0x200000A0, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 007:485.063   CPU_ReadMem(2 bytes @ 0x200000A0)
T7788 007:485.622   Data:  00 00
T7788 007:485.641 - 0.607ms returns 0x02
T6AB4 007:485.728 JLINK_IsHalted()
T6AB4 007:486.303 - 0.585ms returns FALSE
T6AB4 007:586.913 JLINK_IsHalted()
T6AB4 007:587.522 - 0.626ms returns FALSE
T6AB4 007:687.936 JLINK_IsHalted()
T6AB4 007:688.568 - 0.650ms returns FALSE
T6AB4 007:788.960 JLINK_IsHalted()
T6AB4 007:789.570 - 0.621ms returns FALSE
T6AB4 007:889.983 JLINK_IsHalted()
T6AB4 007:890.621 - 0.648ms returns FALSE
T7788 007:991.048   JLINK_ReadMemEx(0x20000098, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 007:991.101   CPU_ReadMem(2 bytes @ 0x20000098)
T7788 007:991.689   Data:  88 73
T7788 007:991.721 - 0.682ms returns 0x02
T7788 007:994.657   JLINK_ReadMemEx(0x20000070, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 007:994.689   CPU_ReadMem(1 bytes @ 0x20000070)
T7788 007:995.297   Data:  02
T7788 007:995.329 - 0.680ms returns 0x01
T7788 007:997.642   JLINK_ReadMemEx(0x20000074, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 007:997.678   CPU_ReadMem(1 bytes @ 0x20000074)
T7788 007:998.292   Data:  00
T7788 007:998.320 - 0.686ms returns 0x01
T7788 007:998.348   JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000)
T7788 007:998.374   CPU_ReadMem(1 bytes @ 0x08000000)
T7788 007:998.993   Data:  40
T7788 007:999.022 - 0.681ms returns 0x01
T7788 007:999.052   JLINK_ReadMemEx(0x200000E4, 0x0004 Bytes, ..., Flags = 0x02000000)
T7788 007:999.081   CPU_ReadMem(4 bytes @ 0x200000E4)
T7788 007:999.685   Data:  00 00 00 00
T7788 007:999.705 - 0.659ms returns 0x04
T7788 007:999.735   JLINK_ReadMemEx(0x200014F0, 0x000C Bytes, ..., Flags = 0x02000000)
T7788 007:999.756   CPU_ReadMem(12 bytes @ 0x200014F0)
T7788 008:000.423   Data:  00 00 00 00 00 00 00 00 00 00 00 00
T7788 008:000.443 - 0.713ms returns 0x0C
T7788 008:000.461   JLINK_ReadMemEx(0x200000A0, 0x0002 Bytes, ..., Flags = 0x02000000)
T7788 008:000.481   CPU_ReadMem(2 bytes @ 0x200000A0)
T7788 008:001.065   Data:  00 00
T7788 008:001.088 - 0.635ms returns 0x02
T6AB4 008:001.141 JLINK_IsHalted()
T6AB4 008:001.709 - 0.581ms returns FALSE
T6AB4 008:102.060 JLINK_IsHalted()
T6AB4 008:102.673 - 0.624ms returns FALSE
T6AB4 008:203.055 JLINK_IsHalted()
T6AB4 008:203.674 - 0.636ms returns FALSE
T6AB4 008:304.076 JLINK_IsHalted()
T6AB4 008:304.665 - 0.600ms returns FALSE
T6AB4 008:405.099 JLINK_IsHalted()
T6AB4 008:405.714 - 0.626ms returns FALSE
T6AB4 008:506.125 JLINK_Halt()
T6AB4 008:509.641 - 3.529ms returns 0x00
T6AB4 008:509.666 JLINK_IsHalted()
T6AB4 008:509.683 - 0.025ms returns TRUE
T6AB4 008:509.701 JLINK_IsHalted()
T6AB4 008:509.717 - 0.024ms returns TRUE
T6AB4 008:509.735 JLINK_IsHalted()
T6AB4 008:509.751 - 0.024ms returns TRUE
T6AB4 008:509.772 JLINK_ReadReg(R15 (PC))
T6AB4 008:509.792 - 0.028ms returns 0x08005508
T6AB4 008:509.810 JLINK_ReadReg(XPSR)
T6AB4 008:509.827 - 0.025ms returns 0x21000000
T6AB4 008:509.850 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...)
T6AB4 008:509.873   CPU_ReadMem(4 bytes @ 0xE000ED30)
T6AB4 008:510.470   Data:  01 00 00 00
T6AB4 008:510.497 - 0.655ms returns 1
T6AB4 008:510.516 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...)
T6AB4 008:510.536   CPU_ReadMem(4 bytes @ 0xE0001028)
T6AB4 008:511.127   Data:  00 00 00 00
T6AB4 008:511.154    - DWT_FUNC[0]
T6AB4 008:511.172 - 0.662ms returns 1
T6AB4 008:511.188 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...)
T6AB4 008:511.204   CPU_ReadMem(4 bytes @ 0xE0001038)
T6AB4 008:511.784   Data:  00 00 00 00
T6AB4 008:511.804    - DWT_FUNC[1]
T6AB4 008:511.821 - 0.639ms returns 1
T7788 009:157.396 JLINK_Close()
T7788 009:158.013   CPU_ReadMem(4 bytes @ 0xE0001000)
T7788 009:158.596   CPU_WriteMem(4 bytes @ 0xE0001000)
T7788 009:170.432 - 13.054ms
T7788 009:170.459   
T7788 009:170.474   Closed