zhyinch
2020-11-06 1abba6d0da35b3a89fead56896bf82c1b9aa7831
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
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
T2F94 6951:016 SEGGER J-Link V6.46 Log File (0001ms, 21981ms total)
T2F94 6951:016 DLL Compiled: May 23 2019 17:49:56 (0001ms, 21981ms total)
T2F94 6951:016 Logging started @ 2020-11-06 12:47 (0001ms, 21981ms total)
T2F94 6951:017 JLINK_SetWarnOutHandler(...) (0000ms, 21981ms total)
T2F94 6951:017 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 (0031ms, 22012ms total)
T2F94 6951:017 WEBSRV Webserver running on local port 19080 (0031ms, 22012ms total)
T2F94 6951:017   returns O.K. (0031ms, 22012ms total)
T2F94 6951:048 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 22012ms total)
T2F94 6951:049 JLINK_TIF_GetAvailable(...) (0001ms, 22013ms total)
T2F94 6951:050 JLINK_SetErrorOutHandler(...) (0000ms, 22013ms total)
T2F94 6951:050 JLINK_ExecCommand("ProjectFile = "E:\GIT\XRange_Tag\MDK-ARM\JLinkSettings.ini"", ...).   returns 0x00 (0005ms, 22018ms total)
T2F94 6951:055 JLINK_ExecCommand("Device = STM32L051C8Tx", ...). Device "STM32L051C8" selected.  returns 0x00 (0002ms, 22020ms total)
T2F94 6951:057 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 22020ms total)
T2F94 6951:057 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 22020ms total)
T2F94 6951:057 JLINK_GetDLLVersion()  returns 64600 (0000ms, 22020ms total)
T2F94 6951:057 JLINK_GetFirmwareString(...) (0000ms, 22020ms total)
T2F94 6951:057 JLINK_GetDLLVersion()  returns 64600 (0000ms, 22020ms total)
T2F94 6951:057 JLINK_GetCompileDateTime() (0000ms, 22020ms total)
T2F94 6951:057 JLINK_GetFirmwareString(...) (0000ms, 22020ms total)
T2F94 6951:057 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 22020ms total)
T2F94 6951:057 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0002ms, 22022ms total)
T2F94 6951:059 JLINK_SetSpeed(5000) (0000ms, 22022ms total)
T2F94 6951:059 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 reached
AP[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. -- Max. mem block: 0x00002C18 -- 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 >0x0D TIF> >0x21 TIF>  returns 0x0BC11477 (0212ms, 22234ms total)
T2F94 6951:271 JLINK_GetDLLVersion()  returns 64600 (0000ms, 22234ms total)
T2F94 6951:271 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 22234ms total)
T2F94 6951:271 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 22234ms total)
T2F94 6951:272 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 22234ms total)
T2F94 6951:272 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 22234ms total)
T2F94 6951:272 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, 22235ms total)
T2F94 6951:273 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 22235ms total)
T2F94 6951:273 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 22235ms total)
T2F94 6951:273 JLINK_ReadMemEx(0xE0040FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0040FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 22236ms total)
T2F94 6951:274 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 22236ms total)
T2F94 6951:274 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 22236ms total)
T2F94 6951:274 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 22236ms total)
T2F94 6951:274 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 22236ms total)
T2F94 6951:274 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 22236ms total)
T2F94 6951:274 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 22236ms total)
T2F94 6951:274 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 01 C6 0C 41  returns 1 (0000ms, 22236ms total)
T2F94 6951:274 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 22236ms total)
T2F94 6951:274 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 22236ms total)
T2F94 6951:274 JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)
 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0078ms, 22314ms total)
T2F94 6951:352 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 22314ms total)
T2F94 6951:352 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 22314ms total)
T2F94 6951:352 JLINK_Halt()  returns 0x00 (0000ms, 22314ms total)
T2F94 6951:352 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 01  returns 1 (0001ms, 22315ms total)
T2F94 6951:353 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0 (0001ms, 22316ms total)
T2F94 6951:354 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0 (0001ms, 22317ms total)
T2F94 6951:355 JLINK_GetHWStatus(...)  returns 0x00 (0001ms, 22318ms total)
T2F94 6951:356 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 22318ms total)
T2F94 6951:356 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 22318ms total)
T2F94 6951:356 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 22318ms total)
T2F94 6951:356 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 22318ms total)
T2F94 6951:356 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 1 (0001ms, 22319ms total)
T2F94 6951:357 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 22319ms total)
T2F94 6951:357 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 22319ms total)
T2F94 6951:438 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 22319ms total)
T2F94 6951:438 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0077ms, 22396ms total)
T2F94 6951:515 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 22396ms total)
T2F94 6951:515 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 22396ms total)
T2F94 6951:515 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 (0003ms, 22399ms total)
T2F94 6951:518 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 22399ms total)
T2F94 6951:518 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 22399ms total)
T2F94 6951:518 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 22399ms total)
T2F94 6951:518 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, 22399ms total)
T2F94 6951:518 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 22399ms total)
T2F94 6951:518 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, 22399ms total)
T2F94 6951:518 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 22399ms total)
T2F94 6951:518 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 22399ms total)
T2F94 6951:518 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 22399ms total)
T2F94 6951:518 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 0D 25 00 08 ...  returns 0x3C (0000ms, 22399ms total)
T2F94 6951:518 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 22399ms total)
T2F94 6951:518 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 0D 25 00 08 ...  returns 0x3C (0000ms, 22399ms total)
T2F94 6951:518 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 22399ms total)
T2F94 6951:518 JLINK_ReadMemEx(0x080000DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DE) - Data: FE E7  returns 0x02 (0000ms, 22399ms total)
T2F94 6953:008 JLINK_ReadMemEx(0x080000DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DE) - Data: FE E7  returns 0x02 (0000ms, 22399ms total)
T2F94 6953:008 JLINK_ReadMemEx(0x080000E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000E0) - Data: FE E7 FE E7 FE E7 FE E7 0D 25 00 08 C1 00 00 08 ...  returns 0x3C (0000ms, 22399ms total)
T2F94 6953:008 JLINK_ReadMemEx(0x080000E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000E0) - Data: FE E7  returns 0x02 (0000ms, 22399ms total)
T2F94 6953:008 JLINK_ReadMemEx(0x080000E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000E0) - Data: FE E7 FE E7 FE E7 FE E7 0D 25 00 08 C1 00 00 08 ...  returns 0x3C (0000ms, 22399ms total)
T2F94 6953:008 JLINK_ReadMemEx(0x080000E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000E0) - Data: FE E7  returns 0x02 (0000ms, 22399ms total)
T2F94 6953:008 JLINK_ReadMemEx(0x080000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000E2) - Data: FE E7  returns 0x02 (0000ms, 22399ms total)
T2F94 6953:633 JLINK_ReadReg(R0)  returns 0xFFFFFFFF (0001ms, 22400ms total)
T2F94 6953:634 JLINK_ReadReg(R1)  returns 0xFFFFFFFF (0000ms, 22400ms total)
T2F94 6953:634 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 22400ms total)
T2F94 6953:634 JLINK_ReadReg(R3)  returns 0xFFFFFFFF (0000ms, 22400ms total)
T2F94 6953:634 JLINK_ReadReg(R4)  returns 0xFFFFFFFF (0000ms, 22400ms total)
T2F94 6953:634 JLINK_ReadReg(R5)  returns 0xFFFFFFFF (0000ms, 22400ms total)
T2F94 6953:634 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0000ms, 22400ms total)
T2F94 6953:634 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 22400ms total)
T2F94 6953:634 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 22400ms total)
T2F94 6953:634 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 22400ms total)
T2F94 6953:634 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 22400ms total)
T2F94 6953:634 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 22400ms total)
T2F94 6953:634 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 22400ms total)
T2F94 6953:634 JLINK_ReadReg(R13 (SP))  returns 0x20001130 (0000ms, 22400ms total)
T2F94 6953:634 JLINK_ReadReg(R14)  returns 0xFFFFFFFF (0000ms, 22400ms total)
T2F94 6953:634 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 22400ms total)
T2F94 6953:635 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 22401ms total)
T2F94 6953:635 JLINK_ReadReg(MSP)  returns 0x20001130 (0000ms, 22401ms total)
T2F94 6953:635 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 22401ms total)
T2F94 6953:635 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 22401ms total)
T2F94 6953:635 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 22402ms total)
T2F94 6953:642 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0000ms, 22402ms total)
T2F94 6953:642 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0000ms, 22402ms total)
T2F94 6953:650 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0000ms, 22402ms total)
T2F94 6953:650 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0000ms, 22402ms total)
T2F94 6953:650 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0000ms, 22402ms total)
T2F94 6953:656 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0002ms, 22404ms total)
T2F94 6953:658 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 22404ms total)
T2F94 6953:658 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 22404ms total)
T2F94 6953:661 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 00 00 80 3F  returns 0x04 (0000ms, 22404ms total)
T2F94 6953:661 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 00 00 80 3F  returns 0x04 (0000ms, 22404ms total)
T2F94 6953:661 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 00 00 80 3F  returns 0x04 (0000ms, 22404ms total)
T2F94 6953:669 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 22406ms total)
T2F94 6953:672 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 22406ms total)
T2F94 6953:672 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 22406ms total)
T2F94 6953:673 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 22406ms total)
T2F94 6953:673 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 22406ms total)
T2F94 6953:674 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 22406ms total)
T2834 6953:730 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 22406ms total)
T2834 6953:730 JLINK_SetBPEx(Addr = 0x0800A71C, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 22406ms total)
T2834 6953:730 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, 22411ms total)
T2834 6953:837 JLINK_IsHalted()  returns TRUE (0004ms, 22415ms total)
T2834 6953:841 JLINK_Halt()  returns 0x00 (0000ms, 22411ms total)
T2834 6953:841 JLINK_IsHalted()  returns TRUE (0000ms, 22411ms total)
T2834 6953:841 JLINK_IsHalted()  returns TRUE (0000ms, 22411ms total)
T2834 6953:841 JLINK_IsHalted()  returns TRUE (0000ms, 22411ms total)
T2834 6953:841 JLINK_ReadReg(R15 (PC))  returns 0x0800A71C (0000ms, 22411ms total)
T2834 6953:841 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 22411ms total)
T2834 6953:841 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 22411ms total)
T2834 6953:841 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 22412ms total)
T2834 6953:842 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 22413ms total)
T2834 6953:843 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 22414ms total)
T2834 6953:844 JLINK_ReadReg(R0)  returns 0x0800A71D (0000ms, 22414ms total)
T2834 6953:844 JLINK_ReadReg(R1)  returns 0x20001A58 (0000ms, 22414ms total)
T2834 6953:844 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 22414ms total)
T2834 6953:844 JLINK_ReadReg(R3)  returns 0x08009AE1 (0000ms, 22414ms total)
T2834 6953:844 JLINK_ReadReg(R4)  returns 0x0800AAAC (0000ms, 22414ms total)
T2834 6953:844 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 22414ms total)
T2834 6953:844 JLINK_ReadReg(R6)  returns 0x0800AAAC (0000ms, 22414ms total)
T2834 6953:844 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 22414ms total)
T2834 6953:844 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 22414ms total)
T2834 6953:844 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 22414ms total)
T2834 6953:844 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 22414ms total)
T2834 6953:844 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 22414ms total)
T2834 6953:844 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 22414ms total)
T2834 6953:844 JLINK_ReadReg(R13 (SP))  returns 0x20001A58 (0000ms, 22414ms total)
T2834 6953:844 JLINK_ReadReg(R14)  returns 0x080059A5 (0000ms, 22414ms total)
T2834 6953:844 JLINK_ReadReg(R15 (PC))  returns 0x0800A71C (0000ms, 22414ms total)
T2834 6953:844 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 22414ms total)
T2834 6953:844 JLINK_ReadReg(MSP)  returns 0x20001A58 (0000ms, 22414ms total)
T2834 6953:844 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0001ms, 22415ms total)
T2834 6953:845 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 22415ms total)
T2F94 6953:846 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0002ms, 22417ms total)
T2F94 6953:848 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0000ms, 22417ms total)
T2F94 6953:848 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 22418ms total)
T2F94 6953:849 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0000ms, 22418ms total)
T2F94 6953:849 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 22420ms total)
T2F94 6953:851 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 22420ms total)
T2F94 10923:595 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 22420ms total)
T2F94 10923:595 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0073ms, 22493ms total)
T2F94 10923:668 JLINK_ReadReg(R15 (PC))  returns 0x080055D2 (0000ms, 22493ms total)
T2F94 10923:668 JLINK_ReadReg(XPSR)  returns 0x81000000 (0000ms, 22493ms total)
T2F94 10923:668 JLINK_ReadMemEx(0x080055D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x080055C0) -- Updating C cache (64 bytes @ 0x080055C0) -- Read from C cache (2 bytes @ 0x080055D2) - Data: CD 07  returns 0x02 (0002ms, 22495ms total)
T2F94 10923:670 JLINK_ReadMemEx(0x080055D4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08005600) -- Updating C cache (64 bytes @ 0x08005600) -- Read from C cache (60 bytes @ 0x080055D4) - Data: 40 08 49 08 28 43 92 18 5B 41 05 46 0D 43 EA D1 ...  returns 0x3C (0002ms, 22497ms total)
T2F94 10923:672 JLINK_ReadMemEx(0x080055D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055D4) - Data: 40 08  returns 0x02 (0000ms, 22497ms total)
T2F94 10923:672 JLINK_ReadMemEx(0x080055D4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080055D4) - Data: 40 08 49 08 28 43 92 18 5B 41 05 46 0D 43 EA D1 ...  returns 0x3C (0000ms, 22497ms total)
T2F94 10923:672 JLINK_ReadMemEx(0x080055D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055D4) - Data: 40 08  returns 0x02 (0000ms, 22497ms total)
T2F94 10923:672 JLINK_ReadMemEx(0x080055D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055D6) - Data: 49 08  returns 0x02 (0000ms, 22497ms total)
T2F94 10923:672 JLINK_ReadMemEx(0x080055D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055D6) - Data: 49 08  returns 0x02 (0000ms, 22497ms total)
T2F94 10923:672 JLINK_ReadMemEx(0x080055D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080055D8) - Data: 28 43 92 18 5B 41 05 46 0D 43 EA D1 10 46 18 43 ...  returns 0x3C (0000ms, 22497ms total)
T2F94 10923:672 JLINK_ReadMemEx(0x080055D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055D8) - Data: 28 43  returns 0x02 (0000ms, 22497ms total)
T2F94 10923:672 JLINK_ReadMemEx(0x080055D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080055D8) - Data: 28 43 92 18 5B 41 05 46 0D 43 EA D1 10 46 18 43 ...  returns 0x3C (0000ms, 22497ms total)
T2F94 10923:672 JLINK_ReadMemEx(0x080055D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055D8) - Data: 28 43  returns 0x02 (0000ms, 22497ms total)
T2F94 10923:672 JLINK_ReadMemEx(0x080055DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055DA) - Data: 92 18  returns 0x02 (0000ms, 22497ms total)
T2F94 10923:672 JLINK_ReadMemEx(0x080055DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055DA) - Data: 92 18  returns 0x02 (0000ms, 22497ms total)
T2F94 10923:672 JLINK_ReadMemEx(0x080055DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080055DC) - Data: 5B 41 05 46 0D 43 EA D1 10 46 18 43 13 D0 60 46 ...  returns 0x3C (0000ms, 22497ms total)
T2F94 10923:672 JLINK_ReadMemEx(0x080055DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055DC) - Data: 5B 41  returns 0x02 (0000ms, 22497ms total)
T2F94 10923:709 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 22497ms total)
T2F94 10923:709 JLINK_ReadReg(R1)  returns 0x00000100 (0000ms, 22497ms total)
T2F94 10923:709 JLINK_ReadReg(R2)  returns 0xC6A80000 (0000ms, 22497ms total)
T2F94 10923:709 JLINK_ReadReg(R3)  returns 0x0017374B (0000ms, 22497ms total)
T2F94 10923:709 JLINK_ReadReg(R4)  returns 0xC6A80000 (0000ms, 22497ms total)
T2F94 10923:709 JLINK_ReadReg(R5)  returns 0xFFF7F74B (0000ms, 22497ms total)
T2F94 10923:709 JLINK_ReadReg(R6)  returns 0x001F4000 (0000ms, 22497ms total)
T2F94 10923:709 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 22497ms total)
T2F94 10923:709 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0001ms, 22498ms total)
T2F94 10923:710 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 22498ms total)
T2F94 10923:710 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 22498ms total)
T2F94 10923:710 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 22498ms total)
T2F94 10923:710 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 22498ms total)
T2F94 10923:710 JLINK_ReadReg(R13 (SP))  returns 0x20001A10 (0000ms, 22498ms total)
T2F94 10923:710 JLINK_ReadReg(R14)  returns 0x00141200 (0000ms, 22498ms total)
T2F94 10923:710 JLINK_ReadReg(R15 (PC))  returns 0x080055D2 (0000ms, 22498ms total)
T2F94 10923:710 JLINK_ReadReg(XPSR)  returns 0x81000000 (0000ms, 22498ms total)
T2F94 10923:710 JLINK_ReadReg(MSP)  returns 0x20001A10 (0000ms, 22498ms total)
T2F94 10923:710 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 22498ms total)
T2F94 10923:710 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 22498ms total)
T2F94 10923:710 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 22499ms total)
T2F94 10923:711 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0000ms, 22499ms total)
T2F94 10923:711 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0002ms, 22501ms total)
T2F94 10923:713 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 00 00 00 3F  returns 0x04 (0000ms, 22501ms total)
T2F94 10923:714 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 22502ms total)
T2F94 10923:715 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 22502ms total)
T2834 10924:292 JLINK_ReadMemEx(0x080055D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055D2) - Data: CD 07  returns 0x02 (0000ms, 22502ms total)
T2834 10924:292 JLINK_Go() -- 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) (0007ms, 22509ms total)
T2834 10924:399 JLINK_IsHalted()  returns FALSE (0001ms, 22510ms total)
T2834 10924:501 JLINK_IsHalted()  returns FALSE (0000ms, 22509ms total)
T2834 10924:602 JLINK_IsHalted()  returns FALSE (0001ms, 22510ms total)
T2834 10924:704 JLINK_IsHalted()  returns FALSE (0001ms, 22510ms total)
T2834 10924:806 JLINK_IsHalted()  returns FALSE (0001ms, 22510ms total)
T2F94 10924:908 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 22510ms total)
T2F94 10924:909 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 22511ms total)
T2F94 10924:910 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 22512ms total)
T2F94 10924:911 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 80 3F  returns 0x04 (0001ms, 22513ms total)
T2F94 10924:913 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 22513ms total)
T2F94 10924:913 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 22514ms total)
T2834 10924:914 JLINK_IsHalted()  returns FALSE (0001ms, 22515ms total)
T2834 10925:016 JLINK_IsHalted()  returns FALSE (0001ms, 22515ms total)
T2834 10925:118 JLINK_IsHalted()  returns FALSE (0001ms, 22515ms total)
T2834 10925:220 JLINK_IsHalted()  returns FALSE (0000ms, 22514ms total)
T2834 10925:321 JLINK_IsHalted()  returns FALSE (0001ms, 22515ms total)
T2F94 10925:423 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0002ms, 22516ms total)
T2F94 10925:425 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 22517ms total)
T2F94 10925:426 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 22518ms total)
T2F94 10925:427 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 C0 3F  returns 0x04 (0001ms, 22519ms total)
T2F94 10925:429 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 22520ms total)
T2F94 10925:430 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 22521ms total)
T2834 10925:431 JLINK_IsHalted()  returns FALSE (0001ms, 22522ms total)
T2834 10925:533 JLINK_IsHalted()  returns FALSE (0001ms, 22522ms total)
T2834 10925:635 JLINK_IsHalted()  returns FALSE (0000ms, 22521ms total)
T2834 10925:736 JLINK_IsHalted()  returns FALSE (0001ms, 22522ms total)
T2834 10925:838 JLINK_IsHalted()  returns FALSE (0001ms, 22522ms total)
T2F94 10925:941 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0000ms, 22521ms total)
T2F94 10925:941 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0002ms, 22523ms total)
T2F94 10925:943 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 22524ms total)
T2F94 10925:944 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 C0 3F  returns 0x04 (0001ms, 22525ms total)
T2F94 10925:945 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 22527ms total)
T2F94 10925:947 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 22528ms total)
T2834 10925:948 JLINK_IsHalted()  returns FALSE (0001ms, 22529ms total)
T2834 10926:050 JLINK_IsHalted()  returns FALSE (0000ms, 22528ms total)
T2834 10926:152 JLINK_IsHalted()  returns FALSE (0001ms, 22529ms total)
T2834 10926:254 JLINK_IsHalted()  returns FALSE (0001ms, 22529ms total)
T2834 10926:356 JLINK_IsHalted()  returns FALSE (0001ms, 22529ms total)
T2F94 10926:457 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 22529ms total)
T2F94 10926:458 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 22530ms total)
T2F94 10926:459 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 22531ms total)
T2F94 10926:460 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 40  returns 0x04 (0001ms, 22532ms total)
T2F94 10926:462 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 22533ms total)
T2F94 10926:463 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 22534ms total)
T2834 10926:464 JLINK_IsHalted()  returns FALSE (0001ms, 22535ms total)
T2834 10926:566 JLINK_IsHalted()  returns FALSE (0001ms, 22535ms total)
T2834 10926:668 JLINK_IsHalted()  returns FALSE (0001ms, 22535ms total)
T2834 10926:770 JLINK_IsHalted()  returns FALSE (0001ms, 22535ms total)
T2834 10926:872 JLINK_IsHalted()  returns FALSE (0001ms, 22535ms total)
T2F94 10926:974 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: AA  returns 0xFFFFFFFF (0102ms, 22636ms total)
T2F94 10927:076 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: AA  returns 0xFFFFFFFF (0200ms, 22836ms total)
T2F94 10927:276 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 22837ms total)
T2F94 10927:277 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 22838ms total)
T2F94 10927:278 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0002ms, 22840ms total)
T2F94 10927:280 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0001ms, 22841ms total)
T2F94 10927:281 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 22843ms total)
T2F94 10927:283 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 22843ms total)
T2834 10927:283 JLINK_IsHalted()  returns FALSE (0002ms, 22845ms total)
T2834 10927:386 JLINK_IsHalted()  returns FALSE (0001ms, 22844ms total)
T2F94 10927:487 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 22844ms total)
T2F94 10927:488 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 22845ms total)
T2F94 10927:489 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 22846ms total)
T2F94 10927:490 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0001ms, 22847ms total)
T2F94 10927:492 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 22848ms total)
T2F94 10927:493 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 22849ms total)
T2834 10927:495 JLINK_IsHalted()  returns FALSE (0000ms, 22849ms total)
T2834 10927:596 JLINK_IsHalted()  returns FALSE (0001ms, 22850ms total)
T2834 10927:698 JLINK_IsHalted()  returns FALSE (0001ms, 22850ms total)
T2834 10927:800 JLINK_IsHalted()  returns FALSE (0001ms, 22850ms total)
T2834 10927:902 JLINK_IsHalted()  returns FALSE (0001ms, 22850ms total)
T2F94 10928:004 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: AA  returns 0xFFFFFFFF (0102ms, 22951ms total)
T2F94 10928:106 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: AA  returns 0xFFFFFFFF (0304ms, 23255ms total)
T2F94 10928:410 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: AA  returns 0xFFFFFFFF (0304ms, 23559ms total)
T2F94 10928:716 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: AA  returns 0xFFFFFFFF (0221ms, 23780ms total)
T2F94 10928:937 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 23781ms total)
T2F94 10928:939 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 23782ms total)
T2F94 10928:941 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 23783ms total)
T2F94 10928:942 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 80 3F  returns 0x04 (0001ms, 23784ms total)
T2F94 10928:943 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: AA AA  returns 0xFFFFFFFF (0102ms, 23886ms total)
T2F94 10929:045 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: AA AA  returns 0xFFFFFFFF (0304ms, 24190ms total)
T2F94 10929:349 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: AA AA  returns 0xFFFFFFFF (0304ms, 24494ms total)
T2F94 10929:653 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: AA AA  returns 0xFFFFFFFF (0284ms, 24778ms total)
T2F94 10929:937 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 24779ms total)
T2F94 10929:938 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 24780ms total)
T2834 10929:939 JLINK_IsHalted()  returns FALSE (0001ms, 24781ms total)
T2F94 10930:041 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: AA  returns 0xFFFFFFFF (0102ms, 24882ms total)
T2F94 10930:143 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: AA  returns 0xFFFFFFFF (0303ms, 25185ms total)
T2F94 10930:446 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: AA  returns 0xFFFFFFFF (0305ms, 25490ms total)
T2F94 10930:751 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: AA  returns 0xFFFFFFFF (0182ms, 25672ms total)
T2F94 10930:933 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0002ms, 25674ms total)
T2F94 10930:935 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 25675ms total)
T2F94 10930:936 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 25676ms total)
T2F94 10930:937 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 40  returns 0x04 (0001ms, 25677ms total)
T2F94 10930:938 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: AA AA  returns 0xFFFFFFFF (0102ms, 25779ms total)
T2F94 10931:040 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: AA AA  returns 0xFFFFFFFF (0304ms, 26083ms total)
T2F94 10931:345 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: AA AA  returns 0xFFFFFFFF (0304ms, 26387ms total)
T2F94 10931:649 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: AA AA  returns 0xFFFFFFFF (0283ms, 26670ms total)
T2F94 10931:932 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 26671ms total)
T2F94 10931:934 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 26673ms total)
T2834 10931:935 JLINK_IsHalted()  returns FALSE (0001ms, 26674ms total)
T2F94 10932:043 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: AA  returns 0xFFFFFFFF (0102ms, 26775ms total)
T2F94 10932:145 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: AA  returns 0xFFFFFFFF (0304ms, 27079ms total)
T2F94 10932:449 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: AA  returns 0xFFFFFFFF (0304ms, 27383ms total)
T2F94 10932:753 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: AA  returns 0xFFFFFFFF (0174ms, 27557ms total)
T2F94 10932:928 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 27558ms total)
T2F94 10932:929 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 27559ms total)
T2F94 10932:930 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 27560ms total)
T2F94 10932:931 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 40 40  returns 0x04 (0001ms, 27561ms total)
T2F94 10932:933 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: AA AA  returns 0xFFFFFFFF (0101ms, 27662ms total)
T2F94 10933:034 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: AA AA  returns 0xFFFFFFFF (0304ms, 27966ms total)
T2F94 10933:338 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: AA AA  returns 0xFFFFFFFF (0304ms, 28270ms total)
T2F94 10933:642 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: AA AA  returns 0xFFFFFFFF (0285ms, 28555ms total)
T2F94 10933:927 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 28556ms total)
T2F94 10933:928 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 28557ms total)
T2834 10933:930 JLINK_IsHalted()  returns FALSE (0000ms, 28557ms total)
T2F94 10934:032 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: AA  returns 0xFFFFFFFF (0102ms, 28659ms total)
T2F94 10934:134 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: AA  returns 0xFFFFFFFF (0303ms, 28962ms total)
T2F94 10934:438 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: AA  returns 0xFFFFFFFF (0304ms, 29266ms total)
T2F94 10934:742 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: AA  returns 0xFFFFFFFF (0181ms, 29447ms total)
T2F94 10934:923 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0000ms, 29447ms total)
T2F94 10934:924 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 29448ms total)
T2F94 10934:925 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 29449ms total)
T2F94 10934:926 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 80 40  returns 0x04 (0001ms, 29450ms total)
T2F94 10934:928 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: AA AA  returns 0xFFFFFFFF (0102ms, 29552ms total)
T2F94 10935:030 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: AA AA  returns 0xFFFFFFFF (0304ms, 29856ms total)
T2F94 10935:335 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: AA AA  returns 0xFFFFFFFF (0304ms, 30160ms total)
T2F94 10935:639 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: AA AA  returns 0xFFFFFFFF (0283ms, 30443ms total)
T2F94 10935:922 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 30444ms total)
T2F94 10935:924 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 30445ms total)
T2834 10935:925 JLINK_IsHalted()  returns FALSE (0002ms, 30447ms total)
T2F94 10936:027 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0022ms, 30467ms total)
T2F94 10936:049 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 30468ms total)
T2F94 10936:050 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 30469ms total)
T2F94 10936:051 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0001ms, 30470ms total)
T2F94 10936:053 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 30471ms total)
T2F94 10936:054 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 30472ms total)
T2834 10936:055 JLINK_IsHalted()  returns FALSE (0001ms, 30473ms total)
T2834 10936:157 JLINK_IsHalted()  returns FALSE (0001ms, 30473ms total)
T2834 10936:258 JLINK_IsHalted()  returns FALSE (0001ms, 30473ms total)
T2834 10936:360 JLINK_IsHalted()  returns FALSE (0001ms, 30473ms total)
T2834 10936:462 JLINK_IsHalted()  returns FALSE (0000ms, 30472ms total)
T2F94 10936:564 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 30473ms total)
T2F94 10936:566 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 30474ms total)
T2F94 10936:567 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 30475ms total)
T2F94 10936:568 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0001ms, 30476ms total)
T2F94 10936:570 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 30477ms total)
T2F94 10936:571 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 30478ms total)
T2834 10936:572 JLINK_IsHalted()  returns FALSE (0001ms, 30479ms total)
T2834 10936:674 JLINK_IsHalted()  returns FALSE (0001ms, 30479ms total)
T2834 10936:776 JLINK_IsHalted()  returns FALSE (0001ms, 30479ms total)
T2834 10936:878 JLINK_IsHalted()  returns FALSE (0001ms, 30479ms total)
T2834 10936:980 JLINK_IsHalted()  returns ERROR (0304ms, 30782ms total)
T2834 10937:284 JLINK_Halt()CPU could not be halted  returns 0x01 (0607ms, 31085ms total)
T2834 10937:891 JLINK_IsHalted()  returns FALSE (0026ms, 31111ms total)
T2834 10937:968 JLINK_IsHalted()  returns ERROR (0303ms, 31388ms total)
T2834 10938:271 JLINK_IsHalted()  returns ERROR (0505ms, 31590ms total)
T2834 10938:778 JLINK_ReadReg(R15 (PC)) -- CPU is running
  ***** Error: Can not read register 15 (R15) while CPU is running  returns 0x00000000 (0134ms, 31219ms total)
T2834 10938:912 JLINK_ReadReg(XPSR) -- CPU is running
  ***** Error: Can not read register 16 (XPSR) while CPU is running  returns 0x00000000 (0001ms, 31220ms total)
T2834 10938:913 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 1 (0001ms, 31221ms total)
T2834 10938:914 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 31222ms total)
T2834 10938:915 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 31223ms total)
T2834 10938:916 JLINK_ReadReg(R0) -- CPU is running
  ***** Error: Can not read register 0 (R0) while CPU is running  returns 0x00000000 (0001ms, 31224ms total)
T2834 10938:917 JLINK_ReadReg(R1) -- CPU is running
  ***** Error: Can not read register 1 (R1) while CPU is running  returns 0x00000000 (0304ms, 31528ms total)
T2834 10939:221 JLINK_ReadReg(R2) -- CPU is running
  ***** Error: Can not read register 2 (R2) while CPU is running  returns 0x00000000 (0506ms, 32034ms total)
T2834 10939:727 JLINK_ReadReg(R3) -- CPU is running
  ***** Error: Can not read register 3 (R3) while CPU is running  returns 0x00000000 (0185ms, 32219ms total)
T2834 10939:913 JLINK_ReadReg(R4) -- CPU is running
  ***** Error: Can not read register 4 (R4) while CPU is running  returns 0x00000000 (0001ms, 32220ms total)
T2834 10939:914 JLINK_ReadReg(R5) -- CPU is running
  ***** Error: Can not read register 5 (R5) while CPU is running  returns 0x00000000 (0001ms, 32221ms total)
T2834 10939:915 JLINK_ReadReg(R6) -- CPU is running
  ***** Error: Can not read register 6 (R6) while CPU is running  returns 0x00000000 (0001ms, 32222ms total)
T2834 10939:916 JLINK_ReadReg(R7) -- CPU is running
  ***** Error: Can not read register 7 (R7) while CPU is running  returns 0x00000000 (0001ms, 32223ms total)
T2834 10939:917 JLINK_ReadReg(R8) -- CPU is running
  ***** Error: Can not read register 8 (R8) while CPU is running  returns 0x00000000 (0304ms, 32527ms total)
T2834 10940:221 JLINK_ReadReg(R9) -- CPU is running
  ***** Error: Can not read register 9 (R9) while CPU is running  returns 0x00000000 (0506ms, 33033ms total)
T2F94 10940:727 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: AA  returns 0xFFFFFFFF (0180ms, 33213ms total)
T2F94 10940:908 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 33214ms total)
T2834 10940:917 JLINK_ReadReg(R10) -- CPU is running
  ***** Error: Can not read register 10 (R10) while CPU is running  returns 0x00000000 (0303ms, 33517ms total)
T2834 10941:220 JLINK_ReadReg(R11) -- CPU is running
  ***** Error: Can not read register 11 (R11) while CPU is running  returns 0x00000000 (0505ms, 34022ms total)
T2834 10941:726 JLINK_ReadReg(R12) -- CPU is running
  ***** Error: Can not read register 12 (R12) while CPU is running  returns 0x00000000 (0181ms, 34203ms total)
T2834 10941:908 JLINK_ReadReg(R13 (SP)) -- CPU is running
  ***** Error: Can not read register 13 (R13) while CPU is running  returns 0x00000000 (0002ms, 34205ms total)
T2834 10941:910 JLINK_ReadReg(R14) -- CPU is running
  ***** Error: Can not read register 14 (R14) while CPU is running  returns 0x00000000 (0000ms, 34205ms total)
T2834 10941:911 JLINK_ReadReg(R15 (PC)) -- CPU is running
  ***** Error: Can not read register 15 (R15) while CPU is running  returns 0x00000000 (0001ms, 34206ms total)
T2834 10941:913 JLINK_ReadReg(XPSR) -- CPU is running
  ***** Error: Can not read register 16 (XPSR) while CPU is running  returns 0x00000000 (0303ms, 34509ms total)
T2834 10942:216 JLINK_ReadReg(MSP) -- CPU is running
  ***** Error: Can not read register 17 (MSP) while CPU is running  returns 0x00000000 (0506ms, 35015ms total)
T2F94 10942:722 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: AA  returns 0xFFFFFFFF (0180ms, 35195ms total)
T2F94 10942:902 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 35196ms total)
T2F94 10942:903 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0002ms, 35198ms total)
T2F94 10942:905 JLINK_ReadReg(R0) -- CPU is running
  ***** Error: Can not read register 0 (R0) while CPU is running  returns 0x00000000 (0001ms, 35199ms total)
T2F94 10942:906 JLINK_ReadReg(R1) -- CPU is running
  ***** Error: Can not read register 1 (R1) while CPU is running  returns 0x00000000 (0001ms, 35200ms total)
T2F94 10942:907 JLINK_ReadReg(R2) -- CPU is running
  ***** Error: Can not read register 2 (R2) while CPU is running  returns 0x00000000 (0001ms, 35201ms total)
T2F94 10942:908 JLINK_ReadReg(R3) -- CPU is running
  ***** Error: Can not read register 3 (R3) while CPU is running  returns 0x00000000 (0303ms, 35504ms total)
T2F94 10943:211 JLINK_ReadReg(R4) -- CPU is running
  ***** Error: Can not read register 4 (R4) while CPU is running  returns 0x00000000 (0505ms, 36009ms total)
T2F94 10943:716 JLINK_ReadReg(R5) -- CPU is running
  ***** Error: Can not read register 5 (R5) while CPU is running  returns 0x00000000 (0135ms, 36144ms total)
T2F94 10943:852 JLINK_ReadReg(R6) -- CPU is running
  ***** Error: Can not read register 6 (R6) while CPU is running  returns 0x00000000 (0001ms, 36145ms total)
T2F94 10943:853 JLINK_ReadReg(R7) -- CPU is running
  ***** Error: Can not read register 7 (R7) while CPU is running  returns 0x00000000 (0001ms, 36146ms total)
T2F94 10943:854 JLINK_ReadReg(R8) -- CPU is running
  ***** Error: Can not read register 8 (R8) while CPU is running  returns 0x00000000 (0001ms, 36147ms total)
T2F94 10943:855 JLINK_ReadReg(R9) -- CPU is running
  ***** Error: Can not read register 9 (R9) while CPU is running  returns 0x00000000 (0001ms, 36148ms total)
T2F94 10943:856 JLINK_ReadReg(R10) -- CPU is running
  ***** Error: Can not read register 10 (R10) while CPU is running  returns 0x00000000 (0001ms, 36149ms total)
T2F94 10943:857 JLINK_ReadReg(R11) -- CPU is running
  ***** Error: Can not read register 11 (R11) while CPU is running  returns 0x00000000 (0001ms, 36150ms total)
T2F94 10943:858 JLINK_ReadReg(R12) -- CPU is running
  ***** Error: Can not read register 12 (R12) while CPU is running  returns 0x00000000 (0001ms, 36151ms total)
T2F94 10943:859 JLINK_ReadReg(R13 (SP)) -- CPU is running
  ***** Error: Can not read register 13 (R13) while CPU is running  returns 0x00000000 (0001ms, 36152ms total)
T2F94 10943:860 JLINK_ReadReg(R14) -- CPU is running
  ***** Error: Can not read register 14 (R14) while CPU is running  returns 0x00000000 (0001ms, 36153ms total)
T2F94 10943:861 JLINK_ReadReg(R15 (PC)) -- CPU is running
  ***** Error: Can not read register 15 (R15) while CPU is running  returns 0x00000000 (0001ms, 36154ms total)
T2F94 10943:862 JLINK_ReadReg(XPSR) -- CPU is running
  ***** Error: Can not read register 16 (XPSR) while CPU is running  returns 0x00000000 (0001ms, 36155ms total)
T2F94 10943:863 JLINK_ReadReg(MSP) -- CPU is running
  ***** Error: Can not read register 17 (MSP) while CPU is running  returns 0x00000000 (0001ms, 36156ms total)
T2F94 10943:864 JLINK_ReadReg(PSP) -- CPU is running
  ***** Error: Can not read register 18 (PSP) while CPU is running  returns 0x00000000 (0001ms, 36157ms total)
T2F94 10943:865 JLINK_ReadReg(CFBP) -- CPU is running
  ***** Error: Can not read register 20 (CFBP) while CPU is running  returns 0x00000000 (0001ms, 36158ms total)
T2F94 10943:866 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 36159ms total)
T2834 10943:874 JLINK_ReadReg(PSP) -- CPU is running
  ***** Error: Can not read register 18 (PSP) while CPU is running  returns 0x00000000 (0001ms, 36160ms total)
T2834 10943:875 JLINK_ReadReg(CFBP) -- CPU is running
  ***** Error: Can not read register 20 (CFBP) while CPU is running  returns 0x00000000 (0001ms, 36161ms total)
T2F94 10943:880 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 36162ms total)
T2F94 10943:881 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 36163ms total)
T2F94 10943:882 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 36164ms total)
T2F94 10943:883 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0001ms, 36165ms total)
T2F94 10943:884 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 36166ms total)
T2F94 10943:885 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 36167ms total)
T2F94 10943:886 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 36168ms total)
T2F94 10943:887 JLINK_ReadMemEx(0x00000000, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(60 bytes @ 0x08000000) - Data: 30 11 00 20 D5 00 00 08 3D 20 00 08 D9 1A 00 08 ...  returns 0x3C (0002ms, 36170ms total)
T2F94 10943:889 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 30 11  returns 0x02 (0001ms, 36171ms total)
T2F94 10943:890 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: 00 20  returns 0x02 (0001ms, 36172ms total)
T2F94 10943:891 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: 00 20  returns 0x02 (0001ms, 36173ms total)
T2F94 10943:892 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000004) - Data: D5 00 00 08 3D 20 00 08 D9 1A 00 08 00 00 00 00 ...  returns 0x3C (0001ms, 36174ms total)
T2F94 10943:894 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: D5 00  returns 0x02 (0001ms, 36175ms total)
T2F94 10943:895 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000004) - Data: D5 00 00 08 3D 20 00 08 D9 1A 00 08 00 00 00 00 ...  returns 0x3C (0001ms, 36176ms total)
T2F94 10943:896 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: D5 00  returns 0x02 (0001ms, 36177ms total)
T2F94 10943:897 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: 00 08  returns 0x02 (0001ms, 36178ms total)
T2F94 10943:898 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: 00 08  returns 0x02 (0001ms, 36179ms total)
T2F94 10943:899 JLINK_ReadMemEx(0x00000008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000008) - Data: 3D 20 00 08 D9 1A 00 08 00 00 00 00 00 00 00 00 ...  returns 0x3C (0002ms, 36181ms total)
T2F94 10943:901 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: 3D 20  returns 0x02 (0000ms, 36181ms total)
T2F94 10943:901 JLINK_ReadMemEx(0x00000008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000008) - Data: 3D 20 00 08 D9 1A 00 08 00 00 00 00 00 00 00 00 ...  returns 0x3C (0002ms, 36183ms total)
T2F94 10943:903 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: 3D 20  returns 0x02 (0001ms, 36184ms total)
T2F94 10943:904 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0800000A) - Data: 00 08  returns 0x02 (0001ms, 36185ms total)
T2F94 10959:370 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0001ms, 36186ms total)
T2F94 10959:371 JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running
 -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0563ms, 36749ms total)
T2F94 10959:935 JLINK_ReadReg(R15 (PC))  returns 0x080055BA (0000ms, 36749ms total)
T2F94 10959:936 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 36749ms total)
T2F94 10959:936 JLINK_ReadMemEx(0x080055BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08005580) -- Updating C cache (64 bytes @ 0x08005580) -- Read from C cache (2 bytes @ 0x080055BA) - Data: 64 46  returns 0x02 (0003ms, 36752ms total)
T2F94 10959:939 JLINK_ReadMemEx(0x080055BC, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x080055C0) -- Updating C cache (64 bytes @ 0x080055C0) -- Read from C cache (60 bytes @ 0x080055BC) - Data: 1D 46 14 1B B5 41 06 D3 65 46 52 1B B3 41 74 46 ...  returns 0x3C (0002ms, 36754ms total)
T2F94 10959:941 JLINK_ReadMemEx(0x080055BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055BC) - Data: 1D 46  returns 0x02 (0000ms, 36754ms total)
T2F94 10959:941 JLINK_ReadMemEx(0x080055BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080055BC) - Data: 1D 46 14 1B B5 41 06 D3 65 46 52 1B B3 41 74 46 ...  returns 0x3C (0000ms, 36754ms total)
T2F94 10959:941 JLINK_ReadMemEx(0x080055BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055BC) - Data: 1D 46  returns 0x02 (0000ms, 36754ms total)
T2F94 10959:941 JLINK_ReadMemEx(0x080055BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055BE) - Data: 14 1B  returns 0x02 (0000ms, 36754ms total)
T2F94 10959:941 JLINK_ReadMemEx(0x080055BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055BE) - Data: 14 1B  returns 0x02 (0000ms, 36754ms total)
T2F94 10959:941 JLINK_ReadMemEx(0x080055C0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080055C0) - Data: B5 41 06 D3 65 46 52 1B B3 41 74 46 07 43 0C 43 ...  returns 0x3C (0000ms, 36754ms total)
T2F94 10959:941 JLINK_ReadMemEx(0x080055C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055C0) - Data: B5 41  returns 0x02 (0000ms, 36754ms total)
T2F94 10959:941 JLINK_ReadMemEx(0x080055C0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080055C0) - Data: B5 41 06 D3 65 46 52 1B B3 41 74 46 07 43 0C 43 ...  returns 0x3C (0000ms, 36754ms total)
T2F94 10959:941 JLINK_ReadMemEx(0x080055C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055C0) - Data: B5 41  returns 0x02 (0000ms, 36754ms total)
T2F94 10959:941 JLINK_ReadMemEx(0x080055C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055C2) - Data: 06 D3  returns 0x02 (0000ms, 36754ms total)
T2F94 10959:941 JLINK_ReadMemEx(0x080055C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055C2) - Data: 06 D3  returns 0x02 (0000ms, 36754ms total)
T2F94 10959:941 JLINK_ReadMemEx(0x080055C4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080055C4) - Data: 65 46 52 1B B3 41 74 46 07 43 0C 43 A6 46 CD 07 ...  returns 0x3C (0000ms, 36754ms total)
T2F94 10959:941 JLINK_ReadMemEx(0x080055C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055C4) - Data: 65 46  returns 0x02 (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(R1)  returns 0x00000040 (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(R2)  returns 0x978D8000 (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(R3)  returns 0x002D126E (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(R4)  returns 0x4BC6C000 (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(R5)  returns 0x00000040 (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(R6)  returns 0x001F4000 (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(R13 (SP))  returns 0x20001A10 (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(R14)  returns 0x00166A00 (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(R15 (PC))  returns 0x080055BA (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(MSP)  returns 0x20001A10 (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 36754ms total)
T2F94 10959:977 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0002ms, 36756ms total)
T2F94 10959:979 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0000ms, 36756ms total)
T2F94 10959:979 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0002ms, 36758ms total)
T2F94 10959:981 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 00 00 80 3F  returns 0x04 (0000ms, 36758ms total)
T2F94 10959:981 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0000ms, 36758ms total)
T2F94 10959:981 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 36760ms total)
T2F94 10959:983 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 36760ms total)
T2834 10959:991 JLINK_ReadMemEx(0x080055BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055BA) - Data: 64 46  returns 0x02 (0000ms, 36760ms total)
T2834 10959:991 JLINK_SetBPEx(Addr = 0x08008E68, Type = 0xFFFFFFF2)  returns 0x00000002 (0000ms, 36760ms total)
T2834 10959:991 JLINK_SetBPEx(Addr = 0x08008E64, Type = 0xFFFFFFF2)  returns 0x00000003 (0000ms, 36760ms total)
T2834 10959:991 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0008ms, 36768ms total)
T2834 10960:100 JLINK_IsHalted()  returns FALSE (0001ms, 36769ms total)
T2834 10960:202 JLINK_IsHalted()  returns FALSE (0001ms, 36769ms total)
T2834 10960:304 JLINK_IsHalted()  returns FALSE (0001ms, 36769ms total)
T2834 10960:406 JLINK_IsHalted()  returns FALSE (0001ms, 36769ms total)
T2F94 10960:508 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 36769ms total)
T2F94 10960:509 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 36770ms total)
T2F94 10960:510 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 36771ms total)
T2F94 10960:511 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 80 3F  returns 0x04 (0001ms, 36772ms total)
T2F94 10960:512 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 36773ms total)
T2F94 10960:514 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 36773ms total)
T2F94 10960:515 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 36775ms total)
T2834 10960:516 JLINK_IsHalted()  returns FALSE (0001ms, 36776ms total)
T2834 10960:618 JLINK_IsHalted()  returns FALSE (0000ms, 36775ms total)
T2834 10960:719 JLINK_IsHalted()  returns FALSE (0001ms, 36776ms total)
T2834 10960:820 JLINK_IsHalted()  returns FALSE (0001ms, 36776ms total)
T2834 10960:922 JLINK_IsHalted()  returns TRUE (0004ms, 36779ms total)
T2834 10960:926 JLINK_Halt()  returns 0x00 (0000ms, 36775ms total)
T2834 10960:926 JLINK_IsHalted()  returns TRUE (0000ms, 36775ms total)
T2834 10960:926 JLINK_IsHalted()  returns TRUE (0000ms, 36775ms total)
T2834 10960:926 JLINK_IsHalted()  returns TRUE (0000ms, 36775ms total)
T2834 10960:926 JLINK_ReadReg(R15 (PC))  returns 0x08008E64 (0000ms, 36775ms total)
T2834 10960:926 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 36775ms total)
T2834 10960:926 JLINK_ClrBPEx(BPHandle = 0x00000002)  returns 0x00 (0000ms, 36775ms total)
T2834 10960:926 JLINK_ClrBPEx(BPHandle = 0x00000003)  returns 0x00 (0000ms, 36775ms total)
T2834 10960:926 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 36776ms total)
T2834 10960:927 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 36777ms total)
T2834 10960:928 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 36778ms total)
T2834 10960:929 JLINK_ReadReg(R0)  returns 0x000200F2 (0000ms, 36778ms total)
T2834 10960:929 JLINK_ReadReg(R1)  returns 0x000200F3 (0000ms, 36778ms total)
T2834 10960:929 JLINK_ReadReg(R2)  returns 0x00020000 (0000ms, 36778ms total)
T2834 10960:929 JLINK_ReadReg(R3)  returns 0x000200F2 (0000ms, 36778ms total)
T2834 10960:929 JLINK_ReadReg(R4)  returns 0x20000048 (0000ms, 36778ms total)
T2834 10960:929 JLINK_ReadReg(R5)  returns 0x200000D4 (0000ms, 36778ms total)
T2834 10960:929 JLINK_ReadReg(R6)  returns 0x2427D000 (0000ms, 36778ms total)
T2834 10960:929 JLINK_ReadReg(R7)  returns 0x200000DE (0000ms, 36778ms total)
T2834 10960:929 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0001ms, 36779ms total)
T2834 10960:930 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 36779ms total)
T2834 10960:930 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 36779ms total)
T2834 10960:930 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 36779ms total)
T2834 10960:930 JLINK_ReadReg(R12)  returns 0x20001A00 (0000ms, 36779ms total)
T2834 10960:930 JLINK_ReadReg(R13 (SP))  returns 0x20001A20 (0000ms, 36779ms total)
T2834 10960:930 JLINK_ReadReg(R14)  returns 0x0800A3C7 (0000ms, 36779ms total)
T2834 10960:930 JLINK_ReadReg(R15 (PC))  returns 0x08008E64 (0000ms, 36779ms total)
T2834 10960:930 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 36779ms total)
T2834 10960:930 JLINK_ReadReg(MSP)  returns 0x20001A20 (0000ms, 36779ms total)
T2834 10960:930 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 36779ms total)
T2834 10960:930 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 36779ms total)
T2F94 10960:930 JLINK_ReadMemEx(0x20001A44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A40) -- Updating C cache (64 bytes @ 0x20001A40) -- Read from C cache (4 bytes @ 0x20001A44) - Data: AF 92 00 08  returns 0x04 (0002ms, 36781ms total)
T2F94 10960:932 JLINK_ReadMemEx(0x20001A34, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A00) -- Updating C cache (64 bytes @ 0x20001A00) -- Read from C cache (4 bytes @ 0x20001A34) - Data: 48 00 00 20  returns 0x04 (0001ms, 36782ms total)
T2F94 10960:933 JLINK_ReadMemEx(0x20001A38, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A38) - Data: 00 00 00 50  returns 0x04 (0000ms, 36782ms total)
T2F94 10960:933 JLINK_ReadMemEx(0x20001A3C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A3C) - Data: 00 80 00 00  returns 0x04 (0001ms, 36783ms total)
T2F94 10960:934 JLINK_ReadMemEx(0x20001A40, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A40) - Data: 00 10 00 00  returns 0x04 (0000ms, 36783ms total)
T2F94 10960:934 JLINK_ReadMemEx(0x20001A44, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A44) - Data: AF 92 00 08  returns 0x04 (0000ms, 36783ms total)
T2F94 10960:934 JLINK_ReadMemEx(0x20001A54, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A54) - Data: C1 A7 00 08  returns 0x04 (0000ms, 36783ms total)
T2F94 10960:934 JLINK_ReadMemEx(0x20001A48, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A48) - Data: C4 00 00 20  returns 0x04 (0000ms, 36783ms total)
T2F94 10960:934 JLINK_ReadMemEx(0x20001A4C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A4C) - Data: 00 00 00 00  returns 0x04 (0000ms, 36783ms total)
T2F94 10960:934 JLINK_ReadMemEx(0x20001A50, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A50) - Data: 00 04 00 50  returns 0x04 (0000ms, 36783ms total)
T2F94 10960:934 JLINK_ReadMemEx(0x20001A54, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A54) - Data: C1 A7 00 08  returns 0x04 (0000ms, 36783ms total)
T2F94 10960:934 JLINK_ReadMemEx(0x20000050, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x20000050) - Data: 02  returns 0x01 (0002ms, 36785ms total)
T2F94 10960:939 JLINK_ReadMemEx(0x20000050, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000050) - Data: 02  returns 0x01 (0000ms, 36785ms total)
T2F94 10960:939 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0000ms, 36785ms total)
T2F94 10960:939 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0000ms, 36785ms total)
T2F94 10960:939 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0003ms, 36788ms total)
T2F94 10960:942 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 00 00 C0 3F  returns 0x04 (0000ms, 36788ms total)
T2F94 10960:942 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0000ms, 36788ms total)
T2F94 10960:942 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 36790ms total)
T2F94 10960:944 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 36790ms total)
T2F94 10960:944 JLINK_ReadMemEx(0x08008E64, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08008E40) -- Updating C cache (128 bytes @ 0x08008E40) -- Read from C cache (60 bytes @ 0x08008E64) - Data: 40 04 7C D5 81 22 D2 01 00 21 0F 20 01 F0 B3 FB ...  returns 0x3C (0002ms, 36792ms total)
T2F94 10960:946 JLINK_ReadMemEx(0x08008E64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08008E64) - Data: 40 04  returns 0x02 (0000ms, 36792ms total)
T2F94 10960:946 JLINK_ReadMemEx(0x08008E66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08008E66) - Data: 7C D5  returns 0x02 (0000ms, 36792ms total)
T2F94 10960:946 JLINK_ReadMemEx(0x08008E66, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08008E66) - Data: 7C D5  returns 0x02 (0000ms, 36792ms total)
T2F94 10960:946 JLINK_ReadMemEx(0x08008E68, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08008E68) - Data: 81 22 D2 01 00 21 0F 20 01 F0 B3 FB 00 21 10 20 ...  returns 0x3C (0000ms, 36792ms total)
T2F94 10960:946 JLINK_ReadMemEx(0x08008E68, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08008E68) - Data: 81 22  returns 0x02 (0000ms, 36792ms total)
T2F94 10961:888 JLINK_ReadMemEx(0x20000078, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000078) - Data: F2 00 02 00  returns 0x04 (0000ms, 36792ms total)
T2834 10964:668 JLINK_ReadMemEx(0x08008E64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08008E64) - Data: 40 04  returns 0x02 (0000ms, 36792ms total)
T2834 10964:668 JLINK_SetBPEx(Addr = 0x08008E68, Type = 0xFFFFFFF2)  returns 0x00000004 (0000ms, 36792ms total)
T2834 10964:668 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE000200C) (0005ms, 36797ms total)
T2834 10964:774 JLINK_IsHalted()  returns FALSE (0001ms, 36798ms total)
T2834 10964:876 JLINK_IsHalted()  returns FALSE (0001ms, 36798ms total)
T2834 10964:978 JLINK_IsHalted()  returns FALSE (0001ms, 36798ms total)
T2834 10965:080 JLINK_IsHalted()  returns FALSE (0001ms, 36798ms total)
T2834 10965:182 JLINK_IsHalted()  returns FALSE (0001ms, 36798ms total)
T2F94 10965:284 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 36798ms total)
T2F94 10965:285 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 36799ms total)
T2F94 10965:286 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 36800ms total)
T2F94 10965:287 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 20 40  returns 0x04 (0001ms, 36801ms total)
T2F94 10965:289 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 36802ms total)
T2F94 10965:290 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 36803ms total)
T2F94 10965:291 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 36804ms total)
T2834 10965:292 JLINK_IsHalted()  returns FALSE (0001ms, 36805ms total)
T2834 10965:394 JLINK_IsHalted()  returns FALSE (0001ms, 36805ms total)
T2834 10965:496 JLINK_IsHalted()  returns FALSE (0001ms, 36805ms total)
T2834 10965:598 JLINK_IsHalted()  returns FALSE (0001ms, 36805ms total)
T2834 10965:700 JLINK_IsHalted()  returns FALSE (0001ms, 36805ms total)
T2F94 10965:801 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 36805ms total)
T2F94 10965:802 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 36806ms total)
T2F94 10965:803 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 36807ms total)
T2F94 10965:804 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 20 40  returns 0x04 (0001ms, 36808ms total)
T2F94 10965:805 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0002ms, 36810ms total)
T2F94 10965:807 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 36811ms total)
T2F94 10965:808 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 36812ms total)
T2834 10965:809 JLINK_IsHalted()  returns FALSE (0001ms, 36813ms total)
T2834 10965:911 JLINK_IsHalted()  returns FALSE (0001ms, 36813ms total)
T2834 10966:012 JLINK_IsHalted()  returns FALSE (0001ms, 36813ms total)
T2834 10966:114 JLINK_IsHalted()  returns FALSE (0001ms, 36813ms total)
T2834 10966:216 JLINK_IsHalted()  returns FALSE (0001ms, 36813ms total)
T2F94 10966:318 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0002ms, 36814ms total)
T2F94 10966:320 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 36815ms total)
T2F94 10966:321 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 36816ms total)
T2F94 10966:322 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 40 40  returns 0x04 (0001ms, 36817ms total)
T2F94 10966:323 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 36818ms total)
T2F94 10966:324 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 36819ms total)
T2F94 10966:325 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 36820ms total)
T2834 10966:326 JLINK_IsHalted()  returns FALSE (0001ms, 36821ms total)
T2834 10966:428 JLINK_IsHalted()  returns FALSE (0001ms, 36821ms total)
T2834 10966:529 JLINK_IsHalted()  returns FALSE (0001ms, 36821ms total)
T2834 10966:631 JLINK_IsHalted()  returns FALSE (0001ms, 36821ms total)
T2834 10966:733 JLINK_IsHalted()  returns FALSE (0001ms, 36821ms total)
T2F94 10966:819 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 36820ms total)
T2F94 10966:819 JLINK_ResetNoHalt() >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>AP map detection skipped. Manually configured AP map found.AP[0]: AHB-AP (IDR: Not set) >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. -- Max. mem block: 0x00002C08 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(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
                JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running
 -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0076ms, 0076ms total)
                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) (0007ms, 0083ms total)
               (0283ms, 37103ms total)
T2F94 10967:103 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 37104ms total)
T2F94 10967:104 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 37105ms total)
T2F94 10967:105 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0002ms, 37107ms total)
T2F94 10967:107 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0001ms, 37108ms total)
T2F94 10967:108 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 37109ms total)
T2F94 10967:109 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37110ms total)
T2F94 10967:110 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37111ms total)
T2834 10967:111 JLINK_IsHalted()  returns FALSE (0001ms, 37112ms total)
T2834 10967:213 JLINK_IsHalted()  returns FALSE (0001ms, 37112ms total)
T2834 10967:314 JLINK_IsHalted()  returns FALSE (0001ms, 37112ms total)
T2834 10967:416 JLINK_IsHalted()  returns FALSE (0000ms, 37111ms total)
T2834 10967:517 JLINK_IsHalted()  returns FALSE (0001ms, 37112ms total)
T2F94 10967:619 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 37112ms total)
T2F94 10967:620 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 37113ms total)
T2F94 10967:621 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 37114ms total)
T2F94 10967:622 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 80 3F  returns 0x04 (0001ms, 37115ms total)
T2F94 10967:624 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 37116ms total)
T2F94 10967:625 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37117ms total)
T2F94 10967:626 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37118ms total)
T2834 10967:627 JLINK_IsHalted()  returns FALSE (0001ms, 37119ms total)
T2834 10967:729 JLINK_IsHalted()  returns FALSE (0001ms, 37119ms total)
T2834 10967:831 JLINK_IsHalted()  returns FALSE (0001ms, 37119ms total)
T2834 10967:932 JLINK_IsHalted()  returns FALSE (0001ms, 37119ms total)
T2834 10968:035 JLINK_IsHalted()  returns FALSE (0001ms, 37119ms total)
T2F94 10968:136 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 37119ms total)
T2F94 10968:137 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 37120ms total)
T2F94 10968:138 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 37121ms total)
T2F94 10968:139 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 C0 3F  returns 0x04 (0000ms, 37121ms total)
T2F94 10968:140 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 37122ms total)
T2F94 10968:141 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37123ms total)
T2F94 10968:142 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37124ms total)
T2834 10968:143 JLINK_IsHalted()  returns FALSE (0001ms, 37125ms total)
T2834 10968:245 JLINK_IsHalted()  returns FALSE (0001ms, 37125ms total)
T2834 10968:347 JLINK_IsHalted()  returns FALSE (0001ms, 37125ms total)
T2834 10968:449 JLINK_IsHalted()  returns FALSE (0001ms, 37125ms total)
T2834 10968:551 JLINK_IsHalted()  returns FALSE (0001ms, 37125ms total)
T2F94 10968:653 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 37125ms total)
T2F94 10968:654 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 37126ms total)
T2F94 10968:655 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 37127ms total)
T2F94 10968:656 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0001ms, 37128ms total)
T2F94 10968:657 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 37129ms total)
T2F94 10968:658 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37130ms total)
T2F94 10968:659 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37131ms total)
T2834 10968:660 JLINK_IsHalted()  returns FALSE (0001ms, 37132ms total)
T2834 10968:762 JLINK_IsHalted()  returns FALSE (0001ms, 37132ms total)
T2834 10968:864 JLINK_IsHalted()  returns FALSE (0001ms, 37132ms total)
T2834 10968:966 JLINK_IsHalted()  returns FALSE (0001ms, 37132ms total)
T2834 10969:068 JLINK_IsHalted()  returns FALSE (0001ms, 37132ms total)
T2F94 10969:170 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 37132ms total)
T2F94 10969:171 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 37133ms total)
T2F94 10969:172 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 37134ms total)
T2F94 10969:173 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 3F  returns 0x04 (0001ms, 37135ms total)
T2F94 10969:175 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 37136ms total)
T2F94 10969:176 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37137ms total)
T2F94 10969:177 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37138ms total)
T2834 10969:178 JLINK_IsHalted()  returns FALSE (0001ms, 37139ms total)
T2834 10969:280 JLINK_IsHalted()  returns FALSE (0001ms, 37139ms total)
T2834 10969:381 JLINK_IsHalted()  returns FALSE (0001ms, 37139ms total)
T2834 10969:483 JLINK_IsHalted()  returns FALSE (0001ms, 37139ms total)
T2834 10969:585 JLINK_IsHalted()  returns FALSE (0001ms, 37139ms total)
T2F94 10969:687 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 37139ms total)
T2F94 10969:688 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 37140ms total)
T2F94 10969:689 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 37141ms total)
T2F94 10969:690 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0001ms, 37142ms total)
T2F94 10969:691 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 37143ms total)
T2F94 10969:693 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37144ms total)
T2F94 10969:694 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37145ms total)
T2834 10969:695 JLINK_IsHalted()  returns FALSE (0001ms, 37146ms total)
T2834 10969:797 JLINK_IsHalted()  returns FALSE (0000ms, 37145ms total)
T2834 10969:898 JLINK_IsHalted()  returns FALSE (0001ms, 37146ms total)
T2834 10970:000 JLINK_IsHalted()  returns FALSE (0001ms, 37146ms total)
T2834 10970:102 JLINK_IsHalted()  returns FALSE (0001ms, 37146ms total)
T2F94 10970:204 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 37146ms total)
T2F94 10970:205 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 37147ms total)
T2F94 10970:206 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 37148ms total)
T2F94 10970:207 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 3F  returns 0x04 (0001ms, 37149ms total)
T2F94 10970:209 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 37150ms total)
T2F94 10970:210 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37151ms total)
T2F94 10970:211 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37152ms total)
T2834 10970:212 JLINK_IsHalted()  returns FALSE (0001ms, 37153ms total)
T2834 10970:313 JLINK_IsHalted()  returns FALSE (0001ms, 37153ms total)
T2834 10970:415 JLINK_IsHalted()  returns FALSE (0001ms, 37153ms total)
T2834 10970:517 JLINK_IsHalted()  returns FALSE (0001ms, 37153ms total)
T2834 10970:619 JLINK_IsHalted()  returns FALSE (0001ms, 37153ms total)
T2F94 10970:721 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 37153ms total)
T2F94 10970:722 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 37154ms total)
T2F94 10970:723 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 37155ms total)
T2F94 10970:724 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0001ms, 37156ms total)
T2F94 10970:726 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 37157ms total)
T2F94 10970:727 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 37157ms total)
T2F94 10970:727 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37158ms total)
T2834 10970:729 JLINK_IsHalted()  returns FALSE (0001ms, 37159ms total)
T2834 10970:831 JLINK_IsHalted()  returns FALSE (0001ms, 37159ms total)
T2834 10970:932 JLINK_IsHalted()  returns FALSE (0001ms, 37159ms total)
T2834 10971:034 JLINK_IsHalted()  returns FALSE (0001ms, 37159ms total)
T2834 10971:136 JLINK_IsHalted()  returns FALSE (0001ms, 37159ms total)
T2F94 10971:239 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 37159ms total)
T2F94 10971:240 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 37160ms total)
T2F94 10971:241 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 37161ms total)
T2F94 10971:242 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 3F  returns 0x04 (0001ms, 37162ms total)
T2F94 10971:243 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 37163ms total)
T2F94 10971:244 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37164ms total)
T2F94 10971:245 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 37166ms total)
T2834 10971:247 JLINK_IsHalted()  returns FALSE (0000ms, 37166ms total)
T2834 10971:348 JLINK_IsHalted()  returns FALSE (0006ms, 37172ms total)
T2834 10971:456 JLINK_IsHalted()  returns FALSE (0001ms, 37167ms total)
T2834 10971:557 JLINK_IsHalted()  returns FALSE (0001ms, 37167ms total)
T2834 10971:659 JLINK_IsHalted()  returns FALSE (0001ms, 37167ms total)
T2F94 10971:761 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 37167ms total)
T2F94 10971:762 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 37168ms total)
T2F94 10971:763 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 37169ms total)
T2F94 10971:764 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 3F  returns 0x04 (0001ms, 37170ms total)
T2F94 10971:765 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 37171ms total)
T2F94 10971:766 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37172ms total)
T2F94 10971:767 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37173ms total)
T2834 10971:769 JLINK_IsHalted()  returns FALSE (0000ms, 37173ms total)
T2834 10971:870 JLINK_IsHalted()  returns FALSE (0001ms, 37174ms total)
T2834 10971:971 JLINK_IsHalted()  returns FALSE (0001ms, 37174ms total)
T2834 10972:072 JLINK_IsHalted()  returns FALSE (0001ms, 37174ms total)
T2834 10972:174 JLINK_IsHalted()  returns FALSE (0001ms, 37174ms total)
T2F94 10972:275 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 37174ms total)
T2F94 10972:276 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 37175ms total)
T2F94 10972:277 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 37176ms total)
T2F94 10972:278 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 80 3F  returns 0x04 (0001ms, 37177ms total)
T2F94 10972:279 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0002ms, 37179ms total)
T2F94 10972:281 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 37179ms total)
T2F94 10972:281 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37180ms total)
T2834 10972:282 JLINK_IsHalted()  returns FALSE (0001ms, 37181ms total)
T2834 10972:384 JLINK_IsHalted()  returns FALSE (0001ms, 37181ms total)
T2834 10972:485 JLINK_IsHalted()  returns FALSE (0001ms, 37181ms total)
T2834 10972:587 JLINK_IsHalted()  returns FALSE (0001ms, 37181ms total)
T2834 10972:689 JLINK_IsHalted()  returns FALSE (0001ms, 37181ms total)
T2F94 10972:791 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 37181ms total)
T2F94 10972:792 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 37182ms total)
T2F94 10972:793 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 37183ms total)
T2F94 10972:794 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 80 3F  returns 0x04 (0001ms, 37184ms total)
T2F94 10972:796 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0000ms, 37184ms total)
T2F94 10972:796 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 37186ms total)
T2F94 10972:798 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37187ms total)
T2834 10972:800 JLINK_IsHalted()  returns FALSE (0000ms, 37187ms total)
T2834 10972:901 JLINK_IsHalted()  returns FALSE (0001ms, 37188ms total)
T2834 10973:003 JLINK_IsHalted()  returns FALSE (0001ms, 37188ms total)
T2834 10973:105 JLINK_IsHalted()  returns FALSE (0001ms, 37188ms total)
T2834 10973:206 JLINK_IsHalted()  returns FALSE (0001ms, 37188ms total)
T2F94 10973:307 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 37188ms total)
T2F94 10973:308 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 37189ms total)
T2F94 10973:309 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 37190ms total)
T2F94 10973:310 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 C0 3F  returns 0x04 (0001ms, 37191ms total)
T2F94 10973:311 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 37192ms total)
T2F94 10973:312 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37193ms total)
T2F94 10973:313 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 37195ms total)
T2834 10973:315 JLINK_IsHalted()  returns FALSE (0000ms, 37195ms total)
T2834 10973:416 JLINK_IsHalted()  returns FALSE (0001ms, 37196ms total)
T2834 10973:518 JLINK_IsHalted()  returns FALSE (0001ms, 37196ms total)
T2834 10973:620 JLINK_IsHalted()  returns FALSE (0001ms, 37196ms total)
T2834 10973:722 JLINK_IsHalted()  returns FALSE (0001ms, 37196ms total)
T2F94 10973:823 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 37196ms total)
T2F94 10973:824 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 37197ms total)
T2F94 10973:825 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0002ms, 37199ms total)
T2F94 10973:827 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 C0 3F  returns 0x04 (0001ms, 37200ms total)
T2F94 10973:828 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 37201ms total)
T2F94 10973:829 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37202ms total)
T2F94 10973:830 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37203ms total)
T2834 10973:832 JLINK_IsHalted()  returns FALSE (0000ms, 37203ms total)
T2834 10973:933 JLINK_IsHalted()  returns FALSE (0001ms, 37204ms total)
T2834 10974:035 JLINK_IsHalted()  returns FALSE (0001ms, 37204ms total)
T2834 10974:137 JLINK_IsHalted()  returns FALSE (0000ms, 37203ms total)
T2834 10974:238 JLINK_IsHalted()  returns FALSE (0001ms, 37204ms total)
T2F94 10974:340 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 37204ms total)
T2F94 10974:341 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 37205ms total)
T2F94 10974:342 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 37206ms total)
T2F94 10974:343 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 40  returns 0x04 (0001ms, 37207ms total)
T2F94 10974:345 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 37208ms total)
T2F94 10974:346 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37209ms total)
T2F94 10974:347 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37210ms total)
T2834 10974:348 JLINK_IsHalted()  returns FALSE (0001ms, 37211ms total)
T2834 10974:449 JLINK_IsHalted()  returns FALSE (0001ms, 37211ms total)
T2834 10974:551 JLINK_IsHalted()  returns FALSE (0001ms, 37211ms total)
T2834 10974:653 JLINK_IsHalted()  returns FALSE (0001ms, 37211ms total)
T2834 10974:755 JLINK_IsHalted()  returns FALSE (0001ms, 37211ms total)
T2F94 10974:856 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 37211ms total)
T2F94 10974:857 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 37212ms total)
T2F94 10974:858 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 37213ms total)
T2F94 10974:859 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0001ms, 37214ms total)
T2F94 10974:860 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 37215ms total)
T2F94 10974:861 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37216ms total)
T2F94 10974:862 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 37218ms total)
T2834 10974:864 JLINK_IsHalted()  returns FALSE (0000ms, 37218ms total)
T2834 10974:965 JLINK_IsHalted()  returns FALSE (0001ms, 37219ms total)
T2834 10975:067 JLINK_IsHalted()  returns FALSE (0001ms, 37219ms total)
T2834 10975:169 JLINK_IsHalted()  returns FALSE (0001ms, 37219ms total)
T2834 10975:271 JLINK_IsHalted()  returns FALSE (0001ms, 37219ms total)
T2F94 10975:373 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 37219ms total)
T2F94 10975:374 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 37220ms total)
T2F94 10975:375 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 37221ms total)
T2F94 10975:376 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 3F  returns 0x04 (0002ms, 37223ms total)
T2F94 10975:378 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 37224ms total)
T2F94 10975:379 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37225ms total)
T2F94 10975:380 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37226ms total)
T2834 10975:381 JLINK_IsHalted()  returns FALSE (0001ms, 37227ms total)
T2834 10975:484 JLINK_IsHalted()  returns FALSE (0000ms, 37226ms total)
T2834 10975:586 JLINK_IsHalted()  returns FALSE (0000ms, 37226ms total)
T2834 10975:687 JLINK_IsHalted()  returns FALSE (0001ms, 37227ms total)
T2834 10975:788 JLINK_IsHalted()  returns FALSE (0001ms, 37227ms total)
T2F94 10975:890 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 37227ms total)
T2F94 10975:891 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 37228ms total)
T2F94 10975:892 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 37229ms total)
T2F94 10975:893 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 3F  returns 0x04 (0001ms, 37230ms total)
T2F94 10975:895 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 37231ms total)
T2F94 10975:896 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 37233ms total)
T2F94 10975:898 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 37233ms total)
T2834 10975:898 JLINK_IsHalted()  returns FALSE (0002ms, 37235ms total)
T2834 10976:001 JLINK_IsHalted()  returns FALSE (0000ms, 37233ms total)
T2834 10976:102 JLINK_IsHalted()  returns FALSE (0001ms, 37234ms total)
T2834 10976:204 JLINK_IsHalted()  returns FALSE (0001ms, 37234ms total)
T2834 10976:306 JLINK_IsHalted()  returns FALSE (0001ms, 37234ms total)
T2F94 10976:407 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 37234ms total)
T2F94 10976:408 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 37235ms total)
T2F94 10976:409 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 37236ms total)
T2F94 10976:410 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 80 3F  returns 0x04 (0002ms, 37238ms total)
T2F94 10976:412 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 37239ms total)
T2F94 10976:413 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37240ms total)
T2F94 10976:414 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 37241ms total)
T2834 10976:415 JLINK_IsHalted()  returns FALSE (0002ms, 37243ms total)
T2834 10976:518 JLINK_IsHalted()  returns FALSE (0001ms, 37242ms total)
T2834 10976:619 JLINK_IsHalted()  returns FALSE (0001ms, 37242ms total)
T2834 10976:721 JLINK_IsHalted()  returns FALSE (0001ms, 37242ms total)
T2834 10976:823 JLINK_IsHalted()  returns FALSE (0001ms, 37242ms total)
T2834 10976:924 JLINK_Halt()  returns 0x00 (0005ms, 37246ms total)
T2834 10976:929 JLINK_IsHalted()  returns TRUE (0000ms, 37246ms total)
T2834 10976:929 JLINK_IsHalted()  returns TRUE (0000ms, 37246ms total)
T2834 10976:929 JLINK_IsHalted()  returns TRUE (0000ms, 37246ms total)
T2834 10976:929 JLINK_ReadReg(R15 (PC))  returns 0x080055D2 (0000ms, 37246ms total)
T2834 10976:929 JLINK_ReadReg(XPSR)  returns 0x81000000 (0000ms, 37246ms total)
T2834 10976:929 JLINK_ClrBPEx(BPHandle = 0x00000004)  returns 0x00 (0000ms, 37246ms total)
T2834 10976:929 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 1 (0002ms, 37248ms total)
T2834 10976:931 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 37249ms total)
T2834 10976:932 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 37250ms total)
T2834 10976:933 JLINK_ReadReg(R0)  returns 0x00000002 (0000ms, 37250ms total)
T2834 10976:933 JLINK_ReadReg(R1)  returns 0x00000000 (0000ms, 37250ms total)
T2834 10976:933 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 37250ms total)
T2834 10976:933 JLINK_ReadReg(R3)  returns 0x001A8000 (0000ms, 37250ms total)
T2834 10976:933 JLINK_ReadReg(R4)  returns 0x00000000 (0000ms, 37250ms total)
T2834 10976:933 JLINK_ReadReg(R5)  returns 0xFFFB4000 (0000ms, 37250ms total)
T2834 10976:933 JLINK_ReadReg(R6)  returns 0x001F4000 (0000ms, 37250ms total)
T2834 10976:933 JLINK_ReadReg(R7)  returns 0xFD438D1C (0000ms, 37250ms total)
T2834 10976:933 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 37250ms total)
T2834 10976:933 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 37250ms total)
T2834 10976:933 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 37250ms total)
T2834 10976:933 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 37250ms total)
T2834 10976:933 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 37250ms total)
T2834 10976:933 JLINK_ReadReg(R13 (SP))  returns 0x20001A10 (0000ms, 37250ms total)
T2834 10976:933 JLINK_ReadReg(R14)  returns 0x0019602E (0000ms, 37250ms total)
T2834 10976:933 JLINK_ReadReg(R15 (PC))  returns 0x080055D2 (0000ms, 37250ms total)
T2834 10976:933 JLINK_ReadReg(XPSR)  returns 0x81000000 (0000ms, 37250ms total)
T2834 10976:933 JLINK_ReadReg(MSP)  returns 0x20001A10 (0000ms, 37250ms total)
T2834 10976:933 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0001ms, 37251ms total)
T2834 10976:934 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 37251ms total)
T2F94 10976:934 JLINK_ReadMemEx(0x20001A34, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A00) -- Updating C cache (64 bytes @ 0x20001A00) -- Read from C cache (4 bytes @ 0x20001A34) - Data: 9F 5D 00 08  returns 0x04 (0002ms, 37253ms total)
T2F94 10976:936 JLINK_ReadMemEx(0x20001A24, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A24) - Data: C4 00 00 20  returns 0x04 (0000ms, 37253ms total)
T2F94 10976:936 JLINK_ReadMemEx(0x20001A28, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A28) - Data: 00 00 00 00  returns 0x04 (0000ms, 37253ms total)
T2F94 10976:936 JLINK_ReadMemEx(0x20001A2C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A2C) - Data: 04 00 FA 05  returns 0x04 (0000ms, 37253ms total)
T2F94 10976:936 JLINK_ReadMemEx(0x20001A30, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A30) - Data: 00 ED 00 E0  returns 0x04 (0000ms, 37253ms total)
T2F94 10976:936 JLINK_ReadMemEx(0x20001A34, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A34) - Data: 9F 5D 00 08  returns 0x04 (0000ms, 37253ms total)
T2F94 10976:936 JLINK_ReadMemEx(0x20001A3C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A3C) - Data: FF 7C 00 08  returns 0x04 (0000ms, 37253ms total)
T2F94 10976:936 JLINK_ReadMemEx(0x20001A38, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A38) - Data: C4 00 00 20  returns 0x04 (0000ms, 37253ms total)
T2F94 10976:936 JLINK_ReadMemEx(0x20001A3C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A3C) - Data: FF 7C 00 08  returns 0x04 (0000ms, 37253ms total)
T2F94 10976:936 JLINK_ReadMemEx(0x20001A54, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A40) -- Updating C cache (64 bytes @ 0x20001A40) -- Read from C cache (4 bytes @ 0x20001A54) - Data: 15 A8 00 08  returns 0x04 (0002ms, 37255ms total)
T2F94 10976:938 JLINK_ReadMemEx(0x20001A44, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A44) - Data: C4 00 00 20  returns 0x04 (0000ms, 37255ms total)
T2F94 10976:938 JLINK_ReadMemEx(0x20001A48, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A48) - Data: 00 00 00 00  returns 0x04 (0000ms, 37255ms total)
T2F94 10976:938 JLINK_ReadMemEx(0x20001A4C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A4C) - Data: 00 04 00 50  returns 0x04 (0000ms, 37255ms total)
T2F94 10976:938 JLINK_ReadMemEx(0x20001A50, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A50) - Data: 00 10 00 00  returns 0x04 (0000ms, 37255ms total)
T2F94 10976:938 JLINK_ReadMemEx(0x20001A54, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A54) - Data: 15 A8 00 08  returns 0x04 (0000ms, 37255ms total)
T2F94 10976:939 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0002ms, 37257ms total)
T2F94 10976:941 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0000ms, 37257ms total)
T2F94 10976:941 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0002ms, 37259ms total)
T2F94 10976:943 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 00 00 80 3F  returns 0x04 (0000ms, 37259ms total)
T2F94 10976:943 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0000ms, 37259ms total)
T2F94 10976:943 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 37261ms total)
T2F94 10976:945 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 37261ms total)
T2F94 10976:945 JLINK_ReadMemEx(0x080055D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x080055C0) -- Updating C cache (64 bytes @ 0x080055C0) -- Read from C cache (2 bytes @ 0x080055D2) - Data: CD 07  returns 0x02 (0002ms, 37263ms total)
T2F94 10976:947 JLINK_ReadMemEx(0x080055D4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08005600) -- Updating C cache (64 bytes @ 0x08005600) -- Read from C cache (60 bytes @ 0x080055D4) - Data: 40 08 49 08 28 43 92 18 5B 41 05 46 0D 43 EA D1 ...  returns 0x3C (0001ms, 37264ms total)
T2F94 10976:949 JLINK_ReadMemEx(0x080055D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055D4) - Data: 40 08  returns 0x02 (0000ms, 37265ms total)
T2F94 10976:949 JLINK_ReadMemEx(0x080055D4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080055D4) - Data: 40 08 49 08 28 43 92 18 5B 41 05 46 0D 43 EA D1 ...  returns 0x3C (0000ms, 37265ms total)
T2F94 10976:949 JLINK_ReadMemEx(0x080055D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055D4) - Data: 40 08  returns 0x02 (0000ms, 37265ms total)
T2F94 10976:949 JLINK_ReadMemEx(0x080055D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055D6) - Data: 49 08  returns 0x02 (0000ms, 37265ms total)
T2F94 10976:949 JLINK_ReadMemEx(0x080055D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055D6) - Data: 49 08  returns 0x02 (0000ms, 37265ms total)
T2F94 10976:949 JLINK_ReadMemEx(0x080055D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080055D8) - Data: 28 43 92 18 5B 41 05 46 0D 43 EA D1 10 46 18 43 ...  returns 0x3C (0000ms, 37265ms total)
T2F94 10976:949 JLINK_ReadMemEx(0x080055D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055D8) - Data: 28 43  returns 0x02 (0000ms, 37265ms total)
T2F94 10976:949 JLINK_ReadMemEx(0x080055D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080055D8) - Data: 28 43 92 18 5B 41 05 46 0D 43 EA D1 10 46 18 43 ...  returns 0x3C (0000ms, 37265ms total)
T2F94 10976:949 JLINK_ReadMemEx(0x080055D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055D8) - Data: 28 43  returns 0x02 (0000ms, 37265ms total)
T2F94 10976:949 JLINK_ReadMemEx(0x080055DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055DA) - Data: 92 18  returns 0x02 (0000ms, 37265ms total)
T2F94 10976:949 JLINK_ReadMemEx(0x080055DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055DA) - Data: 92 18  returns 0x02 (0000ms, 37265ms total)
T2F94 10976:949 JLINK_ReadMemEx(0x080055DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080055DC) - Data: 5B 41 05 46 0D 43 EA D1 10 46 18 43 13 D0 60 46 ...  returns 0x3C (0000ms, 37265ms total)
T2F94 10976:949 JLINK_ReadMemEx(0x080055DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055DC) - Data: 5B 41  returns 0x02 (0000ms, 37265ms total)
T2F94 11020:482 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 37265ms total)
T2F94 11020:482 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0077ms, 37342ms total)
T2F94 11020:559 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 37342ms total)
T2F94 11020:559 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 37342ms total)
T2F94 11020:559 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 (0002ms, 37344ms total)
T2F94 11020:561 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 37344ms total)
T2F94 11020:561 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0001ms, 37345ms total)
T2F94 11020:562 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 37345ms total)
T2F94 11020:562 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, 37345ms total)
T2F94 11020:562 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 37345ms total)
T2F94 11020:562 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, 37345ms total)
T2F94 11020:562 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 37345ms total)
T2F94 11020:562 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 37345ms total)
T2F94 11020:562 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 37345ms total)
T2F94 11020:562 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 0D 25 00 08 ...  returns 0x3C (0000ms, 37345ms total)
T2F94 11020:562 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 37345ms total)
T2F94 11020:562 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 0D 25 00 08 ...  returns 0x3C (0000ms, 37345ms total)
T2F94 11020:562 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 37345ms total)
T2F94 11020:562 JLINK_ReadMemEx(0x080000DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DE) - Data: FE E7  returns 0x02 (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(R0)  returns 0xFFFFFFFF (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(R1)  returns 0xFFFFFFFF (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(R3)  returns 0xFFFFFFFF (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(R4)  returns 0xFFFFFFFF (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(R5)  returns 0xFFFFFFFF (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(R13 (SP))  returns 0x20001130 (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(R14)  returns 0xFFFFFFFF (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(MSP)  returns 0x20001130 (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 37345ms total)
T2F94 11020:597 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0002ms, 37347ms total)
T2F94 11020:599 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0000ms, 37347ms total)
T2F94 11020:599 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0002ms, 37349ms total)
T2F94 11020:601 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 00 00 80 3F  returns 0x04 (0000ms, 37349ms total)
T2F94 11020:601 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0000ms, 37349ms total)
T2F94 11020:601 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 37351ms total)
T2F94 11020:603 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 37351ms total)
T2834 11021:188 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 37351ms total)
T2834 11021:188 JLINK_SetBPEx(Addr = 0x08008E68, Type = 0xFFFFFFF2)  returns 0x00000005 (0000ms, 37351ms total)
T2834 11021:188 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) (0007ms, 37358ms total)
T2834 11021:296 JLINK_IsHalted()  returns FALSE (0001ms, 37360ms total)
T2834 11021:398 JLINK_IsHalted()  returns FALSE (0001ms, 37360ms total)
T2834 11021:499 JLINK_IsHalted()  returns FALSE (0001ms, 37360ms total)
T2834 11021:601 JLINK_IsHalted()  returns FALSE (0001ms, 37360ms total)
T2834 11021:703 JLINK_IsHalted()  returns FALSE (0001ms, 37360ms total)
T2F94 11021:805 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (2125ms, 39484ms total)
T2F94 11023:931 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0002ms, 39486ms total)
T2F94 11023:933 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39487ms total)
T2F94 11023:934 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 40  returns 0x04 (0001ms, 39488ms total)
T2F94 11023:935 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39489ms total)
T2F94 11023:936 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39490ms total)
T2F94 11023:937 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39491ms total)
T2834 11023:938 JLINK_IsHalted()  returns FALSE (0001ms, 39492ms total)
T2F94 11024:040 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0000ms, 39491ms total)
T2F94 11024:040 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39492ms total)
T2F94 11024:041 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39493ms total)
T2F94 11024:042 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 40  returns 0x04 (0001ms, 39494ms total)
T2F94 11024:044 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39495ms total)
T2F94 11024:045 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39496ms total)
T2F94 11024:046 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39497ms total)
T2834 11024:047 JLINK_IsHalted()  returns FALSE (0001ms, 39498ms total)
T2834 11024:148 JLINK_IsHalted()  returns FALSE (0001ms, 39498ms total)
T2834 11024:250 JLINK_IsHalted()  returns FALSE (0001ms, 39498ms total)
T2834 11024:352 JLINK_IsHalted()  returns FALSE (0001ms, 39498ms total)
T2834 11024:453 JLINK_IsHalted()  returns FALSE (0001ms, 39498ms total)
T2F94 11024:555 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39498ms total)
T2F94 11024:556 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39499ms total)
T2F94 11024:557 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39500ms total)
T2F94 11024:558 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 20 40  returns 0x04 (0001ms, 39501ms total)
T2F94 11024:559 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39502ms total)
T2F94 11024:560 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39503ms total)
T2F94 11024:561 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39504ms total)
T2834 11024:562 JLINK_IsHalted()  returns FALSE (0001ms, 39505ms total)
T2834 11024:664 JLINK_IsHalted()  returns FALSE (0001ms, 39505ms total)
T2834 11024:766 JLINK_IsHalted()  returns FALSE (0001ms, 39505ms total)
T2834 11024:867 JLINK_IsHalted()  returns FALSE (0001ms, 39505ms total)
T2834 11024:969 JLINK_IsHalted()  returns FALSE (0000ms, 39504ms total)
T2F94 11025:070 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39505ms total)
T2F94 11025:071 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39506ms total)
T2F94 11025:072 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39507ms total)
T2F94 11025:073 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 20 40  returns 0x04 (0001ms, 39508ms total)
T2F94 11025:074 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39509ms total)
T2F94 11025:075 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39510ms total)
T2F94 11025:076 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39511ms total)
T2834 11025:077 JLINK_IsHalted()  returns FALSE (0001ms, 39512ms total)
T2834 11025:179 JLINK_IsHalted()  returns FALSE (0001ms, 39512ms total)
T2834 11025:281 JLINK_IsHalted()  returns FALSE (0001ms, 39512ms total)
T2834 11025:382 JLINK_IsHalted()  returns FALSE (0001ms, 39512ms total)
T2834 11025:484 JLINK_IsHalted()  returns FALSE (0000ms, 39511ms total)
T2F94 11025:585 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39512ms total)
T2F94 11025:586 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39513ms total)
T2F94 11025:587 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39514ms total)
T2F94 11025:588 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 3F  returns 0x04 (0000ms, 39514ms total)
T2F94 11025:589 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39515ms total)
T2F94 11025:590 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39516ms total)
T2F94 11025:591 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39517ms total)
T2834 11025:592 JLINK_IsHalted()  returns FALSE (0001ms, 39518ms total)
T2834 11025:694 JLINK_IsHalted()  returns FALSE (0001ms, 39518ms total)
T2834 11025:795 JLINK_IsHalted()  returns FALSE (0001ms, 39518ms total)
T2834 11025:897 JLINK_IsHalted()  returns FALSE (0001ms, 39518ms total)
T2834 11025:999 JLINK_IsHalted()  returns FALSE (0001ms, 39518ms total)
T2F94 11026:101 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39518ms total)
T2F94 11026:102 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39519ms total)
T2F94 11026:103 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0002ms, 39521ms total)
T2F94 11026:105 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 3F  returns 0x04 (0001ms, 39522ms total)
T2F94 11026:106 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39523ms total)
T2F94 11026:107 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39524ms total)
T2F94 11026:108 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39525ms total)
T2834 11026:109 JLINK_IsHalted()  returns FALSE (0001ms, 39526ms total)
T2834 11026:211 JLINK_IsHalted()  returns FALSE (0001ms, 39526ms total)
T2834 11026:313 JLINK_IsHalted()  returns FALSE (0001ms, 39526ms total)
T2834 11026:414 JLINK_IsHalted()  returns FALSE (0001ms, 39526ms total)
T2834 11026:515 JLINK_IsHalted()  returns FALSE (0002ms, 39527ms total)
T2F94 11026:617 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39526ms total)
T2F94 11026:618 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39527ms total)
T2F94 11026:619 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39528ms total)
T2F94 11026:620 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 80 3F  returns 0x04 (0001ms, 39529ms total)
T2F94 11026:621 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39530ms total)
T2F94 11026:622 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 39532ms total)
T2F94 11026:624 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39533ms total)
T2834 11026:625 JLINK_IsHalted()  returns FALSE (0001ms, 39534ms total)
T2834 11026:727 JLINK_IsHalted()  returns FALSE (0001ms, 39534ms total)
T2834 11026:829 JLINK_IsHalted()  returns FALSE (0000ms, 39533ms total)
T2834 11026:930 JLINK_IsHalted()  returns FALSE (0001ms, 39534ms total)
T2834 11027:032 JLINK_IsHalted()  returns FALSE (0001ms, 39534ms total)
T2F94 11027:134 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39534ms total)
T2F94 11027:135 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39535ms total)
T2F94 11027:136 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39536ms total)
T2F94 11027:138 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 80 3F  returns 0x04 (0000ms, 39536ms total)
T2F94 11027:139 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0002ms, 39538ms total)
T2F94 11027:141 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39539ms total)
T2F94 11027:142 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39540ms total)
T2834 11027:143 JLINK_IsHalted()  returns FALSE (0001ms, 39541ms total)
T2834 11027:245 JLINK_IsHalted()  returns FALSE (0001ms, 39541ms total)
T2834 11027:347 JLINK_IsHalted()  returns FALSE (0000ms, 39540ms total)
T2834 11027:449 JLINK_IsHalted()  returns FALSE (0001ms, 39541ms total)
T2834 11027:551 JLINK_IsHalted()  returns FALSE (0001ms, 39541ms total)
T2F94 11027:653 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39541ms total)
T2F94 11027:654 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39542ms total)
T2F94 11027:655 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39543ms total)
T2F94 11027:656 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 C0 3F  returns 0x04 (0001ms, 39544ms total)
T2F94 11027:657 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39545ms total)
T2F94 11027:658 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39546ms total)
T2F94 11027:659 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39547ms total)
T2834 11027:660 JLINK_IsHalted()  returns FALSE (0001ms, 39548ms total)
T2834 11027:762 JLINK_IsHalted()  returns FALSE (0001ms, 39548ms total)
T2834 11027:864 JLINK_IsHalted()  returns FALSE (0001ms, 39548ms total)
T2834 11027:965 JLINK_IsHalted()  returns FALSE (0001ms, 39548ms total)
T2834 11028:067 JLINK_IsHalted()  returns FALSE (0000ms, 39547ms total)
T2F94 11028:168 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39548ms total)
T2F94 11028:169 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0002ms, 39550ms total)
T2F94 11028:171 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39551ms total)
T2F94 11028:172 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 3F  returns 0x04 (0000ms, 39551ms total)
T2F94 11028:172 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0002ms, 39553ms total)
T2F94 11028:174 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39554ms total)
T2F94 11028:175 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39555ms total)
T2834 11028:176 JLINK_IsHalted()  returns FALSE (0001ms, 39556ms total)
T2834 11028:278 JLINK_IsHalted()  returns FALSE (0001ms, 39556ms total)
T2834 11028:380 JLINK_IsHalted()  returns FALSE (0001ms, 39556ms total)
T2834 11028:482 JLINK_IsHalted()  returns FALSE (0001ms, 39556ms total)
T2834 11028:584 JLINK_IsHalted()  returns FALSE (0001ms, 39556ms total)
T2F94 11028:686 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0000ms, 39556ms total)
T2F94 11028:686 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0002ms, 39558ms total)
T2F94 11028:688 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 39558ms total)
T2F94 11028:688 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0001ms, 39559ms total)
T2F94 11028:690 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39560ms total)
T2F94 11028:691 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39561ms total)
T2F94 11028:692 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39562ms total)
T2834 11028:693 JLINK_IsHalted()  returns FALSE (0001ms, 39563ms total)
T2834 11028:795 JLINK_IsHalted()  returns FALSE (0001ms, 39563ms total)
T2834 11028:897 JLINK_IsHalted()  returns FALSE (0001ms, 39563ms total)
T2834 11028:999 JLINK_IsHalted()  returns FALSE (0001ms, 39563ms total)
T2834 11029:101 JLINK_IsHalted()  returns FALSE (0001ms, 39563ms total)
T2F94 11029:202 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39563ms total)
T2F94 11029:203 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39564ms total)
T2F94 11029:204 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39565ms total)
T2F94 11029:205 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 3F  returns 0x04 (0001ms, 39566ms total)
T2F94 11029:207 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39567ms total)
T2F94 11029:208 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39568ms total)
T2F94 11029:209 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39569ms total)
T2834 11029:210 JLINK_IsHalted()  returns FALSE (0000ms, 39569ms total)
T2834 11029:312 JLINK_IsHalted()  returns FALSE (0001ms, 39570ms total)
T2834 11029:413 JLINK_IsHalted()  returns FALSE (0001ms, 39570ms total)
T2834 11029:515 JLINK_IsHalted()  returns FALSE (0001ms, 39570ms total)
T2834 11029:617 JLINK_IsHalted()  returns FALSE (0001ms, 39570ms total)
T2F94 11029:719 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39570ms total)
T2F94 11029:720 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39571ms total)
T2F94 11029:721 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39572ms total)
T2F94 11029:722 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 3F  returns 0x04 (0001ms, 39573ms total)
T2F94 11029:724 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39574ms total)
T2F94 11029:725 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39575ms total)
T2F94 11029:726 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39576ms total)
T2834 11029:727 JLINK_IsHalted()  returns FALSE (0001ms, 39577ms total)
T2834 11029:829 JLINK_IsHalted()  returns FALSE (0000ms, 39576ms total)
T2834 11029:930 JLINK_IsHalted()  returns FALSE (0001ms, 39577ms total)
T2834 11030:032 JLINK_IsHalted()  returns FALSE (0001ms, 39577ms total)
T2834 11030:134 JLINK_IsHalted()  returns FALSE (0001ms, 39577ms total)
T2F94 11030:235 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39577ms total)
T2F94 11030:236 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39578ms total)
T2F94 11030:237 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39579ms total)
T2F94 11030:238 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 80 3F  returns 0x04 (0001ms, 39580ms total)
T2F94 11030:239 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39581ms total)
T2F94 11030:240 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39582ms total)
T2F94 11030:241 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39583ms total)
T2834 11030:242 JLINK_IsHalted()  returns FALSE (0001ms, 39584ms total)
T2834 11030:344 JLINK_IsHalted()  returns FALSE (0001ms, 39584ms total)
T2834 11030:446 JLINK_IsHalted()  returns FALSE (0001ms, 39584ms total)
T2834 11030:548 JLINK_IsHalted()  returns FALSE (0001ms, 39584ms total)
T2834 11030:650 JLINK_IsHalted()  returns FALSE (0001ms, 39584ms total)
T2F94 11030:752 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39584ms total)
T2F94 11030:753 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39585ms total)
T2F94 11030:754 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39586ms total)
T2F94 11030:755 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 80 3F  returns 0x04 (0001ms, 39587ms total)
T2F94 11030:757 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39588ms total)
T2F94 11030:758 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39589ms total)
T2F94 11030:759 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39590ms total)
T2834 11030:760 JLINK_IsHalted()  returns FALSE (0001ms, 39591ms total)
T2834 11030:862 JLINK_IsHalted()  returns FALSE (0001ms, 39591ms total)
T2834 11030:964 JLINK_IsHalted()  returns FALSE (0001ms, 39591ms total)
T2834 11031:066 JLINK_IsHalted()  returns FALSE (0001ms, 39591ms total)
T2834 11031:167 JLINK_IsHalted()  returns FALSE (0001ms, 39591ms total)
T2F94 11031:268 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39591ms total)
T2F94 11031:269 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39592ms total)
T2F94 11031:271 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 39593ms total)
T2F94 11031:271 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 C0 3F  returns 0x04 (0001ms, 39594ms total)
T2F94 11031:272 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39595ms total)
T2F94 11031:273 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 39597ms total)
T2F94 11031:275 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 39597ms total)
T2834 11031:275 JLINK_IsHalted()  returns FALSE (0001ms, 39598ms total)
T2834 11031:378 JLINK_IsHalted()  returns FALSE (0001ms, 39598ms total)
T2834 11031:480 JLINK_IsHalted()  returns FALSE (0001ms, 39598ms total)
T2834 11031:582 JLINK_IsHalted()  returns FALSE (0000ms, 39597ms total)
T2834 11031:683 JLINK_IsHalted()  returns FALSE (0001ms, 39598ms total)
T2F94 11031:785 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39598ms total)
T2F94 11031:786 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39599ms total)
T2F94 11031:787 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39600ms total)
T2F94 11031:788 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 C0 3F  returns 0x04 (0001ms, 39601ms total)
T2F94 11031:789 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0002ms, 39603ms total)
T2F94 11031:791 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39604ms total)
T2F94 11031:792 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39605ms total)
T2834 11031:793 JLINK_IsHalted()  returns FALSE (0001ms, 39606ms total)
T2834 11031:894 JLINK_IsHalted()  returns FALSE (0001ms, 39606ms total)
T2834 11031:996 JLINK_IsHalted()  returns FALSE (0001ms, 39606ms total)
T2834 11032:098 JLINK_IsHalted()  returns FALSE (0001ms, 39606ms total)
T2834 11032:200 JLINK_IsHalted()  returns FALSE (0000ms, 39606ms total)
T2F94 11032:301 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39607ms total)
T2F94 11032:302 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0000ms, 39607ms total)
T2F94 11032:302 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0002ms, 39609ms total)
T2F94 11032:304 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 40  returns 0x04 (0002ms, 39611ms total)
T2F94 11032:307 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0000ms, 39611ms total)
T2F94 11032:307 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39612ms total)
T2F94 11032:308 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39613ms total)
T2834 11032:309 JLINK_IsHalted()  returns FALSE (0001ms, 39614ms total)
T2834 11032:411 JLINK_IsHalted()  returns FALSE (0001ms, 39614ms total)
T2834 11032:513 JLINK_IsHalted()  returns FALSE (0001ms, 39614ms total)
T2834 11032:614 JLINK_IsHalted()  returns FALSE (0002ms, 39615ms total)
T2834 11032:716 JLINK_IsHalted()  returns FALSE (0001ms, 39614ms total)
T2F94 11032:817 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39614ms total)
T2F94 11032:818 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39615ms total)
T2F94 11032:819 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39616ms total)
T2F94 11032:820 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 40  returns 0x04 (0001ms, 39617ms total)
T2F94 11032:821 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39618ms total)
T2F94 11032:822 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39619ms total)
T2F94 11032:823 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39620ms total)
T2834 11032:824 JLINK_IsHalted()  returns FALSE (0001ms, 39621ms total)
T2834 11032:926 JLINK_IsHalted()  returns FALSE (0001ms, 39621ms total)
T2834 11033:028 JLINK_IsHalted()  returns FALSE (0001ms, 39621ms total)
T2834 11033:130 JLINK_IsHalted()  returns FALSE (0001ms, 39621ms total)
T2834 11033:233 JLINK_IsHalted()  returns FALSE (0000ms, 39620ms total)
T2F94 11033:334 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39621ms total)
T2F94 11033:335 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0002ms, 39623ms total)
T2F94 11033:337 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39624ms total)
T2F94 11033:338 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 20 40  returns 0x04 (0001ms, 39625ms total)
T2F94 11033:339 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39626ms total)
T2F94 11033:340 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39627ms total)
T2F94 11033:341 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39628ms total)
T2834 11033:342 JLINK_IsHalted()  returns FALSE (0001ms, 39629ms total)
T2834 11033:444 JLINK_IsHalted()  returns FALSE (0001ms, 39629ms total)
T2834 11033:546 JLINK_IsHalted()  returns FALSE (0001ms, 39629ms total)
T2834 11033:648 JLINK_IsHalted()  returns FALSE (0001ms, 39629ms total)
T2834 11033:750 JLINK_IsHalted()  returns FALSE (0001ms, 39629ms total)
T2F94 11033:852 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39629ms total)
T2F94 11033:853 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39630ms total)
T2F94 11033:854 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39631ms total)
T2F94 11033:855 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 20 40  returns 0x04 (0001ms, 39632ms total)
T2F94 11033:856 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39633ms total)
T2F94 11033:857 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39634ms total)
T2F94 11033:858 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39635ms total)
T2834 11033:859 JLINK_IsHalted()  returns FALSE (0002ms, 39637ms total)
T2834 11033:961 JLINK_IsHalted()  returns FALSE (0001ms, 39636ms total)
T2834 11034:063 JLINK_IsHalted()  returns FALSE (0001ms, 39636ms total)
T2834 11034:165 JLINK_IsHalted()  returns FALSE (0001ms, 39636ms total)
T2834 11034:266 JLINK_IsHalted()  returns FALSE (0001ms, 39636ms total)
T2F94 11034:368 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39636ms total)
T2F94 11034:369 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0000ms, 39636ms total)
T2F94 11034:370 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39637ms total)
T2F94 11034:371 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 40 40  returns 0x04 (0001ms, 39638ms total)
T2F94 11034:372 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39639ms total)
T2F94 11034:373 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39640ms total)
T2F94 11034:374 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39641ms total)
T2834 11034:375 JLINK_IsHalted()  returns FALSE (0001ms, 39642ms total)
T2834 11034:477 JLINK_IsHalted()  returns FALSE (0001ms, 39642ms total)
T2834 11034:579 JLINK_IsHalted()  returns FALSE (0001ms, 39642ms total)
T2834 11034:680 JLINK_IsHalted()  returns FALSE (0001ms, 39642ms total)
T2834 11034:782 JLINK_IsHalted()  returns FALSE (0001ms, 39642ms total)
T2F94 11034:884 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39642ms total)
T2F94 11034:885 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39643ms total)
T2F94 11034:886 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39644ms total)
T2F94 11034:887 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 40 40  returns 0x04 (0001ms, 39645ms total)
T2F94 11034:888 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39646ms total)
T2F94 11034:889 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39647ms total)
T2F94 11034:890 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39648ms total)
T2834 11034:892 JLINK_IsHalted()  returns FALSE (0000ms, 39648ms total)
T2834 11034:993 JLINK_IsHalted()  returns FALSE (0001ms, 39649ms total)
T2834 11035:094 JLINK_IsHalted()  returns FALSE (0001ms, 39649ms total)
T2834 11035:196 JLINK_IsHalted()  returns FALSE (0001ms, 39649ms total)
T2834 11035:298 JLINK_IsHalted()  returns FALSE (0000ms, 39648ms total)
T2F94 11035:399 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39649ms total)
T2F94 11035:400 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39650ms total)
T2F94 11035:401 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39651ms total)
T2F94 11035:402 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 60 40  returns 0x04 (0001ms, 39652ms total)
T2F94 11035:403 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39653ms total)
T2F94 11035:404 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39654ms total)
T2F94 11035:405 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39655ms total)
T2834 11035:406 JLINK_IsHalted()  returns FALSE (0001ms, 39656ms total)
T2834 11035:508 JLINK_IsHalted()  returns FALSE (0001ms, 39656ms total)
T2834 11035:610 JLINK_IsHalted()  returns FALSE (0001ms, 39656ms total)
T2834 11035:712 JLINK_IsHalted()  returns FALSE (0001ms, 39656ms total)
T2834 11035:814 JLINK_IsHalted()  returns FALSE (0001ms, 39656ms total)
T2F94 11035:916 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39656ms total)
T2F94 11035:917 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39657ms total)
T2F94 11035:918 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39658ms total)
T2F94 11035:919 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 60 40  returns 0x04 (0001ms, 39659ms total)
T2F94 11035:920 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39660ms total)
T2F94 11035:921 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39661ms total)
T2F94 11035:922 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39662ms total)
T2834 11035:923 JLINK_IsHalted()  returns FALSE (0001ms, 39663ms total)
T2834 11036:026 JLINK_IsHalted()  returns FALSE (0001ms, 39663ms total)
T2834 11036:128 JLINK_IsHalted()  returns FALSE (0001ms, 39663ms total)
T2834 11036:230 JLINK_IsHalted()  returns FALSE (0001ms, 39663ms total)
T2834 11036:331 JLINK_IsHalted()  returns FALSE (0001ms, 39663ms total)
T2F94 11036:434 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0000ms, 39662ms total)
T2F94 11036:434 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0003ms, 39665ms total)
T2F94 11036:437 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39666ms total)
T2F94 11036:438 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 80 40  returns 0x04 (0001ms, 39667ms total)
T2F94 11036:439 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39668ms total)
T2F94 11036:440 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39669ms total)
T2F94 11036:441 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39670ms total)
T2834 11036:442 JLINK_IsHalted()  returns FALSE (0001ms, 39671ms total)
T2834 11036:544 JLINK_IsHalted()  returns FALSE (0001ms, 39671ms total)
T2834 11036:645 JLINK_IsHalted()  returns FALSE (0001ms, 39671ms total)
T2834 11036:747 JLINK_IsHalted()  returns FALSE (0001ms, 39671ms total)
T2834 11036:850 JLINK_IsHalted()  returns FALSE (0000ms, 39670ms total)
T2F94 11036:951 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0002ms, 39672ms total)
T2F94 11036:953 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39673ms total)
T2F94 11036:954 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39674ms total)
T2F94 11036:955 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 80 40  returns 0x04 (0001ms, 39675ms total)
T2F94 11036:956 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0002ms, 39677ms total)
T2F94 11036:958 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39678ms total)
T2F94 11036:959 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39679ms total)
T2834 11036:960 JLINK_IsHalted()  returns FALSE (0001ms, 39680ms total)
T2834 11037:061 JLINK_IsHalted()  returns FALSE (0001ms, 39680ms total)
T2834 11037:163 JLINK_IsHalted()  returns FALSE (0001ms, 39680ms total)
T2834 11037:265 JLINK_IsHalted()  returns FALSE (0001ms, 39680ms total)
T2834 11037:366 JLINK_IsHalted()  returns FALSE (0001ms, 39680ms total)
T2F94 11037:468 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39680ms total)
T2F94 11037:469 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39681ms total)
T2F94 11037:470 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39682ms total)
T2F94 11037:471 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0001ms, 39683ms total)
T2F94 11037:473 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39684ms total)
T2F94 11037:474 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39685ms total)
T2F94 11037:475 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39686ms total)
T2834 11037:476 JLINK_IsHalted()  returns FALSE (0001ms, 39687ms total)
T2834 11037:578 JLINK_IsHalted()  returns FALSE (0001ms, 39687ms total)
T2834 11037:679 JLINK_IsHalted()  returns FALSE (0001ms, 39687ms total)
T2834 11037:781 JLINK_IsHalted()  returns FALSE (0001ms, 39687ms total)
T2834 11037:882 JLINK_IsHalted()  returns FALSE (0001ms, 39687ms total)
T2F94 11037:984 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0002ms, 39688ms total)
T2F94 11037:986 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0002ms, 39690ms total)
T2F94 11037:988 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39691ms total)
T2F94 11037:989 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0001ms, 39692ms total)
T2F94 11037:991 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39693ms total)
T2F94 11037:992 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 39693ms total)
T2F94 11037:992 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 39695ms total)
T2834 11037:994 JLINK_IsHalted()  returns FALSE (0000ms, 39695ms total)
T2834 11038:096 JLINK_IsHalted()  returns FALSE (0001ms, 39696ms total)
T2834 11038:198 JLINK_IsHalted()  returns FALSE (0001ms, 39696ms total)
T2834 11038:300 JLINK_IsHalted()  returns FALSE (0001ms, 39696ms total)
T2834 11038:401 JLINK_IsHalted()  returns FALSE (0001ms, 39696ms total)
T2F94 11038:504 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39696ms total)
T2F94 11038:505 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39697ms total)
T2F94 11038:506 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39698ms total)
T2F94 11038:507 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0001ms, 39699ms total)
T2F94 11038:508 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39700ms total)
T2F94 11038:509 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39701ms total)
T2F94 11038:510 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39702ms total)
T2834 11038:511 JLINK_IsHalted()  returns FALSE (0001ms, 39703ms total)
T2834 11038:612 JLINK_IsHalted()  returns FALSE (0001ms, 39703ms total)
T2834 11038:714 JLINK_IsHalted()  returns FALSE (0001ms, 39703ms total)
T2834 11038:816 JLINK_IsHalted()  returns FALSE (0000ms, 39702ms total)
T2834 11038:917 JLINK_IsHalted()  returns FALSE (0001ms, 39703ms total)
T2F94 11039:019 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39703ms total)
T2F94 11039:020 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39704ms total)
T2F94 11039:021 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39705ms total)
T2F94 11039:022 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0001ms, 39706ms total)
T2F94 11039:023 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39707ms total)
T2F94 11039:024 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39708ms total)
T2F94 11039:025 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39709ms total)
T2834 11039:026 JLINK_IsHalted()  returns FALSE (0001ms, 39710ms total)
T2834 11039:128 JLINK_IsHalted()  returns FALSE (0001ms, 39710ms total)
T2834 11039:230 JLINK_IsHalted()  returns FALSE (0001ms, 39710ms total)
T2834 11039:332 JLINK_IsHalted()  returns FALSE (0001ms, 39710ms total)
T2834 11039:433 JLINK_IsHalted()  returns FALSE (0001ms, 39710ms total)
T2F94 11039:535 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39710ms total)
T2F94 11039:536 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39711ms total)
T2F94 11039:537 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39712ms total)
T2F94 11039:538 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0001ms, 39713ms total)
T2F94 11039:539 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39714ms total)
T2F94 11039:540 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39715ms total)
T2F94 11039:541 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39716ms total)
T2834 11039:542 JLINK_IsHalted()  returns FALSE (0001ms, 39717ms total)
T2834 11039:644 JLINK_IsHalted()  returns FALSE (0001ms, 39717ms total)
T2834 11039:746 JLINK_IsHalted()  returns FALSE (0000ms, 39716ms total)
T2834 11039:847 JLINK_IsHalted()  returns FALSE (0001ms, 39717ms total)
T2834 11039:949 JLINK_IsHalted()  returns FALSE (0000ms, 39716ms total)
T2F94 11040:050 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39717ms total)
T2F94 11040:051 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39718ms total)
T2F94 11040:052 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39719ms total)
T2F94 11040:053 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0001ms, 39720ms total)
T2F94 11040:054 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0001ms, 39721ms total)
T2F94 11040:055 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39722ms total)
T2F94 11040:056 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0001ms, 39723ms total)
T2834 11040:057 JLINK_IsHalted()  returns FALSE (0001ms, 39724ms total)
T2834 11040:159 JLINK_IsHalted()  returns ERROR (0304ms, 40027ms total)
T2834 11040:463 JLINK_Halt()  returns 0x00 (0050ms, 39773ms total)
T2834 11040:514 JLINK_IsHalted()  returns TRUE (0000ms, 39773ms total)
T2834 11040:514 JLINK_IsHalted()  returns TRUE (0000ms, 39773ms total)
T2834 11040:514 JLINK_IsHalted()  returns TRUE (0000ms, 39773ms total)
T2834 11040:514 JLINK_ReadReg(R15 (PC))  returns 0x08007CFA (0000ms, 39773ms total)
T2834 11040:514 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 39773ms total)
T2834 11040:514 JLINK_ClrBPEx(BPHandle = 0x00000005)  returns 0x00 (0000ms, 39773ms total)
T2834 11040:514 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 1 (0001ms, 39774ms total)
T2834 11040:515 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 39775ms total)
T2834 11040:516 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 39776ms total)
T2834 11040:517 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 39776ms total)
T2834 11040:517 JLINK_ReadReg(R1)  returns 0x00000000 (0000ms, 39776ms total)
T2834 11040:517 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 39776ms total)
T2834 11040:517 JLINK_ReadReg(R3)  returns 0x00000004 (0001ms, 39777ms total)
T2834 11040:518 JLINK_ReadReg(R4)  returns 0x200000C4 (0000ms, 39777ms total)
T2834 11040:518 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 39777ms total)
T2834 11040:518 JLINK_ReadReg(R6)  returns 0x05FA0004 (0000ms, 39777ms total)
T2834 11040:518 JLINK_ReadReg(R7)  returns 0xE000ED00 (0000ms, 39777ms total)
T2834 11040:518 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 39777ms total)
T2834 11040:518 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 39777ms total)
T2834 11040:518 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 39777ms total)
T2834 11040:518 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 39777ms total)
T2834 11040:518 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 39777ms total)
T2834 11040:518 JLINK_ReadReg(R13 (SP))  returns 0x20001A40 (0000ms, 39777ms total)
T2834 11040:518 JLINK_ReadReg(R14)  returns 0x08007CEB (0000ms, 39777ms total)
T2834 11040:518 JLINK_ReadReg(R15 (PC))  returns 0x08007CFA (0000ms, 39777ms total)
T2834 11040:518 JLINK_ReadReg(XPSR)  returns 0x41000000 (0000ms, 39777ms total)
T2834 11040:518 JLINK_ReadReg(MSP)  returns 0x20001A40 (0000ms, 39777ms total)
T2834 11040:518 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 39777ms total)
T2834 11040:518 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 39777ms total)
T2F94 11040:518 JLINK_ReadMemEx(0x20001A54, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001A40) -- Updating C cache (64 bytes @ 0x20001A40) -- Read from C cache (4 bytes @ 0x20001A54) - Data: 15 A8 00 08  returns 0x04 (0002ms, 39779ms total)
T2F94 11040:520 JLINK_ReadMemEx(0x20001A44, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A44) - Data: C4 00 00 20  returns 0x04 (0000ms, 39779ms total)
T2F94 11040:520 JLINK_ReadMemEx(0x20001A48, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A48) - Data: 00 00 00 00  returns 0x04 (0000ms, 39779ms total)
T2F94 11040:520 JLINK_ReadMemEx(0x20001A4C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A4C) - Data: 00 04 00 50  returns 0x04 (0000ms, 39779ms total)
T2F94 11040:520 JLINK_ReadMemEx(0x20001A50, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A50) - Data: 00 10 00 00  returns 0x04 (0000ms, 39779ms total)
T2F94 11040:520 JLINK_ReadMemEx(0x20001A54, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20001A54) - Data: 15 A8 00 08  returns 0x04 (0000ms, 39779ms total)
T2F94 11040:521 JLINK_ReadMemEx(0x2000004B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000004B) - Data: 00  returns 0x01 (0001ms, 39780ms total)
T2F94 11040:522 JLINK_ReadMemEx(0x20000066, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000066) - Data: 00 00  returns 0x02 (0001ms, 39781ms total)
T2F94 11040:523 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 39782ms total)
T2F94 11040:524 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0000ms, 39782ms total)
T2F94 11040:524 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0000ms, 39782ms total)
T2F94 11040:524 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0002ms, 39784ms total)
T2F94 11040:526 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 39784ms total)
T2F94 11040:526 JLINK_ReadMemEx(0x08007CFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08007CC0) -- Updating C cache (64 bytes @ 0x08007CC0) -- Read from C cache (2 bytes @ 0x08007CFA) - Data: FE F7  returns 0x02 (0002ms, 39786ms total)
T2F94 11040:528 JLINK_ReadMemEx(0x08007CFC, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08007D00) -- Updating C cache (64 bytes @ 0x08007D00) -- Read from C cache (60 bytes @ 0x08007CFC) - Data: 41 F8 45 49 45 4C 89 8F 00 29 14 D0 44 49 0A 78 ...  returns 0x3C (0002ms, 39788ms total)
T2F94 11040:530 JLINK_ReadMemEx(0x08007CFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08007CFC) - Data: 41 F8  returns 0x02 (0000ms, 39788ms total)
T2F94 14220:549 JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000100) - Data: 00 00 00 00  returns 0x04 (0001ms, 39789ms total)
T2F94 15569:763 JLINK_ReadMemEx(0x20000088, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- CPU_ReadMem(4 bytes @ 0x20000088) - Data: AA AA AA AA  returns 0xFFFFFFFF (0006ms, 39795ms total)
T2F94 15569:769 JLINK_ReadMemEx(0x20000088, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- CPU_ReadMem(4 bytes @ 0x20000088) - Data: AA AA AA AA  returns 0xFFFFFFFF (0004ms, 39799ms total)
T2F94 15569:773 JLINK_ReadMemEx(0x20000088, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- CPU_ReadMem(4 bytes @ 0x20000088) - Data: AA AA AA AA  returns 0xFFFFFFFF (0005ms, 39804ms total)
T2F94 15569:778 JLINK_ReadMemEx(0x20000088, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- CPU_ReadMem(4 bytes @ 0x20000088) - Data: AA AA AA AA  returns 0xFFFFFFFF (0005ms, 39809ms total)
T2F94 15569:783 JLINK_ReadMemEx(0x20000088, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- CPU_ReadMem(2 bytes @ 0x20000088) - Data: AA AA  returns 0xFFFFFFFF (0004ms, 39813ms total)
T2F94 15569:788 JLINK_ReadMemEx(0x20000088, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- CPU_ReadMem(1 bytes @ 0x20000088) - Data: AA  returns 0xFFFFFFFF (0005ms, 39818ms total)
T2F94 15573:090 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0000ms, 39818ms total)
T2F94 15573:332 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0000ms, 39818ms total)
T2F94 15578:090 JLINK_ReadMemEx(0x20000052, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000052) - Data: 00  returns 0x01 (0000ms, 39818ms total)
T2F94 15592:678 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0000ms, 39818ms total)
T2F94 15593:322 JLINK_ReadMemEx(0x200000CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000CC) - Data: 00 00  returns 0x02 (0000ms, 39818ms total)
T2F94 15595:456 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0000ms, 39818ms total)
T2F94 15596:155 JLINK_ReadMemEx(0x20000048, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000048) - Data: 00  returns 0x01 (0000ms, 39818ms total)
T2F94 15607:315 JLINK_ReadMemEx(0x200000CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000CC) - Data: 00 00  returns 0x02 (0000ms, 39818ms total)
T2F94 15614:624 JLINK_ReadMemEx(0x200000CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000CC) - Data: 00 00  returns 0x02 (0000ms, 39818ms total)
T2F94 15624:737 JLINK_ReadMemEx(0x20000064, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000064) - Data: BF 00  returns 0x02 (0000ms, 39818ms total)
T2F94 15625:116 JLINK_ReadMemEx(0x20000064, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000064) - Data: BF 00  returns 0x02 (0000ms, 39818ms total)
T2F94 15636:798 JLINK_ReadMemEx(0x200000F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000F8) - Data: 00 00  returns 0x02 (0000ms, 39818ms total)
T2F94 15646:628 JLINK_ReadMemEx(0x200011B4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B4) - Data: AA  returns 0xFFFFFFFF (0005ms, 39823ms total)
T2F94 15646:633 JLINK_ReadMemEx(0x200011B4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B4) - Data: AA  returns 0xFFFFFFFF (0004ms, 39827ms total)
T2F94 15646:637 JLINK_ReadMemEx(0x200011B4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B4) - Data: AA  returns 0xFFFFFFFF (0005ms, 39832ms total)
T2F94 15646:642 JLINK_ReadMemEx(0x200011B4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B4) - Data: AA  returns 0xFFFFFFFF (0004ms, 39836ms total)
T2F94 15646:646 JLINK_ReadMemEx(0x200011B4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B4) - Data: AA  returns 0xFFFFFFFF (0005ms, 39841ms total)
T2F94 15646:651 JLINK_ReadMemEx(0x200011B4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B4) - Data: AA  returns 0xFFFFFFFF (0004ms, 39845ms total)
T2F94 15646:655 JLINK_ReadMemEx(0x200011B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B5) - Data: AA  returns 0xFFFFFFFF (0005ms, 39850ms total)
T2F94 15646:660 JLINK_ReadMemEx(0x200011B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B5) - Data: AA  returns 0xFFFFFFFF (0005ms, 39855ms total)
T2F94 15646:665 JLINK_ReadMemEx(0x200011B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B5) - Data: AA  returns 0xFFFFFFFF (0004ms, 39859ms total)
T2F94 15646:669 JLINK_ReadMemEx(0x200011B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B5) - Data: AA  returns 0xFFFFFFFF (0005ms, 39864ms total)
T2F94 15646:674 JLINK_ReadMemEx(0x200011B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B5) - Data: AA  returns 0xFFFFFFFF (0005ms, 39869ms total)
T2F94 15646:679 JLINK_ReadMemEx(0x200011B5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B5) - Data: AA  returns 0xFFFFFFFF (0004ms, 39873ms total)
T2F94 15646:683 JLINK_ReadMemEx(0x200011B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B6) - Data: AA  returns 0xFFFFFFFF (0006ms, 39879ms total)
T2F94 15646:689 JLINK_ReadMemEx(0x200011B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B6) - Data: AA  returns 0xFFFFFFFF (0004ms, 39883ms total)
T2F94 15646:693 JLINK_ReadMemEx(0x200011B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B6) - Data: AA  returns 0xFFFFFFFF (0005ms, 39888ms total)
T2F94 15646:698 JLINK_ReadMemEx(0x200011B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B6) - Data: AA  returns 0xFFFFFFFF (0005ms, 39893ms total)
T2F94 15646:703 JLINK_ReadMemEx(0x200011B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B6) - Data: AA  returns 0xFFFFFFFF (0005ms, 39898ms total)
T2F94 15646:708 JLINK_ReadMemEx(0x200011B6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B6) - Data: AA  returns 0xFFFFFFFF (0005ms, 39903ms total)
T2F94 15646:713 JLINK_ReadMemEx(0x200011B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B7) - Data: AA  returns 0xFFFFFFFF (0005ms, 39908ms total)
T2F94 15646:718 JLINK_ReadMemEx(0x200011B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B7) - Data: AA  returns 0xFFFFFFFF (0005ms, 39913ms total)
T2F94 15646:723 JLINK_ReadMemEx(0x200011B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B7) - Data: AA  returns 0xFFFFFFFF (0004ms, 39917ms total)
T2F94 15646:728 JLINK_ReadMemEx(0x200011B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B7) - Data: AA  returns 0xFFFFFFFF (0004ms, 39921ms total)
T2F94 15646:732 JLINK_ReadMemEx(0x200011B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B7) - Data: AA  returns 0xFFFFFFFF (0004ms, 39925ms total)
T2F94 15646:736 JLINK_ReadMemEx(0x200011B7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B7) - Data: AA  returns 0xFFFFFFFF (0005ms, 39930ms total)
T2F94 15646:741 JLINK_ReadMemEx(0x200011B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B8) - Data: AA  returns 0xFFFFFFFF (0004ms, 39934ms total)
T2F94 15646:745 JLINK_ReadMemEx(0x200011B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B8) - Data: AA  returns 0xFFFFFFFF (0004ms, 39938ms total)
T2F94 15646:749 JLINK_ReadMemEx(0x200011B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B8) - Data: AA  returns 0xFFFFFFFF (0005ms, 39943ms total)
T2F94 15646:754 JLINK_ReadMemEx(0x200011B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B8) - Data: AA  returns 0xFFFFFFFF (0004ms, 39947ms total)
T2F94 15646:758 JLINK_ReadMemEx(0x200011B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B8) - Data: AA  returns 0xFFFFFFFF (0005ms, 39952ms total)
T2F94 15646:763 JLINK_ReadMemEx(0x200011B8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B8) - Data: AA  returns 0xFFFFFFFF (0004ms, 39956ms total)
T2F94 15646:767 JLINK_ReadMemEx(0x200011B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B9) - Data: AA  returns 0xFFFFFFFF (0005ms, 39961ms total)
T2F94 15646:772 JLINK_ReadMemEx(0x200011B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B9) - Data: AA  returns 0xFFFFFFFF (0004ms, 39965ms total)
T2F94 15646:776 JLINK_ReadMemEx(0x200011B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B9) - Data: AA  returns 0xFFFFFFFF (0005ms, 39970ms total)
T2F94 15646:781 JLINK_ReadMemEx(0x200011B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B9) - Data: AA  returns 0xFFFFFFFF (0004ms, 39974ms total)
T2F94 15646:785 JLINK_ReadMemEx(0x200011B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B9) - Data: AA  returns 0xFFFFFFFF (0005ms, 39979ms total)
T2F94 15646:790 JLINK_ReadMemEx(0x200011B9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011B9) - Data: AA  returns 0xFFFFFFFF (0004ms, 39983ms total)
T2F94 15646:794 JLINK_ReadMemEx(0x200011BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BA) - Data: AA  returns 0xFFFFFFFF (0005ms, 39988ms total)
T2F94 15646:799 JLINK_ReadMemEx(0x200011BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BA) - Data: AA  returns 0xFFFFFFFF (0004ms, 39992ms total)
T2F94 15646:803 JLINK_ReadMemEx(0x200011BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BA) - Data: AA  returns 0xFFFFFFFF (0005ms, 39997ms total)
T2F94 15646:808 JLINK_ReadMemEx(0x200011BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BA) - Data: AA  returns 0xFFFFFFFF (0004ms, 40001ms total)
T2F94 15646:812 JLINK_ReadMemEx(0x200011BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BA) - Data: AA  returns 0xFFFFFFFF (0004ms, 40005ms total)
T2F94 15646:816 JLINK_ReadMemEx(0x200011BA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BA) - Data: AA  returns 0xFFFFFFFF (0005ms, 40010ms total)
T2F94 15646:821 JLINK_ReadMemEx(0x200011BB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BB) - Data: AA  returns 0xFFFFFFFF (0004ms, 40014ms total)
T2F94 15646:825 JLINK_ReadMemEx(0x200011BB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BB) - Data: AA  returns 0xFFFFFFFF (0005ms, 40019ms total)
T2F94 15646:830 JLINK_ReadMemEx(0x200011BB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BB) - Data: AA  returns 0xFFFFFFFF (0005ms, 40024ms total)
T2F94 15646:835 JLINK_ReadMemEx(0x200011BB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BB) - Data: AA  returns 0xFFFFFFFF (0005ms, 40029ms total)
T2F94 15646:840 JLINK_ReadMemEx(0x200011BB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BB) - Data: AA  returns 0xFFFFFFFF (0004ms, 40033ms total)
T2F94 15646:845 JLINK_ReadMemEx(0x200011BB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BB) - Data: AA  returns 0xFFFFFFFF (0005ms, 40039ms total)
T2F94 15646:850 JLINK_ReadMemEx(0x200011BC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BC) - Data: AA  returns 0xFFFFFFFF (0004ms, 40043ms total)
T2F94 15646:854 JLINK_ReadMemEx(0x200011BC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BC) - Data: AA  returns 0xFFFFFFFF (0005ms, 40048ms total)
T2F94 15646:859 JLINK_ReadMemEx(0x200011BC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BC) - Data: AA  returns 0xFFFFFFFF (0005ms, 40053ms total)
T2F94 15646:864 JLINK_ReadMemEx(0x200011BC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BC) - Data: AA  returns 0xFFFFFFFF (0005ms, 40058ms total)
T2F94 15646:869 JLINK_ReadMemEx(0x200011BC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BC) - Data: AA  returns 0xFFFFFFFF (0004ms, 40062ms total)
T2F94 15646:873 JLINK_ReadMemEx(0x200011BC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BC) - Data: AA  returns 0xFFFFFFFF (0005ms, 40067ms total)
T2F94 15646:878 JLINK_ReadMemEx(0x200011BD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BD) - Data: AA  returns 0xFFFFFFFF (0005ms, 40072ms total)
T2F94 15646:883 JLINK_ReadMemEx(0x200011BD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BD) - Data: AA  returns 0xFFFFFFFF (0005ms, 40077ms total)
T2F94 15646:888 JLINK_ReadMemEx(0x200011BD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BD) - Data: AA  returns 0xFFFFFFFF (0005ms, 40082ms total)
T2F94 15646:893 JLINK_ReadMemEx(0x200011BD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BD) - Data: AA  returns 0xFFFFFFFF (0005ms, 40087ms total)
T2F94 15646:898 JLINK_ReadMemEx(0x200011BD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BD) - Data: AA  returns 0xFFFFFFFF (0004ms, 40091ms total)
T2F94 15646:902 JLINK_ReadMemEx(0x200011BD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BD) - Data: AA  returns 0xFFFFFFFF (0005ms, 40096ms total)
T2F94 15646:907 JLINK_ReadMemEx(0x200011BE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BE) - Data: AA  returns 0xFFFFFFFF (0005ms, 40101ms total)
T2F94 15646:912 JLINK_ReadMemEx(0x200011BE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BE) - Data: AA  returns 0xFFFFFFFF (0005ms, 40106ms total)
T2F94 15646:917 JLINK_ReadMemEx(0x200011BE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BE) - Data: AA  returns 0xFFFFFFFF (0005ms, 40111ms total)
T2F94 15646:922 JLINK_ReadMemEx(0x200011BE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BE) - Data: AA  returns 0xFFFFFFFF (0005ms, 40116ms total)
T2F94 15646:927 JLINK_ReadMemEx(0x200011BE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BE) - Data: AA  returns 0xFFFFFFFF (0005ms, 40121ms total)
T2F94 15646:932 JLINK_ReadMemEx(0x200011BE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BE) - Data: AA  returns 0xFFFFFFFF (0005ms, 40126ms total)
T2F94 15646:937 JLINK_ReadMemEx(0x200011BF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BF) - Data: AA  returns 0xFFFFFFFF (0004ms, 40130ms total)
T2F94 15646:941 JLINK_ReadMemEx(0x200011BF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BF) - Data: AA  returns 0xFFFFFFFF (0005ms, 40135ms total)
T2F94 15646:946 JLINK_ReadMemEx(0x200011BF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BF) - Data: AA  returns 0xFFFFFFFF (0005ms, 40140ms total)
T2F94 15646:951 JLINK_ReadMemEx(0x200011BF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BF) - Data: AA  returns 0xFFFFFFFF (0005ms, 40145ms total)
T2F94 15646:956 JLINK_ReadMemEx(0x200011BF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BF) - Data: AA  returns 0xFFFFFFFF (0004ms, 40149ms total)
T2F94 15646:960 JLINK_ReadMemEx(0x200011BF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001180) -- CPU_ReadMem(1 bytes @ 0x200011BF) - Data: AA  returns 0xFFFFFFFF (0005ms, 40154ms total)
T2F94 15646:965 JLINK_ReadMemEx(0x200011C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C0) - Data: AA  returns 0xFFFFFFFF (0005ms, 40159ms total)
T2F94 15646:970 JLINK_ReadMemEx(0x200011C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C0) - Data: AA  returns 0xFFFFFFFF (0005ms, 40164ms total)
T2F94 15646:975 JLINK_ReadMemEx(0x200011C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C0) - Data: AA  returns 0xFFFFFFFF (0005ms, 40169ms total)
T2F94 15646:980 JLINK_ReadMemEx(0x200011C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C0) - Data: AA  returns 0xFFFFFFFF (0005ms, 40174ms total)
T2F94 15646:985 JLINK_ReadMemEx(0x200011C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C0) - Data: AA  returns 0xFFFFFFFF (0005ms, 40179ms total)
T2F94 15646:990 JLINK_ReadMemEx(0x200011C0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C0) - Data: AA  returns 0xFFFFFFFF (0005ms, 40184ms total)
T2F94 15646:995 JLINK_ReadMemEx(0x200011C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C1) - Data: AA  returns 0xFFFFFFFF (0005ms, 40189ms total)
T2F94 15647:000 JLINK_ReadMemEx(0x200011C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C1) - Data: AA  returns 0xFFFFFFFF (0005ms, 40194ms total)
T2F94 15647:005 JLINK_ReadMemEx(0x200011C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C1) - Data: AA  returns 0xFFFFFFFF (0005ms, 40199ms total)
T2F94 15647:010 JLINK_ReadMemEx(0x200011C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C1) - Data: AA  returns 0xFFFFFFFF (0005ms, 40204ms total)
T2F94 15647:015 JLINK_ReadMemEx(0x200011C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C1) - Data: AA  returns 0xFFFFFFFF (0005ms, 40209ms total)
T2F94 15647:020 JLINK_ReadMemEx(0x200011C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C1) - Data: AA  returns 0xFFFFFFFF (0004ms, 40213ms total)
T2F94 15647:024 JLINK_ReadMemEx(0x200011C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C2) - Data: AA  returns 0xFFFFFFFF (0005ms, 40218ms total)
T2F94 15647:029 JLINK_ReadMemEx(0x200011C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C2) - Data: AA  returns 0xFFFFFFFF (0005ms, 40223ms total)
T2F94 15647:034 JLINK_ReadMemEx(0x200011C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C2) - Data: AA  returns 0xFFFFFFFF (0005ms, 40228ms total)
T2F94 15647:039 JLINK_ReadMemEx(0x200011C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C2) - Data: AA  returns 0xFFFFFFFF (0005ms, 40233ms total)
T2F94 15647:044 JLINK_ReadMemEx(0x200011C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C2) - Data: AA  returns 0xFFFFFFFF (0005ms, 40238ms total)
T2F94 15647:049 JLINK_ReadMemEx(0x200011C2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C2) - Data: AA  returns 0xFFFFFFFF (0004ms, 40242ms total)
T2F94 15647:054 JLINK_ReadMemEx(0x200011C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C3) - Data: AA  returns 0xFFFFFFFF (0004ms, 40247ms total)
T2F94 15647:058 JLINK_ReadMemEx(0x200011C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C3) - Data: AA  returns 0xFFFFFFFF (0004ms, 40251ms total)
T2F94 15647:062 JLINK_ReadMemEx(0x200011C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C3) - Data: AA  returns 0xFFFFFFFF (0005ms, 40256ms total)
T2F94 15647:067 JLINK_ReadMemEx(0x200011C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C3) - Data: AA  returns 0xFFFFFFFF (0004ms, 40260ms total)
T2F94 15647:071 JLINK_ReadMemEx(0x200011C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C3) - Data: AA  returns 0xFFFFFFFF (0005ms, 40265ms total)
T2F94 15647:076 JLINK_ReadMemEx(0x200011C3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C3) - Data: AA  returns 0xFFFFFFFF (0004ms, 40269ms total)
T2F94 15647:080 JLINK_ReadMemEx(0x200011C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C4) - Data: AA  returns 0xFFFFFFFF (0005ms, 40274ms total)
T2F94 15647:085 JLINK_ReadMemEx(0x200011C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C4) - Data: AA  returns 0xFFFFFFFF (0004ms, 40278ms total)
T2F94 15647:089 JLINK_ReadMemEx(0x200011C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C4) - Data: AA  returns 0xFFFFFFFF (0004ms, 40282ms total)
T2F94 15647:093 JLINK_ReadMemEx(0x200011C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C4) - Data: AA  returns 0xFFFFFFFF (0005ms, 40287ms total)
T2F94 15647:099 JLINK_ReadMemEx(0x200011C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C4) - Data: AA  returns 0xFFFFFFFF (0004ms, 40291ms total)
T2F94 15647:103 JLINK_ReadMemEx(0x200011C4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C4) - Data: AA  returns 0xFFFFFFFF (0005ms, 40296ms total)
T2F94 15647:108 JLINK_ReadMemEx(0x200011C5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C5) - Data: AA  returns 0xFFFFFFFF (0004ms, 40300ms total)
T2F94 15647:112 JLINK_ReadMemEx(0x200011C5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C5) - Data: AA  returns 0xFFFFFFFF (0005ms, 40305ms total)
T2F94 15647:117 JLINK_ReadMemEx(0x200011C5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C5) - Data: AA  returns 0xFFFFFFFF (0004ms, 40309ms total)
T2F94 15647:121 JLINK_ReadMemEx(0x200011C5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C5) - Data: AA  returns 0xFFFFFFFF (0004ms, 40313ms total)
T2F94 15647:126 JLINK_ReadMemEx(0x200011C5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C5) - Data: AA  returns 0xFFFFFFFF (0004ms, 40317ms total)
T2F94 15647:130 JLINK_ReadMemEx(0x200011C5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C5) - Data: AA  returns 0xFFFFFFFF (0004ms, 40321ms total)
T2F94 15647:134 JLINK_ReadMemEx(0x200011C6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C6) - Data: AA  returns 0xFFFFFFFF (0005ms, 40326ms total)
T2F94 15647:139 JLINK_ReadMemEx(0x200011C6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C6) - Data: AA  returns 0xFFFFFFFF (0005ms, 40331ms total)
T2F94 15647:144 JLINK_ReadMemEx(0x200011C6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C6) - Data: AA  returns 0xFFFFFFFF (0005ms, 40336ms total)
T2F94 15647:149 JLINK_ReadMemEx(0x200011C6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C6) - Data: AA  returns 0xFFFFFFFF (0005ms, 40341ms total)
T2F94 15647:154 JLINK_ReadMemEx(0x200011C6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C6) - Data: AA  returns 0xFFFFFFFF (0004ms, 40345ms total)
T2F94 15647:158 JLINK_ReadMemEx(0x200011C6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C6) - Data: AA  returns 0xFFFFFFFF (0005ms, 40350ms total)
T2F94 15647:163 JLINK_ReadMemEx(0x200011C7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C7) - Data: AA  returns 0xFFFFFFFF (0004ms, 40354ms total)
T2F94 15647:167 JLINK_ReadMemEx(0x200011C7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C7) - Data: AA  returns 0xFFFFFFFF (0005ms, 40359ms total)
T2F94 15647:172 JLINK_ReadMemEx(0x200011C7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C7) - Data: AA  returns 0xFFFFFFFF (0004ms, 40363ms total)
T2F94 15647:176 JLINK_ReadMemEx(0x200011C7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C7) - Data: AA  returns 0xFFFFFFFF (0004ms, 40367ms total)
T2F94 15647:180 JLINK_ReadMemEx(0x200011C7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C7) - Data: AA  returns 0xFFFFFFFF (0005ms, 40372ms total)
T2F94 15647:185 JLINK_ReadMemEx(0x200011C7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C7) - Data: AA  returns 0xFFFFFFFF (0004ms, 40376ms total)
T2F94 15647:189 JLINK_ReadMemEx(0x200011C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C8) - Data: AA  returns 0xFFFFFFFF (0005ms, 40381ms total)
T2F94 15647:194 JLINK_ReadMemEx(0x200011C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C8) - Data: AA  returns 0xFFFFFFFF (0004ms, 40385ms total)
T2F94 15647:198 JLINK_ReadMemEx(0x200011C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C8) - Data: AA  returns 0xFFFFFFFF (0004ms, 40389ms total)
T2F94 15647:202 JLINK_ReadMemEx(0x200011C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C8) - Data: AA  returns 0xFFFFFFFF (0005ms, 40394ms total)
T2F94 15647:207 JLINK_ReadMemEx(0x200011C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C8) - Data: AA  returns 0xFFFFFFFF (0005ms, 40399ms total)
T2F94 15647:212 JLINK_ReadMemEx(0x200011C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C8) - Data: AA  returns 0xFFFFFFFF (0004ms, 40403ms total)
T2F94 15647:216 JLINK_ReadMemEx(0x200011C9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C9) - Data: AA  returns 0xFFFFFFFF (0004ms, 40407ms total)
T2F94 15647:221 JLINK_ReadMemEx(0x200011C9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C9) - Data: AA  returns 0xFFFFFFFF (0004ms, 40412ms total)
T2F94 15647:225 JLINK_ReadMemEx(0x200011C9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C9) - Data: AA  returns 0xFFFFFFFF (0004ms, 40416ms total)
T2F94 15647:229 JLINK_ReadMemEx(0x200011C9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C9) - Data: AA  returns 0xFFFFFFFF (0005ms, 40421ms total)
T2F94 15647:234 JLINK_ReadMemEx(0x200011C9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C9) - Data: AA  returns 0xFFFFFFFF (0004ms, 40425ms total)
T2F94 15647:238 JLINK_ReadMemEx(0x200011C9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011C9) - Data: AA  returns 0xFFFFFFFF (0005ms, 40430ms total)
T2F94 15647:243 JLINK_ReadMemEx(0x200011CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CA) - Data: AA  returns 0xFFFFFFFF (0004ms, 40434ms total)
T2F94 15647:247 JLINK_ReadMemEx(0x200011CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CA) - Data: AA  returns 0xFFFFFFFF (0004ms, 40438ms total)
T2F94 15647:251 JLINK_ReadMemEx(0x200011CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CA) - Data: AA  returns 0xFFFFFFFF (0005ms, 40443ms total)
T2F94 15647:256 JLINK_ReadMemEx(0x200011CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CA) - Data: AA  returns 0xFFFFFFFF (0004ms, 40447ms total)
T2F94 15647:260 JLINK_ReadMemEx(0x200011CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CA) - Data: AA  returns 0xFFFFFFFF (0005ms, 40452ms total)
T2F94 15647:265 JLINK_ReadMemEx(0x200011CA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CA) - Data: AA  returns 0xFFFFFFFF (0004ms, 40456ms total)
T2F94 15647:269 JLINK_ReadMemEx(0x200011CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CB) - Data: AA  returns 0xFFFFFFFF (0005ms, 40461ms total)
T2F94 15647:274 JLINK_ReadMemEx(0x200011CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CB) - Data: AA  returns 0xFFFFFFFF (0004ms, 40465ms total)
T2F94 15647:278 JLINK_ReadMemEx(0x200011CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CB) - Data: AA  returns 0xFFFFFFFF (0004ms, 40469ms total)
T2F94 15647:282 JLINK_ReadMemEx(0x200011CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CB) - Data: AA  returns 0xFFFFFFFF (0005ms, 40474ms total)
T2F94 15647:287 JLINK_ReadMemEx(0x200011CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CB) - Data: AA  returns 0xFFFFFFFF (0005ms, 40479ms total)
T2F94 15647:292 JLINK_ReadMemEx(0x200011CB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CB) - Data: AA  returns 0xFFFFFFFF (0004ms, 40483ms total)
T2F94 15647:296 JLINK_ReadMemEx(0x200011CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CC) - Data: AA  returns 0xFFFFFFFF (0004ms, 40487ms total)
T2F94 15647:300 JLINK_ReadMemEx(0x200011CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CC) - Data: AA  returns 0xFFFFFFFF (0005ms, 40492ms total)
T2F94 15647:305 JLINK_ReadMemEx(0x200011CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CC) - Data: AA  returns 0xFFFFFFFF (0004ms, 40496ms total)
T2F94 15647:309 JLINK_ReadMemEx(0x200011CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CC) - Data: AA  returns 0xFFFFFFFF (0005ms, 40501ms total)
T2F94 15647:314 JLINK_ReadMemEx(0x200011CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CC) - Data: AA  returns 0xFFFFFFFF (0004ms, 40505ms total)
T2F94 15647:318 JLINK_ReadMemEx(0x200011CC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CC) - Data: AA  returns 0xFFFFFFFF (0004ms, 40509ms total)
T2F94 15647:322 JLINK_ReadMemEx(0x200011CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CD) - Data: AA  returns 0xFFFFFFFF (0005ms, 40514ms total)
T2F94 15647:327 JLINK_ReadMemEx(0x200011CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CD) - Data: AA  returns 0xFFFFFFFF (0004ms, 40518ms total)
T2F94 15647:331 JLINK_ReadMemEx(0x200011CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CD) - Data: AA  returns 0xFFFFFFFF (0005ms, 40523ms total)
T2F94 15647:336 JLINK_ReadMemEx(0x200011CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CD) - Data: AA  returns 0xFFFFFFFF (0004ms, 40527ms total)
T2F94 15647:340 JLINK_ReadMemEx(0x200011CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CD) - Data: AA  returns 0xFFFFFFFF (0004ms, 40531ms total)
T2F94 15647:344 JLINK_ReadMemEx(0x200011CD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CD) - Data: AA  returns 0xFFFFFFFF (0005ms, 40536ms total)
T2F94 15647:349 JLINK_ReadMemEx(0x200011CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CE) - Data: AA  returns 0xFFFFFFFF (0004ms, 40540ms total)
T2F94 15647:353 JLINK_ReadMemEx(0x200011CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CE) - Data: AA  returns 0xFFFFFFFF (0005ms, 40545ms total)
T2F94 15647:358 JLINK_ReadMemEx(0x200011CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CE) - Data: AA  returns 0xFFFFFFFF (0004ms, 40549ms total)
T2F94 15647:362 JLINK_ReadMemEx(0x200011CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CE) - Data: AA  returns 0xFFFFFFFF (0004ms, 40553ms total)
T2F94 15647:367 JLINK_ReadMemEx(0x200011CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CE) - Data: AA  returns 0xFFFFFFFF (0004ms, 40557ms total)
T2F94 15647:371 JLINK_ReadMemEx(0x200011CE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CE) - Data: AA  returns 0xFFFFFFFF (0004ms, 40561ms total)
T2F94 15647:375 JLINK_ReadMemEx(0x200011CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CF) - Data: AA  returns 0xFFFFFFFF (0005ms, 40566ms total)
T2F94 15647:380 JLINK_ReadMemEx(0x200011CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CF) - Data: AA  returns 0xFFFFFFFF (0005ms, 40571ms total)
T2F94 15647:385 JLINK_ReadMemEx(0x200011CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CF) - Data: AA  returns 0xFFFFFFFF (0005ms, 40576ms total)
T2F94 15647:390 JLINK_ReadMemEx(0x200011CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CF) - Data: AA  returns 0xFFFFFFFF (0005ms, 40581ms total)
T2F94 15647:395 JLINK_ReadMemEx(0x200011CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CF) - Data: AA  returns 0xFFFFFFFF (0005ms, 40586ms total)
T2F94 15647:400 JLINK_ReadMemEx(0x200011CF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011CF) - Data: AA  returns 0xFFFFFFFF (0005ms, 40591ms total)
T2F94 15647:405 JLINK_ReadMemEx(0x200011D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D0) - Data: AA  returns 0xFFFFFFFF (0004ms, 40595ms total)
T2F94 15647:409 JLINK_ReadMemEx(0x200011D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D0) - Data: AA  returns 0xFFFFFFFF (0005ms, 40600ms total)
T2F94 15647:414 JLINK_ReadMemEx(0x200011D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D0) - Data: AA  returns 0xFFFFFFFF (0005ms, 40605ms total)
T2F94 15647:419 JLINK_ReadMemEx(0x200011D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D0) - Data: AA  returns 0xFFFFFFFF (0005ms, 40610ms total)
T2F94 15647:424 JLINK_ReadMemEx(0x200011D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D0) - Data: AA  returns 0xFFFFFFFF (0005ms, 40615ms total)
T2F94 15647:429 JLINK_ReadMemEx(0x200011D0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D0) - Data: AA  returns 0xFFFFFFFF (0005ms, 40620ms total)
T2F94 15647:434 JLINK_ReadMemEx(0x200011D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D1) - Data: AA  returns 0xFFFFFFFF (0004ms, 40624ms total)
T2F94 15647:438 JLINK_ReadMemEx(0x200011D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D1) - Data: AA  returns 0xFFFFFFFF (0005ms, 40629ms total)
T2F94 15647:443 JLINK_ReadMemEx(0x200011D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D1) - Data: AA  returns 0xFFFFFFFF (0004ms, 40633ms total)
T2F94 15647:447 JLINK_ReadMemEx(0x200011D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D1) - Data: AA  returns 0xFFFFFFFF (0005ms, 40638ms total)
T2F94 15647:452 JLINK_ReadMemEx(0x200011D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D1) - Data: AA  returns 0xFFFFFFFF (0005ms, 40643ms total)
T2F94 15647:457 JLINK_ReadMemEx(0x200011D1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D1) - Data: AA  returns 0xFFFFFFFF (0005ms, 40648ms total)
T2F94 15647:462 JLINK_ReadMemEx(0x200011D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D2) - Data: AA  returns 0xFFFFFFFF (0005ms, 40653ms total)
T2F94 15647:467 JLINK_ReadMemEx(0x200011D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D2) - Data: AA  returns 0xFFFFFFFF (0005ms, 40658ms total)
T2F94 15647:472 JLINK_ReadMemEx(0x200011D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D2) - Data: AA  returns 0xFFFFFFFF (0005ms, 40663ms total)
T2F94 15647:477 JLINK_ReadMemEx(0x200011D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D2) - Data: AA  returns 0xFFFFFFFF (0005ms, 40668ms total)
T2F94 15647:482 JLINK_ReadMemEx(0x200011D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D2) - Data: AA  returns 0xFFFFFFFF (0004ms, 40672ms total)
T2F94 15647:486 JLINK_ReadMemEx(0x200011D2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D2) - Data: AA  returns 0xFFFFFFFF (0005ms, 40677ms total)
T2F94 15647:491 JLINK_ReadMemEx(0x200011D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D3) - Data: AA  returns 0xFFFFFFFF (0004ms, 40681ms total)
T2F94 15647:495 JLINK_ReadMemEx(0x200011D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D3) - Data: AA  returns 0xFFFFFFFF (0004ms, 40685ms total)
T2F94 15647:499 JLINK_ReadMemEx(0x200011D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D3) - Data: AA  returns 0xFFFFFFFF (0005ms, 40690ms total)
T2F94 15647:504 JLINK_ReadMemEx(0x200011D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D3) - Data: AA  returns 0xFFFFFFFF (0004ms, 40694ms total)
T2F94 15647:508 JLINK_ReadMemEx(0x200011D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D3) - Data: AA  returns 0xFFFFFFFF (0005ms, 40699ms total)
T2F94 15647:513 JLINK_ReadMemEx(0x200011D3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D3) - Data: AA  returns 0xFFFFFFFF (0004ms, 40703ms total)
T2F94 15647:517 JLINK_ReadMemEx(0x200011D4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D4) - Data: AA  returns 0xFFFFFFFF (0004ms, 40707ms total)
T2F94 15647:521 JLINK_ReadMemEx(0x200011D4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D4) - Data: AA  returns 0xFFFFFFFF (0005ms, 40712ms total)
T2F94 15647:526 JLINK_ReadMemEx(0x200011D4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D4) - Data: AA  returns 0xFFFFFFFF (0004ms, 40716ms total)
T2F94 15647:530 JLINK_ReadMemEx(0x200011D4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D4) - Data: AA  returns 0xFFFFFFFF (0004ms, 40720ms total)
T2F94 15647:534 JLINK_ReadMemEx(0x200011D4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D4) - Data: AA  returns 0xFFFFFFFF (0005ms, 40725ms total)
T2F94 15647:539 JLINK_ReadMemEx(0x200011D4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D4) - Data: AA  returns 0xFFFFFFFF (0004ms, 40729ms total)
T2F94 15647:543 JLINK_ReadMemEx(0x200011D5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D5) - Data: AA  returns 0xFFFFFFFF (0005ms, 40734ms total)
T2F94 15647:548 JLINK_ReadMemEx(0x200011D5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D5) - Data: AA  returns 0xFFFFFFFF (0004ms, 40738ms total)
T2F94 15647:552 JLINK_ReadMemEx(0x200011D5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D5) - Data: AA  returns 0xFFFFFFFF (0005ms, 40743ms total)
T2F94 15647:557 JLINK_ReadMemEx(0x200011D5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D5) - Data: AA  returns 0xFFFFFFFF (0004ms, 40747ms total)
T2F94 15647:561 JLINK_ReadMemEx(0x200011D5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D5) - Data: AA  returns 0xFFFFFFFF (0005ms, 40752ms total)
T2F94 15647:566 JLINK_ReadMemEx(0x200011D5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D5) - Data: AA  returns 0xFFFFFFFF (0004ms, 40756ms total)
T2F94 15647:570 JLINK_ReadMemEx(0x200011D6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D6) - Data: AA  returns 0xFFFFFFFF (0004ms, 40760ms total)
T2F94 15647:574 JLINK_ReadMemEx(0x200011D6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D6) - Data: AA  returns 0xFFFFFFFF (0005ms, 40765ms total)
T2F94 15647:579 JLINK_ReadMemEx(0x200011D6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D6) - Data: AA  returns 0xFFFFFFFF (0004ms, 40769ms total)
T2F94 15647:583 JLINK_ReadMemEx(0x200011D6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D6) - Data: AA  returns 0xFFFFFFFF (0005ms, 40774ms total)
T2F94 15647:588 JLINK_ReadMemEx(0x200011D6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D6) - Data: AA  returns 0xFFFFFFFF (0004ms, 40778ms total)
T2F94 15647:592 JLINK_ReadMemEx(0x200011D6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D6) - Data: AA  returns 0xFFFFFFFF (0004ms, 40782ms total)
T2F94 15647:596 JLINK_ReadMemEx(0x200011D7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D7) - Data: AA  returns 0xFFFFFFFF (0005ms, 40787ms total)
T2F94 15647:601 JLINK_ReadMemEx(0x200011D7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D7) - Data: AA  returns 0xFFFFFFFF (0004ms, 40791ms total)
T2F94 15647:605 JLINK_ReadMemEx(0x200011D7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D7) - Data: AA  returns 0xFFFFFFFF (0005ms, 40796ms total)
T2F94 15647:610 JLINK_ReadMemEx(0x200011D7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D7) - Data: AA  returns 0xFFFFFFFF (0004ms, 40800ms total)
T2F94 15647:614 JLINK_ReadMemEx(0x200011D7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D7) - Data: AA  returns 0xFFFFFFFF (0005ms, 40805ms total)
T2F94 15647:619 JLINK_ReadMemEx(0x200011D7, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D7) - Data: AA  returns 0xFFFFFFFF (0004ms, 40809ms total)
T2F94 15647:623 JLINK_ReadMemEx(0x200011D8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D8) - Data: AA  returns 0xFFFFFFFF (0004ms, 40813ms total)
T2F94 15647:627 JLINK_ReadMemEx(0x200011D8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D8) - Data: AA  returns 0xFFFFFFFF (0005ms, 40818ms total)
T2F94 15647:632 JLINK_ReadMemEx(0x200011D8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D8) - Data: AA  returns 0xFFFFFFFF (0004ms, 40822ms total)
T2F94 15647:636 JLINK_ReadMemEx(0x200011D8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D8) - Data: AA  returns 0xFFFFFFFF (0004ms, 40826ms total)
T2F94 15647:641 JLINK_ReadMemEx(0x200011D8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D8) - Data: AA  returns 0xFFFFFFFF (0004ms, 40830ms total)
T2F94 15647:645 JLINK_ReadMemEx(0x200011D8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D8) - Data: AA  returns 0xFFFFFFFF (0004ms, 40834ms total)
T2F94 15647:649 JLINK_ReadMemEx(0x200011D9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D9) - Data: AA  returns 0xFFFFFFFF (0005ms, 40839ms total)
T2F94 15647:654 JLINK_ReadMemEx(0x200011D9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D9) - Data: AA  returns 0xFFFFFFFF (0004ms, 40843ms total)
T2F94 15647:658 JLINK_ReadMemEx(0x200011D9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D9) - Data: AA  returns 0xFFFFFFFF (0005ms, 40848ms total)
T2F94 15647:663 JLINK_ReadMemEx(0x200011D9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D9) - Data: AA  returns 0xFFFFFFFF (0004ms, 40852ms total)
T2F94 15647:667 JLINK_ReadMemEx(0x200011D9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D9) - Data: AA  returns 0xFFFFFFFF (0005ms, 40857ms total)
T2F94 15647:672 JLINK_ReadMemEx(0x200011D9, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011D9) - Data: AA  returns 0xFFFFFFFF (0004ms, 40861ms total)
T2F94 15647:676 JLINK_ReadMemEx(0x200011DA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DA) - Data: AA  returns 0xFFFFFFFF (0005ms, 40866ms total)
T2F94 15647:681 JLINK_ReadMemEx(0x200011DA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DA) - Data: AA  returns 0xFFFFFFFF (0004ms, 40870ms total)
T2F94 15647:685 JLINK_ReadMemEx(0x200011DA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DA) - Data: AA  returns 0xFFFFFFFF (0005ms, 40875ms total)
T2F94 15647:690 JLINK_ReadMemEx(0x200011DA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DA) - Data: AA  returns 0xFFFFFFFF (0004ms, 40879ms total)
T2F94 15647:694 JLINK_ReadMemEx(0x200011DA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DA) - Data: AA  returns 0xFFFFFFFF (0005ms, 40884ms total)
T2F94 15647:699 JLINK_ReadMemEx(0x200011DA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DA) - Data: AA  returns 0xFFFFFFFF (0004ms, 40888ms total)
T2F94 15647:703 JLINK_ReadMemEx(0x200011DB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DB) - Data: AA  returns 0xFFFFFFFF (0003ms, 40891ms total)
T2F94 15647:706 JLINK_ReadMemEx(0x200011DB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DB) - Data: AA  returns 0xFFFFFFFF (0006ms, 40897ms total)
T2F94 15647:712 JLINK_ReadMemEx(0x200011DB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DB) - Data: AA  returns 0xFFFFFFFF (0004ms, 40901ms total)
T2F94 15647:716 JLINK_ReadMemEx(0x200011DB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DB) - Data: AA  returns 0xFFFFFFFF (0004ms, 40905ms total)
T2F94 15647:720 JLINK_ReadMemEx(0x200011DB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DB) - Data: AA  returns 0xFFFFFFFF (0005ms, 40910ms total)
T2F94 15647:725 JLINK_ReadMemEx(0x200011DB, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DB) - Data: AA  returns 0xFFFFFFFF (0004ms, 40914ms total)
T2F94 15647:729 JLINK_ReadMemEx(0x200011DC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DC) - Data: AA  returns 0xFFFFFFFF (0005ms, 40919ms total)
T2F94 15647:734 JLINK_ReadMemEx(0x200011DC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DC) - Data: AA  returns 0xFFFFFFFF (0004ms, 40923ms total)
T2F94 15647:738 JLINK_ReadMemEx(0x200011DC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DC) - Data: AA  returns 0xFFFFFFFF (0005ms, 40928ms total)
T2F94 15647:743 JLINK_ReadMemEx(0x200011DC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DC) - Data: AA  returns 0xFFFFFFFF (0004ms, 40932ms total)
T2F94 15647:747 JLINK_ReadMemEx(0x200011DC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DC) - Data: AA  returns 0xFFFFFFFF (0005ms, 40937ms total)
T2F94 15647:752 JLINK_ReadMemEx(0x200011DC, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DC) - Data: AA  returns 0xFFFFFFFF (0004ms, 40941ms total)
T2F94 15647:756 JLINK_ReadMemEx(0x200011DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DD) - Data: AA  returns 0xFFFFFFFF (0005ms, 40946ms total)
T2F94 15647:761 JLINK_ReadMemEx(0x200011DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DD) - Data: AA  returns 0xFFFFFFFF (0004ms, 40950ms total)
T2F94 15647:765 JLINK_ReadMemEx(0x200011DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DD) - Data: AA  returns 0xFFFFFFFF (0005ms, 40955ms total)
T2F94 15647:770 JLINK_ReadMemEx(0x200011DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DD) - Data: AA  returns 0xFFFFFFFF (0004ms, 40959ms total)
T2F94 15647:774 JLINK_ReadMemEx(0x200011DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DD) - Data: AA  returns 0xFFFFFFFF (0005ms, 40964ms total)
T2F94 15647:779 JLINK_ReadMemEx(0x200011DD, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DD) - Data: AA  returns 0xFFFFFFFF (0004ms, 40968ms total)
T2F94 15647:783 JLINK_ReadMemEx(0x200011DE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DE) - Data: AA  returns 0xFFFFFFFF (0004ms, 40972ms total)
T2F94 15647:787 JLINK_ReadMemEx(0x200011DE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DE) - Data: AA  returns 0xFFFFFFFF (0005ms, 40977ms total)
T2F94 15647:792 JLINK_ReadMemEx(0x200011DE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DE) - Data: AA  returns 0xFFFFFFFF (0005ms, 40982ms total)
T2F94 15647:797 JLINK_ReadMemEx(0x200011DE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DE) - Data: AA  returns 0xFFFFFFFF (0004ms, 40986ms total)
T2F94 15647:801 JLINK_ReadMemEx(0x200011DE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DE) - Data: AA  returns 0xFFFFFFFF (0005ms, 40991ms total)
T2F94 15647:806 JLINK_ReadMemEx(0x200011DE, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DE) - Data: AA  returns 0xFFFFFFFF (0004ms, 40995ms total)
T2F94 15647:810 JLINK_ReadMemEx(0x200011DF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DF) - Data: AA  returns 0xFFFFFFFF (0005ms, 41000ms total)
T2F94 15647:815 JLINK_ReadMemEx(0x200011DF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DF) - Data: AA  returns 0xFFFFFFFF (0004ms, 41004ms total)
T2F94 15647:819 JLINK_ReadMemEx(0x200011DF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DF) - Data: AA  returns 0xFFFFFFFF (0004ms, 41008ms total)
T2F94 15647:823 JLINK_ReadMemEx(0x200011DF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DF) - Data: AA  returns 0xFFFFFFFF (0005ms, 41013ms total)
T2F94 15647:828 JLINK_ReadMemEx(0x200011DF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DF) - Data: AA  returns 0xFFFFFFFF (0005ms, 41018ms total)
T2F94 15647:833 JLINK_ReadMemEx(0x200011DF, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011DF) - Data: AA  returns 0xFFFFFFFF (0004ms, 41022ms total)
T2F94 15647:837 JLINK_ReadMemEx(0x200011E0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E0) - Data: AA  returns 0xFFFFFFFF (0005ms, 41027ms total)
T2F94 15647:842 JLINK_ReadMemEx(0x200011E0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E0) - Data: AA  returns 0xFFFFFFFF (0004ms, 41031ms total)
T2F94 15647:846 JLINK_ReadMemEx(0x200011E0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E0) - Data: AA  returns 0xFFFFFFFF (0005ms, 41036ms total)
T2F94 15647:851 JLINK_ReadMemEx(0x200011E0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E0) - Data: AA  returns 0xFFFFFFFF (0004ms, 41040ms total)
T2F94 15647:855 JLINK_ReadMemEx(0x200011E0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E0) - Data: AA  returns 0xFFFFFFFF (0004ms, 41044ms total)
T2F94 15647:859 JLINK_ReadMemEx(0x200011E0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E0) - Data: AA  returns 0xFFFFFFFF (0005ms, 41049ms total)
T2F94 15647:864 JLINK_ReadMemEx(0x200011E1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E1) - Data: AA  returns 0xFFFFFFFF (0004ms, 41053ms total)
T2F94 15647:869 JLINK_ReadMemEx(0x200011E1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E1) - Data: AA  returns 0xFFFFFFFF (0004ms, 41058ms total)
T2F94 15647:873 JLINK_ReadMemEx(0x200011E1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E1) - Data: AA  returns 0xFFFFFFFF (0004ms, 41062ms total)
T2F94 15647:877 JLINK_ReadMemEx(0x200011E1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E1) - Data: AA  returns 0xFFFFFFFF (0005ms, 41067ms total)
T2F94 15647:882 JLINK_ReadMemEx(0x200011E1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E1) - Data: AA  returns 0xFFFFFFFF (0004ms, 41071ms total)
T2F94 15647:886 JLINK_ReadMemEx(0x200011E1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E1) - Data: AA  returns 0xFFFFFFFF (0005ms, 41076ms total)
T2F94 15647:891 JLINK_ReadMemEx(0x200011E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E2) - Data: AA  returns 0xFFFFFFFF (0004ms, 41080ms total)
T2F94 15647:895 JLINK_ReadMemEx(0x200011E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E2) - Data: AA  returns 0xFFFFFFFF (0005ms, 41085ms total)
T2F94 15647:900 JLINK_ReadMemEx(0x200011E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E2) - Data: AA  returns 0xFFFFFFFF (0004ms, 41089ms total)
T2F94 15647:904 JLINK_ReadMemEx(0x200011E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E2) - Data: AA  returns 0xFFFFFFFF (0004ms, 41093ms total)
T2F94 15647:909 JLINK_ReadMemEx(0x200011E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E2) - Data: AA  returns 0xFFFFFFFF (0004ms, 41097ms total)
T2F94 15647:913 JLINK_ReadMemEx(0x200011E2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E2) - Data: AA  returns 0xFFFFFFFF (0005ms, 41102ms total)
T2F94 15647:918 JLINK_ReadMemEx(0x200011E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E3) - Data: AA  returns 0xFFFFFFFF (0004ms, 41106ms total)
T2F94 15647:922 JLINK_ReadMemEx(0x200011E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E3) - Data: AA  returns 0xFFFFFFFF (0005ms, 41111ms total)
T2F94 15647:927 JLINK_ReadMemEx(0x200011E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E3) - Data: AA  returns 0xFFFFFFFF (0005ms, 41116ms total)
T2F94 15647:932 JLINK_ReadMemEx(0x200011E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E3) - Data: AA  returns 0xFFFFFFFF (0005ms, 41121ms total)
T2F94 15647:937 JLINK_ReadMemEx(0x200011E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E3) - Data: AA  returns 0xFFFFFFFF (0004ms, 41125ms total)
T2F94 15647:941 JLINK_ReadMemEx(0x200011E3, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E3) - Data: AA  returns 0xFFFFFFFF (0005ms, 41130ms total)
T2F94 15647:946 JLINK_ReadMemEx(0x200011E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E4) - Data: AA  returns 0xFFFFFFFF (0005ms, 41135ms total)
T2F94 15647:951 JLINK_ReadMemEx(0x200011E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E4) - Data: AA  returns 0xFFFFFFFF (0005ms, 41140ms total)
T2F94 15647:956 JLINK_ReadMemEx(0x200011E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E4) - Data: AA  returns 0xFFFFFFFF (0005ms, 41145ms total)
T2F94 15647:961 JLINK_ReadMemEx(0x200011E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E4) - Data: AA  returns 0xFFFFFFFF (0005ms, 41150ms total)
T2F94 15647:966 JLINK_ReadMemEx(0x200011E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E4) - Data: AA  returns 0xFFFFFFFF (0005ms, 41155ms total)
T2F94 15647:971 JLINK_ReadMemEx(0x200011E4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E4) - Data: AA  returns 0xFFFFFFFF (0004ms, 41159ms total)
T2F94 15647:975 JLINK_ReadMemEx(0x200011E5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E5) - Data: AA  returns 0xFFFFFFFF (0005ms, 41164ms total)
T2F94 15647:980 JLINK_ReadMemEx(0x200011E5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E5) - Data: AA  returns 0xFFFFFFFF (0004ms, 41168ms total)
T2F94 15647:984 JLINK_ReadMemEx(0x200011E5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E5) - Data: AA  returns 0xFFFFFFFF (0005ms, 41173ms total)
T2F94 15647:989 JLINK_ReadMemEx(0x200011E5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E5) - Data: AA  returns 0xFFFFFFFF (0005ms, 41178ms total)
T2F94 15647:994 JLINK_ReadMemEx(0x200011E5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E5) - Data: AA  returns 0xFFFFFFFF (0005ms, 41183ms total)
T2F94 15647:999 JLINK_ReadMemEx(0x200011E5, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200011C0) -- CPU_ReadMem(1 bytes @ 0x200011E5) - Data: AA  returns 0xFFFFFFFF (0005ms, 41188ms total)
T2F94 15651:769 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: AA AA AA AA  returns 0xFFFFFFFF (0004ms, 41192ms total)
T2F94 15651:773 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: AA AA AA AA  returns 0xFFFFFFFF (0005ms, 41197ms total)
T2F94 15651:778 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: AA AA AA AA  returns 0xFFFFFFFF (0005ms, 41202ms total)
T2F94 15651:783 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: AA AA AA AA  returns 0xFFFFFFFF (0005ms, 41207ms total)
T2F94 15651:788 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: AA AA  returns 0xFFFFFFFF (0004ms, 41211ms total)
T2F94 15651:792 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0005ms, 41216ms total)
T2F94 15653:608 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: AA AA AA AA  returns 0xFFFFFFFF (0005ms, 41221ms total)
T2F94 15653:613 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: AA AA AA AA  returns 0xFFFFFFFF (0005ms, 41226ms total)
T2F94 15653:618 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: AA AA AA AA  returns 0xFFFFFFFF (0005ms, 41231ms total)
T2F94 15653:623 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: AA AA AA AA  returns 0xFFFFFFFF (0005ms, 41236ms total)
T2F94 15653:628 JLINK_ReadMemEx(0x2000008C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- CPU_ReadMem(2 bytes @ 0x2000008C) - Data: AA AA  returns 0xFFFFFFFF (0005ms, 41241ms total)
T2F94 15653:633 JLINK_ReadMemEx(0x2000008C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- CPU_ReadMem(1 bytes @ 0x2000008C) - Data: AA  returns 0xFFFFFFFF (0005ms, 41246ms total)
T2F94 15774:011 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0000ms, 41246ms total)
T2F94 15774:522 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 41247ms total)
T2F94 15784:667 JLINK_ReadMemEx(0x200000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000DA) - Data: 00 00  returns 0x02 (0000ms, 41247ms total)
T2F94 16070:924 JLINK_Close() -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)
  ***** Error: Could not start CPU core. (ErrorCode: -1) >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> (0031ms, 41278ms total)
T2F94 16070:924  (0031ms, 41278ms total)
T2F94 16070:924 Closed (0031ms, 41278ms total)