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
 
T5658 000:105 SEGGER J-Link V6.30d Log File (0001ms, 0033ms total)
T5658 000:105 DLL Compiled: Feb 16 2018 13:30:32 (0001ms, 0033ms total)
T5658 000:105 Logging started @ 2024-09-25 11:14 (0001ms, 0033ms total)
T5658 000:106 JLINK_SetWarnOutHandler(...) (0000ms, 0033ms total)
T5658 000:106 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 (0021ms, 0054ms total)
T5658 000:106 WEBSRV Webserver running on local port 19080 (0021ms, 0054ms total)
T5658 000:106   returns O.K. (0021ms, 0054ms total)
T5658 000:127 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0054ms total)
T5658 000:127 JLINK_TIF_GetAvailable(...) (0001ms, 0055ms total)
T5658 000:128 JLINK_SetErrorOutHandler(...) (0000ms, 0055ms total)
T5658 000:128 JLINK_ExecCommand("ProjectFile = "D:\project chen\ChinaUWBProject_Anchor_URT\keil\JLinkSettings.ini"", ...). d:\Keil_v5\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0229ms, 0284ms total)
T5658 000:357 JLINK_ExecCommand("Device = MK8000", ...). Device "MK8000" selected.  returns 0x00 (0011ms, 0295ms total)
T5658 000:368 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0295ms total)
T5658 000:368 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0295ms total)
T5658 000:368 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0295ms total)
T5658 000:368 JLINK_GetFirmwareString(...) (0000ms, 0295ms total)
T5658 000:368 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0295ms total)
T5658 000:368 JLINK_GetCompileDateTime() (0000ms, 0295ms total)
T5658 000:368 JLINK_GetFirmwareString(...) (0000ms, 0295ms total)
T5658 000:368 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0295ms total)
T5658 000:368 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0002ms, 0297ms total)
T5658 000:370 JLINK_SetSpeed(10000) (0001ms, 0298ms total)
T5658 000:371 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BB11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x04770021)Iterating through AP map to find AHB-AP to use
 >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC200. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p0, Little endian. -- CPU_ReadMem(4 bytes @ 0xE000EDF0)
 -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS
 -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB >0x0D TIF> >0x21 TIF>  returns 0x0BB11477 (0159ms, 0457ms total)
T5658 000:530 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0457ms total)
T5658 000:530 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0457ms total)
T5658 000:530 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0457ms total)
T5658 000:530 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0001ms, 0458ms total)
T5658 000:531 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0458ms total)
T5658 000:531 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, 0459ms total)
T5658 000:532 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0459ms total)
T5658 000:532 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0459ms total)
T5658 000:532 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 (0002ms, 0461ms total)
T5658 000:534 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0461ms total)
T5658 000:534 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0461ms total)
T5658 000:534 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0461ms total)
T5658 000:534 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 0461ms total)
T5658 000:534 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0461ms total)
T5658 000:534 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 0461ms total)
T5658 000:534 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41  returns 0x01 (0001ms, 0462ms total)
T5658 000:535 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0462ms total)
T5658 000:535 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0462ms total)
T5658 000:535 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) (0077ms, 0539ms total)
T5658 000:612 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0539ms total)
T5658 000:612 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0539ms total)
T5658 000:612 JLINK_Halt()  returns 0x00 (0000ms, 0539ms total)
T5658 000:612 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 0x01 (0002ms, 0541ms total)
T5658 000:614 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0001ms, 0542ms total)
T5658 000:615 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0001ms, 0543ms total)
T5658 000:616 JLINK_GetHWStatus(...)  returns 0x00 (0001ms, 0544ms total)
T5658 000:617 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0544ms total)
T5658 000:617 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0544ms total)
T5658 000:617 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0544ms total)
T5658 000:617 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0544ms total)
T5658 000:617 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0002ms, 0546ms total)
T5658 000:619 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0546ms total)
T5658 000:619 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0546ms total)
T5658 000:754 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0546ms total)
T5658 000:754 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, 0623ms total)
T5658 000:831 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0623ms total)
T5658 000:831 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0623ms total)
T5658 000:832 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0001ms, 0624ms total)
T5658 000:833 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0625ms total)
T5658 000:834 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0626ms total)
T5658 000:835 JLINK_ReadMemEx(0x0300373C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0300373C) - Data: FC F7 C0 FC 80 B5 0D 49 08 68 00 28 00 D4 80 BD ...  returns 0x3C (0003ms, 0629ms total)
T5658 000:838 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 0630ms total)
T5658 000:839 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0631ms total)
T5658 000:840 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0001ms, 0632ms total)
T5658 000:841 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 0633ms total)
T5658 000:842 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0002ms, 0635ms total)
T5658 000:844 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0000ms, 0635ms total)
T5658 000:844 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0002ms, 0637ms total)
T5658 000:847 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0639ms total)
T5658 000:848 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0002ms, 0641ms total)
T5658 000:850 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0000ms, 0641ms total)
T5658 000:850 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0642ms total)
T5658 000:851 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0002ms, 0644ms total)
T5658 000:853 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0645ms total)
T5658 000:854 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0646ms total)
T5658 000:856 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0648ms total)
T5658 000:857 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0649ms total)
T5658 000:858 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0001ms, 0650ms total)
T5658 005:913 JLINK_ReadReg(R0)  returns 0x01D1AF59 (0001ms, 0651ms total)
T5658 005:914 JLINK_ReadReg(R1)  returns 0x00000080 (0001ms, 0652ms total)
T5658 005:915 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0652ms total)
T5658 005:915 JLINK_ReadReg(R3)  returns 0x00000008 (0000ms, 0652ms total)
T5658 005:915 JLINK_ReadReg(R4)  returns 0x000007CD (0000ms, 0652ms total)
T5658 005:915 JLINK_ReadReg(R5)  returns 0x000000CD (0000ms, 0652ms total)
T5658 005:915 JLINK_ReadReg(R6)  returns 0x020198B8 (0000ms, 0652ms total)
T5658 005:915 JLINK_ReadReg(R7)  returns 0x0201901C (0000ms, 0652ms total)
T5658 005:915 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0652ms total)
T5658 005:915 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0652ms total)
T5658 005:915 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0652ms total)
T5658 005:915 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0652ms total)
T5658 005:915 JLINK_ReadReg(R12)  returns 0x00000000 (0001ms, 0653ms total)
T5658 005:916 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0653ms total)
T5658 005:916 JLINK_ReadReg(R14)  returns 0x00003167 (0000ms, 0653ms total)
T5658 005:916 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0653ms total)
T5658 005:916 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0653ms total)
T5658 005:916 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0653ms total)
T5658 005:916 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0653ms total)
T5658 005:916 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0653ms total)
T5658 005:916 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0654ms total)
T5658 005:926 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 0656ms total)
T5658 005:927 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 0658ms total)
T5658 005:929 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 0659ms total)
T5658 005:966 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0660ms total)
T5658 005:967 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 0662ms total)
T5658 005:969 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0663ms total)
T5658 005:980 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0664ms total)
T5658 005:981 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0665ms total)
T5658 005:982 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0666ms total)
T5658 006:018 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0667ms total)
T5658 006:019 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0668ms total)
T5658 006:020 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0669ms total)
T5658 006:032 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 0671ms total)
T5658 006:034 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0672ms total)
T5658 006:035 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0673ms total)
T5658 006:061 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 00 00 00 00  returns 0x04 (0002ms, 0675ms total)
T5658 006:064 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 00 00 00 00  returns 0x04 (0001ms, 0677ms total)
T5658 006:065 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 00 00 00 00  returns 0x04 (0001ms, 0678ms total)
T5658 006:121 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 0680ms total)
T5658 006:123 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0000ms, 0680ms total)
T5658 006:123 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 0681ms total)
T5658 006:140 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 0683ms total)
T5658 006:142 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0684ms total)
T5658 006:143 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0685ms total)
T5B94 006:333 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0686ms total)
T5B94 006:334 JLINK_SetBPEx(Addr = 0x0000CA9C, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0686ms total)
T5B94 006:334 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, 0692ms total)
T5B94 006:441 JLINK_IsHalted()  returns TRUE (0004ms, 0696ms total)
T5B94 006:445 JLINK_Halt()  returns 0x00 (0000ms, 0692ms total)
T5B94 006:445 JLINK_IsHalted()  returns TRUE (0000ms, 0692ms total)
T5B94 006:445 JLINK_IsHalted()  returns TRUE (0000ms, 0692ms total)
T5B94 006:445 JLINK_IsHalted()  returns TRUE (0000ms, 0692ms total)
T5B94 006:445 JLINK_ReadReg(R15 (PC))  returns 0x0000CA9C (0000ms, 0692ms total)
T5B94 006:445 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0692ms total)
T5B94 006:445 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0692ms total)
T5B94 006:445 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0002ms, 0694ms total)
T5B94 006:447 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0000ms, 0694ms total)
T5B94 006:447 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0695ms total)
T5B94 006:448 JLINK_ReadReg(R0)  returns 0x0000CA9D (0000ms, 0695ms total)
T5B94 006:448 JLINK_ReadReg(R1)  returns 0x0201EAA0 (0000ms, 0695ms total)
T5B94 006:448 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0695ms total)
T5B94 006:448 JLINK_ReadReg(R3)  returns 0x00011621 (0001ms, 0696ms total)
T5B94 006:449 JLINK_ReadReg(R4)  returns 0x000149A0 (0000ms, 0696ms total)
T5B94 006:449 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0696ms total)
T5B94 006:449 JLINK_ReadReg(R6)  returns 0x000149A0 (0000ms, 0696ms total)
T5B94 006:449 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0696ms total)
T5B94 006:449 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0696ms total)
T5B94 006:449 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0696ms total)
T5B94 006:449 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0696ms total)
T5B94 006:449 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0696ms total)
T5B94 006:449 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0696ms total)
T5B94 006:449 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0696ms total)
T5B94 006:449 JLINK_ReadReg(R14)  returns 0x00000F11 (0000ms, 0696ms total)
T5B94 006:449 JLINK_ReadReg(R15 (PC))  returns 0x0000CA9C (0000ms, 0696ms total)
T5B94 006:449 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0696ms total)
T5B94 006:449 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0696ms total)
T5B94 006:449 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0696ms total)
T5B94 006:449 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0696ms total)
T5658 006:579 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0697ms total)
T5658 006:580 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 00  returns 0x01 (0001ms, 0698ms total)
T5658 006:621 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 0700ms total)
T5658 006:623 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0701ms total)
T5658 006:646 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0702ms total)
T5658 006:659 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0703ms total)
T5658 006:685 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 00 00 00 00  returns 0x04 (0001ms, 0704ms total)
T5658 006:719 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 0705ms total)
T5658 006:720 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0706ms total)
T5658 006:735 JLINK_ReadMemEx(0x0000C99C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0000C980) -- Updating C cache (128 bytes @ 0x0000C980) -- Read from C cache (60 bytes @ 0x0000C99C) - Data: 51 18 1D 46 03 98 19 50 00 F0 6A FA 01 46 70 7A ...  returns 0x3C (0002ms, 0708ms total)
T5658 006:737 JLINK_ReadMemEx(0x0000C99C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C99C) - Data: 51 18  returns 0x02 (0000ms, 0708ms total)
T5658 006:737 JLINK_ReadMemEx(0x0000C99E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C99E) - Data: 1D 46  returns 0x02 (0000ms, 0708ms total)
T5658 006:737 JLINK_ReadMemEx(0x0000C99E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C99E) - Data: 1D 46  returns 0x02 (0000ms, 0708ms total)
T5658 006:737 JLINK_ReadMemEx(0x0000C9A0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9A0) - Data: 03 98 19 50 00 F0 6A FA 01 46 70 7A 00 19 02 04 ...  returns 0x3C (0000ms, 0708ms total)
T5658 006:737 JLINK_ReadMemEx(0x0000C9A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9A0) - Data: 03 98  returns 0x02 (0001ms, 0709ms total)
T5658 006:738 JLINK_ReadMemEx(0x0000C9A0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9A0) - Data: 03 98 19 50 00 F0 6A FA 01 46 70 7A 00 19 02 04 ...  returns 0x3C (0000ms, 0709ms total)
T5658 006:738 JLINK_ReadMemEx(0x0000C9A0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9A0) - Data: 03 98  returns 0x02 (0000ms, 0709ms total)
T5658 006:738 JLINK_ReadMemEx(0x0000C9A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9A2) - Data: 19 50  returns 0x02 (0000ms, 0709ms total)
T5658 006:738 JLINK_ReadMemEx(0x0000C9A2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9A2) - Data: 19 50  returns 0x02 (0000ms, 0709ms total)
T5658 006:738 JLINK_ReadMemEx(0x0000C9A4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9A4) - Data: 00 F0 6A FA 01 46 70 7A 00 19 02 04 3E 46 0C D0 ...  returns 0x3C (0000ms, 0709ms total)
T5658 006:738 JLINK_ReadMemEx(0x0000C9A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9A4) - Data: 00 F0  returns 0x02 (0000ms, 0709ms total)
T5658 006:738 JLINK_ReadMemEx(0x0000C9A4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9A4) - Data: 00 F0 6A FA 01 46 70 7A 00 19 02 04 3E 46 0C D0 ...  returns 0x3C (0000ms, 0709ms total)
T5658 006:738 JLINK_ReadMemEx(0x0000C9A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9A4) - Data: 00 F0  returns 0x02 (0000ms, 0709ms total)
T5658 006:738 JLINK_ReadMemEx(0x0000C9A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9A6) - Data: 6A FA  returns 0x02 (0001ms, 0710ms total)
T5658 006:739 JLINK_ReadMemEx(0x0000C9A8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9A8) - Data: 01 46 70 7A 00 19 02 04 3E 46 0C D0 80 B2 C0 00 ...  returns 0x3C (0000ms, 0710ms total)
T5658 006:739 JLINK_ReadMemEx(0x0000C9A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9A8) - Data: 01 46  returns 0x02 (0000ms, 0710ms total)
T5658 006:739 JLINK_ReadMemEx(0x0000C9AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9AA) - Data: 70 7A  returns 0x02 (0000ms, 0710ms total)
T5658 006:739 JLINK_ReadMemEx(0x0000C9AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9AA) - Data: 70 7A  returns 0x02 (0000ms, 0710ms total)
T5658 006:739 JLINK_ReadMemEx(0x0000C9AC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9AC) - Data: 00 19 02 04 3E 46 0C D0 80 B2 C0 00 00 29 00 D1 ...  returns 0x3C (0000ms, 0710ms total)
T5658 006:739 JLINK_ReadMemEx(0x0000C9AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9AC) - Data: 00 19  returns 0x02 (0000ms, 0710ms total)
T5658 006:739 JLINK_ReadMemEx(0x0000C9AC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9AC) - Data: 00 19 02 04 3E 46 0C D0 80 B2 C0 00 00 29 00 D1 ...  returns 0x3C (0000ms, 0710ms total)
T5658 006:739 JLINK_ReadMemEx(0x0000C9AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9AC) - Data: 00 19  returns 0x02 (0000ms, 0710ms total)
T5658 006:739 JLINK_ReadMemEx(0x0000C9AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9AE) - Data: 02 04  returns 0x02 (0000ms, 0710ms total)
T5658 006:739 JLINK_ReadMemEx(0x0000C9AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9AE) - Data: 02 04  returns 0x02 (0000ms, 0710ms total)
T5658 006:739 JLINK_ReadMemEx(0x0000C9B0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9B0) - Data: 3E 46 0C D0 80 B2 C0 00 00 29 00 D1 80 1E 02 9F ...  returns 0x3C (0000ms, 0710ms total)
T5658 006:739 JLINK_ReadMemEx(0x0000C9B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9B0) - Data: 3E 46  returns 0x02 (0000ms, 0710ms total)
T5658 006:739 JLINK_ReadMemEx(0x0000C9B0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9B0) - Data: 3E 46 0C D0 80 B2 C0 00 00 29 00 D1 80 1E 02 9F ...  returns 0x3C (0001ms, 0711ms total)
T5658 006:740 JLINK_ReadMemEx(0x0000C9B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9B0) - Data: 3E 46  returns 0x02 (0000ms, 0711ms total)
T5658 006:740 JLINK_ReadMemEx(0x0000C9B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9B2) - Data: 0C D0  returns 0x02 (0000ms, 0711ms total)
T5658 006:740 JLINK_ReadMemEx(0x0000C9B2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9B2) - Data: 0C D0  returns 0x02 (0000ms, 0711ms total)
T5658 006:740 JLINK_ReadMemEx(0x0000C9B4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9B4) - Data: 80 B2 C0 00 00 29 00 D1 80 1E 02 9F A5 21 49 00 ...  returns 0x3C (0000ms, 0711ms total)
T5658 006:740 JLINK_ReadMemEx(0x0000C9B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9B4) - Data: 80 B2  returns 0x02 (0000ms, 0711ms total)
T5658 006:740 JLINK_ReadMemEx(0x0000C9B4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9B4) - Data: 80 B2 C0 00 00 29 00 D1 80 1E 02 9F A5 21 49 00 ...  returns 0x3C (0000ms, 0711ms total)
T5658 006:740 JLINK_ReadMemEx(0x0000C9B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9B4) - Data: 80 B2  returns 0x02 (0000ms, 0711ms total)
T5658 006:740 JLINK_ReadMemEx(0x0000C9B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9B6) - Data: C0 00  returns 0x02 (0000ms, 0711ms total)
T5658 006:740 JLINK_ReadMemEx(0x0000C9B6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9B6) - Data: C0 00  returns 0x02 (0000ms, 0711ms total)
T5658 006:740 JLINK_ReadMemEx(0x0000C9B8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9B8) - Data: 00 29 00 D1 80 1E 02 9F A5 21 49 00 F3 F7 86 FB ...  returns 0x3C (0000ms, 0711ms total)
T5658 006:740 JLINK_ReadMemEx(0x0000C9B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9B8) - Data: 00 29  returns 0x02 (0000ms, 0711ms total)
T5658 006:740 JLINK_ReadMemEx(0x0000C9B8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9B8) - Data: 00 29 00 D1 80 1E 02 9F A5 21 49 00 F3 F7 86 FB ...  returns 0x3C (0000ms, 0711ms total)
T5658 006:740 JLINK_ReadMemEx(0x0000C9B8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9B8) - Data: 00 29  returns 0x02 (0001ms, 0712ms total)
T5658 006:741 JLINK_ReadMemEx(0x0000C9BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9BA) - Data: 00 D1  returns 0x02 (0000ms, 0712ms total)
T5658 006:741 JLINK_ReadMemEx(0x0000C9BA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9BA) - Data: 00 D1  returns 0x02 (0000ms, 0712ms total)
T5658 006:741 JLINK_ReadMemEx(0x0000C9BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9BC) - Data: 80 1E 02 9F A5 21 49 00 F3 F7 86 FB 1F 21 01 40 ...  returns 0x3C (0000ms, 0712ms total)
T5658 006:741 JLINK_ReadMemEx(0x0000C9BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9BC) - Data: 80 1E  returns 0x02 (0000ms, 0712ms total)
T5658 006:741 JLINK_ReadMemEx(0x0000C9BC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9BC) - Data: 80 1E 02 9F A5 21 49 00 F3 F7 86 FB 1F 21 01 40 ...  returns 0x3C (0000ms, 0712ms total)
T5658 006:741 JLINK_ReadMemEx(0x0000C9BC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9BC) - Data: 80 1E  returns 0x02 (0000ms, 0712ms total)
T5658 006:741 JLINK_ReadMemEx(0x0000C9BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9BE) - Data: 02 9F  returns 0x02 (0000ms, 0712ms total)
T5658 006:741 JLINK_ReadMemEx(0x0000C9BE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9BE) - Data: 02 9F  returns 0x02 (0000ms, 0712ms total)
T5658 006:741 JLINK_ReadMemEx(0x0000C9C0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9C0) - Data: A5 21 49 00 F3 F7 86 FB 1F 21 01 40 01 E0 00 21 ...  returns 0x3C (0000ms, 0712ms total)
T5658 006:741 JLINK_ReadMemEx(0x0000C9C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9C0) - Data: A5 21  returns 0x02 (0000ms, 0712ms total)
T5658 006:741 JLINK_ReadMemEx(0x0000C9C0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9C0) - Data: A5 21 49 00 F3 F7 86 FB 1F 21 01 40 01 E0 00 21 ...  returns 0x3C (0000ms, 0712ms total)
T5658 006:741 JLINK_ReadMemEx(0x0000C9C0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9C0) - Data: A5 21  returns 0x02 (0001ms, 0713ms total)
T5658 006:742 JLINK_ReadMemEx(0x0000C9C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9C2) - Data: 49 00  returns 0x02 (0000ms, 0713ms total)
T5658 006:742 JLINK_ReadMemEx(0x0000C9C2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9C2) - Data: 49 00  returns 0x02 (0000ms, 0713ms total)
T5658 006:742 JLINK_ReadMemEx(0x0000C9C4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9C4) - Data: F3 F7 86 FB 1F 21 01 40 01 E0 00 21 02 9F 38 01 ...  returns 0x3C (0000ms, 0713ms total)
T5658 006:742 JLINK_ReadMemEx(0x0000C9C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9C4) - Data: F3 F7  returns 0x02 (0000ms, 0713ms total)
T5658 006:742 JLINK_ReadMemEx(0x0000C9C4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9C4) - Data: F3 F7 86 FB 1F 21 01 40 01 E0 00 21 02 9F 38 01 ...  returns 0x3C (0000ms, 0713ms total)
T5658 006:742 JLINK_ReadMemEx(0x0000C9C4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9C4) - Data: F3 F7  returns 0x02 (0000ms, 0713ms total)
T5658 006:742 JLINK_ReadMemEx(0x0000C9C6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9C6) - Data: 86 FB  returns 0x02 (0000ms, 0713ms total)
T5658 006:742 JLINK_ReadMemEx(0x0000C9C8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000CA00) -- Updating C cache (64 bytes @ 0x0000CA00) -- Read from C cache (60 bytes @ 0x0000C9C8) - Data: 1F 21 01 40 01 E0 00 21 02 9F 38 01 28 18 42 79 ...  returns 0x3C (0002ms, 0715ms total)
T5658 006:744 JLINK_ReadMemEx(0x0000C9C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9C8) - Data: 1F 21  returns 0x02 (0000ms, 0715ms total)
T5658 006:744 JLINK_ReadMemEx(0x0000C9CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9CA) - Data: 01 40  returns 0x02 (0000ms, 0715ms total)
T5658 006:744 JLINK_ReadMemEx(0x0000C9CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9CA) - Data: 01 40  returns 0x02 (0000ms, 0715ms total)
T5658 006:744 JLINK_ReadMemEx(0x0000C9CC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9CC) - Data: 01 E0 00 21 02 9F 38 01 28 18 42 79 83 79 1B 02 ...  returns 0x3C (0000ms, 0715ms total)
T5658 006:744 JLINK_ReadMemEx(0x0000C9CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9CC) - Data: 01 E0  returns 0x02 (0000ms, 0715ms total)
T5658 006:744 JLINK_ReadMemEx(0x0000C9CC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9CC) - Data: 01 E0 00 21 02 9F 38 01 28 18 42 79 83 79 1B 02 ...  returns 0x3C (0000ms, 0715ms total)
T5658 006:744 JLINK_ReadMemEx(0x0000C9CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9CC) - Data: 01 E0  returns 0x02 (0000ms, 0715ms total)
T5658 006:744 JLINK_ReadMemEx(0x0000C9CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9CE) - Data: 00 21  returns 0x02 (0000ms, 0715ms total)
T5658 006:744 JLINK_ReadMemEx(0x0000C9CE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9CE) - Data: 00 21  returns 0x02 (0000ms, 0715ms total)
T5658 006:744 JLINK_ReadMemEx(0x0000C9D0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9D0) - Data: 02 9F 38 01 28 18 42 79 83 79 1B 02 9A 18 C3 79 ...  returns 0x3C (0000ms, 0715ms total)
T5658 006:744 JLINK_ReadMemEx(0x0000C9D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9D0) - Data: 02 9F  returns 0x02 (0000ms, 0715ms total)
T5658 006:744 JLINK_ReadMemEx(0x0000C9D0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9D0) - Data: 02 9F 38 01 28 18 42 79 83 79 1B 02 9A 18 C3 79 ...  returns 0x3C (0001ms, 0716ms total)
T5658 006:745 JLINK_ReadMemEx(0x0000C9D0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9D0) - Data: 02 9F  returns 0x02 (0000ms, 0716ms total)
T5658 006:745 JLINK_ReadMemEx(0x0000C9D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9D2) - Data: 38 01  returns 0x02 (0000ms, 0716ms total)
T5658 006:745 JLINK_ReadMemEx(0x0000C9D2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9D2) - Data: 38 01  returns 0x02 (0000ms, 0716ms total)
T5658 006:745 JLINK_ReadMemEx(0x0000C9D4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9D4) - Data: 28 18 42 79 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 ...  returns 0x3C (0000ms, 0716ms total)
T5658 006:745 JLINK_ReadMemEx(0x0000C9D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9D4) - Data: 28 18  returns 0x02 (0000ms, 0716ms total)
T5658 006:745 JLINK_ReadMemEx(0x0000C9D4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9D4) - Data: 28 18 42 79 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 ...  returns 0x3C (0000ms, 0716ms total)
T5658 006:745 JLINK_ReadMemEx(0x0000C9D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9D4) - Data: 28 18  returns 0x02 (0000ms, 0716ms total)
T5658 006:745 JLINK_ReadMemEx(0x0000C9D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9D6) - Data: 42 79  returns 0x02 (0000ms, 0716ms total)
T5658 006:745 JLINK_ReadMemEx(0x0000C9D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9D6) - Data: 42 79  returns 0x02 (0000ms, 0716ms total)
T5658 006:745 JLINK_ReadMemEx(0x0000C9D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9D8) - Data: 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 ...  returns 0x3C (0000ms, 0716ms total)
T5658 006:745 JLINK_ReadMemEx(0x0000C9D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9D8) - Data: 83 79  returns 0x02 (0000ms, 0716ms total)
T5658 006:745 JLINK_ReadMemEx(0x0000C9D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9D8) - Data: 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 ...  returns 0x3C (0000ms, 0716ms total)
T5658 006:745 JLINK_ReadMemEx(0x0000C9D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9D8) - Data: 83 79  returns 0x02 (0001ms, 0717ms total)
T5658 006:746 JLINK_ReadMemEx(0x0000C9DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9DA) - Data: 1B 02  returns 0x02 (0000ms, 0717ms total)
T5658 006:746 JLINK_ReadMemEx(0x0000C9DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9DA) - Data: 1B 02  returns 0x02 (0000ms, 0717ms total)
T5658 006:746 JLINK_ReadMemEx(0x0000C9DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9DC) - Data: 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 43 71 09 04 ...  returns 0x3C (0000ms, 0717ms total)
T5658 006:746 JLINK_ReadMemEx(0x0000C9DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9DC) - Data: 9A 18  returns 0x02 (0000ms, 0717ms total)
T5658 006:746 JLINK_ReadMemEx(0x0000C9DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9DC) - Data: 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 43 71 09 04 ...  returns 0x3C (0000ms, 0717ms total)
T5658 006:746 JLINK_ReadMemEx(0x0000C9DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9DC) - Data: 9A 18  returns 0x02 (0000ms, 0717ms total)
T5658 006:746 JLINK_ReadMemEx(0x0000C9DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9DE) - Data: C3 79  returns 0x02 (0000ms, 0717ms total)
T5658 006:746 JLINK_ReadMemEx(0x0000C9DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9DE) - Data: C3 79  returns 0x02 (0000ms, 0717ms total)
T5658 006:746 JLINK_ReadMemEx(0x0000C9E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9E0) - Data: 1B 04 D2 18 2C 4B 13 40 43 71 09 04 59 18 09 0C ...  returns 0x3C (0000ms, 0717ms total)
T5658 006:746 JLINK_ReadMemEx(0x0000C9E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9E0) - Data: 1B 04  returns 0x02 (0000ms, 0717ms total)
T5658 006:746 JLINK_ReadMemEx(0x0000C9E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9E0) - Data: 1B 04 D2 18 2C 4B 13 40 43 71 09 04 59 18 09 0C ...  returns 0x3C (0000ms, 0717ms total)
T5658 006:746 JLINK_ReadMemEx(0x0000C9E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9E0) - Data: 1B 04  returns 0x02 (0000ms, 0717ms total)
T5658 006:746 JLINK_ReadMemEx(0x0000C9E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9E2) - Data: D2 18  returns 0x02 (0001ms, 0718ms total)
T5658 006:747 JLINK_ReadMemEx(0x0000C9E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9E2) - Data: D2 18  returns 0x02 (0000ms, 0718ms total)
T5658 006:747 JLINK_ReadMemEx(0x0000C9E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9E4) - Data: 2C 4B 13 40 43 71 09 04 59 18 09 0C C1 71 00 2C ...  returns 0x3C (0000ms, 0718ms total)
T5658 006:747 JLINK_ReadMemEx(0x0000C9E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9E4) - Data: 2C 4B  returns 0x02 (0000ms, 0718ms total)
T5658 006:747 JLINK_ReadMemEx(0x0000C9E4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9E4) - Data: 2C 4B 13 40 43 71 09 04 59 18 09 0C C1 71 00 2C ...  returns 0x3C (0000ms, 0718ms total)
T5658 006:747 JLINK_ReadMemEx(0x0000C9E4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9E4) - Data: 2C 4B  returns 0x02 (0000ms, 0718ms total)
T5658 006:747 JLINK_ReadMemEx(0x0000C9E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9E6) - Data: 13 40  returns 0x02 (0000ms, 0718ms total)
T5658 006:747 JLINK_ReadMemEx(0x0000C9E6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9E6) - Data: 13 40  returns 0x02 (0000ms, 0718ms total)
T5658 006:747 JLINK_ReadMemEx(0x0000C9E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9E8) - Data: 43 71 09 04 59 18 09 0C C1 71 00 2C 20 D0 15 48 ...  returns 0x3C (0000ms, 0718ms total)
T5658 006:747 JLINK_ReadMemEx(0x0000C9E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9E8) - Data: 43 71  returns 0x02 (0000ms, 0718ms total)
T5658 006:747 JLINK_ReadMemEx(0x0000C9E8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9E8) - Data: 43 71 09 04 59 18 09 0C C1 71 00 2C 20 D0 15 48 ...  returns 0x3C (0000ms, 0718ms total)
T5658 006:747 JLINK_ReadMemEx(0x0000C9E8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9E8) - Data: 43 71  returns 0x02 (0000ms, 0718ms total)
T5658 006:747 JLINK_ReadMemEx(0x0000C9EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9EA) - Data: 09 04  returns 0x02 (0000ms, 0718ms total)
T5658 006:747 JLINK_ReadMemEx(0x0000C9EA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9EA) - Data: 09 04  returns 0x02 (0001ms, 0719ms total)
T5658 006:748 JLINK_ReadMemEx(0x0000C9EC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9EC) - Data: 59 18 09 0C C1 71 00 2C 20 D0 15 48 35 46 06 46 ...  returns 0x3C (0000ms, 0719ms total)
T5658 006:748 JLINK_ReadMemEx(0x0000C9EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9EC) - Data: 59 18  returns 0x02 (0000ms, 0719ms total)
T5658 006:748 JLINK_ReadMemEx(0x0000C9EC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9EC) - Data: 59 18 09 0C C1 71 00 2C 20 D0 15 48 35 46 06 46 ...  returns 0x3C (0000ms, 0719ms total)
T5658 006:748 JLINK_ReadMemEx(0x0000C9EC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9EC) - Data: 59 18  returns 0x02 (0000ms, 0719ms total)
T5658 006:748 JLINK_ReadMemEx(0x0000C9EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9EE) - Data: 09 0C  returns 0x02 (0000ms, 0719ms total)
T5658 006:748 JLINK_ReadMemEx(0x0000C9EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9EE) - Data: 09 0C  returns 0x02 (0000ms, 0719ms total)
T5658 006:748 JLINK_ReadMemEx(0x0000C9F0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9F0) - Data: C1 71 00 2C 20 D0 15 48 35 46 06 46 00 7B 00 9B ...  returns 0x3C (0000ms, 0719ms total)
T5658 006:748 JLINK_ReadMemEx(0x0000C9F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9F0) - Data: C1 71  returns 0x02 (0000ms, 0719ms total)
T5658 006:748 JLINK_ReadMemEx(0x0000C9F0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9F0) - Data: C1 71 00 2C 20 D0 15 48 35 46 06 46 00 7B 00 9B ...  returns 0x3C (0000ms, 0719ms total)
T5658 006:748 JLINK_ReadMemEx(0x0000C9F0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9F0) - Data: C1 71  returns 0x02 (0000ms, 0719ms total)
T5658 006:748 JLINK_ReadMemEx(0x0000C9F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9F2) - Data: 00 2C  returns 0x02 (0001ms, 0720ms total)
T5658 006:749 JLINK_ReadMemEx(0x0000C9F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9F2) - Data: 00 2C  returns 0x02 (0000ms, 0720ms total)
T5658 006:749 JLINK_ReadMemEx(0x0000C9F4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9F4) - Data: 20 D0 15 48 35 46 06 46 00 7B 00 9B 43 43 F1 7A ...  returns 0x3C (0000ms, 0720ms total)
T5658 006:749 JLINK_ReadMemEx(0x0000C9F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9F4) - Data: 20 D0  returns 0x02 (0000ms, 0720ms total)
T5658 006:749 JLINK_ReadMemEx(0x0000C9F4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9F4) - Data: 20 D0 15 48 35 46 06 46 00 7B 00 9B 43 43 F1 7A ...  returns 0x3C (0000ms, 0720ms total)
T5658 006:749 JLINK_ReadMemEx(0x0000C9F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9F4) - Data: 20 D0  returns 0x02 (0000ms, 0720ms total)
T5658 006:749 JLINK_ReadMemEx(0x0000C9F6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9F6) - Data: 15 48  returns 0x02 (0000ms, 0720ms total)
T5658 006:749 JLINK_ReadMemEx(0x0000C9F6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9F6) - Data: 15 48  returns 0x02 (0000ms, 0720ms total)
T5658 006:749 JLINK_ReadMemEx(0x0000C9F8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9F8) - Data: 35 46 06 46 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F ...  returns 0x3C (0000ms, 0720ms total)
T5658 006:749 JLINK_ReadMemEx(0x0000C9F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9F8) - Data: 35 46  returns 0x02 (0000ms, 0720ms total)
T5658 006:749 JLINK_ReadMemEx(0x0000C9F8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9F8) - Data: 35 46 06 46 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F ...  returns 0x3C (0000ms, 0720ms total)
T5658 006:749 JLINK_ReadMemEx(0x0000C9F8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9F8) - Data: 35 46  returns 0x02 (0000ms, 0720ms total)
T5658 006:749 JLINK_ReadMemEx(0x0000C9FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9FA) - Data: 06 46  returns 0x02 (0000ms, 0720ms total)
T5658 006:749 JLINK_ReadMemEx(0x0000C9FA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9FA) - Data: 06 46  returns 0x02 (0001ms, 0721ms total)
T5658 006:750 JLINK_ReadMemEx(0x0000C9FC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9FC) - Data: 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 ...  returns 0x3C (0000ms, 0721ms total)
T5658 006:750 JLINK_ReadMemEx(0x0000C9FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9FC) - Data: 00 7B  returns 0x02 (0000ms, 0721ms total)
T5658 006:750 JLINK_ReadMemEx(0x0000C9FC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000C9FC) - Data: 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 ...  returns 0x3C (0000ms, 0721ms total)
T5658 006:750 JLINK_ReadMemEx(0x0000C9FC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9FC) - Data: 00 7B  returns 0x02 (0000ms, 0721ms total)
T5658 006:750 JLINK_ReadMemEx(0x0000C9FE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9FE) - Data: 00 9B  returns 0x02 (0000ms, 0721ms total)
T5658 006:750 JLINK_ReadMemEx(0x0000C9FE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000C9FE) - Data: 00 9B  returns 0x02 (0000ms, 0721ms total)
T5658 006:750 JLINK_ReadMemEx(0x0000CA00, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA00) - Data: 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 ...  returns 0x3C (0000ms, 0721ms total)
T5658 006:750 JLINK_ReadMemEx(0x0000CA00, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA00) - Data: 43 43  returns 0x02 (0000ms, 0721ms total)
T5658 006:750 JLINK_ReadMemEx(0x0000CA00, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA00) - Data: 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 ...  returns 0x3C (0000ms, 0721ms total)
T5658 006:750 JLINK_ReadMemEx(0x0000CA00, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA00) - Data: 43 43  returns 0x02 (0000ms, 0721ms total)
T5658 006:750 JLINK_ReadMemEx(0x0000CA02, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA02) - Data: F1 7A  returns 0x02 (0000ms, 0721ms total)
T5658 006:750 JLINK_ReadMemEx(0x0000CA02, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA02) - Data: F1 7A  returns 0x02 (0000ms, 0721ms total)
T5658 006:750 JLINK_ReadMemEx(0x0000CA04, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA04) - Data: 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 D2 18 05 9B ...  returns 0x3C (0001ms, 0722ms total)
T5658 006:751 JLINK_ReadMemEx(0x0000CA04, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA04) - Data: 0A 01  returns 0x02 (0000ms, 0722ms total)
T5658 006:751 JLINK_ReadMemEx(0x0000CA04, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA04) - Data: 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 D2 18 05 9B ...  returns 0x3C (0000ms, 0722ms total)
T5658 006:751 JLINK_ReadMemEx(0x0000CA04, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA04) - Data: 0A 01  returns 0x02 (0000ms, 0722ms total)
T5658 006:751 JLINK_ReadMemEx(0x0000CA06, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA06) - Data: 06 9F  returns 0x02 (0000ms, 0722ms total)
T5658 006:751 JLINK_ReadMemEx(0x0000CA06, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA06) - Data: 06 9F  returns 0x02 (0000ms, 0722ms total)
T5658 006:751 JLINK_ReadMemEx(0x0000CA08, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000CA40) -- Updating C cache (64 bytes @ 0x0000CA40) -- Read from C cache (60 bytes @ 0x0000CA08) - Data: 3A 43 D2 18 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 ...  returns 0x3C (0002ms, 0724ms total)
T5658 006:753 JLINK_ReadMemEx(0x0000CA08, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA08) - Data: 3A 43  returns 0x02 (0000ms, 0724ms total)
T5658 006:753 JLINK_ReadMemEx(0x0000CA08, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA08) - Data: 3A 43 D2 18 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 ...  returns 0x3C (0000ms, 0724ms total)
T5658 006:753 JLINK_ReadMemEx(0x0000CA08, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA08) - Data: 3A 43  returns 0x02 (0000ms, 0724ms total)
T5658 006:754 JLINK_ReadMemEx(0x0000CA0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA0A) - Data: D2 18  returns 0x02 (0000ms, 0725ms total)
T5658 006:754 JLINK_ReadMemEx(0x0000CA0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA0A) - Data: D2 18  returns 0x02 (0000ms, 0725ms total)
T5658 006:754 JLINK_ReadMemEx(0x0000CA0C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA0C) - Data: 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 72 7B 07 9B ...  returns 0x3C (0000ms, 0725ms total)
T5658 006:754 JLINK_ReadMemEx(0x0000CA0C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA0C) - Data: 41 18  returns 0x02 (0000ms, 0725ms total)
T5658 006:754 JLINK_ReadMemEx(0x0000CA0C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA0C) - Data: 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 72 7B 07 9B ...  returns 0x3C (0000ms, 0725ms total)
T5658 006:754 JLINK_ReadMemEx(0x0000CA0C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA0C) - Data: 41 18  returns 0x02 (0000ms, 0725ms total)
T5658 006:754 JLINK_ReadMemEx(0x0000CA0E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA0E) - Data: 8B 00  returns 0x02 (0000ms, 0725ms total)
T5658 006:754 JLINK_ReadMemEx(0x0000CA0E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA0E) - Data: 8B 00  returns 0x02 (0001ms, 0726ms total)
T5658 006:755 JLINK_ReadMemEx(0x0000CA10, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA10) - Data: D2 18 05 9B 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 ...  returns 0x3C (0000ms, 0726ms total)
T5658 006:755 JLINK_ReadMemEx(0x0000CA10, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA10) - Data: D2 18  returns 0x02 (0000ms, 0726ms total)
T5658 006:755 JLINK_ReadMemEx(0x0000CA10, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA10) - Data: D2 18 05 9B 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 ...  returns 0x3C (0000ms, 0726ms total)
T5658 006:755 JLINK_ReadMemEx(0x0000CA10, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA10) - Data: D2 18  returns 0x02 (0000ms, 0726ms total)
T5658 006:755 JLINK_ReadMemEx(0x0000CA12, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA12) - Data: 05 9B  returns 0x02 (0000ms, 0726ms total)
T5658 006:755 JLINK_ReadMemEx(0x0000CA12, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA12) - Data: 05 9B  returns 0x02 (0000ms, 0726ms total)
T5658 006:755 JLINK_ReadMemEx(0x0000CA14, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA14) - Data: 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 40 19 1C 4A ...  returns 0x3C (0000ms, 0726ms total)
T5658 006:755 JLINK_ReadMemEx(0x0000CA14, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA14) - Data: 4B 43  returns 0x02 (0000ms, 0726ms total)
T5658 006:755 JLINK_ReadMemEx(0x0000CA14, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA14) - Data: 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 40 19 1C 4A ...  returns 0x3C (0000ms, 0726ms total)
T5658 006:755 JLINK_ReadMemEx(0x0000CA14, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA14) - Data: 4B 43  returns 0x02 (0001ms, 0727ms total)
T5658 006:756 JLINK_ReadMemEx(0x0000CA16, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA16) - Data: D1 18  returns 0x02 (0000ms, 0727ms total)
T5658 006:756 JLINK_ReadMemEx(0x0000CA16, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA16) - Data: D1 18  returns 0x02 (0000ms, 0727ms total)
T5658 006:756 JLINK_ReadMemEx(0x0000CA18, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA18) - Data: 72 7B 07 9B 53 43 C9 18 40 19 1C 4A 12 88 42 43 ...  returns 0x3C (0000ms, 0727ms total)
T5658 006:756 JLINK_ReadMemEx(0x0000CA18, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA18) - Data: 72 7B  returns 0x02 (0000ms, 0727ms total)
T5658 006:756 JLINK_ReadMemEx(0x0000CA18, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA18) - Data: 72 7B 07 9B 53 43 C9 18 40 19 1C 4A 12 88 42 43 ...  returns 0x3C (0000ms, 0727ms total)
T5658 006:756 JLINK_ReadMemEx(0x0000CA18, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA18) - Data: 72 7B  returns 0x02 (0000ms, 0727ms total)
T5658 006:756 JLINK_ReadMemEx(0x0000CA1A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA1A) - Data: 07 9B  returns 0x02 (0000ms, 0727ms total)
T5658 006:756 JLINK_ReadMemEx(0x0000CA1A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA1A) - Data: 07 9B  returns 0x02 (0000ms, 0727ms total)
T5658 006:756 JLINK_ReadMemEx(0x0000CA1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA1C) - Data: 53 43 C9 18 40 19 1C 4A 12 88 42 43 88 18 01 99 ...  returns 0x3C (0000ms, 0727ms total)
T5658 006:756 JLINK_ReadMemEx(0x0000CA1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA1C) - Data: 53 43  returns 0x02 (0000ms, 0727ms total)
T5658 006:756 JLINK_ReadMemEx(0x0000CA1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA1C) - Data: 53 43 C9 18 40 19 1C 4A 12 88 42 43 88 18 01 99 ...  returns 0x3C (0000ms, 0727ms total)
T5658 006:756 JLINK_ReadMemEx(0x0000CA1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA1C) - Data: 53 43  returns 0x02 (0000ms, 0727ms total)
T5658 006:756 JLINK_ReadMemEx(0x0000CA1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA1E) - Data: C9 18  returns 0x02 (0001ms, 0728ms total)
T5658 006:757 JLINK_ReadMemEx(0x0000CA1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA1E) - Data: C9 18  returns 0x02 (0000ms, 0728ms total)
T5658 006:757 JLINK_ReadMemEx(0x0000CA20, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA20) - Data: 40 19 1C 4A 12 88 42 43 88 18 01 99 88 42 03 D0 ...  returns 0x3C (0000ms, 0728ms total)
T5658 006:757 JLINK_ReadMemEx(0x0000CA20, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA20) - Data: 40 19  returns 0x02 (0000ms, 0728ms total)
T5658 006:757 JLINK_ReadMemEx(0x0000CA20, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA20) - Data: 40 19 1C 4A 12 88 42 43 88 18 01 99 88 42 03 D0 ...  returns 0x3C (0000ms, 0728ms total)
T5658 006:757 JLINK_ReadMemEx(0x0000CA20, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA20) - Data: 40 19  returns 0x02 (0000ms, 0728ms total)
T5658 006:757 JLINK_ReadMemEx(0x0000CA22, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA22) - Data: 1C 4A  returns 0x02 (0000ms, 0728ms total)
T5658 006:757 JLINK_ReadMemEx(0x0000CA22, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA22) - Data: 1C 4A  returns 0x02 (0000ms, 0728ms total)
T5658 006:757 JLINK_ReadMemEx(0x0000CA24, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA24) - Data: 12 88 42 43 88 18 01 99 88 42 03 D0 01 99 22 46 ...  returns 0x3C (0000ms, 0728ms total)
T5658 006:757 JLINK_ReadMemEx(0x0000CA24, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA24) - Data: 12 88  returns 0x02 (0000ms, 0728ms total)
T5658 006:757 JLINK_ReadMemEx(0x0000CA24, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA24) - Data: 12 88 42 43 88 18 01 99 88 42 03 D0 01 99 22 46 ...  returns 0x3C (0000ms, 0728ms total)
T5658 006:757 JLINK_ReadMemEx(0x0000CA24, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA24) - Data: 12 88  returns 0x02 (0000ms, 0728ms total)
T5658 006:757 JLINK_ReadMemEx(0x0000CA26, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA26) - Data: 42 43  returns 0x02 (0000ms, 0728ms total)
T5658 006:757 JLINK_ReadMemEx(0x0000CA26, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA26) - Data: 42 43  returns 0x02 (0001ms, 0729ms total)
T5658 006:758 JLINK_ReadMemEx(0x0000CA28, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA28) - Data: 88 18 01 99 88 42 03 D0 01 99 22 46 F3 F7 9E FB ...  returns 0x3C (0000ms, 0729ms total)
T5658 006:758 JLINK_ReadMemEx(0x0000CA28, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA28) - Data: 88 18  returns 0x02 (0000ms, 0729ms total)
T5658 006:758 JLINK_ReadMemEx(0x0000CA28, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA28) - Data: 88 18 01 99 88 42 03 D0 01 99 22 46 F3 F7 9E FB ...  returns 0x3C (0000ms, 0729ms total)
T5658 006:758 JLINK_ReadMemEx(0x0000CA28, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA28) - Data: 88 18  returns 0x02 (0000ms, 0729ms total)
T5658 006:758 JLINK_ReadMemEx(0x0000CA2A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA2A) - Data: 01 99  returns 0x02 (0000ms, 0729ms total)
T5658 006:758 JLINK_ReadMemEx(0x0000CA2A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA2A) - Data: 01 99  returns 0x02 (0000ms, 0729ms total)
T5658 006:758 JLINK_ReadMemEx(0x0000CA2C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA2C) - Data: 88 42 03 D0 01 99 22 46 F3 F7 9E FB 09 B0 F0 BD ...  returns 0x3C (0000ms, 0729ms total)
T5658 006:758 JLINK_ReadMemEx(0x0000CA2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA2C) - Data: 88 42  returns 0x02 (0000ms, 0729ms total)
T5658 006:758 JLINK_ReadMemEx(0x0000CA2C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA2C) - Data: 88 42 03 D0 01 99 22 46 F3 F7 9E FB 09 B0 F0 BD ...  returns 0x3C (0000ms, 0729ms total)
T5658 006:758 JLINK_ReadMemEx(0x0000CA2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA2C) - Data: 88 42  returns 0x02 (0000ms, 0729ms total)
T5658 006:758 JLINK_ReadMemEx(0x0000CA2E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA2E) - Data: 03 D0  returns 0x02 (0000ms, 0729ms total)
T5658 006:758 JLINK_ReadMemEx(0x0000CA2E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA2E) - Data: 03 D0  returns 0x02 (0001ms, 0730ms total)
T5658 006:759 JLINK_ReadMemEx(0x0000CA30, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA30) - Data: 01 99 22 46 F3 F7 9E FB 09 B0 F0 BD FF 22 5C 32 ...  returns 0x3C (0000ms, 0730ms total)
T5658 006:759 JLINK_ReadMemEx(0x0000CA30, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA30) - Data: 01 99  returns 0x02 (0000ms, 0730ms total)
T5658 006:759 JLINK_ReadMemEx(0x0000CA30, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA30) - Data: 01 99 22 46 F3 F7 9E FB 09 B0 F0 BD FF 22 5C 32 ...  returns 0x3C (0000ms, 0730ms total)
T5658 006:759 JLINK_ReadMemEx(0x0000CA30, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA30) - Data: 01 99  returns 0x02 (0000ms, 0730ms total)
T5658 006:759 JLINK_ReadMemEx(0x0000CA32, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA32) - Data: 22 46  returns 0x02 (0000ms, 0730ms total)
T5658 006:759 JLINK_ReadMemEx(0x0000CA32, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA32) - Data: 22 46  returns 0x02 (0000ms, 0730ms total)
T5658 006:759 JLINK_ReadMemEx(0x0000CA34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA34) - Data: F3 F7 9E FB 09 B0 F0 BD FF 22 5C 32 03 48 04 A1 ...  returns 0x3C (0000ms, 0730ms total)
T5658 006:759 JLINK_ReadMemEx(0x0000CA34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA34) - Data: F3 F7  returns 0x02 (0000ms, 0730ms total)
T5658 006:759 JLINK_ReadMemEx(0x0000CA34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA34) - Data: F3 F7 9E FB 09 B0 F0 BD FF 22 5C 32 03 48 04 A1 ...  returns 0x3C (0000ms, 0730ms total)
T5658 006:759 JLINK_ReadMemEx(0x0000CA34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA34) - Data: F3 F7  returns 0x02 (0000ms, 0730ms total)
T5658 006:759 JLINK_ReadMemEx(0x0000CA36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA36) - Data: 9E FB  returns 0x02 (0001ms, 0731ms total)
T5658 006:760 JLINK_ReadMemEx(0x0000CA38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA38) - Data: 09 B0 F0 BD FF 22 5C 32 03 48 04 A1 09 A3 02 F0 ...  returns 0x3C (0000ms, 0731ms total)
T5658 006:760 JLINK_ReadMemEx(0x0000CA38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA38) - Data: 09 B0  returns 0x02 (0000ms, 0731ms total)
T5658 006:760 JLINK_ReadMemEx(0x0000CA3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA3A) - Data: F0 BD  returns 0x02 (0000ms, 0731ms total)
T5658 006:760 JLINK_ReadMemEx(0x0000CA3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA3A) - Data: F0 BD  returns 0x02 (0000ms, 0731ms total)
T5658 006:760 JLINK_ReadMemEx(0x0000CA3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA3C) - Data: FF 22 5C 32 03 48 04 A1 09 A3 02 F0 41 FA C0 46 ...  returns 0x3C (0000ms, 0731ms total)
T5658 006:760 JLINK_ReadMemEx(0x0000CA3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA3C) - Data: FF 22  returns 0x02 (0000ms, 0731ms total)
T5658 006:760 JLINK_ReadMemEx(0x0000CA3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA3C) - Data: FF 22 5C 32 03 48 04 A1 09 A3 02 F0 41 FA C0 46 ...  returns 0x3C (0000ms, 0731ms total)
T5658 006:760 JLINK_ReadMemEx(0x0000CA3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA3C) - Data: FF 22  returns 0x02 (0000ms, 0731ms total)
T5658 006:760 JLINK_ReadMemEx(0x0000CA3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA3E) - Data: 5C 32  returns 0x02 (0000ms, 0731ms total)
T5658 006:760 JLINK_ReadMemEx(0x0000CA3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA3E) - Data: 5C 32  returns 0x02 (0000ms, 0731ms total)
T5658 006:760 JLINK_ReadMemEx(0x0000CA40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA40) - Data: 03 48 04 A1 09 A3 02 F0 41 FA C0 46 1C D2 01 02 ...  returns 0x3C (0000ms, 0731ms total)
T5658 006:760 JLINK_ReadMemEx(0x0000CA40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA40) - Data: 03 48  returns 0x02 (0001ms, 0732ms total)
T5658 006:761 JLINK_ReadMemEx(0x0000CA40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA40) - Data: 03 48 04 A1 09 A3 02 F0 41 FA C0 46 1C D2 01 02 ...  returns 0x3C (0000ms, 0732ms total)
T5658 006:761 JLINK_ReadMemEx(0x0000CA40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA40) - Data: 03 48  returns 0x02 (0000ms, 0732ms total)
T5658 006:761 JLINK_ReadMemEx(0x0000CA42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA42) - Data: 04 A1  returns 0x02 (0000ms, 0732ms total)
T5658 006:761 JLINK_ReadMemEx(0x0000CA42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA42) - Data: 04 A1  returns 0x02 (0000ms, 0732ms total)
T5658 006:761 JLINK_ReadMemEx(0x0000CA44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA44) - Data: 09 A3 02 F0 41 FA C0 46 1C D2 01 02 DC 3C 01 00 ...  returns 0x3C (0000ms, 0732ms total)
T5658 006:761 JLINK_ReadMemEx(0x0000CA44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA44) - Data: 09 A3  returns 0x02 (0000ms, 0732ms total)
T5658 006:761 JLINK_ReadMemEx(0x0000CA44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA44) - Data: 09 A3 02 F0 41 FA C0 46 1C D2 01 02 DC 3C 01 00 ...  returns 0x3C (0000ms, 0732ms total)
T5658 006:761 JLINK_ReadMemEx(0x0000CA44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA44) - Data: 09 A3  returns 0x02 (0000ms, 0732ms total)
T5658 006:761 JLINK_ReadMemEx(0x0000CA46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA46) - Data: 02 F0  returns 0x02 (0000ms, 0732ms total)
T5658 006:761 JLINK_ReadMemEx(0x0000CA46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA46) - Data: 02 F0  returns 0x02 (0000ms, 0732ms total)
T5658 006:761 JLINK_ReadMemEx(0x0000CA48, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000CA80) -- Updating C cache (64 bytes @ 0x0000CA80) -- Read from C cache (60 bytes @ 0x0000CA48) - Data: 41 FA C0 46 1C D2 01 02 DC 3C 01 00 6D 61 63 5F ...  returns 0x3C (0003ms, 0735ms total)
T5658 006:764 JLINK_ReadMemEx(0x0000CA48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA48) - Data: 41 FA  returns 0x02 (0000ms, 0735ms total)
T5658 006:764 JLINK_ReadMemEx(0x0000CA4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA4A) - Data: C0 46  returns 0x02 (0001ms, 0736ms total)
T5658 006:765 JLINK_ReadMemEx(0x0000CA4C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA4C) - Data: 1C D2 01 02 DC 3C 01 00 6D 61 63 5F 74 78 5F 64 ...  returns 0x3C (0000ms, 0736ms total)
T5658 006:765 JLINK_ReadMemEx(0x0000CA4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA4C) - Data: 1C D2  returns 0x02 (0000ms, 0736ms total)
T5658 006:765 JLINK_ReadMemEx(0x0000CA9A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA9A) - Data: E0 00  returns 0x02 (0000ms, 0736ms total)
T5658 006:765 JLINK_ReadMemEx(0x0000CA9C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000CAC0) -- Updating C cache (64 bytes @ 0x0000CAC0) -- Read from C cache (60 bytes @ 0x0000CA9C) - Data: 82 B0 FC F7 E7 FD 05 20 00 25 29 46 FF F7 6A F8 ...  returns 0x3C (0002ms, 0738ms total)
T5658 006:767 JLINK_ReadMemEx(0x0000CA9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA9C) - Data: 82 B0  returns 0x02 (0000ms, 0738ms total)
T5658 006:767 JLINK_ReadMemEx(0x0000CA9C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CA9C) - Data: 82 B0 FC F7 E7 FD 05 20 00 25 29 46 FF F7 6A F8 ...  returns 0x3C (0000ms, 0738ms total)
T5658 006:767 JLINK_ReadMemEx(0x0000CA9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA9C) - Data: 82 B0  returns 0x02 (0000ms, 0738ms total)
T5658 006:767 JLINK_ReadMemEx(0x0000CA9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA9E) - Data: FC F7  returns 0x02 (0000ms, 0738ms total)
T5658 006:767 JLINK_ReadMemEx(0x0000CA9E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA9E) - Data: FC F7  returns 0x02 (0000ms, 0738ms total)
T5658 006:767 JLINK_ReadMemEx(0x0000CAA0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CAA0) - Data: E7 FD 05 20 00 25 29 46 FF F7 6A F8 06 20 29 46 ...  returns 0x3C (0000ms, 0738ms total)
T5658 006:767 JLINK_ReadMemEx(0x0000CAA0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CAA0) - Data: E7 FD  returns 0x02 (0000ms, 0738ms total)
T5658 006:767 JLINK_ReadMemEx(0x0000CAA2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CAA2) - Data: 05 20  returns 0x02 (0000ms, 0738ms total)
T5658 006:767 JLINK_ReadMemEx(0x0000CAA4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CAA4) - Data: 00 25 29 46 FF F7 6A F8 06 20 29 46 FF F7 66 F8 ...  returns 0x3C (0000ms, 0738ms total)
T5658 006:767 JLINK_ReadMemEx(0x0000CAA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CAA4) - Data: 00 25  returns 0x02 (0001ms, 0739ms total)
T5B94 019:701 JLINK_ReadMemEx(0x0000CA9C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CA9C) - Data: 82 B0  returns 0x02 (0000ms, 0739ms total)
T5B94 019:701 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0005ms, 0744ms total)
T5B94 019:807 JLINK_IsHalted()  returns FALSE (0001ms, 0745ms total)
T5B94 019:908 JLINK_IsHalted()  returns FALSE (0000ms, 0744ms total)
T5B94 020:010 JLINK_IsHalted()  returns FALSE (0001ms, 0745ms total)
T5B94 020:111 JLINK_IsHalted()  returns FALSE (0001ms, 0745ms total)
T5B94 020:213 JLINK_IsHalted()  returns FALSE (0001ms, 0745ms total)
T5658 020:466 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0746ms total)
T5658 020:468 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0000ms, 0746ms total)
T5658 020:526 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0747ms total)
T5658 020:527 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0748ms total)
T5658 020:551 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0749ms total)
T5658 020:552 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0750ms total)
T5658 020:563 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 00 00 00 00  returns 0x04 (0002ms, 0752ms total)
T5658 020:601 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 0753ms total)
T5658 020:602 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0754ms total)
T5B94 020:615 JLINK_IsHalted()  returns FALSE (0002ms, 0756ms total)
T5B94 020:717 JLINK_IsHalted()  returns FALSE (0001ms, 0755ms total)
T5B94 020:819 JLINK_IsHalted()  returns FALSE (0001ms, 0755ms total)
T5658 021:071 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0755ms total)
T5658 021:072 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 0757ms total)
T5658 021:120 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 0759ms total)
T5658 021:122 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 0761ms total)
T5658 021:147 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0762ms total)
T5658 021:148 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0763ms total)
T5658 021:162 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 00 00 00 00  returns 0x04 (0001ms, 0764ms total)
T5658 021:202 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 0766ms total)
T5658 021:204 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0767ms total)
T5B94 021:219 JLINK_IsHalted()  returns FALSE (0001ms, 0768ms total)
T5B94 021:321 JLINK_IsHalted()  returns FALSE (0001ms, 0768ms total)
T5B94 021:423 JLINK_IsHalted()  returns FALSE (0001ms, 0768ms total)
T5658 021:661 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0768ms total)
T5658 021:662 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 0770ms total)
T5658 021:700 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 0772ms total)
T5658 021:702 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 0774ms total)
T5658 021:730 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 0775ms total)
T5658 021:731 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 0777ms total)
T5658 021:745 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 00 00 00 00  returns 0x04 (0001ms, 0778ms total)
T5658 021:787 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 0780ms total)
T5658 021:789 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0781ms total)
T5B94 021:803 JLINK_IsHalted()  returns FALSE (0001ms, 0782ms total)
T5B94 021:905 JLINK_IsHalted()  returns FALSE (0001ms, 0782ms total)
T5B94 022:007 JLINK_IsHalted()  returns FALSE (0001ms, 0782ms total)
T5658 022:243 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0782ms total)
T5658 022:244 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 0783ms total)
T5658 022:280 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 48 83 34 48 83 8C 1E C0  returns 0x08 (0001ms, 0784ms total)
T5658 022:294 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: AB A9 C3 16 76 DC 68 C0  returns 0x08 (0001ms, 0785ms total)
T5658 022:336 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 14 FC 9D 02 00 00 00 00  returns 0x08 (0001ms, 0786ms total)
T5658 022:349 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: E4 FF 9D 02 00 00 00 00  returns 0x08 (0001ms, 0787ms total)
T5658 022:373 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 5F 04 F4 02  returns 0x04 (0002ms, 0789ms total)
T5658 022:423 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 0790ms total)
T5658 022:424 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0791ms total)
T5B94 022:438 JLINK_IsHalted()  returns FALSE (0001ms, 0792ms total)
T5B94 022:541 JLINK_IsHalted()  returns FALSE (0001ms, 0792ms total)
T5658 022:793 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0792ms total)
T5658 022:794 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 0793ms total)
T5658 022:832 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: BE E5 5B BE E5 7C 1F C0  returns 0x08 (0001ms, 0794ms total)
T5658 022:858 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: BD 8B B1 31 99 BD 69 C0  returns 0x08 (0001ms, 0795ms total)
T5658 022:905 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 23 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 0796ms total)
T5658 022:931 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 12 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 0797ms total)
T5658 022:968 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 1A BC 06 00  returns 0x04 (0001ms, 0798ms total)
T5658 023:031 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 0799ms total)
T5658 023:032 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0800ms total)
T5B94 023:045 JLINK_IsHalted()  returns FALSE (0002ms, 0802ms total)
T5B94 023:148 JLINK_IsHalted()  returns FALSE (0001ms, 0801ms total)
T5658 023:381 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0801ms total)
T5658 023:382 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 0802ms total)
T5658 023:422 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 70 F9 96 6F F9 AC 1F C0  returns 0x08 (0001ms, 0803ms total)
T5658 023:450 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 8E 52 14 37 A0 EA 69 C0  returns 0x08 (0001ms, 0804ms total)
T5658 023:502 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 24 FA B1 02 00 00 00 00  returns 0x08 (0000ms, 0804ms total)
T5658 023:529 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 18 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 0805ms total)
T5658 023:567 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 1A BC 06 00  returns 0x04 (0001ms, 0806ms total)
T5658 023:625 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 0807ms total)
T5658 023:626 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0808ms total)
T5B94 023:641 JLINK_IsHalted()  returns FALSE (0001ms, 0809ms total)
T5B94 023:743 JLINK_IsHalted()  returns FALSE (0001ms, 0809ms total)
T5658 023:984 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0810ms total)
T5658 023:986 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 0811ms total)
T5658 024:025 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 90 06 69 90 06 CD 1F C0  returns 0x08 (0001ms, 0812ms total)
T5658 024:052 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 6C 2C 56 E5 A4 08 6A C0  returns 0x08 (0001ms, 0813ms total)
T5658 024:107 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 0C FA B1 02 00 00 00 00  returns 0x08 (0001ms, 0814ms total)
T5658 024:140 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 21 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 0815ms total)
T5658 024:188 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 9F FE 05 00  returns 0x04 (0001ms, 0816ms total)
T5658 024:237 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 0817ms total)
T5658 024:238 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0818ms total)
T5B94 024:249 JLINK_IsHalted()  returns FALSE (0001ms, 0819ms total)
T5B94 024:351 JLINK_IsHalted()  returns FALSE (0000ms, 0818ms total)
T5658 024:658 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0820ms total)
T5658 024:660 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 0821ms total)
T5658 024:719 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 4F EC C4 4E EC 8C 1F C0  returns 0x08 (0001ms, 0822ms total)
T5658 024:756 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: AC 78 D2 88 9B CC 69 C0  returns 0x08 (0001ms, 0823ms total)
T5658 024:822 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: F7 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 0824ms total)
T5658 024:863 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: E7 FF B1 02 00 00 00 00  returns 0x08 (0001ms, 0825ms total)
T5658 024:912 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: C6 01 06 00  returns 0x04 (0003ms, 0828ms total)
T5658 024:998 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 0830ms total)
T5658 025:000 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0831ms total)
T5B94 025:017 JLINK_IsHalted()  returns FALSE (0001ms, 0832ms total)
T5658 025:310 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0832ms total)
T5658 025:311 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 0834ms total)
T5658 025:360 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: F9 96 6F F9 96 16 20 C0  returns 0x08 (0002ms, 0836ms total)
T5658 025:394 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 0C BA 1B F0 B2 62 6A C0  returns 0x08 (0001ms, 0837ms total)
T5658 025:470 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 3F FA B1 02 00 00 00 00  returns 0x08 (0002ms, 0839ms total)
T5658 025:509 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 43 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 0840ms total)
T5658 025:560 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: C6 01 06 00  returns 0x04 (0002ms, 0842ms total)
T5658 025:640 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 0843ms total)
T5658 025:641 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0844ms total)
T5B94 025:658 JLINK_IsHalted()  returns FALSE (0001ms, 0845ms total)
T5658 025:955 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0846ms total)
T5658 025:957 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 0847ms total)
T5658 026:009 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 42 1A A4 41 1A FD 1F C0  returns 0x08 (0002ms, 0849ms total)
T5658 026:050 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 3D F3 B8 EA AB 35 6A C0  returns 0x08 (0002ms, 0851ms total)
T5658 026:121 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: CE FA B1 02 00 00 00 00  returns 0x08 (0001ms, 0852ms total)
T5658 026:162 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: CF FE B1 02 00 00 00 00  returns 0x08 (0001ms, 0853ms total)
T5658 026:242 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 54 05 06 00  returns 0x04 (0001ms, 0854ms total)
T5658 026:341 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 0855ms total)
T5658 026:342 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 0857ms total)
T5B94 026:365 JLINK_IsHalted()  returns FALSE (0001ms, 0858ms total)
T5658 026:674 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0859ms total)
T5658 026:676 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 0861ms total)
T5658 026:727 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 5C BE E5 5B BE 1C 1F C0  returns 0x08 (0000ms, 0861ms total)
T5658 026:764 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 1C FE EB 26 8B 63 69 C0  returns 0x08 (0002ms, 0863ms total)
T5658 026:836 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: E3 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 0864ms total)
T5658 026:869 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: C5 FE B1 02 00 00 00 00  returns 0x08 (0002ms, 0866ms total)
T5658 026:922 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 5A 08 06 00  returns 0x04 (0001ms, 0867ms total)
T5658 027:007 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 0868ms total)
T5658 027:008 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0869ms total)
T5B94 027:029 JLINK_IsHalted()  returns FALSE (0001ms, 0870ms total)
T5658 027:332 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0870ms total)
T5658 027:333 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 0871ms total)
T5658 027:398 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 7D CB B7 7C CB 3C 1F C0  returns 0x08 (0002ms, 0873ms total)
T5658 027:448 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: FC D7 2D D5 8F 81 69 C0  returns 0x08 (0002ms, 0875ms total)
T5658 027:526 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 76 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 0876ms total)
T5658 027:567 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 5C FF B1 02 00 00 00 00  returns 0x08 (0001ms, 0877ms total)
T5658 027:633 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 3C 0C 06 00  returns 0x04 (0001ms, 0878ms total)
T5658 027:726 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 0880ms total)
T5658 027:728 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0881ms total)
T5B94 027:752 JLINK_IsHalted()  returns FALSE (0000ms, 0881ms total)
T5658 028:057 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0882ms total)
T5658 028:058 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0003ms, 0885ms total)
T5658 028:112 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: F9 96 6F F9 96 16 20 C0  returns 0x08 (0001ms, 0886ms total)
T5658 028:151 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 4C 06 98 93 A9 26 6A C0  returns 0x08 (0001ms, 0887ms total)
T5658 028:220 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 2E FB B1 02 00 00 00 00  returns 0x08 (0002ms, 0889ms total)
T5658 028:262 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 2B FF B1 02 00 00 00 00  returns 0x08 (0002ms, 0891ms total)
T5658 028:316 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 3C 0C 06 00  returns 0x04 (0002ms, 0893ms total)
T5658 028:384 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 0895ms total)
T5658 028:386 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0896ms total)
T5B94 028:405 JLINK_IsHalted()  returns FALSE (0000ms, 0896ms total)
T5658 028:719 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0897ms total)
T5658 028:720 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 0898ms total)
T5658 028:775 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: D2 20 0D D2 A0 9F 22 C0  returns 0x08 (0002ms, 0900ms total)
T5658 028:811 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 04 B2 86 81 70 22 6F C0  returns 0x08 (0001ms, 0901ms total)
T5658 028:887 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: E6 F9 B1 02 00 00 00 00  returns 0x08 (0002ms, 0903ms total)
T5658 028:930 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 8D FE B1 02 00 00 00 00  returns 0x08 (0001ms, 0904ms total)
T5658 028:991 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 24 01 06 00  returns 0x04 (0002ms, 0906ms total)
T5658 029:071 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 0908ms total)
T5658 029:073 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0909ms total)
T5B94 029:094 JLINK_IsHalted()  returns FALSE (0001ms, 0910ms total)
T5658 029:490 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0911ms total)
T5658 029:492 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 0912ms total)
T5658 029:577 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: B1 13 3B B1 13 ED 1F C0  returns 0x08 (0001ms, 0913ms total)
T5658 029:635 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: FC D7 2D D5 8F 81 69 C0  returns 0x08 (0001ms, 0914ms total)
T5658 029:715 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: F6 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 0915ms total)
T5658 029:753 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: DC FE B1 02 00 00 00 00  returns 0x08 (0001ms, 0916ms total)
T5658 029:829 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 10 05 06 00  returns 0x04 (0002ms, 0918ms total)
T5658 029:930 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 0919ms total)
T5658 029:931 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0920ms total)
T5B94 029:957 JLINK_IsHalted()  returns FALSE (0001ms, 0921ms total)
T5658 030:255 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0921ms total)
T5658 030:256 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 0922ms total)
T5658 030:312 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 9D D8 89 9D D8 5C 1F C0  returns 0x08 (0001ms, 0923ms total)
T5658 030:344 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: DB B1 6F 83 94 9F 69 C0  returns 0x08 (0002ms, 0925ms total)
T5658 030:404 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 00 FC B1 02 00 00 00 00  returns 0x08 (0001ms, 0926ms total)
T5658 030:438 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: EA FF B1 02 00 00 00 00  returns 0x08 (0001ms, 0927ms total)
T5658 030:489 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 10 05 06 00  returns 0x04 (0002ms, 0929ms total)
T5658 030:556 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 0930ms total)
T5658 030:557 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0931ms total)
T5B94 030:575 JLINK_IsHalted()  returns FALSE (0001ms, 0932ms total)
T5658 030:839 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0933ms total)
T5658 030:841 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 0934ms total)
T5658 030:892 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 90 06 69 90 06 CD 1F C0  returns 0x08 (0002ms, 0936ms total)
T5658 030:922 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 6C 2C 56 E5 A4 08 6A C0  returns 0x08 (0001ms, 0937ms total)
T5658 030:984 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 22 FA B1 02 00 00 00 00  returns 0x08 (0002ms, 0939ms total)
T5658 031:012 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 1A FE B1 02 00 00 00 00  returns 0x08 (0001ms, 0940ms total)
T5658 031:056 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 86 08 06 00  returns 0x04 (0001ms, 0941ms total)
T5658 031:112 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 0942ms total)
T5658 031:113 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0943ms total)
T5B94 031:135 JLINK_IsHalted()  returns FALSE (0001ms, 0944ms total)
T5658 031:407 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0945ms total)
T5658 031:409 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 0946ms total)
T5658 031:455 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: BE E5 5B BE E5 7C 1F C0  returns 0x08 (0002ms, 0948ms total)
T5658 031:485 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: BD 8B B1 31 99 BD 69 C0  returns 0x08 (0001ms, 0949ms total)
T5658 031:546 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 01 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 0950ms total)
T5658 031:574 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: EF FE B1 02 00 00 00 00  returns 0x08 (0001ms, 0951ms total)
T5658 031:621 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 65 0C 06 00  returns 0x04 (0001ms, 0952ms total)
T5658 031:692 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 0953ms total)
T5658 031:693 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0954ms total)
T5B94 031:708 JLINK_IsHalted()  returns FALSE (0001ms, 0955ms total)
T5658 031:965 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0955ms total)
T5658 031:966 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 0956ms total)
T5658 032:005 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 1A A4 41 1A A4 A7 22 C0  returns 0x08 (0002ms, 0958ms total)
T5658 032:036 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: F4 9E A7 D8 72 31 6F C0  returns 0x08 (0001ms, 0959ms total)
T5658 032:091 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 57 FA B1 02 00 00 00 00  returns 0x08 (0002ms, 0961ms total)
T5658 032:119 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 6F FF B1 02 00 00 00 00  returns 0x08 (0001ms, 0962ms total)
T5658 032:162 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 65 0C 06 00  returns 0x04 (0001ms, 0963ms total)
T5658 032:213 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 0964ms total)
T5658 032:214 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 0966ms total)
T5B94 032:229 JLINK_IsHalted()  returns FALSE (0000ms, 0966ms total)
T5658 032:473 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0968ms total)
T5658 032:475 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0000ms, 0968ms total)
T5658 032:516 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: DF F2 2D DF F2 9C 1F C0  returns 0x08 (0000ms, 0968ms total)
T5658 032:544 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 9D 65 F3 DF 9D DB 69 C0  returns 0x08 (0002ms, 0970ms total)
T5658 032:599 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 7C FB B1 02 00 00 00 00  returns 0x08 (0001ms, 0971ms total)
T5658 032:637 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 90 FF B1 02 00 00 00 00  returns 0x08 (0002ms, 0973ms total)
T5658 032:683 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 2D 00 06 00  returns 0x04 (0001ms, 0974ms total)
T5658 032:740 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 0975ms total)
T5658 032:741 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0976ms total)
T5B94 032:754 JLINK_IsHalted()  returns FALSE (0001ms, 0977ms total)
T5658 033:001 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0978ms total)
T5658 033:003 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 0979ms total)
T5658 033:044 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 5C BE E5 5B BE 1C 1F C0  returns 0x08 (0001ms, 0980ms total)
T5658 033:071 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 1C FE EB 26 8B 63 69 C0  returns 0x08 (0003ms, 0983ms total)
T5658 033:138 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 37 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 0984ms total)
T5658 033:168 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 30 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 0985ms total)
T5658 033:208 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 2D 00 06 00  returns 0x04 (0001ms, 0986ms total)
T5658 033:265 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 0987ms total)
T5658 033:266 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0988ms total)
T5B94 033:283 JLINK_IsHalted()  returns FALSE (0002ms, 0990ms total)
T5658 033:528 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0989ms total)
T5658 033:529 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 0990ms total)
T5658 033:565 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 90 06 69 90 06 CD 1F C0  returns 0x08 (0002ms, 0992ms total)
T5658 033:594 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 6C 2C 56 E5 A4 08 6A C0  returns 0x08 (0001ms, 0993ms total)
T5658 033:657 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 83 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 0994ms total)
T5658 033:683 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 75 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 0995ms total)
T5658 033:725 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 7C 04 06 00  returns 0x04 (0001ms, 0996ms total)
T5658 033:778 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 0998ms total)
T5658 033:780 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 0999ms total)
T5B94 033:794 JLINK_IsHalted()  returns FALSE (0001ms, 1000ms total)
T5B94 033:897 JLINK_IsHalted()  returns FALSE (0001ms, 1000ms total)
T5658 034:147 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1001ms total)
T5658 034:149 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1002ms total)
T5658 034:188 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: BE E5 5B BE E5 7C 1F C0  returns 0x08 (0002ms, 1004ms total)
T5658 034:214 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: BD 8B B1 31 99 BD 69 C0  returns 0x08 (0001ms, 1005ms total)
T5658 034:264 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 72 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1006ms total)
T5658 034:293 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 61 FF B1 02 00 00 00 00  returns 0x08 (0001ms, 1007ms total)
T5658 034:331 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 7C 04 06 00  returns 0x04 (0001ms, 1008ms total)
T5658 034:381 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1009ms total)
T5658 034:382 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1010ms total)
T5B94 034:399 JLINK_IsHalted()  returns FALSE (0001ms, 1011ms total)
T5B94 034:501 JLINK_IsHalted()  returns FALSE (0002ms, 1012ms total)
T5658 034:746 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1011ms total)
T5658 034:747 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1012ms total)
T5658 034:790 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: B1 13 3B B1 13 ED 1F C0  returns 0x08 (0001ms, 1013ms total)
T5658 034:813 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 4C 06 98 93 A9 26 6A C0  returns 0x08 (0001ms, 1014ms total)
T5658 034:859 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 0C FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1015ms total)
T5658 034:885 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 09 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1016ms total)
T5658 034:934 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: E8 07 06 00  returns 0x04 (0005ms, 1021ms total)
T5658 035:003 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1022ms total)
T5658 035:004 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1023ms total)
T5B94 035:017 JLINK_IsHalted()  returns FALSE (0001ms, 1024ms total)
T5658 035:262 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1025ms total)
T5658 035:264 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1026ms total)
T5658 035:299 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 0D D2 20 0D D2 4C 1F C0  returns 0x08 (0001ms, 1027ms total)
T5658 035:330 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: EC C4 4E 2C 92 90 69 C0  returns 0x08 (0001ms, 1028ms total)
T5658 035:380 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 70 FB B1 02 00 00 00 00  returns 0x08 (0003ms, 1031ms total)
T5658 035:407 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 58 FF B1 02 00 00 00 00  returns 0x08 (0001ms, 1032ms total)
T5658 035:448 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: E8 07 06 00  returns 0x04 (0001ms, 1033ms total)
T5658 035:498 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1034ms total)
T5658 035:499 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1035ms total)
T5B94 035:512 JLINK_IsHalted()  returns FALSE (0001ms, 1036ms total)
T5B94 035:614 JLINK_IsHalted()  returns FALSE (0001ms, 1036ms total)
T5658 035:854 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1037ms total)
T5658 035:856 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1038ms total)
T5658 035:892 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 70 F9 96 6F F9 AC 1F C0  returns 0x08 (0001ms, 1039ms total)
T5658 035:918 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 8E 52 14 37 A0 EA 69 C0  returns 0x08 (0001ms, 1041ms total)
T5658 035:978 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 36 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1043ms total)
T5658 036:008 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 2A FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1044ms total)
T5658 036:047 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 96 0B 06 00  returns 0x04 (0001ms, 1045ms total)
T5658 036:105 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1046ms total)
T5658 036:106 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1047ms total)
T5B94 036:121 JLINK_IsHalted()  returns FALSE (0001ms, 1048ms total)
T5B94 036:223 JLINK_IsHalted()  returns FALSE (0002ms, 1049ms total)
T5658 036:466 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1048ms total)
T5658 036:467 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1049ms total)
T5658 036:511 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 2E DF F2 2D DF 6C 1F C0  returns 0x08 (0001ms, 1050ms total)
T5658 036:534 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: CC 9E 90 DA 96 AE 69 C0  returns 0x08 (0001ms, 1051ms total)
T5658 036:585 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: D5 FB B1 02 00 00 00 00  returns 0x08 (0002ms, 1053ms total)
T5658 036:614 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: C2 FF B1 02 00 00 00 00  returns 0x08 (0001ms, 1054ms total)
T5658 036:655 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 51 00 06 00  returns 0x04 (0002ms, 1056ms total)
T5658 036:722 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1057ms total)
T5658 036:723 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1058ms total)
T5B94 036:742 JLINK_IsHalted()  returns FALSE (0001ms, 1059ms total)
T5658 036:987 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1060ms total)
T5658 036:989 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1061ms total)
T5658 037:028 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 21 0D D2 20 0D DD 1F C0  returns 0x08 (0001ms, 1062ms total)
T5658 037:053 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 5D 19 77 3C A7 17 6A C0  returns 0x08 (0001ms, 1063ms total)
T5658 037:104 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 3B FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1064ms total)
T5658 037:135 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 02 FF B1 02 00 00 00 00  returns 0x08 (0001ms, 1065ms total)
T5658 037:172 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 51 00 06 00  returns 0x04 (0002ms, 1067ms total)
T5658 037:223 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1068ms total)
T5658 037:224 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1069ms total)
T5B94 037:242 JLINK_IsHalted()  returns FALSE (0000ms, 1069ms total)
T5B94 037:344 JLINK_IsHalted()  returns FALSE (0001ms, 1070ms total)
T5658 037:591 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1070ms total)
T5658 037:592 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1071ms total)
T5658 037:643 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 21 0D D2 20 0D DD 1F C0  returns 0x08 (0002ms, 1073ms total)
T5658 037:656 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 5D 19 77 3C A7 17 6A C0  returns 0x08 (0001ms, 1074ms total)
T5658 037:698 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: B4 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1075ms total)
T5658 037:727 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: AF FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1076ms total)
T5658 037:767 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 4A 04 06 00  returns 0x04 (0001ms, 1077ms total)
T5658 037:820 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1079ms total)
T5658 037:822 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1080ms total)
T5B94 037:836 JLINK_IsHalted()  returns FALSE (0001ms, 1081ms total)
T5B94 037:938 JLINK_IsHalted()  returns FALSE (0001ms, 1081ms total)
T5658 038:201 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1081ms total)
T5658 038:202 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 1083ms total)
T5658 038:240 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 0D D2 20 0D D2 4C 1F C0  returns 0x08 (0002ms, 1085ms total)
T5658 038:253 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: EC C4 4E 2C 92 90 69 C0  returns 0x08 (0001ms, 1086ms total)
T5658 038:292 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 01 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1087ms total)
T5658 038:316 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: EA FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1088ms total)
T5658 038:352 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 4A 04 06 00  returns 0x04 (0001ms, 1089ms total)
T5658 038:411 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1090ms total)
T5658 038:412 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 1092ms total)
T5B94 038:428 JLINK_IsHalted()  returns FALSE (0001ms, 1093ms total)
T5B94 038:530 JLINK_IsHalted()  returns FALSE (0001ms, 1093ms total)
T5658 038:771 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1093ms total)
T5658 038:772 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 1095ms total)
T5658 038:813 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: D2 20 0D D2 A0 2E 20 C0  returns 0x08 (0001ms, 1096ms total)
T5658 038:841 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: DD 80 7E F5 B9 8F 6A C0  returns 0x08 (0001ms, 1097ms total)
T5658 038:892 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: B8 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1098ms total)
T5658 038:922 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: C2 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1099ms total)
T5658 038:961 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: D4 07 06 00  returns 0x04 (0001ms, 1100ms total)
T5658 039:012 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1102ms total)
T5658 039:014 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1103ms total)
T5B94 039:029 JLINK_IsHalted()  returns FALSE (0002ms, 1105ms total)
T5B94 039:132 JLINK_IsHalted()  returns FALSE (0001ms, 1104ms total)
T5658 039:381 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1105ms total)
T5658 039:383 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1106ms total)
T5658 039:421 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 7D CB B7 7C CB 3C 1F C0  returns 0x08 (0001ms, 1107ms total)
T5658 039:450 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: FC D7 2D D5 8F 81 69 C0  returns 0x08 (0002ms, 1109ms total)
T5658 039:498 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 54 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1110ms total)
T5658 039:527 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 3B FF B1 02 00 00 00 00  returns 0x08 (0001ms, 1111ms total)
T5658 039:576 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: D4 07 06 00  returns 0x04 (0001ms, 1112ms total)
T5658 039:636 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0000ms, 1112ms total)
T5658 039:636 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1113ms total)
T5B94 039:654 JLINK_IsHalted()  returns FALSE (0001ms, 1114ms total)
T5658 039:898 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1115ms total)
T5658 039:900 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1116ms total)
T5658 039:936 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 7D CB B7 7C CB 3C 1F C0  returns 0x08 (0001ms, 1117ms total)
T5658 039:952 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: FC D7 2D D5 8F 81 69 C0  returns 0x08 (0001ms, 1118ms total)
T5658 039:998 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 5B FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1119ms total)
T5658 040:028 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 42 FF B1 02 00 00 00 00  returns 0x08 (0001ms, 1120ms total)
T5658 040:062 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: A1 0B 06 00  returns 0x04 (0002ms, 1122ms total)
T5658 040:117 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1124ms total)
T5658 040:119 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1125ms total)
T5B94 040:137 JLINK_IsHalted()  returns FALSE (0001ms, 1126ms total)
T5B94 040:240 JLINK_IsHalted()  returns FALSE (0001ms, 1126ms total)
T5658 040:487 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1126ms total)
T5658 040:488 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1127ms total)
T5658 040:526 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 69 90 06 69 90 06 20 C0  returns 0x08 (0001ms, 1128ms total)
T5658 040:542 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2E E0 D9 41 AE 44 6A C0  returns 0x08 (0001ms, 1129ms total)
T5658 040:577 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: C1 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1130ms total)
T5658 040:608 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: C2 FF B1 02 00 00 00 00  returns 0x08 (0002ms, 1132ms total)
T5658 040:657 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 4E 01 06 00  returns 0x04 (0001ms, 1133ms total)
T5658 040:722 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1134ms total)
T5658 040:723 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1135ms total)
T5B94 040:735 JLINK_IsHalted()  returns FALSE (0002ms, 1137ms total)
T5B94 040:838 JLINK_IsHalted()  returns FALSE (0001ms, 1136ms total)
T5658 041:082 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1137ms total)
T5658 041:084 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1138ms total)
T5658 041:126 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 69 90 06 69 90 06 20 C0  returns 0x08 (0002ms, 1140ms total)
T5658 041:144 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2E E0 D9 41 AE 44 6A C0  returns 0x08 (0002ms, 1142ms total)
T5658 041:185 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 3C FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1143ms total)
T5658 041:213 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 3C FF B1 02 00 00 00 00  returns 0x08 (0001ms, 1144ms total)
T5658 041:259 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 4E 01 06 00  returns 0x04 (0001ms, 1145ms total)
T5658 041:314 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1147ms total)
T5658 041:316 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1148ms total)
T5B94 041:328 JLINK_IsHalted()  returns FALSE (0001ms, 1149ms total)
T5B94 041:431 JLINK_IsHalted()  returns FALSE (0001ms, 1149ms total)
T5658 041:677 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1150ms total)
T5658 041:679 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1151ms total)
T5658 041:719 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 7D CB B7 7C CB 3C 1F C0  returns 0x08 (0001ms, 1152ms total)
T5658 041:732 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: FC D7 2D D5 8F 81 69 C0  returns 0x08 (0002ms, 1155ms total)
T5658 041:771 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: F5 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1156ms total)
T5658 041:797 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: DC FF B1 02 00 00 00 00  returns 0x08 (0002ms, 1158ms total)
T5658 041:837 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: D1 04 06 00  returns 0x04 (0002ms, 1160ms total)
T5658 041:887 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1162ms total)
T5658 041:889 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1163ms total)
T5B94 041:903 JLINK_IsHalted()  returns FALSE (0002ms, 1165ms total)
T5B94 042:006 JLINK_IsHalted()  returns FALSE (0001ms, 1164ms total)
T5658 042:252 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1164ms total)
T5658 042:253 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1165ms total)
T5658 042:290 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 4F EC C4 4E EC 8C 1F C0  returns 0x08 (0001ms, 1166ms total)
T5658 042:316 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: AC 78 D2 88 9B CC 69 C0  returns 0x08 (0001ms, 1167ms total)
T5658 042:371 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 6E FB B1 02 00 00 00 00  returns 0x08 (0002ms, 1169ms total)
T5658 042:399 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 5E FF B1 02 00 00 00 00  returns 0x08 (0001ms, 1170ms total)
T5658 042:434 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: D1 04 06 00  returns 0x04 (0001ms, 1171ms total)
T5658 042:492 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1172ms total)
T5658 042:493 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1173ms total)
T5B94 042:510 JLINK_IsHalted()  returns FALSE (0001ms, 1174ms total)
T5B94 042:611 JLINK_IsHalted()  returns FALSE (0001ms, 1174ms total)
T5658 042:853 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1174ms total)
T5658 042:854 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0003ms, 1177ms total)
T5658 042:899 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 4F EC C4 4E EC 8C 1F C0  returns 0x08 (0001ms, 1178ms total)
T5658 042:912 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: AC 78 D2 88 9B CC 69 C0  returns 0x08 (0001ms, 1179ms total)
T5658 042:957 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 71 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1180ms total)
T5658 042:982 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 61 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1181ms total)
T5658 043:024 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 7D 08 06 00  returns 0x04 (0001ms, 1182ms total)
T5658 043:076 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1183ms total)
T5658 043:077 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1184ms total)
T5B94 043:090 JLINK_IsHalted()  returns FALSE (0001ms, 1185ms total)
T5B94 043:192 JLINK_IsHalted()  returns FALSE (0001ms, 1185ms total)
T5658 043:450 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1185ms total)
T5658 043:451 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1186ms total)
T5658 043:494 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 90 06 69 90 06 CD 1F C0  returns 0x08 (0002ms, 1188ms total)
T5658 043:511 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 6C 2C 56 E5 A4 08 6A C0  returns 0x08 (0001ms, 1189ms total)
T5658 043:554 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 27 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1190ms total)
T5658 043:580 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 20 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1191ms total)
T5658 043:622 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: E9 0B 06 00  returns 0x04 (0001ms, 1192ms total)
T5658 043:691 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1193ms total)
T5658 043:692 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 1195ms total)
T5B94 043:706 JLINK_IsHalted()  returns FALSE (0001ms, 1196ms total)
T5658 043:953 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1196ms total)
T5658 043:954 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1197ms total)
T5658 043:997 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 69 90 06 69 90 06 20 C0  returns 0x08 (0001ms, 1198ms total)
T5658 044:024 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2E E0 D9 41 AE 44 6A C0  returns 0x08 (0000ms, 1198ms total)
T5658 044:077 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 46 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1199ms total)
T5658 044:107 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 47 FF B1 02 00 00 00 00  returns 0x08 (0002ms, 1201ms total)
T5658 044:153 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: E9 0B 06 00  returns 0x04 (0002ms, 1203ms total)
T5658 044:206 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1204ms total)
T5658 044:207 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1205ms total)
T5B94 044:220 JLINK_IsHalted()  returns FALSE (0002ms, 1207ms total)
T5B94 044:322 JLINK_IsHalted()  returns FALSE (0001ms, 1206ms total)
T5658 044:555 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1206ms total)
T5658 044:556 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1207ms total)
T5658 044:594 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 7D CB B7 7C CB 3C 1F C0  returns 0x08 (0002ms, 1209ms total)
T5658 044:622 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: AC 78 D2 88 9B CC 69 C0  returns 0x08 (0001ms, 1210ms total)
T5658 044:671 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: A3 FA B1 02 00 00 00 00  returns 0x08 (0002ms, 1212ms total)
T5658 044:697 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 93 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1213ms total)
T5658 044:735 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 46 01 06 00  returns 0x04 (0001ms, 1214ms total)
T5658 044:785 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1215ms total)
T5658 044:786 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1216ms total)
T5B94 044:800 JLINK_IsHalted()  returns FALSE (0001ms, 1217ms total)
T5B94 044:902 JLINK_IsHalted()  returns FALSE (0002ms, 1218ms total)
T5658 045:198 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1218ms total)
T5658 045:200 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 1220ms total)
T5658 045:254 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 2E DF F2 2D DF 6C 1F C0  returns 0x08 (0001ms, 1221ms total)
T5658 045:292 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: CC 9E 90 DA 96 AE 69 C0  returns 0x08 (0001ms, 1222ms total)
T5658 045:363 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: C8 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1223ms total)
T5658 045:399 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: B5 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1224ms total)
T5658 045:451 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 46 01 06 00  returns 0x04 (0001ms, 1225ms total)
T5658 045:522 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1226ms total)
T5658 045:523 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1227ms total)
T5B94 045:541 JLINK_IsHalted()  returns FALSE (0001ms, 1228ms total)
T5658 045:874 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1228ms total)
T5658 045:875 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1229ms total)
T5658 045:950 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: EC C4 4E EC C4 2C 1F C0  returns 0x08 (0001ms, 1230ms total)
T5658 045:992 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 0C EB 0C 7E 8D 72 69 C0  returns 0x08 (0001ms, 1231ms total)
T5658 046:079 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: A6 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1232ms total)
T5658 046:128 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 22 FF B1 02 00 00 00 00  returns 0x08 (0001ms, 1233ms total)
T5658 046:186 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: EE 04 06 00  returns 0x04 (0002ms, 1235ms total)
T5658 046:259 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1236ms total)
T5658 046:260 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1237ms total)
T5B94 046:281 JLINK_IsHalted()  returns FALSE (0001ms, 1238ms total)
T5658 046:590 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1239ms total)
T5658 046:592 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1240ms total)
T5658 046:651 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: EC C4 4E EC C4 2C 1F C0  returns 0x08 (0002ms, 1242ms total)
T5658 046:669 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 0C EB 0C 7E 8D 72 69 C0  returns 0x08 (0002ms, 1244ms total)
T5658 046:734 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 80 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1245ms total)
T5658 046:777 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 65 FF B1 02 00 00 00 00  returns 0x08 (0001ms, 1246ms total)
T5658 046:834 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 8D 08 06 00  returns 0x04 (0002ms, 1248ms total)
T5658 046:934 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1250ms total)
T5658 046:936 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1251ms total)
T5B94 046:956 JLINK_IsHalted()  returns FALSE (0001ms, 1252ms total)
T5658 047:276 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1252ms total)
T5658 047:277 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 1254ms total)
T5658 047:331 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 0D D2 20 0D D2 4C 1F C0  returns 0x08 (0002ms, 1256ms total)
T5658 047:356 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: EC C4 4E 2C 92 90 69 C0  returns 0x08 (0001ms, 1257ms total)
T5658 047:412 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 6C FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1258ms total)
T5658 047:450 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 54 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1259ms total)
T5658 047:504 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 8D 08 06 00  returns 0x04 (0001ms, 1260ms total)
T5658 047:574 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1261ms total)
T5658 047:575 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1262ms total)
T5B94 047:591 JLINK_IsHalted()  returns FALSE (0001ms, 1263ms total)
T5658 047:876 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1263ms total)
T5658 047:877 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1264ms total)
T5658 047:926 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 9D D8 89 9D D8 5C 1F C0  returns 0x08 (0001ms, 1265ms total)
T5658 047:958 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: DB B1 6F 83 94 9F 69 C0  returns 0x08 (0001ms, 1266ms total)
T5658 048:028 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: A7 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1267ms total)
T5658 048:056 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 92 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1268ms total)
T5658 048:102 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 77 0C 06 00  returns 0x04 (0001ms, 1269ms total)
T5658 048:166 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1270ms total)
T5658 048:167 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1271ms total)
T5B94 048:185 JLINK_IsHalted()  returns FALSE (0001ms, 1272ms total)
T5658 048:441 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1272ms total)
T5658 048:442 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 1274ms total)
T5658 048:484 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 1A A4 41 1A A4 DC 1E C0  returns 0x08 (0001ms, 1275ms total)
T5658 048:511 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 5B 4A 68 CA 81 27 69 C0  returns 0x08 (0001ms, 1276ms total)
T5658 048:572 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: A8 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1277ms total)
T5658 048:603 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 83 FF B1 02 00 00 00 00  returns 0x08 (0001ms, 1279ms total)
T5658 048:651 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 08 02 06 00  returns 0x04 (0001ms, 1280ms total)
T5658 048:716 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1282ms total)
T5658 048:718 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1283ms total)
T5B94 048:734 JLINK_IsHalted()  returns FALSE (0001ms, 1284ms total)
T5658 048:990 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1284ms total)
T5658 048:991 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 1286ms total)
T5658 049:036 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 0D D2 20 0D D2 4C 1F C0  returns 0x08 (0001ms, 1287ms total)
T5658 049:068 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: EC C4 4E 2C 92 90 69 C0  returns 0x08 (0001ms, 1288ms total)
T5658 049:123 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 9F FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1289ms total)
T5658 049:152 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 97 FF B1 02 00 00 00 00  returns 0x08 (0002ms, 1291ms total)
T5658 049:197 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 08 02 06 00  returns 0x04 (0001ms, 1292ms total)
T5658 049:256 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1294ms total)
T5658 049:258 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 1296ms total)
T5B94 049:272 JLINK_IsHalted()  returns FALSE (0001ms, 1297ms total)
T5658 049:518 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1298ms total)
T5658 049:520 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1299ms total)
T5658 049:560 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 90 06 69 90 06 CD 1F C0  returns 0x08 (0001ms, 1300ms total)
T5658 049:589 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 6C 2C 56 E5 A4 08 6A C0  returns 0x08 (0001ms, 1301ms total)
T5658 049:650 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 73 FA B1 02 00 00 00 00  returns 0x08 (0002ms, 1303ms total)
T5658 049:676 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 64 FE B1 02 00 00 00 00  returns 0x08 (0002ms, 1305ms total)
T5658 049:716 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 2E 06 06 00  returns 0x04 (0001ms, 1306ms total)
T5658 049:765 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1308ms total)
T5658 049:767 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1309ms total)
T5B94 049:782 JLINK_IsHalted()  returns FALSE (0001ms, 1310ms total)
T5658 050:039 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0003ms, 1312ms total)
T5658 050:042 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0000ms, 1312ms total)
T5658 050:079 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 4F EC C4 4E EC 8C 1F C0  returns 0x08 (0002ms, 1314ms total)
T5658 050:105 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: AC 78 D2 88 9B CC 69 C0  returns 0x08 (0001ms, 1315ms total)
T5658 050:154 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: FD FB B1 02 00 00 00 00  returns 0x08 (0002ms, 1317ms total)
T5658 050:178 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: EC FF B1 02 00 00 00 00  returns 0x08 (0002ms, 1319ms total)
T5658 050:213 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 2E 06 06 00  returns 0x04 (0001ms, 1320ms total)
T5658 050:260 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1321ms total)
T5658 050:261 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1322ms total)
T5B94 050:274 JLINK_IsHalted()  returns FALSE (0001ms, 1323ms total)
T5658 050:350 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 1322ms total)
T5658 050:350 JLINK_ResetNoHalt() >0x10B TIF>Found SW-DP with ID 0x0BB11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>AP map detection skipped. Manually configured AP map found.AP[0]: AHB-AP (IDR: Not set) >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core found
AP[0]: AHB-AP ROM base: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC200. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p0, Little endian. -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ E00FF000
 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB
                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) (0077ms, 0077ms total)
                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) (0005ms, 0082ms total)
               (0226ms, 1548ms total)
T5658 050:773 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1549ms total)
T5658 050:774 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1550ms total)
T5658 050:825 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 1551ms total)
T5658 050:860 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 1552ms total)
T5658 050:926 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 1553ms total)
T5658 050:962 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 1555ms total)
T5658 051:015 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 00 00 00 00  returns 0x04 (0001ms, 1556ms total)
T5658 051:088 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1558ms total)
T5658 051:090 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1559ms total)
T5B94 051:110 JLINK_IsHalted()  returns FALSE (0002ms, 1561ms total)
T5658 051:392 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1560ms total)
T5658 051:393 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 1562ms total)
T5658 051:440 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 1564ms total)
T5658 051:460 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 1565ms total)
T5658 051:510 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 1566ms total)
T5658 051:528 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 1567ms total)
T5658 051:561 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 00 00 00 00  returns 0x04 (0001ms, 1568ms total)
T5658 051:667 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1570ms total)
T5658 051:669 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1571ms total)
T5B94 051:694 JLINK_IsHalted()  returns FALSE (0000ms, 1571ms total)
T5658 051:975 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1573ms total)
T5658 051:978 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1575ms total)
T5658 052:022 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 1577ms total)
T5658 052:024 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 1578ms total)
T5658 052:056 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 1579ms total)
T5658 052:057 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 1581ms total)
T5658 052:075 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 00 00 00 00  returns 0x04 (0001ms, 1582ms total)
T5658 052:121 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1583ms total)
T5658 052:122 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 1585ms total)
T5B94 052:136 JLINK_IsHalted()  returns FALSE (0002ms, 1587ms total)
T5B94 052:239 JLINK_IsHalted()  returns FALSE (0001ms, 1586ms total)
T5658 052:496 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1587ms total)
T5658 052:498 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1588ms total)
T5658 052:534 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 1590ms total)
T5658 052:536 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 1591ms total)
T5658 052:565 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0002ms, 1593ms total)
T5658 052:567 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 1594ms total)
T5658 052:579 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 00 00 00 00  returns 0x04 (0001ms, 1595ms total)
T5658 052:619 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1596ms total)
T5658 052:620 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1597ms total)
T5B94 052:634 JLINK_IsHalted()  returns FALSE (0001ms, 1598ms total)
T5B94 052:736 JLINK_IsHalted()  returns FALSE (0001ms, 1598ms total)
T5B94 052:837 JLINK_IsHalted()  returns FALSE (0001ms, 1598ms total)
T5658 053:076 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1598ms total)
T5658 053:077 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 1600ms total)
T5658 053:114 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 1601ms total)
T5658 053:115 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 00 00 00 00 00 00 00 00  returns 0x08 (0001ms, 1602ms total)
T5658 053:141 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 82 FA 9D 02 00 00 00 00  returns 0x08 (0002ms, 1604ms total)
T5658 053:156 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 55 FE 9D 02 00 00 00 00  returns 0x08 (0001ms, 1605ms total)
T5658 053:180 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 8D B8 47 03  returns 0x04 (0001ms, 1606ms total)
T5658 053:236 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1607ms total)
T5658 053:237 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0000ms, 1607ms total)
T5B94 053:253 JLINK_IsHalted()  returns FALSE (0001ms, 1608ms total)
T5B94 053:355 JLINK_IsHalted()  returns FALSE (0001ms, 1608ms total)
T5658 053:591 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1609ms total)
T5658 053:593 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1610ms total)
T5658 053:633 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 00 00 00 00 00 BD 1F C0  returns 0x08 (0002ms, 1612ms total)
T5658 053:646 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 7D 3F 35 8E A2 F9 69 C0  returns 0x08 (0001ms, 1613ms total)
T5658 053:684 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 1A FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1614ms total)
T5658 053:717 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 11 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1615ms total)
T5658 053:767 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 8D B8 47 03  returns 0x04 (0001ms, 1616ms total)
T5658 053:821 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1618ms total)
T5658 053:823 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1619ms total)
T5B94 053:839 JLINK_IsHalted()  returns FALSE (0002ms, 1621ms total)
T5B94 053:941 JLINK_IsHalted()  returns FALSE (0001ms, 1620ms total)
T5658 054:201 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1620ms total)
T5658 054:202 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1621ms total)
T5658 054:244 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 4F EC C4 4E EC 8C 1F C0  returns 0x08 (0001ms, 1622ms total)
T5658 054:275 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: AC 78 D2 88 9B CC 69 C0  returns 0x08 (0001ms, 1623ms total)
T5658 054:349 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 51 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1624ms total)
T5658 054:382 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 42 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1625ms total)
T5658 054:429 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 7E 01 06 00  returns 0x04 (0001ms, 1626ms total)
T5658 054:489 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1627ms total)
T5658 054:491 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0000ms, 1627ms total)
T5B94 054:507 JLINK_IsHalted()  returns FALSE (0002ms, 1629ms total)
T5658 054:776 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1629ms total)
T5658 054:778 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1630ms total)
T5658 054:817 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: BE E5 5B BE E5 7C 1F C0  returns 0x08 (0002ms, 1632ms total)
T5658 054:846 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: BD 8B B1 31 99 BD 69 C0  returns 0x08 (0001ms, 1633ms total)
T5658 054:895 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: BC FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1634ms total)
T5658 054:923 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: AB FE B1 02 00 00 00 00  returns 0x08 (0002ms, 1636ms total)
T5658 054:972 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 7E 01 06 00  returns 0x04 (0001ms, 1637ms total)
T5658 055:032 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1638ms total)
T5658 055:033 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 1640ms total)
T5B94 055:049 JLINK_IsHalted()  returns FALSE (0001ms, 1641ms total)
T5658 055:320 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1641ms total)
T5658 055:321 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 1643ms total)
T5658 055:365 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 2E DF F2 2D DF 6C 1F C0  returns 0x08 (0002ms, 1645ms total)
T5658 055:391 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: CC 9E 90 DA 96 AE 69 C0  returns 0x08 (0001ms, 1646ms total)
T5658 055:447 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: BF FA B1 02 00 00 00 00  returns 0x08 (0002ms, 1648ms total)
T5658 055:473 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: AC FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1649ms total)
T5658 055:514 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: E0 05 06 00  returns 0x04 (0001ms, 1651ms total)
T5658 055:564 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1652ms total)
T5658 055:565 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1653ms total)
T5B94 055:580 JLINK_IsHalted()  returns FALSE (0002ms, 1655ms total)
T5658 055:815 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1654ms total)
T5658 055:816 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1655ms total)
T5658 055:854 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 4F EC C4 4E EC 8C 1F C0  returns 0x08 (0001ms, 1656ms total)
T5658 055:879 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: AC 78 D2 88 9B CC 69 C0  returns 0x08 (0002ms, 1658ms total)
T5658 055:927 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 5A FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1659ms total)
T5658 055:959 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 4B FF B1 02 00 00 00 00  returns 0x08 (0004ms, 1663ms total)
T5658 056:039 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: E0 05 06 00  returns 0x04 (0000ms, 1663ms total)
T5658 056:140 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1664ms total)
T5658 056:141 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1665ms total)
T5B94 056:166 JLINK_IsHalted()  returns FALSE (0001ms, 1666ms total)
T5658 056:443 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1666ms total)
T5658 056:444 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1667ms total)
T5658 056:483 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 8A 9D D8 89 9D CC 1E C0  returns 0x08 (0002ms, 1669ms total)
T5658 056:511 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 6C 5D 47 73 7F 18 69 C0  returns 0x08 (0001ms, 1670ms total)
T5658 056:572 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 7C FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1671ms total)
T5658 056:610 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 55 FF B1 02 00 00 00 00  returns 0x08 (0002ms, 1673ms total)
T5658 056:667 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: F4 09 06 00  returns 0x04 (0001ms, 1674ms total)
T5658 056:742 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1675ms total)
T5658 056:743 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1676ms total)
T5B94 056:763 JLINK_IsHalted()  returns FALSE (0001ms, 1677ms total)
T5658 057:046 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1678ms total)
T5658 057:048 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1679ms total)
T5658 057:097 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: B1 13 3B B1 93 0E 20 C0  returns 0x08 (0001ms, 1680ms total)
T5658 057:136 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 9D 65 F3 DF 9D DB 69 C0  returns 0x08 (0001ms, 1681ms total)
T5658 057:201 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 1E FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1682ms total)
T5658 057:236 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 11 FF B1 02 00 00 00 00  returns 0x08 (0001ms, 1683ms total)
T5658 057:284 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: C6 FE 05 00  returns 0x04 (0001ms, 1684ms total)
T5658 057:356 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1685ms total)
T5658 057:357 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1686ms total)
T5B94 057:374 JLINK_IsHalted()  returns FALSE (0002ms, 1688ms total)
T5658 057:605 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1688ms total)
T5658 057:607 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1689ms total)
T5658 057:646 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 83 34 48 83 B4 CF 22 C0  returns 0x08 (0002ms, 1691ms total)
T5658 057:673 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: A4 3F 4C 8C 7E 7C 6F C0  returns 0x08 (0001ms, 1692ms total)
T5658 057:725 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 58 F9 B1 02 00 00 00 00  returns 0x08 (0001ms, 1694ms total)
T5658 057:750 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 0A FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1695ms total)
T5658 057:786 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: C6 FE 05 00  returns 0x04 (0002ms, 1697ms total)
T5658 057:834 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1699ms total)
T5658 057:836 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1700ms total)
T5B94 057:851 JLINK_IsHalted()  returns FALSE (0001ms, 1701ms total)
T5B94 057:953 JLINK_IsHalted()  returns FALSE (0001ms, 1701ms total)
T5658 058:270 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1701ms total)
T5658 058:271 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1702ms total)
T5658 058:322 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 21 0D D2 20 0D DD 1F C0  returns 0x08 (0001ms, 1703ms total)
T5658 058:357 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 5D 19 77 3C A7 17 6A C0  returns 0x08 (0002ms, 1705ms total)
T5658 058:422 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 91 FA B1 02 00 00 00 00  returns 0x08 (0002ms, 1707ms total)
T5658 058:460 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 8C FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1708ms total)
T5658 058:518 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 6C 02 06 00  returns 0x04 (0001ms, 1709ms total)
T5658 058:585 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1710ms total)
T5658 058:586 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 1712ms total)
T5B94 058:604 JLINK_IsHalted()  returns FALSE (0001ms, 1713ms total)
T5658 058:876 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1713ms total)
T5658 058:877 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1714ms total)
T5658 058:926 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: EC C4 4E EC C4 2C 1F C0  returns 0x08 (0001ms, 1715ms total)
T5658 058:957 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 0C EB 0C 7E 8D 72 69 C0  returns 0x08 (0001ms, 1716ms total)
T5658 059:014 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 5C FB B1 02 00 00 00 00  returns 0x08 (0002ms, 1718ms total)
T5658 059:045 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 40 FF B1 02 00 00 00 00  returns 0x08 (0001ms, 1719ms total)
T5658 059:088 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 6C 02 06 00  returns 0x04 (0001ms, 1720ms total)
T5658 059:152 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1722ms total)
T5658 059:154 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1723ms total)
T5B94 059:168 JLINK_IsHalted()  returns FALSE (0001ms, 1724ms total)
T5658 059:455 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1724ms total)
T5658 059:457 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1726ms total)
T5658 059:496 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 4F EC C4 4E EC 8C 1F C0  returns 0x08 (0002ms, 1728ms total)
T5658 059:524 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: AC 78 D2 88 9B CC 69 C0  returns 0x08 (0002ms, 1730ms total)
T5658 059:577 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 6A FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1731ms total)
T5658 059:604 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 5A FF B1 02 00 00 00 00  returns 0x08 (0002ms, 1733ms total)
T5658 059:647 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 09 07 06 00  returns 0x04 (0001ms, 1734ms total)
T5658 059:698 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1735ms total)
T5658 059:699 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1736ms total)
T5B94 059:711 JLINK_IsHalted()  returns FALSE (0001ms, 1737ms total)
T5658 060:003 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1738ms total)
T5658 060:005 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1739ms total)
T5658 060:058 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 42 1A A4 41 1A FD 1F C0  returns 0x08 (0001ms, 1740ms total)
T5658 060:096 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 3D F3 B8 EA AB 35 6A C0  returns 0x08 (0001ms, 1742ms total)
T5658 060:179 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 50 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1743ms total)
T5658 060:225 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 45 FF B1 02 00 00 00 00  returns 0x08 (0001ms, 1744ms total)
T5658 060:286 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 00 0B 06 00  returns 0x04 (0001ms, 1745ms total)
T5658 060:393 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1746ms total)
T5658 060:394 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1747ms total)
T5B94 060:415 JLINK_IsHalted()  returns FALSE (0001ms, 1748ms total)
T5658 060:788 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0003ms, 1750ms total)
T5658 060:791 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1751ms total)
T5658 060:845 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 70 F9 96 6F F9 AC 1F C0  returns 0x08 (0001ms, 1752ms total)
T5658 060:885 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 8E 52 14 37 A0 EA 69 C0  returns 0x08 (0001ms, 1753ms total)
T5658 060:960 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 25 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1754ms total)
T5658 060:993 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 1A FF B1 02 00 00 00 00  returns 0x08 (0002ms, 1757ms total)
T5658 061:045 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 00 0B 06 00  returns 0x04 (0003ms, 1760ms total)
T5658 061:116 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1761ms total)
T5658 061:117 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1762ms total)
T5B94 061:138 JLINK_IsHalted()  returns FALSE (0001ms, 1763ms total)
T5658 061:428 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0003ms, 1765ms total)
T5658 061:431 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1766ms total)
T5658 061:489 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: B1 13 3B B1 93 7F 22 C0  returns 0x08 (0001ms, 1767ms total)
T5658 061:529 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 44 FE 02 25 67 E6 6E C0  returns 0x08 (0000ms, 1767ms total)
T5658 061:602 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: DE F9 B1 02 00 00 00 00  returns 0x08 (0002ms, 1769ms total)
T5658 061:648 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: CA FF B1 02 00 00 00 00  returns 0x08 (0001ms, 1770ms total)
T5658 061:702 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: E7 FF 05 00  returns 0x04 (0001ms, 1771ms total)
T5658 061:771 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1772ms total)
T5658 061:772 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1773ms total)
T5B94 061:790 JLINK_IsHalted()  returns FALSE (0002ms, 1775ms total)
T5658 062:095 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1773ms total)
T5658 062:095 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 1775ms total)
T5658 062:153 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: BE E5 5B BE E5 7C 1F C0  returns 0x08 (0002ms, 1777ms total)
T5658 062:188 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: BD 8B B1 31 99 BD 69 C0  returns 0x08 (0002ms, 1779ms total)
T5658 062:257 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 0D FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1780ms total)
T5658 062:293 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: FB FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1781ms total)
T5658 062:345 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 1C 04 06 00  returns 0x04 (0001ms, 1782ms total)
T5658 062:438 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1783ms total)
T5658 062:439 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 1785ms total)
T5B94 062:456 JLINK_IsHalted()  returns FALSE (0001ms, 1786ms total)
T5658 062:762 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1786ms total)
T5658 062:763 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1787ms total)
T5658 062:815 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: D2 20 0D D2 A0 9F 22 C0  returns 0x08 (0001ms, 1788ms total)
T5658 062:850 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 04 B2 86 81 70 22 6F C0  returns 0x08 (0002ms, 1790ms total)
T5658 062:919 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: D9 F9 B1 02 00 00 00 00  returns 0x08 (0001ms, 1791ms total)
T5658 062:959 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 80 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1792ms total)
T5658 063:012 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 1C 04 06 00  returns 0x04 (0001ms, 1793ms total)
T5658 063:081 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1796ms total)
T5658 063:083 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 1798ms total)
T5B94 063:103 JLINK_IsHalted()  returns FALSE (0001ms, 1799ms total)
T5658 063:418 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1799ms total)
T5658 063:419 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1800ms total)
T5658 063:468 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 9D D8 89 9D D8 5C 1F C0  returns 0x08 (0002ms, 1802ms total)
T5658 063:508 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: DB B1 6F 83 94 9F 69 C0  returns 0x08 (0001ms, 1803ms total)
T5658 063:575 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 87 FB B1 02 00 00 00 00  returns 0x08 (0002ms, 1805ms total)
T5658 063:612 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 71 FF B1 02 00 00 00 00  returns 0x08 (0002ms, 1807ms total)
T5658 063:667 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 9F 08 06 00  returns 0x04 (0001ms, 1808ms total)
T5658 063:747 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1809ms total)
T5658 063:748 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1810ms total)
T5B94 063:770 JLINK_IsHalted()  returns FALSE (0001ms, 1811ms total)
T5658 064:062 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1812ms total)
T5658 064:064 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1813ms total)
T5658 064:116 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: DF F2 2D DF F2 9C 1F C0  returns 0x08 (0001ms, 1814ms total)
T5658 064:154 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 3D F3 B8 EA AB 35 6A C0  returns 0x08 (0002ms, 1816ms total)
T5658 064:225 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 06 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1817ms total)
T5658 064:263 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 05 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1818ms total)
T5658 064:311 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: F7 0C 06 00  returns 0x04 (0001ms, 1819ms total)
T5658 064:398 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1820ms total)
T5658 064:399 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1821ms total)
T5B94 064:416 JLINK_IsHalted()  returns FALSE (0001ms, 1822ms total)
T5658 064:717 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1822ms total)
T5658 064:718 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 1824ms total)
T5658 064:773 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: F9 96 6F F9 96 87 22 C0  returns 0x08 (0001ms, 1825ms total)
T5658 064:808 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 34 EB 23 7C 69 F5 6E C0  returns 0x08 (0002ms, 1827ms total)
T5658 064:883 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: E0 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1828ms total)
T5658 064:921 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 80 FF B1 02 00 00 00 00  returns 0x08 (0001ms, 1829ms total)
T5658 064:975 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: F7 0C 06 00  returns 0x04 (0001ms, 1830ms total)
T5658 065:057 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1831ms total)
T5658 065:058 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1832ms total)
T5B94 065:075 JLINK_IsHalted()  returns FALSE (0001ms, 1833ms total)
T5658 065:370 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1834ms total)
T5658 065:372 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1835ms total)
T5658 065:432 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: B1 13 3B B1 93 0E 20 C0  returns 0x08 (0002ms, 1837ms total)
T5658 065:472 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 1D CD FA 98 B0 53 6A C0  returns 0x08 (0002ms, 1839ms total)
T5658 065:539 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: C2 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1840ms total)
T5658 065:576 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: C4 FE B1 02 00 00 00 00  returns 0x08 (0002ms, 1842ms total)
T5658 065:629 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: E0 01 06 00  returns 0x04 (0001ms, 1843ms total)
T5658 065:698 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1844ms total)
T5658 065:699 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 1846ms total)
T5B94 065:719 JLINK_IsHalted()  returns FALSE (0001ms, 1847ms total)
T5658 066:031 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1848ms total)
T5658 066:033 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1849ms total)
T5658 066:085 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 90 06 69 90 06 CD 1F C0  returns 0x08 (0001ms, 1850ms total)
T5658 066:126 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 9D 65 F3 DF 9D DB 69 C0  returns 0x08 (0001ms, 1851ms total)
T5658 066:200 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 2A FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1852ms total)
T5658 066:240 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 1D FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1853ms total)
T5658 066:292 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 64 06 06 00  returns 0x04 (0001ms, 1854ms total)
T5658 066:379 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1855ms total)
T5658 066:380 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1856ms total)
T5B94 066:397 JLINK_IsHalted()  returns FALSE (0001ms, 1857ms total)
T5658 066:705 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1858ms total)
T5658 066:707 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1859ms total)
T5658 066:760 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: CB B7 7C CB B7 0C 1F C0  returns 0x08 (0001ms, 1860ms total)
T5658 066:795 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2C 11 CB CF 88 54 69 C0  returns 0x08 (0001ms, 1861ms total)
T5658 066:867 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 84 FA B1 02 00 00 00 00  returns 0x08 (0002ms, 1863ms total)
T5658 066:904 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 64 FE B1 02 00 00 00 00  returns 0x08 (0002ms, 1865ms total)
T5658 066:957 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 64 06 06 00  returns 0x04 (0000ms, 1865ms total)
T5658 067:037 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1867ms total)
T5658 067:039 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1868ms total)
T5B94 067:062 JLINK_IsHalted()  returns FALSE (0001ms, 1869ms total)
T5658 067:355 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1870ms total)
T5658 067:357 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1871ms total)
T5658 067:416 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 5C BE E5 5B BE 1C 1F C0  returns 0x08 (0001ms, 1872ms total)
T5658 067:458 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 1C FE EB 26 8B 63 69 C0  returns 0x08 (0001ms, 1873ms total)
T5658 067:529 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 5F FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1874ms total)
T5658 067:565 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 41 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 1875ms total)
T5658 067:616 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 31 0A 06 00  returns 0x04 (0001ms, 1876ms total)
T5658 067:693 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1878ms total)
T5658 067:695 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1879ms total)
T5B94 067:713 JLINK_IsHalted()  returns FALSE (0001ms, 1880ms total)
T5658 068:011 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1880ms total)
T5658 068:012 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 1882ms total)
T5658 068:066 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: DF F2 2D DF F2 9C 1F C0  returns 0x08 (0002ms, 1884ms total)
T5658 068:099 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 9D 65 F3 DF 9D DB 69 C0  returns 0x08 (0002ms, 1886ms total)
T5658 068:173 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 15 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1887ms total)
T5658 068:208 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 14 FF B1 02 00 00 00 00  returns 0x08 (0003ms, 1890ms total)
T5658 068:261 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 91 FF 05 00  returns 0x04 (0001ms, 1891ms total)
T5658 068:347 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1892ms total)
T5658 068:348 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1893ms total)
T5B94 068:366 JLINK_IsHalted()  returns FALSE (0000ms, 1893ms total)
T5658 068:673 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1894ms total)
T5658 068:674 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1895ms total)
T5658 068:722 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 70 F9 96 6F F9 AC 1F C0  returns 0x08 (0002ms, 1897ms total)
T5658 068:760 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 8E 52 14 37 A0 EA 69 C0  returns 0x08 (0001ms, 1898ms total)
T5658 068:834 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: A9 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1899ms total)
T5658 068:878 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 9E FF B1 02 00 00 00 00  returns 0x08 (0002ms, 1901ms total)
T5658 068:930 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 91 FF 05 00  returns 0x04 (0001ms, 1902ms total)
T5658 069:003 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1903ms total)
T5658 069:004 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 1905ms total)
T5B94 069:025 JLINK_IsHalted()  returns FALSE (0001ms, 1906ms total)
T5658 069:317 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1906ms total)
T5658 069:318 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 1908ms total)
T5658 069:371 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: CB B7 7C CB B7 0C 1F C0  returns 0x08 (0001ms, 1909ms total)
T5658 069:406 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2C 11 CB CF 88 54 69 C0  returns 0x08 (0001ms, 1910ms total)
T5658 069:479 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: E9 FB B1 02 00 00 00 00  returns 0x08 (0002ms, 1912ms total)
T5658 069:513 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: C9 FF B1 02 00 00 00 00  returns 0x08 (0002ms, 1914ms total)
T5658 069:565 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: AE 03 06 00  returns 0x04 (0000ms, 1914ms total)
T5658 069:649 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1916ms total)
T5658 069:651 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1917ms total)
T5B94 069:671 JLINK_IsHalted()  returns FALSE (0001ms, 1918ms total)
T5658 069:972 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1918ms total)
T5658 069:973 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1919ms total)
T5658 070:025 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: F9 96 6F F9 96 87 22 C0  returns 0x08 (0002ms, 1921ms total)
T5658 070:061 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 34 EB 23 7C 69 F5 6E C0  returns 0x08 (0001ms, 1922ms total)
T5658 070:135 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: F9 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1923ms total)
T5658 070:182 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: E0 FE B1 02 00 00 00 00  returns 0x08 (0003ms, 1926ms total)
T5658 070:258 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 0B 08 06 00  returns 0x04 (0001ms, 1928ms total)
T5658 070:346 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1929ms total)
T5658 070:348 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1931ms total)
T5B94 070:367 JLINK_IsHalted()  returns FALSE (0002ms, 1933ms total)
T5658 070:672 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1933ms total)
T5658 070:674 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1934ms total)
T5658 070:726 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 21 0D D2 20 0D DD 1F C0  returns 0x08 (0001ms, 1935ms total)
T5658 070:761 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 5D 19 77 3C A7 17 6A C0  returns 0x08 (0002ms, 1937ms total)
T5658 070:831 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: FE FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1938ms total)
T5658 070:865 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: F9 FF B1 02 00 00 00 00  returns 0x08 (0001ms, 1939ms total)
T5658 070:918 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 0B 08 06 00  returns 0x04 (0001ms, 1940ms total)
T5658 070:986 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1942ms total)
T5658 070:988 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1943ms total)
T5B94 071:006 JLINK_IsHalted()  returns FALSE (0002ms, 1945ms total)
T5658 071:322 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1944ms total)
T5658 071:323 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1945ms total)
T5658 071:386 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 69 90 06 69 90 06 20 C0  returns 0x08 (0003ms, 1948ms total)
T5658 071:430 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2E E0 D9 41 AE 44 6A C0  returns 0x08 (0002ms, 1950ms total)
T5658 071:521 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 7B FA B1 02 00 00 00 00  returns 0x08 (0001ms, 1951ms total)
T5658 071:559 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 7B FE B1 02 00 00 00 00  returns 0x08 (0002ms, 1953ms total)
T5658 071:611 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 7D 0C 06 00  returns 0x04 (0001ms, 1954ms total)
T5658 071:687 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1955ms total)
T5658 071:688 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 1957ms total)
T5B94 071:706 JLINK_IsHalted()  returns FALSE (0002ms, 1959ms total)
T5658 072:000 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1958ms total)
T5658 072:001 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 1960ms total)
T5658 072:058 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 21 0D D2 20 0D DD 1F C0  returns 0x08 (0001ms, 1961ms total)
T5658 072:094 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 5D 19 77 3C A7 17 6A C0  returns 0x08 (0001ms, 1962ms total)
T5658 072:175 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 0A FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1963ms total)
T5658 072:209 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 0C FF B1 02 00 00 00 00  returns 0x08 (0001ms, 1964ms total)
T5658 072:268 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: AD 01 06 00  returns 0x04 (0001ms, 1965ms total)
T5658 072:355 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1967ms total)
T5658 072:357 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 1969ms total)
T5B94 072:374 JLINK_IsHalted()  returns FALSE (0001ms, 1970ms total)
T5658 072:672 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1971ms total)
T5658 072:674 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1972ms total)
T5658 072:733 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 90 06 69 90 86 5F 22 C0  returns 0x08 (0002ms, 1974ms total)
T5658 072:766 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 82 4A 7F C8 5D AA 6E C0  returns 0x08 (0002ms, 1976ms total)
T5658 072:837 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: F3 F9 B1 02 00 00 00 00  returns 0x08 (0001ms, 1977ms total)
T5658 072:871 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 8A FE B1 02 00 00 00 00  returns 0x08 (0002ms, 1979ms total)
T5658 072:924 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: AD 01 06 00  returns 0x04 (0001ms, 1980ms total)
T5658 072:998 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 1981ms total)
T5658 072:999 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 1982ms total)
T5B94 073:021 JLINK_IsHalted()  returns FALSE (0001ms, 1983ms total)
T5658 073:311 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1983ms total)
T5658 073:313 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0000ms, 1984ms total)
T5658 073:370 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: B1 13 3B B1 13 ED 1F C0  returns 0x08 (0002ms, 1986ms total)
T5658 073:405 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 4C 06 98 93 A9 26 6A C0  returns 0x08 (0001ms, 1987ms total)
T5658 073:474 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: B1 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 1988ms total)
T5658 073:508 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: AD FF B1 02 00 00 00 00  returns 0x08 (0002ms, 1990ms total)
T5658 073:564 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 38 06 06 00  returns 0x04 (0001ms, 1991ms total)
T5658 073:638 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 1993ms total)
T5658 073:640 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 1995ms total)
T5B94 073:662 JLINK_IsHalted()  returns FALSE (0002ms, 1997ms total)
T5658 073:969 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0003ms, 1998ms total)
T5658 073:972 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 1999ms total)
T5658 074:024 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: F9 96 6F F9 96 16 20 C0  returns 0x08 (0002ms, 2002ms total)
T5658 074:060 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 0C BA 1B F0 B2 62 6A C0  returns 0x08 (0002ms, 2004ms total)
T5658 074:138 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 1A FB B1 02 00 00 00 00  returns 0x08 (0001ms, 2005ms total)
T5658 074:172 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 12 FF B1 02 00 00 00 00  returns 0x08 (0001ms, 2006ms total)
T5658 074:228 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 5B 0A 06 00  returns 0x04 (0001ms, 2007ms total)
T5658 074:314 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 2008ms total)
T5658 074:315 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2009ms total)
T5B94 074:334 JLINK_IsHalted()  returns FALSE (0001ms, 2010ms total)
T5658 074:632 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2010ms total)
T5658 074:633 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 2011ms total)
T5658 074:685 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 0D D2 20 0D D2 4C 1F C0  returns 0x08 (0000ms, 2011ms total)
T5658 074:719 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: EC C4 4E 2C 92 90 69 C0  returns 0x08 (0002ms, 2013ms total)
T5658 074:789 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 2B FB B1 02 00 00 00 00  returns 0x08 (0001ms, 2014ms total)
T5658 074:822 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 14 FF B1 02 00 00 00 00  returns 0x08 (0001ms, 2015ms total)
T5658 074:880 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 5B 0A 06 00  returns 0x04 (0001ms, 2016ms total)
T5658 074:946 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 2018ms total)
T5658 074:948 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2019ms total)
T5B94 074:967 JLINK_IsHalted()  returns FALSE (0000ms, 2019ms total)
T5658 075:264 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2020ms total)
T5658 075:265 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 2021ms total)
T5658 075:321 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 21 0D D2 20 0D DD 1F C0  returns 0x08 (0001ms, 2022ms total)
T5658 075:356 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 5D 19 77 3C A7 17 6A C0  returns 0x08 (0001ms, 2023ms total)
T5658 075:427 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 0B FB B1 02 00 00 00 00  returns 0x08 (0001ms, 2024ms total)
T5658 075:464 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 06 FF B1 02 00 00 00 00  returns 0x08 (0001ms, 2025ms total)
T5658 075:519 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: AB FF 05 00  returns 0x04 (0001ms, 2026ms total)
T5658 075:601 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 2027ms total)
T5658 075:602 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2028ms total)
T5B94 075:627 JLINK_IsHalted()  returns FALSE (0001ms, 2029ms total)
T5658 075:927 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2029ms total)
T5658 075:928 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 2031ms total)
T5658 075:987 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: BE E5 5B BE E5 7C 1F C0  returns 0x08 (0002ms, 2033ms total)
T5658 076:023 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: BD 8B B1 31 99 BD 69 C0  returns 0x08 (0002ms, 2035ms total)
T5658 076:091 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 7A FB B1 02 00 00 00 00  returns 0x08 (0001ms, 2036ms total)
T5658 076:130 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 8C FF B1 02 00 00 00 00  returns 0x08 (0001ms, 2037ms total)
T5658 076:189 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 7D 03 06 00  returns 0x04 (0001ms, 2038ms total)
T5658 076:275 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 2040ms total)
T5658 076:277 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2041ms total)
T5B94 076:295 JLINK_IsHalted()  returns FALSE (0002ms, 2043ms total)
T5658 076:586 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2042ms total)
T5658 076:587 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 2043ms total)
T5658 076:648 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 00 00 00 00 00 BD 1F C0  returns 0x08 (0001ms, 2044ms total)
T5658 076:685 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 7D 3F 35 8E A2 F9 69 C0  returns 0x08 (0002ms, 2046ms total)
T5658 076:754 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 7F FA B1 02 00 00 00 00  returns 0x08 (0001ms, 2047ms total)
T5658 076:789 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 76 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 2048ms total)
T5658 076:848 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 7D 03 06 00  returns 0x04 (0001ms, 2049ms total)
T5658 076:914 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 2050ms total)
T5658 076:915 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2051ms total)
T5B94 076:935 JLINK_IsHalted()  returns FALSE (0001ms, 2052ms total)
T5658 077:238 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2053ms total)
T5658 077:240 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 2054ms total)
T5658 077:293 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 69 90 06 69 90 06 20 C0  returns 0x08 (0002ms, 2056ms total)
T5658 077:328 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2E E0 D9 41 AE 44 6A C0  returns 0x08 (0002ms, 2058ms total)
T5658 077:396 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: EA FA B1 02 00 00 00 00  returns 0x08 (0002ms, 2060ms total)
T5658 077:431 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: EB FE B1 02 00 00 00 00  returns 0x08 (0001ms, 2061ms total)
T5658 077:487 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 1D 08 06 00  returns 0x04 (0001ms, 2063ms total)
T5658 077:554 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 2064ms total)
T5658 077:555 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2065ms total)
T5B94 077:577 JLINK_IsHalted()  returns FALSE (0000ms, 2065ms total)
T5658 077:865 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2067ms total)
T5658 077:867 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 2068ms total)
T5658 077:919 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 7D CB B7 7C CB 3C 1F C0  returns 0x08 (0001ms, 2070ms total)
T5658 077:955 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: FC D7 2D D5 8F 81 69 C0  returns 0x08 (0001ms, 2071ms total)
T5658 078:024 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 24 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 2072ms total)
T5658 078:058 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 0B FE B1 02 00 00 00 00  returns 0x08 (0001ms, 2073ms total)
T5658 078:112 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: AE 0B 06 00  returns 0x04 (0002ms, 2076ms total)
T5658 078:218 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 2078ms total)
T5658 078:220 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2079ms total)
T5B94 078:238 JLINK_IsHalted()  returns FALSE (0001ms, 2080ms total)
T5658 078:533 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2081ms total)
T5658 078:535 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0003ms, 2084ms total)
T5658 078:595 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 21 0D D2 20 0D DD 1F C0  returns 0x08 (0002ms, 2086ms total)
T5658 078:642 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 7D 3F 35 8E A2 F9 69 C0  returns 0x08 (0002ms, 2088ms total)
T5658 078:710 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: E8 FB B1 02 00 00 00 00  returns 0x08 (0002ms, 2090ms total)
T5658 078:749 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: DE FF B1 02 00 00 00 00  returns 0x08 (0001ms, 2091ms total)
T5658 078:802 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: AE 0B 06 00  returns 0x04 (0001ms, 2092ms total)
T5658 078:873 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 2094ms total)
T5658 078:875 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 2096ms total)
T5B94 078:894 JLINK_IsHalted()  returns FALSE (0001ms, 2097ms total)
T5658 079:201 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2098ms total)
T5658 079:203 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0000ms, 2098ms total)
T5658 079:257 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 5C BE E5 5B BE 1C 1F C0  returns 0x08 (0001ms, 2099ms total)
T5658 079:291 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 1C FE EB 26 8B 63 69 C0  returns 0x08 (0001ms, 2100ms total)
T5658 079:358 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 62 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 2101ms total)
T5658 079:392 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 44 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 2102ms total)
T5658 079:446 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 35 01 06 00  returns 0x04 (0001ms, 2103ms total)
T5658 079:515 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 2104ms total)
T5658 079:516 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2105ms total)
T5B94 079:533 JLINK_IsHalted()  returns FALSE (0001ms, 2106ms total)
T5658 079:831 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2106ms total)
T5658 079:832 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 2108ms total)
T5658 079:887 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: D9 89 9D D8 89 9C 1E C0  returns 0x08 (0002ms, 2110ms total)
T5658 079:923 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 9B 96 E4 6D 78 EB 68 C0  returns 0x08 (0001ms, 2111ms total)
T5658 079:994 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 86 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 2112ms total)
T5658 080:028 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 59 FF B1 02 00 00 00 00  returns 0x08 (0001ms, 2113ms total)
T5658 080:084 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 35 01 06 00  returns 0x04 (0002ms, 2115ms total)
T5658 080:164 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 2116ms total)
T5658 080:165 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 2118ms total)
T5B94 080:186 JLINK_IsHalted()  returns FALSE (0002ms, 2120ms total)
T5658 080:477 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2119ms total)
T5658 080:478 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 2120ms total)
T5658 080:531 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: DF F2 2D DF F2 9C 1F C0  returns 0x08 (0001ms, 2121ms total)
T5658 080:566 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 9D 65 F3 DF 9D DB 69 C0  returns 0x08 (0003ms, 2124ms total)
T5658 080:640 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 28 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 2125ms total)
T5658 080:676 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 1B FF B1 02 00 00 00 00  returns 0x08 (0002ms, 2127ms total)
T5658 080:726 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: DD 05 06 00  returns 0x04 (0001ms, 2128ms total)
T5658 080:797 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 2129ms total)
T5658 080:798 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 2131ms total)
T5B94 080:816 JLINK_IsHalted()  returns FALSE (0001ms, 2132ms total)
T5658 081:112 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2132ms total)
T5658 081:113 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 2133ms total)
T5658 081:169 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 3B B1 13 3B B1 FC 1E C0  returns 0x08 (0001ms, 2134ms total)
T5658 081:207 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 3B 24 AA 78 86 45 69 C0  returns 0x08 (0001ms, 2135ms total)
T5658 081:278 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 74 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 2136ms total)
T5658 081:314 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 52 FF B1 02 00 00 00 00  returns 0x08 (0002ms, 2138ms total)
T5658 081:366 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: BA 09 06 00  returns 0x04 (0001ms, 2139ms total)
T5658 081:451 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 2141ms total)
T5658 081:452 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2142ms total)
T5B94 081:471 JLINK_IsHalted()  returns FALSE (0001ms, 2144ms total)
T5658 081:777 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2144ms total)
T5658 081:778 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 2145ms total)
T5658 081:829 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 4F EC C4 4E EC 8C 1F C0  returns 0x08 (0001ms, 2146ms total)
T5658 081:866 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: AC 78 D2 88 9B CC 69 C0  returns 0x08 (0001ms, 2147ms total)
T5658 081:936 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 4F FA B1 02 00 00 00 00  returns 0x08 (0001ms, 2148ms total)
T5658 081:974 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 40 FE B1 02 FF 01 00 00  returns 0x08 (0001ms, 2149ms total)
T5658 082:031 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: BA 09 06 00  returns 0x04 (0001ms, 2150ms total)
T5658 082:111 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 2152ms total)
T5658 082:113 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2153ms total)
T5B94 082:134 JLINK_IsHalted()  returns FALSE (0001ms, 2154ms total)
T5658 082:451 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2154ms total)
T5658 082:452 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 2155ms total)
T5658 082:508 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 69 90 06 69 90 06 20 C0  returns 0x08 (0001ms, 2156ms total)
T5658 082:546 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 2E E0 D9 41 AE 44 6A C0  returns 0x08 (0001ms, 2157ms total)
T5658 082:618 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 07 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 2158ms total)
T5658 082:660 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 11 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 2159ms total)
T5658 082:713 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: BC FF 05 00  returns 0x04 (0001ms, 2160ms total)
T5658 082:786 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 2162ms total)
T5658 082:788 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 2164ms total)
T5B94 082:810 JLINK_IsHalted()  returns FALSE (0001ms, 2165ms total)
T5658 083:113 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2165ms total)
T5658 083:114 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 2166ms total)
T5658 083:176 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 42 1A A4 41 9A 1E 20 C0  returns 0x08 (0001ms, 2167ms total)
T5658 083:212 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: FF A6 3C 47 B5 71 6A C0  returns 0x08 (0002ms, 2169ms total)
T5658 083:288 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 07 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 2170ms total)
T5658 083:306 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 0D FF B1 02 00 00 00 00  returns 0x08 (0002ms, 2172ms total)
T5658 083:357 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 77 03 06 00  returns 0x04 (0001ms, 2173ms total)
T5658 083:456 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 2175ms total)
T5658 083:458 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2176ms total)
T5B94 083:476 JLINK_IsHalted()  returns FALSE (0002ms, 2178ms total)
T5658 083:825 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2177ms total)
T5658 083:826 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 2178ms total)
T5658 083:881 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 21 0D D2 20 0D DD 1F C0  returns 0x08 (0001ms, 2179ms total)
T5658 083:918 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 5D 19 77 3C A7 17 6A C0  returns 0x08 (0002ms, 2181ms total)
T5658 083:992 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: A3 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 2182ms total)
T5658 084:008 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 9E FE B1 02 00 00 00 00  returns 0x08 (0002ms, 2184ms total)
T5658 084:063 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 77 03 06 00  returns 0x04 (0001ms, 2185ms total)
T5658 084:142 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 2186ms total)
T5658 084:143 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2187ms total)
T5B94 084:163 JLINK_IsHalted()  returns FALSE (0001ms, 2188ms total)
T5658 084:461 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2189ms total)
T5658 084:463 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 2190ms total)
T5658 084:518 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 42 1A A4 41 1A FD 1F C0  returns 0x08 (0001ms, 2191ms total)
T5658 084:554 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 3D F3 B8 EA AB 35 6A C0  returns 0x08 (0001ms, 2192ms total)
T5658 084:620 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: FD FB B1 02 00 00 00 00  returns 0x08 (0001ms, 2193ms total)
T5658 084:655 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 01 FE B1 02 00 00 00 00  returns 0x08 (0002ms, 2196ms total)
T5658 084:711 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 96 08 06 00  returns 0x04 (0002ms, 2198ms total)
T5658 084:785 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 2199ms total)
T5658 084:786 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 2201ms total)
T5B94 084:806 JLINK_IsHalted()  returns FALSE (0001ms, 2202ms total)
T5658 085:123 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2202ms total)
T5658 085:124 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 2204ms total)
T5658 085:178 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 8A 9D D8 89 9D 97 22 C0  returns 0x08 (0001ms, 2205ms total)
T5658 085:216 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 14 C5 65 2A 6E 13 6F C0  returns 0x08 (0001ms, 2206ms total)
T5658 085:287 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: E9 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 2207ms total)
T5658 085:322 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 8D FF B1 02 00 00 00 00  returns 0x08 (0002ms, 2209ms total)
T5658 085:379 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: B4 0C 06 00  returns 0x04 (0001ms, 2210ms total)
T5658 085:468 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 2211ms total)
T5658 085:469 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2212ms total)
T5B94 085:488 JLINK_IsHalted()  returns FALSE (0001ms, 2213ms total)
T5658 085:785 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2213ms total)
T5658 085:786 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 2215ms total)
T5658 085:841 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: DF F2 2D DF F2 9C 1F C0  returns 0x08 (0001ms, 2216ms total)
T5658 085:876 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 9D 65 F3 DF 9D DB 69 C0  returns 0x08 (0001ms, 2217ms total)
T5658 085:945 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: F7 FB B1 02 00 00 00 00  returns 0x08 (0002ms, 2219ms total)
T5658 085:980 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: EA FF B1 02 00 00 00 00  returns 0x08 (0002ms, 2221ms total)
T5658 086:034 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: B4 0C 06 00  returns 0x04 (0002ms, 2223ms total)
T5658 086:111 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 2225ms total)
T5658 086:112 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2226ms total)
T5B94 086:140 JLINK_IsHalted()  returns FALSE (0000ms, 2226ms total)
T5658 086:437 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2228ms total)
T5658 086:439 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 2229ms total)
T5658 086:489 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: F9 96 6F F9 96 16 20 C0  returns 0x08 (0001ms, 2230ms total)
T5658 086:519 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 0C BA 1B F0 B2 62 6A C0  returns 0x08 (0001ms, 2231ms total)
T5658 086:584 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 05 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 2232ms total)
T5658 086:618 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 09 FE B1 02 00 00 00 00  returns 0x08 (0002ms, 2234ms total)
T5658 086:669 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 6B 02 06 00  returns 0x04 (0002ms, 2236ms total)
T5658 086:732 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 2238ms total)
T5658 086:734 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2239ms total)
T5B94 086:753 JLINK_IsHalted()  returns FALSE (0001ms, 2240ms total)
T5658 086:756 JLINK_ReadMemEx(0x0000CAD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000CAD2) - Data: FC F7  returns 0x02 (0001ms, 2240ms total)
T5658 086:757 JLINK_ReadMemEx(0x0000CAD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000CAD4) - Data: 09 FE  returns 0x02 (0002ms, 2242ms total)
T5658 086:759 JLINK_ReadMemEx(0x0000CAD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000CAD6) - Data: 20 46  returns 0x02 (0001ms, 2243ms total)
T5658 086:760 JLINK_ReadMemEx(0x0000CAD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000CAD8) - Data: FC F7  returns 0x02 (0000ms, 2243ms total)
T5658 086:760 JLINK_ReadMemEx(0x0000CAD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000CAD8) - Data: FC F7  returns 0x02 (0002ms, 2245ms total)
T5658 086:762 JLINK_ReadMemEx(0x0000CADA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000CADA) - Data: FC FD  returns 0x02 (0001ms, 2246ms total)
T5658 087:047 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2248ms total)
T5658 087:049 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 2249ms total)
T5658 087:099 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: C5 4E EC C4 CE 0F 23 C0  returns 0x08 (0002ms, 2251ms total)
T5658 087:137 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 32 1C 15 0A 44 05 6E C0  returns 0x08 (0002ms, 2253ms total)
T5658 087:206 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 5C FA B1 02 00 00 00 00  returns 0x08 (0001ms, 2254ms total)
T5658 087:241 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: DC FE B1 02 00 00 00 00  returns 0x08 (0001ms, 2255ms total)
T5658 087:289 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 42 06 06 00  returns 0x04 (0002ms, 2257ms total)
T5658 087:372 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 2258ms total)
T5658 087:373 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 2260ms total)
T5B94 087:390 JLINK_IsHalted()  returns FALSE (0001ms, 2261ms total)
T5658 087:674 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2262ms total)
T5658 087:676 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 2263ms total)
T5658 087:722 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: DF F2 2D DF F2 9C 1F C0  returns 0x08 (0001ms, 2264ms total)
T5658 087:756 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 9D 65 F3 DF 9D DB 69 C0  returns 0x08 (0001ms, 2265ms total)
T5658 087:814 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: F4 FB B1 02 00 00 00 00  returns 0x08 (0002ms, 2267ms total)
T5658 087:846 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: E7 FF B1 02 00 00 00 00  returns 0x08 (0001ms, 2268ms total)
T5658 087:891 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 42 06 06 00  returns 0x04 (0002ms, 2270ms total)
T5658 087:950 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 2271ms total)
T5658 087:951 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2272ms total)
T5B94 087:969 JLINK_IsHalted()  returns FALSE (0001ms, 2273ms total)
T5658 088:220 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2273ms total)
T5658 088:221 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 2274ms total)
T5658 088:262 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 42 1A A4 41 9A 8F 22 C0  returns 0x08 (0002ms, 2276ms total)
T5658 088:289 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 24 D8 44 D3 6B 04 6F C0  returns 0x08 (0001ms, 2277ms total)
T5658 088:342 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: EF F9 B1 02 00 00 00 00  returns 0x08 (0001ms, 2278ms total)
T5658 088:367 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 91 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 2279ms total)
T5658 088:402 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 09 0A 06 00  returns 0x04 (0002ms, 2281ms total)
T5658 088:453 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 2283ms total)
T5658 088:455 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2284ms total)
T5B94 088:467 JLINK_IsHalted()  returns FALSE (0001ms, 2285ms total)
T5B94 088:570 JLINK_IsHalted()  returns FALSE (0000ms, 2284ms total)
T5658 088:810 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2286ms total)
T5658 088:812 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 2287ms total)
T5658 088:844 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 90 06 69 90 06 CD 1F C0  returns 0x08 (0001ms, 2288ms total)
T5658 088:869 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 6C 2C 56 E5 A4 08 6A C0  returns 0x08 (0001ms, 2289ms total)
T5658 088:917 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 9E FB B1 02 00 00 00 00  returns 0x08 (0001ms, 2290ms total)
T5658 088:940 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 97 FF B1 02 00 00 00 00  returns 0x08 (0002ms, 2292ms total)
T5658 088:977 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 09 0A 06 00  returns 0x04 (0002ms, 2294ms total)
T5658 089:025 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 2295ms total)
T5658 089:026 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2296ms total)
T5B94 089:038 JLINK_IsHalted()  returns FALSE (0001ms, 2297ms total)
T5B94 089:140 JLINK_IsHalted()  returns FALSE (0001ms, 2297ms total)
T5658 089:363 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2298ms total)
T5658 089:365 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 2300ms total)
T5658 089:404 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: DF F2 2D DF F2 9C 1F C0  returns 0x08 (0000ms, 2300ms total)
T5658 089:425 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 9D 65 F3 DF 9D DB 69 C0  returns 0x08 (0002ms, 2302ms total)
T5658 089:471 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: 75 FA B1 02 00 00 00 00  returns 0x08 (0001ms, 2303ms total)
T5658 089:495 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 68 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 2304ms total)
T5658 089:529 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 48 00 06 00  returns 0x04 (0002ms, 2306ms total)
T5658 089:577 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 2308ms total)
T5658 089:579 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0000ms, 2308ms total)
T5B94 089:590 JLINK_IsHalted()  returns FALSE (0001ms, 2309ms total)
T5B94 089:692 JLINK_IsHalted()  returns FALSE (0001ms, 2309ms total)
T5658 089:974 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2309ms total)
T5658 089:975 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 2310ms total)
T5658 090:023 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: 70 F9 96 6F F9 AC 1F C0  returns 0x08 (0001ms, 2311ms total)
T5658 090:055 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 8E 52 14 37 A0 EA 69 C0  returns 0x08 (0002ms, 2313ms total)
T5658 090:112 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: D7 FB B1 02 00 00 00 00  returns 0x08 (0001ms, 2314ms total)
T5658 090:146 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: D6 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 2315ms total)
T5658 090:192 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 12 04 06 00  returns 0x04 (0001ms, 2316ms total)
T5658 090:264 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 2318ms total)
T5658 090:266 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2319ms total)
T5B94 090:281 JLINK_IsHalted()  returns FALSE (0001ms, 2320ms total)
T5658 090:569 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2320ms total)
T5658 090:571 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0001ms, 2321ms total)
T5658 090:622 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: D2 20 0D D2 A0 9F 22 C0  returns 0x08 (0001ms, 2322ms total)
T5658 090:653 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 04 B2 86 81 70 22 6F C0  returns 0x08 (0001ms, 2323ms total)
T5658 090:712 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: E1 F9 B1 02 00 00 00 00  returns 0x08 (0002ms, 2325ms total)
T5658 090:746 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 87 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 2326ms total)
T5658 090:796 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 12 04 06 00  returns 0x04 (0001ms, 2327ms total)
T5658 090:866 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0002ms, 2329ms total)
T5658 090:868 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0001ms, 2330ms total)
T5B94 090:884 JLINK_IsHalted()  returns FALSE (0001ms, 2331ms total)
T5B94 090:987 JLINK_Halt()  returns 0x00 (0004ms, 2334ms total)
T5B94 090:991 JLINK_IsHalted()  returns TRUE (0000ms, 2334ms total)
T5B94 090:991 JLINK_IsHalted()  returns TRUE (0000ms, 2334ms total)
T5B94 090:991 JLINK_IsHalted()  returns TRUE (0000ms, 2334ms total)
T5B94 090:991 JLINK_ReadReg(R15 (PC))  returns 0x00001D32 (0001ms, 2335ms total)
T5B94 090:992 JLINK_ReadReg(XPSR)  returns 0x81000000 (0000ms, 2335ms total)
T5B94 090:992 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 0x01 (0001ms, 2336ms total)
T5B94 090:993 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0002ms, 2338ms total)
T5B94 090:995 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 2339ms total)
T5B94 090:996 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 2339ms total)
T5B94 090:996 JLINK_ReadReg(R1)  returns 0x020197E4 (0000ms, 2339ms total)
T5B94 090:996 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 2339ms total)
T5B94 090:996 JLINK_ReadReg(R3)  returns 0x00000003 (0000ms, 2339ms total)
T5B94 090:996 JLINK_ReadReg(R4)  returns 0xFFFFFFFF (0000ms, 2339ms total)
T5B94 090:996 JLINK_ReadReg(R5)  returns 0x0201C990 (0000ms, 2339ms total)
T5B94 090:996 JLINK_ReadReg(R6)  returns 0x0201C990 (0000ms, 2339ms total)
T5B94 090:996 JLINK_ReadReg(R7)  returns 0x00012648 (0000ms, 2339ms total)
T5B94 090:996 JLINK_ReadReg(R8)  returns 0x00000000 (0001ms, 2340ms total)
T5B94 090:997 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 2340ms total)
T5B94 090:997 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 2340ms total)
T5B94 090:997 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 2340ms total)
T5B94 090:997 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 2340ms total)
T5B94 090:997 JLINK_ReadReg(R13 (SP))  returns 0x0202F7A8 (0000ms, 2340ms total)
T5B94 090:997 JLINK_ReadReg(R14)  returns 0x00001D11 (0000ms, 2340ms total)
T5B94 090:997 JLINK_ReadReg(R15 (PC))  returns 0x00001D32 (0000ms, 2340ms total)
T5B94 090:997 JLINK_ReadReg(XPSR)  returns 0x81000000 (0000ms, 2340ms total)
T5B94 090:997 JLINK_ReadReg(MSP)  returns 0x0202F7A8 (0000ms, 2340ms total)
T5B94 090:997 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 2340ms total)
T5B94 090:997 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 2340ms total)
T5658 090:999 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: F5 20 00 00  returns 0x04 (0001ms, 2341ms total)
T5658 091:001 JLINK_ReadMemEx(0x0202F7B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B0) - Data: E4 99 01 02  returns 0x04 (0001ms, 2342ms total)
T5658 091:002 JLINK_ReadMemEx(0x0202F7B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B4) - Data: 00 00 00 00  returns 0x04 (0002ms, 2344ms total)
T5658 091:004 JLINK_ReadMemEx(0x0202F7B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7B8) - Data: 48 26 01 00  returns 0x04 (0000ms, 2344ms total)
T5658 091:004 JLINK_ReadMemEx(0x0202F7BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7BC) - Data: F5 20 00 00  returns 0x04 (0002ms, 2346ms total)
T5658 091:173 JLINK_ReadMemEx(0x0201CD1C, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201CD1C) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2348ms total)
T5658 091:175 JLINK_ReadMemEx(0x020196E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196E6) - Data: 01  returns 0x01 (0002ms, 2350ms total)
T5658 091:222 JLINK_ReadMemEx(0x02019650, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019650) - Data: D2 20 0D D2 A0 9F 22 C0  returns 0x08 (0001ms, 2351ms total)
T5658 091:238 JLINK_ReadMemEx(0x02019658, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019658) - Data: 04 B2 86 81 70 22 6F C0  returns 0x08 (0001ms, 2352ms total)
T5658 091:284 JLINK_ReadMemEx(0x02019640, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019640) - Data: E1 F9 B1 02 00 00 00 00  returns 0x08 (0003ms, 2355ms total)
T5658 091:301 JLINK_ReadMemEx(0x02019648, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x02019648) - Data: 87 FE B1 02 00 00 00 00  returns 0x08 (0001ms, 2356ms total)
T5658 091:331 JLINK_ReadMemEx(0x02019994, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019994) - Data: 12 04 06 00  returns 0x04 (0001ms, 2357ms total)
T5658 091:374 JLINK_ReadMemEx(0x0201901F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201901F) - Data: 01  returns 0x01 (0001ms, 2358ms total)
T5658 091:375 JLINK_ReadMemEx(0x0201903C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201903C) - Data: 88 13 00 00  returns 0x04 (0002ms, 2360ms total)
T5658 091:394 JLINK_ReadMemEx(0x00001D32, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00001D00) -- Updating C cache (64 bytes @ 0x00001D00) -- Read from C cache (2 bytes @ 0x00001D32) - Data: 20 46  returns 0x02 (0002ms, 2362ms total)
T5658 091:396 JLINK_ReadMemEx(0x00001D34, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00001D40) -- Updating C cache (64 bytes @ 0x00001D40) -- Read from C cache (60 bytes @ 0x00001D34) - Data: 02 B0 B0 BD C8 93 01 02 B0 B5 05 46 88 1E 02 28 ...  returns 0x3C (0001ms, 2363ms total)
T5658 091:397 JLINK_ReadMemEx(0x00001D34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00001D34) - Data: 02 B0  returns 0x02 (0000ms, 2363ms total)
T5658 091:397 JLINK_ReadMemEx(0x00001D34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00001D34) - Data: 02 B0 B0 BD C8 93 01 02 B0 B5 05 46 88 1E 02 28 ...  returns 0x3C (0000ms, 2363ms total)
T5658 091:397 JLINK_ReadMemEx(0x00001D34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00001D34) - Data: 02 B0  returns 0x02 (0000ms, 2363ms total)
T5658 091:397 JLINK_ReadMemEx(0x00001D36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00001D36) - Data: B0 BD  returns 0x02 (0001ms, 2364ms total)
T5658 091:398 JLINK_ReadMemEx(0x00001D36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00001D36) - Data: B0 BD  returns 0x02 (0000ms, 2364ms total)
T5658 091:398 JLINK_ReadMemEx(0x00001D38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00001D38) - Data: C8 93 01 02 B0 B5 05 46 88 1E 02 28 0A D3 A8 68 ...  returns 0x3C (0000ms, 2364ms total)
T5658 091:398 JLINK_ReadMemEx(0x00001D38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00001D38) - Data: C8 93  returns 0x02 (0000ms, 2364ms total)
T5658 091:398 JLINK_ReadMemEx(0x00001D38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00001D38) - Data: C8 93 01 02 B0 B5 05 46 88 1E 02 28 0A D3 A8 68 ...  returns 0x3C (0000ms, 2364ms total)
T5658 091:398 JLINK_ReadMemEx(0x00001D38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00001D38) - Data: C8 93  returns 0x02 (0000ms, 2364ms total)
T5658 091:398 JLINK_ReadMemEx(0x00001D3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00001D3A) - Data: 01 02  returns 0x02 (0000ms, 2364ms total)
T5658 091:398 JLINK_ReadMemEx(0x00001D3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00001D3A) - Data: 01 02  returns 0x02 (0000ms, 2364ms total)
T5658 091:398 JLINK_ReadMemEx(0x00001D3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x00001D3C) - Data: B0 B5 05 46 88 1E 02 28 0A D3 A8 68 01 29 13 D0 ...  returns 0x3C (0001ms, 2365ms total)
T5658 091:399 JLINK_ReadMemEx(0x00001D3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00001D3C) - Data: B0 B5  returns 0x02 (0000ms, 2365ms total)
T5658 093:800 JLINK_Close() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> (0029ms, 2394ms total)
T5658 093:800  (0029ms, 2394ms total)
T5658 093:800 Closed (0029ms, 2394ms total)