zhangbo
5 小时以前 0817c03a55b444ff4958723476f807486439e107
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
 
T3314 000:045 SEGGER J-Link V6.20g Log File (0001ms, 0031ms total)
T3314 000:045 DLL Compiled: Oct 20 2017 17:09:27 (0001ms, 0031ms total)
T3314 000:045 Logging started @ 2025-07-24 17:24 (0001ms, 0031ms total)
T3314 000:046 JLINK_SetWarnOutHandler(...) (0000ms, 0031ms total)
T3314 000:046 JLINK_OpenEx(...)
Firmware: J-Link ARM-OB STM32 compiled Aug 22 2012 19:52:04
Hardware: V7.00
S/N: 20090928
Feature(s): RDI,FlashDL,FlashBP,JFlash,GDB
TELNET listener socket opened on port 19021WEBSRV 
Starting webserver (0014ms, 0045ms total)
T3314 000:046 WEBSRV Webserver running on local port 19080 (0014ms, 0045ms total)
T3314 000:046   returns O.K. (0014ms, 0045ms total)
T3314 000:060 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0045ms total)
T3314 000:060 JLINK_TIF_GetAvailable(...) (0001ms, 0046ms total)
T3314 000:061 JLINK_SetErrorOutHandler(...) (0000ms, 0046ms total)
T3314 000:061 JLINK_ExecCommand("ProjectFile = "D:\zhangbo\2024\Code\ChinaUWB\ChinaUWBProject-1-5HZ\keil\JLinkSettings.ini"", ...). D:\keil\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0075ms, 0121ms total)
T3314 000:136 JLINK_ExecCommand("Device = MK8000", ...). 
  ***** Error: Error while loading flash algo ELF file. No file specified  returns 0xFFFFFFFF (0000ms, 0121ms total)
T3314 000:136 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0121ms total)
T3314 000:136 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0121ms total)
T3314 000:136 JLINK_GetDLLVersion()  returns 62007 (0000ms, 0121ms total)
T3314 000:136 JLINK_GetFirmwareString(...) (0000ms, 0121ms total)
T3314 000:136 JLINK_GetDLLVersion()  returns 62007 (0000ms, 0121ms total)
T3314 000:136 JLINK_GetCompileDateTime() (0000ms, 0121ms total)
T3314 000:136 JLINK_GetFirmwareString(...) (0000ms, 0121ms total)
T3314 000:136 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0121ms total)
T3314 000:136 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0002ms, 0123ms total)
T3314 000:138 JLINK_SetSpeed(10000) (0001ms, 0124ms total)
T3314 000:139 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BB11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x04770021)Iterating through AP map to find AHB-AP to use
 >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC200. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p0, Little endian. -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)
 -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS -- CPU_ReadMem(16 bytes @ 0xE0001FF0)
 -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB >0x0D TIF> >0x21 TIF>  returns 0x0BB11477 (0152ms, 0276ms total)
T3314 000:292 JLINK_GetDLLVersion()  returns 62007 (0000ms, 0276ms total)
T3314 000:292 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0276ms total)
T3314 000:292 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0276ms total)
T3314 000:292 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0276ms total)
T3314 000:292 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0276ms total)
T3314 000:292 JLINK_ReadMemEx(0xE0041FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0041FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 0277ms total)
T3314 000:293 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0277ms total)
T3314 000:293 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0277ms total)
T3314 000:293 JLINK_ReadMemEx(0xE0040FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0040FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 0278ms total)
T3314 000:294 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0278ms total)
T3314 000:294 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0278ms total)
T3314 000:294 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0278ms total)
T3314 000:294 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 0278ms total)
T3314 000:294 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0278ms total)
T3314 000:294 JLINK_GetDebugInfo(0x01 = Unknown)  returns 0xFFFFFFFF (0000ms, 0278ms total)
T3314 000:294 JLINK_GetDeviceFamily()  returns 6 (0000ms, 0278ms total)
T3314 000:294 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41  returns 0x01 (0001ms, 0279ms total)
T3314 000:295 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0279ms total)
T3314 000:295 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0001ms, 0280ms total)
T3314 000:296 JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)
 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0074ms, 0354ms total)
T3314 000:370 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0354ms total)
T3314 000:370 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0354ms total)
T3314 000:370 JLINK_Halt()  returns 0x00 (0000ms, 0354ms total)
T3314 000:370 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 0x01 (0001ms, 0355ms total)
T3314 000:371 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0001ms, 0356ms total)
T3314 000:372 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0001ms, 0357ms total)
T3314 000:373 JLINK_GetHWStatus(...)  returns 0x00 (0001ms, 0358ms total)
T3314 000:374 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0358ms total)
T3314 000:374 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0358ms total)
T3314 000:374 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0358ms total)
T3314 000:374 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0358ms total)
T3314 000:374 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0001ms, 0359ms total)
T3314 000:375 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0359ms total)
T3314 000:375 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0359ms total)
T3314 000:474 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0359ms total)
T3314 000:474 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0075ms, 0434ms total)
T3314 000:549 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0434ms total)
T3314 000:549 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0434ms total)
T3314 000:549 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0002ms, 0436ms total)
T3314 000:551 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0437ms total)
T3314 000:552 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0438ms total)
T3314 002:135 JLINK_ReadReg(R0)  returns 0x0000E585 (0001ms, 0439ms total)
T3314 002:136 JLINK_ReadReg(R1)  returns 0x000003E8 (0000ms, 0439ms total)
T3314 002:136 JLINK_ReadReg(R2)  returns 0x000007FF (0000ms, 0439ms total)
T3314 002:136 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 0439ms total)
T3314 002:136 JLINK_ReadReg(R4)  returns 0x0000044E (0000ms, 0439ms total)
T3314 002:136 JLINK_ReadReg(R5)  returns 0x00000003 (0000ms, 0439ms total)
T3314 002:136 JLINK_ReadReg(R6)  returns 0x02029FC0 (0000ms, 0439ms total)
T3314 002:136 JLINK_ReadReg(R7)  returns 0x0201C08A (0000ms, 0439ms total)
T3314 002:136 JLINK_ReadReg(R8)  returns 0x00000000 (0001ms, 0440ms total)
T3314 002:137 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0440ms total)
T3314 002:137 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0440ms total)
T3314 002:137 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0440ms total)
T3314 002:137 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0440ms total)
T3314 002:137 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0440ms total)
T3314 002:137 JLINK_ReadReg(R14)  returns 0x0000BC47 (0000ms, 0440ms total)
T3314 002:137 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0440ms total)
T3314 002:137 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0440ms total)
T3314 002:137 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0440ms total)
T3314 002:137 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0440ms total)
T3314 002:137 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0440ms total)
T3314 002:219 JLINK_ReadMemEx(0x0201ABE9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201ABE9) - Data: 00  returns 0x01 (0001ms, 0441ms total)
T3314 002:220 JLINK_ReadMemEx(0x0201ABE9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201ABE9) - Data: 00  returns 0x01 (0001ms, 0442ms total)
T3314 002:221 JLINK_ReadMemEx(0x0201ABE9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201ABE9) - Data: 00  returns 0x01 (0001ms, 0443ms total)
T3314 002:225 JLINK_ReadMemEx(0x0201AB8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201AB8C) - Data: 47 77  returns 0x02 (0001ms, 0444ms total)
T3314 002:226 JLINK_ReadMemEx(0x0201AB8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201AB8C) - Data: 47 77  returns 0x02 (0001ms, 0445ms total)
T3314 002:227 JLINK_ReadMemEx(0x0201AB8C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201AB8C) - Data: 47 77  returns 0x02 (0001ms, 0446ms total)
T3314 002:228 JLINK_ReadMemEx(0x0201AB84, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AB84) - Data: 00  returns 0x01 (0001ms, 0447ms total)
T3314 002:229 JLINK_ReadMemEx(0x0201AB84, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AB84) - Data: 00  returns 0x01 (0001ms, 0448ms total)
T3314 002:230 JLINK_ReadMemEx(0x0201AB84, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AB84) - Data: 00  returns 0x01 (0001ms, 0449ms total)
T3314 002:235 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0450ms total)
T3314 002:237 JLINK_ReadMemEx(0x0201ABA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABA0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0451ms total)
T3314 002:238 JLINK_ReadMemEx(0x0201ABA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABA0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0452ms total)
T3314 002:239 JLINK_ReadMemEx(0x0201ABA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABA0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0453ms total)
T3314 002:247 JLINK_ReadMemEx(0x0201ABA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABA8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0454ms total)
T3314 002:248 JLINK_ReadMemEx(0x0201ABA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABA8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0455ms total)
T3314 002:249 JLINK_ReadMemEx(0x0201ABA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABA8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0456ms total)
T3314 002:251 JLINK_ReadMemEx(0x0201AB70, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AB70) - Data: 00  returns 0x01 (0001ms, 0457ms total)
T3314 002:252 JLINK_ReadMemEx(0x0201AB70, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AB70) - Data: 00  returns 0x01 (0001ms, 0458ms total)
T3314 002:253 JLINK_ReadMemEx(0x0201AB70, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AB70) - Data: 00  returns 0x01 (0001ms, 0459ms total)
T3314 002:256 JLINK_ReadMemEx(0x0201ABA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABA4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0460ms total)
T3314 002:257 JLINK_ReadMemEx(0x0201ABA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABA4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0461ms total)
T3314 002:258 JLINK_ReadMemEx(0x0201ABA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABA4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0462ms total)
T3314 002:259 JLINK_ReadMemEx(0x0201ABAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABAC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0463ms total)
T3314 002:260 JLINK_ReadMemEx(0x0201ABAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABAC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0464ms total)
T3314 002:261 JLINK_ReadMemEx(0x0201ABAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABAC) - Data: 00 00 00 00  returns 0x04 (0001ms, 0465ms total)
T3314 002:263 JLINK_ReadMemEx(0x0201ABA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABA8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0466ms total)
T3314 002:264 JLINK_ReadMemEx(0x0201ABA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABA8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0467ms total)
T3314 002:265 JLINK_ReadMemEx(0x0201ABA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABA8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0468ms total)
T3314 002:266 JLINK_ReadMemEx(0x0201AB7A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AB7A) - Data: 00  returns 0x01 (0001ms, 0469ms total)
T3314 002:267 JLINK_ReadMemEx(0x0201AB7A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AB7A) - Data: 00  returns 0x01 (0001ms, 0470ms total)
T3314 002:268 JLINK_ReadMemEx(0x0201AB7A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AB7A) - Data: 00  returns 0x01 (0001ms, 0471ms total)
T3314 002:274 JLINK_ReadMemEx(0x0201ABA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABA0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0472ms total)
T3314 002:275 JLINK_ReadMemEx(0x0201ABA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABA0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0473ms total)
T3314 002:276 JLINK_ReadMemEx(0x0201ABA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201ABA0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0474ms total)
T3314 002:282 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0475ms total)
T3314 002:285 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0477ms total)
T3314 002:308 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0478ms total)
T5708 002:381 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0479ms total)
T5708 002:382 JLINK_SetBPEx(Addr = 0x0000EC40, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0479ms total)
T5708 002:382 JLINK_SetBPEx(Addr = 0x00009998, Type = 0xFFFFFFF2)  returns 0x00000002 (0000ms, 0479ms total)
T5708 002:382 JLINK_SetBPEx(Addr = 0x0000A21C, Type = 0xFFFFFFF2)  returns 0x00000003 (0000ms, 0479ms total)
T5708 002:382 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0008ms, 0487ms total)
T5708 002:491 JLINK_IsHalted()  returns TRUE (0004ms, 0491ms total)
T5708 002:495 JLINK_Halt()  returns 0x00 (0000ms, 0487ms total)
T5708 002:495 JLINK_IsHalted()  returns TRUE (0000ms, 0487ms total)
T5708 002:495 JLINK_IsHalted()  returns TRUE (0000ms, 0487ms total)
T5708 002:495 JLINK_IsHalted()  returns TRUE (0000ms, 0487ms total)
T5708 002:495 JLINK_ReadReg(R15 (PC))  returns 0x0000EC40 (0000ms, 0487ms total)
T5708 002:495 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0487ms total)
T5708 002:495 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0487ms total)
T5708 002:495 JLINK_ClrBPEx(BPHandle = 0x00000002)  returns 0x00 (0000ms, 0487ms total)
T5708 002:495 JLINK_ClrBPEx(BPHandle = 0x00000003)  returns 0x00 (0000ms, 0487ms total)
T5708 002:495 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0488ms total)
T5708 002:496 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0489ms total)
T5708 002:497 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0490ms total)
T5708 002:498 JLINK_ReadReg(R0)  returns 0x0000EC41 (0000ms, 0490ms total)
T5708 002:498 JLINK_ReadReg(R1)  returns 0x02023998 (0000ms, 0490ms total)
T5708 002:498 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0490ms total)
T5708 002:498 JLINK_ReadReg(R3)  returns 0x00013D0D (0000ms, 0490ms total)
T5708 002:498 JLINK_ReadReg(R4)  returns 0x00017284 (0000ms, 0490ms total)
T5708 002:498 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0490ms total)
T5708 002:498 JLINK_ReadReg(R6)  returns 0x00017284 (0000ms, 0490ms total)
T5708 002:499 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0491ms total)
T5708 002:499 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0491ms total)
T5708 002:499 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0491ms total)
T5708 002:499 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0491ms total)
T5708 002:499 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0491ms total)
T5708 002:499 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0491ms total)
T5708 002:499 JLINK_ReadReg(R13 (SP))  returns 0x0202A000 (0000ms, 0491ms total)
T5708 002:499 JLINK_ReadReg(R14)  returns 0x00000B7D (0000ms, 0491ms total)
T5708 002:499 JLINK_ReadReg(R15 (PC))  returns 0x0000EC40 (0000ms, 0491ms total)
T5708 002:499 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0491ms total)
T5708 002:499 JLINK_ReadReg(MSP)  returns 0x0202A000 (0000ms, 0491ms total)
T5708 002:499 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0491ms total)
T5708 002:499 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0491ms total)
T3314 002:499 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0492ms total)
T3314 002:500 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0494ms total)
T3314 002:503 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0496ms total)
T5708 004:469 JLINK_ReadMemEx(0x0000EC40, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000EC40) -- Updating DA cache (64 bytes @ 0x0000EC40) -- Read from DA cache (2 bytes @ 0x0000EC40) - Data: 8A B0  returns 0x02 (0002ms, 0498ms total)
T5708 004:471 JLINK_SetBPEx(Addr = 0x00009998, Type = 0xFFFFFFF2)  returns 0x00000004 (0000ms, 0498ms total)
T5708 004:471 JLINK_SetBPEx(Addr = 0x0000A21C, Type = 0xFFFFFFF2)  returns 0x00000005 (0000ms, 0498ms total)
T5708 004:471 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) (0007ms, 0505ms total)
T5708 004:579 JLINK_IsHalted()  returns FALSE (0001ms, 0506ms total)
T5708 004:680 JLINK_IsHalted()  returns FALSE (0000ms, 0505ms total)
T5708 004:781 JLINK_IsHalted()  returns FALSE (0000ms, 0505ms total)
T5708 004:883 JLINK_IsHalted()  returns FALSE (0001ms, 0506ms total)
T5708 004:984 JLINK_IsHalted()  returns FALSE (0001ms, 0506ms total)
T3314 005:086 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0506ms total)
T3314 005:087 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0507ms total)
T3314 005:090 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0508ms total)
T5708 005:091 JLINK_IsHalted()  returns FALSE (0001ms, 0509ms total)
T5708 005:193 JLINK_IsHalted()  returns FALSE (0000ms, 0508ms total)
T5708 005:294 JLINK_IsHalted()  returns FALSE (0001ms, 0509ms total)
T5708 005:395 JLINK_IsHalted()  returns FALSE (0000ms, 0508ms total)
T5708 005:497 JLINK_IsHalted()  returns FALSE (0001ms, 0509ms total)
T3314 005:598 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0509ms total)
T3314 005:599 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0510ms total)
T3314 005:602 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0511ms total)
T5708 005:603 JLINK_IsHalted()  returns FALSE (0001ms, 0512ms total)
T5708 005:705 JLINK_IsHalted()  returns FALSE (0001ms, 0512ms total)
T5708 005:806 JLINK_IsHalted()  returns FALSE (0001ms, 0512ms total)
T5708 005:907 JLINK_IsHalted()  returns FALSE (0000ms, 0511ms total)
T5708 006:008 JLINK_IsHalted()  returns FALSE (0000ms, 0511ms total)
T5708 006:110 JLINK_IsHalted()  returns FALSE (0000ms, 0511ms total)
T3314 006:211 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0512ms total)
T3314 006:212 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0513ms total)
T3314 006:215 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0514ms total)
T5708 006:216 JLINK_IsHalted()  returns FALSE (0001ms, 0515ms total)
T5708 006:318 JLINK_IsHalted()  returns FALSE (0000ms, 0514ms total)
T5708 006:420 JLINK_IsHalted()  returns FALSE (0000ms, 0514ms total)
T5708 006:521 JLINK_IsHalted()  returns FALSE (0000ms, 0514ms total)
T5708 006:622 JLINK_IsHalted()  returns FALSE (0001ms, 0515ms total)
T3314 006:723 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0515ms total)
T3314 006:724 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0516ms total)
T3314 006:727 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0517ms total)
T5708 006:728 JLINK_IsHalted()  returns FALSE (0001ms, 0518ms total)
T5708 006:831 JLINK_IsHalted()  returns FALSE (0001ms, 0518ms total)
T5708 006:932 JLINK_IsHalted()  returns FALSE (0000ms, 0517ms total)
T5708 007:033 JLINK_IsHalted()  returns FALSE (0001ms, 0518ms total)
T5708 007:135 JLINK_IsHalted()  returns FALSE (0000ms, 0517ms total)
T3314 007:236 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0518ms total)
T3314 007:237 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0519ms total)
T3314 007:240 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0520ms total)
T5708 007:241 JLINK_IsHalted()  returns FALSE (0001ms, 0521ms total)
T5708 007:344 JLINK_IsHalted()  returns FALSE (0000ms, 0520ms total)
T5708 007:445 JLINK_IsHalted()  returns FALSE (0000ms, 0520ms total)
T5708 007:546 JLINK_IsHalted()  returns FALSE (0001ms, 0521ms total)
T5708 007:647 JLINK_IsHalted()  returns FALSE (0000ms, 0520ms total)
T5708 007:749 JLINK_IsHalted()  returns FALSE (0000ms, 0520ms total)
T3314 007:850 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0521ms total)
T3314 007:851 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0522ms total)
T3314 007:854 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0523ms total)
T5708 007:855 JLINK_IsHalted()  returns FALSE (0001ms, 0524ms total)
T5708 007:958 JLINK_IsHalted()  returns FALSE (0001ms, 0524ms total)
T5708 008:060 JLINK_IsHalted()  returns FALSE (0001ms, 0524ms total)
T5708 008:161 JLINK_IsHalted()  returns FALSE (0001ms, 0524ms total)
T5708 008:262 JLINK_IsHalted()  returns FALSE (0001ms, 0524ms total)
T3314 008:365 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0524ms total)
T3314 008:366 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0525ms total)
T3314 008:368 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0527ms total)
T5708 008:370 JLINK_IsHalted()  returns FALSE (0001ms, 0528ms total)
T5708 008:471 JLINK_IsHalted()  returns FALSE (0000ms, 0527ms total)
T5708 008:572 JLINK_IsHalted()  returns FALSE (0001ms, 0528ms total)
T5708 008:673 JLINK_IsHalted()  returns FALSE (0000ms, 0527ms total)
T5708 008:775 JLINK_IsHalted()  returns FALSE (0000ms, 0527ms total)
T5708 008:876 JLINK_IsHalted()  returns FALSE (0001ms, 0528ms total)
T3314 008:977 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0528ms total)
T3314 008:978 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0529ms total)
T3314 008:981 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0530ms total)
T5708 008:982 JLINK_IsHalted()  returns FALSE (0001ms, 0531ms total)
T5708 009:084 JLINK_IsHalted()  returns FALSE (0001ms, 0531ms total)
T5708 009:185 JLINK_IsHalted()  returns FALSE (0001ms, 0531ms total)
T5708 009:287 JLINK_IsHalted()  returns FALSE (0000ms, 0530ms total)
T5708 009:388 JLINK_IsHalted()  returns FALSE (0001ms, 0531ms total)
T3314 009:489 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0531ms total)
T3314 009:490 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0532ms total)
T3314 009:493 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0533ms total)
T5708 009:494 JLINK_IsHalted()  returns FALSE (0001ms, 0534ms total)
T5708 009:596 JLINK_IsHalted()  returns FALSE (0001ms, 0534ms total)
T5708 009:698 JLINK_IsHalted()  returns FALSE (0001ms, 0534ms total)
T5708 009:799 JLINK_IsHalted()  returns FALSE (0000ms, 0533ms total)
T5708 009:900 JLINK_IsHalted()  returns FALSE (0001ms, 0534ms total)
T3314 010:002 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0535ms total)
T3314 010:004 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0536ms total)
T3314 010:007 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0537ms total)
T5708 010:008 JLINK_IsHalted()  returns FALSE (0001ms, 0538ms total)
T5708 010:111 JLINK_IsHalted()  returns FALSE (0000ms, 0537ms total)
T5708 010:212 JLINK_IsHalted()  returns FALSE (0000ms, 0537ms total)
T5708 010:313 JLINK_IsHalted()  returns FALSE (0001ms, 0538ms total)
T5708 010:415 JLINK_IsHalted()  returns FALSE (0000ms, 0537ms total)
T5708 010:516 JLINK_IsHalted()  returns FALSE (0001ms, 0538ms total)
T3314 010:617 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0538ms total)
T3314 010:618 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0539ms total)
T3314 010:620 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0541ms total)
T5708 010:622 JLINK_IsHalted()  returns FALSE (0001ms, 0542ms total)
T5708 010:723 JLINK_IsHalted()  returns FALSE (0001ms, 0542ms total)
T5708 010:825 JLINK_IsHalted()  returns FALSE (0001ms, 0542ms total)
T5708 010:926 JLINK_IsHalted()  returns FALSE (0000ms, 0541ms total)
T5708 011:027 JLINK_IsHalted()  returns FALSE (0000ms, 0541ms total)
T3314 011:129 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0542ms total)
T3314 011:130 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0543ms total)
T3314 011:133 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0544ms total)
T5708 011:134 JLINK_IsHalted()  returns FALSE (0001ms, 0545ms total)
T5708 011:235 JLINK_IsHalted()  returns FALSE (0001ms, 0545ms total)
T5708 011:336 JLINK_IsHalted()  returns FALSE (0001ms, 0545ms total)
T5708 011:437 JLINK_IsHalted()  returns FALSE (0001ms, 0545ms total)
T5708 011:539 JLINK_IsHalted()  returns FALSE (0001ms, 0545ms total)
T5708 011:640 JLINK_IsHalted()  returns FALSE (0000ms, 0544ms total)
T3314 011:741 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0545ms total)
T3314 011:742 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0547ms total)
T3314 011:745 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0549ms total)
T5708 011:747 JLINK_IsHalted()  returns FALSE (0001ms, 0550ms total)
T5708 011:849 JLINK_IsHalted()  returns FALSE (0000ms, 0549ms total)
T5708 011:951 JLINK_IsHalted()  returns FALSE (0001ms, 0550ms total)
T5708 012:052 JLINK_IsHalted()  returns FALSE (0000ms, 0549ms total)
T5708 012:153 JLINK_IsHalted()  returns FALSE (0000ms, 0549ms total)
T3314 012:255 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0550ms total)
T3314 012:256 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0551ms total)
T3314 012:259 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0552ms total)
T5708 012:260 JLINK_IsHalted()  returns FALSE (0001ms, 0553ms total)
T5708 012:362 JLINK_IsHalted()  returns FALSE (0000ms, 0552ms total)
T5708 012:463 JLINK_IsHalted()  returns FALSE (0001ms, 0553ms total)
T5708 012:565 JLINK_IsHalted()  returns FALSE (0001ms, 0553ms total)
T5708 012:666 JLINK_IsHalted()  returns FALSE (0001ms, 0553ms total)
T3314 012:767 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0553ms total)
T3314 012:768 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0554ms total)
T3314 012:770 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0556ms total)
T5708 012:772 JLINK_IsHalted()  returns FALSE (0001ms, 0557ms total)
T5708 012:874 JLINK_IsHalted()  returns FALSE (0000ms, 0556ms total)
T5708 012:976 JLINK_IsHalted()  returns FALSE (0000ms, 0556ms total)
T5708 013:078 JLINK_IsHalted()  returns FALSE (0000ms, 0556ms total)
T5708 013:179 JLINK_IsHalted()  returns FALSE (0001ms, 0557ms total)
T5708 013:280 JLINK_IsHalted()  returns FALSE (0001ms, 0557ms total)
T3314 013:382 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0557ms total)
T3314 013:383 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0558ms total)
T3314 013:386 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0560ms total)
T5708 013:388 JLINK_IsHalted()  returns FALSE (0001ms, 0561ms total)
T5708 013:490 JLINK_IsHalted()  returns FALSE (0000ms, 0560ms total)
T5708 013:591 JLINK_IsHalted()  returns FALSE (0001ms, 0561ms total)
T5708 013:693 JLINK_IsHalted()  returns FALSE (0001ms, 0561ms total)
T5708 013:794 JLINK_IsHalted()  returns FALSE (0000ms, 0560ms total)
T3314 013:895 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0561ms total)
T3314 013:896 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0562ms total)
T3314 013:899 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0563ms total)
T5708 013:900 JLINK_IsHalted()  returns FALSE (0001ms, 0564ms total)
T5708 014:003 JLINK_IsHalted()  returns FALSE (0000ms, 0563ms total)
T5708 014:104 JLINK_IsHalted()  returns FALSE (0001ms, 0564ms total)
T5708 014:205 JLINK_IsHalted()  returns FALSE (0000ms, 0563ms total)
T5708 014:306 JLINK_IsHalted()  returns FALSE (0000ms, 0563ms total)
T3314 014:408 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0564ms total)
T3314 014:409 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0566ms total)
T3314 014:412 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0568ms total)
T5708 014:414 JLINK_IsHalted()  returns FALSE (0001ms, 0569ms total)
T5708 014:515 JLINK_IsHalted()  returns FALSE (0000ms, 0568ms total)
T5708 014:616 JLINK_IsHalted()  returns FALSE (0001ms, 0569ms total)
T5708 014:717 JLINK_IsHalted()  returns FALSE (0001ms, 0569ms total)
T5708 014:819 JLINK_IsHalted()  returns FALSE (0000ms, 0568ms total)
T5708 014:920 JLINK_IsHalted()  returns FALSE (0000ms, 0568ms total)
T3314 015:045 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0569ms total)
T3314 015:046 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0571ms total)
T3314 015:049 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0572ms total)
T5708 015:050 JLINK_IsHalted()  returns FALSE (0001ms, 0573ms total)
T5708 015:153 JLINK_IsHalted()  returns FALSE (0001ms, 0573ms total)
T5708 015:254 JLINK_IsHalted()  returns FALSE (0001ms, 0573ms total)
T5708 015:355 JLINK_IsHalted()  returns FALSE (0001ms, 0573ms total)
T5708 015:456 JLINK_IsHalted()  returns FALSE (0001ms, 0573ms total)
T3314 015:558 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0574ms total)
T3314 015:560 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0575ms total)
T3314 015:562 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0576ms total)
T5708 015:564 JLINK_IsHalted()  returns FALSE (0000ms, 0576ms total)
T5708 015:665 JLINK_IsHalted()  returns FALSE (0000ms, 0576ms total)
T5708 015:766 JLINK_IsHalted()  returns FALSE (0001ms, 0577ms total)
T5708 015:867 JLINK_IsHalted()  returns FALSE (0000ms, 0576ms total)
T5708 015:969 JLINK_IsHalted()  returns FALSE (0001ms, 0577ms total)
T3314 016:071 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0577ms total)
T3314 016:072 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0578ms total)
T3314 016:074 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0580ms total)
T5708 016:076 JLINK_IsHalted()  returns FALSE (0000ms, 0580ms total)
T5708 016:177 JLINK_IsHalted()  returns FALSE (0000ms, 0580ms total)
T5708 016:278 JLINK_IsHalted()  returns FALSE (0000ms, 0580ms total)
T5708 016:379 JLINK_IsHalted()  returns FALSE (0000ms, 0580ms total)
T5708 016:481 JLINK_IsHalted()  returns FALSE (0000ms, 0580ms total)
T3314 016:582 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0581ms total)
T3314 016:583 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0583ms total)
T3314 016:586 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0584ms total)
T5708 016:588 JLINK_IsHalted()  returns FALSE (0001ms, 0585ms total)
T5708 016:689 JLINK_IsHalted()  returns FALSE (0001ms, 0585ms total)
T5708 016:791 JLINK_IsHalted()  returns FALSE (0001ms, 0585ms total)
T5708 016:893 JLINK_IsHalted()  returns FALSE (0001ms, 0585ms total)
T5708 016:994 JLINK_IsHalted()  returns FALSE (0000ms, 0584ms total)
T3314 017:095 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0585ms total)
T3314 017:096 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0586ms total)
T3314 017:099 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0587ms total)
T5708 017:100 JLINK_IsHalted()  returns FALSE (0001ms, 0588ms total)
T5708 017:203 JLINK_IsHalted()  returns FALSE (0001ms, 0588ms total)
T5708 017:304 JLINK_IsHalted()  returns FALSE (0001ms, 0588ms total)
T5708 017:405 JLINK_IsHalted()  returns FALSE (0001ms, 0588ms total)
T5708 017:507 JLINK_IsHalted()  returns FALSE (0000ms, 0587ms total)
T5708 017:608 JLINK_IsHalted()  returns FALSE (0001ms, 0588ms total)
T3314 017:709 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0588ms total)
T3314 017:710 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0589ms total)
T3314 017:713 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0590ms total)
T5708 017:714 JLINK_IsHalted()  returns FALSE (0001ms, 0591ms total)
T5708 017:817 JLINK_IsHalted()  returns FALSE (0000ms, 0590ms total)
T5708 017:918 JLINK_IsHalted()  returns FALSE (0001ms, 0591ms total)
T5708 018:019 JLINK_IsHalted()  returns FALSE (0001ms, 0591ms total)
T5708 018:120 JLINK_IsHalted()  returns FALSE (0000ms, 0590ms total)
T3314 018:222 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0591ms total)
T3314 018:223 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0592ms total)
T3314 018:226 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0594ms total)
T5708 018:228 JLINK_IsHalted()  returns FALSE (0000ms, 0594ms total)
T5708 018:329 JLINK_IsHalted()  returns TRUE (0004ms, 0598ms total)
T5708 018:333 JLINK_Halt()  returns 0x00 (0000ms, 0594ms total)
T5708 018:333 JLINK_IsHalted()  returns TRUE (0000ms, 0594ms total)
T5708 018:333 JLINK_IsHalted()  returns TRUE (0000ms, 0594ms total)
T5708 018:333 JLINK_IsHalted()  returns TRUE (0000ms, 0594ms total)
T5708 018:333 JLINK_ReadReg(R15 (PC))  returns 0x00009998 (0000ms, 0594ms total)
T5708 018:333 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 0594ms total)
T5708 018:333 JLINK_ClrBPEx(BPHandle = 0x00000004)  returns 0x00 (0000ms, 0594ms total)
T5708 018:333 JLINK_ClrBPEx(BPHandle = 0x00000005)  returns 0x00 (0000ms, 0594ms total)
T5708 018:333 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0595ms total)
T5708 018:334 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0596ms total)
T5708 018:335 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0597ms total)
T5708 018:336 JLINK_ReadReg(R0)  returns 0x0000000E (0000ms, 0597ms total)
T5708 018:336 JLINK_ReadReg(R1)  returns 0x0000000E (0000ms, 0597ms total)
T5708 018:336 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0597ms total)
T5708 018:336 JLINK_ReadReg(R3)  returns 0x00000710 (0000ms, 0597ms total)
T5708 018:336 JLINK_ReadReg(R4)  returns 0x0201F8E0 (0000ms, 0597ms total)
T5708 018:336 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 0597ms total)
T5708 018:336 JLINK_ReadReg(R6)  returns 0x0201A9B8 (0000ms, 0597ms total)
T5708 018:336 JLINK_ReadReg(R7)  returns 0x00014D68 (0000ms, 0597ms total)
T5708 018:336 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0597ms total)
T5708 018:336 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0597ms total)
T5708 018:337 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0598ms total)
T5708 018:337 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0598ms total)
T5708 018:337 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0598ms total)
T5708 018:337 JLINK_ReadReg(R13 (SP))  returns 0x02029F10 (0000ms, 0598ms total)
T5708 018:337 JLINK_ReadReg(R14)  returns 0x00003331 (0000ms, 0598ms total)
T5708 018:337 JLINK_ReadReg(R15 (PC))  returns 0x00009998 (0000ms, 0598ms total)
T5708 018:337 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 0598ms total)
T5708 018:337 JLINK_ReadReg(MSP)  returns 0x02029F10 (0000ms, 0598ms total)
T5708 018:337 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0598ms total)
T5708 018:337 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0598ms total)
T3314 018:337 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0599ms total)
T3314 018:338 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0600ms total)
T3314 018:340 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0001ms, 0601ms total)
T3314 018:348 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0602ms total)
T5708 021:470 JLINK_ReadMemEx(0x00009998, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00009980) -- Updating DA cache (64 bytes @ 0x00009980) -- Read from DA cache (2 bytes @ 0x00009998) - Data: 60 5D  returns 0x02 (0002ms, 0604ms total)
T5708 021:472 JLINK_SetBPEx(Addr = 0x0000A21C, Type = 0xFFFFFFF2)  returns 0x00000006 (0000ms, 0604ms total)
T5708 021:472 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) (0005ms, 0609ms total)
T5708 021:578 JLINK_IsHalted()  returns TRUE (0004ms, 0613ms total)
T5708 021:582 JLINK_Halt()  returns 0x00 (0000ms, 0609ms total)
T5708 021:582 JLINK_IsHalted()  returns TRUE (0000ms, 0609ms total)
T5708 021:582 JLINK_IsHalted()  returns TRUE (0000ms, 0609ms total)
T5708 021:582 JLINK_IsHalted()  returns TRUE (0000ms, 0609ms total)
T5708 021:582 JLINK_ReadReg(R15 (PC))  returns 0x0000A21C (0000ms, 0609ms total)
T5708 021:582 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0609ms total)
T5708 021:582 JLINK_ClrBPEx(BPHandle = 0x00000006)  returns 0x00 (0000ms, 0609ms total)
T5708 021:582 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0610ms total)
T5708 021:583 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0611ms total)
T5708 021:584 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0612ms total)
T5708 021:585 JLINK_ReadReg(R0)  returns 0x00000055 (0000ms, 0612ms total)
T5708 021:585 JLINK_ReadReg(R1)  returns 0x00000000 (0000ms, 0612ms total)
T5708 021:585 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0612ms total)
T5708 021:585 JLINK_ReadReg(R3)  returns 0x00000710 (0000ms, 0612ms total)
T5708 021:585 JLINK_ReadReg(R4)  returns 0x0201F8E0 (0000ms, 0612ms total)
T5708 021:585 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 0612ms total)
T5708 021:585 JLINK_ReadReg(R6)  returns 0x0201A9B8 (0000ms, 0612ms total)
T5708 021:585 JLINK_ReadReg(R7)  returns 0x0201C08A (0000ms, 0612ms total)
T5708 021:585 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0612ms total)
T5708 021:585 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0612ms total)
T5708 021:585 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0612ms total)
T5708 021:586 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0613ms total)
T5708 021:586 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0613ms total)
T5708 021:586 JLINK_ReadReg(R13 (SP))  returns 0x02029EF0 (0000ms, 0613ms total)
T5708 021:586 JLINK_ReadReg(R14)  returns 0x0000999F (0000ms, 0613ms total)
T5708 021:586 JLINK_ReadReg(R15 (PC))  returns 0x0000A21C (0000ms, 0613ms total)
T5708 021:586 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0613ms total)
T5708 021:586 JLINK_ReadReg(MSP)  returns 0x02029EF0 (0000ms, 0613ms total)
T5708 021:586 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0613ms total)
T5708 021:586 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0613ms total)
T3314 021:586 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0614ms total)
T3314 021:587 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0615ms total)
T3314 021:589 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0001ms, 0616ms total)
T3314 021:590 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0617ms total)
T3314 021:591 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0618ms total)
T3314 021:598 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0619ms total)
T3314 021:599 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0620ms total)
T3314 021:604 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0621ms total)
T5708 032:456 JLINK_ReadMemEx(0x0000A21C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000A200) -- Updating DA cache (64 bytes @ 0x0000A200) -- Read from DA cache (2 bytes @ 0x0000A21C) - Data: EC 4C  returns 0x02 (0001ms, 0622ms total)
T5708 032:457 JLINK_SetBPEx(Addr = 0x0000A51E, Type = 0xFFFFFFF2)  returns 0x00000007 (0000ms, 0622ms total)
T5708 032:457 JLINK_SetBPEx(Addr = 0x0000A5A2, Type = 0xFFFFFFF2)  returns 0x00000008 (0000ms, 0622ms total)
T5708 032:457 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) (0008ms, 0630ms total)
T5708 032:565 JLINK_IsHalted()  returns TRUE (0004ms, 0634ms total)
T5708 032:569 JLINK_Halt()  returns 0x00 (0000ms, 0630ms total)
T5708 032:569 JLINK_IsHalted()  returns TRUE (0000ms, 0630ms total)
T5708 032:569 JLINK_IsHalted()  returns TRUE (0000ms, 0630ms total)
T5708 032:569 JLINK_IsHalted()  returns TRUE (0000ms, 0630ms total)
T5708 032:569 JLINK_ReadReg(R15 (PC))  returns 0x0000A5A2 (0000ms, 0630ms total)
T5708 032:569 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 0630ms total)
T5708 032:569 JLINK_ClrBPEx(BPHandle = 0x00000007)  returns 0x00 (0000ms, 0630ms total)
T5708 032:569 JLINK_ClrBPEx(BPHandle = 0x00000008)  returns 0x00 (0000ms, 0630ms total)
T5708 032:569 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0631ms total)
T5708 032:570 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0632ms total)
T5708 032:571 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0633ms total)
T5708 032:572 JLINK_ReadReg(R0)  returns 0x0201AB54 (0000ms, 0633ms total)
T5708 032:572 JLINK_ReadReg(R1)  returns 0x00000000 (0000ms, 0633ms total)
T5708 032:572 JLINK_ReadReg(R2)  returns 0x00000002 (0000ms, 0633ms total)
T5708 032:572 JLINK_ReadReg(R3)  returns 0x00000349 (0000ms, 0633ms total)
T5708 032:572 JLINK_ReadReg(R4)  returns 0x02020FA8 (0000ms, 0633ms total)
T5708 032:572 JLINK_ReadReg(R5)  returns 0x00000002 (0000ms, 0633ms total)
T5708 032:572 JLINK_ReadReg(R6)  returns 0x02020FA8 (0000ms, 0633ms total)
T5708 032:572 JLINK_ReadReg(R7)  returns 0x00000001 (0000ms, 0633ms total)
T5708 032:572 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0633ms total)
T5708 032:572 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0633ms total)
T5708 032:572 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0633ms total)
T5708 032:572 JLINK_ReadReg(R11)  returns 0x00000000 (0001ms, 0634ms total)
T5708 032:573 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0634ms total)
T5708 032:573 JLINK_ReadReg(R13 (SP))  returns 0x02029EF0 (0000ms, 0634ms total)
T5708 032:573 JLINK_ReadReg(R14)  returns 0x0000999F (0000ms, 0634ms total)
T5708 032:573 JLINK_ReadReg(R15 (PC))  returns 0x0000A5A2 (0000ms, 0634ms total)
T5708 032:573 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 0634ms total)
T5708 032:573 JLINK_ReadReg(MSP)  returns 0x02029EF0 (0000ms, 0634ms total)
T5708 032:573 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0634ms total)
T5708 032:573 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0634ms total)
T3314 032:573 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0635ms total)
T3314 032:574 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0636ms total)
T3314 032:576 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0001ms, 0637ms total)
T3314 032:577 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 08 00 00 00  returns 0x04 (0001ms, 0638ms total)
T3314 032:579 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 08 00 00 00  returns 0x04 (0001ms, 0639ms total)
T3314 032:580 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0641ms total)
T5708 035:002 JLINK_ReadMemEx(0x0000A5A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000A580) -- Updating DA cache (64 bytes @ 0x0000A580) -- Read from DA cache (2 bytes @ 0x0000A5A2) - Data: F8 B2  returns 0x02 (0002ms, 0643ms total)
T5708 035:004 JLINK_Step() -- Read from DA cache (2 bytes @ 0x0000A5A2) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0005ms, 0648ms total)
T5708 035:009 JLINK_ReadReg(R15 (PC))  returns 0x0000A5A4 (0000ms, 0648ms total)
T5708 035:009 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 0648ms total)
T5708 035:010 JLINK_SetBPEx(Addr = 0x0000A51E, Type = 0xFFFFFFF2)  returns 0x00000009 (0000ms, 0649ms total)
T5708 035:010 JLINK_SetBPEx(Addr = 0x0000A5A2, Type = 0xFFFFFFF2)  returns 0x0000000A (0000ms, 0649ms total)
T5708 035:010 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0006ms, 0655ms total)
T5708 035:118 JLINK_IsHalted()  returns FALSE (0000ms, 0655ms total)
T5708 035:219 JLINK_IsHalted()  returns FALSE (0000ms, 0655ms total)
T5708 035:320 JLINK_IsHalted()  returns FALSE (0000ms, 0655ms total)
T5708 035:421 JLINK_IsHalted()  returns FALSE (0001ms, 0656ms total)
T3314 035:523 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0656ms total)
T3314 035:524 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0658ms total)
T3314 035:526 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0001ms, 0659ms total)
T3314 035:527 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0002ms, 0661ms total)
T3314 035:530 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0662ms total)
T3314 035:531 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0663ms total)
T5708 035:532 JLINK_IsHalted()  returns FALSE (0001ms, 0664ms total)
T5708 035:634 JLINK_IsHalted()  returns FALSE (0001ms, 0664ms total)
T5708 035:735 JLINK_IsHalted()  returns FALSE (0001ms, 0664ms total)
T5708 035:836 JLINK_IsHalted()  returns FALSE (0001ms, 0664ms total)
T5708 035:938 JLINK_IsHalted()  returns FALSE (0001ms, 0664ms total)
T3314 036:039 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0664ms total)
T3314 036:040 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0665ms total)
T3314 036:041 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0002ms, 0667ms total)
T3314 036:043 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0668ms total)
T3314 036:045 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0669ms total)
T3314 036:047 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0670ms total)
T5708 036:048 JLINK_IsHalted()  returns FALSE (0001ms, 0671ms total)
T5708 036:150 JLINK_IsHalted()  returns FALSE (0001ms, 0671ms total)
T3314 036:193 JLINK_ClrBPEx(BPHandle = 0x0000000A) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002014)  returns 0x00 (0006ms, 0676ms total)
T5708 036:252 JLINK_IsHalted()  returns FALSE (0001ms, 0677ms total)
T5708 036:353 JLINK_IsHalted()  returns FALSE (0001ms, 0677ms total)
T5708 036:454 JLINK_IsHalted()  returns FALSE (0000ms, 0676ms total)
T3314 036:555 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0677ms total)
T3314 036:556 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0678ms total)
T3314 036:557 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0001ms, 0679ms total)
T3314 036:558 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0680ms total)
T3314 036:560 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0681ms total)
T3314 036:561 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0682ms total)
T5708 036:563 JLINK_IsHalted()  returns FALSE (0000ms, 0682ms total)
T5708 036:665 JLINK_IsHalted()  returns FALSE (0001ms, 0683ms total)
T5708 036:766 JLINK_IsHalted()  returns FALSE (0001ms, 0683ms total)
T5708 036:867 JLINK_IsHalted()  returns FALSE (0001ms, 0683ms total)
T5708 036:968 JLINK_IsHalted()  returns FALSE (0000ms, 0682ms total)
T3314 037:070 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0683ms total)
T3314 037:071 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0684ms total)
T3314 037:072 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0001ms, 0685ms total)
T3314 037:073 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0686ms total)
T3314 037:075 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0687ms total)
T3314 037:076 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0688ms total)
T5708 037:078 JLINK_IsHalted()  returns FALSE (0001ms, 0689ms total)
T5708 037:181 JLINK_IsHalted()  returns FALSE (0000ms, 0689ms total)
T5708 037:282 JLINK_IsHalted()  returns FALSE (0000ms, 0689ms total)
T5708 037:383 JLINK_IsHalted()  returns FALSE (0000ms, 0689ms total)
T5708 037:484 JLINK_IsHalted()  returns FALSE (0000ms, 0689ms total)
T3314 037:586 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0690ms total)
T3314 037:587 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0691ms total)
T3314 037:588 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0002ms, 0693ms total)
T3314 037:590 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0694ms total)
T3314 037:591 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0695ms total)
T3314 037:592 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0697ms total)
T5708 037:594 JLINK_IsHalted()  returns FALSE (0001ms, 0698ms total)
T5708 037:695 JLINK_IsHalted()  returns FALSE (0000ms, 0697ms total)
T5708 037:796 JLINK_IsHalted()  returns FALSE (0001ms, 0698ms total)
T5708 037:897 JLINK_IsHalted()  returns FALSE (0001ms, 0698ms total)
T5708 037:999 JLINK_IsHalted()  returns FALSE (0001ms, 0698ms total)
T3314 038:100 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0698ms total)
T3314 038:101 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0699ms total)
T3314 038:102 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0001ms, 0700ms total)
T3314 038:103 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0701ms total)
T3314 038:105 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0702ms total)
T3314 038:106 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0703ms total)
T5708 038:108 JLINK_IsHalted()  returns FALSE (0001ms, 0704ms total)
T5708 038:210 JLINK_IsHalted()  returns FALSE (0001ms, 0705ms total)
T5708 038:311 JLINK_IsHalted()  returns FALSE (0001ms, 0705ms total)
T5708 038:413 JLINK_IsHalted()  returns FALSE (0000ms, 0704ms total)
T5708 038:514 JLINK_IsHalted()  returns FALSE (0001ms, 0705ms total)
T3314 038:615 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0705ms total)
T3314 038:616 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0706ms total)
T3314 038:617 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0001ms, 0707ms total)
T3314 038:618 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0708ms total)
T3314 038:620 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0709ms total)
T3314 038:621 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0710ms total)
T5708 038:622 JLINK_IsHalted()  returns FALSE (0001ms, 0711ms total)
T5708 038:725 JLINK_IsHalted()  returns FALSE (0001ms, 0711ms total)
T5708 038:826 JLINK_IsHalted()  returns FALSE (0001ms, 0711ms total)
T5708 038:927 JLINK_IsHalted()  returns FALSE (0000ms, 0710ms total)
T5708 039:028 JLINK_IsHalted()  returns FALSE (0006ms, 0716ms total)
T3314 039:137 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0712ms total)
T3314 039:139 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0713ms total)
T3314 039:140 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0001ms, 0714ms total)
T3314 039:141 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0715ms total)
T3314 039:143 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0716ms total)
T3314 039:144 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0717ms total)
T5708 039:145 JLINK_IsHalted()  returns FALSE (0001ms, 0718ms total)
T5708 039:247 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T5708 039:348 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T5708 039:449 JLINK_IsHalted()  returns FALSE (0001ms, 0718ms total)
T5708 039:551 JLINK_IsHalted()  returns FALSE (0001ms, 0718ms total)
T3314 039:652 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0718ms total)
T3314 039:653 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0719ms total)
T3314 039:655 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0001ms, 0720ms total)
T3314 039:656 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0721ms total)
T3314 039:658 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0722ms total)
T3314 039:659 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0724ms total)
T5708 039:661 JLINK_IsHalted()  returns FALSE (0000ms, 0724ms total)
T5708 039:762 JLINK_IsHalted()  returns FALSE (0001ms, 0725ms total)
T5708 039:864 JLINK_IsHalted()  returns FALSE (0001ms, 0725ms total)
T5708 039:965 JLINK_IsHalted()  returns FALSE (0001ms, 0725ms total)
T5708 040:067 JLINK_IsHalted()  returns FALSE (0001ms, 0725ms total)
T3314 040:168 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0725ms total)
T3314 040:169 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0726ms total)
T3314 040:170 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0002ms, 0728ms total)
T3314 040:172 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0729ms total)
T3314 040:173 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0730ms total)
T3314 040:174 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0731ms total)
T5708 040:176 JLINK_IsHalted()  returns FALSE (0001ms, 0733ms total)
T5708 040:277 JLINK_IsHalted()  returns FALSE (0001ms, 0733ms total)
T5708 040:378 JLINK_IsHalted()  returns FALSE (0001ms, 0733ms total)
T5708 040:480 JLINK_IsHalted()  returns FALSE (0001ms, 0733ms total)
T5708 040:581 JLINK_IsHalted()  returns FALSE (0001ms, 0733ms total)
T3314 040:682 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0733ms total)
T3314 040:683 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0735ms total)
T3314 040:685 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0001ms, 0736ms total)
T3314 040:686 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0737ms total)
T3314 040:688 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0738ms total)
T3314 040:689 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0739ms total)
T5708 040:690 JLINK_IsHalted()  returns FALSE (0001ms, 0740ms total)
T5708 040:793 JLINK_IsHalted()  returns FALSE (0001ms, 0740ms total)
T5708 040:894 JLINK_IsHalted()  returns FALSE (0001ms, 0740ms total)
T5708 040:995 JLINK_IsHalted()  returns FALSE (0001ms, 0740ms total)
T5708 041:096 JLINK_IsHalted()  returns FALSE (0001ms, 0740ms total)
T3314 041:198 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0740ms total)
T3314 041:199 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0741ms total)
T3314 041:200 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0002ms, 0743ms total)
T3314 041:202 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0744ms total)
T3314 041:204 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0745ms total)
T3314 041:205 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0746ms total)
T5708 041:206 JLINK_IsHalted()  returns FALSE (0001ms, 0747ms total)
T5708 041:308 JLINK_IsHalted()  returns FALSE (0001ms, 0747ms total)
T5708 041:409 JLINK_IsHalted()  returns FALSE (0001ms, 0747ms total)
T5708 041:510 JLINK_IsHalted()  returns FALSE (0000ms, 0746ms total)
T5708 041:612 JLINK_IsHalted()  returns FALSE (0001ms, 0747ms total)
T3314 041:713 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0747ms total)
T3314 041:714 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0748ms total)
T3314 041:715 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0001ms, 0749ms total)
T3314 041:716 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0750ms total)
T3314 041:718 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0751ms total)
T3314 041:719 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0752ms total)
T5708 041:720 JLINK_IsHalted()  returns FALSE (0001ms, 0753ms total)
T5708 041:823 JLINK_IsHalted()  returns FALSE (0001ms, 0753ms total)
T5708 041:924 JLINK_IsHalted()  returns FALSE (0000ms, 0752ms total)
T5708 042:025 JLINK_IsHalted()  returns FALSE (0001ms, 0753ms total)
T5708 042:127 JLINK_IsHalted()  returns FALSE (0000ms, 0752ms total)
T3314 042:228 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0753ms total)
T3314 042:229 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0754ms total)
T3314 042:230 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0002ms, 0756ms total)
T3314 042:232 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0757ms total)
T3314 042:233 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0758ms total)
T3314 042:234 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0760ms total)
T5708 042:236 JLINK_IsHalted()  returns FALSE (0000ms, 0760ms total)
T5708 042:338 JLINK_IsHalted()  returns FALSE (0001ms, 0761ms total)
T5708 042:439 JLINK_Halt()  returns 0x00 (0004ms, 0764ms total)
T5708 042:443 JLINK_IsHalted()  returns TRUE (0000ms, 0764ms total)
T5708 042:443 JLINK_IsHalted()  returns TRUE (0000ms, 0764ms total)
T5708 042:443 JLINK_IsHalted()  returns TRUE (0000ms, 0764ms total)
T5708 042:443 JLINK_ReadReg(R15 (PC))  returns 0x000000E2 (0000ms, 0764ms total)
T5708 042:443 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 0764ms total)
T5708 042:443 JLINK_ClrBPEx(BPHandle = 0x00000009)  returns 0x00 (0000ms, 0764ms total)
T5708 042:443 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 0x01 (0001ms, 0765ms total)
T5708 042:444 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0766ms total)
T5708 042:445 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0767ms total)
T5708 042:446 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 0767ms total)
T5708 042:446 JLINK_ReadReg(R1)  returns 0x00000002 (0000ms, 0767ms total)
T5708 042:446 JLINK_ReadReg(R2)  returns 0x00000010 (0000ms, 0767ms total)
T5708 042:446 JLINK_ReadReg(R3)  returns 0x00000003 (0000ms, 0767ms total)
T5708 042:446 JLINK_ReadReg(R4)  returns 0x00000001 (0000ms, 0767ms total)
T5708 042:446 JLINK_ReadReg(R5)  returns 0x00000011 (0000ms, 0767ms total)
T5708 042:446 JLINK_ReadReg(R6)  returns 0x00000000 (0000ms, 0767ms total)
T5708 042:446 JLINK_ReadReg(R7)  returns 0x0201FD78 (0000ms, 0767ms total)
T5708 042:446 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0767ms total)
T5708 042:446 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0767ms total)
T5708 042:446 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0767ms total)
T5708 042:446 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0767ms total)
T5708 042:446 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0767ms total)
T5708 042:446 JLINK_ReadReg(R13 (SP))  returns 0x02029F64 (0001ms, 0768ms total)
T5708 042:447 JLINK_ReadReg(R14)  returns 0x0000011B (0000ms, 0768ms total)
T5708 042:447 JLINK_ReadReg(R15 (PC))  returns 0x000000E2 (0000ms, 0768ms total)
T5708 042:447 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 0768ms total)
T5708 042:447 JLINK_ReadReg(MSP)  returns 0x02029F64 (0000ms, 0768ms total)
T5708 042:447 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0768ms total)
T5708 042:447 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0768ms total)
T3314 042:447 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0769ms total)
T3314 042:448 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0770ms total)
T3314 042:449 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0002ms, 0772ms total)
T3314 042:451 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0773ms total)
T3314 042:453 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0000ms, 0773ms total)
T3314 042:453 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0775ms total)
T3314 042:458 JLINK_ReadMemEx(0x000000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x000000C0) -- Updating DA cache (64 bytes @ 0x000000C0) -- Read from DA cache (2 bytes @ 0x000000E2) - Data: 0D 46  returns 0x02 (0002ms, 0777ms total)
T3314 042:460 JLINK_ReadMemEx(0x000000E4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00000100) -- Updating DA cache (64 bytes @ 0x00000100) -- Read from DA cache (60 bytes @ 0x000000E4) - Data: D5 40 9D 42 05 D3 1D 46 95 40 49 1B 25 46 95 40 ...  returns 0x3C (0001ms, 0778ms total)
T3314 042:461 JLINK_ReadMemEx(0x000000E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from DA cache (2 bytes @ 0x000000E4) - Data: D5 40  returns 0x02 (0000ms, 0778ms total)
T3314 043:025 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0778ms total)
T3314 043:025 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0074ms, 0852ms total)
T3314 043:099 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0852ms total)
T3314 043:099 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0852ms total)
T3314 043:101 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0002ms, 0854ms total)
T3314 043:103 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0000ms, 0854ms total)
T3314 043:104 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0000ms, 0855ms total)
T3314 043:141 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 0856ms total)
T3314 043:141 JLINK_ReadReg(R1)  returns 0x00000002 (0000ms, 0856ms total)
T3314 043:141 JLINK_ReadReg(R2)  returns 0x00000010 (0000ms, 0856ms total)
T3314 043:141 JLINK_ReadReg(R3)  returns 0x00000003 (0000ms, 0856ms total)
T3314 043:141 JLINK_ReadReg(R4)  returns 0x00000001 (0000ms, 0856ms total)
T3314 043:141 JLINK_ReadReg(R5)  returns 0x00000011 (0000ms, 0856ms total)
T3314 043:141 JLINK_ReadReg(R6)  returns 0x00000000 (0000ms, 0856ms total)
T3314 043:141 JLINK_ReadReg(R7)  returns 0x0201FD78 (0000ms, 0856ms total)
T3314 043:141 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0856ms total)
T3314 043:141 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0856ms total)
T3314 043:141 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0856ms total)
T3314 043:141 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0856ms total)
T3314 043:141 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0856ms total)
T3314 043:141 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0856ms total)
T3314 043:141 JLINK_ReadReg(R14)  returns 0x0000011B (0000ms, 0856ms total)
T3314 043:141 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0856ms total)
T3314 043:142 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0857ms total)
T3314 043:142 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0857ms total)
T3314 043:142 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0857ms total)
T3314 043:142 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0857ms total)
T3314 043:142 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0858ms total)
T3314 043:143 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0859ms total)
T3314 043:144 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0001ms, 0860ms total)
T3314 043:145 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0861ms total)
T3314 043:147 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0862ms total)
T3314 043:148 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0863ms total)
T5708 043:589 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0864ms total)
T5708 043:590 JLINK_SetBPEx(Addr = 0x0000A51E, Type = 0xFFFFFFF2)  returns 0x0000000B (0000ms, 0864ms total)
T5708 043:590 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0006ms, 0870ms total)
T5708 043:697 JLINK_IsHalted()  returns FALSE (0000ms, 0870ms total)
T5708 043:798 JLINK_IsHalted()  returns FALSE (0001ms, 0871ms total)
T5708 043:900 JLINK_IsHalted()  returns FALSE (0001ms, 0871ms total)
T5708 044:001 JLINK_IsHalted()  returns FALSE (0001ms, 0871ms total)
T5708 044:102 JLINK_IsHalted()  returns FALSE (0001ms, 0871ms total)
T3314 044:203 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0871ms total)
T3314 044:204 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0873ms total)
T3314 044:206 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0874ms total)
T3314 044:208 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0875ms total)
T3314 044:209 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0876ms total)
T3314 044:210 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0877ms total)
T5708 044:212 JLINK_IsHalted()  returns FALSE (0001ms, 0878ms total)
T5708 044:314 JLINK_IsHalted()  returns FALSE (0001ms, 0878ms total)
T5708 044:415 JLINK_IsHalted()  returns FALSE (0001ms, 0878ms total)
T5708 044:516 JLINK_IsHalted()  returns FALSE (0000ms, 0877ms total)
T5708 044:618 JLINK_IsHalted()  returns FALSE (0000ms, 0877ms total)
T3314 044:719 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0878ms total)
T3314 044:720 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0880ms total)
T3314 044:722 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0881ms total)
T3314 044:723 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0882ms total)
T3314 044:724 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0883ms total)
T3314 044:725 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0885ms total)
T5708 044:727 JLINK_IsHalted()  returns FALSE (0001ms, 0886ms total)
T5708 044:828 JLINK_IsHalted()  returns FALSE (0001ms, 0886ms total)
T5708 044:929 JLINK_IsHalted()  returns FALSE (0001ms, 0886ms total)
T5708 045:031 JLINK_IsHalted()  returns FALSE (0001ms, 0886ms total)
T5708 045:132 JLINK_IsHalted()  returns FALSE (0001ms, 0886ms total)
T3314 045:233 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0886ms total)
T3314 045:234 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0887ms total)
T3314 045:235 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0888ms total)
T3314 045:236 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0889ms total)
T3314 045:238 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0890ms total)
T3314 045:239 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0891ms total)
T5708 045:240 JLINK_IsHalted()  returns FALSE (0001ms, 0892ms total)
T5708 045:342 JLINK_IsHalted()  returns FALSE (0001ms, 0892ms total)
T5708 045:444 JLINK_IsHalted()  returns FALSE (0000ms, 0891ms total)
T5708 045:545 JLINK_IsHalted()  returns FALSE (0000ms, 0891ms total)
T5708 045:646 JLINK_IsHalted()  returns FALSE (0001ms, 0892ms total)
T3314 045:747 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0892ms total)
T3314 045:748 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0893ms total)
T3314 045:750 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0894ms total)
T3314 045:751 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0895ms total)
T3314 045:753 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0000ms, 0895ms total)
T3314 045:753 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0897ms total)
T5708 045:755 JLINK_IsHalted()  returns FALSE (0001ms, 0898ms total)
T5708 045:857 JLINK_IsHalted()  returns FALSE (0007ms, 0904ms total)
T5708 045:964 JLINK_IsHalted()  returns FALSE (0001ms, 0898ms total)
T3314 046:057 JLINK_SetBPEx(Addr = 0x0000A5A2, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C)  returns 0x0000000C (0002ms, 0899ms total)
T5708 046:066 JLINK_IsHalted()  returns FALSE (0001ms, 0900ms total)
T5708 046:167 JLINK_IsHalted()  returns FALSE (0001ms, 0900ms total)
T3314 046:269 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0900ms total)
T3314 046:270 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0901ms total)
T3314 046:271 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0903ms total)
T3314 046:273 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0904ms total)
T3314 046:274 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0905ms total)
T3314 046:275 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0907ms total)
T5708 046:277 JLINK_IsHalted()  returns FALSE (0000ms, 0907ms total)
T5708 046:379 JLINK_IsHalted()  returns FALSE (0000ms, 0907ms total)
T5708 046:480 JLINK_IsHalted()  returns FALSE (0000ms, 0907ms total)
T5708 046:581 JLINK_IsHalted()  returns FALSE (0001ms, 0908ms total)
T5708 046:682 JLINK_IsHalted()  returns FALSE (0001ms, 0908ms total)
T3314 046:784 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0908ms total)
T3314 046:785 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0909ms total)
T3314 046:786 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0911ms total)
T3314 046:788 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0912ms total)
T3314 046:789 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0913ms total)
T3314 046:790 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0915ms total)
T5708 046:792 JLINK_IsHalted()  returns FALSE (0001ms, 0916ms total)
T5708 046:893 JLINK_IsHalted()  returns FALSE (0001ms, 0916ms total)
T5708 046:994 JLINK_IsHalted()  returns FALSE (0000ms, 0915ms total)
T5708 047:096 JLINK_IsHalted()  returns FALSE (0001ms, 0916ms total)
T5708 047:197 JLINK_IsHalted()  returns FALSE (0000ms, 0915ms total)
T3314 047:299 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0916ms total)
T3314 047:300 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0917ms total)
T3314 047:301 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0919ms total)
T3314 047:303 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0920ms total)
T3314 047:304 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0921ms total)
T3314 047:305 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0923ms total)
T5708 047:307 JLINK_IsHalted()  returns FALSE (0001ms, 0924ms total)
T5708 047:408 JLINK_IsHalted()  returns FALSE (0001ms, 0924ms total)
T5708 047:509 JLINK_IsHalted()  returns FALSE (0001ms, 0924ms total)
T5708 047:610 JLINK_IsHalted()  returns FALSE (0001ms, 0924ms total)
T5708 047:712 JLINK_IsHalted()  returns FALSE (0000ms, 0923ms total)
T5708 047:813 JLINK_IsHalted()  returns FALSE (0001ms, 0924ms total)
T3314 047:867 JLINK_ClrBPEx(BPHandle = 0x0000000C) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002014)  returns 0x00 (0006ms, 0929ms total)
T3314 047:914 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0930ms total)
T3314 047:915 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0932ms total)
T3314 047:917 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0933ms total)
T3314 047:918 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0934ms total)
T3314 047:919 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0935ms total)
T3314 047:920 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0937ms total)
T5708 047:922 JLINK_IsHalted()  returns FALSE (0001ms, 0938ms total)
T5708 048:023 JLINK_IsHalted()  returns FALSE (0002ms, 0939ms total)
T5708 048:125 JLINK_IsHalted()  returns FALSE (0001ms, 0938ms total)
T5708 048:226 JLINK_IsHalted()  returns FALSE (0000ms, 0937ms total)
T5708 048:327 JLINK_IsHalted()  returns FALSE (0001ms, 0938ms total)
T3314 048:429 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0938ms total)
T3314 048:430 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0939ms total)
T3314 048:431 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0941ms total)
T3314 048:433 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0942ms total)
T3314 048:434 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0943ms total)
T3314 048:435 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0945ms total)
T5708 048:437 JLINK_IsHalted()  returns FALSE (0001ms, 0946ms total)
T3314 048:463 JLINK_ReadMemEx(0x0201AB5A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201AB5A) - Data: 00  returns 0x01 (0001ms, 0946ms total)
T3314 048:464 JLINK_ReadMemEx(0x02020FF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02020FF8) - Data: 00 00  returns 0x02 (0001ms, 0947ms total)
T3314 048:465 JLINK_ReadMemEx(0x02020FFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02020FFA) - Data: 00 00  returns 0x02 (0001ms, 0948ms total)
T3314 048:466 JLINK_ReadMemEx(0x02020FFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02020FFC) - Data: 00 00  returns 0x02 (0001ms, 0949ms total)
T3314 048:467 JLINK_ReadMemEx(0x02020FFE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02020FFE) - Data: 00 00  returns 0x02 (0001ms, 0950ms total)
T3314 048:468 JLINK_ReadMemEx(0x02021000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021000) - Data: 00 00  returns 0x02 (0001ms, 0951ms total)
T3314 048:469 JLINK_ReadMemEx(0x02021002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021002) - Data: 00 00  returns 0x02 (0001ms, 0952ms total)
T3314 048:470 JLINK_ReadMemEx(0x02021004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021004) - Data: 00 00  returns 0x02 (0001ms, 0953ms total)
T3314 048:471 JLINK_ReadMemEx(0x02021006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021006) - Data: 00 00  returns 0x02 (0001ms, 0954ms total)
T3314 048:472 JLINK_ReadMemEx(0x02021008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021008) - Data: 00 00  returns 0x02 (0001ms, 0955ms total)
T3314 048:473 JLINK_ReadMemEx(0x0202100A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202100A) - Data: 00 00  returns 0x02 (0001ms, 0956ms total)
T3314 048:474 JLINK_ReadMemEx(0x0202100C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202100C) - Data: 00 00  returns 0x02 (0001ms, 0957ms total)
T3314 048:475 JLINK_ReadMemEx(0x0202100E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202100E) - Data: 00 00  returns 0x02 (0001ms, 0958ms total)
T3314 048:476 JLINK_ReadMemEx(0x02021010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021010) - Data: 00 00  returns 0x02 (0001ms, 0959ms total)
T3314 048:477 JLINK_ReadMemEx(0x02021012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021012) - Data: 00 00  returns 0x02 (0001ms, 0960ms total)
T3314 048:478 JLINK_ReadMemEx(0x02021014, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021014) - Data: 00 00  returns 0x02 (0001ms, 0961ms total)
T3314 048:479 JLINK_ReadMemEx(0x02021016, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021016) - Data: 00 00  returns 0x02 (0001ms, 0962ms total)
T3314 048:480 JLINK_ReadMemEx(0x02021018, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021018) - Data: 00 00  returns 0x02 (0001ms, 0963ms total)
T3314 048:481 JLINK_ReadMemEx(0x0202101A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202101A) - Data: 00 00  returns 0x02 (0001ms, 0964ms total)
T3314 048:482 JLINK_ReadMemEx(0x0202101C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202101C) - Data: 00 00  returns 0x02 (0001ms, 0965ms total)
T3314 048:483 JLINK_ReadMemEx(0x0202101E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202101E) - Data: 00 00  returns 0x02 (0001ms, 0966ms total)
T3314 048:484 JLINK_ReadMemEx(0x02021020, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021020) - Data: 00 00  returns 0x02 (0001ms, 0967ms total)
T3314 048:485 JLINK_ReadMemEx(0x02021022, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021022) - Data: 00 00  returns 0x02 (0001ms, 0968ms total)
T3314 048:486 JLINK_ReadMemEx(0x02021024, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021024) - Data: 00 00  returns 0x02 (0001ms, 0969ms total)
T3314 048:487 JLINK_ReadMemEx(0x02021026, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021026) - Data: 00 00  returns 0x02 (0001ms, 0970ms total)
T3314 048:488 JLINK_ReadMemEx(0x02021028, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021028) - Data: 00 00  returns 0x02 (0001ms, 0971ms total)
T3314 048:489 JLINK_ReadMemEx(0x0202102A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202102A) - Data: 00 00  returns 0x02 (0001ms, 0972ms total)
T3314 048:490 JLINK_ReadMemEx(0x0202102C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202102C) - Data: 00 00  returns 0x02 (0001ms, 0973ms total)
T3314 048:491 JLINK_ReadMemEx(0x0202102E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202102E) - Data: 00 00  returns 0x02 (0001ms, 0974ms total)
T3314 048:492 JLINK_ReadMemEx(0x02021030, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021030) - Data: 00 00  returns 0x02 (0001ms, 0975ms total)
T3314 048:493 JLINK_ReadMemEx(0x02021032, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021032) - Data: 00 00  returns 0x02 (0001ms, 0976ms total)
T3314 048:494 JLINK_ReadMemEx(0x02021034, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021034) - Data: 00 00  returns 0x02 (0001ms, 0977ms total)
T3314 048:495 JLINK_ReadMemEx(0x02021036, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021036) - Data: 00 00  returns 0x02 (0001ms, 0978ms total)
T3314 048:496 JLINK_ReadMemEx(0x02021038, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021038) - Data: 00 00  returns 0x02 (0001ms, 0979ms total)
T3314 048:497 JLINK_ReadMemEx(0x0202103A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202103A) - Data: 00 00  returns 0x02 (0001ms, 0980ms total)
T3314 048:498 JLINK_ReadMemEx(0x0202103C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202103C) - Data: 00 00  returns 0x02 (0001ms, 0981ms total)
T3314 048:499 JLINK_ReadMemEx(0x0202103E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202103E) - Data: 00 00  returns 0x02 (0001ms, 0982ms total)
T3314 048:500 JLINK_ReadMemEx(0x02021040, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021040) - Data: 00 00  returns 0x02 (0001ms, 0983ms total)
T3314 048:501 JLINK_ReadMemEx(0x02021042, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021042) - Data: 00 00  returns 0x02 (0001ms, 0984ms total)
T3314 048:502 JLINK_ReadMemEx(0x02021044, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021044) - Data: 00 00  returns 0x02 (0001ms, 0985ms total)
T3314 048:503 JLINK_ReadMemEx(0x02021046, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02021046) - Data: 00 00  returns 0x02 (0001ms, 0986ms total)
T5708 048:538 JLINK_IsHalted()  returns FALSE (0001ms, 0987ms total)
T5708 048:639 JLINK_IsHalted()  returns FALSE (0001ms, 0987ms total)
T5708 048:740 JLINK_IsHalted()  returns FALSE (0001ms, 0987ms total)
T5708 048:842 JLINK_IsHalted()  returns FALSE (0001ms, 0987ms total)
T3314 048:943 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0987ms total)
T3314 048:944 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0988ms total)
T3314 048:945 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0989ms total)
T3314 048:946 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0990ms total)
T3314 048:948 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0991ms total)
T3314 048:949 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0992ms total)
T5708 048:951 JLINK_IsHalted()  returns FALSE (0000ms, 0992ms total)
T5708 049:052 JLINK_IsHalted()  returns FALSE (0001ms, 0993ms total)
T5708 049:153 JLINK_IsHalted()  returns FALSE (0001ms, 0993ms total)
T5708 049:255 JLINK_IsHalted()  returns FALSE (0001ms, 0993ms total)
T5708 049:356 JLINK_IsHalted()  returns FALSE (0001ms, 0993ms total)
T3314 049:457 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0993ms total)
T3314 049:458 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0994ms total)
T3314 049:459 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 31 31 31 2E 31 39 38 2E 36 30 2E 36 00 00 00 00 ...  returns 0x20 (0002ms, 0996ms total)
T3314 049:461 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0997ms total)
T3314 049:463 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 0998ms total)
T3314 049:464 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0999ms total)
T5708 049:465 JLINK_IsHalted()  returns FALSE (0001ms, 1000ms total)
T5708 049:568 JLINK_IsHalted()  returns FALSE (0000ms, 0999ms total)
T5708 049:669 JLINK_IsHalted()  returns FALSE (0000ms, 0999ms total)
T5708 049:770 JLINK_IsHalted()  returns FALSE (0000ms, 0999ms total)
T5708 049:871 JLINK_IsHalted()  returns FALSE (0000ms, 0999ms total)
T3314 049:973 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1000ms total)
T3314 049:974 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1001ms total)
T3314 049:975 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 31 31 31 2E 31 39 38 2E 36 30 2E 36 00 00 00 00 ...  returns 0x20 (0001ms, 1002ms total)
T3314 049:976 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1003ms total)
T3314 049:978 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1004ms total)
T3314 049:979 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1005ms total)
T5708 049:980 JLINK_IsHalted()  returns FALSE (0001ms, 1006ms total)
T5708 050:082 JLINK_IsHalted()  returns FALSE (0000ms, 1005ms total)
T5708 050:184 JLINK_IsHalted()  returns FALSE (0000ms, 1005ms total)
T5708 050:285 JLINK_IsHalted()  returns FALSE (0001ms, 1006ms total)
T5708 050:386 JLINK_IsHalted()  returns FALSE (0000ms, 1005ms total)
T3314 050:487 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1006ms total)
T3314 050:488 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1007ms total)
T3314 050:489 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 31 31 31 2E 31 39 38 2E 36 30 2E 36 00 00 00 00 ...  returns 0x20 (0002ms, 1009ms total)
T3314 050:491 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1010ms total)
T3314 050:492 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1011ms total)
T3314 050:493 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1013ms total)
T5708 050:495 JLINK_IsHalted()  returns FALSE (0001ms, 1014ms total)
T5708 050:597 JLINK_IsHalted()  returns FALSE (0001ms, 1014ms total)
T3314 050:601 JLINK_ClrBPEx(BPHandle = 0x0000000B) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002014)  returns 0x00 (0004ms, 1017ms total)
T5708 050:698 JLINK_IsHalted()  returns FALSE (0001ms, 1018ms total)
T5708 050:799 JLINK_IsHalted()  returns FALSE (0001ms, 1018ms total)
T5708 050:900 JLINK_IsHalted()  returns FALSE (0000ms, 1017ms total)
T3314 051:002 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1018ms total)
T3314 051:003 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1019ms total)
T3314 051:004 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 31 31 31 2E 31 39 38 2E 36 30 2E 36 00 00 00 00 ...  returns 0x20 (0001ms, 1020ms total)
T3314 051:005 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1021ms total)
T3314 051:007 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1022ms total)
T3314 051:008 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1023ms total)
T5708 051:009 JLINK_IsHalted()  returns FALSE (0001ms, 1024ms total)
T5708 051:111 JLINK_IsHalted()  returns FALSE (0000ms, 1023ms total)
T5708 051:212 JLINK_IsHalted()  returns FALSE (0001ms, 1024ms total)
T5708 051:314 JLINK_IsHalted()  returns FALSE (0000ms, 1023ms total)
T5708 051:415 JLINK_IsHalted()  returns FALSE (0001ms, 1024ms total)
T5708 051:516 JLINK_IsHalted()  returns FALSE (0000ms, 1023ms total)
T3314 051:617 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1025ms total)
T3314 051:619 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1026ms total)
T3314 051:620 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 31 31 31 2E 31 39 38 2E 36 30 2E 36 00 00 00 00 ...  returns 0x20 (0001ms, 1027ms total)
T3314 051:621 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1028ms total)
T3314 051:623 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1029ms total)
T3314 051:624 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1030ms total)
T5708 051:625 JLINK_IsHalted()  returns FALSE (0001ms, 1031ms total)
T5708 051:728 JLINK_IsHalted()  returns FALSE (0000ms, 1030ms total)
T5708 051:829 JLINK_IsHalted()  returns FALSE (0001ms, 1031ms total)
T5708 051:930 JLINK_IsHalted()  returns FALSE (0000ms, 1030ms total)
T5708 052:031 JLINK_IsHalted()  returns FALSE (0000ms, 1030ms total)
T3314 052:133 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1031ms total)
T3314 052:134 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1032ms total)
T3314 052:135 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 31 31 31 2E 31 39 38 2E 36 30 2E 36 00 00 00 00 ...  returns 0x20 (0002ms, 1034ms total)
T3314 052:137 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0000ms, 1034ms total)
T3314 052:138 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1035ms total)
T3314 052:139 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1037ms total)
T5708 052:141 JLINK_IsHalted()  returns FALSE (0001ms, 1038ms total)
T5708 052:243 JLINK_IsHalted()  returns FALSE (0000ms, 1037ms total)
T5708 052:344 JLINK_IsHalted()  returns FALSE (0001ms, 1038ms total)
T5708 052:445 JLINK_IsHalted()  returns FALSE (0001ms, 1038ms total)
T5708 052:547 JLINK_IsHalted()  returns FALSE (0001ms, 1038ms total)
T3314 052:648 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1038ms total)
T3314 052:649 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1039ms total)
T3314 052:650 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 31 31 31 2E 31 39 38 2E 36 30 2E 36 00 00 00 00 ...  returns 0x20 (0002ms, 1041ms total)
T3314 052:652 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1042ms total)
T3314 052:653 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1043ms total)
T3314 052:654 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1045ms total)
T5708 052:656 JLINK_IsHalted()  returns FALSE (0000ms, 1045ms total)
T5708 052:758 JLINK_IsHalted()  returns FALSE (0000ms, 1045ms total)
T5708 052:859 JLINK_IsHalted()  returns FALSE (0000ms, 1045ms total)
T5708 052:960 JLINK_IsHalted()  returns FALSE (0000ms, 1045ms total)
T5708 053:061 JLINK_IsHalted()  returns FALSE (0000ms, 1045ms total)
T3314 053:163 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1046ms total)
T3314 053:164 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1047ms total)
T3314 053:165 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 31 31 31 2E 31 39 38 2E 36 30 2E 36 00 00 00 00 ...  returns 0x20 (0002ms, 1049ms total)
T3314 053:167 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1050ms total)
T3314 053:168 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1051ms total)
T3314 053:169 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1052ms total)
T5708 053:171 JLINK_IsHalted()  returns FALSE (0001ms, 1053ms total)
T5708 053:272 JLINK_IsHalted()  returns FALSE (0000ms, 1052ms total)
T5708 053:374 JLINK_IsHalted()  returns FALSE (0001ms, 1053ms total)
T3314 053:384 JLINK_SetBPEx(Addr = 0x0000A51E, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008)  returns 0x0000000D (0001ms, 1053ms total)
T5708 053:476 JLINK_IsHalted()  returns FALSE (0001ms, 1054ms total)
T5708 053:577 JLINK_IsHalted()  returns FALSE (0000ms, 1053ms total)
T3314 053:679 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1054ms total)
T3314 053:680 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1055ms total)
T3314 053:681 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 31 31 31 2E 31 39 38 2E 36 30 2E 36 00 00 00 00 ...  returns 0x20 (0001ms, 1056ms total)
T3314 053:682 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1057ms total)
T3314 053:684 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1058ms total)
T3314 053:685 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1059ms total)
T5708 053:686 JLINK_IsHalted()  returns FALSE (0001ms, 1060ms total)
T5708 053:788 JLINK_IsHalted()  returns FALSE (0001ms, 1060ms total)
T5708 053:889 JLINK_IsHalted()  returns FALSE (0001ms, 1060ms total)
T5708 053:990 JLINK_IsHalted()  returns FALSE (0001ms, 1060ms total)
T5708 054:092 JLINK_IsHalted()  returns FALSE (0000ms, 1059ms total)
T3314 054:193 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1061ms total)
T3314 054:195 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1062ms total)
T3314 054:196 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 31 31 31 2E 31 39 38 2E 36 30 2E 36 00 00 00 00 ...  returns 0x20 (0001ms, 1063ms total)
T3314 054:197 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1064ms total)
T3314 054:199 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1065ms total)
T3314 054:200 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1066ms total)
T5708 054:201 JLINK_IsHalted()  returns FALSE (0001ms, 1067ms total)
T5708 054:303 JLINK_IsHalted()  returns FALSE (0001ms, 1067ms total)
T5708 054:405 JLINK_IsHalted()  returns FALSE (0001ms, 1067ms total)
T5708 054:506 JLINK_IsHalted()  returns FALSE (0001ms, 1067ms total)
T5708 054:607 JLINK_IsHalted()  returns FALSE (0000ms, 1066ms total)
T3314 054:681 JLINK_SetBPEx(Addr = 0x0000A5A2, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C)  returns 0x0000000E (0002ms, 1068ms total)
T3314 054:708 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1069ms total)
T3314 054:709 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1070ms total)
T3314 054:710 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 31 31 31 2E 31 39 38 2E 36 30 2E 36 00 00 00 00 ...  returns 0x20 (0001ms, 1071ms total)
T3314 054:712 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0000ms, 1071ms total)
T3314 054:713 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1072ms total)
T3314 054:714 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1073ms total)
T5708 054:715 JLINK_IsHalted()  returns FALSE (0001ms, 1074ms total)
T5708 054:818 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T5708 054:919 JLINK_IsHalted()  returns FALSE (0001ms, 1074ms total)
T5708 055:020 JLINK_IsHalted()  returns FALSE (0001ms, 1074ms total)
T5708 055:122 JLINK_IsHalted()  returns FALSE (0000ms, 1073ms total)
T3314 055:223 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1074ms total)
T3314 055:224 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1075ms total)
T3314 055:226 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 31 31 31 2E 31 39 38 2E 36 30 2E 36 00 00 00 00 ...  returns 0x20 (0001ms, 1076ms total)
T3314 055:227 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1077ms total)
T3314 055:229 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1078ms total)
T3314 055:230 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1079ms total)
T5708 055:231 JLINK_IsHalted()  returns FALSE (0001ms, 1080ms total)
T5708 055:333 JLINK_IsHalted()  returns FALSE (0001ms, 1080ms total)
T5708 055:435 JLINK_IsHalted()  returns FALSE (0001ms, 1080ms total)
T5708 055:537 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T5708 055:638 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T3314 055:739 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1080ms total)
T3314 055:740 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1081ms total)
T3314 055:741 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 31 31 31 2E 31 39 38 2E 36 30 2E 36 00 00 00 00 ...  returns 0x20 (0001ms, 1082ms total)
T3314 055:742 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1083ms total)
T3314 055:744 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1084ms total)
T3314 055:745 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1085ms total)
T5708 055:746 JLINK_IsHalted()  returns FALSE (0001ms, 1086ms total)
T5708 055:848 JLINK_IsHalted()  returns FALSE (0001ms, 1086ms total)
T5708 055:950 JLINK_IsHalted()  returns FALSE (0001ms, 1086ms total)
T5708 056:051 JLINK_IsHalted()  returns FALSE (0001ms, 1086ms total)
T5708 056:152 JLINK_IsHalted()  returns FALSE (0001ms, 1086ms total)
T3314 056:254 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1087ms total)
T3314 056:256 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1088ms total)
T3314 056:257 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 31 31 31 2E 31 39 38 2E 36 30 2E 36 00 00 00 00 ...  returns 0x20 (0001ms, 1089ms total)
T3314 056:258 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1090ms total)
T3314 056:260 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1091ms total)
T3314 056:261 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1092ms total)
T5708 056:262 JLINK_IsHalted()  returns FALSE (0001ms, 1093ms total)
T5708 056:364 JLINK_IsHalted()  returns FALSE (0001ms, 1093ms total)
T5708 056:465 JLINK_IsHalted()  returns TRUE (0004ms, 1096ms total)
T5708 056:469 JLINK_Halt()  returns 0x00 (0000ms, 1092ms total)
T5708 056:469 JLINK_IsHalted()  returns TRUE (0000ms, 1092ms total)
T5708 056:469 JLINK_IsHalted()  returns TRUE (0000ms, 1092ms total)
T5708 056:469 JLINK_IsHalted()  returns TRUE (0000ms, 1092ms total)
T5708 056:469 JLINK_ReadReg(R15 (PC))  returns 0x0000A5A2 (0000ms, 1092ms total)
T5708 056:469 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 1092ms total)
T5708 056:469 JLINK_ClrBPEx(BPHandle = 0x0000000D)  returns 0x00 (0000ms, 1092ms total)
T5708 056:469 JLINK_ClrBPEx(BPHandle = 0x0000000E)  returns 0x00 (0000ms, 1092ms total)
T5708 056:469 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1093ms total)
T5708 056:470 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1094ms total)
T5708 056:471 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(R0)  returns 0x0201AB54 (0000ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(R1)  returns 0x00000000 (0000ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(R2)  returns 0x00000002 (0000ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(R3)  returns 0x00000349 (0000ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(R4)  returns 0x02020FA8 (0000ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(R5)  returns 0x00000002 (0000ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(R6)  returns 0x02020FA8 (0000ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(R7)  returns 0x00000001 (0000ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(R13 (SP))  returns 0x02029EF0 (0000ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(R14)  returns 0x0000999F (0000ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(R15 (PC))  returns 0x0000A5A2 (0000ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(MSP)  returns 0x02029EF0 (0000ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1095ms total)
T5708 056:472 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1095ms total)
T3314 056:472 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1097ms total)
T3314 056:474 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1098ms total)
T3314 056:476 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0001ms, 1099ms total)
T3314 056:478 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 08 00 00 00  returns 0x04 (0001ms, 1100ms total)
T3314 056:479 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 08 00 00 00  returns 0x04 (0001ms, 1101ms total)
T3314 056:481 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1102ms total)
T5708 059:878 JLINK_ReadMemEx(0x0000A5A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000A580) -- Updating DA cache (64 bytes @ 0x0000A580) -- Read from DA cache (2 bytes @ 0x0000A5A2) - Data: F8 B2  returns 0x02 (0002ms, 1104ms total)
T5708 059:880 JLINK_SetBPEx(Addr = 0x0000A51E, Type = 0xFFFFFFF2)  returns 0x0000000F (0000ms, 1104ms total)
T5708 059:880 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE000200C) (0005ms, 1109ms total)
T5708 059:987 JLINK_IsHalted()  returns FALSE (0001ms, 1110ms total)
T5708 060:088 JLINK_IsHalted()  returns FALSE (0000ms, 1109ms total)
T5708 060:189 JLINK_IsHalted()  returns FALSE (0000ms, 1109ms total)
T5708 060:290 JLINK_IsHalted()  returns FALSE (0001ms, 1110ms total)
T5708 060:392 JLINK_IsHalted()  returns FALSE (0001ms, 1110ms total)
T3314 060:493 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1110ms total)
T3314 060:494 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1111ms total)
T3314 060:495 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0001ms, 1112ms total)
T3314 060:496 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1113ms total)
T3314 060:499 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1114ms total)
T3314 060:500 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1115ms total)
T5708 060:501 JLINK_IsHalted()  returns FALSE (0001ms, 1116ms total)
T5708 060:603 JLINK_IsHalted()  returns FALSE (0000ms, 1115ms total)
T5708 060:704 JLINK_IsHalted()  returns FALSE (0001ms, 1116ms total)
T5708 060:806 JLINK_IsHalted()  returns FALSE (0000ms, 1115ms total)
T5708 060:907 JLINK_IsHalted()  returns FALSE (0000ms, 1115ms total)
T3314 061:008 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1116ms total)
T3314 061:009 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1117ms total)
T3314 061:010 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0002ms, 1119ms total)
T3314 061:012 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1120ms total)
T3314 061:013 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1121ms total)
T3314 061:015 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1122ms total)
T5708 061:016 JLINK_IsHalted()  returns FALSE (0001ms, 1123ms total)
T5708 061:118 JLINK_IsHalted()  returns FALSE (0001ms, 1123ms total)
T5708 061:219 JLINK_IsHalted()  returns FALSE (0001ms, 1123ms total)
T5708 061:321 JLINK_IsHalted()  returns FALSE (0001ms, 1123ms total)
T5708 061:422 JLINK_IsHalted()  returns FALSE (0001ms, 1123ms total)
T3314 061:523 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1123ms total)
T3314 061:524 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1124ms total)
T3314 061:525 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0001ms, 1125ms total)
T3314 061:526 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1126ms total)
T3314 061:528 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1127ms total)
T3314 061:529 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1128ms total)
T5708 061:530 JLINK_IsHalted()  returns FALSE (0001ms, 1129ms total)
T5708 061:632 JLINK_IsHalted()  returns FALSE (0000ms, 1128ms total)
T5708 061:734 JLINK_IsHalted()  returns FALSE (0001ms, 1129ms total)
T5708 061:836 JLINK_IsHalted()  returns FALSE (0001ms, 1129ms total)
T5708 061:938 JLINK_IsHalted()  returns FALSE (0001ms, 1129ms total)
T3314 062:039 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1129ms total)
T3314 062:040 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1131ms total)
T3314 062:042 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0001ms, 1132ms total)
T3314 062:043 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1133ms total)
T3314 062:045 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0000ms, 1133ms total)
T3314 062:046 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1134ms total)
T5708 062:047 JLINK_IsHalted()  returns FALSE (0001ms, 1135ms total)
T5708 062:149 JLINK_IsHalted()  returns FALSE (0000ms, 1134ms total)
T5708 062:251 JLINK_IsHalted()  returns FALSE (0000ms, 1134ms total)
T5708 062:352 JLINK_IsHalted()  returns FALSE (0000ms, 1134ms total)
T5708 062:453 JLINK_IsHalted()  returns FALSE (0001ms, 1135ms total)
T3314 062:555 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1135ms total)
T3314 062:556 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1136ms total)
T3314 062:557 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0001ms, 1137ms total)
T3314 062:558 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1138ms total)
T3314 062:560 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1139ms total)
T3314 062:561 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1140ms total)
T5708 062:562 JLINK_IsHalted()  returns FALSE (0001ms, 1141ms total)
T5708 062:664 JLINK_IsHalted()  returns FALSE (0000ms, 1140ms total)
T5708 062:765 JLINK_IsHalted()  returns FALSE (0001ms, 1141ms total)
T5708 062:866 JLINK_IsHalted()  returns FALSE (0001ms, 1141ms total)
T5708 062:968 JLINK_IsHalted()  returns FALSE (0001ms, 1141ms total)
T3314 063:070 JLINK_ReadMemEx(0x02020710, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02020710) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1141ms total)
T3314 063:071 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1142ms total)
T3314 063:072 JLINK_ReadMemEx(0x0201F8E0, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201F8E0) - Data: 55 AA 30 0A 02 00 49 03 49 03 00 00 2B FF 00 00 ...  returns 0x20 (0002ms, 1144ms total)
T3314 063:074 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1145ms total)
T3314 063:075 JLINK_ReadMemEx(0x0201AB68, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201AB68) - Data: 00 00 00 00  returns 0x04 (0001ms, 1146ms total)
T3314 063:076 JLINK_ReadMemEx(0x020206AC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020206AC) - Data: 02 00 49 03 49 03 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1148ms total)
T5708 063:078 JLINK_IsHalted()  returns FALSE (0000ms, 1148ms total)
T5708 063:179 JLINK_Halt()  returns 0x00 (0004ms, 1152ms total)
T5708 063:183 JLINK_IsHalted()  returns TRUE (0000ms, 1152ms total)
T5708 063:183 JLINK_IsHalted()  returns TRUE (0000ms, 1152ms total)
T5708 063:183 JLINK_IsHalted()  returns TRUE (0000ms, 1152ms total)
T5708 063:183 JLINK_ReadReg(R15 (PC))  returns 0x000000E6 (0000ms, 1152ms total)
T5708 063:183 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 1152ms total)
T5708 063:183 JLINK_ClrBPEx(BPHandle = 0x0000000F)  returns 0x00 (0000ms, 1152ms total)
T5708 063:183 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 0x01 (0001ms, 1153ms total)
T5708 063:184 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1154ms total)
T5708 063:185 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 1155ms total)
T3314 063:768 JLINK_Close() -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> (0028ms, 1183ms total)
T3314 063:768  (0028ms, 1183ms total)
T3314 063:768 Closed (0028ms, 1183ms total)