WXK
2025-05-21 d7cedc11df3a790c8b8830c89b0bd69088a0e51d
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
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
 
T02F4 000:048 SEGGER J-Link V6.30d Log File (0000ms, 0029ms total)
T02F4 000:048 DLL Compiled: Feb 16 2018 13:30:32 (0000ms, 0029ms total)
T02F4 000:048 Logging started @ 2025-05-20 11:31 (0000ms, 0029ms total)
T02F4 000:048 JLINK_SetWarnOutHandler(...) (0000ms, 0029ms total)
T02F4 000:048 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 (0013ms, 0042ms total)
T02F4 000:048 WEBSRV Webserver running on local port 19080 (0013ms, 0042ms total)
T02F4 000:048   returns O.K. (0013ms, 0042ms total)
T02F4 000:061 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0042ms total)
T02F4 000:061 JLINK_TIF_GetAvailable(...) (0000ms, 0042ms total)
T02F4 000:061 JLINK_SetErrorOutHandler(...) (0000ms, 0042ms total)
T02F4 000:061 JLINK_ExecCommand("ProjectFile = "C:\git\XRange_Tag - ÌúЬ - ÐÂÂß¼­\MDK-ARM\JLinkSettings.ini"", ...). C:\Keil_v5\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0100ms, 0142ms total)
T02F4 000:161 JLINK_ExecCommand("Device = STM32L071RBTx", ...). Device "STM32L071RB" selected.  returns 0x00 (0002ms, 0144ms total)
T02F4 000:163 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0144ms total)
T02F4 000:163 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0144ms total)
T02F4 000:163 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0144ms total)
T02F4 000:163 JLINK_GetFirmwareString(...) (0000ms, 0144ms total)
T02F4 000:163 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0144ms total)
T02F4 000:163 JLINK_GetCompileDateTime() (0001ms, 0145ms total)
T02F4 000:164 JLINK_GetFirmwareString(...) (0000ms, 0145ms total)
T02F4 000:164 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0145ms total)
T02F4 000:164 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0001ms, 0146ms total)
T02F4 000:165 JLINK_SetSpeed(5000) (0000ms, 0146ms total)
T02F4 000:165 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BC11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF>
 >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>
 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x10B TIF>Found SW-DP with ID 0x0BC11477 >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: 0x04770031)
Iterating through AP map to find AHB-AP to use >0x42 TIF> >0x28 TIF> >0x0D 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: 0xF0000000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC601. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p1, 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] @ F0000000 -- CPU_ReadMem(16 bytes @ 0xF0000000) -- CPU_ReadMem(16 bytes @ 0xE00FFFF0) -- CPU_ReadMem(16 bytes @ 0xE00FFFE0)
ROMTbl[0][0]: E00FF000, CID: B105100D, PID: 000BB4C0 ROM TableROMTbl[1] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[1][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[1][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)
ROMTbl[1][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB -- 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) -- CPU_WriteMem(20480 bytes @ 0x20000000) >0x0D TIF> >0x21 TIF>  returns 0x0BC11477 (0475ms, 0621ms total)
T02F4 000:640 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0621ms total)
T02F4 000:640 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0621ms total)
T02F4 000:640 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 0621ms total)
T02F4 000:640 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 0621ms total)
T02F4 000:640 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0621ms total)
T02F4 000:640 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, 0622ms total)
T02F4 000:641 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0622ms total)
T02F4 000:641 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0622ms total)
T02F4 000:641 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 (0000ms, 0622ms total)
T02F4 000:641 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0622ms total)
T02F4 000:641 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0622ms total)
T02F4 000:641 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0001ms, 0623ms total)
T02F4 000:642 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 0623ms total)
T02F4 000:642 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0623ms total)
T02F4 000:642 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 0623ms total)
T02F4 000:642 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 01 C6 0C 41  returns 0x01 (0000ms, 0623ms total)
T02F4 000:642 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0623ms total)
T02F4 000:642 JLINK_Halt()  returns 0x00 (0000ms, 0623ms total)
T02F4 000:642 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 01  returns 0x01 (0001ms, 0624ms total)
T02F4 000:643 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0001ms, 0625ms total)
T02F4 000:644 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0000ms, 0625ms total)
T02F4 000:644 JLINK_GetHWStatus(...)  returns 0x00 (0001ms, 0626ms total)
T02F4 000:645 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0626ms total)
T02F4 000:645 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0626ms total)
T02F4 000:645 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0626ms total)
T02F4 000:645 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0626ms total)
T02F4 000:645 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0000ms, 0626ms total)
T02F4 000:645 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 0626ms total)
T02F4 000:645 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 0626ms total)
T02F4 000:733 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0626ms total)
T02F4 000:733 JLINK_Reset() -- CPU_ReadMem(4 bytes @ 0x20000000) -- CPU_WriteMem(4 bytes @ 0x20000000) -- 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) (0072ms, 0698ms total)
T02F4 000:805 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 0698ms total)
T02F4 000:805 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 0698ms total)
T02F4 000:806 JLINK_ReadMemEx(0x080000D4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x080000C0) -- Updating C cache (128 bytes @ 0x080000C0) -- Read from C cache (60 bytes @ 0x080000D4) - Data: 04 48 80 47 04 48 00 47 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0001ms, 0699ms total)
T02F4 000:807 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 0699ms total)
T02F4 000:808 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 0699ms total)
T02F4 000:808 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 0699ms total)
T02F4 000:808 JLINK_ReadMemEx(0x080000D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000D8) - Data: 04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0000ms, 0699ms total)
T02F4 000:808 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 0699ms total)
T02F4 000:808 JLINK_ReadMemEx(0x080000D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000D8) - Data: 04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0000ms, 0699ms total)
T02F4 000:808 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 0699ms total)
T02F4 000:808 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 0699ms total)
T02F4 000:808 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 0699ms total)
T02F4 000:808 JLINK_ReadMemEx(0x080000DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000DC) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 45 1F 00 08 ...  returns 0x3C (0000ms, 0699ms total)
T02F4 000:808 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 0699ms total)
T02F4 000:808 JLINK_ReadMemEx(0x080000DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000DC) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 45 1F 00 08 ...  returns 0x3C (0000ms, 0699ms total)
T02F4 000:808 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 0699ms total)
T02F4 000:808 JLINK_ReadMemEx(0x080000DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DE) - Data: FE E7  returns 0x02 (0000ms, 0699ms total)
T02F4 000:808 JLINK_ReadMemEx(0x080000DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DE) - Data: FE E7  returns 0x02 (0000ms, 0699ms total)
T02F4 000:808 JLINK_ReadMemEx(0x080000E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000E0) - Data: FE E7 FE E7 FE E7 FE E7 45 1F 00 08 C1 00 00 08 ...  returns 0x3C (0000ms, 0699ms total)
T02F4 000:808 JLINK_ReadMemEx(0x080000E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000E0) - Data: FE E7  returns 0x02 (0000ms, 0699ms total)
T02F4 000:808 JLINK_ReadMemEx(0x080000E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000E0) - Data: FE E7 FE E7 FE E7 FE E7 45 1F 00 08 C1 00 00 08 ...  returns 0x3C (0000ms, 0699ms total)
T02F4 000:808 JLINK_ReadMemEx(0x080000E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000E0) - Data: FE E7  returns 0x02 (0000ms, 0699ms total)
T02F4 000:808 JLINK_ReadMemEx(0x080000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000E2) - Data: FE E7  returns 0x02 (0000ms, 0699ms total)
T02F4 002:624 JLINK_ReadReg(R0)  returns 0xFFFFFFFF (0001ms, 0700ms total)
T02F4 002:625 JLINK_ReadReg(R1)  returns 0xFFFFFFFF (0000ms, 0700ms total)
T02F4 002:625 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 0700ms total)
T02F4 002:625 JLINK_ReadReg(R3)  returns 0xFFFFFFFF (0000ms, 0700ms total)
T02F4 002:625 JLINK_ReadReg(R4)  returns 0xFFFFFFFF (0000ms, 0700ms total)
T02F4 002:625 JLINK_ReadReg(R5)  returns 0xFFFFFFFF (0000ms, 0700ms total)
T02F4 002:625 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0000ms, 0700ms total)
T02F4 002:625 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 0700ms total)
T02F4 002:625 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 0700ms total)
T02F4 002:625 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 0700ms total)
T02F4 002:625 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 0700ms total)
T02F4 002:625 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 0700ms total)
T02F4 002:625 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 0700ms total)
T02F4 002:625 JLINK_ReadReg(R13 (SP))  returns 0x20001188 (0000ms, 0700ms total)
T02F4 002:625 JLINK_ReadReg(R14)  returns 0xFFFFFFFF (0000ms, 0700ms total)
T02F4 002:625 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 0700ms total)
T02F4 002:625 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 0700ms total)
T02F4 002:625 JLINK_ReadReg(MSP)  returns 0x20001188 (0000ms, 0700ms total)
T02F4 002:625 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 0700ms total)
T02F4 002:625 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0700ms total)
T02F4 002:625 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200002C0) -- Updating C cache (64 bytes @ 0x200002C0) -- Read from C cache (32 bytes @ 0x200002D6) - Data: AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 ...  returns 0x20 (0001ms, 0701ms total)
T02F4 002:641 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20003840) -- Updating C cache (128 bytes @ 0x20003840) -- Read from C cache (32 bytes @ 0x20003874) - Data: AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 ...  returns 0x20 (0002ms, 0703ms total)
T02F4 002:654 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000300) -- Updating C cache (64 bytes @ 0x20000300) -- Read from C cache (1 bytes @ 0x2000033A) - Data: AA  returns 0x01 (0002ms, 0705ms total)
T02F4 002:656 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000033A) - Data: AA  returns 0x01 (0000ms, 0705ms total)
T02F4 002:656 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000033A) - Data: AA  returns 0x01 (0000ms, 0705ms total)
T02F4 002:674 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000380) -- Updating C cache (64 bytes @ 0x20000380) -- Read from C cache (2 bytes @ 0x2000039E) - Data: AA 55  returns 0x02 (0002ms, 0707ms total)
T02F4 002:676 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000039E) - Data: AA 55  returns 0x02 (0000ms, 0707ms total)
T02F4 002:676 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000039E) - Data: AA 55  returns 0x02 (0000ms, 0707ms total)
T02F4 002:682 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000340) -- Updating C cache (64 bytes @ 0x20000340) -- Read from C cache (1 bytes @ 0x20000359) - Data: 55  returns 0x01 (0001ms, 0708ms total)
T02F4 002:683 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000359) - Data: 55  returns 0x01 (0000ms, 0708ms total)
T02F4 002:683 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000359) - Data: 55  returns 0x01 (0000ms, 0708ms total)
T02F4 002:690 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200003A2) - Data: AA  returns 0x01 (0000ms, 0708ms total)
T02F4 002:690 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200003A2) - Data: AA  returns 0x01 (0000ms, 0708ms total)
T02F4 002:690 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200003A2) - Data: AA  returns 0x01 (0000ms, 0708ms total)
T02F4 002:719 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000200) -- Updating C cache (64 bytes @ 0x20000200) -- Read from C cache (32 bytes @ 0x2000020E) - Data: AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 ...  returns 0x20 (0001ms, 0709ms total)
T02F4 002:728 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20003874) - Data: AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 ...  returns 0x20 (0001ms, 0710ms total)
T02F4 002:767 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000359) - Data: 55  returns 0x01 (0000ms, 0710ms total)
T02F4 002:767 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000359) - Data: 55  returns 0x01 (0000ms, 0710ms total)
T02F4 002:767 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000359) - Data: 55  returns 0x01 (0000ms, 0710ms total)
T02F4 002:778 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000020A) - Data: AA  returns 0x01 (0000ms, 0710ms total)
T02F4 002:778 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000020A) - Data: AA  returns 0x01 (0000ms, 0710ms total)
T02F4 002:778 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000020A) - Data: AA  returns 0x01 (0000ms, 0710ms total)
T02F4 002:819 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (2 bytes @ 0x2000000E) - Data: AA 55  returns 0x02 (0002ms, 0712ms total)
T02F4 002:821 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000000E) - Data: AA 55  returns 0x02 (0000ms, 0712ms total)
T02F4 002:821 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000000E) - Data: AA 55  returns 0x02 (0000ms, 0712ms total)
T02F4 002:831 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000010) - Data: AA 55  returns 0x02 (0000ms, 0712ms total)
T02F4 002:831 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000010) - Data: AA 55  returns 0x02 (0000ms, 0712ms total)
T02F4 002:831 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000010) - Data: AA 55  returns 0x02 (0000ms, 0712ms total)
T02F4 002:841 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000012) - Data: AA 55  returns 0x02 (0000ms, 0712ms total)
T02F4 002:841 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000012) - Data: AA 55  returns 0x02 (0000ms, 0712ms total)
T02F4 002:841 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000012) - Data: AA 55  returns 0x02 (0000ms, 0712ms total)
T02F4 002:883 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20002440) -- Updating C cache (128 bytes @ 0x20002440) -- Read from C cache (32 bytes @ 0x20002478) - Data: AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 ...  returns 0x20 (0002ms, 0714ms total)
T02F4 002:896 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200001C0) -- Updating C cache (64 bytes @ 0x200001C0) -- Read from C cache (1 bytes @ 0x200001E6) - Data: AA  returns 0x01 (0001ms, 0715ms total)
T02F4 002:897 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200001E6) - Data: AA  returns 0x01 (0000ms, 0715ms total)
T02F4 002:897 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200001E6) - Data: AA  returns 0x01 (0000ms, 0715ms total)
T02F4 002:908 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000180) -- Updating C cache (64 bytes @ 0x20000180) -- Read from C cache (2 bytes @ 0x200001A4) - Data: AA 55  returns 0x02 (0001ms, 0716ms total)
T02F4 002:909 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A4) - Data: AA 55  returns 0x02 (0000ms, 0716ms total)
T02F4 002:909 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A4) - Data: AA 55  returns 0x02 (0000ms, 0716ms total)
T02F4 002:921 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A6) - Data: AA 55  returns 0x02 (0000ms, 0716ms total)
T02F4 002:921 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A6) - Data: AA 55  returns 0x02 (0000ms, 0716ms total)
T02F4 002:921 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A6) - Data: AA 55  returns 0x02 (0000ms, 0716ms total)
T02F4 002:932 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A8) - Data: AA 55  returns 0x02 (0000ms, 0716ms total)
T02F4 002:932 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A8) - Data: AA 55  returns 0x02 (0000ms, 0716ms total)
T02F4 002:932 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A8) - Data: AA 55  returns 0x02 (0000ms, 0716ms total)
T02F4 002:943 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001AA) - Data: AA 55  returns 0x02 (0000ms, 0716ms total)
T02F4 002:943 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001AA) - Data: AA 55  returns 0x02 (0000ms, 0716ms total)
T02F4 002:943 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001AA) - Data: AA 55  returns 0x02 (0000ms, 0716ms total)
T02F4 002:976 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000000C) - Data: AA 55  returns 0x02 (0000ms, 0716ms total)
T02F4 002:976 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000000C) - Data: AA 55  returns 0x02 (0000ms, 0716ms total)
T02F4 002:976 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000000C) - Data: AA 55  returns 0x02 (0000ms, 0716ms total)
T6E34 003:044 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 0716ms total)
T6E34 003:044 JLINK_SetBPEx(Addr = 0x080129F8, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0716ms total)
T6E34 003:044 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) (0005ms, 0721ms total)
T6E34 003:150 JLINK_IsHalted()  returns FALSE (0000ms, 0721ms total)
T6E34 003:251 JLINK_IsHalted()  returns FALSE (0000ms, 0721ms total)
T6E34 003:353 JLINK_IsHalted()  returns FALSE (0001ms, 0722ms total)
T6E34 003:454 JLINK_IsHalted()  returns FALSE (0000ms, 0721ms total)
T02F4 003:556 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0722ms total)
T02F4 003:558 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 ...  returns 0x20 (0001ms, 0723ms total)
T02F4 003:559 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0724ms total)
T02F4 003:561 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 0724ms total)
T02F4 003:561 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0725ms total)
T02F4 003:562 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 00  returns 0x01 (0001ms, 0726ms total)
T02F4 003:563 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0728ms total)
T02F4 003:565 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 ...  returns 0x20 (0001ms, 0729ms total)
T02F4 003:567 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 0729ms total)
T02F4 003:567 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 0730ms total)
T02F4 003:578 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 0730ms total)
T02F4 003:578 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 00 00  returns 0x02 (0001ms, 0731ms total)
T02F4 003:579 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 0732ms total)
T02F4 003:580 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 ...  returns 0x20 (0001ms, 0733ms total)
T02F4 003:581 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 0733ms total)
T02F4 003:581 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0734ms total)
T02F4 003:582 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0735ms total)
T02F4 003:583 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 0735ms total)
T02F4 003:583 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0736ms total)
T02F4 003:584 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 03 00  returns 0x02 (0001ms, 0737ms total)
T6E34 003:585 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T6E34 003:686 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T6E34 003:788 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T6E34 003:889 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T6E34 003:990 JLINK_IsHalted()  returns FALSE (0000ms, 0737ms total)
T02F4 004:093 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 0738ms total)
T02F4 004:095 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0739ms total)
T02F4 004:097 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 0739ms total)
T02F4 004:098 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0740ms total)
T02F4 004:099 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0741ms total)
T02F4 004:100 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 00  returns 0x01 (0001ms, 0742ms total)
T02F4 004:101 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0743ms total)
T02F4 004:103 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0744ms total)
T02F4 004:105 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 0744ms total)
T02F4 004:106 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0000ms, 0744ms total)
T02F4 004:115 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 0744ms total)
T02F4 004:115 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 00 00  returns 0x02 (0001ms, 0745ms total)
T02F4 004:116 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 0746ms total)
T02F4 004:117 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0747ms total)
T02F4 004:118 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 0748ms total)
T02F4 004:119 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 0748ms total)
T02F4 004:119 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0749ms total)
T02F4 004:120 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 0750ms total)
T02F4 004:121 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 0750ms total)
T02F4 004:121 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 00 00  returns 0x02 (0001ms, 0751ms total)
T6E34 004:122 JLINK_IsHalted()  returns TRUE (0004ms, 0755ms total)
T6E34 004:126 JLINK_Halt()  returns 0x00 (0000ms, 0751ms total)
T6E34 004:126 JLINK_IsHalted()  returns TRUE (0000ms, 0751ms total)
T6E34 004:126 JLINK_IsHalted()  returns TRUE (0000ms, 0751ms total)
T6E34 004:126 JLINK_IsHalted()  returns TRUE (0000ms, 0751ms total)
T6E34 004:126 JLINK_ReadReg(R15 (PC))  returns 0x080129F8 (0000ms, 0751ms total)
T6E34 004:126 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0751ms total)
T6E34 004:126 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0751ms total)
T6E34 004:126 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0000ms, 0751ms total)
T6E34 004:127 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0000ms, 0751ms total)
T6E34 004:127 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(R0)  returns 0x080129F9 (0000ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(R1)  returns 0x200048C8 (0000ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(R3)  returns 0x0801174D (0000ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(R4)  returns 0x08014028 (0000ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(R6)  returns 0x08014028 (0000ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(R7)  returns 0x08005000 (0000ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(R13 (SP))  returns 0x200048C8 (0000ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(R14)  returns 0x08005B01 (0000ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(R15 (PC))  returns 0x080129F8 (0000ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(MSP)  returns 0x200048C8 (0000ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 0752ms total)
T6E34 004:128 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0752ms total)
T02F4 004:130 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200002C0) -- Updating C cache (64 bytes @ 0x200002C0) -- Read from C cache (32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 0753ms total)
T02F4 004:133 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20003840) -- Updating C cache (128 bytes @ 0x20003840) -- Read from C cache (32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0755ms total)
T02F4 004:135 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000300) -- Updating C cache (64 bytes @ 0x20000300) -- Read from C cache (1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0756ms total)
T02F4 004:137 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000380) -- Updating C cache (64 bytes @ 0x20000380) -- Read from C cache (2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0002ms, 0758ms total)
T02F4 004:139 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000340) -- Updating C cache (64 bytes @ 0x20000340) -- Read from C cache (1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0759ms total)
T02F4 004:140 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200003A2) - Data: 00  returns 0x01 (0000ms, 0759ms total)
T02F4 004:141 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000200) -- Updating C cache (64 bytes @ 0x20000200) -- Read from C cache (32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0760ms total)
T02F4 004:142 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 0760ms total)
T02F4 004:144 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 0760ms total)
T02F4 004:144 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0000ms, 0760ms total)
T02F4 004:153 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0002ms, 0762ms total)
T02F4 004:155 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000010) - Data: 00 00  returns 0x02 (0000ms, 0762ms total)
T02F4 004:155 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0000ms, 0762ms total)
T02F4 004:156 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20002440) -- Updating C cache (128 bytes @ 0x20002440) -- Read from C cache (32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0763ms total)
T02F4 004:157 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200001C0) -- Updating C cache (64 bytes @ 0x200001C0) -- Read from C cache (1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0002ms, 0765ms total)
T02F4 004:159 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000180) -- Updating C cache (64 bytes @ 0x20000180) -- Read from C cache (2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0766ms total)
T02F4 004:160 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 0766ms total)
T02F4 004:160 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 0766ms total)
T02F4 004:160 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 0766ms total)
T02F4 004:161 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000000C) - Data: 00 00  returns 0x02 (0000ms, 0766ms total)
T02F4 004:164 JLINK_ReadMemEx(0x080128F8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x080128C0) -- Updating C cache (128 bytes @ 0x080128C0) -- Read from C cache (60 bytes @ 0x080128F8) - Data: 01 AB 03 21 0D 20 00 F0 1B F8 1C BD 08 B5 6B 46 ...  returns 0x3C (0002ms, 0768ms total)
T02F4 004:166 JLINK_ReadMemEx(0x080128F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080128F8) - Data: 01 AB  returns 0x02 (0000ms, 0768ms total)
T02F4 004:167 JLINK_ReadMemEx(0x080128FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080128FA) - Data: 03 21  returns 0x02 (0000ms, 0768ms total)
T02F4 004:167 JLINK_ReadMemEx(0x080128FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080128FA) - Data: 03 21  returns 0x02 (0000ms, 0768ms total)
T02F4 004:167 JLINK_ReadMemEx(0x080128FC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080128FC) - Data: 0D 20 00 F0 1B F8 1C BD 08 B5 6B 46 1A 70 12 0A ...  returns 0x3C (0000ms, 0768ms total)
T02F4 004:167 JLINK_ReadMemEx(0x080128FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080128FC) - Data: 0D 20  returns 0x02 (0000ms, 0768ms total)
T02F4 004:167 JLINK_ReadMemEx(0x080128FC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080128FC) - Data: 0D 20 00 F0 1B F8 1C BD 08 B5 6B 46 1A 70 12 0A ...  returns 0x3C (0000ms, 0768ms total)
T02F4 004:167 JLINK_ReadMemEx(0x080128FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080128FC) - Data: 0D 20  returns 0x02 (0000ms, 0768ms total)
T02F4 004:167 JLINK_ReadMemEx(0x080128FE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080128FE) - Data: 00 F0  returns 0x02 (0000ms, 0768ms total)
T02F4 004:167 JLINK_ReadMemEx(0x080128FE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080128FE) - Data: 00 F0  returns 0x02 (0000ms, 0768ms total)
T02F4 004:167 JLINK_ReadMemEx(0x08012900, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012900) - Data: 1B F8 1C BD 08 B5 6B 46 1A 70 12 0A 5A 70 89 B2 ...  returns 0x3C (0000ms, 0768ms total)
T02F4 004:167 JLINK_ReadMemEx(0x08012900, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012900) - Data: 1B F8  returns 0x02 (0000ms, 0768ms total)
T02F4 004:167 JLINK_ReadMemEx(0x08012902, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012902) - Data: 1C BD  returns 0x02 (0000ms, 0768ms total)
T02F4 004:167 JLINK_ReadMemEx(0x08012904, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012904) - Data: 08 B5 6B 46 1A 70 12 0A 5A 70 89 B2 80 B2 02 22 ...  returns 0x3C (0000ms, 0768ms total)
T02F4 004:167 JLINK_ReadMemEx(0x08012904, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012904) - Data: 08 B5  returns 0x02 (0000ms, 0768ms total)
T02F4 004:167 JLINK_ReadMemEx(0x08012904, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012904) - Data: 08 B5 6B 46 1A 70 12 0A 5A 70 89 B2 80 B2 02 22 ...  returns 0x3C (0000ms, 0768ms total)
T02F4 004:167 JLINK_ReadMemEx(0x08012904, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012904) - Data: 08 B5  returns 0x02 (0000ms, 0768ms total)
T02F4 004:167 JLINK_ReadMemEx(0x08012906, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012906) - Data: 6B 46  returns 0x02 (0000ms, 0768ms total)
T02F4 004:167 JLINK_ReadMemEx(0x08012906, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012906) - Data: 6B 46  returns 0x02 (0000ms, 0768ms total)
T02F4 004:167 JLINK_ReadMemEx(0x08012908, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08012940) -- Updating C cache (64 bytes @ 0x08012940) -- Read from C cache (60 bytes @ 0x08012908) - Data: 1A 70 12 0A 5A 70 89 B2 80 B2 02 22 00 F0 10 F8 ...  returns 0x3C (0002ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012908, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012908) - Data: 1A 70  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012908, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012908) - Data: 1A 70 12 0A 5A 70 89 B2 80 B2 02 22 00 F0 10 F8 ...  returns 0x3C (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012908, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012908) - Data: 1A 70  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x0801290A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801290A) - Data: 12 0A  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x0801290A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801290A) - Data: 12 0A  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x0801290C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801290C) - Data: 5A 70 89 B2 80 B2 02 22 00 F0 10 F8 08 BD 38 B5 ...  returns 0x3C (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x0801290C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801290C) - Data: 5A 70  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x0801290C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801290C) - Data: 5A 70 89 B2 80 B2 02 22 00 F0 10 F8 08 BD 38 B5 ...  returns 0x3C (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x0801290C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801290C) - Data: 5A 70  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x0801290E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801290E) - Data: 89 B2  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x0801290E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801290E) - Data: 89 B2  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012910, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012910) - Data: 80 B2 02 22 00 F0 10 F8 08 BD 38 B5 00 23 6C 46 ...  returns 0x3C (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012910, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012910) - Data: 80 B2  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012910, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012910) - Data: 80 B2 02 22 00 F0 10 F8 08 BD 38 B5 00 23 6C 46 ...  returns 0x3C (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012910, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012910) - Data: 80 B2  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012912, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012912) - Data: 02 22  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012912, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012912) - Data: 02 22  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012914, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012914) - Data: 00 F0 10 F8 08 BD 38 B5 00 23 6C 46 E2 54 12 0A ...  returns 0x3C (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012914, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012914) - Data: 00 F0  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012914, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012914) - Data: 00 F0 10 F8 08 BD 38 B5 00 23 6C 46 E2 54 12 0A ...  returns 0x3C (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012914, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012914) - Data: 00 F0  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012916, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012916) - Data: 10 F8  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012918, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012918) - Data: 08 BD 38 B5 00 23 6C 46 E2 54 12 0A 5B 1C 04 2B ...  returns 0x3C (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012918, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012918) - Data: 08 BD  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x0801291A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801291A) - Data: 38 B5  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x0801291A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801291A) - Data: 38 B5  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x0801291C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801291C) - Data: 00 23 6C 46 E2 54 12 0A 5B 1C 04 2B FA DB 89 B2 ...  returns 0x3C (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x0801291C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801291C) - Data: 00 23  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x0801291C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801291C) - Data: 00 23 6C 46 E2 54 12 0A 5B 1C 04 2B FA DB 89 B2 ...  returns 0x3C (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x0801291C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801291C) - Data: 00 23  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x0801291E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801291E) - Data: 6C 46  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x0801291E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801291E) - Data: 6C 46  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012920, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012920) - Data: E2 54 12 0A 5B 1C 04 2B FA DB 89 B2 80 B2 23 46 ...  returns 0x3C (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012920, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012920) - Data: E2 54  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012920, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012920) - Data: E2 54 12 0A 5B 1C 04 2B FA DB 89 B2 80 B2 23 46 ...  returns 0x3C (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012920, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012920) - Data: E2 54  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012922, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012922) - Data: 12 0A  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012922, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012922) - Data: 12 0A  returns 0x02 (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012924, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012924) - Data: 5B 1C 04 2B FA DB 89 B2 80 B2 23 46 04 22 00 F0 ...  returns 0x3C (0000ms, 0770ms total)
T02F4 004:169 JLINK_ReadMemEx(0x08012924, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012924) - Data: 5B 1C  returns 0x02 (0001ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012924, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012924) - Data: 5B 1C 04 2B FA DB 89 B2 80 B2 23 46 04 22 00 F0 ...  returns 0x3C (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012924, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012924) - Data: 5B 1C  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012926, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012926) - Data: 04 2B  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012926, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012926) - Data: 04 2B  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012928, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012928) - Data: FA DB 89 B2 80 B2 23 46 04 22 00 F0 01 F8 38 BD ...  returns 0x3C (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012928, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012928) - Data: FA DB  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012928, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012928) - Data: FA DB 89 B2 80 B2 23 46 04 22 00 F0 01 F8 38 BD ...  returns 0x3C (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012928, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012928) - Data: FA DB  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x0801292A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801292A) - Data: 89 B2  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x0801292A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801292A) - Data: 89 B2  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x0801292C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801292C) - Data: 80 B2 23 46 04 22 00 F0 01 F8 38 BD 38 B5 80 24 ...  returns 0x3C (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x0801292C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801292C) - Data: 80 B2  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x0801292C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801292C) - Data: 80 B2 23 46 04 22 00 F0 01 F8 38 BD 38 B5 80 24 ...  returns 0x3C (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x0801292C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801292C) - Data: 80 B2  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x0801292E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801292E) - Data: 23 46  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x0801292E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801292E) - Data: 23 46  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012930, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012930) - Data: 04 22 00 F0 01 F8 38 BD 38 B5 80 24 00 29 09 D0 ...  returns 0x3C (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012930, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012930) - Data: 04 22  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012930, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012930) - Data: 04 22 00 F0 01 F8 38 BD 38 B5 80 24 00 29 09 D0 ...  returns 0x3C (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012930, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012930) - Data: 04 22  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012932, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012932) - Data: 00 F0  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012932, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012932) - Data: 00 F0  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012934, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012934) - Data: 01 F8 38 BD 38 B5 80 24 00 29 09 D0 C0 25 28 43 ...  returns 0x3C (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012934, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012934) - Data: 01 F8  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012936, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012936) - Data: 38 BD  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012938, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012938) - Data: 38 B5 80 24 00 29 09 D0 C0 25 28 43 6D 46 28 70 ...  returns 0x3C (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012938, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012938) - Data: 38 B5  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012938, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012938) - Data: 38 B5 80 24 00 29 09 D0 C0 25 28 43 6D 46 28 70 ...  returns 0x3C (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012938, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012938) - Data: 38 B5  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x0801293A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801293A) - Data: 80 24  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x0801293A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801293A) - Data: 80 24  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x0801293C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801293C) - Data: 00 29 09 D0 C0 25 28 43 6D 46 28 70 C8 B2 7F 29 ...  returns 0x3C (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x0801293C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801293C) - Data: 00 29  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x0801293C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801293C) - Data: 00 29 09 D0 C0 25 28 43 6D 46 28 70 C8 B2 7F 29 ...  returns 0x3C (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x0801293C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801293C) - Data: 00 29  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x0801293E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801293E) - Data: 09 D0  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x0801293E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801293E) - Data: 09 D0  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012940, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012940) - Data: C0 25 28 43 6D 46 28 70 C8 B2 7F 29 07 D8 68 70 ...  returns 0x3C (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012940, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012940) - Data: C0 25  returns 0x02 (0000ms, 0771ms total)
T02F4 004:170 JLINK_ReadMemEx(0x08012940, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012940) - Data: C0 25 28 43 6D 46 28 70 C8 B2 7F 29 07 D8 68 70 ...  returns 0x3C (0001ms, 0772ms total)
T02F4 004:171 JLINK_ReadMemEx(0x08012940, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012940) - Data: C0 25  returns 0x02 (0000ms, 0772ms total)
T02F4 004:171 JLINK_ReadMemEx(0x08012942, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012942) - Data: 28 43  returns 0x02 (0000ms, 0772ms total)
T02F4 004:171 JLINK_ReadMemEx(0x08012942, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012942) - Data: 28 43  returns 0x02 (0000ms, 0772ms total)
T02F4 004:171 JLINK_ReadMemEx(0x08012944, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012944) - Data: 6D 46 28 70 C8 B2 7F 29 07 D8 68 70 02 20 09 E0 ...  returns 0x3C (0000ms, 0772ms total)
T02F4 004:171 JLINK_ReadMemEx(0x08012944, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012944) - Data: 6D 46  returns 0x02 (0000ms, 0772ms total)
T02F4 004:171 JLINK_ReadMemEx(0x08012944, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012944) - Data: 6D 46 28 70 C8 B2 7F 29 07 D8 68 70 02 20 09 E0 ...  returns 0x3C (0000ms, 0772ms total)
T02F4 004:171 JLINK_ReadMemEx(0x08012944, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012944) - Data: 6D 46  returns 0x02 (0000ms, 0772ms total)
T02F4 004:171 JLINK_ReadMemEx(0x08012946, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012946) - Data: 28 70  returns 0x02 (0000ms, 0772ms total)
T02F4 004:171 JLINK_ReadMemEx(0x08012946, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012946) - Data: 28 70  returns 0x02 (0000ms, 0772ms total)
T02F4 004:171 JLINK_ReadMemEx(0x08012948, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08012980) -- Updating C cache (64 bytes @ 0x08012980) -- Read from C cache (60 bytes @ 0x08012948) - Data: C8 B2 7F 29 07 D8 68 70 02 20 09 E0 20 43 69 46 ...  returns 0x3C (0001ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x08012948, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012948) - Data: C8 B2  returns 0x02 (0000ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x08012948, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012948) - Data: C8 B2 7F 29 07 D8 68 70 02 20 09 E0 20 43 69 46 ...  returns 0x3C (0000ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x08012948, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012948) - Data: C8 B2  returns 0x02 (0000ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x0801294A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801294A) - Data: 7F 29  returns 0x02 (0000ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x0801294A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801294A) - Data: 7F 29  returns 0x02 (0000ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x0801294C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801294C) - Data: 07 D8 68 70 02 20 09 E0 20 43 69 46 08 70 01 20 ...  returns 0x3C (0000ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x0801294C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801294C) - Data: 07 D8  returns 0x02 (0000ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x0801294C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801294C) - Data: 07 D8 68 70 02 20 09 E0 20 43 69 46 08 70 01 20 ...  returns 0x3C (0000ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x0801294C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801294C) - Data: 07 D8  returns 0x02 (0000ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x0801294E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801294E) - Data: 68 70  returns 0x02 (0000ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x0801294E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801294E) - Data: 68 70  returns 0x02 (0000ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x08012950, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012950) - Data: 02 20 09 E0 20 43 69 46 08 70 01 20 04 E0 20 43 ...  returns 0x3C (0000ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x08012950, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012950) - Data: 02 20  returns 0x02 (0000ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x08012950, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012950) - Data: 02 20 09 E0 20 43 69 46 08 70 01 20 04 E0 20 43 ...  returns 0x3C (0000ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x08012950, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012950) - Data: 02 20  returns 0x02 (0000ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x08012952, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012952) - Data: 09 E0  returns 0x02 (0000ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x08012952, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012952) - Data: 09 E0  returns 0x02 (0000ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x08012954, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012954) - Data: 20 43 69 46 08 70 01 20 04 E0 20 43 68 70 C8 09 ...  returns 0x3C (0000ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x08012954, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012954) - Data: 20 43  returns 0x02 (0000ms, 0773ms total)
T02F4 004:172 JLINK_ReadMemEx(0x08012954, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012954) - Data: 20 43 69 46 08 70 01 20 04 E0 20 43 68 70 C8 09 ...  returns 0x3C (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012954, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012954) - Data: 20 43  returns 0x02 (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012956, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012956) - Data: 69 46  returns 0x02 (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012956, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012956) - Data: 69 46  returns 0x02 (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012958, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012958) - Data: 08 70 01 20 04 E0 20 43 68 70 C8 09 A8 70 03 20 ...  returns 0x3C (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012958, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012958) - Data: 08 70  returns 0x02 (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012958, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012958) - Data: 08 70 01 20 04 E0 20 43 68 70 C8 09 A8 70 03 20 ...  returns 0x3C (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012958, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012958) - Data: 08 70  returns 0x02 (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x0801295A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801295A) - Data: 01 20  returns 0x02 (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x0801295A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801295A) - Data: 01 20  returns 0x02 (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x0801295C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801295C) - Data: 04 E0 20 43 68 70 C8 09 A8 70 03 20 69 46 00 F0 ...  returns 0x3C (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x0801295C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801295C) - Data: 04 E0  returns 0x02 (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x0801295C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801295C) - Data: 04 E0 20 43 68 70 C8 09 A8 70 03 20 69 46 00 F0 ...  returns 0x3C (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x0801295C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801295C) - Data: 04 E0  returns 0x02 (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x0801295E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801295E) - Data: 20 43  returns 0x02 (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x0801295E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801295E) - Data: 20 43  returns 0x02 (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012960, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012960) - Data: 68 70 C8 09 A8 70 03 20 69 46 00 F0 FD F9 38 BD ...  returns 0x3C (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012960, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012960) - Data: 68 70  returns 0x02 (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012960, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012960) - Data: 68 70 C8 09 A8 70 03 20 69 46 00 F0 FD F9 38 BD ...  returns 0x3C (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012960, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012960) - Data: 68 70  returns 0x02 (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012962, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012962) - Data: C8 09  returns 0x02 (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012962, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012962) - Data: C8 09  returns 0x02 (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012964, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012964) - Data: A8 70 03 20 69 46 00 F0 FD F9 38 BD 10 B5 14 46 ...  returns 0x3C (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012964, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012964) - Data: A8 70  returns 0x02 (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012964, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012964) - Data: A8 70 03 20 69 46 00 F0 FD F9 38 BD 10 B5 14 46 ...  returns 0x3C (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012964, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012964) - Data: A8 70  returns 0x02 (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012966, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012966) - Data: 03 20  returns 0x02 (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012966, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012966) - Data: 03 20  returns 0x02 (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012968, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012968) - Data: 69 46 00 F0 FD F9 38 BD 10 B5 14 46 01 23 12 18 ...  returns 0x3C (0000ms, 0773ms total)
T02F4 004:173 JLINK_ReadMemEx(0x08012968, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012968) - Data: 69 46  returns 0x02 (0000ms, 0773ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012968, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012968) - Data: 69 46 00 F0 FD F9 38 BD 10 B5 14 46 01 23 12 18 ...  returns 0x3C (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012968, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012968) - Data: 69 46  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x0801296A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801296A) - Data: 00 F0  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x0801296A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801296A) - Data: 00 F0  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x0801296C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801296C) - Data: FD F9 38 BD 10 B5 14 46 01 23 12 18 9B 02 9A 42 ...  returns 0x3C (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x0801296C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801296C) - Data: FD F9  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x0801296E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801296E) - Data: 38 BD  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012970, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012970) - Data: 10 B5 14 46 01 23 12 18 9B 02 9A 42 02 D9 00 20 ...  returns 0x3C (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012970, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012970) - Data: 10 B5  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012970, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012970) - Data: 10 B5 14 46 01 23 12 18 9B 02 9A 42 02 D9 00 20 ...  returns 0x3C (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012970, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012970) - Data: 10 B5  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012972, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012972) - Data: 14 46  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012972, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012972) - Data: 14 46  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012974, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012974) - Data: 01 23 12 18 9B 02 9A 42 02 D9 00 20 C0 43 10 BD ...  returns 0x3C (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012974, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012974) - Data: 01 23  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012974, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012974) - Data: 01 23 12 18 9B 02 9A 42 02 D9 00 20 C0 43 10 BD ...  returns 0x3C (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012974, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012974) - Data: 01 23  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012976, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012976) - Data: 12 18  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012976, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012976) - Data: 12 18  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012978, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012978) - Data: 9B 02 9A 42 02 D9 00 20 C0 43 10 BD 0B 46 82 1E ...  returns 0x3C (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012978, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012978) - Data: 9B 02  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012978, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012978) - Data: 9B 02 9A 42 02 D9 00 20 C0 43 10 BD 0B 46 82 1E ...  returns 0x3C (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012978, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012978) - Data: 9B 02  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x0801297A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801297A) - Data: 9A 42  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x0801297A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801297A) - Data: 9A 42  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x0801297C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801297C) - Data: 02 D9 00 20 C0 43 10 BD 0B 46 82 1E 21 46 09 20 ...  returns 0x3C (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x0801297C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801297C) - Data: 02 D9  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x0801297C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801297C) - Data: 02 D9 00 20 C0 43 10 BD 0B 46 82 1E 21 46 09 20 ...  returns 0x3C (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x0801297C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801297C) - Data: 02 D9  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x0801297E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801297E) - Data: 00 20  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x0801297E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801297E) - Data: 00 20  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012980, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012980) - Data: C0 43 10 BD 0B 46 82 1E 21 46 09 20 FF F7 D4 FF ...  returns 0x3C (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012980, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012980) - Data: C0 43  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012980, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012980) - Data: C0 43 10 BD 0B 46 82 1E 21 46 09 20 FF F7 D4 FF ...  returns 0x3C (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012980, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012980) - Data: C0 43  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012982, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012982) - Data: 10 BD  returns 0x02 (0000ms, 0774ms total)
T02F4 004:174 JLINK_ReadMemEx(0x08012982, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012982) - Data: 10 BD  returns 0x02 (0001ms, 0775ms total)
T02F4 004:175 JLINK_ReadMemEx(0x08012984, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012984) - Data: 0B 46 82 1E 21 46 09 20 FF F7 D4 FF 00 20 10 BD ...  returns 0x3C (0000ms, 0775ms total)
T02F4 004:175 JLINK_ReadMemEx(0x08012984, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012984) - Data: 0B 46  returns 0x02 (0000ms, 0775ms total)
T02F4 004:175 JLINK_ReadMemEx(0x08012984, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012984) - Data: 0B 46 82 1E 21 46 09 20 FF F7 D4 FF 00 20 10 BD ...  returns 0x3C (0000ms, 0775ms total)
T02F4 004:175 JLINK_ReadMemEx(0x08012984, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012984) - Data: 0B 46  returns 0x02 (0000ms, 0775ms total)
T02F4 004:175 JLINK_ReadMemEx(0x08012986, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012986) - Data: 82 1E  returns 0x02 (0000ms, 0775ms total)
T02F4 004:175 JLINK_ReadMemEx(0x08012986, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012986) - Data: 82 1E  returns 0x02 (0000ms, 0775ms total)
T02F4 004:175 JLINK_ReadMemEx(0x08012988, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x080129C0) -- Updating C cache (64 bytes @ 0x080129C0) -- Read from C cache (60 bytes @ 0x08012988) - Data: 21 46 09 20 FF F7 D4 FF 00 20 10 BD 10 B5 05 4A ...  returns 0x3C (0001ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x08012988, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012988) - Data: 21 46  returns 0x02 (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x08012988, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012988) - Data: 21 46 09 20 FF F7 D4 FF 00 20 10 BD 10 B5 05 4A ...  returns 0x3C (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x08012988, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012988) - Data: 21 46  returns 0x02 (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x0801298A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801298A) - Data: 09 20  returns 0x02 (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x0801298A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801298A) - Data: 09 20  returns 0x02 (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x0801298C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801298C) - Data: FF F7 D4 FF 00 20 10 BD 10 B5 05 4A 89 05 12 69 ...  returns 0x3C (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x0801298C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801298C) - Data: FF F7  returns 0x02 (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x0801298C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801298C) - Data: FF F7 D4 FF 00 20 10 BD 10 B5 05 4A 89 05 12 69 ...  returns 0x3C (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x0801298C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801298C) - Data: FF F7  returns 0x02 (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x0801298E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801298E) - Data: D4 FF  returns 0x02 (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x08012990, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012990) - Data: 00 20 10 BD 10 B5 05 4A 89 05 12 69 01 43 0A 43 ...  returns 0x3C (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x08012990, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012990) - Data: 00 20  returns 0x02 (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x08012992, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012992) - Data: 10 BD  returns 0x02 (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x08012992, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012992) - Data: 10 BD  returns 0x02 (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x08012994, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012994) - Data: 10 B5 05 4A 89 05 12 69 01 43 0A 43 00 21 08 20 ...  returns 0x3C (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x08012994, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012994) - Data: 10 B5  returns 0x02 (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x08012994, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012994) - Data: 10 B5 05 4A 89 05 12 69 01 43 0A 43 00 21 08 20 ...  returns 0x3C (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x08012994, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012994) - Data: 10 B5  returns 0x02 (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x08012996, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012996) - Data: 05 4A  returns 0x02 (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x08012996, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012996) - Data: 05 4A  returns 0x02 (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x08012998, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012998) - Data: 89 05 12 69 01 43 0A 43 00 21 08 20 FF F7 B9 FF ...  returns 0x3C (0000ms, 0776ms total)
T02F4 004:176 JLINK_ReadMemEx(0x08012998, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012998) - Data: 89 05  returns 0x02 (0001ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x08012998, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08012998) - Data: 89 05 12 69 01 43 0A 43 00 21 08 20 FF F7 B9 FF ...  returns 0x3C (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x08012998, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08012998) - Data: 89 05  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x0801299A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801299A) - Data: 12 69  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x0801299A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801299A) - Data: 12 69  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x0801299C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801299C) - Data: 01 43 0A 43 00 21 08 20 FF F7 B9 FF 00 20 10 BD ...  returns 0x3C (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x0801299C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801299C) - Data: 01 43  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x0801299C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0801299C) - Data: 01 43 0A 43 00 21 08 20 FF F7 B9 FF 00 20 10 BD ...  returns 0x3C (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x0801299C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801299C) - Data: 01 43  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x0801299E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801299E) - Data: 0A 43  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x0801299E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0801299E) - Data: 0A 43  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129A0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129A0) - Data: 00 21 08 20 FF F7 B9 FF 00 20 10 BD 88 3D 00 20 ...  returns 0x3C (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129A0) - Data: 00 21  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129A0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129A0) - Data: 00 21 08 20 FF F7 B9 FF 00 20 10 BD 88 3D 00 20 ...  returns 0x3C (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129A0) - Data: 00 21  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129A2) - Data: 08 20  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129A2) - Data: 08 20  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129A4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129A4) - Data: FF F7 B9 FF 00 20 10 BD 88 3D 00 20 38 B5 04 46 ...  returns 0x3C (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129A4) - Data: FF F7  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129A4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129A4) - Data: FF F7 B9 FF 00 20 10 BD 88 3D 00 20 38 B5 04 46 ...  returns 0x3C (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129A4) - Data: FF F7  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129A6) - Data: B9 FF  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129A8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129A8) - Data: 00 20 10 BD 88 3D 00 20 38 B5 04 46 6B 46 01 22 ...  returns 0x3C (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129A8) - Data: 00 20  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129AA) - Data: 10 BD  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129AA) - Data: 10 BD  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129AC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129AC) - Data: 88 3D 00 20 38 B5 04 46 6B 46 01 22 0E 21 2B 20 ...  returns 0x3C (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129AC) - Data: 88 3D  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129B0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129B0) - Data: 38 B5 04 46 6B 46 01 22 0E 21 2B 20 FF F7 8E FE ...  returns 0x3C (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129B0) - Data: 38 B5  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129B2) - Data: 04 46  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129B2) - Data: 04 46  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129B4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129B4) - Data: 6B 46 01 22 0E 21 2B 20 FF F7 8E FE 68 46 00 78 ...  returns 0x3C (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129B4) - Data: 6B 46  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129B4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129B4) - Data: 6B 46 01 22 0E 21 2B 20 FF F7 8E FE 68 46 00 78 ...  returns 0x3C (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129B4) - Data: 6B 46  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129B6) - Data: 01 22  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129B6) - Data: 01 22  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129B8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129B8) - Data: 0E 21 2B 20 FF F7 8E FE 68 46 00 78 E1 06 40 09 ...  returns 0x3C (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129B8) - Data: 0E 21  returns 0x02 (0000ms, 0777ms total)
T02F4 004:177 JLINK_ReadMemEx(0x080129B8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129B8) - Data: 0E 21 2B 20 FF F7 8E FE 68 46 00 78 E1 06 40 09 ...  returns 0x3C (0000ms, 0777ms total)
T02F4 004:178 JLINK_ReadMemEx(0x080129B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129B8) - Data: 0E 21  returns 0x02 (0000ms, 0778ms total)
T02F4 004:178 JLINK_ReadMemEx(0x080129BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129BA) - Data: 2B 20  returns 0x02 (0000ms, 0778ms total)
T02F4 004:178 JLINK_ReadMemEx(0x080129BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129BA) - Data: 2B 20  returns 0x02 (0000ms, 0778ms total)
T02F4 004:178 JLINK_ReadMemEx(0x080129BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129BC) - Data: FF F7 8E FE 68 46 00 78 E1 06 40 09 40 01 C9 0E ...  returns 0x3C (0000ms, 0778ms total)
T02F4 004:178 JLINK_ReadMemEx(0x080129BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129BC) - Data: FF F7  returns 0x02 (0000ms, 0778ms total)
T02F4 004:178 JLINK_ReadMemEx(0x080129BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129BC) - Data: FF F7 8E FE 68 46 00 78 E1 06 40 09 40 01 C9 0E ...  returns 0x3C (0000ms, 0778ms total)
T02F4 004:178 JLINK_ReadMemEx(0x080129BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129BC) - Data: FF F7  returns 0x02 (0000ms, 0778ms total)
T02F4 004:178 JLINK_ReadMemEx(0x080129BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129BE) - Data: 8E FE  returns 0x02 (0000ms, 0778ms total)
T02F4 004:178 JLINK_ReadMemEx(0x080129C0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129C0) - Data: 68 46 00 78 E1 06 40 09 40 01 C9 0E 01 43 68 46 ...  returns 0x3C (0000ms, 0778ms total)
T02F4 004:178 JLINK_ReadMemEx(0x080129C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129C0) - Data: 68 46  returns 0x02 (0000ms, 0778ms total)
T02F4 004:178 JLINK_ReadMemEx(0x080129C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129C2) - Data: 00 78  returns 0x02 (0000ms, 0778ms total)
T02F4 004:178 JLINK_ReadMemEx(0x080129C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129C2) - Data: 00 78  returns 0x02 (0000ms, 0778ms total)
T02F4 004:178 JLINK_ReadMemEx(0x080129C4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129C4) - Data: E1 06 40 09 40 01 C9 0E 01 43 68 46 01 70 6B 46 ...  returns 0x3C (0000ms, 0778ms total)
T02F4 004:178 JLINK_ReadMemEx(0x080129C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129C4) - Data: E1 06  returns 0x02 (0000ms, 0778ms total)
T02F4 004:178 JLINK_ReadMemEx(0x080129C4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129C4) - Data: E1 06 40 09 40 01 C9 0E 01 43 68 46 01 70 6B 46 ...  returns 0x3C (0000ms, 0778ms total)
T02F4 004:178 JLINK_ReadMemEx(0x080129C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129C4) - Data: E1 06  returns 0x02 (0000ms, 0778ms total)
T02F4 004:178 JLINK_ReadMemEx(0x080129C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129C6) - Data: 40 09  returns 0x02 (0000ms, 0778ms total)
T02F4 004:178 JLINK_ReadMemEx(0x080129C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129C6) - Data: 40 09  returns 0x02 (0000ms, 0778ms total)
T02F4 004:178 JLINK_ReadMemEx(0x080129C8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08012A00) -- Updating C cache (64 bytes @ 0x08012A00) -- Read from C cache (60 bytes @ 0x080129C8) - Data: 40 01 C9 0E 01 43 68 46 01 70 6B 46 01 22 0E 21 ...  returns 0x3C (0001ms, 0779ms total)
T02F4 004:179 JLINK_ReadMemEx(0x080129C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129C8) - Data: 40 01  returns 0x02 (0000ms, 0779ms total)
T02F4 004:179 JLINK_ReadMemEx(0x080129C8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129C8) - Data: 40 01 C9 0E 01 43 68 46 01 70 6B 46 01 22 0E 21 ...  returns 0x3C (0000ms, 0779ms total)
T02F4 004:179 JLINK_ReadMemEx(0x080129C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129C8) - Data: 40 01  returns 0x02 (0000ms, 0779ms total)
T02F4 004:179 JLINK_ReadMemEx(0x080129CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129CA) - Data: C9 0E  returns 0x02 (0000ms, 0779ms total)
T02F4 004:179 JLINK_ReadMemEx(0x080129CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129CA) - Data: C9 0E  returns 0x02 (0000ms, 0779ms total)
T02F4 004:179 JLINK_ReadMemEx(0x080129CC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129CC) - Data: 01 43 68 46 01 70 6B 46 01 22 0E 21 2B 20 FF F7 ...  returns 0x3C (0000ms, 0779ms total)
T02F4 004:179 JLINK_ReadMemEx(0x080129CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129CC) - Data: 01 43  returns 0x02 (0000ms, 0779ms total)
T02F4 004:179 JLINK_ReadMemEx(0x080129CC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129CC) - Data: 01 43 68 46 01 70 6B 46 01 22 0E 21 2B 20 FF F7 ...  returns 0x3C (0000ms, 0779ms total)
T02F4 004:179 JLINK_ReadMemEx(0x080129CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129CC) - Data: 01 43  returns 0x02 (0000ms, 0779ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129CE) - Data: 68 46  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129CE) - Data: 68 46  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129D0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129D0) - Data: 01 70 6B 46 01 22 0E 21 2B 20 FF F7 AD FF 38 BD ...  returns 0x3C (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129D0) - Data: 01 70  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129D0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129D0) - Data: 01 70 6B 46 01 22 0E 21 2B 20 FF F7 AD FF 38 BD ...  returns 0x3C (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129D0) - Data: 01 70  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129D2) - Data: 6B 46  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129D2) - Data: 6B 46  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129D4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129D4) - Data: 01 22 0E 21 2B 20 FF F7 AD FF 38 BD 13 B5 01 23 ...  returns 0x3C (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129D4) - Data: 01 22  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129D4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129D4) - Data: 01 22 0E 21 2B 20 FF F7 AD FF 38 BD 13 B5 01 23 ...  returns 0x3C (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129D4) - Data: 01 22  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129D6) - Data: 0E 21  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129D6) - Data: 0E 21  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129D8) - Data: 2B 20 FF F7 AD FF 38 BD 13 B5 01 23 1A 46 69 46 ...  returns 0x3C (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129D8) - Data: 2B 20  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129D8) - Data: 2B 20 FF F7 AD FF 38 BD 13 B5 01 23 1A 46 69 46 ...  returns 0x3C (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129D8) - Data: 2B 20  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129DA) - Data: FF F7  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129DA) - Data: FF F7  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129DC) - Data: AD FF 38 BD 13 B5 01 23 1A 46 69 46 02 48 F8 F7 ...  returns 0x3C (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129DC) - Data: AD FF  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129DE) - Data: 38 BD  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129E0) - Data: 13 B5 01 23 1A 46 69 46 02 48 F8 F7 26 F9 00 98 ...  returns 0x3C (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129E0) - Data: 13 B5  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129E0) - Data: 13 B5 01 23 1A 46 69 46 02 48 F8 F7 26 F9 00 98 ...  returns 0x3C (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129E0) - Data: 13 B5  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129E2) - Data: 01 23  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129E2) - Data: 01 23  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129E4) - Data: 1A 46 69 46 02 48 F8 F7 26 F9 00 98 1C BD 00 00 ...  returns 0x3C (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129E4) - Data: 1A 46  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129E4) - Data: 1A 46 69 46 02 48 F8 F7 26 F9 00 98 1C BD 00 00 ...  returns 0x3C (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129E4) - Data: 1A 46  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129E6) - Data: 69 46  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129E6) - Data: 69 46  returns 0x02 (0000ms, 0780ms total)
T02F4 004:180 JLINK_ReadMemEx(0x080129E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129E8) - Data: 02 48 F8 F7 26 F9 00 98 1C BD 00 00 DC 07 00 20 ...  returns 0x3C (0001ms, 0781ms total)
T02F4 004:181 JLINK_ReadMemEx(0x080129E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129E8) - Data: 02 48  returns 0x02 (0000ms, 0781ms total)
T02F4 004:181 JLINK_ReadMemEx(0x080129E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129E8) - Data: 02 48 F8 F7 26 F9 00 98 1C BD 00 00 DC 07 00 20 ...  returns 0x3C (0000ms, 0781ms total)
T02F4 004:181 JLINK_ReadMemEx(0x080129E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129E8) - Data: 02 48  returns 0x02 (0000ms, 0781ms total)
T02F4 004:181 JLINK_ReadMemEx(0x080129EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129EA) - Data: F8 F7  returns 0x02 (0000ms, 0781ms total)
T02F4 004:181 JLINK_ReadMemEx(0x080129EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129EA) - Data: F8 F7  returns 0x02 (0000ms, 0781ms total)
T02F4 004:181 JLINK_ReadMemEx(0x080129EC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129EC) - Data: 26 F9 00 98 1C BD 00 00 DC 07 00 20 08 B5 F6 F7 ...  returns 0x3C (0000ms, 0781ms total)
T02F4 004:181 JLINK_ReadMemEx(0x080129EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129EC) - Data: 26 F9  returns 0x02 (0000ms, 0781ms total)
T02F4 004:181 JLINK_ReadMemEx(0x080129EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129EE) - Data: 00 98  returns 0x02 (0000ms, 0781ms total)
T02F4 004:181 JLINK_ReadMemEx(0x080129F0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129F0) - Data: 1C BD 00 00 DC 07 00 20 08 B5 F6 F7 CF FB FD F7 ...  returns 0x3C (0000ms, 0781ms total)
T02F4 004:181 JLINK_ReadMemEx(0x080129F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129F0) - Data: 1C BD  returns 0x02 (0000ms, 0781ms total)
T02F4 004:181 JLINK_ReadMemEx(0x080129F0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129F0) - Data: 1C BD 00 00 DC 07 00 20 08 B5 F6 F7 CF FB FD F7 ...  returns 0x3C (0000ms, 0781ms total)
T02F4 004:181 JLINK_ReadMemEx(0x080129F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129F0) - Data: 1C BD  returns 0x02 (0000ms, 0781ms total)
T02F4 004:181 JLINK_ReadMemEx(0x080129F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129F2) - Data: 00 00  returns 0x02 (0000ms, 0781ms total)
T02F4 004:181 JLINK_ReadMemEx(0x080129F6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129F6) - Data: 00 20  returns 0x02 (0000ms, 0781ms total)
T02F4 004:181 JLINK_ReadMemEx(0x080129F8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080129F8) - Data: 08 B5 F6 F7 CF FB FD F7 6F F8 69 48 67 49 01 60 ...  returns 0x3C (0000ms, 0781ms total)
T02F4 004:181 JLINK_ReadMemEx(0x080129F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129F8) - Data: 08 B5  returns 0x02 (0000ms, 0781ms total)
T6E34 004:652 JLINK_ReadMemEx(0x080129F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080129F8) - Data: 08 B5  returns 0x02 (0000ms, 0781ms total)
T6E34 004:652 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0003ms, 0784ms total)
T6E34 004:755 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T6E34 004:857 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T6E34 004:958 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T6E34 005:059 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T6E34 005:160 JLINK_IsHalted()  returns FALSE (0000ms, 0784ms total)
T02F4 005:262 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 0785ms total)
T02F4 005:264 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0786ms total)
T02F4 005:265 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0787ms total)
T02F4 005:267 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 0787ms total)
T02F4 005:267 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0788ms total)
T02F4 005:268 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 00  returns 0x01 (0001ms, 0789ms total)
T02F4 005:269 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0790ms total)
T02F4 005:271 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0791ms total)
T02F4 005:273 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0792ms total)
T02F4 005:274 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 0793ms total)
T02F4 005:284 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 0793ms total)
T02F4 005:284 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 00 00  returns 0x02 (0001ms, 0794ms total)
T02F4 005:285 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0000ms, 0794ms total)
T02F4 005:286 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0795ms total)
T02F4 005:287 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 0796ms total)
T02F4 005:288 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 0796ms total)
T02F4 005:288 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0797ms total)
T02F4 005:289 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 0798ms total)
T02F4 005:290 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 0798ms total)
T02F4 005:291 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 00 00  returns 0x02 (0000ms, 0798ms total)
T6E34 005:291 JLINK_IsHalted()  returns FALSE (0001ms, 0799ms total)
T6E34 005:394 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T6E34 005:495 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T6E34 005:596 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T6E34 005:697 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T02F4 005:804 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 0799ms total)
T02F4 005:806 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0800ms total)
T02F4 005:807 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 0800ms total)
T02F4 005:817 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 0800ms total)
T02F4 005:817 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0801ms total)
T02F4 005:818 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0802ms total)
T02F4 005:819 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0804ms total)
T02F4 005:821 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0805ms total)
T02F4 005:824 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 0805ms total)
T02F4 005:824 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 0806ms total)
T02F4 005:826 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0807ms total)
T02F4 005:827 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 3A 00  returns 0x02 (0000ms, 0807ms total)
T02F4 005:828 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 0808ms total)
T02F4 005:830 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0809ms total)
T02F4 005:831 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 0810ms total)
T02F4 005:832 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 0810ms total)
T02F4 005:832 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0811ms total)
T02F4 005:833 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 0812ms total)
T02F4 005:834 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 0812ms total)
T02F4 005:835 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 00 00  returns 0x02 (0000ms, 0812ms total)
T6E34 005:835 JLINK_IsHalted()  returns FALSE (0001ms, 0813ms total)
T6E34 005:938 JLINK_IsHalted()  returns FALSE (0000ms, 0812ms total)
T6E34 006:039 JLINK_IsHalted()  returns FALSE (0000ms, 0812ms total)
T6E34 006:140 JLINK_IsHalted()  returns FALSE (0000ms, 0812ms total)
T6E34 006:241 JLINK_IsHalted()  returns FALSE (0000ms, 0812ms total)
T02F4 006:343 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 0813ms total)
T02F4 006:345 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0814ms total)
T02F4 006:346 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 0814ms total)
T02F4 006:347 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0816ms total)
T02F4 006:348 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 0816ms total)
T02F4 006:348 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0817ms total)
T02F4 006:349 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0818ms total)
T02F4 006:350 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0819ms total)
T02F4 006:359 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0820ms total)
T02F4 006:360 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 0821ms total)
T02F4 006:362 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0822ms total)
T02F4 006:363 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 76 00  returns 0x02 (0001ms, 0823ms total)
T02F4 006:364 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 0824ms total)
T02F4 006:366 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0825ms total)
T02F4 006:367 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 0826ms total)
T02F4 006:368 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 0826ms total)
T02F4 006:368 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0827ms total)
T02F4 006:369 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 0827ms total)
T02F4 006:369 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0828ms total)
T02F4 006:371 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 01 00  returns 0x02 (0001ms, 0829ms total)
T6E34 006:372 JLINK_IsHalted()  returns FALSE (0001ms, 0830ms total)
T6E34 006:473 JLINK_IsHalted()  returns FALSE (0000ms, 0829ms total)
T6E34 006:574 JLINK_IsHalted()  returns FALSE (0000ms, 0829ms total)
T6E34 006:676 JLINK_IsHalted()  returns FALSE (0000ms, 0829ms total)
T6E34 006:777 JLINK_IsHalted()  returns FALSE (0000ms, 0829ms total)
T02F4 006:878 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 0831ms total)
T02F4 006:880 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0832ms total)
T02F4 006:881 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0833ms total)
T02F4 006:882 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0834ms total)
T02F4 006:883 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0001ms, 0835ms total)
T02F4 006:884 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 0835ms total)
T02F4 006:885 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0836ms total)
T02F4 006:886 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0837ms total)
T02F4 006:895 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0001ms, 0838ms total)
T02F4 006:897 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 0838ms total)
T02F4 006:899 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0839ms total)
T02F4 006:900 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: C9 00  returns 0x02 (0000ms, 0839ms total)
T02F4 006:901 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0000ms, 0839ms total)
T02F4 006:903 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0840ms total)
T02F4 006:904 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 0840ms total)
T02F4 006:904 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0841ms total)
T02F4 006:905 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0842ms total)
T02F4 006:906 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 0842ms total)
T02F4 006:906 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0843ms total)
T02F4 006:908 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 01 00  returns 0x02 (0000ms, 0843ms total)
T6E34 006:909 JLINK_IsHalted()  returns FALSE (0000ms, 0843ms total)
T6E34 007:011 JLINK_IsHalted()  returns FALSE (0000ms, 0843ms total)
T6E34 007:112 JLINK_IsHalted()  returns FALSE (0000ms, 0843ms total)
T6E34 007:213 JLINK_IsHalted()  returns FALSE (0000ms, 0843ms total)
T6E34 007:314 JLINK_IsHalted()  returns FALSE (0000ms, 0843ms total)
T02F4 007:416 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 0845ms total)
T02F4 007:418 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0846ms total)
T02F4 007:419 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0847ms total)
T02F4 007:420 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0848ms total)
T02F4 007:421 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0000ms, 0848ms total)
T02F4 007:421 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0849ms total)
T02F4 007:422 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0851ms total)
T02F4 007:424 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0852ms total)
T02F4 007:433 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0000ms, 0852ms total)
T02F4 007:434 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 0853ms total)
T02F4 007:436 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0854ms total)
T02F4 007:437 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 10 01  returns 0x02 (0000ms, 0854ms total)
T02F4 007:438 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 0855ms total)
T02F4 007:440 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0856ms total)
T02F4 007:441 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 0857ms total)
T02F4 007:442 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 0857ms total)
T02F4 007:442 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0858ms total)
T02F4 007:443 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 0858ms total)
T02F4 007:443 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0859ms total)
T02F4 007:445 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 02 00  returns 0x02 (0001ms, 0860ms total)
T6E34 007:446 JLINK_IsHalted()  returns FALSE (0001ms, 0861ms total)
T6E34 007:547 JLINK_IsHalted()  returns FALSE (0000ms, 0860ms total)
T6E34 007:648 JLINK_IsHalted()  returns FALSE (0000ms, 0860ms total)
T6E34 007:750 JLINK_IsHalted()  returns FALSE (0000ms, 0860ms total)
T6E34 007:851 JLINK_IsHalted()  returns FALSE (0000ms, 0860ms total)
T02F4 007:952 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 0862ms total)
T02F4 007:954 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0863ms total)
T02F4 007:955 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0864ms total)
T02F4 007:956 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0865ms total)
T02F4 007:957 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 03  returns 0x01 (0000ms, 0865ms total)
T02F4 007:957 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0866ms total)
T02F4 007:958 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0868ms total)
T02F4 007:960 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 0868ms total)
T02F4 007:968 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 03  returns 0x01 (0001ms, 0869ms total)
T02F4 007:970 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 0870ms total)
T02F4 007:972 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 0870ms total)
T02F4 007:973 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 50 01  returns 0x02 (0000ms, 0871ms total)
T02F4 007:974 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0000ms, 0871ms total)
T02F4 007:976 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0872ms total)
T02F4 007:977 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 0873ms total)
T02F4 007:978 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 0873ms total)
T02F4 007:978 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0874ms total)
T02F4 007:979 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 0875ms total)
T02F4 007:980 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0876ms total)
T02F4 007:981 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 02 00  returns 0x02 (0001ms, 0877ms total)
T6E34 007:982 JLINK_IsHalted()  returns FALSE (0001ms, 0878ms total)
T6E34 008:084 JLINK_IsHalted()  returns FALSE (0000ms, 0877ms total)
T6E34 008:186 JLINK_IsHalted()  returns FALSE (0000ms, 0877ms total)
T6E34 008:287 JLINK_IsHalted()  returns FALSE (0001ms, 0878ms total)
T6E34 008:388 JLINK_IsHalted()  returns FALSE (0000ms, 0877ms total)
T02F4 008:489 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 0879ms total)
T02F4 008:491 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0880ms total)
T02F4 008:492 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0002ms, 0882ms total)
T02F4 008:494 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0883ms total)
T02F4 008:495 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0884ms total)
T02F4 008:496 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 0884ms total)
T02F4 008:497 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 1E 59 47 00 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0885ms total)
T02F4 008:498 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0886ms total)
T02F4 008:507 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0001ms, 0887ms total)
T02F4 008:510 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 0887ms total)
T02F4 008:512 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 0887ms total)
T02F4 008:512 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 8D 01  returns 0x02 (0001ms, 0888ms total)
T02F4 008:513 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 0889ms total)
T02F4 008:515 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0890ms total)
T02F4 008:516 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 0891ms total)
T02F4 008:517 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 0891ms total)
T02F4 008:517 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0892ms total)
T02F4 008:518 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 0893ms total)
T02F4 008:519 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 0893ms total)
T02F4 008:520 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 03 00  returns 0x02 (0001ms, 0894ms total)
T6E34 008:521 JLINK_IsHalted()  returns FALSE (0001ms, 0895ms total)
T6E34 008:622 JLINK_IsHalted()  returns FALSE (0000ms, 0894ms total)
T6E34 008:724 JLINK_IsHalted()  returns FALSE (0000ms, 0894ms total)
T6E34 008:825 JLINK_IsHalted()  returns FALSE (0000ms, 0894ms total)
T6E34 008:926 JLINK_IsHalted()  returns FALSE (0000ms, 0894ms total)
T02F4 009:027 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 0895ms total)
T02F4 009:029 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0896ms total)
T02F4 009:030 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 0896ms total)
T02F4 009:031 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 0896ms total)
T02F4 009:031 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0897ms total)
T02F4 009:032 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0898ms total)
T02F4 009:033 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 19 59 47 01 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0900ms total)
T02F4 009:035 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0901ms total)
T02F4 009:045 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 0901ms total)
T02F4 009:047 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 0902ms total)
T02F4 009:049 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 0902ms total)
T02F4 009:049 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: E4 01  returns 0x02 (0001ms, 0903ms total)
T02F4 009:050 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 0904ms total)
T02F4 009:052 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0905ms total)
T02F4 009:053 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 0905ms total)
T02F4 009:053 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0906ms total)
T02F4 009:054 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0907ms total)
T02F4 009:055 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 0907ms total)
T02F4 009:055 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0908ms total)
T02F4 009:057 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 04 00  returns 0x02 (0001ms, 0909ms total)
T6E34 009:058 JLINK_IsHalted()  returns FALSE (0001ms, 0910ms total)
T6E34 009:160 JLINK_IsHalted()  returns FALSE (0000ms, 0909ms total)
T6E34 009:261 JLINK_IsHalted()  returns FALSE (0000ms, 0909ms total)
T6E34 009:363 JLINK_IsHalted()  returns FALSE (0000ms, 0909ms total)
T6E34 009:464 JLINK_IsHalted()  returns FALSE (0000ms, 0909ms total)
T02F4 009:565 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 0911ms total)
T02F4 009:567 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0912ms total)
T02F4 009:568 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0913ms total)
T02F4 009:569 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0914ms total)
T02F4 009:570 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0001ms, 0915ms total)
T02F4 009:571 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 0915ms total)
T02F4 009:572 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 19 59 47 01 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0916ms total)
T02F4 009:573 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0917ms total)
T02F4 009:582 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0001ms, 0918ms total)
T02F4 009:584 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 0918ms total)
T02F4 009:585 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0919ms total)
T02F4 009:586 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 1A 02  returns 0x02 (0001ms, 0920ms total)
T02F4 009:587 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 0921ms total)
T02F4 009:589 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0922ms total)
T02F4 009:590 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 0923ms total)
T02F4 009:591 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 0923ms total)
T02F4 009:591 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0924ms total)
T02F4 009:592 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 0925ms total)
T02F4 009:593 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 0925ms total)
T02F4 009:594 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 04 00  returns 0x02 (0001ms, 0926ms total)
T6E34 009:595 JLINK_IsHalted()  returns FALSE (0001ms, 0927ms total)
T6E34 009:698 JLINK_IsHalted()  returns FALSE (0000ms, 0926ms total)
T6E34 009:799 JLINK_IsHalted()  returns FALSE (0000ms, 0926ms total)
T6E34 009:900 JLINK_IsHalted()  returns FALSE (0000ms, 0926ms total)
T6E34 010:001 JLINK_IsHalted()  returns FALSE (0001ms, 0927ms total)
T02F4 010:103 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 0928ms total)
T02F4 010:105 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0929ms total)
T02F4 010:106 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0930ms total)
T02F4 010:108 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 0930ms total)
T02F4 010:108 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0931ms total)
T02F4 010:109 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 0931ms total)
T02F4 010:110 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 23 59 47 02 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0932ms total)
T02F4 010:111 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0933ms total)
T02F4 010:120 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 0933ms total)
T02F4 010:121 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 0934ms total)
T02F4 010:123 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0935ms total)
T02F4 010:124 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 68 02  returns 0x02 (0000ms, 0935ms total)
T02F4 010:125 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0000ms, 0935ms total)
T02F4 010:127 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 0935ms total)
T02F4 010:127 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 0936ms total)
T02F4 010:128 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0937ms total)
T02F4 010:129 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 0937ms total)
T02F4 010:129 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 0938ms total)
T02F4 010:130 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0939ms total)
T02F4 010:132 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 05 00  returns 0x02 (0000ms, 0939ms total)
T6E34 010:133 JLINK_IsHalted()  returns FALSE (0000ms, 0939ms total)
T6E34 010:234 JLINK_IsHalted()  returns FALSE (0000ms, 0939ms total)
T6E34 010:335 JLINK_IsHalted()  returns FALSE (0000ms, 0939ms total)
T6E34 010:437 JLINK_IsHalted()  returns FALSE (0000ms, 0939ms total)
T6E34 010:538 JLINK_IsHalted()  returns FALSE (0000ms, 0939ms total)
T02F4 010:639 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 0941ms total)
T02F4 010:641 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0942ms total)
T02F4 010:642 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0943ms total)
T02F4 010:643 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0944ms total)
T02F4 010:644 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0000ms, 0944ms total)
T02F4 010:644 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0945ms total)
T02F4 010:645 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 23 59 47 02 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0947ms total)
T02F4 010:647 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0948ms total)
T02F4 010:657 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0000ms, 0948ms total)
T02F4 010:658 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 0949ms total)
T02F4 010:660 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0950ms total)
T02F4 010:661 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 9F 02  returns 0x02 (0000ms, 0950ms total)
T02F4 010:662 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 0950ms total)
T02F4 010:664 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0951ms total)
T02F4 010:665 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 0951ms total)
T02F4 010:665 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0952ms total)
T02F4 010:666 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0953ms total)
T02F4 010:667 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 0953ms total)
T02F4 010:667 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0954ms total)
T02F4 010:669 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 00 00  returns 0x02 (0001ms, 0955ms total)
T6E34 010:670 JLINK_IsHalted()  returns FALSE (0001ms, 0956ms total)
T6E34 010:772 JLINK_IsHalted()  returns FALSE (0000ms, 0955ms total)
T6E34 010:873 JLINK_IsHalted()  returns FALSE (0000ms, 0955ms total)
T6E34 010:974 JLINK_IsHalted()  returns FALSE (0000ms, 0955ms total)
T6E34 011:075 JLINK_IsHalted()  returns FALSE (0001ms, 0956ms total)
T02F4 011:177 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 0957ms total)
T02F4 011:179 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0958ms total)
T02F4 011:180 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0959ms total)
T02F4 011:181 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0960ms total)
T02F4 011:182 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0961ms total)
T02F4 011:183 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 0961ms total)
T02F4 011:184 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 19 59 47 03 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0962ms total)
T02F4 011:185 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0963ms total)
T02F4 011:194 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 0963ms total)
T02F4 011:195 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 0964ms total)
T02F4 011:197 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0965ms total)
T02F4 011:198 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: EB 02  returns 0x02 (0000ms, 0965ms total)
T02F4 011:199 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 0965ms total)
T02F4 011:201 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0966ms total)
T02F4 011:202 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 0966ms total)
T02F4 011:202 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0967ms total)
T02F4 011:203 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0968ms total)
T02F4 011:204 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 0968ms total)
T02F4 011:204 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0969ms total)
T02F4 011:206 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 00 00  returns 0x02 (0001ms, 0970ms total)
T6E34 011:207 JLINK_IsHalted()  returns FALSE (0001ms, 0971ms total)
T6E34 011:308 JLINK_IsHalted()  returns FALSE (0000ms, 0970ms total)
T6E34 011:409 JLINK_IsHalted()  returns FALSE (0000ms, 0970ms total)
T6E34 011:511 JLINK_IsHalted()  returns FALSE (0000ms, 0970ms total)
T6E34 011:612 JLINK_IsHalted()  returns FALSE (0000ms, 0970ms total)
T02F4 011:714 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 0972ms total)
T02F4 011:716 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0973ms total)
T02F4 011:717 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0974ms total)
T02F4 011:718 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0975ms total)
T02F4 011:719 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 03  returns 0x01 (0000ms, 0975ms total)
T02F4 011:719 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0976ms total)
T02F4 011:720 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 19 59 47 03 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0978ms total)
T02F4 011:722 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0979ms total)
T02F4 011:731 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 03  returns 0x01 (0000ms, 0979ms total)
T02F4 011:733 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 0979ms total)
T02F4 011:735 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 0979ms total)
T02F4 011:735 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 31 03  returns 0x02 (0001ms, 0980ms total)
T02F4 011:736 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 0981ms total)
T02F4 011:738 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0982ms total)
T02F4 011:739 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 0983ms total)
T02F4 011:740 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0984ms total)
T02F4 011:741 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 0984ms total)
T02F4 011:741 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 0985ms total)
T02F4 011:742 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0986ms total)
T02F4 011:744 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 00 00  returns 0x02 (0000ms, 0986ms total)
T6E34 011:744 JLINK_IsHalted()  returns FALSE (0001ms, 0987ms total)
T6E34 011:846 JLINK_IsHalted()  returns FALSE (0000ms, 0986ms total)
T6E34 011:948 JLINK_IsHalted()  returns FALSE (0000ms, 0986ms total)
T6E34 012:049 JLINK_IsHalted()  returns FALSE (0000ms, 0986ms total)
T6E34 012:150 JLINK_IsHalted()  returns FALSE (0000ms, 0986ms total)
T02F4 012:252 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 0988ms total)
T02F4 012:254 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0989ms total)
T02F4 012:255 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0990ms total)
T02F4 012:256 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0991ms total)
T02F4 012:257 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0992ms total)
T02F4 012:258 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 0992ms total)
T02F4 012:259 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 04 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0993ms total)
T02F4 012:260 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0994ms total)
T02F4 012:269 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 0994ms total)
T02F4 012:270 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 0995ms total)
T02F4 012:272 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0996ms total)
T02F4 012:273 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 82 03  returns 0x02 (0000ms, 0996ms total)
T02F4 012:274 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 0996ms total)
T02F4 012:275 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0997ms total)
T02F4 012:276 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 0998ms total)
T02F4 012:277 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0999ms total)
T02F4 012:278 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 0999ms total)
T02F4 012:278 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1000ms total)
T02F4 012:279 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1001ms total)
T02F4 012:280 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 01 00  returns 0x02 (0001ms, 1002ms total)
T6E34 012:281 JLINK_IsHalted()  returns FALSE (0001ms, 1003ms total)
T6E34 012:383 JLINK_IsHalted()  returns FALSE (0000ms, 1002ms total)
T6E34 012:484 JLINK_IsHalted()  returns FALSE (0000ms, 1002ms total)
T6E34 012:586 JLINK_IsHalted()  returns FALSE (0000ms, 1002ms total)
T6E34 012:687 JLINK_IsHalted()  returns FALSE (0000ms, 1002ms total)
T02F4 012:788 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1004ms total)
T02F4 012:790 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1005ms total)
T02F4 012:791 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1006ms total)
T02F4 012:792 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1007ms total)
T02F4 012:793 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0000ms, 1007ms total)
T02F4 012:793 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1008ms total)
T02F4 012:794 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 04 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1009ms total)
T02F4 012:795 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1010ms total)
T02F4 012:805 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0000ms, 1010ms total)
T02F4 012:807 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 1010ms total)
T02F4 012:808 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1011ms total)
T02F4 012:809 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: C5 03  returns 0x02 (0001ms, 1012ms total)
T02F4 012:810 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1013ms total)
T02F4 012:812 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1014ms total)
T02F4 012:813 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1014ms total)
T02F4 012:813 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1015ms total)
T02F4 012:814 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1016ms total)
T02F4 012:815 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1016ms total)
T02F4 012:815 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1017ms total)
T02F4 012:817 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 01 00  returns 0x02 (0000ms, 1017ms total)
T6E34 012:818 JLINK_IsHalted()  returns FALSE (0000ms, 1017ms total)
T6E34 012:919 JLINK_IsHalted()  returns FALSE (0000ms, 1017ms total)
T6E34 013:021 JLINK_IsHalted()  returns FALSE (0000ms, 1017ms total)
T6E34 013:122 JLINK_IsHalted()  returns FALSE (0000ms, 1017ms total)
T6E34 013:223 JLINK_IsHalted()  returns FALSE (0000ms, 1017ms total)
T02F4 013:325 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1019ms total)
T02F4 013:327 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1020ms total)
T02F4 013:328 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1021ms total)
T02F4 013:329 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1022ms total)
T02F4 013:330 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1023ms total)
T02F4 013:331 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1023ms total)
T02F4 013:332 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 05 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1024ms total)
T02F4 013:333 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1025ms total)
T02F4 013:342 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1026ms total)
T02F4 013:344 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 1027ms total)
T02F4 013:346 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1028ms total)
T02F4 013:347 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 05 04  returns 0x02 (0000ms, 1028ms total)
T02F4 013:348 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1029ms total)
T02F4 013:350 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1030ms total)
T02F4 013:351 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1030ms total)
T02F4 013:351 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1031ms total)
T02F4 013:352 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1032ms total)
T02F4 013:353 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1032ms total)
T02F4 013:353 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1033ms total)
T02F4 013:355 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 02 00  returns 0x02 (0001ms, 1034ms total)
T6E34 013:356 JLINK_IsHalted()  returns FALSE (0001ms, 1035ms total)
T6E34 013:457 JLINK_IsHalted()  returns FALSE (0000ms, 1034ms total)
T6E34 013:558 JLINK_IsHalted()  returns FALSE (0000ms, 1034ms total)
T6E34 013:660 JLINK_IsHalted()  returns FALSE (0001ms, 1035ms total)
T6E34 013:761 JLINK_IsHalted()  returns FALSE (0000ms, 1034ms total)
T02F4 013:862 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1036ms total)
T02F4 013:864 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1037ms total)
T02F4 013:866 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 1037ms total)
T02F4 013:867 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 1037ms total)
T02F4 013:867 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0001ms, 1038ms total)
T02F4 013:868 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1039ms total)
T02F4 013:869 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 05 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1040ms total)
T02F4 013:870 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1041ms total)
T02F4 013:879 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0001ms, 1042ms total)
T02F4 013:881 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 1043ms total)
T02F4 013:884 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1043ms total)
T02F4 013:884 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 4D 04  returns 0x02 (0001ms, 1044ms total)
T02F4 013:885 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1045ms total)
T02F4 013:887 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 24 47 4E 47 47 41 2C 2C 2C 2C 2C 2C 30 2C 30 30 ...  returns 0x20 (0001ms, 1046ms total)
T02F4 013:888 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1047ms total)
T02F4 013:889 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1048ms total)
T02F4 013:890 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 1048ms total)
T02F4 013:890 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1049ms total)
T02F4 013:891 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1050ms total)
T02F4 013:893 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 02 00  returns 0x02 (0000ms, 1050ms total)
T6E34 013:894 JLINK_IsHalted()  returns FALSE (0000ms, 1050ms total)
T6E34 013:996 JLINK_IsHalted()  returns FALSE (0000ms, 1050ms total)
T6E34 014:097 JLINK_IsHalted()  returns FALSE (0000ms, 1050ms total)
T6E34 014:198 JLINK_IsHalted()  returns FALSE (0000ms, 1050ms total)
T6E34 014:299 JLINK_IsHalted()  returns FALSE (0000ms, 1050ms total)
T02F4 014:401 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1051ms total)
T02F4 014:403 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1052ms total)
T02F4 014:404 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1053ms total)
T02F4 014:405 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1054ms total)
T02F4 014:406 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0000ms, 1054ms total)
T02F4 014:407 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1054ms total)
T02F4 014:407 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 23 59 47 06 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1056ms total)
T02F4 014:409 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1057ms total)
T02F4 014:418 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0001ms, 1058ms total)
T02F4 014:420 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 1059ms total)
T02F4 014:422 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1059ms total)
T02F4 014:422 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 93 04  returns 0x02 (0001ms, 1060ms total)
T02F4 014:423 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1061ms total)
T02F4 014:425 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1062ms total)
T02F4 014:426 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1063ms total)
T02F4 014:427 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1064ms total)
T02F4 014:428 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 1064ms total)
T02F4 014:428 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1065ms total)
T02F4 014:429 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1066ms total)
T02F4 014:431 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 00 00  returns 0x02 (0000ms, 1066ms total)
T6E34 014:432 JLINK_IsHalted()  returns FALSE (0000ms, 1066ms total)
T6E34 014:533 JLINK_IsHalted()  returns FALSE (0000ms, 1066ms total)
T6E34 014:635 JLINK_IsHalted()  returns FALSE (0000ms, 1066ms total)
T6E34 014:736 JLINK_IsHalted()  returns FALSE (0000ms, 1066ms total)
T6E34 014:837 JLINK_IsHalted()  returns FALSE (0000ms, 1066ms total)
T02F4 014:939 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1067ms total)
T02F4 014:941 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1068ms total)
T02F4 014:942 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1069ms total)
T02F4 014:943 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1070ms total)
T02F4 014:944 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0000ms, 1070ms total)
T02F4 014:944 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1071ms total)
T02F4 014:945 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 23 59 47 06 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1072ms total)
T02F4 014:946 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1073ms total)
T02F4 014:955 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0001ms, 1074ms total)
T02F4 014:957 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 1075ms total)
T02F4 014:959 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1076ms total)
T02F4 014:960 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: DF 04  returns 0x02 (0000ms, 1076ms total)
T02F4 014:961 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 1076ms total)
T02F4 014:963 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 24 47 4E 47 47 41 2C 2C 2C 2C 2C 2C 30 2C 30 30 ...  returns 0x20 (0000ms, 1076ms total)
T02F4 014:964 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1076ms total)
T02F4 014:964 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1077ms total)
T02F4 014:965 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1078ms total)
T02F4 014:966 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1078ms total)
T02F4 014:966 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1079ms total)
T02F4 014:968 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 00 00  returns 0x02 (0001ms, 1080ms total)
T6E34 014:969 JLINK_IsHalted()  returns FALSE (0001ms, 1081ms total)
T6E34 015:070 JLINK_IsHalted()  returns FALSE (0000ms, 1080ms total)
T6E34 015:171 JLINK_IsHalted()  returns FALSE (0000ms, 1080ms total)
T6E34 015:273 JLINK_IsHalted()  returns FALSE (0000ms, 1080ms total)
T6E34 015:374 JLINK_IsHalted()  returns FALSE (0000ms, 1080ms total)
T02F4 015:475 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1082ms total)
T02F4 015:477 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1083ms total)
T02F4 015:478 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1084ms total)
T02F4 015:479 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1085ms total)
T02F4 015:480 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0000ms, 1085ms total)
T02F4 015:480 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1086ms total)
T02F4 015:481 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 23 59 47 07 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1088ms total)
T02F4 015:483 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1089ms total)
T02F4 015:492 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0001ms, 1090ms total)
T02F4 015:494 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 1090ms total)
T02F4 015:496 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1091ms total)
T02F4 015:497 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 1A 05  returns 0x02 (0000ms, 1091ms total)
T02F4 015:498 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 1091ms total)
T02F4 015:500 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1092ms total)
T02F4 015:501 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1093ms total)
T02F4 015:502 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1093ms total)
T02F4 015:502 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1094ms total)
T02F4 015:503 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1094ms total)
T02F4 015:504 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1095ms total)
T02F4 015:505 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 01 00  returns 0x02 (0001ms, 1096ms total)
T6E34 015:506 JLINK_IsHalted()  returns FALSE (0001ms, 1097ms total)
T6E34 015:609 JLINK_IsHalted()  returns FALSE (0000ms, 1096ms total)
T6E34 015:710 JLINK_IsHalted()  returns FALSE (0000ms, 1096ms total)
T6E34 015:811 JLINK_IsHalted()  returns FALSE (0000ms, 1096ms total)
T6E34 015:912 JLINK_IsHalted()  returns FALSE (0000ms, 1096ms total)
T02F4 016:014 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1098ms total)
T02F4 016:016 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1099ms total)
T02F4 016:017 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1100ms total)
T02F4 016:018 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1101ms total)
T02F4 016:019 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 1101ms total)
T02F4 016:019 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1102ms total)
T02F4 016:020 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 23 59 47 08 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1104ms total)
T02F4 016:022 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1105ms total)
T02F4 016:031 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 1105ms total)
T02F4 016:033 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 1105ms total)
T02F4 016:035 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1105ms total)
T02F4 016:035 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 66 05  returns 0x02 (0001ms, 1106ms total)
T02F4 016:036 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1107ms total)
T02F4 016:038 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1108ms total)
T02F4 016:039 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1109ms total)
T02F4 016:040 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1109ms total)
T02F4 016:040 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1110ms total)
T02F4 016:041 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1111ms total)
T02F4 016:042 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1111ms total)
T02F4 016:043 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 02 00  returns 0x02 (0001ms, 1112ms total)
T6E34 016:045 JLINK_IsHalted()  returns FALSE (0000ms, 1112ms total)
T6E34 016:146 JLINK_IsHalted()  returns FALSE (0000ms, 1112ms total)
T6E34 016:247 JLINK_IsHalted()  returns FALSE (0000ms, 1112ms total)
T6E34 016:348 JLINK_IsHalted()  returns FALSE (0000ms, 1112ms total)
T6E34 016:450 JLINK_IsHalted()  returns FALSE (0000ms, 1112ms total)
T02F4 016:551 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1114ms total)
T02F4 016:554 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1115ms total)
T02F4 016:555 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1116ms total)
T02F4 016:556 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1117ms total)
T02F4 016:557 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0000ms, 1117ms total)
T02F4 016:557 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1118ms total)
T02F4 016:558 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 23 59 47 08 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1120ms total)
T02F4 016:560 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1121ms total)
T02F4 016:568 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0001ms, 1122ms total)
T02F4 016:570 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 1123ms total)
T02F4 016:572 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1124ms total)
T02F4 016:573 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: A7 05  returns 0x02 (0001ms, 1125ms total)
T02F4 016:574 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1126ms total)
T02F4 016:576 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1127ms total)
T02F4 016:577 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1128ms total)
T02F4 016:578 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1128ms total)
T02F4 016:578 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1129ms total)
T02F4 016:579 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1130ms total)
T02F4 016:580 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1130ms total)
T02F4 016:581 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 02 00  returns 0x02 (0001ms, 1131ms total)
T6E34 016:582 JLINK_IsHalted()  returns FALSE (0001ms, 1132ms total)
T6E34 016:683 JLINK_IsHalted()  returns FALSE (0000ms, 1131ms total)
T6E34 016:785 JLINK_IsHalted()  returns FALSE (0000ms, 1131ms total)
T6E34 016:886 JLINK_IsHalted()  returns FALSE (0000ms, 1131ms total)
T6E34 016:987 JLINK_IsHalted()  returns FALSE (0000ms, 1131ms total)
T02F4 017:088 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1133ms total)
T02F4 017:090 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1134ms total)
T02F4 017:091 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1135ms total)
T02F4 017:092 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1136ms total)
T02F4 017:093 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1137ms total)
T02F4 017:094 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1137ms total)
T02F4 017:094 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 19 59 47 09 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0003ms, 1140ms total)
T02F4 017:098 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1141ms total)
T02F4 017:107 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1142ms total)
T02F4 017:109 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 1143ms total)
T02F4 017:111 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1143ms total)
T02F4 017:111 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: FD 05  returns 0x02 (0001ms, 1144ms total)
T02F4 017:112 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1145ms total)
T02F4 017:114 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1146ms total)
T02F4 017:115 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1147ms total)
T02F4 017:116 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1148ms total)
T02F4 017:117 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 1148ms total)
T02F4 017:117 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1149ms total)
T02F4 017:118 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1150ms total)
T02F4 017:120 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 03 00  returns 0x02 (0000ms, 1150ms total)
T6E34 017:121 JLINK_IsHalted()  returns FALSE (0000ms, 1150ms total)
T6E34 017:222 JLINK_IsHalted()  returns FALSE (0000ms, 1150ms total)
T6E34 017:323 JLINK_IsHalted()  returns FALSE (0000ms, 1150ms total)
T6E34 017:424 JLINK_IsHalted()  returns FALSE (0000ms, 1150ms total)
T6E34 017:526 JLINK_IsHalted()  returns FALSE (0000ms, 1150ms total)
T02F4 017:628 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1152ms total)
T02F4 017:630 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1153ms total)
T02F4 017:631 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1154ms total)
T02F4 017:632 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1155ms total)
T02F4 017:633 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0001ms, 1156ms total)
T02F4 017:634 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1156ms total)
T02F4 017:635 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 19 59 47 09 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1157ms total)
T02F4 017:636 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1158ms total)
T02F4 017:645 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0001ms, 1159ms total)
T02F4 017:647 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 1160ms total)
T02F4 017:649 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1161ms total)
T02F4 017:650 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 3F 06  returns 0x02 (0000ms, 1161ms total)
T02F4 017:651 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 1161ms total)
T02F4 017:653 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1161ms total)
T02F4 017:653 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1162ms total)
T02F4 017:654 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1163ms total)
T02F4 017:655 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 1163ms total)
T02F4 017:655 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1164ms total)
T02F4 017:656 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1165ms total)
T02F4 017:658 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 03 00  returns 0x02 (0000ms, 1165ms total)
T6E34 017:659 JLINK_IsHalted()  returns FALSE (0000ms, 1165ms total)
T6E34 017:761 JLINK_IsHalted()  returns FALSE (0000ms, 1165ms total)
T6E34 017:862 JLINK_IsHalted()  returns FALSE (0000ms, 1165ms total)
T6E34 017:963 JLINK_IsHalted()  returns FALSE (0000ms, 1165ms total)
T6E34 018:065 JLINK_IsHalted()  returns FALSE (0000ms, 1165ms total)
T02F4 018:166 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1166ms total)
T02F4 018:168 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1167ms total)
T02F4 018:169 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 1167ms total)
T02F4 018:170 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1168ms total)
T02F4 018:171 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 1168ms total)
T02F4 018:171 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1169ms total)
T02F4 018:172 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 19 59 47 0A 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1170ms total)
T02F4 018:173 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1171ms total)
T02F4 018:182 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1172ms total)
T02F4 018:184 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 1173ms total)
T02F4 018:186 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1174ms total)
T02F4 018:187 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 87 06  returns 0x02 (0001ms, 1175ms total)
T02F4 018:188 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1176ms total)
T02F4 018:190 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1177ms total)
T02F4 018:191 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1177ms total)
T02F4 018:191 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1178ms total)
T02F4 018:192 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1179ms total)
T02F4 018:193 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1179ms total)
T02F4 018:193 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1180ms total)
T02F4 018:195 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 04 00  returns 0x02 (0000ms, 1180ms total)
T6E34 018:196 JLINK_IsHalted()  returns FALSE (0000ms, 1180ms total)
T6E34 018:297 JLINK_IsHalted()  returns FALSE (0000ms, 1180ms total)
T6E34 018:398 JLINK_IsHalted()  returns FALSE (0000ms, 1180ms total)
T6E34 018:500 JLINK_IsHalted()  returns FALSE (0001ms, 1181ms total)
T6E34 018:601 JLINK_IsHalted()  returns FALSE (0000ms, 1180ms total)
T02F4 018:702 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1182ms total)
T02F4 018:704 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1183ms total)
T02F4 018:705 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1184ms total)
T02F4 018:706 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1185ms total)
T02F4 018:707 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0000ms, 1185ms total)
T02F4 018:707 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1186ms total)
T02F4 018:708 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 19 59 47 0A 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1188ms total)
T02F4 018:710 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1189ms total)
T02F4 018:719 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0000ms, 1189ms total)
T02F4 018:721 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 1189ms total)
T02F4 018:722 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1190ms total)
T02F4 018:723 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: CB 06  returns 0x02 (0001ms, 1191ms total)
T02F4 018:724 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1192ms total)
T02F4 018:727 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1193ms total)
T02F4 018:728 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1193ms total)
T02F4 018:728 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1194ms total)
T02F4 018:729 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1195ms total)
T02F4 018:730 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1196ms total)
T02F4 018:731 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1196ms total)
T02F4 018:732 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 04 00  returns 0x02 (0001ms, 1197ms total)
T6E34 018:733 JLINK_IsHalted()  returns FALSE (0001ms, 1198ms total)
T6E34 018:835 JLINK_IsHalted()  returns FALSE (0000ms, 1197ms total)
T6E34 018:937 JLINK_IsHalted()  returns FALSE (0000ms, 1197ms total)
T6E34 019:038 JLINK_IsHalted()  returns FALSE (0000ms, 1197ms total)
T6E34 019:139 JLINK_IsHalted()  returns FALSE (0000ms, 1197ms total)
T02F4 019:241 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1199ms total)
T02F4 019:243 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1200ms total)
T02F4 019:244 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1201ms total)
T02F4 019:245 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1202ms total)
T02F4 019:246 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0000ms, 1202ms total)
T02F4 019:246 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1203ms total)
T02F4 019:247 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 1E 59 47 0B 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1205ms total)
T02F4 019:249 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1206ms total)
T02F4 019:258 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0000ms, 1206ms total)
T02F4 019:259 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 1207ms total)
T02F4 019:261 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1208ms total)
T02F4 019:262 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 18 07  returns 0x02 (0000ms, 1208ms total)
T02F4 019:263 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 1208ms total)
T02F4 019:265 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1209ms total)
T02F4 019:266 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1209ms total)
T02F4 019:266 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1210ms total)
T02F4 019:267 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 1210ms total)
T02F4 019:267 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1211ms total)
T02F4 019:268 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1212ms total)
T02F4 019:269 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 05 00  returns 0x02 (0001ms, 1213ms total)
T6E34 019:270 JLINK_IsHalted()  returns FALSE (0001ms, 1214ms total)
T6E34 019:372 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T6E34 019:473 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T6E34 019:575 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T6E34 019:676 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T02F4 019:777 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1214ms total)
T02F4 019:779 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1215ms total)
T02F4 019:780 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 1215ms total)
T02F4 019:781 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 1215ms total)
T02F4 019:781 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0001ms, 1216ms total)
T02F4 019:782 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1217ms total)
T02F4 019:783 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 1E 59 47 0B 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1218ms total)
T02F4 019:784 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1219ms total)
T02F4 019:793 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0001ms, 1220ms total)
T02F4 019:795 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 1220ms total)
T02F4 019:796 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1221ms total)
T02F4 019:797 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 5B 07  returns 0x02 (0001ms, 1222ms total)
T02F4 019:798 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1223ms total)
T02F4 019:800 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1224ms total)
T02F4 019:801 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1224ms total)
T02F4 019:801 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1225ms total)
T02F4 019:802 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1226ms total)
T02F4 019:803 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1226ms total)
T02F4 019:803 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1227ms total)
T02F4 019:805 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 05 00  returns 0x02 (0000ms, 1227ms total)
T6E34 019:805 JLINK_IsHalted()  returns FALSE (0001ms, 1228ms total)
T6E34 019:907 JLINK_IsHalted()  returns FALSE (0000ms, 1227ms total)
T6E34 020:009 JLINK_IsHalted()  returns FALSE (0000ms, 1227ms total)
T6E34 020:110 JLINK_IsHalted()  returns FALSE (0000ms, 1227ms total)
T6E34 020:211 JLINK_IsHalted()  returns FALSE (0000ms, 1227ms total)
T02F4 020:313 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1229ms total)
T02F4 020:315 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1230ms total)
T02F4 020:316 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1231ms total)
T02F4 020:317 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1232ms total)
T02F4 020:318 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0001ms, 1233ms total)
T02F4 020:319 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1233ms total)
T02F4 020:320 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 23 59 47 0C 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1234ms total)
T02F4 020:321 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1235ms total)
T02F4 020:330 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 03  returns 0x01 (0000ms, 1235ms total)
T02F4 020:331 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 1236ms total)
T02F4 020:333 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1237ms total)
T02F4 020:334 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: A5 07  returns 0x02 (0000ms, 1237ms total)
T02F4 020:335 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1238ms total)
T02F4 020:337 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1239ms total)
T02F4 020:338 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1239ms total)
T02F4 020:338 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1240ms total)
T02F4 020:339 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1241ms total)
T02F4 020:340 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1241ms total)
T02F4 020:340 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1242ms total)
T02F4 020:342 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 06 00  returns 0x02 (0001ms, 1243ms total)
T6E34 020:343 JLINK_IsHalted()  returns FALSE (0001ms, 1244ms total)
T6E34 020:444 JLINK_IsHalted()  returns FALSE (0000ms, 1243ms total)
T6E34 020:546 JLINK_IsHalted()  returns FALSE (0000ms, 1243ms total)
T6E34 020:647 JLINK_IsHalted()  returns FALSE (0000ms, 1243ms total)
T6E34 020:748 JLINK_IsHalted()  returns FALSE (0000ms, 1243ms total)
T02F4 020:850 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1245ms total)
T02F4 020:852 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1246ms total)
T02F4 020:853 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1247ms total)
T02F4 020:854 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1248ms total)
T02F4 020:855 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0001ms, 1249ms total)
T02F4 020:856 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1249ms total)
T02F4 020:857 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 23 59 47 0C 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1250ms total)
T02F4 020:858 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1251ms total)
T02F4 020:867 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0001ms, 1252ms total)
T02F4 020:869 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 1252ms total)
T02F4 020:870 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1253ms total)
T02F4 020:871 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: E5 07  returns 0x02 (0001ms, 1254ms total)
T02F4 020:872 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1255ms total)
T02F4 020:874 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 24 47 4E 47 47 41 2C 2C 2C 2C 2C 2C 30 2C 30 30 ...  returns 0x20 (0001ms, 1256ms total)
T02F4 020:875 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1257ms total)
T02F4 020:876 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1258ms total)
T02F4 020:877 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 1258ms total)
T02F4 020:877 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1259ms total)
T02F4 020:878 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1260ms total)
T02F4 020:880 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 06 00  returns 0x02 (0001ms, 1261ms total)
T6E34 020:881 JLINK_IsHalted()  returns FALSE (0001ms, 1262ms total)
T6E34 020:982 JLINK_IsHalted()  returns FALSE (0000ms, 1261ms total)
T6E34 021:083 JLINK_IsHalted()  returns FALSE (0000ms, 1261ms total)
T6E34 021:185 JLINK_IsHalted()  returns FALSE (0000ms, 1261ms total)
T6E34 021:286 JLINK_IsHalted()  returns FALSE (0000ms, 1261ms total)
T02F4 021:387 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1262ms total)
T02F4 021:389 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1263ms total)
T02F4 021:390 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1264ms total)
T02F4 021:391 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1265ms total)
T02F4 021:392 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 03  returns 0x01 (0000ms, 1265ms total)
T02F4 021:392 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1266ms total)
T02F4 021:393 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 0D 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1268ms total)
T02F4 021:395 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1269ms total)
T02F4 021:404 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 03  returns 0x01 (0001ms, 1270ms total)
T02F4 021:406 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 1270ms total)
T02F4 021:407 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1271ms total)
T02F4 021:408 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 29 08  returns 0x02 (0001ms, 1272ms total)
T02F4 021:409 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1273ms total)
T02F4 021:412 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1273ms total)
T02F4 021:413 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1273ms total)
T02F4 021:413 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1274ms total)
T02F4 021:414 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1275ms total)
T02F4 021:415 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1275ms total)
T02F4 021:415 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1276ms total)
T02F4 021:417 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 07 00  returns 0x02 (0001ms, 1277ms total)
T6E34 021:418 JLINK_IsHalted()  returns FALSE (0001ms, 1278ms total)
T6E34 021:520 JLINK_IsHalted()  returns FALSE (0000ms, 1277ms total)
T6E34 021:621 JLINK_IsHalted()  returns FALSE (0000ms, 1277ms total)
T6E34 021:722 JLINK_IsHalted()  returns FALSE (0000ms, 1277ms total)
T6E34 021:824 JLINK_IsHalted()  returns FALSE (0000ms, 1277ms total)
T02F4 021:925 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1278ms total)
T02F4 021:927 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1279ms total)
T02F4 021:928 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1280ms total)
T02F4 021:929 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1281ms total)
T02F4 021:930 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0001ms, 1282ms total)
T02F4 021:931 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1282ms total)
T02F4 021:932 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 0D 00 00 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1283ms total)
T02F4 021:933 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1284ms total)
T02F4 021:942 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0001ms, 1285ms total)
T02F4 021:944 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 1286ms total)
T02F4 021:946 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1287ms total)
T02F4 021:947 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 7C 08  returns 0x02 (0000ms, 1287ms total)
T02F4 021:948 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 1287ms total)
T02F4 021:950 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 24 47 4E 47 47 41 2C 2C 2C 2C 2C 2C 30 2C 30 30 ...  returns 0x20 (0001ms, 1288ms total)
T02F4 021:951 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1288ms total)
T02F4 021:952 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1289ms total)
T02F4 021:952 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1290ms total)
T02F4 021:953 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1290ms total)
T02F4 021:953 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1291ms total)
T02F4 021:955 JLINK_ReadMemEx(0x2000000C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000C) - Data: 07 00  returns 0x02 (0001ms, 1292ms total)
T6E34 021:956 JLINK_IsHalted()  returns FALSE (0001ms, 1293ms total)
T6E34 022:058 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T6E34 022:159 JLINK_Halt()  returns 0x00 (0003ms, 1295ms total)
T6E34 022:162 JLINK_IsHalted()  returns TRUE (0000ms, 1295ms total)
T6E34 022:162 JLINK_IsHalted()  returns TRUE (0000ms, 1295ms total)
T6E34 022:162 JLINK_IsHalted()  returns TRUE (0000ms, 1295ms total)
T6E34 022:162 JLINK_ReadReg(R15 (PC))  returns 0x08010670 (0000ms, 1295ms total)
T6E34 022:162 JLINK_ReadReg(XPSR)  returns 0x81000000 (0000ms, 1295ms total)
T6E34 022:162 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 0x01 (0001ms, 1296ms total)
T6E34 022:163 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1297ms total)
T6E34 022:164 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 1297ms total)
T02F4 022:761 JLINK_Close() -- 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> (0022ms, 1319ms total)
T02F4 022:761  (0022ms, 1319ms total)
T02F4 022:761 Closed (0022ms, 1319ms total)