zhyinch
2021-01-20 1b83e716601b4c7ba981a00be6ecf24a9d549d52
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
T2410 6144:307 SEGGER J-Link V6.46 Log File (0004ms, 218250ms total)
T2410 6144:307 DLL Compiled: May 23 2019 17:49:56 (0004ms, 218250ms total)
T2410 6144:307 Logging started @ 2021-01-19 16:12 (0004ms, 218250ms total)
T2410 6144:311 JLINK_SetWarnOutHandler(...) (0000ms, 218250ms total)
T2410 6144:311 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 (0035ms, 218285ms total)
T2410 6144:311 WEBSRV Webserver running on local port 19080 (0035ms, 218285ms total)
T2410 6144:311   returns O.K. (0035ms, 218285ms total)
T2410 6144:346 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 218285ms total)
T2410 6144:347 JLINK_TIF_GetAvailable(...) (0001ms, 218286ms total)
T2410 6144:348 JLINK_SetErrorOutHandler(...) (0000ms, 218286ms total)
T2410 6144:348 JLINK_ExecCommand("ProjectFile = "E:\GIT\XRange_Tag\MDK-ARM\JLinkSettings.ini"", ...).   returns 0x00 (0003ms, 218289ms total)
T2410 6144:351 JLINK_ExecCommand("Device = STM32L051C8Tx", ...). Device "STM32L051C8" selected.  returns 0x00 (0003ms, 218292ms total)
T2410 6144:354 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 218292ms total)
T2410 6144:354 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 218292ms total)
T2410 6144:354 JLINK_GetDLLVersion()  returns 64600 (0000ms, 218292ms total)
T2410 6144:354 JLINK_GetFirmwareString(...) (0000ms, 218292ms total)
T2410 6144:354 JLINK_GetDLLVersion()  returns 64600 (0000ms, 218292ms total)
T2410 6144:354 JLINK_GetCompileDateTime() (0000ms, 218292ms total)
T2410 6144:354 JLINK_GetFirmwareString(...) (0000ms, 218292ms total)
T2410 6144:354 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 218292ms total)
T2410 6144:354 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0002ms, 218294ms total)
T2410 6144:356 JLINK_SetSpeed(5000) (0000ms, 218294ms total)
T2410 6144:356 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> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF>
 >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF>
 >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF>
 >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF>
 >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF>
 >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF>
 >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF>
 >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>
STM32 (connect): Can not attach to CPU. Trying connect under reset.RESET (pin 15) high, but should be low. Please check target hardware. >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> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>
 >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>
 >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>
 >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>
 >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>
 >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>
 >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 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> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF>
 >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF>
 >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF>
 >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF>
 >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF>
 >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF>
 >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF>
 >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF>
 >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF>
 >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF>
 >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF>
 >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF>
 >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF>
  ***** Error: 
STM32: Connecting to CPU via connect under reset failed.RESET (pin 15) high, but should be low. Please check target hardware. >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF>
 >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D 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> >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> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF>
 >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>
 >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x10B TIF>Found SW-DP with ID 0x0BC11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>
Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x04770031)Iterating through AP map to find AHB-AP to use >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>
AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xF0000000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC601. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p1, Little endian. -- Max. mem block: 0x00002C18 -- 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_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 (1469ms, 219763ms total)
T2410 6145:825 JLINK_GetDLLVersion()  returns 64600 (0000ms, 219763ms total)
T2410 6145:825 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 219763ms total)
T2410 6145:825 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 219763ms total)
T2410 6145:825 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 219763ms total)
T2410 6145:825 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 219763ms total)
T2410 6145:825 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, 219764ms total)
T2410 6145:826 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 219764ms total)
T2410 6145:826 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 219764ms total)
T2410 6145:826 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, 219765ms total)
T2410 6145:827 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 219765ms total)
T2410 6145:827 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 219765ms total)
T2410 6145:827 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 219765ms total)
T2410 6145:827 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 219765ms total)
T2410 6145:827 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 219765ms total)
T2410 6145:827 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 219765ms total)
T2410 6145:827 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 01 C6 0C 41  returns 1 (0002ms, 219767ms total)
T2410 6145:829 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 219767ms total)
T2410 6145:829 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 219767ms total)
T2410 6145:829 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) (0075ms, 219842ms total)
T2410 6145:904 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 219842ms total)
T2410 6145:904 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 219842ms total)
T2410 6145:904 JLINK_Halt()  returns 0x00 (0000ms, 219842ms total)
T2410 6145:904 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 01  returns 1 (0001ms, 219843ms total)
T2410 6145:905 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0 (0001ms, 219844ms total)
T2410 6145:906 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0 (0001ms, 219845ms total)
T2410 6145:907 JLINK_GetHWStatus(...)  returns 0x00 (0000ms, 219845ms total)
T2410 6145:907 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 219845ms total)
T2410 6145:907 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 219845ms total)
T2410 6145:907 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 219845ms total)
T2410 6145:907 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 219845ms total)
T2410 6145:907 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 1 (0002ms, 219847ms total)
T2410 6145:909 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 219847ms total)
T2410 6145:909 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 219847ms total)
T2410 6145:988 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 219847ms total)
T2410 6145:988 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, 219924ms total)
T2410 6146:065 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 219924ms total)
T2410 6146:065 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 219924ms total)
T2410 6146:065 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, 219926ms total)
T2410 6146:067 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 219926ms total)
T2410 6146:067 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 219926ms total)
T2410 6146:067 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 219926ms total)
T2410 6146:067 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, 219926ms total)
T2410 6146:067 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 219926ms total)
T2410 6146:067 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, 219926ms total)
T2410 6146:067 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 219926ms total)
T2410 6146:067 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 219926ms total)
T2410 6146:067 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 219926ms total)
T2410 6146:067 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, 219926ms total)
T2410 6146:067 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 219926ms total)
T2410 6147:725 JLINK_ReadReg(R0)  returns 0xFFFFFFFF (0002ms, 219928ms total)
T2410 6147:727 JLINK_ReadReg(R1)  returns 0xFFFFFFFF (0000ms, 219928ms total)
T2410 6147:727 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 219928ms total)
T2410 6147:727 JLINK_ReadReg(R3)  returns 0xFFFFFFFF (0000ms, 219928ms total)
T2410 6147:727 JLINK_ReadReg(R4)  returns 0xFFFFFFFF (0000ms, 219928ms total)
T2410 6147:727 JLINK_ReadReg(R5)  returns 0xFFFFFFFF (0000ms, 219928ms total)
T2410 6147:727 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0000ms, 219928ms total)
T2410 6147:727 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 219928ms total)
T2410 6147:727 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 219928ms total)
T2410 6147:727 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 219928ms total)
T2410 6147:727 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 219928ms total)
T2410 6147:727 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 219928ms total)
T2410 6147:727 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 219928ms total)
T2410 6147:727 JLINK_ReadReg(R13 (SP))  returns 0x20001130 (0000ms, 219928ms total)
T2410 6147:727 JLINK_ReadReg(R14)  returns 0xFFFFFFFF (0000ms, 219928ms total)
T2410 6147:727 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 219928ms total)
T2410 6147:727 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 219928ms total)
T2410 6147:727 JLINK_ReadReg(MSP)  returns 0x20001130 (0000ms, 219928ms total)
T2410 6147:727 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 219928ms total)
T2410 6147:727 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 219928ms total)
T2410 6147:727 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0002ms, 219930ms total)
T2410 6147:729 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0000ms, 219930ms total)
T2410 6147:729 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0000ms, 219930ms total)
T2410 6147:731 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 219930ms total)
T2410 6147:731 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 219930ms total)
T2410 6147:731 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 219930ms total)
T2410 6147:731 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0004ms, 219934ms total)
T2410 6147:735 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0000ms, 219934ms total)
T2410 6147:735 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0000ms, 219934ms total)
T2410 6147:735 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0001ms, 219935ms total)
T2410 6147:736 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 219935ms total)
T2410 6147:736 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 219935ms total)
T2410 6147:737 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 219935ms total)
T2410 6147:737 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 219935ms total)
T2410 6147:737 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 219935ms total)
T2410 6147:737 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0002ms, 219937ms total)
T2410 6147:739 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0000ms, 219937ms total)
T2410 6147:739 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0000ms, 219937ms total)
T2410 6147:740 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 50 D9 0D 00  returns 0x04 (0001ms, 219938ms total)
T2410 6147:741 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 50 D9 0D 00  returns 0x04 (0000ms, 219938ms total)
T2410 6147:741 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 50 D9 0D 00  returns 0x04 (0000ms, 219938ms total)
T2410 6147:741 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000FA) - Data: BB 00  returns 0x02 (0001ms, 219939ms total)
T2410 6147:742 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000FA) - Data: BB 00  returns 0x02 (0000ms, 219939ms total)
T2410 6147:742 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000FA) - Data: BB 00  returns 0x02 (0000ms, 219939ms total)
T2410 6147:742 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 219939ms total)
T2410 6147:742 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 219939ms total)
T2410 6147:742 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 219940ms total)
T2410 6147:744 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 219940ms total)
T2410 6147:744 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 219940ms total)
T2410 6147:744 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 219940ms total)
T2410 6147:745 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0003ms, 219943ms total)
T2410 6147:748 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0000ms, 219943ms total)
T2410 6147:748 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0000ms, 219943ms total)
T2410 6147:748 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 219943ms total)
T2410 6147:748 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 219943ms total)
T2410 6147:748 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 219943ms total)
T2410 6147:750 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0000ms, 219943ms total)
T2410 6147:750 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0000ms, 219943ms total)
T2410 6147:750 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0000ms, 219943ms total)
T2410 6147:751 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0000ms, 219943ms total)
T2410 6147:751 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0000ms, 219943ms total)
T2410 6147:751 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0000ms, 219943ms total)
T2410 6147:751 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000010C) - Data: 00 DE 0D 00  returns 0x04 (0000ms, 219943ms total)
T2410 6147:751 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000010C) - Data: 00 DE 0D 00  returns 0x04 (0000ms, 219943ms total)
T2410 6147:751 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000010C) - Data: 00 DE 0D 00  returns 0x04 (0001ms, 219944ms total)
T2410 6147:752 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000108) - Data: 53 74 00 00  returns 0x04 (0000ms, 219944ms total)
T2410 6147:752 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000108) - Data: 53 74 00 00  returns 0x04 (0000ms, 219944ms total)
T2410 6147:752 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000108) - Data: 53 74 00 00  returns 0x04 (0000ms, 219944ms total)
T2410 6147:754 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0000ms, 219944ms total)
T2410 6147:754 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 219944ms total)
T2410 6147:754 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0000ms, 219944ms total)
T2410 6147:754 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 219944ms total)
T2410 6147:754 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0000ms, 219944ms total)
T2410 6147:754 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 219944ms total)
T2410 6147:754 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 219944ms total)
T2410 6147:754 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 219944ms total)
T2410 6147:754 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 219944ms total)
T2410 6147:755 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 50 D9 0D 00  returns 0x04 (0000ms, 219944ms total)
T2410 6147:755 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 50 D9 0D 00  returns 0x04 (0000ms, 219944ms total)
T2410 6147:755 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 50 D9 0D 00  returns 0x04 (0000ms, 219944ms total)
T2410 6147:755 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000FA) - Data: BB 00  returns 0x02 (0001ms, 219945ms total)
T2410 6147:756 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000FA) - Data: BB 00  returns 0x02 (0000ms, 219945ms total)
T2410 6147:756 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000FA) - Data: BB 00  returns 0x02 (0000ms, 219945ms total)
T2410 6147:756 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0000ms, 219945ms total)
T2410 6147:756 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0000ms, 219945ms total)
T2410 6147:756 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0000ms, 219945ms total)
T2410 6147:758 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 219945ms total)
T2410 6147:758 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 219945ms total)
T2410 6147:758 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 219945ms total)
T2410 6147:759 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0000ms, 219945ms total)
T2410 6147:759 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0000ms, 219945ms total)
T2410 6147:759 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0000ms, 219945ms total)
T2410 6147:759 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000F0) - Data: 26 02  returns 0x02 (0000ms, 219945ms total)
T2410 6147:759 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000F0) - Data: 26 02  returns 0x02 (0000ms, 219945ms total)
T2410 6147:759 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000F0) - Data: 26 02  returns 0x02 (0001ms, 219946ms total)
T2410 6147:760 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0000ms, 219946ms total)
T2410 6147:760 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0000ms, 219946ms total)
T2410 6147:760 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0000ms, 219946ms total)
T2410 6147:761 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 219946ms total)
T2410 6147:761 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 219946ms total)
T2410 6147:761 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 219946ms total)
T2410 6147:762 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 219946ms total)
T2410 6147:762 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 219946ms total)
T2410 6147:762 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 219946ms total)
T2410 6147:764 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0000ms, 219946ms total)
T2410 6147:764 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0000ms, 219946ms total)
T2410 6147:764 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0000ms, 219946ms total)
T2410 6147:764 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 219946ms total)
T2410 6147:764 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 219946ms total)
T2410 6147:764 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 219946ms total)
T2410 6147:765 JLINK_ReadMemEx(0x200000F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000F8) - Data: 00 00  returns 0x02 (0000ms, 219946ms total)
T2410 6147:765 JLINK_ReadMemEx(0x200000F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000F8) - Data: 00 00  returns 0x02 (0000ms, 219946ms total)
T2410 6147:765 JLINK_ReadMemEx(0x200000F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000F8) - Data: 00 00  returns 0x02 (0001ms, 219947ms total)
T2410 6147:767 JLINK_ReadMemEx(0x200000F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000F8) - Data: 00 00  returns 0x02 (0000ms, 219947ms total)
T2410 6147:767 JLINK_ReadMemEx(0x200000F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000F8) - Data: 00 00  returns 0x02 (0000ms, 219947ms total)
T2410 6147:767 JLINK_ReadMemEx(0x200000F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000F8) - Data: 00 00  returns 0x02 (0000ms, 219947ms total)
T11F4 6147:816 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 219947ms total)
T11F4 6147:816 JLINK_SetBPEx(Addr = 0x0800B7E8, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 219947ms total)
T11F4 6147:816 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0006ms, 219953ms total)
T11F4 6147:923 JLINK_IsHalted()  returns TRUE (0004ms, 219957ms total)
T11F4 6147:927 JLINK_Halt()  returns 0x00 (0000ms, 219953ms total)
T11F4 6147:927 JLINK_IsHalted()  returns TRUE (0000ms, 219953ms total)
T11F4 6147:927 JLINK_IsHalted()  returns TRUE (0000ms, 219953ms total)
T11F4 6147:927 JLINK_IsHalted()  returns TRUE (0000ms, 219953ms total)
T11F4 6147:927 JLINK_ReadReg(R15 (PC))  returns 0x0800B7E8 (0000ms, 219953ms total)
T11F4 6147:927 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 219953ms total)
T11F4 6147:927 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 219953ms total)
T11F4 6147:927 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 1 (0001ms, 219954ms total)
T11F4 6147:928 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 219955ms total)
T11F4 6147:929 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0000ms, 219955ms total)
T11F4 6147:929 JLINK_ReadReg(R0)  returns 0x0800B7E9 (0000ms, 219955ms total)
T11F4 6147:929 JLINK_ReadReg(R1)  returns 0x20001A90 (0000ms, 219955ms total)
T11F4 6147:929 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 219955ms total)
T11F4 6147:929 JLINK_ReadReg(R3)  returns 0x0800A439 (0000ms, 219955ms total)
T11F4 6147:929 JLINK_ReadReg(R4)  returns 0x0800BB8C (0001ms, 219956ms total)
T11F4 6147:930 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 219956ms total)
T11F4 6147:930 JLINK_ReadReg(R6)  returns 0x0800BB8C (0000ms, 219956ms total)
T11F4 6147:930 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 219956ms total)
T11F4 6147:930 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 219956ms total)
T11F4 6147:930 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 219956ms total)
T11F4 6147:930 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 219956ms total)
T11F4 6147:930 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 219956ms total)
T11F4 6147:930 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 219956ms total)
T11F4 6147:930 JLINK_ReadReg(R13 (SP))  returns 0x20001A90 (0000ms, 219956ms total)
T11F4 6147:930 JLINK_ReadReg(R14)  returns 0x080059E5 (0000ms, 219956ms total)
T11F4 6147:930 JLINK_ReadReg(R15 (PC))  returns 0x0800B7E8 (0000ms, 219956ms total)
T11F4 6147:930 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 219956ms total)
T11F4 6147:930 JLINK_ReadReg(MSP)  returns 0x20001A90 (0000ms, 219956ms total)
T11F4 6147:930 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 219956ms total)
T11F4 6147:930 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 219956ms total)
T2410 6147:933 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0002ms, 219958ms total)
T2410 6147:935 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 219958ms total)
T2410 6147:935 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0003ms, 219961ms total)
T2410 6147:938 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0001ms, 219962ms total)
T2410 6147:939 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 219962ms total)
T2410 6147:939 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000000) - Data: 00  returns 0x01 (0002ms, 219964ms total)
T2410 6147:941 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 00 00 00 00  returns 0x04 (0000ms, 219964ms total)
T2410 6147:941 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000FA) - Data: 00 00  returns 0x02 (0002ms, 219966ms total)
T2410 6147:943 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 219966ms total)
T2410 6147:943 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 219966ms total)
T2410 6147:943 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0002ms, 219968ms total)
T2410 6147:945 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 219968ms total)
T2410 6147:945 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0000ms, 219968ms total)
T2410 6147:945 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0000ms, 219968ms total)
T2410 6147:946 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000010C) - Data: 00 00 00 00  returns 0x04 (0000ms, 219968ms total)
T2410 6147:946 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000108) - Data: 00 00 00 00  returns 0x04 (0000ms, 219968ms total)
T2410 6147:946 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0000ms, 219968ms total)
T2410 6147:946 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 219968ms total)
T2410 6147:946 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 219968ms total)
T2410 6147:946 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 00 00 00 00  returns 0x04 (0000ms, 219968ms total)
T2410 6147:947 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000FA) - Data: 00 00  returns 0x02 (0000ms, 219968ms total)
T2410 6147:947 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000FC) - Data: 00 00  returns 0x02 (0000ms, 219968ms total)
T2410 6147:949 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 219968ms total)
T2410 6147:949 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0000ms, 219968ms total)
T2410 6147:949 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000F0) - Data: 00 00  returns 0x02 (0000ms, 219968ms total)
T2410 6147:950 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0000ms, 219968ms total)
T2410 6147:950 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 219968ms total)
T2410 6147:950 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 219968ms total)
T2410 6147:950 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0000ms, 219968ms total)
T2410 6147:950 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 219968ms total)
T11F4 6148:656 JLINK_ReadMemEx(0x0800B7E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800B7C0) -- Updating C cache (64 bytes @ 0x0800B7C0) -- Read from C cache (2 bytes @ 0x0800B7E8) - Data: FB F7  returns 0x02 (0002ms, 219970ms total)
T11F4 6148:658 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0004ms, 219974ms total)
T11F4 6148:763 JLINK_IsHalted()  returns FALSE (0001ms, 219975ms total)
T11F4 6148:864 JLINK_IsHalted()  returns FALSE (0001ms, 219975ms total)
T11F4 6148:966 JLINK_IsHalted()  returns FALSE (0001ms, 219975ms total)
T11F4 6149:068 JLINK_IsHalted()  returns FALSE (0001ms, 219975ms total)
T2410 6149:170 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 219975ms total)
T2410 6149:171 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 219975ms total)
T2410 6149:171 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0003ms, 219978ms total)
T2410 6149:174 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 80 3F  returns 0x04 (0001ms, 219979ms total)
T2410 6149:175 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 219980ms total)
T2410 6149:176 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0000ms, 219980ms total)
T2410 6149:178 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 CD 0E 00  returns 0x04 (0000ms, 219980ms total)
T2410 6149:178 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C8 00  returns 0x02 (0002ms, 219982ms total)
T2410 6149:180 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 219983ms total)
T2410 6149:181 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 219983ms total)
T2410 6149:182 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0000ms, 219983ms total)
T2410 6149:182 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0002ms, 219985ms total)
T2410 6149:184 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 219986ms total)
T2410 6149:185 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 219987ms total)
T2410 6149:186 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: C0 D1 0E 00  returns 0x04 (0000ms, 219987ms total)
T2410 6149:187 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 4F 7C 00 00  returns 0x04 (0001ms, 219989ms total)
T2410 6149:188 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0002ms, 219991ms total)
T2410 6149:190 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 219991ms total)
T2410 6149:190 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 219992ms total)
T2410 6149:191 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 CD 0E 00  returns 0x04 (0001ms, 219993ms total)
T2410 6149:192 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C8 00  returns 0x02 (0001ms, 219994ms total)
T2410 6149:193 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0002ms, 219996ms total)
T2410 6149:195 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 219997ms total)
T2410 6149:196 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 219998ms total)
T2410 6149:197 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 15 02  returns 0x02 (0001ms, 219999ms total)
T2410 6149:198 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 220000ms total)
T2410 6149:199 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220001ms total)
T2410 6149:200 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220002ms total)
T2410 6149:201 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0000ms, 220002ms total)
T2410 6149:201 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 80 3F  returns 0x04 (0002ms, 220004ms total)
T11F4 6149:203 JLINK_IsHalted()  returns FALSE (0001ms, 220005ms total)
T11F4 6149:305 JLINK_IsHalted()  returns FALSE (0001ms, 220005ms total)
T11F4 6149:407 JLINK_IsHalted()  returns FALSE (0000ms, 220004ms total)
T11F4 6149:508 JLINK_IsHalted()  returns FALSE (0001ms, 220005ms total)
T11F4 6149:609 JLINK_IsHalted()  returns FALSE (0001ms, 220005ms total)
T2410 6149:711 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 220005ms total)
T2410 6149:712 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220006ms total)
T2410 6149:713 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 220007ms total)
T2410 6149:714 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 40  returns 0x04 (0000ms, 220007ms total)
T2410 6149:715 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220008ms total)
T2410 6149:716 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 220009ms total)
T2410 6149:717 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 CD 0E 00  returns 0x04 (0001ms, 220010ms total)
T2410 6149:718 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C8 00  returns 0x02 (0001ms, 220011ms total)
T2410 6149:719 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 220012ms total)
T2410 6149:720 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220013ms total)
T2410 6149:721 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0002ms, 220015ms total)
T2410 6149:723 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 220015ms total)
T2410 6149:723 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 220016ms total)
T2410 6149:724 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 220017ms total)
T2410 6149:725 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: C0 D1 0E 00  returns 0x04 (0001ms, 220018ms total)
T2410 6149:726 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 4F 7C 00 00  returns 0x04 (0001ms, 220019ms total)
T2410 6149:727 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 220020ms total)
T2410 6149:728 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220021ms total)
T2410 6149:729 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220022ms total)
T2410 6149:730 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 CD 0E 00  returns 0x04 (0001ms, 220023ms total)
T2410 6149:731 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C8 00  returns 0x02 (0001ms, 220024ms total)
T2410 6149:732 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 220025ms total)
T2410 6149:734 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220026ms total)
T2410 6149:735 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 220027ms total)
T2410 6149:736 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 48 00  returns 0x02 (0001ms, 220028ms total)
T2410 6149:737 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 220029ms total)
T2410 6149:738 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220030ms total)
T2410 6149:739 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220031ms total)
T2410 6149:740 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 220032ms total)
T2410 6149:741 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 40  returns 0x04 (0000ms, 220032ms total)
T11F4 6149:742 JLINK_IsHalted()  returns FALSE (0001ms, 220033ms total)
T11F4 6149:844 JLINK_IsHalted()  returns FALSE (0001ms, 220033ms total)
T11F4 6149:945 JLINK_IsHalted()  returns FALSE (0001ms, 220033ms total)
T11F4 6150:047 JLINK_IsHalted()  returns FALSE (0001ms, 220033ms total)
T11F4 6150:149 JLINK_IsHalted()  returns FALSE (0001ms, 220033ms total)
T2410 6150:251 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 220033ms total)
T2410 6150:252 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220034ms total)
T2410 6150:253 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 220035ms total)
T2410 6150:254 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 40  returns 0x04 (0001ms, 220036ms total)
T2410 6150:255 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220037ms total)
T2410 6150:256 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 220038ms total)
T2410 6150:257 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 CD 0E 00  returns 0x04 (0001ms, 220039ms total)
T2410 6150:258 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C8 00  returns 0x02 (0001ms, 220040ms total)
T2410 6150:259 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 220041ms total)
T2410 6150:260 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220042ms total)
T2410 6150:261 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 220043ms total)
T2410 6150:262 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220044ms total)
T2410 6150:264 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 220045ms total)
T2410 6150:265 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0000ms, 220045ms total)
T2410 6150:265 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: C0 D1 0E 00  returns 0x04 (0001ms, 220046ms total)
T2410 6150:266 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 4F 7C 00 00  returns 0x04 (0001ms, 220047ms total)
T2410 6150:267 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 220048ms total)
T2410 6150:268 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220049ms total)
T2410 6150:269 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220050ms total)
T2410 6150:270 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 CD 0E 00  returns 0x04 (0001ms, 220051ms total)
T2410 6150:271 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C8 00  returns 0x02 (0000ms, 220051ms total)
T2410 6150:271 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 220052ms total)
T2410 6150:273 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220053ms total)
T2410 6150:274 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 220054ms total)
T2410 6150:275 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 62 02  returns 0x02 (0001ms, 220055ms total)
T2410 6150:276 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0000ms, 220055ms total)
T2410 6150:276 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0002ms, 220057ms total)
T2410 6150:278 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220058ms total)
T2410 6150:279 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0000ms, 220058ms total)
T2410 6150:279 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 40  returns 0x04 (0001ms, 220059ms total)
T11F4 6150:280 JLINK_IsHalted()  returns FALSE (0002ms, 220061ms total)
T11F4 6150:382 JLINK_IsHalted()  returns FALSE (0001ms, 220060ms total)
T11F4 6150:484 JLINK_IsHalted()  returns FALSE (0001ms, 220060ms total)
T11F4 6150:586 JLINK_IsHalted()  returns FALSE (0001ms, 220060ms total)
T11F4 6150:688 JLINK_IsHalted()  returns FALSE (0000ms, 220059ms total)
T2410 6150:789 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 220060ms total)
T2410 6150:790 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220061ms total)
T2410 6150:792 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0000ms, 220061ms total)
T2410 6150:792 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 40 40  returns 0x04 (0002ms, 220063ms total)
T2410 6150:794 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 220063ms total)
T2410 6150:794 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 220064ms total)
T2410 6150:795 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 50 BA 0E 00  returns 0x04 (0001ms, 220065ms total)
T2410 6150:797 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C7 00  returns 0x02 (0001ms, 220066ms total)
T2410 6150:798 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 220067ms total)
T2410 6150:799 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220068ms total)
T2410 6150:800 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 220069ms total)
T2410 6150:801 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220070ms total)
T2410 6150:803 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0000ms, 220070ms total)
T2410 6150:804 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0000ms, 220070ms total)
T2410 6150:804 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 00 BF 0E 00  returns 0x04 (0001ms, 220071ms total)
T2410 6150:806 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: B2 7B 00 00  returns 0x04 (0001ms, 220072ms total)
T2410 6150:807 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 220073ms total)
T2410 6150:808 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220074ms total)
T2410 6150:809 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 220074ms total)
T2410 6150:809 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 50 BA 0E 00  returns 0x04 (0001ms, 220075ms total)
T2410 6150:810 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C7 00  returns 0x02 (0002ms, 220077ms total)
T2410 6150:812 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 220078ms total)
T2410 6150:813 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220079ms total)
T2410 6150:814 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 220080ms total)
T2410 6150:815 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 97 00  returns 0x02 (0001ms, 220081ms total)
T2410 6150:816 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 220082ms total)
T2410 6150:817 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220083ms total)
T2410 6150:818 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220084ms total)
T2410 6150:819 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0000ms, 220084ms total)
T2410 6150:819 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 40 40  returns 0x04 (0002ms, 220086ms total)
T11F4 6150:821 JLINK_IsHalted()  returns FALSE (0000ms, 220086ms total)
T11F4 6150:923 JLINK_IsHalted()  returns FALSE (0001ms, 220087ms total)
T11F4 6151:025 JLINK_IsHalted()  returns FALSE (0001ms, 220087ms total)
T11F4 6151:126 JLINK_IsHalted()  returns FALSE (0001ms, 220087ms total)
T11F4 6151:228 JLINK_IsHalted()  returns FALSE (0001ms, 220087ms total)
T2410 6151:330 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 220087ms total)
T2410 6151:331 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220088ms total)
T2410 6151:332 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 220089ms total)
T2410 6151:333 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 40 40  returns 0x04 (0001ms, 220090ms total)
T2410 6151:334 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220091ms total)
T2410 6151:335 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 220092ms total)
T2410 6151:336 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 50 BA 0E 00  returns 0x04 (0001ms, 220093ms total)
T2410 6151:337 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C7 00  returns 0x02 (0001ms, 220094ms total)
T2410 6151:338 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 220095ms total)
T2410 6151:339 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220096ms total)
T2410 6151:340 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 220097ms total)
T2410 6151:341 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220098ms total)
T2410 6151:342 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 220099ms total)
T2410 6151:343 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 220100ms total)
T2410 6151:344 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 00 BF 0E 00  returns 0x04 (0001ms, 220101ms total)
T2410 6151:345 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: B2 7B 00 00  returns 0x04 (0001ms, 220102ms total)
T2410 6151:346 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 220103ms total)
T2410 6151:347 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220104ms total)
T2410 6151:348 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220105ms total)
T2410 6151:349 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 50 BA 0E 00  returns 0x04 (0001ms, 220106ms total)
T2410 6151:350 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C7 00  returns 0x02 (0001ms, 220107ms total)
T2410 6151:351 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 220108ms total)
T2410 6151:352 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220109ms total)
T2410 6151:353 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 220110ms total)
T2410 6151:354 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: B2 02  returns 0x02 (0001ms, 220111ms total)
T2410 6151:355 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 220112ms total)
T2410 6151:356 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220113ms total)
T2410 6151:357 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220114ms total)
T2410 6151:358 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 220115ms total)
T2410 6151:359 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 40 40  returns 0x04 (0000ms, 220115ms total)
T11F4 6151:360 JLINK_IsHalted()  returns FALSE (0001ms, 220116ms total)
T11F4 6151:461 JLINK_IsHalted()  returns FALSE (0001ms, 220116ms total)
T11F4 6151:563 JLINK_IsHalted()  returns FALSE (0001ms, 220116ms total)
T11F4 6151:665 JLINK_IsHalted()  returns FALSE (0001ms, 220116ms total)
T11F4 6151:767 JLINK_IsHalted()  returns FALSE (0001ms, 220116ms total)
T2410 6151:868 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 220116ms total)
T2410 6151:869 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220117ms total)
T2410 6151:870 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 220118ms total)
T2410 6151:871 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 80 40  returns 0x04 (0001ms, 220119ms total)
T2410 6151:873 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220120ms total)
T2410 6151:874 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 220121ms total)
T2410 6151:875 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 50 BA 0E 00  returns 0x04 (0001ms, 220122ms total)
T2410 6151:876 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C7 00  returns 0x02 (0000ms, 220122ms total)
T2410 6151:876 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 220123ms total)
T2410 6151:877 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0002ms, 220125ms total)
T2410 6151:879 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 220126ms total)
T2410 6151:880 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220127ms total)
T2410 6151:881 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 220128ms total)
T2410 6151:882 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 220129ms total)
T2410 6151:883 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 00 BF 0E 00  returns 0x04 (0001ms, 220130ms total)
T2410 6151:884 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: B2 7B 00 00  returns 0x04 (0000ms, 220130ms total)
T2410 6151:884 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0002ms, 220132ms total)
T2410 6151:886 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 220132ms total)
T2410 6151:886 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220133ms total)
T2410 6151:887 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 50 BA 0E 00  returns 0x04 (0001ms, 220134ms total)
T2410 6151:888 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C7 00  returns 0x02 (0001ms, 220135ms total)
T2410 6151:889 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 220136ms total)
T2410 6151:890 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220137ms total)
T2410 6151:891 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 220138ms total)
T2410 6151:892 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: E4 00  returns 0x02 (0001ms, 220139ms total)
T2410 6151:893 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 220140ms total)
T2410 6151:894 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0002ms, 220142ms total)
T2410 6151:896 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 220142ms total)
T2410 6151:896 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 220143ms total)
T2410 6151:897 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 80 40  returns 0x04 (0000ms, 220143ms total)
T11F4 6151:898 JLINK_IsHalted()  returns FALSE (0001ms, 220144ms total)
T11F4 6152:000 JLINK_IsHalted()  returns FALSE (0001ms, 220144ms total)
T11F4 6152:102 JLINK_IsHalted()  returns FALSE (0001ms, 220144ms total)
T11F4 6152:203 JLINK_IsHalted()  returns FALSE (0001ms, 220144ms total)
T11F4 6152:305 JLINK_IsHalted()  returns FALSE (0001ms, 220144ms total)
T2410 6152:407 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 220144ms total)
T2410 6152:408 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220145ms total)
T2410 6152:409 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 220146ms total)
T2410 6152:410 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 80 40  returns 0x04 (0001ms, 220147ms total)
T2410 6152:411 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220148ms total)
T2410 6152:412 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 220149ms total)
T2410 6152:413 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 50 BA 0E 00  returns 0x04 (0001ms, 220150ms total)
T2410 6152:414 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C7 00  returns 0x02 (0001ms, 220151ms total)
T2410 6152:415 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 220152ms total)
T2410 6152:416 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220153ms total)
T2410 6152:417 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 220154ms total)
T2410 6152:418 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220155ms total)
T2410 6152:419 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 220156ms total)
T2410 6152:420 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 220157ms total)
T2410 6152:421 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 00 BF 0E 00  returns 0x04 (0001ms, 220158ms total)
T2410 6152:422 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: B2 7B 00 00  returns 0x04 (0001ms, 220159ms total)
T2410 6152:423 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 220160ms total)
T2410 6152:424 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220161ms total)
T2410 6152:425 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220162ms total)
T2410 6152:426 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 50 BA 0E 00  returns 0x04 (0001ms, 220163ms total)
T2410 6152:427 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C7 00  returns 0x02 (0001ms, 220164ms total)
T2410 6152:428 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 220165ms total)
T2410 6152:429 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220166ms total)
T2410 6152:430 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 220167ms total)
T2410 6152:431 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: FF 02  returns 0x02 (0001ms, 220168ms total)
T2410 6152:432 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 220169ms total)
T2410 6152:433 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220170ms total)
T2410 6152:434 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220171ms total)
T2410 6152:435 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0000ms, 220171ms total)
T2410 6152:435 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 80 40  returns 0x04 (0001ms, 220172ms total)
T11F4 6152:437 JLINK_IsHalted()  returns FALSE (0001ms, 220173ms total)
T11F4 6152:539 JLINK_IsHalted()  returns FALSE (0000ms, 220172ms total)
T11F4 6152:640 JLINK_IsHalted()  returns FALSE (0001ms, 220173ms total)
T11F4 6152:741 JLINK_IsHalted()  returns FALSE (0001ms, 220173ms total)
T11F4 6152:843 JLINK_IsHalted()  returns FALSE (0001ms, 220173ms total)
T2410 6152:944 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0002ms, 220174ms total)
T2410 6152:946 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 220174ms total)
T2410 6152:946 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 220175ms total)
T2410 6152:947 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 A0 40  returns 0x04 (0001ms, 220176ms total)
T2410 6152:948 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220177ms total)
T2410 6152:949 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 220178ms total)
T2410 6152:950 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 90 A7 0E 00  returns 0x04 (0001ms, 220179ms total)
T2410 6152:952 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C6 00  returns 0x02 (0001ms, 220180ms total)
T2410 6152:953 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0002ms, 220182ms total)
T2410 6152:955 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 220182ms total)
T2410 6152:955 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 220183ms total)
T2410 6152:956 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0002ms, 220185ms total)
T2410 6152:958 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0000ms, 220185ms total)
T2410 6152:958 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 220186ms total)
T2410 6152:959 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 40 AC 0E 00  returns 0x04 (0002ms, 220188ms total)
T2410 6152:961 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 15 7B 00 00  returns 0x04 (0000ms, 220188ms total)
T2410 6152:961 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 220189ms total)
T2410 6152:962 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220190ms total)
T2410 6152:963 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220191ms total)
T2410 6152:964 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 90 A7 0E 00  returns 0x04 (0001ms, 220192ms total)
T2410 6152:965 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C6 00  returns 0x02 (0001ms, 220193ms total)
T2410 6152:966 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0002ms, 220195ms total)
T2410 6152:968 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 220195ms total)
T2410 6152:968 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0002ms, 220197ms total)
T2410 6152:970 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 32 01  returns 0x02 (0000ms, 220197ms total)
T2410 6152:970 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0002ms, 220199ms total)
T2410 6152:972 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220200ms total)
T2410 6152:973 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220201ms total)
T2410 6152:974 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0000ms, 220201ms total)
T2410 6152:974 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 A0 40  returns 0x04 (0001ms, 220202ms total)
T11F4 6152:975 JLINK_IsHalted()  returns FALSE (0001ms, 220203ms total)
T11F4 6153:077 JLINK_IsHalted()  returns FALSE (0000ms, 220202ms total)
T11F4 6153:178 JLINK_IsHalted()  returns FALSE (0001ms, 220203ms total)
T11F4 6153:280 JLINK_IsHalted()  returns FALSE (0000ms, 220202ms total)
T11F4 6153:381 JLINK_IsHalted()  returns FALSE (0001ms, 220203ms total)
T2410 6153:483 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 220203ms total)
T2410 6153:484 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220204ms total)
T2410 6153:485 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 220205ms total)
T2410 6153:486 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 A0 40  returns 0x04 (0000ms, 220205ms total)
T2410 6153:487 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220206ms total)
T2410 6153:488 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0000ms, 220206ms total)
T2410 6153:488 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 90 A7 0E 00  returns 0x04 (0001ms, 220207ms total)
T2410 6153:489 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C6 00  returns 0x02 (0001ms, 220208ms total)
T2410 6153:490 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 220209ms total)
T2410 6153:491 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220210ms total)
T2410 6153:492 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 220211ms total)
T2410 6153:493 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220212ms total)
T2410 6153:494 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 220213ms total)
T2410 6153:495 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 220214ms total)
T2410 6153:496 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 40 AC 0E 00  returns 0x04 (0001ms, 220215ms total)
T2410 6153:497 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 15 7B 00 00  returns 0x04 (0001ms, 220216ms total)
T2410 6153:498 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 220217ms total)
T2410 6153:499 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220218ms total)
T2410 6153:500 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 220218ms total)
T2410 6153:500 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 90 A7 0E 00  returns 0x04 (0001ms, 220219ms total)
T2410 6153:501 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C6 00  returns 0x02 (0001ms, 220220ms total)
T2410 6153:503 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 220221ms total)
T2410 6153:504 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220222ms total)
T2410 6153:505 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 220223ms total)
T2410 6153:506 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 4A 03  returns 0x02 (0000ms, 220223ms total)
T2410 6153:507 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 220224ms total)
T2410 6153:508 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 220224ms total)
T2410 6153:508 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220225ms total)
T2410 6153:509 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 220226ms total)
T2410 6153:510 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 A0 40  returns 0x04 (0001ms, 220227ms total)
T11F4 6153:511 JLINK_IsHalted()  returns FALSE (0001ms, 220228ms total)
T11F4 6153:613 JLINK_IsHalted()  returns FALSE (0000ms, 220227ms total)
T11F4 6153:713 JLINK_IsHalted()  returns FALSE (0001ms, 220228ms total)
T11F4 6153:815 JLINK_IsHalted()  returns FALSE (0001ms, 220228ms total)
T11F4 6153:917 JLINK_IsHalted()  returns FALSE (0001ms, 220228ms total)
T2410 6154:019 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0000ms, 220227ms total)
T2410 6154:019 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0002ms, 220229ms total)
T2410 6154:021 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 220230ms total)
T2410 6154:022 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 C0 40  returns 0x04 (0001ms, 220231ms total)
T2410 6154:023 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 220231ms total)
T2410 6154:023 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0002ms, 220233ms total)
T2410 6154:025 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 90 A7 0E 00  returns 0x04 (0000ms, 220233ms total)
T2410 6154:025 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C6 00  returns 0x02 (0002ms, 220235ms total)
T2410 6154:027 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 220236ms total)
T2410 6154:028 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220237ms total)
T2410 6154:029 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 220238ms total)
T2410 6154:030 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 220238ms total)
T2410 6154:032 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 220239ms total)
T2410 6154:033 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0000ms, 220239ms total)
T2410 6154:033 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 40 AC 0E 00  returns 0x04 (0001ms, 220240ms total)
T2410 6154:034 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 15 7B 00 00  returns 0x04 (0002ms, 220242ms total)
T2410 6154:036 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 220243ms total)
T2410 6154:037 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 220243ms total)
T2410 6154:037 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220244ms total)
T2410 6154:038 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 90 A7 0E 00  returns 0x04 (0000ms, 220244ms total)
T2410 6154:038 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C6 00  returns 0x02 (0002ms, 220246ms total)
T2410 6154:040 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0000ms, 220246ms total)
T2410 6154:040 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0002ms, 220248ms total)
T2410 6154:042 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 220249ms total)
T2410 6154:043 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 7B 01  returns 0x02 (0001ms, 220250ms total)
T2410 6154:044 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 220251ms total)
T2410 6154:045 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220252ms total)
T2410 6154:046 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 220252ms total)
T2410 6154:046 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 220253ms total)
T2410 6154:047 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 C0 40  returns 0x04 (0000ms, 220253ms total)
T11F4 6154:048 JLINK_IsHalted()  returns FALSE (0001ms, 220254ms total)
T11F4 6154:150 JLINK_IsHalted()  returns FALSE (0000ms, 220253ms total)
T11F4 6154:251 JLINK_IsHalted()  returns FALSE (0001ms, 220254ms total)
T11F4 6154:353 JLINK_IsHalted()  returns FALSE (0001ms, 220254ms total)
T11F4 6154:454 JLINK_IsHalted()  returns FALSE (0001ms, 220254ms total)
T2410 6154:557 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0000ms, 220253ms total)
T2410 6154:557 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220254ms total)
T2410 6154:558 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 220255ms total)
T2410 6154:559 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 C0 40  returns 0x04 (0003ms, 220258ms total)
T2410 6154:564 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220259ms total)
T2410 6154:565 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 220260ms total)
T2410 6154:566 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 90 A7 0E 00  returns 0x04 (0001ms, 220261ms total)
T2410 6154:567 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C6 00  returns 0x02 (0001ms, 220262ms total)
T2410 6154:568 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 220263ms total)
T2410 6154:569 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220264ms total)
T2410 6154:571 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 220265ms total)
T2410 6154:572 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220266ms total)
T2410 6154:573 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 220267ms total)
T2410 6154:574 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 220268ms total)
T2410 6154:575 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 40 AC 0E 00  returns 0x04 (0001ms, 220269ms total)
T2410 6154:576 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 15 7B 00 00  returns 0x04 (0001ms, 220270ms total)
T2410 6154:577 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 220271ms total)
T2410 6154:578 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220272ms total)
T2410 6154:579 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220273ms total)
T2410 6154:580 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 90 A7 0E 00  returns 0x04 (0001ms, 220274ms total)
T2410 6154:581 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C6 00  returns 0x02 (0001ms, 220275ms total)
T2410 6154:582 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0000ms, 220275ms total)
T2410 6154:583 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220276ms total)
T2410 6154:584 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 220277ms total)
T2410 6154:585 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 9A 03  returns 0x02 (0001ms, 220278ms total)
T2410 6154:586 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 220279ms total)
T2410 6154:587 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220280ms total)
T2410 6154:588 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220281ms total)
T2410 6154:589 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 220282ms total)
T2410 6154:590 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 C0 40  returns 0x04 (0001ms, 220283ms total)
T11F4 6154:591 JLINK_IsHalted()  returns FALSE (0001ms, 220284ms total)
T11F4 6154:693 JLINK_IsHalted()  returns FALSE (0001ms, 220284ms total)
T11F4 6154:797 JLINK_IsHalted()  returns FALSE (0001ms, 220284ms total)
T11F4 6154:899 JLINK_IsHalted()  returns FALSE (0001ms, 220284ms total)
T11F4 6155:001 JLINK_IsHalted()  returns FALSE (0000ms, 220283ms total)
T2410 6155:103 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 220284ms total)
T2410 6155:104 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220285ms total)
T2410 6155:105 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 220286ms total)
T2410 6155:106 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 E0 40  returns 0x04 (0000ms, 220286ms total)
T2410 6155:107 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220287ms total)
T2410 6155:108 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 220288ms total)
T2410 6155:109 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: D0 94 0E 00  returns 0x04 (0001ms, 220289ms total)
T2410 6155:110 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C5 00  returns 0x02 (0001ms, 220290ms total)
T2410 6155:112 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 220291ms total)
T2410 6155:113 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220292ms total)
T2410 6155:114 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 220293ms total)
T2410 6155:115 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220294ms total)
T2410 6155:117 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 220295ms total)
T2410 6155:118 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 220296ms total)
T2410 6155:119 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 80 99 0E 00  returns 0x04 (0001ms, 220297ms total)
T2410 6155:120 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 77 7A 00 00  returns 0x04 (0001ms, 220298ms total)
T2410 6155:121 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 220299ms total)
T2410 6155:122 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220300ms total)
T2410 6155:123 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220301ms total)
T2410 6155:124 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: D0 94 0E 00  returns 0x04 (0000ms, 220301ms total)
T2410 6155:125 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C5 00  returns 0x02 (0001ms, 220302ms total)
T2410 6155:126 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 220303ms total)
T2410 6155:127 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220304ms total)
T2410 6155:128 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 220305ms total)
T2410 6155:129 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: D1 01  returns 0x02 (0001ms, 220306ms total)
T2410 6155:130 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 220307ms total)
T2410 6155:131 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220308ms total)
T2410 6155:132 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220309ms total)
T2410 6155:133 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 220310ms total)
T2410 6155:134 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 E0 40  returns 0x04 (0001ms, 220311ms total)
T11F4 6155:135 JLINK_IsHalted()  returns FALSE (0001ms, 220312ms total)
T11F4 6155:236 JLINK_IsHalted()  returns FALSE (0001ms, 220312ms total)
T11F4 6155:338 JLINK_IsHalted()  returns FALSE (0000ms, 220311ms total)
T11F4 6155:440 JLINK_IsHalted()  returns FALSE (0002ms, 220313ms total)
T11F4 6155:542 JLINK_IsHalted()  returns FALSE (0001ms, 220312ms total)
T2410 6155:656 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0010ms, 220321ms total)
T2410 6155:666 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220322ms total)
T2410 6155:667 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 220323ms total)
T2410 6155:668 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 41  returns 0x04 (0002ms, 220325ms total)
T2410 6155:671 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220326ms total)
T2410 6155:672 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0002ms, 220328ms total)
T2410 6155:674 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: D0 94 0E 00  returns 0x04 (0001ms, 220329ms total)
T2410 6155:675 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C5 00  returns 0x02 (0001ms, 220330ms total)
T2410 6155:676 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 220331ms total)
T2410 6155:677 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220332ms total)
T2410 6155:679 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 220333ms total)
T2410 6155:680 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0003ms, 220336ms total)
T2410 6155:684 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 220337ms total)
T2410 6155:685 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 220338ms total)
T2410 6155:686 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 80 99 0E 00  returns 0x04 (0001ms, 220339ms total)
T2410 6155:687 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 77 7A 00 00  returns 0x04 (0001ms, 220340ms total)
T2410 6155:688 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 220341ms total)
T2410 6155:689 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220342ms total)
T2410 6155:690 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220343ms total)
T2410 6155:691 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: D0 94 0E 00  returns 0x04 (0000ms, 220343ms total)
T2410 6155:692 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C5 00  returns 0x02 (0001ms, 220344ms total)
T2410 6155:693 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 220345ms total)
T2410 6155:695 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220346ms total)
T2410 6155:696 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 220347ms total)
T2410 6155:697 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 22 00  returns 0x02 (0001ms, 220348ms total)
T2410 6155:698 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 220349ms total)
T2410 6155:699 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220350ms total)
T2410 6155:700 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220351ms total)
T2410 6155:701 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 220352ms total)
T2410 6155:702 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 41  returns 0x04 (0001ms, 220353ms total)
T11F4 6155:705 JLINK_IsHalted()  returns FALSE (0002ms, 220355ms total)
T11F4 6155:807 JLINK_IsHalted()  returns FALSE (0001ms, 220354ms total)
T11F4 6155:908 JLINK_IsHalted()  returns FALSE (0001ms, 220354ms total)
T11F4 6156:010 JLINK_IsHalted()  returns FALSE (0000ms, 220353ms total)
T11F4 6156:112 JLINK_IsHalted()  returns FALSE (0001ms, 220354ms total)
T2410 6156:214 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 220354ms total)
T2410 6156:215 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 220354ms total)
T2410 6156:215 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 220355ms total)
T2410 6156:216 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 41  returns 0x04 (0001ms, 220356ms total)
T2410 6156:217 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220357ms total)
T2410 6156:218 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 220358ms total)
T2410 6156:219 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: D0 94 0E 00  returns 0x04 (0001ms, 220359ms total)
T2410 6156:220 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C5 00  returns 0x02 (0000ms, 220359ms total)
T2410 6156:221 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 220359ms total)
T2410 6156:221 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220360ms total)
T2410 6156:223 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 220361ms total)
T2410 6156:224 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220362ms total)
T2410 6156:226 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 220363ms total)
T2410 6156:227 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 220364ms total)
T2410 6156:228 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 80 99 0E 00  returns 0x04 (0000ms, 220364ms total)
T2410 6156:229 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 77 7A 00 00  returns 0x04 (0001ms, 220365ms total)
T2410 6156:230 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 220366ms total)
T2410 6156:231 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220367ms total)
T2410 6156:232 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220368ms total)
T2410 6156:233 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: D0 94 0E 00  returns 0x04 (0001ms, 220369ms total)
T2410 6156:234 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C5 00  returns 0x02 (0001ms, 220370ms total)
T2410 6156:235 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0000ms, 220370ms total)
T2410 6156:236 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220371ms total)
T2410 6156:237 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 220372ms total)
T2410 6156:238 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 3E 02  returns 0x02 (0000ms, 220372ms total)
T2410 6156:239 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 220373ms total)
T2410 6156:240 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220374ms total)
T2410 6156:241 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 220374ms total)
T2410 6156:242 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 220375ms total)
T2410 6156:243 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 41  returns 0x04 (0001ms, 220376ms total)
T11F4 6156:245 JLINK_IsHalted()  returns FALSE (0001ms, 220377ms total)
T11F4 6156:347 JLINK_IsHalted()  returns FALSE (0001ms, 220377ms total)
T11F4 6156:449 JLINK_IsHalted()  returns FALSE (0000ms, 220376ms total)
T11F4 6156:551 JLINK_IsHalted()  returns FALSE (0001ms, 220377ms total)
T11F4 6156:653 JLINK_IsHalted()  returns FALSE (0001ms, 220377ms total)
T2410 6156:754 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 220377ms total)
T2410 6156:755 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 220377ms total)
T2410 6156:755 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0002ms, 220379ms total)
T2410 6156:757 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 10 41  returns 0x04 (0001ms, 220380ms total)
T2410 6156:758 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220381ms total)
T2410 6156:759 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0000ms, 220381ms total)
T2410 6156:759 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 82 0E 00  returns 0x04 (0002ms, 220383ms total)
T2410 6156:761 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C4 00  returns 0x02 (0000ms, 220383ms total)
T2410 6156:762 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 220384ms total)
T2410 6156:763 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 220384ms total)
T2410 6156:764 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 220385ms total)
T2410 6156:765 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220386ms total)
T2410 6156:766 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0002ms, 220388ms total)
T2410 6156:768 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0000ms, 220388ms total)
T2410 6156:768 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: C0 86 0E 00  returns 0x04 (0001ms, 220389ms total)
T2410 6156:769 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: DA 79 00 00  returns 0x04 (0002ms, 220391ms total)
T2410 6156:771 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0000ms, 220391ms total)
T2410 6156:771 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220392ms total)
T2410 6156:773 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 220392ms total)
T2410 6156:773 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 82 0E 00  returns 0x04 (0001ms, 220393ms total)
T2410 6156:774 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C4 00  returns 0x02 (0001ms, 220394ms total)
T2410 6156:775 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 220395ms total)
T2410 6156:777 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0002ms, 220397ms total)
T2410 6156:779 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0000ms, 220397ms total)
T2410 6156:779 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 74 00  returns 0x02 (0001ms, 220398ms total)
T2410 6156:780 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 220399ms total)
T2410 6156:781 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220400ms total)
T2410 6156:782 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220401ms total)
T2410 6156:783 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 220402ms total)
T2410 6156:784 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 10 41  returns 0x04 (0000ms, 220402ms total)
T11F4 6156:785 JLINK_IsHalted()  returns FALSE (0001ms, 220403ms total)
T11F4 6156:886 JLINK_IsHalted()  returns FALSE (0001ms, 220403ms total)
T11F4 6156:988 JLINK_IsHalted()  returns FALSE (0001ms, 220403ms total)
T11F4 6157:089 JLINK_IsHalted()  returns FALSE (0000ms, 220402ms total)
T11F4 6157:191 JLINK_IsHalted()  returns FALSE (0000ms, 220402ms total)
T2410 6157:293 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 220403ms total)
T2410 6157:294 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220404ms total)
T2410 6157:295 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 220405ms total)
T2410 6157:296 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 10 41  returns 0x04 (0001ms, 220406ms total)
T2410 6157:297 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220407ms total)
T2410 6157:298 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 220408ms total)
T2410 6157:299 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 82 0E 00  returns 0x04 (0001ms, 220409ms total)
T2410 6157:300 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C4 00  returns 0x02 (0001ms, 220410ms total)
T2410 6157:302 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 220411ms total)
T2410 6157:303 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 220412ms total)
T2410 6157:304 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 220413ms total)
T2410 6157:305 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220414ms total)
T2410 6157:306 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 220415ms total)
T2410 6157:307 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 220416ms total)
T2410 6157:308 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: C0 86 0E 00  returns 0x04 (0001ms, 220417ms total)
T2410 6157:310 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: DA 79 00 00  returns 0x04 (0001ms, 220418ms total)
T2410 6157:311 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 220419ms total)
T2410 6157:312 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 220420ms total)
T2410 6157:313 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 220420ms total)
T2410 6157:313 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 82 0E 00  returns 0x04 (0001ms, 220421ms total)
T2410 6157:314 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C4 00  returns 0x02 (0001ms, 220422ms total)
T2410 6157:315 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 220423ms total)
T2410 6157:317 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 220424ms total)
T2410 6157:318 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 220425ms total)
T2410 6157:319 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 8F 02  returns 0x02 (0001ms, 220426ms total)
T2410 6157:320 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 220427ms total)
T2410 6157:321 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 220428ms total)
T2410 6157:322 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 220428ms total)
T2410 6157:322 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 220429ms total)
T2410 6157:323 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 10 41  returns 0x04 (0001ms, 220430ms total)
T11F4 6157:325 JLINK_IsHalted()  returns FALSE (0001ms, 220431ms total)
T11F4 6157:427 JLINK_IsHalted()  returns FALSE (0000ms, 220430ms total)
T11F4 6157:528 JLINK_IsHalted()  returns FALSE (0001ms, 220431ms total)
T11F4 6157:630 JLINK_IsHalted()  returns ERROR (0304ms, 220734ms total)
T11F4 6157:934 JLINK_Halt()CPU could not be halted  returns 0x01 (0607ms, 221037ms total)
T11F4 6158:541 JLINK_IsHalted()  returns FALSE (0075ms, 221112ms total)
T11F4 6158:667 JLINK_IsHalted()  returns ERROR (0304ms, 221341ms total)
T11F4 6158:971 JLINK_IsHalted()  returns ERROR (0506ms, 221543ms total)
T11F4 6159:478 JLINK_ReadReg(R15 (PC)) -- CPU is running
  ***** Error: Can not read register 15 (R15) while CPU is running  returns 0x00000000 (0133ms, 221170ms total)
T11F4 6159:611 JLINK_ReadReg(XPSR) -- CPU is running
  ***** Error: Can not read register 16 (XPSR) while CPU is running  returns 0x00000000 (0001ms, 221171ms total)
T11F4 6159:613 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 1 (0001ms, 221172ms total)
T11F4 6159:614 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0000ms, 221172ms total)
T11F4 6159:614 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 221173ms total)
T11F4 6159:615 JLINK_ReadReg(R0) -- CPU is running
  ***** Error: Can not read register 0 (R0) while CPU is running  returns 0x00000000 (0001ms, 221174ms total)
T11F4 6159:617 JLINK_ReadReg(R1) -- CPU is running
  ***** Error: Can not read register 1 (R1) while CPU is running  returns 0x00000000 (0303ms, 221477ms total)
T11F4 6159:921 JLINK_ReadReg(R2) -- CPU is running
  ***** Error: Can not read register 2 (R2) while CPU is running  returns 0x00000000 (0506ms, 221983ms total)
T11F4 6160:427 JLINK_ReadReg(R3) -- CPU is running
  ***** Error: Can not read register 3 (R3) while CPU is running  returns 0x00000000 (0184ms, 222167ms total)
T11F4 6160:611 JLINK_ReadReg(R4) -- CPU is running
  ***** Error: Can not read register 4 (R4) while CPU is running  returns 0x00000000 (0002ms, 222169ms total)
T11F4 6160:613 JLINK_ReadReg(R5) -- CPU is running
  ***** Error: Can not read register 5 (R5) while CPU is running  returns 0x00000000 (0001ms, 222170ms total)
T11F4 6160:614 JLINK_ReadReg(R6) -- CPU is running
  ***** Error: Can not read register 6 (R6) while CPU is running  returns 0x00000000 (0001ms, 222171ms total)
T11F4 6160:615 JLINK_ReadReg(R7) -- CPU is running
  ***** Error: Can not read register 7 (R7) while CPU is running  returns 0x00000000 (0001ms, 222172ms total)
T11F4 6160:616 JLINK_ReadReg(R8) -- CPU is running
  ***** Error: Can not read register 8 (R8) while CPU is running  returns 0x00000000 (0304ms, 222476ms total)
T11F4 6160:920 JLINK_ReadReg(R9) -- CPU is running
  ***** Error: Can not read register 9 (R9) while CPU is running  returns 0x00000000 (0506ms, 222982ms total)
T11F4 6161:426 JLINK_ReadReg(R10) -- CPU is running
  ***** Error: Can not read register 10 (R10) while CPU is running  returns 0x00000000 (0180ms, 223162ms total)
T11F4 6161:607 JLINK_ReadReg(R11) -- CPU is running
  ***** Error: Can not read register 11 (R11) while CPU is running  returns 0x00000000 (0001ms, 223163ms total)
T11F4 6161:608 JLINK_ReadReg(R12) -- CPU is running
  ***** Error: Can not read register 12 (R12) while CPU is running  returns 0x00000000 (0001ms, 223164ms total)
T11F4 6161:610 JLINK_ReadReg(R13 (SP)) -- CPU is running
  ***** Error: Can not read register 13 (R13) while CPU is running  returns 0x00000000 (0001ms, 223165ms total)
T11F4 6161:611 JLINK_ReadReg(R14) -- CPU is running
  ***** Error: Can not read register 14 (R14) while CPU is running  returns 0x00000000 (0304ms, 223469ms total)
T11F4 6161:915 JLINK_ReadReg(R15 (PC)) -- CPU is running
  ***** Error: Can not read register 15 (R15) while CPU is running  returns 0x00000000 (0504ms, 223973ms total)
T11F4 6162:420 JLINK_ReadReg(XPSR) -- CPU is running
  ***** Error: Can not read register 16 (XPSR) while CPU is running  returns 0x00000000 (0186ms, 224159ms total)
T11F4 6162:607 JLINK_ReadReg(MSP) -- CPU is running
  ***** Error: Can not read register 17 (MSP) while CPU is running  returns 0x00000000 (0002ms, 224161ms total)
T11F4 6162:609 JLINK_ReadReg(PSP) -- CPU is running
  ***** Error: Can not read register 18 (PSP) while CPU is running  returns 0x00000000 (0001ms, 224162ms total)
T11F4 6162:610 JLINK_ReadReg(CFBP) -- CPU is running
  ***** Error: Can not read register 20 (CFBP) while CPU is running  returns 0x00000000 (0001ms, 224163ms total)
T2410 6162:612 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: AA  returns 0xFFFFFFFF (0101ms, 224264ms total)
T2410 6162:713 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: AA  returns 0xFFFFFFFF (0304ms, 224568ms total)
T2410 6163:017 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: AA  returns 0xFFFFFFFF (0304ms, 224872ms total)
T2410 6163:322 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: AA  returns 0xFFFFFFFF (0279ms, 225151ms total)
T2410 6163:601 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 225152ms total)
T2410 6163:602 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0002ms, 225154ms total)
T2410 6163:604 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 225155ms total)
T2410 6163:605 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 80 41  returns 0x04 (0001ms, 225156ms total)
T2410 6163:607 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0020ms, 225176ms total)
T2410 6163:627 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0002ms, 225178ms total)
T2410 6163:629 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: D0 49 0E 00  returns 0x04 (0001ms, 225179ms total)
T2410 6163:630 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C1 00  returns 0x02 (0002ms, 225181ms total)
T2410 6163:632 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 225182ms total)
T2410 6163:633 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 225183ms total)
T2410 6163:634 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 225184ms total)
T2410 6163:635 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225185ms total)
T2410 6163:636 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0002ms, 225187ms total)
T2410 6163:638 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0000ms, 225187ms total)
T2410 6163:639 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 80 4E 0E 00  returns 0x04 (0001ms, 225189ms total)
T2410 6163:640 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 02 78 00 00  returns 0x04 (0001ms, 225190ms total)
T2410 6163:641 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 225191ms total)
T2410 6163:642 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 225192ms total)
T2410 6163:643 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 225193ms total)
T2410 6163:644 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: D0 49 0E 00  returns 0x04 (0001ms, 225194ms total)
T2410 6163:645 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C1 00  returns 0x02 (0001ms, 225195ms total)
T2410 6163:646 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 225196ms total)
T2410 6163:647 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 225197ms total)
T2410 6163:648 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 225198ms total)
T2410 6163:649 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: D8 03  returns 0x02 (0001ms, 225199ms total)
T2410 6163:650 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 225200ms total)
T2410 6163:651 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225201ms total)
T2410 6163:652 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 225202ms total)
T2410 6163:653 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0000ms, 225202ms total)
T2410 6163:654 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 225202ms total)
T2410 6163:659 JLINK_ReadMemEx(0x00000000, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000000) - Data: 30 11 00 20 D5 00 00 08 3D 20 00 08 D9 1A 00 08 ...  returns 0x3C (0001ms, 225203ms total)
T2410 6163:660 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 30 11  returns 0x02 (0001ms, 225204ms total)
T2410 6163:661 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: 00 20  returns 0x02 (0002ms, 225206ms total)
T2410 6163:663 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: 00 20  returns 0x02 (0000ms, 225206ms total)
T2410 6163:663 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 (0002ms, 225208ms total)
T2410 6163:665 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: D5 00  returns 0x02 (0000ms, 225208ms total)
T2410 6163:665 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 (0003ms, 225211ms total)
T2410 6163:668 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: D5 00  returns 0x02 (0000ms, 225211ms total)
T2410 6163:668 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: 00 08  returns 0x02 (0001ms, 225212ms total)
T2410 6163:669 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: 00 08  returns 0x02 (0001ms, 225213ms total)
T2410 6163:670 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, 225215ms total)
T2410 6163:672 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: 3D 20  returns 0x02 (0000ms, 225215ms total)
T2410 6169:210 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 225215ms total)
T2410 6169:210 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) (0450ms, 225665ms total)
T2410 6169:661 JLINK_ReadReg(R15 (PC))  returns 0x080055C0 (0000ms, 225665ms total)
T2410 6169:661 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 225665ms total)
T2410 6169:663 JLINK_ReadMemEx(0x080055C0, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x080055C0) -- Updating C cache (64 bytes @ 0x080055C0) -- 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 (0002ms, 225667ms total)
T2410 6169:665 JLINK_ReadMemEx(0x080055C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055C0) - Data: B5 41  returns 0x02 (0000ms, 225667ms total)
T2410 6169:665 JLINK_ReadMemEx(0x080055C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055C2) - Data: 06 D3  returns 0x02 (0000ms, 225667ms total)
T2410 6169:665 JLINK_ReadMemEx(0x080055C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055C2) - Data: 06 D3  returns 0x02 (0000ms, 225667ms total)
T2410 6169:665 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, 225667ms total)
T2410 6169:665 JLINK_ReadMemEx(0x080055C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055C4) - Data: 65 46  returns 0x02 (0000ms, 225667ms total)
T2410 6169:665 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, 225667ms total)
T2410 6169:665 JLINK_ReadMemEx(0x080055C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055C4) - Data: 65 46  returns 0x02 (0000ms, 225667ms total)
T2410 6169:665 JLINK_ReadMemEx(0x080055C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055C6) - Data: 52 1B  returns 0x02 (0000ms, 225667ms total)
T2410 6169:665 JLINK_ReadMemEx(0x080055C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055C6) - Data: 52 1B  returns 0x02 (0000ms, 225667ms total)
T2410 6169:665 JLINK_ReadMemEx(0x080055C8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08005600) -- Updating C cache (64 bytes @ 0x08005600) -- Read from C cache (60 bytes @ 0x080055C8) - Data: B3 41 74 46 07 43 0C 43 A6 46 CD 07 40 08 49 08 ...  returns 0x3C (0002ms, 225669ms total)
T2410 6169:667 JLINK_ReadMemEx(0x080055C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055C8) - Data: B3 41  returns 0x02 (0000ms, 225669ms total)
T2410 6169:697 JLINK_ReadReg(R0)  returns 0x00000000 (0001ms, 225670ms total)
T2410 6169:698 JLINK_ReadReg(R1)  returns 0x00001000 (0000ms, 225670ms total)
T2410 6169:698 JLINK_ReadReg(R2)  returns 0x2F1AA000 (0000ms, 225670ms total)
T2410 6169:698 JLINK_ReadReg(R3)  returns 0x002F34DD (0000ms, 225670ms total)
T2410 6169:698 JLINK_ReadReg(R4)  returns 0x2F1AA000 (0000ms, 225670ms total)
T2410 6169:698 JLINK_ReadReg(R5)  returns 0x002F34DD (0000ms, 225670ms total)
T2410 6169:698 JLINK_ReadReg(R6)  returns 0x001F4000 (0000ms, 225670ms total)
T2410 6169:698 JLINK_ReadReg(R7)  returns 0x00000000 (0000ms, 225670ms total)
T2410 6169:698 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 225670ms total)
T2410 6169:698 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 225670ms total)
T2410 6169:698 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 225670ms total)
T2410 6169:698 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 225670ms total)
T2410 6169:698 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 225670ms total)
T2410 6169:698 JLINK_ReadReg(R13 (SP))  returns 0x20001A48 (0000ms, 225670ms total)
T2410 6169:698 JLINK_ReadReg(R14)  returns 0x00156000 (0000ms, 225670ms total)
T2410 6169:698 JLINK_ReadReg(R15 (PC))  returns 0x080055C0 (0000ms, 225670ms total)
T2410 6169:698 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 225670ms total)
T2410 6169:698 JLINK_ReadReg(MSP)  returns 0x20001A48 (0000ms, 225670ms total)
T2410 6169:698 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 225670ms total)
T2410 6169:698 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 225670ms total)
T2410 6169:698 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000040) -- Updating C cache (64 bytes @ 0x20000040) -- Read from C cache (1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0002ms, 225672ms total)
T2410 6169:700 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 225672ms total)
T2410 6169:700 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(64 bytes @ 0x08000000) -- Updating C cache (64 bytes @ 0x08000000) -- Read from C cache (4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0003ms, 225675ms total)
T2410 6169:703 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000100) -- Updating C cache (64 bytes @ 0x20000100) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0002ms, 225677ms total)
T2410 6169:705 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 225677ms total)
T2410 6169:705 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0003ms, 225680ms total)
T2410 6169:708 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 00 00 00 00  returns 0x04 (0000ms, 225680ms total)
T2410 6169:708 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200000C0) -- Updating C cache (64 bytes @ 0x200000C0) -- Read from C cache (2 bytes @ 0x200000FA) - Data: 00 00  returns 0x02 (0002ms, 225682ms total)
T2410 6169:710 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 225682ms total)
T2410 6169:710 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 225682ms total)
T2410 6169:711 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000080) -- Updating C cache (64 bytes @ 0x20000080) -- Read from C cache (4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0002ms, 225684ms total)
T2410 6169:713 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 225684ms total)
T2410 6169:713 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0000ms, 225684ms total)
T2410 6169:714 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0000ms, 225685ms total)
T2410 6169:714 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000010C) - Data: 00 00 00 00  returns 0x04 (0000ms, 225685ms total)
T2410 6169:714 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000108) - Data: 00 00 00 00  returns 0x04 (0000ms, 225685ms total)
T2410 6169:714 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0000ms, 225685ms total)
T2410 6169:714 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 225685ms total)
T2410 6169:714 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 225685ms total)
T2410 6169:715 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000110) - Data: 00 00 00 00  returns 0x04 (0000ms, 225685ms total)
T2410 6169:715 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000FA) - Data: 00 00  returns 0x02 (0000ms, 225685ms total)
T2410 6169:715 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0000ms, 225685ms total)
T2410 6169:716 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 225685ms total)
T2410 6169:716 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0000ms, 225685ms total)
T2410 6169:716 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000F0) - Data: 2A 00  returns 0x02 (0000ms, 225685ms total)
T2410 6169:716 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0000ms, 225685ms total)
T2410 6169:716 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 225685ms total)
T2410 6169:716 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 225685ms total)
T2410 6169:716 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0000ms, 225685ms total)
T2410 6169:717 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0000ms, 225686ms total)
T11F4 6169:728 JLINK_ReadMemEx(0x080055C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080055C0) - Data: B5 41  returns 0x02 (0001ms, 225687ms total)
T11F4 6169:729 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) (0004ms, 225691ms total)
T11F4 6169:835 JLINK_IsHalted()  returns FALSE (0001ms, 225692ms total)
T11F4 6169:937 JLINK_IsHalted()  returns FALSE (0001ms, 225692ms total)
T11F4 6170:038 JLINK_IsHalted()  returns FALSE (0002ms, 225693ms total)
T11F4 6170:140 JLINK_IsHalted()  returns FALSE (0001ms, 225692ms total)
T11F4 6170:242 JLINK_IsHalted()  returns FALSE (0001ms, 225692ms total)
T2410 6170:344 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 225692ms total)
T2410 6170:345 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 225692ms total)
T2410 6170:346 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x40023844) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0002ms, 225694ms total)
T2410 6170:348 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0001ms, 225695ms total)
T2410 6170:349 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225696ms total)
T2410 6170:350 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 225697ms total)
T2410 6170:351 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 CD 0E 00  returns 0x04 (0001ms, 225698ms total)
T2410 6170:352 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C8 00  returns 0x02 (0002ms, 225700ms total)
T2410 6170:354 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 225701ms total)
T2410 6170:355 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 225702ms total)
T2410 6170:356 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0000ms, 225702ms total)
T2410 6170:356 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0002ms, 225704ms total)
T2410 6170:358 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0002ms, 225706ms total)
T2410 6170:360 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0000ms, 225706ms total)
T2410 6170:360 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: C0 D1 0E 00  returns 0x04 (0002ms, 225708ms total)
T2410 6170:362 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 4F 7C 00 00  returns 0x04 (0000ms, 225708ms total)
T2410 6170:362 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0002ms, 225710ms total)
T2410 6170:364 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 225710ms total)
T2410 6170:364 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0002ms, 225712ms total)
T2410 6170:366 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 CD 0E 00  returns 0x04 (0000ms, 225712ms total)
T2410 6170:366 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C8 00  returns 0x02 (0001ms, 225713ms total)
T2410 6170:367 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0002ms, 225715ms total)
T2410 6170:369 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 225716ms total)
T2410 6170:370 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 225717ms total)
T2410 6170:371 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 02 03  returns 0x02 (0001ms, 225718ms total)
T2410 6170:372 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 225719ms total)
T2410 6170:373 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225720ms total)
T2410 6170:374 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 225721ms total)
T2410 6170:375 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0000ms, 225721ms total)
T2410 6170:375 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 00  returns 0x04 (0001ms, 225722ms total)
T11F4 6170:376 JLINK_IsHalted()  returns FALSE (0001ms, 225723ms total)
T11F4 6170:478 JLINK_IsHalted()  returns FALSE (0001ms, 225723ms total)
T11F4 6170:580 JLINK_IsHalted()  returns FALSE (0000ms, 225722ms total)
T11F4 6170:681 JLINK_IsHalted()  returns FALSE (0002ms, 225724ms total)
T11F4 6170:783 JLINK_IsHalted()  returns FALSE (0001ms, 225723ms total)
T2410 6170:885 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 225723ms total)
T2410 6170:886 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 225724ms total)
T2410 6170:887 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 225725ms total)
T2410 6170:889 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 80 3F  returns 0x04 (0001ms, 225726ms total)
T2410 6170:890 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225727ms total)
T2410 6170:891 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 225728ms total)
T2410 6170:892 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 CD 0E 00  returns 0x04 (0001ms, 225729ms total)
T2410 6170:893 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C8 00  returns 0x02 (0001ms, 225730ms total)
T2410 6170:895 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 225731ms total)
T2410 6170:896 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 225732ms total)
T2410 6170:897 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 225733ms total)
T2410 6170:898 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225734ms total)
T2410 6170:899 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 225735ms total)
T2410 6170:900 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 225736ms total)
T2410 6170:901 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: C0 D1 0E 00  returns 0x04 (0001ms, 225737ms total)
T2410 6170:902 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 4F 7C 00 00  returns 0x04 (0001ms, 225738ms total)
T2410 6170:903 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 225739ms total)
T2410 6170:904 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 225740ms total)
T2410 6170:905 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 225741ms total)
T2410 6170:906 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 CD 0E 00  returns 0x04 (0000ms, 225741ms total)
T2410 6170:907 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C8 00  returns 0x02 (0000ms, 225741ms total)
T2410 6170:908 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0000ms, 225741ms total)
T2410 6170:909 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 225742ms total)
T2410 6170:910 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 225743ms total)
T2410 6170:911 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 36 01  returns 0x02 (0000ms, 225743ms total)
T2410 6170:911 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0002ms, 225745ms total)
T2410 6170:913 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 225745ms total)
T2410 6170:913 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 225745ms total)
T2410 6170:913 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0002ms, 225747ms total)
T2410 6170:915 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 80 3F  returns 0x04 (0000ms, 225747ms total)
T11F4 6170:915 JLINK_IsHalted()  returns FALSE (0002ms, 225749ms total)
T11F4 6171:017 JLINK_IsHalted()  returns FALSE (0001ms, 225748ms total)
T11F4 6171:119 JLINK_IsHalted()  returns FALSE (0001ms, 225748ms total)
T11F4 6171:221 JLINK_IsHalted()  returns FALSE (0001ms, 225748ms total)
T11F4 6171:323 JLINK_IsHalted()  returns FALSE (0001ms, 225748ms total)
T2410 6171:424 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 225748ms total)
T2410 6171:425 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0002ms, 225750ms total)
T2410 6171:427 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 225751ms total)
T2410 6171:428 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 80 3F  returns 0x04 (0002ms, 225753ms total)
T2410 6171:430 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225754ms total)
T2410 6171:431 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 225755ms total)
T2410 6171:432 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 CD 0E 00  returns 0x04 (0002ms, 225757ms total)
T2410 6171:434 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C8 00  returns 0x02 (0000ms, 225757ms total)
T2410 6171:434 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0002ms, 225759ms total)
T2410 6171:436 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 225760ms total)
T2410 6171:437 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 225761ms total)
T2410 6171:438 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225762ms total)
T2410 6171:439 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0002ms, 225764ms total)
T2410 6171:441 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 225765ms total)
T2410 6171:442 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: C0 D1 0E 00  returns 0x04 (0000ms, 225765ms total)
T2410 6171:442 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 4F 7C 00 00  returns 0x04 (0001ms, 225766ms total)
T2410 6171:443 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 225767ms total)
T2410 6171:444 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 225768ms total)
T2410 6171:445 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 225769ms total)
T2410 6171:446 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 CD 0E 00  returns 0x04 (0001ms, 225770ms total)
T2410 6171:447 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C8 00  returns 0x02 (0001ms, 225771ms total)
T2410 6171:448 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 225772ms total)
T2410 6171:450 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 225773ms total)
T2410 6171:451 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0000ms, 225773ms total)
T2410 6171:451 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 53 03  returns 0x02 (0002ms, 225775ms total)
T2410 6171:453 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 225776ms total)
T2410 6171:454 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225777ms total)
T2410 6171:455 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 225777ms total)
T2410 6171:455 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 225778ms total)
T2410 6171:456 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 80 3F  returns 0x04 (0001ms, 225779ms total)
T11F4 6171:457 JLINK_IsHalted()  returns FALSE (0001ms, 225780ms total)
T11F4 6171:559 JLINK_IsHalted()  returns FALSE (0001ms, 225780ms total)
T11F4 6171:661 JLINK_IsHalted()  returns FALSE (0001ms, 225780ms total)
T11F4 6171:762 JLINK_IsHalted()  returns FALSE (0001ms, 225780ms total)
T11F4 6171:864 JLINK_IsHalted()  returns FALSE (0002ms, 225781ms total)
T2410 6171:966 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 225780ms total)
T2410 6171:967 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 225781ms total)
T2410 6171:968 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0002ms, 225783ms total)
T2410 6171:970 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 40  returns 0x04 (0001ms, 225784ms total)
T2410 6171:971 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225785ms total)
T2410 6171:972 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 225786ms total)
T2410 6171:973 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 50 BA 0E 00  returns 0x04 (0001ms, 225787ms total)
T2410 6171:975 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C7 00  returns 0x02 (0001ms, 225788ms total)
T2410 6171:976 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 225789ms total)
T2410 6171:977 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 225790ms total)
T2410 6171:979 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0000ms, 225790ms total)
T2410 6171:979 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225791ms total)
T2410 6171:981 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 225792ms total)
T2410 6171:982 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 225793ms total)
T2410 6171:983 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 00 BF 0E 00  returns 0x04 (0000ms, 225793ms total)
T2410 6171:984 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: B2 7B 00 00  returns 0x04 (0000ms, 225793ms total)
T2410 6171:985 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0000ms, 225793ms total)
T2410 6171:985 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 225794ms total)
T2410 6171:986 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 225795ms total)
T2410 6171:987 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 50 BA 0E 00  returns 0x04 (0001ms, 225796ms total)
T2410 6171:988 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C7 00  returns 0x02 (0001ms, 225797ms total)
T2410 6171:989 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 225798ms total)
T2410 6171:991 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 225799ms total)
T2410 6171:992 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0000ms, 225799ms total)
T2410 6171:992 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 88 01  returns 0x02 (0001ms, 225800ms total)
T2410 6171:994 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0000ms, 225800ms total)
T2410 6171:994 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225801ms total)
T2410 6171:995 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 225802ms total)
T2410 6171:996 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 225803ms total)
T2410 6171:997 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 40  returns 0x04 (0001ms, 225804ms total)
T11F4 6171:998 JLINK_IsHalted()  returns FALSE (0001ms, 225805ms total)
T11F4 6172:100 JLINK_IsHalted()  returns FALSE (0000ms, 225804ms total)
T11F4 6172:201 JLINK_IsHalted()  returns FALSE (0000ms, 225804ms total)
T11F4 6172:303 JLINK_IsHalted()  returns FALSE (0001ms, 225805ms total)
T11F4 6172:405 JLINK_IsHalted()  returns FALSE (0000ms, 225804ms total)
T2410 6172:507 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0000ms, 225804ms total)
T2410 6172:507 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0002ms, 225806ms total)
T2410 6172:509 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0000ms, 225806ms total)
T2410 6172:509 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 40  returns 0x04 (0002ms, 225808ms total)
T2410 6172:511 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225809ms total)
T2410 6172:512 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 225810ms total)
T2410 6172:513 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 50 BA 0E 00  returns 0x04 (0002ms, 225812ms total)
T2410 6172:515 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C7 00  returns 0x02 (0001ms, 225813ms total)
T2410 6172:516 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 225814ms total)
T2410 6172:517 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 225815ms total)
T2410 6172:519 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 225816ms total)
T2410 6172:520 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225817ms total)
T2410 6172:521 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 225818ms total)
T2410 6172:522 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 225819ms total)
T2410 6172:523 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 00 BF 0E 00  returns 0x04 (0001ms, 225820ms total)
T2410 6172:524 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: B2 7B 00 00  returns 0x04 (0002ms, 225822ms total)
T2410 6172:526 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0000ms, 225822ms total)
T2410 6172:526 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0002ms, 225824ms total)
T2410 6172:528 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 225824ms total)
T2410 6172:528 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 50 BA 0E 00  returns 0x04 (0002ms, 225826ms total)
T2410 6172:530 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C7 00  returns 0x02 (0000ms, 225826ms total)
T2410 6172:530 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0002ms, 225828ms total)
T2410 6172:532 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 225828ms total)
T2410 6172:532 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0002ms, 225830ms total)
T2410 6172:534 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: A5 03  returns 0x02 (0000ms, 225830ms total)
T2410 6172:535 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 225831ms total)
T2410 6172:536 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225832ms total)
T2410 6172:537 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 225833ms total)
T2410 6172:538 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0000ms, 225833ms total)
T2410 6172:538 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 40  returns 0x04 (0002ms, 225835ms total)
T11F4 6172:540 JLINK_IsHalted()  returns FALSE (0000ms, 225835ms total)
T11F4 6172:641 JLINK_IsHalted()  returns FALSE (0001ms, 225836ms total)
T11F4 6172:743 JLINK_IsHalted()  returns FALSE (0001ms, 225836ms total)
T11F4 6172:845 JLINK_IsHalted()  returns FALSE (0000ms, 225835ms total)
T11F4 6172:946 JLINK_IsHalted()  returns FALSE (0002ms, 225837ms total)
T2410 6173:048 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 225836ms total)
T2410 6173:049 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 225837ms total)
T2410 6173:050 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 225838ms total)
T2410 6173:051 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 40 40  returns 0x04 (0001ms, 225839ms total)
T2410 6173:053 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225840ms total)
T2410 6173:054 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 225841ms total)
T2410 6173:055 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 50 BA 0E 00  returns 0x04 (0000ms, 225841ms total)
T2410 6173:056 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C7 00  returns 0x02 (0000ms, 225841ms total)
T2410 6173:056 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 225842ms total)
T2410 6173:057 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0002ms, 225844ms total)
T2410 6173:059 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 225845ms total)
T2410 6173:060 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225846ms total)
T2410 6173:061 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 225847ms total)
T2410 6173:062 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 225848ms total)
T2410 6173:063 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 00 BF 0E 00  returns 0x04 (0001ms, 225849ms total)
T2410 6173:064 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: B2 7B 00 00  returns 0x04 (0001ms, 225850ms total)
T2410 6173:065 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 225851ms total)
T2410 6173:066 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 225851ms total)
T2410 6173:066 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 225852ms total)
T2410 6173:067 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 50 BA 0E 00  returns 0x04 (0001ms, 225853ms total)
T2410 6173:068 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C7 00  returns 0x02 (0001ms, 225854ms total)
T2410 6173:069 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 225855ms total)
T2410 6173:070 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 225856ms total)
T2410 6173:071 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 225857ms total)
T2410 6173:072 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: D8 01  returns 0x02 (0001ms, 225858ms total)
T2410 6173:073 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 225859ms total)
T2410 6173:074 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225860ms total)
T2410 6173:075 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 225861ms total)
T2410 6173:076 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 225862ms total)
T2410 6173:077 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 40 40  returns 0x04 (0001ms, 225863ms total)
T11F4 6173:078 JLINK_IsHalted()  returns FALSE (0001ms, 225864ms total)
T11F4 6173:180 JLINK_IsHalted()  returns FALSE (0001ms, 225864ms total)
T11F4 6173:281 JLINK_IsHalted()  returns FALSE (0002ms, 225865ms total)
T11F4 6173:383 JLINK_IsHalted()  returns FALSE (0001ms, 225864ms total)
T11F4 6173:485 JLINK_IsHalted()  returns FALSE (0001ms, 225864ms total)
T2410 6173:587 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 225864ms total)
T2410 6173:588 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 225864ms total)
T2410 6173:589 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 225865ms total)
T2410 6173:590 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 80 40  returns 0x04 (0001ms, 225866ms total)
T2410 6173:592 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0002ms, 225868ms total)
T2410 6173:594 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0000ms, 225868ms total)
T2410 6173:594 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 90 A7 0E 00  returns 0x04 (0001ms, 225869ms total)
T2410 6173:596 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C6 00  returns 0x02 (0001ms, 225870ms total)
T2410 6173:597 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 225871ms total)
T2410 6173:598 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0002ms, 225873ms total)
T2410 6173:600 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0002ms, 225875ms total)
T2410 6173:602 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 225875ms total)
T2410 6173:602 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0002ms, 225877ms total)
T2410 6173:604 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0000ms, 225877ms total)
T2410 6173:604 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 40 AC 0E 00  returns 0x04 (0001ms, 225878ms total)
T2410 6173:605 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 15 7B 00 00  returns 0x04 (0001ms, 225879ms total)
T2410 6173:606 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 225880ms total)
T2410 6173:607 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 225881ms total)
T2410 6173:608 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 225882ms total)
T2410 6173:609 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 90 A7 0E 00  returns 0x04 (0002ms, 225884ms total)
T2410 6173:611 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C6 00  returns 0x02 (0000ms, 225884ms total)
T2410 6173:611 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 225885ms total)
T2410 6173:613 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 225886ms total)
T2410 6173:614 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 225887ms total)
T2410 6173:615 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 0F 00  returns 0x02 (0000ms, 225887ms total)
T2410 6173:616 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 225888ms total)
T2410 6173:617 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0002ms, 225890ms total)
T2410 6173:619 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 225891ms total)
T2410 6173:620 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 225892ms total)
T2410 6173:621 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 80 40  returns 0x04 (0001ms, 225893ms total)
T11F4 6173:624 JLINK_IsHalted()  returns FALSE (0000ms, 225893ms total)
T11F4 6173:725 JLINK_IsHalted()  returns FALSE (0001ms, 225894ms total)
T11F4 6173:827 JLINK_IsHalted()  returns FALSE (0001ms, 225894ms total)
T11F4 6173:929 JLINK_IsHalted()  returns FALSE (0001ms, 225894ms total)
T11F4 6174:030 JLINK_IsHalted()  returns FALSE (0002ms, 225895ms total)
T2410 6174:132 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0002ms, 225895ms total)
T2410 6174:134 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 225896ms total)
T2410 6174:135 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 225897ms total)
T2410 6174:136 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 80 40  returns 0x04 (0001ms, 225898ms total)
T2410 6174:137 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225899ms total)
T2410 6174:138 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 225900ms total)
T2410 6174:139 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 90 A7 0E 00  returns 0x04 (0001ms, 225901ms total)
T2410 6174:140 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C6 00  returns 0x02 (0002ms, 225903ms total)
T2410 6174:142 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 225903ms total)
T2410 6174:142 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0002ms, 225905ms total)
T2410 6174:144 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 225906ms total)
T2410 6174:145 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225907ms total)
T2410 6174:146 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0002ms, 225909ms total)
T2410 6174:148 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 225910ms total)
T2410 6174:149 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 40 AC 0E 00  returns 0x04 (0001ms, 225911ms total)
T2410 6174:150 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 15 7B 00 00  returns 0x04 (0001ms, 225912ms total)
T2410 6174:151 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 225913ms total)
T2410 6174:152 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 225914ms total)
T2410 6174:153 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 225915ms total)
T2410 6174:154 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 90 A7 0E 00  returns 0x04 (0001ms, 225916ms total)
T2410 6174:155 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C6 00  returns 0x02 (0001ms, 225917ms total)
T2410 6174:156 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 225918ms total)
T2410 6174:157 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 225919ms total)
T2410 6174:158 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 225920ms total)
T2410 6174:159 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 2E 02  returns 0x02 (0001ms, 225921ms total)
T2410 6174:160 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 225922ms total)
T2410 6174:161 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225923ms total)
T2410 6174:162 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 225924ms total)
T2410 6174:163 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 225925ms total)
T2410 6174:164 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 80 40  returns 0x04 (0001ms, 225926ms total)
T11F4 6174:165 JLINK_IsHalted()  returns FALSE (0001ms, 225927ms total)
T11F4 6174:267 JLINK_IsHalted()  returns FALSE (0001ms, 225927ms total)
T11F4 6174:368 JLINK_IsHalted()  returns FALSE (0002ms, 225928ms total)
T11F4 6174:470 JLINK_IsHalted()  returns FALSE (0000ms, 225926ms total)
T11F4 6174:571 JLINK_IsHalted()  returns FALSE (0001ms, 225927ms total)
T2410 6174:687 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 225927ms total)
T2410 6174:689 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 225928ms total)
T2410 6174:689 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0002ms, 225930ms total)
T2410 6174:691 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 A0 40  returns 0x04 (0000ms, 225930ms total)
T2410 6174:691 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0002ms, 225932ms total)
T2410 6174:693 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0000ms, 225932ms total)
T2410 6174:693 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 90 A7 0E 00  returns 0x04 (0001ms, 225933ms total)
T2410 6174:694 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C6 00  returns 0x02 (0001ms, 225934ms total)
T2410 6174:696 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 225934ms total)
T2410 6174:696 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 225935ms total)
T2410 6174:697 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 225936ms total)
T2410 6174:698 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0002ms, 225938ms total)
T2410 6174:700 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0000ms, 225938ms total)
T2410 6174:700 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0002ms, 225940ms total)
T2410 6174:702 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 40 AC 0E 00  returns 0x04 (0000ms, 225940ms total)
T2410 6174:702 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 15 7B 00 00  returns 0x04 (0002ms, 225942ms total)
T2410 6174:704 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0000ms, 225942ms total)
T2410 6174:704 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 225942ms total)
T2410 6174:704 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0002ms, 225944ms total)
T2410 6174:706 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 90 A7 0E 00  returns 0x04 (0000ms, 225944ms total)
T2410 6174:706 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C6 00  returns 0x02 (0001ms, 225945ms total)
T2410 6174:707 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 225946ms total)
T2410 6174:708 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 225947ms total)
T2410 6174:709 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0002ms, 225949ms total)
T2410 6174:711 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 6E 00  returns 0x02 (0000ms, 225949ms total)
T2410 6174:711 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 225950ms total)
T2410 6174:712 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225951ms total)
T2410 6174:713 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 225952ms total)
T2410 6174:714 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 225953ms total)
T2410 6174:715 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 A0 40  returns 0x04 (0002ms, 225955ms total)
T11F4 6174:717 JLINK_IsHalted()  returns FALSE (0001ms, 225956ms total)
T11F4 6174:818 JLINK_IsHalted()  returns FALSE (0001ms, 225956ms total)
T11F4 6174:920 JLINK_IsHalted()  returns FALSE (0001ms, 225956ms total)
T11F4 6175:022 JLINK_IsHalted()  returns FALSE (0000ms, 225955ms total)
T11F4 6175:123 JLINK_IsHalted()  returns FALSE (0000ms, 225955ms total)
T2410 6175:224 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 225956ms total)
T2410 6175:225 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 225957ms total)
T2410 6175:226 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 225958ms total)
T2410 6175:227 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 A0 40  returns 0x04 (0002ms, 225960ms total)
T2410 6175:229 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225961ms total)
T2410 6175:230 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 225962ms total)
T2410 6175:231 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 90 A7 0E 00  returns 0x04 (0001ms, 225963ms total)
T2410 6175:232 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C6 00  returns 0x02 (0001ms, 225964ms total)
T2410 6175:233 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 225965ms total)
T2410 6175:234 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 225966ms total)
T2410 6175:235 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 225967ms total)
T2410 6175:236 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0002ms, 225969ms total)
T2410 6175:238 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 225970ms total)
T2410 6175:239 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 225971ms total)
T2410 6175:240 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 40 AC 0E 00  returns 0x04 (0000ms, 225971ms total)
T2410 6175:240 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 15 7B 00 00  returns 0x04 (0002ms, 225973ms total)
T2410 6175:242 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0000ms, 225973ms total)
T2410 6175:242 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 225974ms total)
T2410 6175:243 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 225975ms total)
T2410 6175:244 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 90 A7 0E 00  returns 0x04 (0001ms, 225976ms total)
T2410 6175:245 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C6 00  returns 0x02 (0000ms, 225976ms total)
T2410 6175:245 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0002ms, 225978ms total)
T2410 6175:247 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 225979ms total)
T2410 6175:248 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 225980ms total)
T2410 6175:249 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 88 02  returns 0x02 (0000ms, 225980ms total)
T2410 6175:250 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 225981ms total)
T2410 6175:251 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225982ms total)
T2410 6175:252 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 225982ms total)
T2410 6175:252 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0002ms, 225984ms total)
T2410 6175:254 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 A0 40  returns 0x04 (0000ms, 225984ms total)
T11F4 6175:255 JLINK_IsHalted()  returns FALSE (0001ms, 225985ms total)
T11F4 6175:357 JLINK_IsHalted()  returns FALSE (0001ms, 225985ms total)
T11F4 6175:459 JLINK_IsHalted()  returns FALSE (0000ms, 225984ms total)
T11F4 6175:560 JLINK_IsHalted()  returns FALSE (0002ms, 225986ms total)
T11F4 6175:662 JLINK_IsHalted()  returns FALSE (0001ms, 225985ms total)
T2410 6175:764 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 225985ms total)
T2410 6175:765 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 225986ms total)
T2410 6175:766 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 225987ms total)
T2410 6175:767 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 C0 40  returns 0x04 (0001ms, 225988ms total)
T2410 6175:769 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 225989ms total)
T2410 6175:770 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 225990ms total)
T2410 6175:771 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: D0 94 0E 00  returns 0x04 (0001ms, 225991ms total)
T2410 6175:772 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C5 00  returns 0x02 (0000ms, 225991ms total)
T2410 6175:774 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 225991ms total)
T2410 6175:774 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0000ms, 225991ms total)
T2410 6175:776 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0000ms, 225992ms total)
T2410 6175:776 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0002ms, 225994ms total)
T2410 6175:778 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 225995ms total)
T2410 6175:779 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 225996ms total)
T2410 6175:780 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 80 99 0E 00  returns 0x04 (0000ms, 225996ms total)
T2410 6175:780 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 77 7A 00 00  returns 0x04 (0002ms, 225998ms total)
T2410 6175:782 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 225999ms total)
T2410 6175:783 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 226000ms total)
T2410 6175:784 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 226001ms total)
T2410 6175:785 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: D0 94 0E 00  returns 0x04 (0000ms, 226001ms total)
T2410 6175:785 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C5 00  returns 0x02 (0001ms, 226002ms total)
T2410 6175:786 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 226003ms total)
T2410 6175:787 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0002ms, 226005ms total)
T2410 6175:789 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 226006ms total)
T2410 6175:790 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: BD 00  returns 0x02 (0000ms, 226006ms total)
T2410 6175:790 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 226007ms total)
T2410 6175:791 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0002ms, 226009ms total)
T2410 6175:793 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 226010ms total)
T2410 6175:794 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0000ms, 226010ms total)
T2410 6175:794 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 C0 40  returns 0x04 (0001ms, 226011ms total)
T11F4 6175:796 JLINK_IsHalted()  returns FALSE (0000ms, 226011ms total)
T11F4 6175:897 JLINK_IsHalted()  returns FALSE (0001ms, 226012ms total)
T11F4 6175:999 JLINK_IsHalted()  returns FALSE (0001ms, 226012ms total)
T11F4 6176:101 JLINK_IsHalted()  returns FALSE (0001ms, 226012ms total)
T11F4 6176:202 JLINK_IsHalted()  returns FALSE (0001ms, 226012ms total)
T2410 6176:304 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 226012ms total)
T2410 6176:305 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0002ms, 226014ms total)
T2410 6176:307 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0000ms, 226014ms total)
T2410 6176:308 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 C0 40  returns 0x04 (0001ms, 226015ms total)
T2410 6176:309 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0002ms, 226017ms total)
T2410 6176:311 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 226018ms total)
T2410 6176:312 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: D0 94 0E 00  returns 0x04 (0001ms, 226019ms total)
T2410 6176:313 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C5 00  returns 0x02 (0001ms, 226020ms total)
T2410 6176:315 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 226021ms total)
T2410 6176:316 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 226022ms total)
T2410 6176:317 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 226023ms total)
T2410 6176:318 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 226024ms total)
T2410 6176:319 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 226025ms total)
T2410 6176:320 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 226026ms total)
T2410 6176:321 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 80 99 0E 00  returns 0x04 (0001ms, 226027ms total)
T2410 6176:322 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 77 7A 00 00  returns 0x04 (0001ms, 226028ms total)
T2410 6176:324 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 226029ms total)
T2410 6176:325 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 226029ms total)
T2410 6176:325 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 226030ms total)
T2410 6176:326 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: D0 94 0E 00  returns 0x04 (0001ms, 226031ms total)
T2410 6176:327 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C5 00  returns 0x02 (0002ms, 226033ms total)
T2410 6176:329 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 226034ms total)
T2410 6176:330 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 226035ms total)
T2410 6176:331 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0002ms, 226037ms total)
T2410 6176:333 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: DC 02  returns 0x02 (0000ms, 226037ms total)
T2410 6176:334 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 226038ms total)
T2410 6176:335 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 226038ms total)
T2410 6176:335 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 226039ms total)
T2410 6176:336 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 226040ms total)
T2410 6176:337 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 C0 40  returns 0x04 (0001ms, 226041ms total)
T11F4 6176:338 JLINK_IsHalted()  returns FALSE (0001ms, 226042ms total)
T11F4 6176:440 JLINK_IsHalted()  returns FALSE (0001ms, 226042ms total)
T11F4 6176:542 JLINK_IsHalted()  returns FALSE (0001ms, 226042ms total)
T11F4 6176:643 JLINK_IsHalted()  returns FALSE (0001ms, 226042ms total)
T11F4 6176:745 JLINK_IsHalted()  returns FALSE (0001ms, 226042ms total)
T2410 6176:847 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 226042ms total)
T2410 6176:848 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 226043ms total)
T2410 6176:849 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 226044ms total)
T2410 6176:850 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 E0 40  returns 0x04 (0001ms, 226045ms total)
T2410 6176:852 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 226046ms total)
T2410 6176:853 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 226047ms total)
T2410 6176:854 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: D0 94 0E 00  returns 0x04 (0001ms, 226048ms total)
T2410 6176:855 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C5 00  returns 0x02 (0001ms, 226049ms total)
T2410 6176:856 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 226050ms total)
T2410 6176:857 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 226051ms total)
T2410 6176:858 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 226052ms total)
T2410 6176:859 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 226053ms total)
T2410 6176:861 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0000ms, 226053ms total)
T2410 6176:862 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0000ms, 226054ms total)
T2410 6176:862 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 80 99 0E 00  returns 0x04 (0001ms, 226055ms total)
T2410 6176:863 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 77 7A 00 00  returns 0x04 (0001ms, 226056ms total)
T2410 6176:864 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 226057ms total)
T2410 6176:865 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 226058ms total)
T2410 6176:866 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 226059ms total)
T2410 6176:867 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: D0 94 0E 00  returns 0x04 (0001ms, 226060ms total)
T2410 6176:868 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C5 00  returns 0x02 (0000ms, 226060ms total)
T2410 6176:868 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 226061ms total)
T2410 6176:870 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 226062ms total)
T2410 6176:871 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 226063ms total)
T2410 6176:872 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 0F 01  returns 0x02 (0000ms, 226063ms total)
T2410 6176:874 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0000ms, 226063ms total)
T2410 6176:874 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 226064ms total)
T2410 6176:875 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 226065ms total)
T2410 6176:876 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 226066ms total)
T2410 6176:877 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 E0 40  returns 0x04 (0001ms, 226067ms total)
T11F4 6176:878 JLINK_IsHalted()  returns FALSE (0001ms, 226068ms total)
T11F4 6176:979 JLINK_IsHalted()  returns FALSE (0001ms, 226068ms total)
T11F4 6177:081 JLINK_IsHalted()  returns FALSE (0001ms, 226068ms total)
T11F4 6177:183 JLINK_IsHalted()  returns FALSE (0001ms, 226068ms total)
T11F4 6177:285 JLINK_IsHalted()  returns FALSE (0000ms, 226067ms total)
T2410 6177:386 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 226068ms total)
T2410 6177:387 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0002ms, 226070ms total)
T2410 6177:389 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 226071ms total)
T2410 6177:390 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 E0 40  returns 0x04 (0001ms, 226072ms total)
T2410 6177:391 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 226073ms total)
T2410 6177:392 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0002ms, 226075ms total)
T2410 6177:394 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: D0 94 0E 00  returns 0x04 (0000ms, 226075ms total)
T2410 6177:394 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C5 00  returns 0x02 (0002ms, 226077ms total)
T2410 6177:396 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0000ms, 226077ms total)
T2410 6177:396 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0002ms, 226079ms total)
T2410 6177:398 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 226080ms total)
T2410 6177:399 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 226081ms total)
T2410 6177:400 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 226082ms total)
T2410 6177:401 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 226083ms total)
T2410 6177:402 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 80 99 0E 00  returns 0x04 (0001ms, 226084ms total)
T2410 6177:403 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: 77 7A 00 00  returns 0x04 (0001ms, 226085ms total)
T2410 6177:404 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0000ms, 226085ms total)
T2410 6177:404 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 226086ms total)
T2410 6177:405 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 226087ms total)
T2410 6177:406 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: D0 94 0E 00  returns 0x04 (0001ms, 226088ms total)
T2410 6177:407 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C5 00  returns 0x02 (0001ms, 226089ms total)
T2410 6177:408 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 226090ms total)
T2410 6177:409 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 226091ms total)
T2410 6177:410 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0002ms, 226093ms total)
T2410 6177:412 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 2C 03  returns 0x02 (0000ms, 226093ms total)
T2410 6177:412 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 226094ms total)
T2410 6177:413 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 226095ms total)
T2410 6177:414 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0002ms, 226097ms total)
T2410 6177:416 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 226098ms total)
T2410 6177:417 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 E0 40  returns 0x04 (0000ms, 226098ms total)
T11F4 6177:417 JLINK_IsHalted()  returns FALSE (0001ms, 226099ms total)
T11F4 6177:519 JLINK_IsHalted()  returns FALSE (0001ms, 226099ms total)
T11F4 6177:621 JLINK_IsHalted()  returns FALSE (0000ms, 226098ms total)
T11F4 6177:723 JLINK_IsHalted()  returns FALSE (0000ms, 226098ms total)
T11F4 6177:824 JLINK_IsHalted()  returns FALSE (0001ms, 226099ms total)
T2410 6177:926 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0001ms, 226099ms total)
T2410 6177:927 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0002ms, 226101ms total)
T2410 6177:929 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0001ms, 226102ms total)
T2410 6177:930 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 41  returns 0x04 (0001ms, 226103ms total)
T2410 6177:932 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 226104ms total)
T2410 6177:933 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 226105ms total)
T2410 6177:934 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 82 0E 00  returns 0x04 (0001ms, 226106ms total)
T2410 6177:935 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C4 00  returns 0x02 (0001ms, 226107ms total)
T2410 6177:937 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 226108ms total)
T2410 6177:938 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 226109ms total)
T2410 6177:939 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 226110ms total)
T2410 6177:940 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 226111ms total)
T2410 6177:941 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 226112ms total)
T2410 6177:942 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 226113ms total)
T2410 6177:943 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: C0 86 0E 00  returns 0x04 (0001ms, 226114ms total)
T2410 6177:944 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: DA 79 00 00  returns 0x04 (0001ms, 226115ms total)
T2410 6177:945 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0001ms, 226116ms total)
T2410 6177:946 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 226117ms total)
T2410 6177:947 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0001ms, 226118ms total)
T2410 6177:948 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 82 0E 00  returns 0x04 (0001ms, 226119ms total)
T2410 6177:949 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C4 00  returns 0x02 (0001ms, 226120ms total)
T2410 6177:950 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 226121ms total)
T2410 6177:951 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 226122ms total)
T2410 6177:952 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 226123ms total)
T2410 6177:953 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 61 01  returns 0x02 (0001ms, 226124ms total)
T2410 6177:954 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 226125ms total)
T2410 6177:955 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 226126ms total)
T2410 6177:956 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0001ms, 226127ms total)
T2410 6177:957 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0001ms, 226128ms total)
T2410 6177:958 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 41  returns 0x04 (0001ms, 226129ms total)
T11F4 6177:959 JLINK_IsHalted()  returns FALSE (0001ms, 226130ms total)
T11F4 6178:061 JLINK_IsHalted()  returns FALSE (0000ms, 226129ms total)
T11F4 6178:162 JLINK_IsHalted()  returns FALSE (0001ms, 226130ms total)
T11F4 6178:264 JLINK_IsHalted()  returns FALSE (0001ms, 226130ms total)
T11F4 6178:366 JLINK_IsHalted()  returns FALSE (0001ms, 226130ms total)
T2410 6178:468 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0000ms, 226129ms total)
T2410 6178:468 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 226130ms total)
T2410 6178:469 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0002ms, 226132ms total)
T2410 6178:471 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 41  returns 0x04 (0000ms, 226132ms total)
T2410 6178:472 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 226133ms total)
T2410 6178:473 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0001ms, 226134ms total)
T2410 6178:474 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 82 0E 00  returns 0x04 (0001ms, 226135ms total)
T2410 6178:476 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C4 00  returns 0x02 (0001ms, 226136ms total)
T2410 6178:477 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: 00 00 00 00  returns 0x04 (0001ms, 226137ms total)
T2410 6178:478 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 226138ms total)
T2410 6178:479 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 226139ms total)
T2410 6178:480 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 226140ms total)
T2410 6178:481 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0002ms, 226142ms total)
T2410 6178:483 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0000ms, 226142ms total)
T2410 6178:483 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: C0 86 0E 00  returns 0x04 (0002ms, 226144ms total)
T2410 6178:485 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: DA 79 00 00  returns 0x04 (0000ms, 226144ms total)
T2410 6178:485 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: 00 00 00 00  returns 0x04 (0002ms, 226146ms total)
T2410 6178:487 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 226146ms total)
T2410 6178:487 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0002ms, 226148ms total)
T2410 6178:489 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 10 82 0E 00  returns 0x04 (0000ms, 226148ms total)
T2410 6178:489 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C4 00  returns 0x02 (0001ms, 226149ms total)
T2410 6178:490 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 226150ms total)
T2410 6178:492 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0000ms, 226150ms total)
T2410 6178:492 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 226151ms total)
T2410 6178:493 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: 7E 03  returns 0x02 (0001ms, 226152ms total)
T2410 6178:494 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0002ms, 226154ms total)
T2410 6178:496 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 226154ms total)
T2410 6178:496 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: 00 00 00 00  returns 0x04 (0002ms, 226156ms total)
T2410 6178:498 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 00  returns 0x01 (0000ms, 226156ms total)
T2410 6178:498 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 00 41  returns 0x04 (0001ms, 226157ms total)
T11F4 6178:499 JLINK_IsHalted()  returns FALSE (0001ms, 226158ms total)
T11F4 6178:601 JLINK_IsHalted()  returns ERROR (0304ms, 226461ms total)
T11F4 6178:905 JLINK_Halt()CPU could not be halted  returns 0x01 (0607ms, 226764ms total)
T11F4 6179:512 JLINK_IsHalted()  returns FALSE (0041ms, 226805ms total)
T11F4 6179:605 JLINK_IsHalted()  returns ERROR (0304ms, 227068ms total)
T11F4 6179:909 JLINK_IsHalted()  returns ERROR (0505ms, 227573ms total)
T11F4 6180:415 JLINK_ReadReg(R15 (PC)) -- CPU is running
  ***** Error: Can not read register 15 (R15) while CPU is running  returns 0x00000000 (0133ms, 227201ms total)
T11F4 6180:548 JLINK_ReadReg(XPSR) -- CPU is running
  ***** Error: Can not read register 16 (XPSR) while CPU is running  returns 0x00000000 (0001ms, 227202ms total)
T11F4 6180:549 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 1 (0001ms, 227203ms total)
T11F4 6180:550 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 1 (0001ms, 227204ms total)
T11F4 6180:551 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 1 (0001ms, 227205ms total)
T11F4 6180:552 JLINK_ReadReg(R0) -- CPU is running
  ***** Error: Can not read register 0 (R0) while CPU is running  returns 0x00000000 (0001ms, 227206ms total)
T11F4 6180:554 JLINK_ReadReg(R1) -- CPU is running
  ***** Error: Can not read register 1 (R1) while CPU is running  returns 0x00000000 (0302ms, 227508ms total)
T11F4 6180:857 JLINK_ReadReg(R2) -- CPU is running
  ***** Error: Can not read register 2 (R2) while CPU is running  returns 0x00000000 (0506ms, 228014ms total)
T11F4 6181:364 JLINK_ReadReg(R3) -- CPU is running
  ***** Error: Can not read register 3 (R3) while CPU is running  returns 0x00000000 (0183ms, 228197ms total)
T11F4 6181:547 JLINK_ReadReg(R4) -- CPU is running
  ***** Error: Can not read register 4 (R4) while CPU is running  returns 0x00000000 (0002ms, 228199ms total)
T11F4 6181:549 JLINK_ReadReg(R5) -- CPU is running
  ***** Error: Can not read register 5 (R5) while CPU is running  returns 0x00000000 (0001ms, 228200ms total)
T11F4 6181:550 JLINK_ReadReg(R6) -- CPU is running
  ***** Error: Can not read register 6 (R6) while CPU is running  returns 0x00000000 (0002ms, 228202ms total)
T11F4 6181:552 JLINK_ReadReg(R7) -- CPU is running
  ***** Error: Can not read register 7 (R7) while CPU is running  returns 0x00000000 (0000ms, 228202ms total)
T11F4 6181:552 JLINK_ReadReg(R8) -- CPU is running
  ***** Error: Can not read register 8 (R8) while CPU is running  returns 0x00000000 (0305ms, 228507ms total)
T11F4 6181:857 JLINK_ReadReg(R9) -- CPU is running
  ***** Error: Can not read register 9 (R9) while CPU is running  returns 0x00000000 (0505ms, 229012ms total)
T11F4 6182:363 JLINK_ReadReg(R10) -- CPU is running
  ***** Error: Can not read register 10 (R10) while CPU is running  returns 0x00000000 (0179ms, 229191ms total)
T11F4 6182:542 JLINK_ReadReg(R11) -- CPU is running
  ***** Error: Can not read register 11 (R11) while CPU is running  returns 0x00000000 (0002ms, 229193ms total)
T11F4 6182:545 JLINK_ReadReg(R12) -- CPU is running
  ***** Error: Can not read register 12 (R12) while CPU is running  returns 0x00000000 (0000ms, 229193ms total)
T11F4 6182:546 JLINK_ReadReg(R13 (SP)) -- CPU is running
  ***** Error: Can not read register 13 (R13) while CPU is running  returns 0x00000000 (0002ms, 229195ms total)
T11F4 6182:548 JLINK_ReadReg(R14) -- CPU is running
  ***** Error: Can not read register 14 (R14) while CPU is running  returns 0x00000000 (0304ms, 229499ms total)
T11F4 6182:853 JLINK_ReadReg(R15 (PC)) -- CPU is running
  ***** Error: Can not read register 15 (R15) while CPU is running  returns 0x00000000 (0506ms, 230005ms total)
T11F4 6183:359 JLINK_ReadReg(XPSR) -- CPU is running
  ***** Error: Can not read register 16 (XPSR) while CPU is running  returns 0x00000000 (0184ms, 230189ms total)
T11F4 6183:543 JLINK_ReadReg(MSP) -- CPU is running
  ***** Error: Can not read register 17 (MSP) while CPU is running  returns 0x00000000 (0001ms, 230190ms total)
T11F4 6183:544 JLINK_ReadReg(PSP) -- CPU is running
  ***** Error: Can not read register 18 (PSP) while CPU is running  returns 0x00000000 (0001ms, 230191ms total)
T11F4 6183:546 JLINK_ReadReg(CFBP) -- CPU is running
  ***** Error: Can not read register 20 (CFBP) while CPU is running  returns 0x00000000 (0001ms, 230192ms total)
T2410 6183:548 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: AA  returns 0xFFFFFFFF (0101ms, 230293ms total)
T2410 6183:649 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: AA  returns 0xFFFFFFFF (0304ms, 230597ms total)
T2410 6183:953 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: AA  returns 0xFFFFFFFF (0304ms, 230901ms total)
T2410 6184:258 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: AA  returns 0xFFFFFFFF (0279ms, 231180ms total)
T2410 6184:538 JLINK_ReadMemEx(0x2000005B, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005B) - Data: 00  returns 0x01 (0000ms, 231180ms total)
T2410 6184:539 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0002ms, 231182ms total)
T2410 6184:541 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: 30 11 00 20  returns 0x04 (0000ms, 231182ms total)
T2410 6184:542 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 70 41  returns 0x04 (0000ms, 231183ms total)
T2410 6184:543 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: AA  returns 0xFFFFFFFF (0102ms, 231285ms total)
T2410 6184:645 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: AA  returns 0xFFFFFFFF (0303ms, 231588ms total)
T2410 6184:949 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: AA  returns 0xFFFFFFFF (0304ms, 231892ms total)
T2410 6185:253 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: AA  returns 0xFFFFFFFF (0285ms, 232177ms total)
T2410 6185:538 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0000ms, 232177ms total)
T2410 6185:538 JLINK_ReadMemEx(0x20000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000000) - Data: 1E  returns 0x01 (0002ms, 232179ms total)
T2410 6185:540 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: D0 49 0E 00  returns 0x04 (0000ms, 232179ms total)
T2410 6185:541 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: C0 00  returns 0x02 (0002ms, 232181ms total)
T2410 6185:543 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: AA AA AA AA  returns 0xFFFFFFFF (0102ms, 232283ms total)
T2410 6185:645 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: AA AA AA AA  returns 0xFFFFFFFF (0304ms, 232587ms total)
T2410 6185:949 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: AA AA AA AA  returns 0xFFFFFFFF (0305ms, 232892ms total)
T2410 6186:254 JLINK_ReadMemEx(0x20000114, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000114) - Data: AA AA AA AA  returns 0xFFFFFFFF (0279ms, 233171ms total)
T2410 6186:533 JLINK_ReadMemEx(0x20000114, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000114) - Data: 00 00  returns 0x02 (0001ms, 233172ms total)
T2410 6186:534 JLINK_ReadMemEx(0x20000076, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000076) - Data: 00 00  returns 0x02 (0001ms, 233173ms total)
T2410 6186:536 JLINK_ReadMemEx(0x2000008C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000008C) - Data: 00 00 00 00  returns 0x04 (0001ms, 233174ms total)
T2410 6186:537 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 233175ms total)
T2410 6186:538 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: AA  returns 0xFFFFFFFF (0103ms, 233278ms total)
T2410 6186:641 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: AA  returns 0xFFFFFFFF (0304ms, 233582ms total)
T2410 6186:945 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: AA  returns 0xFFFFFFFF (0303ms, 233885ms total)
T2410 6187:248 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: AA  returns 0xFFFFFFFF (0285ms, 234170ms total)
T2410 6187:533 JLINK_ReadMemEx(0x2000005C, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005C) - Data: 00  returns 0x01 (0001ms, 234171ms total)
T2410 6187:535 JLINK_ReadMemEx(0x20000098, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000098) - Data: 00 00 00 00  returns 0x04 (0001ms, 234172ms total)
T2410 6187:536 JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000010C) - Data: 00 29 0E 00  returns 0x04 (0001ms, 234173ms total)
T2410 6187:537 JLINK_ReadMemEx(0x20000108, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000108) - Data: C8 76 00 00  returns 0x04 (0001ms, 234174ms total)
T2410 6187:538 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: AA AA AA AA  returns 0xFFFFFFFF (0102ms, 234276ms total)
T2410 6187:640 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: AA AA AA AA  returns 0xFFFFFFFF (0303ms, 234579ms total)
T2410 6187:944 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: AA AA AA AA  returns 0xFFFFFFFF (0303ms, 234882ms total)
T2410 6188:247 JLINK_ReadMemEx(0x20000094, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000094) - Data: AA AA AA AA  returns 0xFFFFFFFF (0281ms, 235163ms total)
T2410 6188:528 JLINK_ReadMemEx(0x20000094, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000094) - Data: 00 00  returns 0x02 (0001ms, 235164ms total)
T2410 6188:529 JLINK_ReadMemEx(0x20000078, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000078) - Data: 00 00  returns 0x02 (0000ms, 235164ms total)
T2410 6188:529 JLINK_ReadMemEx(0x20000110, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000110) - Data: 50 24 0E 00  returns 0x04 (0002ms, 235166ms total)
T2410 6188:531 JLINK_ReadMemEx(0x200000FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FA) - Data: BF 00  returns 0x02 (0001ms, 235167ms total)
T2410 6188:532 JLINK_ReadMemEx(0x200000FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000FC) - Data: C8 00  returns 0x02 (0001ms, 235168ms total)
T2410 6188:533 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: AA AA AA AA  returns 0xFFFFFFFF (0101ms, 235269ms total)
T2410 6188:634 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: AA AA AA AA  returns 0xFFFFFFFF (0304ms, 235573ms total)
T2410 6188:938 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: AA AA AA AA  returns 0xFFFFFFFF (0305ms, 235878ms total)
T2410 6189:244 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: AA AA AA AA  returns 0xFFFFFFFF (0283ms, 236161ms total)
T2410 6189:527 JLINK_ReadMemEx(0x20000104, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000104) - Data: 00 00  returns 0x02 (0001ms, 236162ms total)
T2410 6189:529 JLINK_ReadMemEx(0x2000006A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000006A) - Data: 00  returns 0x01 (0001ms, 236163ms total)
T2410 6189:530 JLINK_ReadMemEx(0x200000F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F0) - Data: A6 03  returns 0x02 (0001ms, 236164ms total)
T2410 6189:531 JLINK_ReadMemEx(0x200000F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200000F2) - Data: 00 00  returns 0x02 (0001ms, 236165ms total)
T2410 6189:532 JLINK_ReadMemEx(0x20000058, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000058) - Data: 00  returns 0x01 (0001ms, 236166ms total)
T2410 6189:533 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: AA AA AA AA  returns 0xFFFFFFFF (0103ms, 236269ms total)
T2410 6189:636 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: AA AA AA AA  returns 0xFFFFFFFF (0304ms, 236573ms total)
T2410 6189:940 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: AA AA AA AA  returns 0xFFFFFFFF (0304ms, 236877ms total)
T2410 6190:244 JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000104) - Data: AA AA AA AA  returns 0xFFFFFFFF (0278ms, 237155ms total)
T2410 6190:522 JLINK_ReadMemEx(0x20000104, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000104) - Data: 00 00  returns 0x02 (0002ms, 237157ms total)
T2410 6190:525 JLINK_ReadMemEx(0x2000005E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000005E) - Data: 01  returns 0x01 (0001ms, 237158ms total)
T2410 6190:526 JLINK_ReadMemEx(0x20000120, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000120) - Data: 00 00 A8 41  returns 0x04 (0001ms, 237159ms total)
T2410 6190:527 JLINK_ReadMemEx(0x00000000, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000000) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0102ms, 237261ms total)
T2410 6190:629 JLINK_ReadMemEx(0x00000000, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000000) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0203ms, 237464ms total)
T2410 6190:833 JLINK_ReadMemEx(0x00000000, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x08000000) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0203ms, 237667ms total)
T2410 6191:036 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: AA AA AA AA  returns 0xFFFFFFFF (0202ms, 237869ms total)
T2410 6191:239 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: AA AA  returns 0xFFFFFFFF (0203ms, 238072ms total)
T2410 6191:442 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: 30  returns 0x01 (0081ms, 238153ms total)
T2410 6191:523 JLINK_ReadMemEx(0x00000000, 0x003C Bytes, ..., Flags = 0x02000000) -- 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, 238155ms total)
T2410 6191:525 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: 30 11  returns 0x02 (0000ms, 238155ms total)
T2410 6191:525 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: 00 20  returns 0x02 (0002ms, 238157ms total)
T2410 6191:527 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: 00 20  returns 0x02 (0000ms, 238157ms total)
T2410 6191:527 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0103ms, 238260ms total)
T2410 6191:630 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0304ms, 238564ms total)
T2410 6191:934 JLINK_ReadMemEx(0x00000004, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x08000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0304ms, 238868ms total)
T2410 6192:238 JLINK_ReadMemEx(0x00000004, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000004) - Data: AA AA AA AA  returns 0xFFFFFFFF (0280ms, 239148ms total)
T2410 6192:519 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: D5 00  returns 0x02 (0001ms, 239149ms total)
T2410 6192:520 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: 00 20  returns 0x02 (0001ms, 239150ms total)
T2410 6192:521 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 (0002ms, 239152ms total)
T2410 6192:523 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0102ms, 239254ms total)
T2410 6192:625 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0304ms, 239558ms total)
T2410 6192:929 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0304ms, 239862ms total)
T2410 6193:233 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0217ms, 240079ms total)
T2410 6193:450 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: D5 00  returns 0x02 (0001ms, 240080ms total)
T2410 6193:451 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, 240081ms total)
T2410 6193:452 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: D5 00  returns 0x02 (0001ms, 240082ms total)
T2410 6193:453 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: 00 08  returns 0x02 (0001ms, 240083ms total)
T2410 6193:454 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: 00 08  returns 0x02 (0001ms, 240084ms total)
T2410 6193:455 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 (0003ms, 240087ms total)
T2410 6193:458 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: 3D 20  returns 0x02 (0000ms, 240087ms total)
T2410 6352:310 JLINK_Close() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002014) >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> (0019ms, 240106ms total)
T2410 6352:310  (0019ms, 240106ms total)
T2410 6352:310 Closed (0019ms, 240106ms total)