zhangbo
2025-03-15 be85d5e358df89b9dca87e82fd08804135114e25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
 
T30A4 000:058 SEGGER J-Link V6.20g Log File (0000ms, 0024ms total)
T30A4 000:058 DLL Compiled: Oct 20 2017 17:09:27 (0000ms, 0024ms total)
T30A4 000:058 Logging started @ 2025-03-15 14:59 (0001ms, 0025ms total)
T30A4 000:059 JLINK_SetWarnOutHandler(...) (0000ms, 0025ms total)
T30A4 000:059 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 (0012ms, 0037ms total)
T30A4 000:059 WEBSRV Webserver running on local port 19080 (0012ms, 0037ms total)
T30A4 000:059   returns O.K. (0012ms, 0037ms total)
T30A4 000:071 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0037ms total)
T30A4 000:071 JLINK_TIF_GetAvailable(...) (0001ms, 0038ms total)
T30A4 000:072 JLINK_SetErrorOutHandler(...) (0000ms, 0038ms total)
T30A4 000:072 JLINK_ExecCommand("ProjectFile = "D:\zhangbo\2024\Code\ChinaUWB\3Shuanxing\ChinaUWBProject-biaoqian-RX - BT-jinkoulora\keil\JLinkSettings.ini"", ...). D:\keil\ARM\Segger\JLinkDevices.xml evaluated successfully.
  ***** Error: Error while loading flash algo ELF file. No file specified  returns 0x00 (0085ms, 0123ms total)
T30A4 000:157 JLINK_ExecCommand("Device = MK8000", ...). 
  ***** Error: Error while loading flash algo ELF file. No file specified  returns 0xFFFFFFFF (0001ms, 0124ms total)
T30A4 000:158 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0124ms total)
T30A4 000:158 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0124ms total)
T30A4 000:158 JLINK_GetDLLVersion()  returns 62007 (0000ms, 0124ms total)
T30A4 000:158 JLINK_GetFirmwareString(...) (0000ms, 0124ms total)
T30A4 000:158 JLINK_GetDLLVersion()  returns 62007 (0000ms, 0124ms total)
T30A4 000:158 JLINK_GetCompileDateTime() (0000ms, 0124ms total)
T30A4 000:158 JLINK_GetFirmwareString(...) (0000ms, 0124ms total)
T30A4 000:158 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0124ms total)
T30A4 000:158 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0002ms, 0126ms total)
T30A4 000:160 JLINK_SetSpeed(10000) (0000ms, 0126ms total)
T30A4 000:160 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BB11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x04770021)Iterating through AP map to find AHB-AP to use
 >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC200. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p0, Little endian.
Identified core does not match configuration. (Found: Cortex-M0, Configured: Cortex-M4) -- 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 (0137ms, 0263ms total)
T30A4 000:298 JLINK_GetDLLVersion()  returns 62007 (0000ms, 0263ms total)
T30A4 000:298 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0263ms total)
T30A4 000:298 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0263ms total)
T30A4 000:298 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0263ms total)
T30A4 000:298 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0263ms total)
T30A4 000:298 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 (0002ms, 0265ms total)
T30A4 000:300 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0265ms total)
T30A4 000:300 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0265ms total)
T30A4 000:300 JLINK_ReadMemEx(0xE0040FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0040FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 0266ms total)
T30A4 000:301 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0266ms total)
T30A4 000:301 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0266ms total)
T30A4 000:301 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0266ms total)
T30A4 000:301 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 0266ms total)
T30A4 000:301 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0266ms total)
T30A4 000:301 JLINK_GetDebugInfo(0x01 = Unknown)  returns 0xFFFFFFFF (0001ms, 0267ms total)
T30A4 000:302 JLINK_GetDeviceFamily()  returns 6 (0000ms, 0267ms total)
T30A4 000:302 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41  returns 0x01 (0001ms, 0268ms total)
T30A4 000:303 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0268ms total)
T30A4 000:303 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0268ms total)
T30A4 000:303 JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)
 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0075ms, 0343ms total)
T30A4 000:378 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0343ms total)
T30A4 000:378 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0343ms total)
T30A4 000:378 JLINK_Halt()  returns 0x00 (0000ms, 0343ms total)
T30A4 000:378 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 0x01 (0001ms, 0344ms total)
T30A4 000:379 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0001ms, 0345ms total)
T30A4 000:380 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0001ms, 0346ms total)
T30A4 000:381 JLINK_GetHWStatus(...)  returns 0x00 (0001ms, 0347ms total)
T30A4 000:382 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0347ms total)
T30A4 000:382 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0347ms total)
T30A4 000:382 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0347ms total)
T30A4 000:382 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0347ms total)
T30A4 000:382 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0001ms, 0348ms total)
T30A4 000:383 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0348ms total)
T30A4 000:383 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0001ms, 0349ms total)
T30A4 000:558 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0349ms total)
T30A4 000:558 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) (0076ms, 0425ms total)
T30A4 000:634 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0425ms total)
T30A4 000:634 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0001ms, 0426ms total)
T30A4 000:636 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, 0427ms total)
T30A4 000:637 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0002ms, 0429ms total)
T30A4 000:639 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0430ms total)
T30A4 005:652 JLINK_ReadReg(R0)  returns 0x00000000 (0001ms, 0431ms total)
T30A4 005:653 JLINK_ReadReg(R1)  returns 0x00000003 (0000ms, 0431ms total)
T30A4 005:653 JLINK_ReadReg(R2)  returns 0x00000000 (0001ms, 0432ms total)
T30A4 005:654 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 0432ms total)
T30A4 005:654 JLINK_ReadReg(R4)  returns 0x00015AD4 (0000ms, 0432ms total)
T30A4 005:654 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0432ms total)
T30A4 005:654 JLINK_ReadReg(R6)  returns 0x00015AD4 (0000ms, 0432ms total)
T30A4 005:654 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0432ms total)
T30A4 005:654 JLINK_ReadReg(R8)  returns 0x00000000 (0001ms, 0433ms total)
T30A4 005:655 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0433ms total)
T30A4 005:655 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0433ms total)
T30A4 005:655 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0433ms total)
T30A4 005:655 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0433ms total)
T30A4 005:655 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0433ms total)
T30A4 005:655 JLINK_ReadReg(R14)  returns 0x00007923 (0000ms, 0433ms total)
T30A4 005:656 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0434ms total)
T30A4 005:656 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0434ms total)
T30A4 005:656 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0434ms total)
T30A4 005:656 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0434ms total)
T30A4 005:656 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0434ms total)
T30A4 005:656 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 5B EE 65 1A  returns 0x04 (0001ms, 0435ms total)
T30A4 005:667 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 5B EE 65 1A  returns 0x04 (0002ms, 0437ms total)
T30A4 005:669 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 5B EE 65 1A  returns 0x04 (0001ms, 0438ms total)
T30A4 005:675 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 0D 00  returns 0x02 (0002ms, 0440ms total)
T30A4 005:677 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 0D 00  returns 0x02 (0001ms, 0441ms total)
T30A4 005:678 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 0D 00  returns 0x02 (0001ms, 0442ms total)
T30A4 005:687 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 0443ms total)
T30A4 005:688 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 0444ms total)
T30A4 005:689 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 0445ms total)
T30A4 005:692 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0446ms total)
T30A4 005:693 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0447ms total)
T30A4 005:694 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0448ms total)
T30A4 005:719 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 09 00 00 00  returns 0x04 (0001ms, 0449ms total)
T30A4 005:720 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 09 00 00 00  returns 0x04 (0001ms, 0450ms total)
T30A4 005:721 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 09 00 00 00  returns 0x04 (0002ms, 0452ms total)
T30A4 005:728 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 09 00  returns 0x02 (0001ms, 0453ms total)
T30A4 005:729 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 09 00  returns 0x02 (0001ms, 0454ms total)
T30A4 005:730 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 09 00  returns 0x02 (0001ms, 0455ms total)
T30A4 005:735 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 5B EE 65 1A  returns 0x04 (0001ms, 0456ms total)
T30A4 005:736 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 5B EE 65 1A  returns 0x04 (0001ms, 0457ms total)
T30A4 005:737 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 5B EE 65 1A  returns 0x04 (0002ms, 0459ms total)
T30A4 005:746 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 0D 00  returns 0x02 (0001ms, 0460ms total)
T30A4 005:751 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 0D 00  returns 0x02 (0001ms, 0461ms total)
T30A4 005:753 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 0D 00  returns 0x02 (0001ms, 0462ms total)
T30A4 005:756 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 0D 00  returns 0x02 (0001ms, 0463ms total)
T30A4 005:757 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 0D 00  returns 0x02 (0001ms, 0464ms total)
T30A4 005:758 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 0D 00  returns 0x02 (0001ms, 0465ms total)
T30A4 005:762 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 09 00  returns 0x02 (0001ms, 0467ms total)
T30A4 005:763 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 09 00  returns 0x02 (0001ms, 0468ms total)
T30A4 005:764 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 09 00  returns 0x02 (0001ms, 0469ms total)
T30A4 005:792 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0470ms total)
T30A4 005:793 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0471ms total)
T30A4 005:794 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0472ms total)
T30A4 005:804 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 0D 00  returns 0x02 (0001ms, 0473ms total)
T30A4 005:805 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 0D 00  returns 0x02 (0001ms, 0474ms total)
T30A4 005:806 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 0D 00  returns 0x02 (0002ms, 0476ms total)
T30A4 005:813 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 16 34 12 FF FF 01 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0477ms total)
T30A4 005:816 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 18 00 00 00  returns 0x04 (0001ms, 0478ms total)
T30A4 005:817 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 18 00 00 00  returns 0x04 (0001ms, 0479ms total)
T30A4 005:819 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 18 00 00 00  returns 0x04 (0001ms, 0481ms total)
T30A4 005:825 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 47 38 00 00  returns 0x04 (0001ms, 0482ms total)
T30A4 005:826 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 47 38 00 00  returns 0x04 (0001ms, 0483ms total)
T30A4 005:827 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 47 38 00 00  returns 0x04 (0001ms, 0484ms total)
T30A4 005:830 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 32 12  returns 0x02 (0001ms, 0485ms total)
T30A4 005:831 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 32 12  returns 0x02 (0001ms, 0486ms total)
T30A4 005:832 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 32 12  returns 0x02 (0002ms, 0488ms total)
T30A4 005:841 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 42 00 42 00 45 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0489ms total)
T30A4 005:846 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 0490ms total)
T30A4 005:847 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0000ms, 0490ms total)
T30A4 005:847 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 0491ms total)
T30A4 005:851 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 5B EE 65 1A  returns 0x04 (0001ms, 0492ms total)
T30A4 005:853 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 5B EE 65 1A  returns 0x04 (0001ms, 0493ms total)
T30A4 005:854 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 5B EE 65 1A  returns 0x04 (0001ms, 0494ms total)
T30A4 005:858 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 0D 00  returns 0x02 (0001ms, 0495ms total)
T30A4 005:860 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 0D 00  returns 0x02 (0001ms, 0496ms total)
T30A4 005:861 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 0D 00  returns 0x02 (0001ms, 0497ms total)
T3FE0 006:183 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0498ms total)
T3FE0 006:184 JLINK_SetBPEx(Addr = 0x0000C73C, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0498ms total)
T3FE0 006:184 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0007ms, 0505ms total)
T3FE0 006:292 JLINK_IsHalted()  returns TRUE (0004ms, 0509ms total)
T3FE0 006:296 JLINK_Halt()  returns 0x00 (0000ms, 0505ms total)
T3FE0 006:296 JLINK_IsHalted()  returns TRUE (0000ms, 0505ms total)
T3FE0 006:296 JLINK_IsHalted()  returns TRUE (0000ms, 0505ms total)
T3FE0 006:296 JLINK_IsHalted()  returns TRUE (0000ms, 0505ms total)
T3FE0 006:296 JLINK_ReadReg(R15 (PC))  returns 0x0000C73C (0000ms, 0505ms total)
T3FE0 006:297 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0506ms total)
T3FE0 006:298 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0506ms total)
T3FE0 006:298 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0507ms total)
T3FE0 006:299 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0508ms total)
T3FE0 006:300 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0509ms total)
T3FE0 006:301 JLINK_ReadReg(R0)  returns 0x0000C73D (0000ms, 0509ms total)
T3FE0 006:301 JLINK_ReadReg(R1)  returns 0x0201C8FC (0001ms, 0510ms total)
T3FE0 006:302 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0510ms total)
T3FE0 006:302 JLINK_ReadReg(R3)  returns 0x00012475 (0000ms, 0510ms total)
T3FE0 006:302 JLINK_ReadReg(R4)  returns 0x00015AD4 (0000ms, 0510ms total)
T3FE0 006:302 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0510ms total)
T3FE0 006:302 JLINK_ReadReg(R6)  returns 0x00015AD4 (0000ms, 0510ms total)
T3FE0 006:302 JLINK_ReadReg(R7)  returns 0x02000000 (0001ms, 0511ms total)
T3FE0 006:303 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0511ms total)
T3FE0 006:303 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0511ms total)
T3FE0 006:303 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0511ms total)
T3FE0 006:303 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0511ms total)
T3FE0 006:303 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0511ms total)
T3FE0 006:303 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0511ms total)
T3FE0 006:303 JLINK_ReadReg(R14)  returns 0x00000C71 (0001ms, 0512ms total)
T3FE0 006:304 JLINK_ReadReg(R15 (PC))  returns 0x0000C73C (0000ms, 0512ms total)
T3FE0 006:304 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0512ms total)
T3FE0 006:304 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0512ms total)
T3FE0 006:304 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0512ms total)
T3FE0 006:304 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0512ms total)
T30A4 006:305 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0513ms total)
T30A4 006:326 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 0514ms total)
T30A4 006:327 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 0515ms total)
T30A4 006:328 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 00  returns 0x01 (0001ms, 0516ms total)
T30A4 006:330 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0517ms total)
T30A4 006:331 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 00 00  returns 0x02 (0001ms, 0518ms total)
T30A4 006:332 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 00 00 00 00  returns 0x04 (0001ms, 0519ms total)
T30A4 006:333 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 00 00  returns 0x02 (0001ms, 0520ms total)
T30A4 006:336 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 00 00  returns 0x02 (0001ms, 0521ms total)
T30A4 006:338 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 00 00  returns 0x02 (0001ms, 0522ms total)
T30A4 006:341 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 00  returns 0x01 (0001ms, 0523ms total)
T30A4 006:343 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 00 00  returns 0x02 (0001ms, 0524ms total)
T30A4 006:345 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0526ms total)
T30A4 006:347 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0527ms total)
T30A4 006:349 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 00 00 00 00  returns 0x04 (0001ms, 0528ms total)
T30A4 006:350 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 00 00  returns 0x02 (0001ms, 0529ms total)
T30A4 006:352 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0530ms total)
T30A4 006:353 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 00  returns 0x01 (0001ms, 0531ms total)
T30A4 006:355 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 00 00 00 00  returns 0x04 (0000ms, 0531ms total)
T30A4 006:357 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 00 00  returns 0x02 (0001ms, 0532ms total)
T3FE0 009:590 JLINK_ReadMemEx(0x0000C73C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000C700) -- Updating DA cache (64 bytes @ 0x0000C700) -- Read from DA cache (2 bytes @ 0x0000C73C) - Data: 80 B5  returns 0x02 (0002ms, 0534ms total)
T3FE0 009:592 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0004ms, 0538ms total)
T3FE0 009:698 JLINK_IsHalted()  returns FALSE (0001ms, 0539ms total)
T3FE0 009:800 JLINK_IsHalted()  returns FALSE (0001ms, 0539ms total)
T3FE0 009:901 JLINK_IsHalted()  returns FALSE (0001ms, 0539ms total)
T3FE0 010:003 JLINK_IsHalted()  returns FALSE (0001ms, 0539ms total)
T30A4 010:105 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 13 59 BD 00  returns 0x04 (0001ms, 0539ms total)
T30A4 010:107 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 02 00  returns 0x02 (0001ms, 0540ms total)
T30A4 010:108 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 0541ms total)
T30A4 010:110 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 01  returns 0x01 (0001ms, 0542ms total)
T30A4 010:112 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 01 00 00 00  returns 0x04 (0001ms, 0543ms total)
T30A4 010:113 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 01 00  returns 0x02 (0002ms, 0545ms total)
T30A4 010:115 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 13 59 BD 00  returns 0x04 (0001ms, 0546ms total)
T30A4 010:116 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 02 00  returns 0x02 (0001ms, 0547ms total)
T30A4 010:124 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 02 00  returns 0x02 (0001ms, 0548ms total)
T30A4 010:127 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 01 00  returns 0x02 (0001ms, 0549ms total)
T30A4 010:133 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 01  returns 0x01 (0001ms, 0550ms total)
T30A4 010:138 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 02 00  returns 0x02 (0001ms, 0551ms total)
T30A4 010:142 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0552ms total)
T30A4 010:143 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0553ms total)
T30A4 010:145 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 00 00 00 00  returns 0x04 (0001ms, 0554ms total)
T30A4 010:147 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 00 00  returns 0x02 (0001ms, 0555ms total)
T30A4 010:150 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0556ms total)
T30A4 010:151 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 00  returns 0x01 (0001ms, 0557ms total)
T30A4 010:153 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 13 59 BD 00  returns 0x04 (0002ms, 0560ms total)
T30A4 010:159 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 02 00  returns 0x02 (0001ms, 0561ms total)
T3FE0 010:160 JLINK_IsHalted()  returns FALSE (0002ms, 0563ms total)
T3FE0 010:263 JLINK_IsHalted()  returns FALSE (0001ms, 0562ms total)
T3FE0 010:364 JLINK_IsHalted()  returns FALSE (0001ms, 0562ms total)
T3FE0 010:466 JLINK_IsHalted()  returns FALSE (0001ms, 0562ms total)
T3FE0 010:568 JLINK_IsHalted()  returns FALSE (0001ms, 0562ms total)
T30A4 010:669 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 5F 1E 26 05  returns 0x04 (0001ms, 0562ms total)
T30A4 010:671 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 03 00  returns 0x02 (0001ms, 0563ms total)
T30A4 010:672 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0002ms, 0565ms total)
T30A4 010:674 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 01  returns 0x01 (0001ms, 0566ms total)
T30A4 010:676 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 02 00 00 00  returns 0x04 (0001ms, 0567ms total)
T30A4 010:677 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 02 00  returns 0x02 (0001ms, 0568ms total)
T30A4 010:678 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 5F 1E 26 05  returns 0x04 (0001ms, 0569ms total)
T30A4 010:679 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 03 00  returns 0x02 (0001ms, 0570ms total)
T30A4 010:687 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 03 00  returns 0x02 (0001ms, 0571ms total)
T30A4 010:689 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 02 00  returns 0x02 (0001ms, 0572ms total)
T30A4 010:695 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 01  returns 0x01 (0001ms, 0573ms total)
T30A4 010:700 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 03 00  returns 0x02 (0001ms, 0574ms total)
T30A4 010:704 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 12 34 12 FF FF 00 00 01 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0576ms total)
T30A4 010:707 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 14 00 00 00  returns 0x04 (0001ms, 0577ms total)
T30A4 010:709 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 00 00 00 00  returns 0x04 (0001ms, 0578ms total)
T30A4 010:710 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 00 00  returns 0x02 (0001ms, 0579ms total)
T30A4 010:711 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0580ms total)
T30A4 010:712 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0002ms, 0582ms total)
T30A4 010:714 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 5F 1E 26 05  returns 0x04 (0002ms, 0584ms total)
T30A4 010:720 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 03 00  returns 0x02 (0001ms, 0585ms total)
T3FE0 010:722 JLINK_IsHalted()  returns FALSE (0001ms, 0586ms total)
T3FE0 010:825 JLINK_IsHalted()  returns FALSE (0001ms, 0586ms total)
T3FE0 010:927 JLINK_IsHalted()  returns FALSE (0000ms, 0585ms total)
T3FE0 011:028 JLINK_IsHalted()  returns FALSE (0001ms, 0586ms total)
T3FE0 011:130 JLINK_IsHalted()  returns FALSE (0001ms, 0586ms total)
T30A4 011:232 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 2F 8E BA 09  returns 0x04 (0001ms, 0586ms total)
T30A4 011:233 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 06 00  returns 0x02 (0002ms, 0588ms total)
T30A4 011:235 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 0589ms total)
T30A4 011:236 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0590ms total)
T30A4 011:238 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 03 00 00 00  returns 0x04 (0001ms, 0591ms total)
T30A4 011:239 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 03 00  returns 0x02 (0001ms, 0592ms total)
T30A4 011:241 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 2F 8E BA 09  returns 0x04 (0001ms, 0593ms total)
T30A4 011:242 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 06 00  returns 0x02 (0001ms, 0594ms total)
T30A4 011:251 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 06 00  returns 0x02 (0001ms, 0595ms total)
T30A4 011:253 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 03 00  returns 0x02 (0001ms, 0596ms total)
T30A4 011:261 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0002ms, 0598ms total)
T30A4 011:266 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 06 00  returns 0x02 (0000ms, 0598ms total)
T30A4 011:269 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 12 34 12 FF FF 00 00 01 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0600ms total)
T30A4 011:271 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 14 00 00 00  returns 0x04 (0001ms, 0601ms total)
T30A4 011:274 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 00 00 00 00  returns 0x04 (0001ms, 0602ms total)
T30A4 011:275 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 00 00  returns 0x02 (0001ms, 0603ms total)
T30A4 011:276 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0604ms total)
T30A4 011:277 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 0605ms total)
T30A4 011:279 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 2F 8E BA 09  returns 0x04 (0001ms, 0606ms total)
T30A4 011:285 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 06 00  returns 0x02 (0001ms, 0607ms total)
T3FE0 011:288 JLINK_IsHalted()  returns FALSE (0001ms, 0608ms total)
T3FE0 011:390 JLINK_IsHalted()  returns FALSE (0001ms, 0608ms total)
T3FE0 011:492 JLINK_IsHalted()  returns FALSE (0001ms, 0608ms total)
T3FE0 011:595 JLINK_IsHalted()  returns FALSE (0001ms, 0608ms total)
T3FE0 011:697 JLINK_IsHalted()  returns FALSE (0000ms, 0607ms total)
T30A4 011:798 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: EB 0D 9E 0F  returns 0x04 (0001ms, 0608ms total)
T30A4 011:799 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 09 00  returns 0x02 (0001ms, 0609ms total)
T30A4 011:800 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 0610ms total)
T30A4 011:801 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0611ms total)
T30A4 011:802 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 05 00 00 00  returns 0x04 (0001ms, 0612ms total)
T30A4 011:803 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 05 00  returns 0x02 (0001ms, 0613ms total)
T30A4 011:804 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: EB 0D 9E 0F  returns 0x04 (0000ms, 0613ms total)
T30A4 011:804 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 09 00  returns 0x02 (0001ms, 0614ms total)
T30A4 011:807 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 09 00  returns 0x02 (0002ms, 0616ms total)
T30A4 011:809 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 05 00  returns 0x02 (0001ms, 0617ms total)
T30A4 011:812 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0618ms total)
T30A4 011:813 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 09 00  returns 0x02 (0001ms, 0619ms total)
T30A4 011:815 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1A 34 12 FF FF 01 00 01 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0621ms total)
T30A4 011:819 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 1C 00 00 00  returns 0x04 (0002ms, 0623ms total)
T30A4 011:821 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: E7 18 00 00  returns 0x04 (0002ms, 0625ms total)
T30A4 011:823 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: AD 08  returns 0x02 (0001ms, 0626ms total)
T30A4 011:825 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0628ms total)
T30A4 011:827 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 0629ms total)
T30A4 011:829 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: EB 0D 9E 0F  returns 0x04 (0001ms, 0630ms total)
T30A4 011:833 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 09 00  returns 0x02 (0001ms, 0631ms total)
T3FE0 011:835 JLINK_IsHalted()  returns FALSE (0001ms, 0632ms total)
T3FE0 011:937 JLINK_IsHalted()  returns FALSE (0001ms, 0632ms total)
T3FE0 012:038 JLINK_IsHalted()  returns FALSE (0001ms, 0632ms total)
T3FE0 012:140 JLINK_IsHalted()  returns FALSE (0001ms, 0632ms total)
T3FE0 012:241 JLINK_IsHalted()  returns FALSE (0001ms, 0632ms total)
T30A4 012:343 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: EB 0D 9E 0F  returns 0x04 (0001ms, 0632ms total)
T30A4 012:344 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 09 00  returns 0x02 (0001ms, 0633ms total)
T30A4 012:346 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 0634ms total)
T30A4 012:347 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0635ms total)
T30A4 012:350 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 05 00 00 00  returns 0x04 (0001ms, 0636ms total)
T30A4 012:351 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 05 00  returns 0x02 (0001ms, 0637ms total)
T30A4 012:352 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: EB 0D 9E 0F  returns 0x04 (0001ms, 0638ms total)
T30A4 012:354 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 09 00  returns 0x02 (0001ms, 0639ms total)
T30A4 012:357 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 09 00  returns 0x02 (0001ms, 0640ms total)
T30A4 012:359 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 05 00  returns 0x02 (0002ms, 0642ms total)
T30A4 012:365 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0643ms total)
T30A4 012:368 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 09 00  returns 0x02 (0001ms, 0644ms total)
T30A4 012:371 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1A 34 12 FF FF 01 00 01 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0645ms total)
T30A4 012:372 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 1C 00 00 00  returns 0x04 (0001ms, 0646ms total)
T30A4 012:374 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: E7 18 00 00  returns 0x04 (0001ms, 0647ms total)
T30A4 012:376 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: AD 08  returns 0x02 (0001ms, 0648ms total)
T30A4 012:377 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C5 CF C1 CF 41 00 40 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0650ms total)
T30A4 012:380 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0002ms, 0652ms total)
T30A4 012:383 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 43 DA 06 14  returns 0x04 (0001ms, 0653ms total)
T30A4 012:388 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 0A 00  returns 0x02 (0001ms, 0655ms total)
T3FE0 012:390 JLINK_IsHalted()  returns FALSE (0001ms, 0656ms total)
T3FE0 012:492 JLINK_IsHalted()  returns FALSE (0001ms, 0656ms total)
T3FE0 012:593 JLINK_IsHalted()  returns FALSE (0001ms, 0656ms total)
T3FE0 012:696 JLINK_IsHalted()  returns FALSE (0001ms, 0656ms total)
T3FE0 012:798 JLINK_IsHalted()  returns FALSE (0001ms, 0656ms total)
T30A4 012:899 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: D1 2E 0E 17  returns 0x04 (0001ms, 0656ms total)
T30A4 012:900 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 0C 00  returns 0x02 (0001ms, 0657ms total)
T30A4 012:902 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 0658ms total)
T30A4 012:903 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0002ms, 0660ms total)
T30A4 012:906 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 07 00 00 00  returns 0x04 (0001ms, 0661ms total)
T30A4 012:907 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 07 00  returns 0x02 (0001ms, 0662ms total)
T30A4 012:908 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: D1 2E 0E 17  returns 0x04 (0001ms, 0663ms total)
T30A4 012:909 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 0C 00  returns 0x02 (0001ms, 0664ms total)
T30A4 012:914 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 0C 00  returns 0x02 (0001ms, 0665ms total)
T30A4 012:916 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 07 00  returns 0x02 (0001ms, 0666ms total)
T30A4 012:921 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0002ms, 0668ms total)
T30A4 012:924 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 0C 00  returns 0x02 (0001ms, 0669ms total)
T30A4 012:927 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1A 34 12 FF FF 01 00 01 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0671ms total)
T30A4 012:929 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 1C 00 00 00  returns 0x04 (0001ms, 0672ms total)
T30A4 012:930 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: E7 18 00 00  returns 0x04 (0001ms, 0673ms total)
T30A4 012:931 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: AD 08  returns 0x02 (0001ms, 0674ms total)
T30A4 012:932 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 42 00 41 00 40 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0675ms total)
T30A4 012:935 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0002ms, 0677ms total)
T30A4 012:937 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: D1 2E 0E 17  returns 0x04 (0001ms, 0678ms total)
T30A4 012:943 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 0C 00  returns 0x02 (0001ms, 0679ms total)
T3FE0 012:944 JLINK_IsHalted()  returns FALSE (0001ms, 0680ms total)
T3FE0 013:047 JLINK_IsHalted()  returns FALSE (0001ms, 0680ms total)
T3FE0 013:148 JLINK_IsHalted()  returns FALSE (0001ms, 0680ms total)
T3FE0 013:250 JLINK_IsHalted()  returns FALSE (0001ms, 0680ms total)
T3FE0 013:352 JLINK_IsHalted()  returns FALSE (0001ms, 0680ms total)
T30A4 013:453 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: F1 3C 77 1B  returns 0x04 (0001ms, 0680ms total)
T30A4 013:454 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 0E 00  returns 0x02 (0002ms, 0682ms total)
T30A4 013:456 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 0683ms total)
T30A4 013:457 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0684ms total)
T30A4 013:461 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 08 00 00 00  returns 0x04 (0001ms, 0685ms total)
T30A4 013:463 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 08 00  returns 0x02 (0000ms, 0685ms total)
T30A4 013:464 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: F1 3C 77 1B  returns 0x04 (0001ms, 0686ms total)
T30A4 013:465 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 0E 00  returns 0x02 (0001ms, 0687ms total)
T30A4 013:470 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 0E 00  returns 0x02 (0002ms, 0689ms total)
T30A4 013:473 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 08 00  returns 0x02 (0001ms, 0690ms total)
T30A4 013:481 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0691ms total)
T30A4 013:483 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 0E 00  returns 0x02 (0001ms, 0692ms total)
T30A4 013:487 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1A 34 12 FF FF 01 00 01 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0693ms total)
T30A4 013:488 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 1C 00 00 00  returns 0x04 (0001ms, 0694ms total)
T30A4 013:489 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: E7 18 00 00  returns 0x04 (0001ms, 0695ms total)
T30A4 013:490 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: AD 08  returns 0x02 (0001ms, 0696ms total)
T30A4 013:491 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 42 00 41 00 40 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0698ms total)
T30A4 013:493 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 0699ms total)
T30A4 013:495 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: F1 3C 77 1B  returns 0x04 (0001ms, 0700ms total)
T30A4 013:500 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 0E 00  returns 0x02 (0001ms, 0701ms total)
T3FE0 013:502 JLINK_IsHalted()  returns FALSE (0001ms, 0702ms total)
T3FE0 013:603 JLINK_IsHalted()  returns FALSE (0001ms, 0702ms total)
T3FE0 013:705 JLINK_IsHalted()  returns FALSE (0001ms, 0702ms total)
T3FE0 013:807 JLINK_IsHalted()  returns FALSE (0000ms, 0701ms total)
T3FE0 013:908 JLINK_IsHalted()  returns FALSE (0001ms, 0702ms total)
T30A4 014:009 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: FF 87 7E 1E  returns 0x04 (0001ms, 0702ms total)
T30A4 014:010 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 10 00  returns 0x02 (0001ms, 0703ms total)
T30A4 014:012 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0002ms, 0705ms total)
T30A4 014:014 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0706ms total)
T30A4 014:016 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 09 00 00 00  returns 0x04 (0001ms, 0707ms total)
T30A4 014:017 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 09 00  returns 0x02 (0001ms, 0708ms total)
T30A4 014:019 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: FF 87 7E 1E  returns 0x04 (0001ms, 0709ms total)
T30A4 014:022 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 10 00  returns 0x02 (0001ms, 0710ms total)
T30A4 014:028 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 10 00  returns 0x02 (0002ms, 0712ms total)
T30A4 014:031 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 09 00  returns 0x02 (0001ms, 0713ms total)
T30A4 014:039 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0714ms total)
T30A4 014:041 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 10 00  returns 0x02 (0001ms, 0715ms total)
T30A4 014:045 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 33 0E 34 12 11 11 0B 01 28 E1 00 00 00 00 41 FE ...  returns 0x20 (0001ms, 0716ms total)
T30A4 014:048 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 1C 00 00 00  returns 0x04 (0001ms, 0717ms total)
T30A4 014:049 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: E7 18 00 00  returns 0x04 (0001ms, 0718ms total)
T30A4 014:050 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: AD 08  returns 0x02 (0001ms, 0719ms total)
T30A4 014:052 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C5 CF C1 CF 45 00 44 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0720ms total)
T30A4 014:055 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 0721ms total)
T30A4 014:057 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: FF 87 7E 1E  returns 0x04 (0001ms, 0722ms total)
T30A4 014:061 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 10 00  returns 0x02 (0001ms, 0723ms total)
T3FE0 014:063 JLINK_IsHalted()  returns FALSE (0001ms, 0724ms total)
T3FE0 014:165 JLINK_IsHalted()  returns FALSE (0001ms, 0724ms total)
T3FE0 014:267 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T3FE0 014:368 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T3FE0 014:469 JLINK_IsHalted()  returns FALSE (0000ms, 0723ms total)
T30A4 014:571 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: B5 9E E7 22  returns 0x04 (0001ms, 0724ms total)
T30A4 014:572 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 11 00  returns 0x02 (0001ms, 0725ms total)
T30A4 014:574 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 0727ms total)
T30A4 014:575 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0728ms total)
T30A4 014:576 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 0A 00 00 00  returns 0x04 (0001ms, 0729ms total)
T30A4 014:577 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 0A 00  returns 0x02 (0001ms, 0730ms total)
T30A4 014:578 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: B5 9E E7 22  returns 0x04 (0001ms, 0731ms total)
T30A4 014:579 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 11 00  returns 0x02 (0000ms, 0731ms total)
T30A4 014:583 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 11 00  returns 0x02 (0000ms, 0732ms total)
T30A4 014:585 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 0A 00  returns 0x02 (0001ms, 0733ms total)
T30A4 014:590 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0734ms total)
T30A4 014:591 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 11 00  returns 0x02 (0002ms, 0736ms total)
T30A4 014:595 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 33 0E 34 12 11 11 0B 01 28 E1 00 00 00 00 41 FE ...  returns 0x20 (0001ms, 0737ms total)
T30A4 014:596 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 1C 00 00 00  returns 0x04 (0001ms, 0738ms total)
T30A4 014:597 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: E7 18 00 00  returns 0x04 (0001ms, 0739ms total)
T30A4 014:598 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: AD 08  returns 0x02 (0000ms, 0739ms total)
T30A4 014:599 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C5 CF C1 CF 45 00 44 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0741ms total)
T30A4 014:600 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 0742ms total)
T30A4 014:601 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: B5 9E E7 22  returns 0x04 (0001ms, 0743ms total)
T30A4 014:604 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 11 00  returns 0x02 (0001ms, 0744ms total)
T3FE0 014:605 JLINK_IsHalted()  returns FALSE (0001ms, 0745ms total)
T3FE0 014:707 JLINK_IsHalted()  returns FALSE (0001ms, 0745ms total)
T3FE0 014:809 JLINK_IsHalted()  returns FALSE (0001ms, 0745ms total)
T3FE0 014:911 JLINK_IsHalted()  returns FALSE (0001ms, 0745ms total)
T3FE0 015:012 JLINK_IsHalted()  returns FALSE (0001ms, 0745ms total)
T30A4 015:113 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 9B 33 7C 27  returns 0x04 (0002ms, 0746ms total)
T30A4 015:116 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 13 00  returns 0x02 (0001ms, 0747ms total)
T30A4 015:117 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0002ms, 0749ms total)
T30A4 015:119 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0750ms total)
T30A4 015:121 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 0A 00 00 00  returns 0x04 (0001ms, 0751ms total)
T30A4 015:122 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 0A 00  returns 0x02 (0001ms, 0752ms total)
T30A4 015:124 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 9B 33 7C 27  returns 0x04 (0001ms, 0754ms total)
T30A4 015:125 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 13 00  returns 0x02 (0001ms, 0755ms total)
T30A4 015:132 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 13 00  returns 0x02 (0002ms, 0757ms total)
T30A4 015:135 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 0A 00  returns 0x02 (0001ms, 0758ms total)
T30A4 015:141 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0759ms total)
T30A4 015:144 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 13 00  returns 0x02 (0001ms, 0760ms total)
T30A4 015:147 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 22 34 12 11 11 02 00 01 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0761ms total)
T30A4 015:151 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 24 00 00 00  returns 0x04 (0001ms, 0762ms total)
T30A4 015:153 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: E7 18 00 00  returns 0x04 (0001ms, 0763ms total)
T30A4 015:154 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: AD 08  returns 0x02 (0001ms, 0764ms total)
T30A4 015:155 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0765ms total)
T30A4 015:157 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 0766ms total)
T30A4 015:159 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 9B 33 7C 27  returns 0x04 (0001ms, 0768ms total)
T30A4 015:166 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 13 00  returns 0x02 (0002ms, 0770ms total)
T3FE0 015:168 JLINK_IsHalted()  returns FALSE (0001ms, 0771ms total)
T3FE0 015:271 JLINK_IsHalted()  returns FALSE (0001ms, 0771ms total)
T3FE0 015:372 JLINK_IsHalted()  returns FALSE (0001ms, 0771ms total)
T3FE0 015:474 JLINK_IsHalted()  returns FALSE (0001ms, 0771ms total)
T3FE0 015:577 JLINK_IsHalted()  returns FALSE (0001ms, 0771ms total)
T30A4 015:678 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 73 FF 57 2A  returns 0x04 (0001ms, 0771ms total)
T30A4 015:680 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 14 00  returns 0x02 (0001ms, 0772ms total)
T30A4 015:681 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 0773ms total)
T30A4 015:682 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0002ms, 0775ms total)
T30A4 015:685 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 0B 00 00 00  returns 0x04 (0001ms, 0776ms total)
T30A4 015:686 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 0B 00  returns 0x02 (0001ms, 0777ms total)
T30A4 015:687 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 73 FF 57 2A  returns 0x04 (0002ms, 0779ms total)
T30A4 015:689 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 14 00  returns 0x02 (0001ms, 0780ms total)
T30A4 015:694 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 14 00  returns 0x02 (0001ms, 0781ms total)
T30A4 015:698 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 0B 00  returns 0x02 (0001ms, 0782ms total)
T30A4 015:704 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0783ms total)
T30A4 015:706 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 14 00  returns 0x02 (0002ms, 0785ms total)
T30A4 015:710 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1A 34 12 11 11 03 00 01 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0787ms total)
T30A4 015:714 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 1C 00 00 00  returns 0x04 (0001ms, 0788ms total)
T30A4 015:716 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: E7 18 00 00  returns 0x04 (0001ms, 0789ms total)
T30A4 015:718 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: AD 08  returns 0x02 (0000ms, 0790ms total)
T30A4 015:719 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0791ms total)
T30A4 015:720 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 0792ms total)
T30A4 015:722 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 73 FF 57 2A  returns 0x04 (0001ms, 0793ms total)
T30A4 015:733 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 14 00  returns 0x02 (0002ms, 0795ms total)
T3FE0 015:736 JLINK_IsHalted()  returns FALSE (0001ms, 0796ms total)
T3FE0 015:837 JLINK_IsHalted()  returns FALSE (0000ms, 0795ms total)
T3FE0 015:939 JLINK_IsHalted()  returns FALSE (0001ms, 0796ms total)
T3FE0 016:041 JLINK_IsHalted()  returns FALSE (0001ms, 0796ms total)
T3FE0 016:143 JLINK_IsHalted()  returns FALSE (0001ms, 0796ms total)
T30A4 016:244 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: F1 3C 5F 2D  returns 0x04 (0001ms, 0796ms total)
T30A4 016:247 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 16 00  returns 0x02 (0001ms, 0797ms total)
T30A4 016:248 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 0798ms total)
T30A4 016:249 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0002ms, 0800ms total)
T30A4 016:252 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 0C 00 00 00  returns 0x04 (0001ms, 0801ms total)
T30A4 016:253 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 0C 00  returns 0x02 (0001ms, 0802ms total)
T30A4 016:255 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: F1 3C 5F 2D  returns 0x04 (0001ms, 0803ms total)
T30A4 016:256 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 16 00  returns 0x02 (0001ms, 0804ms total)
T30A4 016:262 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 16 00  returns 0x02 (0002ms, 0806ms total)
T30A4 016:265 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 0C 00  returns 0x02 (0002ms, 0808ms total)
T30A4 016:272 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0809ms total)
T30A4 016:276 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 16 00  returns 0x02 (0001ms, 0810ms total)
T30A4 016:282 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1A 34 12 11 11 03 00 01 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0811ms total)
T30A4 016:283 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 1C 00 00 00  returns 0x04 (0001ms, 0812ms total)
T30A4 016:285 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: E1 18 00 00  returns 0x04 (0001ms, 0813ms total)
T30A4 016:287 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: AB 08  returns 0x02 (0002ms, 0815ms total)
T30A4 016:290 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0816ms total)
T30A4 016:291 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 0817ms total)
T30A4 016:293 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: F1 3C 5F 2D  returns 0x04 (0001ms, 0818ms total)
T30A4 016:297 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 16 00  returns 0x02 (0002ms, 0820ms total)
T3FE0 016:299 JLINK_IsHalted()  returns FALSE (0001ms, 0821ms total)
T3FE0 016:401 JLINK_IsHalted()  returns FALSE (0001ms, 0821ms total)
T3FE0 016:502 JLINK_IsHalted()  returns FALSE (0000ms, 0820ms total)
T3FE0 016:603 JLINK_IsHalted()  returns FALSE (0001ms, 0821ms total)
T3FE0 016:705 JLINK_IsHalted()  returns FALSE (0001ms, 0821ms total)
T30A4 016:806 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: DD C4 CF 34  returns 0x04 (0001ms, 0821ms total)
T30A4 016:807 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 19 00  returns 0x02 (0002ms, 0823ms total)
T30A4 016:809 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 0824ms total)
T30A4 016:810 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0825ms total)
T30A4 016:812 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 0E 00 00 00  returns 0x04 (0002ms, 0827ms total)
T30A4 016:814 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 0E 00  returns 0x02 (0001ms, 0828ms total)
T30A4 016:815 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: DD C4 CF 34  returns 0x04 (0001ms, 0829ms total)
T30A4 016:816 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 19 00  returns 0x02 (0002ms, 0831ms total)
T30A4 016:826 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 19 00  returns 0x02 (0001ms, 0832ms total)
T30A4 016:829 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 0E 00  returns 0x02 (0001ms, 0833ms total)
T30A4 016:838 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0834ms total)
T30A4 016:841 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 19 00  returns 0x02 (0000ms, 0834ms total)
T30A4 016:844 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1A 34 12 11 11 03 00 01 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0836ms total)
T30A4 016:845 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 1C 00 00 00  returns 0x04 (0001ms, 0837ms total)
T30A4 016:846 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: E1 18 00 00  returns 0x04 (0001ms, 0838ms total)
T30A4 016:849 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: AB 08  returns 0x02 (0001ms, 0839ms total)
T30A4 016:853 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 42 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0841ms total)
T30A4 016:859 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 0842ms total)
T30A4 016:862 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: DD C4 CF 34  returns 0x04 (0001ms, 0843ms total)
T30A4 016:875 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 19 00  returns 0x02 (0001ms, 0844ms total)
T3FE0 016:879 JLINK_IsHalted()  returns FALSE (0001ms, 0845ms total)
T3FE0 016:981 JLINK_IsHalted()  returns FALSE (0001ms, 0845ms total)
T3FE0 017:083 JLINK_IsHalted()  returns FALSE (0001ms, 0845ms total)
T3FE0 017:185 JLINK_IsHalted()  returns FALSE (0001ms, 0845ms total)
T3FE0 017:286 JLINK_IsHalted()  returns FALSE (0001ms, 0845ms total)
T30A4 017:389 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 91 FB 38 39  returns 0x04 (0001ms, 0845ms total)
T30A4 017:391 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 1B 00  returns 0x02 (0001ms, 0846ms total)
T30A4 017:392 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0002ms, 0848ms total)
T30A4 017:394 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0849ms total)
T30A4 017:396 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 0F 00 00 00  returns 0x04 (0001ms, 0850ms total)
T30A4 017:397 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 0F 00  returns 0x02 (0001ms, 0851ms total)
T30A4 017:400 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 91 FB 38 39  returns 0x04 (0001ms, 0852ms total)
T30A4 017:401 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 1B 00  returns 0x02 (0001ms, 0853ms total)
T30A4 017:407 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 1B 00  returns 0x02 (0001ms, 0854ms total)
T30A4 017:410 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 0F 00  returns 0x02 (0001ms, 0855ms total)
T30A4 017:419 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0856ms total)
T30A4 017:421 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 1B 00  returns 0x02 (0001ms, 0857ms total)
T30A4 017:425 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1A 34 12 11 11 03 00 01 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0860ms total)
T30A4 017:427 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 1C 00 00 00  returns 0x04 (0001ms, 0861ms total)
T30A4 017:428 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: E1 18 00 00  returns 0x04 (0001ms, 0862ms total)
T30A4 017:429 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: AB 08  returns 0x02 (0001ms, 0863ms total)
T30A4 017:430 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C1 CF C5 CF 44 00 45 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0865ms total)
T30A4 017:434 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 0866ms total)
T30A4 017:436 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 91 FB 38 39  returns 0x04 (0001ms, 0867ms total)
T30A4 017:441 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 1B 00  returns 0x02 (0001ms, 0868ms total)
T3FE0 017:442 JLINK_IsHalted()  returns FALSE (0001ms, 0869ms total)
T3FE0 017:544 JLINK_IsHalted()  returns FALSE (0001ms, 0869ms total)
T3FE0 017:646 JLINK_IsHalted()  returns FALSE (0001ms, 0869ms total)
T3FE0 017:747 JLINK_IsHalted()  returns FALSE (0001ms, 0869ms total)
T3FE0 017:849 JLINK_IsHalted()  returns FALSE (0000ms, 0868ms total)
T30A4 017:950 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: C3 EE 3F 3C  returns 0x04 (0001ms, 0869ms total)
T30A4 017:951 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 1D 00  returns 0x02 (0002ms, 0871ms total)
T30A4 017:953 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0002ms, 0873ms total)
T30A4 017:955 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0874ms total)
T30A4 017:957 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 10 00 00 00  returns 0x04 (0001ms, 0875ms total)
T30A4 017:958 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 10 00  returns 0x02 (0001ms, 0876ms total)
T30A4 017:960 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: C3 EE 3F 3C  returns 0x04 (0001ms, 0877ms total)
T30A4 017:961 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 1D 00  returns 0x02 (0002ms, 0879ms total)
T30A4 017:969 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 1D 00  returns 0x02 (0001ms, 0880ms total)
T30A4 017:971 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 10 00  returns 0x02 (0001ms, 0881ms total)
T30A4 017:979 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0883ms total)
T30A4 017:981 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 1D 00  returns 0x02 (0001ms, 0884ms total)
T30A4 017:985 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 04 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0885ms total)
T30A4 017:987 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 0886ms total)
T30A4 017:989 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 85 18 00 00  returns 0x04 (0001ms, 0887ms total)
T30A4 017:991 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 8F 08  returns 0x02 (0001ms, 0888ms total)
T30A4 017:994 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0889ms total)
T30A4 017:996 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 0890ms total)
T30A4 017:998 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: C3 EE 3F 3C  returns 0x04 (0001ms, 0891ms total)
T30A4 018:003 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 1D 00  returns 0x02 (0001ms, 0892ms total)
T3FE0 018:005 JLINK_IsHalted()  returns FALSE (0000ms, 0892ms total)
T3FE0 018:106 JLINK_IsHalted()  returns FALSE (0001ms, 0893ms total)
T3FE0 018:208 JLINK_IsHalted()  returns FALSE (0001ms, 0893ms total)
T3FE0 018:310 JLINK_IsHalted()  returns FALSE (0001ms, 0893ms total)
T3FE0 018:412 JLINK_IsHalted()  returns FALSE (0001ms, 0893ms total)
T30A4 018:513 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 8D 26 A9 40  returns 0x04 (0001ms, 0893ms total)
T30A4 018:514 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 1E 00  returns 0x02 (0001ms, 0894ms total)
T30A4 018:516 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0002ms, 0896ms total)
T30A4 018:518 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0897ms total)
T30A4 018:520 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 11 00 00 00  returns 0x04 (0001ms, 0898ms total)
T30A4 018:521 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 11 00  returns 0x02 (0001ms, 0899ms total)
T30A4 018:524 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 8D 26 A9 40  returns 0x04 (0001ms, 0900ms total)
T30A4 018:525 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 1E 00  returns 0x02 (0001ms, 0901ms total)
T30A4 018:532 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 1E 00  returns 0x02 (0001ms, 0902ms total)
T30A4 018:534 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 11 00  returns 0x02 (0001ms, 0903ms total)
T30A4 018:541 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0002ms, 0905ms total)
T30A4 018:544 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 1E 00  returns 0x02 (0001ms, 0906ms total)
T30A4 018:547 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 04 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0908ms total)
T30A4 018:549 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 0909ms total)
T30A4 018:551 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 85 18 00 00  returns 0x04 (0001ms, 0910ms total)
T30A4 018:553 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 8F 08  returns 0x02 (0001ms, 0911ms total)
T30A4 018:555 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C5 CF C1 CF 46 00 42 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0913ms total)
T30A4 018:559 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 0914ms total)
T30A4 018:560 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 8D 26 A9 40  returns 0x04 (0002ms, 0916ms total)
T30A4 018:566 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 1E 00  returns 0x02 (0001ms, 0917ms total)
T3FE0 018:567 JLINK_IsHalted()  returns FALSE (0001ms, 0918ms total)
T3FE0 018:669 JLINK_IsHalted()  returns FALSE (0001ms, 0918ms total)
T3FE0 018:771 JLINK_IsHalted()  returns FALSE (0001ms, 0918ms total)
T3FE0 018:873 JLINK_IsHalted()  returns FALSE (0001ms, 0918ms total)
T3FE0 018:975 JLINK_IsHalted()  returns FALSE (0001ms, 0918ms total)
T30A4 019:076 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 2B 02 3E 45  returns 0x04 (0001ms, 0918ms total)
T30A4 019:077 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 21 00  returns 0x02 (0002ms, 0920ms total)
T30A4 019:079 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 0921ms total)
T30A4 019:080 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0922ms total)
T30A4 019:082 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 12 00 00 00  returns 0x04 (0002ms, 0924ms total)
T30A4 019:084 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 12 00  returns 0x02 (0001ms, 0925ms total)
T30A4 019:087 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 2B 02 3E 45  returns 0x04 (0001ms, 0926ms total)
T30A4 019:088 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 21 00  returns 0x02 (0001ms, 0927ms total)
T30A4 019:094 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 21 00  returns 0x02 (0001ms, 0928ms total)
T30A4 019:096 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 12 00  returns 0x02 (0001ms, 0929ms total)
T30A4 019:104 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0931ms total)
T30A4 019:107 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 21 00  returns 0x02 (0001ms, 0932ms total)
T30A4 019:110 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 04 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0934ms total)
T30A4 019:112 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 0935ms total)
T30A4 019:113 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 85 18 00 00  returns 0x04 (0001ms, 0936ms total)
T30A4 019:114 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 8F 08  returns 0x02 (0001ms, 0937ms total)
T30A4 019:115 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C5 CF C1 CF 46 00 42 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0939ms total)
T30A4 019:117 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 0940ms total)
T30A4 019:120 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 2B 02 3E 45  returns 0x04 (0001ms, 0941ms total)
T30A4 019:126 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 21 00  returns 0x02 (0001ms, 0942ms total)
T3FE0 019:127 JLINK_IsHalted()  returns FALSE (0001ms, 0943ms total)
T3FE0 019:229 JLINK_IsHalted()  returns FALSE (0001ms, 0943ms total)
T3FE0 019:331 JLINK_IsHalted()  returns FALSE (0001ms, 0943ms total)
T3FE0 019:432 JLINK_IsHalted()  returns FALSE (0001ms, 0943ms total)
T3FE0 019:534 JLINK_IsHalted()  returns FALSE (0001ms, 0943ms total)
T30A4 019:636 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 3D 87 19 48  returns 0x04 (0001ms, 0943ms total)
T30A4 019:637 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 22 00  returns 0x02 (0002ms, 0945ms total)
T30A4 019:639 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 0946ms total)
T30A4 019:640 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0947ms total)
T30A4 019:642 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 13 00 00 00  returns 0x04 (0001ms, 0948ms total)
T30A4 019:643 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 13 00  returns 0x02 (0001ms, 0949ms total)
T30A4 019:644 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 3D 87 19 48  returns 0x04 (0002ms, 0951ms total)
T30A4 019:646 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 22 00  returns 0x02 (0001ms, 0952ms total)
T30A4 019:654 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 22 00  returns 0x02 (0002ms, 0954ms total)
T30A4 019:657 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 13 00  returns 0x02 (0002ms, 0956ms total)
T30A4 019:666 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0957ms total)
T30A4 019:668 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 22 00  returns 0x02 (0001ms, 0958ms total)
T30A4 019:671 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 04 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0960ms total)
T30A4 019:673 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 0961ms total)
T30A4 019:674 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 85 18 00 00  returns 0x04 (0001ms, 0962ms total)
T30A4 019:675 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 8F 08  returns 0x02 (0001ms, 0963ms total)
T30A4 019:676 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C5 CF C1 CF 45 00 40 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0965ms total)
T30A4 019:679 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0002ms, 0967ms total)
T30A4 019:681 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 3D 87 19 48  returns 0x04 (0001ms, 0968ms total)
T30A4 019:686 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 22 00  returns 0x02 (0001ms, 0969ms total)
T3FE0 019:687 JLINK_IsHalted()  returns FALSE (0001ms, 0970ms total)
T3FE0 019:790 JLINK_IsHalted()  returns FALSE (0000ms, 0969ms total)
T3FE0 019:892 JLINK_IsHalted()  returns FALSE (0000ms, 0969ms total)
T3FE0 019:993 JLINK_IsHalted()  returns FALSE (0001ms, 0970ms total)
T3FE0 020:095 JLINK_IsHalted()  returns FALSE (0001ms, 0970ms total)
T30A4 020:197 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: B3 D0 20 4B  returns 0x04 (0001ms, 0970ms total)
T30A4 020:199 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 24 00  returns 0x02 (0001ms, 0971ms total)
T30A4 020:201 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 0973ms total)
T30A4 020:202 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0974ms total)
T30A4 020:204 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 14 00 00 00  returns 0x04 (0001ms, 0975ms total)
T30A4 020:205 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 14 00  returns 0x02 (0001ms, 0976ms total)
T30A4 020:207 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: B3 D0 20 4B  returns 0x04 (0001ms, 0977ms total)
T30A4 020:208 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 24 00  returns 0x02 (0001ms, 0978ms total)
T30A4 020:217 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 24 00  returns 0x02 (0001ms, 0979ms total)
T30A4 020:220 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 14 00  returns 0x02 (0001ms, 0981ms total)
T30A4 020:228 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0982ms total)
T30A4 020:230 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 24 00  returns 0x02 (0001ms, 0983ms total)
T30A4 020:234 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 05 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0984ms total)
T30A4 020:236 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 0985ms total)
T30A4 020:237 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 82 18 00 00  returns 0x04 (0001ms, 0986ms total)
T30A4 020:239 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 8E 08  returns 0x02 (0001ms, 0988ms total)
T30A4 020:241 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 42 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0990ms total)
T30A4 020:245 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 0991ms total)
T30A4 020:247 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: B3 D0 20 4B  returns 0x04 (0001ms, 0992ms total)
T30A4 020:252 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 24 00  returns 0x02 (0001ms, 0993ms total)
T3FE0 020:254 JLINK_IsHalted()  returns FALSE (0001ms, 0994ms total)
T3FE0 020:356 JLINK_IsHalted()  returns FALSE (0001ms, 0994ms total)
T3FE0 020:458 JLINK_IsHalted()  returns FALSE (0001ms, 0994ms total)
T3FE0 020:560 JLINK_IsHalted()  returns FALSE (0001ms, 0994ms total)
T3FE0 020:662 JLINK_IsHalted()  returns FALSE (0001ms, 0994ms total)
T30A4 020:764 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 65 0C 2F 52  returns 0x04 (0001ms, 0994ms total)
T30A4 020:766 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 26 00  returns 0x02 (0001ms, 0995ms total)
T30A4 020:767 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 0996ms total)
T30A4 020:768 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 0997ms total)
T30A4 020:770 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 16 00 00 00  returns 0x04 (0002ms, 0999ms total)
T30A4 020:772 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 16 00  returns 0x02 (0001ms, 1000ms total)
T30A4 020:774 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 65 0C 2F 52  returns 0x04 (0001ms, 1001ms total)
T30A4 020:776 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 26 00  returns 0x02 (0001ms, 1002ms total)
T30A4 020:781 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 26 00  returns 0x02 (0002ms, 1004ms total)
T30A4 020:784 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 16 00  returns 0x02 (0001ms, 1005ms total)
T30A4 020:792 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1006ms total)
T30A4 020:794 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 27 00  returns 0x02 (0002ms, 1008ms total)
T30A4 020:798 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 05 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1009ms total)
T30A4 020:799 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1010ms total)
T30A4 020:800 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 82 18 00 00  returns 0x04 (0002ms, 1012ms total)
T30A4 020:802 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 8E 08  returns 0x02 (0001ms, 1013ms total)
T30A4 020:804 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 42 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1015ms total)
T30A4 020:806 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1016ms total)
T30A4 020:809 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: A3 2A 91 52  returns 0x04 (0002ms, 1018ms total)
T30A4 020:818 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 27 00  returns 0x02 (0001ms, 1019ms total)
T3FE0 020:819 JLINK_IsHalted()  returns FALSE (0001ms, 1020ms total)
T3FE0 020:921 JLINK_IsHalted()  returns FALSE (0001ms, 1020ms total)
T3FE0 021:022 JLINK_IsHalted()  returns FALSE (0001ms, 1020ms total)
T3FE0 021:124 JLINK_IsHalted()  returns FALSE (0001ms, 1020ms total)
T3FE0 021:225 JLINK_IsHalted()  returns FALSE (0001ms, 1020ms total)
T30A4 021:327 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 4B E7 1E 54  returns 0x04 (0001ms, 1020ms total)
T30A4 021:328 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 28 00  returns 0x02 (0001ms, 1021ms total)
T30A4 021:330 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 1022ms total)
T30A4 021:331 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1023ms total)
T30A4 021:333 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 16 00 00 00  returns 0x04 (0001ms, 1024ms total)
T30A4 021:334 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 16 00  returns 0x02 (0001ms, 1025ms total)
T30A4 021:337 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 4B E7 1E 54  returns 0x04 (0001ms, 1026ms total)
T30A4 021:338 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 28 00  returns 0x02 (0001ms, 1027ms total)
T30A4 021:344 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 28 00  returns 0x02 (0001ms, 1028ms total)
T30A4 021:347 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 16 00  returns 0x02 (0001ms, 1029ms total)
T30A4 021:353 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0002ms, 1031ms total)
T30A4 021:356 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 28 00  returns 0x02 (0001ms, 1032ms total)
T30A4 021:359 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 05 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1034ms total)
T30A4 021:361 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1035ms total)
T30A4 021:362 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 82 18 00 00  returns 0x04 (0001ms, 1036ms total)
T30A4 021:363 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 8E 08  returns 0x02 (0001ms, 1037ms total)
T30A4 021:364 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C1 CF C5 CF 40 00 45 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1038ms total)
T30A4 021:367 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1039ms total)
T30A4 021:369 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 4B E7 1E 54  returns 0x04 (0001ms, 1040ms total)
T30A4 021:374 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 28 00  returns 0x02 (0002ms, 1042ms total)
T3FE0 021:376 JLINK_IsHalted()  returns FALSE (0001ms, 1043ms total)
T3FE0 021:478 JLINK_IsHalted()  returns FALSE (0001ms, 1043ms total)
T3FE0 021:580 JLINK_IsHalted()  returns FALSE (0002ms, 1044ms total)
T3FE0 021:682 JLINK_IsHalted()  returns FALSE (0001ms, 1043ms total)
T3FE0 021:783 JLINK_IsHalted()  returns FALSE (0001ms, 1043ms total)
T30A4 021:885 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 1F 83 01 5A  returns 0x04 (0001ms, 1043ms total)
T30A4 021:886 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 2B 00  returns 0x02 (0002ms, 1045ms total)
T30A4 021:888 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 1046ms total)
T30A4 021:889 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1047ms total)
T30A4 021:891 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 18 00 00 00  returns 0x04 (0002ms, 1049ms total)
T30A4 021:893 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 18 00  returns 0x02 (0001ms, 1050ms total)
T30A4 021:894 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 1F 83 01 5A  returns 0x04 (0001ms, 1051ms total)
T30A4 021:895 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 2B 00  returns 0x02 (0001ms, 1052ms total)
T30A4 021:904 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 2B 00  returns 0x02 (0001ms, 1053ms total)
T30A4 021:906 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 18 00  returns 0x02 (0002ms, 1055ms total)
T30A4 021:913 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1056ms total)
T30A4 021:915 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 2B 00  returns 0x02 (0001ms, 1057ms total)
T30A4 021:919 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 06 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1059ms total)
T30A4 021:922 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1060ms total)
T30A4 021:924 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 7E 18 00 00  returns 0x04 (0001ms, 1061ms total)
T30A4 021:925 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 8D 08  returns 0x02 (0001ms, 1062ms total)
T30A4 021:927 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 42 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1064ms total)
T30A4 021:930 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 1065ms total)
T30A4 021:932 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 1F 83 01 5A  returns 0x04 (0001ms, 1066ms total)
T30A4 021:937 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 2B 00  returns 0x02 (0001ms, 1067ms total)
T3FE0 021:938 JLINK_IsHalted()  returns FALSE (0001ms, 1068ms total)
T3FE0 022:041 JLINK_IsHalted()  returns FALSE (0001ms, 1068ms total)
T3FE0 022:142 JLINK_IsHalted()  returns FALSE (0001ms, 1068ms total)
T3FE0 022:244 JLINK_IsHalted()  returns FALSE (0001ms, 1068ms total)
T3FE0 022:346 JLINK_IsHalted()  returns FALSE (0001ms, 1068ms total)
T30A4 022:447 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: E1 A8 6A 5E  returns 0x04 (0001ms, 1068ms total)
T30A4 022:449 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 2C 00  returns 0x02 (0001ms, 1069ms total)
T30A4 022:450 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 1070ms total)
T30A4 022:451 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1071ms total)
T30A4 022:453 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 19 00 00 00  returns 0x04 (0001ms, 1072ms total)
T30A4 022:454 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 19 00  returns 0x02 (0001ms, 1073ms total)
T30A4 022:456 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: E1 A8 6A 5E  returns 0x04 (0001ms, 1074ms total)
T30A4 022:457 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 2C 00  returns 0x02 (0001ms, 1075ms total)
T30A4 022:465 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 2C 00  returns 0x02 (0001ms, 1076ms total)
T30A4 022:468 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 19 00  returns 0x02 (0001ms, 1077ms total)
T30A4 022:476 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1078ms total)
T30A4 022:478 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 2C 00  returns 0x02 (0001ms, 1079ms total)
T30A4 022:481 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 06 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1081ms total)
T30A4 022:483 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1082ms total)
T30A4 022:484 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 7E 18 00 00  returns 0x04 (0001ms, 1083ms total)
T30A4 022:486 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 8D 08  returns 0x02 (0001ms, 1084ms total)
T30A4 022:488 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 42 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1085ms total)
T30A4 022:489 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 1086ms total)
T30A4 022:491 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: E1 A8 6A 5E  returns 0x04 (0001ms, 1087ms total)
T30A4 022:499 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 2C 00  returns 0x02 (0001ms, 1088ms total)
T3FE0 022:500 JLINK_IsHalted()  returns FALSE (0001ms, 1089ms total)
T3FE0 022:602 JLINK_IsHalted()  returns FALSE (0001ms, 1089ms total)
T3FE0 022:704 JLINK_IsHalted()  returns FALSE (0001ms, 1089ms total)
T3FE0 022:806 JLINK_IsHalted()  returns FALSE (0001ms, 1089ms total)
T3FE0 022:907 JLINK_IsHalted()  returns FALSE (0001ms, 1089ms total)
T30A4 023:009 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 07 F6 FF 62  returns 0x04 (0002ms, 1090ms total)
T30A4 023:011 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 2F 00  returns 0x02 (0001ms, 1091ms total)
T30A4 023:013 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 1092ms total)
T30A4 023:014 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1093ms total)
T30A4 023:016 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 1A 00 00 00  returns 0x04 (0001ms, 1094ms total)
T30A4 023:017 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 1A 00  returns 0x02 (0001ms, 1095ms total)
T30A4 023:018 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 07 F6 FF 62  returns 0x04 (0001ms, 1096ms total)
T30A4 023:019 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 2F 00  returns 0x02 (0001ms, 1097ms total)
T30A4 023:028 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 2F 00  returns 0x02 (0001ms, 1099ms total)
T30A4 023:031 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 1A 00  returns 0x02 (0001ms, 1100ms total)
T30A4 023:040 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1101ms total)
T30A4 023:043 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 2F 00  returns 0x02 (0001ms, 1102ms total)
T30A4 023:047 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 06 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1103ms total)
T30A4 023:048 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1104ms total)
T30A4 023:049 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 7E 18 00 00  returns 0x04 (0001ms, 1105ms total)
T30A4 023:050 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 8D 08  returns 0x02 (0001ms, 1106ms total)
T30A4 023:051 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 42 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1107ms total)
T30A4 023:052 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1108ms total)
T30A4 023:054 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 07 F6 FF 62  returns 0x04 (0001ms, 1110ms total)
T30A4 023:059 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 2F 00  returns 0x02 (0002ms, 1112ms total)
T3FE0 023:061 JLINK_IsHalted()  returns FALSE (0001ms, 1113ms total)
T3FE0 023:163 JLINK_IsHalted()  returns FALSE (0001ms, 1113ms total)
T3FE0 023:265 JLINK_IsHalted()  returns FALSE (0001ms, 1113ms total)
T3FE0 023:366 JLINK_IsHalted()  returns FALSE (0001ms, 1113ms total)
T3FE0 023:468 JLINK_IsHalted()  returns FALSE (0001ms, 1113ms total)
T30A4 023:570 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 17 0B DB 65  returns 0x04 (0001ms, 1113ms total)
T30A4 023:572 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 30 00  returns 0x02 (0002ms, 1115ms total)
T30A4 023:574 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0000ms, 1115ms total)
T30A4 023:574 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1116ms total)
T30A4 023:577 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 1B 00 00 00  returns 0x04 (0001ms, 1117ms total)
T30A4 023:578 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 1B 00  returns 0x02 (0001ms, 1118ms total)
T30A4 023:579 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 17 0B DB 65  returns 0x04 (0001ms, 1119ms total)
T30A4 023:580 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 30 00  returns 0x02 (0001ms, 1120ms total)
T30A4 023:589 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 30 00  returns 0x02 (0001ms, 1121ms total)
T30A4 023:592 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 1B 00  returns 0x02 (0001ms, 1122ms total)
T30A4 023:598 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1123ms total)
T30A4 023:601 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 30 00  returns 0x02 (0001ms, 1124ms total)
T30A4 023:606 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 06 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1125ms total)
T30A4 023:607 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1126ms total)
T30A4 023:608 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 7E 18 00 00  returns 0x04 (0001ms, 1127ms total)
T30A4 023:609 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 8D 08  returns 0x02 (0001ms, 1128ms total)
T30A4 023:610 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 42 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1130ms total)
T30A4 023:612 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1131ms total)
T30A4 023:613 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 17 0B DB 65  returns 0x04 (0001ms, 1132ms total)
T30A4 023:620 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 30 00  returns 0x02 (0002ms, 1134ms total)
T3FE0 023:622 JLINK_IsHalted()  returns FALSE (0001ms, 1135ms total)
T3FE0 023:724 JLINK_IsHalted()  returns FALSE (0001ms, 1135ms total)
T3FE0 023:826 JLINK_IsHalted()  returns FALSE (0001ms, 1135ms total)
T3FE0 023:927 JLINK_IsHalted()  returns FALSE (0000ms, 1134ms total)
T3FE0 024:028 JLINK_IsHalted()  returns FALSE (0000ms, 1134ms total)
T30A4 024:129 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: D5 05 E2 68  returns 0x04 (0001ms, 1135ms total)
T30A4 024:132 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 32 00  returns 0x02 (0000ms, 1135ms total)
T30A4 024:133 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 00 00  returns 0x02 (0001ms, 1136ms total)
T30A4 024:134 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1137ms total)
T30A4 024:136 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1138ms total)
T30A4 024:137 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 1C 00  returns 0x02 (0001ms, 1139ms total)
T30A4 024:139 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: D5 05 E2 68  returns 0x04 (0001ms, 1140ms total)
T30A4 024:140 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 32 00  returns 0x02 (0001ms, 1141ms total)
T30A4 024:145 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 32 00  returns 0x02 (0001ms, 1142ms total)
T30A4 024:149 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 1C 00  returns 0x02 (0001ms, 1143ms total)
T30A4 024:157 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0002ms, 1145ms total)
T30A4 024:160 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 32 00  returns 0x02 (0001ms, 1146ms total)
T30A4 024:164 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 07 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1148ms total)
T30A4 024:167 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1149ms total)
T30A4 024:169 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 78 18 00 00  returns 0x04 (0001ms, 1151ms total)
T30A4 024:171 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 8B 08  returns 0x02 (0001ms, 1152ms total)
T30A4 024:172 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 45 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1153ms total)
T30A4 024:175 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 1154ms total)
T30A4 024:177 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: D5 05 E2 68  returns 0x04 (0001ms, 1155ms total)
T30A4 024:183 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 32 00  returns 0x02 (0001ms, 1156ms total)
T3FE0 024:185 JLINK_IsHalted()  returns FALSE (0001ms, 1157ms total)
T3FE0 024:287 JLINK_IsHalted()  returns FALSE (0001ms, 1157ms total)
T3FE0 024:389 JLINK_IsHalted()  returns FALSE (0001ms, 1157ms total)
T3FE0 024:490 JLINK_IsHalted()  returns FALSE (0001ms, 1157ms total)
T3FE0 024:592 JLINK_IsHalted()  returns FALSE (0000ms, 1156ms total)
T30A4 024:694 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 97 6B 4B 6D  returns 0x04 (0000ms, 1156ms total)
T30A4 024:695 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 33 00  returns 0x02 (0000ms, 1156ms total)
T30A4 024:695 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 01 00  returns 0x02 (0001ms, 1157ms total)
T30A4 024:696 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1158ms total)
T30A4 024:697 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 1D 00 00 00  returns 0x04 (0001ms, 1159ms total)
T30A4 024:698 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 1D 00  returns 0x02 (0000ms, 1159ms total)
T30A4 024:699 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 97 6B 4B 6D  returns 0x04 (0000ms, 1159ms total)
T30A4 024:699 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 33 00  returns 0x02 (0001ms, 1160ms total)
T30A4 024:701 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 33 00  returns 0x02 (0001ms, 1161ms total)
T30A4 024:703 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 1D 00  returns 0x02 (0001ms, 1163ms total)
T30A4 024:705 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1164ms total)
T30A4 024:706 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 33 00  returns 0x02 (0001ms, 1165ms total)
T30A4 024:708 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 07 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1166ms total)
T30A4 024:709 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0000ms, 1166ms total)
T30A4 024:709 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 78 18 00 00  returns 0x04 (0001ms, 1167ms total)
T30A4 024:710 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 8B 08  returns 0x02 (0001ms, 1168ms total)
T30A4 024:711 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C5 CF C1 CF 41 00 42 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1169ms total)
T30A4 024:713 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1170ms total)
T30A4 024:714 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 97 6B 4B 6D  returns 0x04 (0001ms, 1171ms total)
T30A4 024:716 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 33 00  returns 0x02 (0000ms, 1171ms total)
T3FE0 024:716 JLINK_IsHalted()  returns FALSE (0001ms, 1172ms total)
T3FE0 024:818 JLINK_IsHalted()  returns FALSE (0001ms, 1172ms total)
T3FE0 024:920 JLINK_IsHalted()  returns FALSE (0001ms, 1172ms total)
T3FE0 025:022 JLINK_IsHalted()  returns FALSE (0001ms, 1172ms total)
T3FE0 025:124 JLINK_IsHalted()  returns FALSE (0001ms, 1172ms total)
T30A4 025:226 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: AF B5 E0 71  returns 0x04 (0001ms, 1172ms total)
T30A4 025:227 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 36 00  returns 0x02 (0002ms, 1174ms total)
T30A4 025:229 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1175ms total)
T30A4 025:230 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1176ms total)
T30A4 025:232 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 1E 00 00 00  returns 0x04 (0001ms, 1177ms total)
T30A4 025:234 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 1E 00  returns 0x02 (0001ms, 1178ms total)
T30A4 025:235 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: AF B5 E0 71  returns 0x04 (0001ms, 1179ms total)
T30A4 025:236 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 36 00  returns 0x02 (0002ms, 1181ms total)
T30A4 025:242 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 36 00  returns 0x02 (0001ms, 1182ms total)
T30A4 025:247 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 1E 00  returns 0x02 (0001ms, 1183ms total)
T30A4 025:254 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1184ms total)
T30A4 025:256 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 36 00  returns 0x02 (0001ms, 1185ms total)
T30A4 025:262 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 07 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1187ms total)
T30A4 025:263 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1188ms total)
T30A4 025:264 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 78 18 00 00  returns 0x04 (0002ms, 1190ms total)
T30A4 025:266 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 8B 08  returns 0x02 (0001ms, 1191ms total)
T30A4 025:267 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C5 CF C1 CF 41 00 42 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1192ms total)
T30A4 025:268 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1193ms total)
T30A4 025:270 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: AF B5 E0 71  returns 0x04 (0001ms, 1194ms total)
T30A4 025:280 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 36 00  returns 0x02 (0001ms, 1195ms total)
T3FE0 025:282 JLINK_IsHalted()  returns FALSE (0001ms, 1196ms total)
T3FE0 025:384 JLINK_IsHalted()  returns FALSE (0001ms, 1196ms total)
T3FE0 025:485 JLINK_IsHalted()  returns FALSE (0001ms, 1196ms total)
T3FE0 025:587 JLINK_IsHalted()  returns FALSE (0001ms, 1196ms total)
T3FE0 025:689 JLINK_IsHalted()  returns FALSE (0001ms, 1196ms total)
T30A4 025:790 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 1D E8 C2 77  returns 0x04 (0001ms, 1196ms total)
T30A4 025:792 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 39 00  returns 0x02 (0001ms, 1198ms total)
T30A4 025:793 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1199ms total)
T30A4 025:794 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1200ms total)
T30A4 025:796 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 20 00 00 00  returns 0x04 (0001ms, 1201ms total)
T30A4 025:797 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 20 00  returns 0x02 (0001ms, 1202ms total)
T30A4 025:798 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 1D E8 C2 77  returns 0x04 (0001ms, 1203ms total)
T30A4 025:799 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 39 00  returns 0x02 (0000ms, 1203ms total)
T30A4 025:803 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 39 00  returns 0x02 (0001ms, 1205ms total)
T30A4 025:805 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 20 00  returns 0x02 (0001ms, 1206ms total)
T30A4 025:809 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1207ms total)
T30A4 025:811 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 39 00  returns 0x02 (0001ms, 1208ms total)
T30A4 025:813 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 08 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1210ms total)
T30A4 025:815 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1211ms total)
T30A4 025:816 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 75 18 00 00  returns 0x04 (0001ms, 1212ms total)
T30A4 025:818 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 8A 08  returns 0x02 (0001ms, 1213ms total)
T30A4 025:819 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1214ms total)
T30A4 025:821 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 1215ms total)
T30A4 025:822 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 1D E8 C2 77  returns 0x04 (0001ms, 1216ms total)
T30A4 025:825 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 39 00  returns 0x02 (0001ms, 1217ms total)
T3FE0 025:827 JLINK_IsHalted()  returns FALSE (0000ms, 1217ms total)
T3FE0 025:929 JLINK_IsHalted()  returns FALSE (0001ms, 1218ms total)
T3FE0 026:031 JLINK_IsHalted()  returns FALSE (0001ms, 1218ms total)
T3FE0 026:133 JLINK_IsHalted()  returns FALSE (0001ms, 1218ms total)
T3FE0 026:234 JLINK_IsHalted()  returns FALSE (0001ms, 1218ms total)
T30A4 026:341 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 1D E8 C2 77  returns 0x04 (0001ms, 1218ms total)
T30A4 026:342 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 39 00  returns 0x02 (0002ms, 1220ms total)
T30A4 026:344 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1221ms total)
T30A4 026:345 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1222ms total)
T30A4 026:347 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 20 00 00 00  returns 0x04 (0001ms, 1223ms total)
T30A4 026:349 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 20 00  returns 0x02 (0001ms, 1224ms total)
T30A4 026:351 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 1D E8 C2 77  returns 0x04 (0001ms, 1225ms total)
T30A4 026:352 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 39 00  returns 0x02 (0001ms, 1226ms total)
T30A4 026:355 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 39 00  returns 0x02 (0001ms, 1227ms total)
T30A4 026:357 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 20 00  returns 0x02 (0001ms, 1228ms total)
T30A4 026:363 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1229ms total)
T30A4 026:365 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 39 00  returns 0x02 (0002ms, 1231ms total)
T30A4 026:370 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 08 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1233ms total)
T30A4 026:372 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1234ms total)
T30A4 026:373 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 75 18 00 00  returns 0x04 (0001ms, 1235ms total)
T30A4 026:375 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 8A 08  returns 0x02 (0001ms, 1236ms total)
T30A4 026:376 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1238ms total)
T30A4 026:378 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 1239ms total)
T30A4 026:379 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 1D E8 C2 77  returns 0x04 (0001ms, 1240ms total)
T30A4 026:383 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 3A 00  returns 0x02 (0001ms, 1242ms total)
T3FE0 026:385 JLINK_IsHalted()  returns FALSE (0001ms, 1243ms total)
T3FE0 026:487 JLINK_IsHalted()  returns FALSE (0001ms, 1243ms total)
T3FE0 026:589 JLINK_IsHalted()  returns FALSE (0001ms, 1243ms total)
T3FE0 026:691 JLINK_IsHalted()  returns FALSE (0000ms, 1242ms total)
T3FE0 026:793 JLINK_IsHalted()  returns FALSE (0001ms, 1243ms total)
T30A4 026:894 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: EB 41 33 7F  returns 0x04 (0001ms, 1243ms total)
T30A4 026:895 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 3C 00  returns 0x02 (0001ms, 1244ms total)
T30A4 026:898 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1245ms total)
T30A4 026:899 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1246ms total)
T30A4 026:901 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 22 00 00 00  returns 0x04 (0001ms, 1247ms total)
T30A4 026:902 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 22 00  returns 0x02 (0001ms, 1248ms total)
T30A4 026:904 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: EB 41 33 7F  returns 0x04 (0001ms, 1249ms total)
T30A4 026:905 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 3C 00  returns 0x02 (0000ms, 1249ms total)
T30A4 026:907 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 3C 00  returns 0x02 (0001ms, 1250ms total)
T30A4 026:909 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 22 00  returns 0x02 (0001ms, 1251ms total)
T30A4 026:913 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1252ms total)
T30A4 026:914 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 3C 00  returns 0x02 (0001ms, 1253ms total)
T30A4 026:918 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 08 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0010ms, 1263ms total)
T30A4 026:928 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1264ms total)
T30A4 026:929 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 75 18 00 00  returns 0x04 (0001ms, 1265ms total)
T30A4 026:930 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 8A 08  returns 0x02 (0001ms, 1266ms total)
T30A4 026:931 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 40 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1267ms total)
T30A4 026:933 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1268ms total)
T30A4 026:934 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: EB 41 33 7F  returns 0x04 (0001ms, 1269ms total)
T30A4 026:937 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 3C 00  returns 0x02 (0000ms, 1269ms total)
T3FE0 026:938 JLINK_IsHalted()  returns FALSE (0001ms, 1271ms total)
T3FE0 027:040 JLINK_IsHalted()  returns FALSE (0001ms, 1271ms total)
T3FE0 027:141 JLINK_IsHalted()  returns FALSE (0001ms, 1271ms total)
T3FE0 027:243 JLINK_IsHalted()  returns FALSE (0001ms, 1271ms total)
T3FE0 027:344 JLINK_IsHalted()  returns FALSE (0001ms, 1271ms total)
T30A4 027:446 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 8D 96 9C 83  returns 0x04 (0001ms, 1271ms total)
T30A4 027:447 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 3E 00  returns 0x02 (0002ms, 1273ms total)
T30A4 027:449 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1274ms total)
T30A4 027:450 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1275ms total)
T30A4 027:452 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 23 00 00 00  returns 0x04 (0001ms, 1276ms total)
T30A4 027:453 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 23 00  returns 0x02 (0001ms, 1277ms total)
T30A4 027:455 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 8D 96 9C 83  returns 0x04 (0001ms, 1278ms total)
T30A4 027:456 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 3E 00  returns 0x02 (0001ms, 1279ms total)
T30A4 027:464 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 3E 00  returns 0x02 (0001ms, 1280ms total)
T30A4 027:466 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 23 00  returns 0x02 (0002ms, 1282ms total)
T30A4 027:473 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1283ms total)
T30A4 027:476 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 3E 00  returns 0x02 (0001ms, 1284ms total)
T30A4 027:479 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 08 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1285ms total)
T30A4 027:480 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1286ms total)
T30A4 027:481 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 75 18 00 00  returns 0x04 (0001ms, 1287ms total)
T30A4 027:482 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 8A 08  returns 0x02 (0001ms, 1288ms total)
T30A4 027:483 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C1 CF C5 CF 45 00 41 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1289ms total)
T30A4 027:486 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1290ms total)
T30A4 027:488 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 8D 96 9C 83  returns 0x04 (0001ms, 1291ms total)
T30A4 027:492 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 3E 00  returns 0x02 (0001ms, 1292ms total)
T3FE0 027:494 JLINK_IsHalted()  returns FALSE (0001ms, 1293ms total)
T3FE0 027:596 JLINK_IsHalted()  returns FALSE (0001ms, 1293ms total)
T3FE0 027:697 JLINK_IsHalted()  returns FALSE (0001ms, 1293ms total)
T3FE0 027:799 JLINK_IsHalted()  returns FALSE (0001ms, 1293ms total)
T3FE0 027:901 JLINK_IsHalted()  returns FALSE (0001ms, 1293ms total)
T30A4 028:003 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 5D 6B A3 86  returns 0x04 (0001ms, 1293ms total)
T30A4 028:005 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 40 00  returns 0x02 (0001ms, 1294ms total)
T30A4 028:006 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1295ms total)
T30A4 028:007 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0002ms, 1297ms total)
T30A4 028:010 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 24 00 00 00  returns 0x04 (0001ms, 1298ms total)
T30A4 028:011 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 24 00  returns 0x02 (0001ms, 1299ms total)
T30A4 028:013 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 5D 6B A3 86  returns 0x04 (0001ms, 1301ms total)
T30A4 028:014 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 40 00  returns 0x02 (0001ms, 1302ms total)
T30A4 028:020 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 40 00  returns 0x02 (0002ms, 1304ms total)
T30A4 028:025 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 24 00  returns 0x02 (0001ms, 1305ms total)
T30A4 028:031 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1306ms total)
T30A4 028:033 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 40 00  returns 0x02 (0001ms, 1307ms total)
T30A4 028:037 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 22 34 12 11 11 09 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1308ms total)
T30A4 028:040 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 24 00 00 00  returns 0x04 (0001ms, 1310ms total)
T30A4 028:042 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 43 18 00 00  returns 0x04 (0001ms, 1311ms total)
T30A4 028:044 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 7B 08  returns 0x02 (0001ms, 1312ms total)
T30A4 028:045 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1314ms total)
T30A4 028:048 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 1315ms total)
T30A4 028:050 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 5D 6B A3 86  returns 0x04 (0001ms, 1316ms total)
T30A4 028:057 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 40 00  returns 0x02 (0001ms, 1317ms total)
T3FE0 028:058 JLINK_IsHalted()  returns FALSE (0001ms, 1318ms total)
T3FE0 028:161 JLINK_IsHalted()  returns FALSE (0001ms, 1318ms total)
T3FE0 028:262 JLINK_IsHalted()  returns FALSE (0001ms, 1318ms total)
T3FE0 028:363 JLINK_IsHalted()  returns FALSE (0001ms, 1318ms total)
T3FE0 028:465 JLINK_IsHalted()  returns FALSE (0001ms, 1318ms total)
T30A4 028:566 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 53 F6 0C 8B  returns 0x04 (0001ms, 1318ms total)
T30A4 028:567 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 41 00  returns 0x02 (0001ms, 1319ms total)
T30A4 028:570 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1320ms total)
T30A4 028:571 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1321ms total)
T30A4 028:573 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 25 00 00 00  returns 0x04 (0001ms, 1322ms total)
T30A4 028:574 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 25 00  returns 0x02 (0001ms, 1323ms total)
T30A4 028:575 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 53 F6 0C 8B  returns 0x04 (0001ms, 1324ms total)
T30A4 028:576 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 41 00  returns 0x02 (0001ms, 1325ms total)
T30A4 028:582 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 41 00  returns 0x02 (0001ms, 1326ms total)
T30A4 028:587 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 25 00  returns 0x02 (0001ms, 1327ms total)
T30A4 028:593 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0002ms, 1329ms total)
T30A4 028:596 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 41 00  returns 0x02 (0001ms, 1330ms total)
T30A4 028:601 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 22 34 12 11 11 09 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1331ms total)
T30A4 028:603 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 24 00 00 00  returns 0x04 (0001ms, 1332ms total)
T30A4 028:604 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 43 18 00 00  returns 0x04 (0002ms, 1334ms total)
T30A4 028:606 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 7B 08  returns 0x02 (0001ms, 1335ms total)
T30A4 028:608 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 40 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1337ms total)
T30A4 028:611 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 1338ms total)
T30A4 028:613 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 53 F6 0C 8B  returns 0x04 (0001ms, 1339ms total)
T30A4 028:622 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 41 00  returns 0x02 (0001ms, 1340ms total)
T3FE0 028:623 JLINK_IsHalted()  returns FALSE (0001ms, 1341ms total)
T3FE0 028:724 JLINK_IsHalted()  returns FALSE (0001ms, 1341ms total)
T3FE0 028:826 JLINK_IsHalted()  returns FALSE (0001ms, 1341ms total)
T3FE0 028:928 JLINK_IsHalted()  returns FALSE (0001ms, 1341ms total)
T3FE0 029:030 JLINK_IsHalted()  returns FALSE (0001ms, 1341ms total)
T30A4 029:132 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 25 80 A2 8F  returns 0x04 (0001ms, 1341ms total)
T30A4 029:135 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 44 00  returns 0x02 (0001ms, 1342ms total)
T30A4 029:138 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1343ms total)
T30A4 029:139 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1344ms total)
T30A4 029:141 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 26 00 00 00  returns 0x04 (0001ms, 1345ms total)
T30A4 029:142 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 26 00  returns 0x02 (0002ms, 1347ms total)
T30A4 029:145 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 25 80 A2 8F  returns 0x04 (0001ms, 1348ms total)
T30A4 029:146 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 44 00  returns 0x02 (0001ms, 1349ms total)
T30A4 029:154 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 44 00  returns 0x02 (0000ms, 1349ms total)
T30A4 029:156 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 26 00  returns 0x02 (0001ms, 1350ms total)
T30A4 029:164 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1351ms total)
T30A4 029:166 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 44 00  returns 0x02 (0001ms, 1352ms total)
T30A4 029:169 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 22 34 12 11 11 09 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1354ms total)
T30A4 029:171 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 24 00 00 00  returns 0x04 (0001ms, 1355ms total)
T30A4 029:172 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 43 18 00 00  returns 0x04 (0001ms, 1356ms total)
T30A4 029:173 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 7B 08  returns 0x02 (0001ms, 1357ms total)
T30A4 029:174 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 42 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1358ms total)
T30A4 029:176 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1359ms total)
T30A4 029:178 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 25 80 A2 8F  returns 0x04 (0001ms, 1360ms total)
T30A4 029:185 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 44 00  returns 0x02 (0001ms, 1361ms total)
T3FE0 029:187 JLINK_IsHalted()  returns FALSE (0001ms, 1362ms total)
T3FE0 029:289 JLINK_IsHalted()  returns FALSE (0001ms, 1362ms total)
T3FE0 029:391 JLINK_IsHalted()  returns FALSE (0001ms, 1362ms total)
T3FE0 029:493 JLINK_IsHalted()  returns FALSE (0001ms, 1362ms total)
T3FE0 029:595 JLINK_IsHalted()  returns FALSE (0001ms, 1362ms total)
T30A4 029:697 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 4D 56 7D 92  returns 0x04 (0001ms, 1362ms total)
T30A4 029:698 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 45 00  returns 0x02 (0001ms, 1363ms total)
T30A4 029:700 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1364ms total)
T30A4 029:701 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1365ms total)
T30A4 029:703 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 27 00 00 00  returns 0x04 (0002ms, 1367ms total)
T30A4 029:705 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 27 00  returns 0x02 (0001ms, 1368ms total)
T30A4 029:706 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 4D 56 7D 92  returns 0x04 (0000ms, 1368ms total)
T30A4 029:706 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 45 00  returns 0x02 (0001ms, 1369ms total)
T30A4 029:714 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 45 00  returns 0x02 (0001ms, 1370ms total)
T30A4 029:716 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 27 00  returns 0x02 (0002ms, 1372ms total)
T30A4 029:723 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1373ms total)
T30A4 029:726 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 45 00  returns 0x02 (0001ms, 1374ms total)
T30A4 029:730 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1A 34 12 11 11 0A 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1376ms total)
T30A4 029:733 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1377ms total)
T30A4 029:735 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: C7 18 00 00  returns 0x04 (0001ms, 1378ms total)
T30A4 029:737 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: A3 08  returns 0x02 (0002ms, 1380ms total)
T30A4 029:739 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1382ms total)
T30A4 029:742 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 1383ms total)
T30A4 029:745 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: EF C5 21 95  returns 0x04 (0001ms, 1384ms total)
T30A4 029:753 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 46 00  returns 0x02 (0001ms, 1385ms total)
T3FE0 029:755 JLINK_IsHalted()  returns FALSE (0001ms, 1386ms total)
T3FE0 029:857 JLINK_IsHalted()  returns FALSE (0001ms, 1386ms total)
T3FE0 029:959 JLINK_IsHalted()  returns FALSE (0001ms, 1386ms total)
T3FE0 030:061 JLINK_IsHalted()  returns FALSE (0001ms, 1386ms total)
T3FE0 030:163 JLINK_IsHalted()  returns FALSE (0001ms, 1386ms total)
T30A4 030:264 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: D7 4D 84 95  returns 0x04 (0001ms, 1386ms total)
T30A4 030:266 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 47 00  returns 0x02 (0001ms, 1387ms total)
T30A4 030:267 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0002ms, 1389ms total)
T30A4 030:269 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1390ms total)
T30A4 030:271 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 28 00 00 00  returns 0x04 (0001ms, 1391ms total)
T30A4 030:273 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 28 00  returns 0x02 (0001ms, 1392ms total)
T30A4 030:275 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: D7 4D 84 95  returns 0x04 (0001ms, 1393ms total)
T30A4 030:276 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 47 00  returns 0x02 (0001ms, 1394ms total)
T30A4 030:283 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 47 00  returns 0x02 (0001ms, 1395ms total)
T30A4 030:286 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 28 00  returns 0x02 (0001ms, 1396ms total)
T30A4 030:294 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1397ms total)
T30A4 030:296 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 47 00  returns 0x02 (0001ms, 1398ms total)
T30A4 030:300 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1A 34 12 11 11 0A 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1399ms total)
T30A4 030:301 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 1C 00 00 00  returns 0x04 (0002ms, 1401ms total)
T30A4 030:303 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: C7 18 00 00  returns 0x04 (0001ms, 1402ms total)
T30A4 030:305 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: A3 08  returns 0x02 (0001ms, 1403ms total)
T30A4 030:307 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C1 CF C5 CF 42 00 46 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1405ms total)
T30A4 030:311 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 1406ms total)
T30A4 030:313 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: D7 4D 84 95  returns 0x04 (0001ms, 1407ms total)
T30A4 030:317 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 47 00  returns 0x02 (0001ms, 1408ms total)
T3FE0 030:319 JLINK_IsHalted()  returns FALSE (0001ms, 1409ms total)
T3FE0 030:421 JLINK_IsHalted()  returns FALSE (0001ms, 1409ms total)
T3FE0 030:522 JLINK_IsHalted()  returns FALSE (0001ms, 1409ms total)
T3FE0 030:624 JLINK_IsHalted()  returns FALSE (0001ms, 1409ms total)
T3FE0 030:726 JLINK_IsHalted()  returns FALSE (0001ms, 1409ms total)
T30A4 030:828 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: F5 79 F4 9C  returns 0x04 (0001ms, 1409ms total)
T30A4 030:829 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 4A 00  returns 0x02 (0001ms, 1410ms total)
T30A4 030:830 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1411ms total)
T30A4 030:831 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0002ms, 1413ms total)
T30A4 030:834 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 2A 00 00 00  returns 0x04 (0001ms, 1414ms total)
T30A4 030:836 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 2A 00  returns 0x02 (0001ms, 1415ms total)
T30A4 030:838 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: F5 79 F4 9C  returns 0x04 (0001ms, 1416ms total)
T30A4 030:839 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 4A 00  returns 0x02 (0001ms, 1417ms total)
T30A4 030:844 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 4A 00  returns 0x02 (0001ms, 1418ms total)
T30A4 030:847 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 2A 00  returns 0x02 (0001ms, 1419ms total)
T30A4 030:866 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1420ms total)
T30A4 030:870 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 4A 00  returns 0x02 (0001ms, 1421ms total)
T30A4 030:878 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1A 34 12 11 11 0A 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1423ms total)
T30A4 030:880 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1424ms total)
T30A4 030:881 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: C7 18 00 00  returns 0x04 (0001ms, 1425ms total)
T30A4 030:882 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: A3 08  returns 0x02 (0001ms, 1426ms total)
T30A4 030:883 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C1 CF C5 CF 42 00 46 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1427ms total)
T30A4 030:884 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1428ms total)
T30A4 030:886 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: F5 79 F4 9C  returns 0x04 (0001ms, 1429ms total)
T30A4 030:893 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 4A 00  returns 0x02 (0001ms, 1430ms total)
T3FE0 030:895 JLINK_IsHalted()  returns FALSE (0001ms, 1431ms total)
T3FE0 030:996 JLINK_IsHalted()  returns FALSE (0001ms, 1431ms total)
T3FE0 031:099 JLINK_IsHalted()  returns FALSE (0000ms, 1430ms total)
T3FE0 031:201 JLINK_IsHalted()  returns FALSE (0001ms, 1431ms total)
T3FE0 031:303 JLINK_IsHalted()  returns FALSE (0001ms, 1431ms total)
T30A4 031:405 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: BF 16 5E A1  returns 0x04 (0001ms, 1431ms total)
T30A4 031:406 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 4C 00  returns 0x02 (0001ms, 1432ms total)
T30A4 031:408 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1433ms total)
T30A4 031:409 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1434ms total)
T30A4 031:413 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 2B 00 00 00  returns 0x04 (0001ms, 1435ms total)
T30A4 031:414 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 2B 00  returns 0x02 (0001ms, 1436ms total)
T30A4 031:415 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: BF 16 5E A1  returns 0x04 (0001ms, 1437ms total)
T30A4 031:416 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 4C 00  returns 0x02 (0001ms, 1438ms total)
T30A4 031:422 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 4C 00  returns 0x02 (0001ms, 1439ms total)
T30A4 031:425 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 2B 00  returns 0x02 (0001ms, 1440ms total)
T30A4 031:431 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1441ms total)
T30A4 031:434 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 4C 00  returns 0x02 (0001ms, 1442ms total)
T30A4 031:438 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1A 34 12 11 11 0A 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1443ms total)
T30A4 031:439 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1444ms total)
T30A4 031:440 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: C7 18 00 00  returns 0x04 (0001ms, 1445ms total)
T30A4 031:441 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: A3 08  returns 0x02 (0002ms, 1447ms total)
T30A4 031:443 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C1 CF C5 CF 45 00 45 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1448ms total)
T30A4 031:446 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1449ms total)
T30A4 031:448 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: BF 16 5E A1  returns 0x04 (0001ms, 1450ms total)
T30A4 031:454 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 4C 00  returns 0x02 (0001ms, 1451ms total)
T3FE0 031:455 JLINK_IsHalted()  returns FALSE (0001ms, 1452ms total)
T3FE0 031:557 JLINK_IsHalted()  returns FALSE (0001ms, 1452ms total)
T3FE0 031:660 JLINK_IsHalted()  returns FALSE (0001ms, 1452ms total)
T3FE0 031:761 JLINK_IsHalted()  returns FALSE (0001ms, 1452ms total)
T3FE0 031:863 JLINK_IsHalted()  returns FALSE (0001ms, 1452ms total)
T30A4 031:965 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 8F D0 64 A4  returns 0x04 (0001ms, 1452ms total)
T30A4 031:967 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 4E 00  returns 0x02 (0001ms, 1453ms total)
T30A4 031:968 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1454ms total)
T30A4 031:969 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0002ms, 1456ms total)
T30A4 031:972 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 2C 00 00 00  returns 0x04 (0001ms, 1457ms total)
T30A4 031:973 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 2C 00  returns 0x02 (0001ms, 1458ms total)
T30A4 031:976 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 8F D0 64 A4  returns 0x04 (0002ms, 1460ms total)
T30A4 031:978 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 4E 00  returns 0x02 (0001ms, 1461ms total)
T30A4 031:984 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 4E 00  returns 0x02 (0002ms, 1463ms total)
T30A4 031:987 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 2C 00  returns 0x02 (0001ms, 1464ms total)
T30A4 031:996 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1465ms total)
T30A4 031:998 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 4E 00  returns 0x02 (0002ms, 1467ms total)
T30A4 032:003 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 0B 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1468ms total)
T30A4 032:005 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1469ms total)
T30A4 032:008 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 6B 18 00 00  returns 0x04 (0001ms, 1470ms total)
T30A4 032:010 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 87 08  returns 0x02 (0001ms, 1471ms total)
T30A4 032:012 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C5 CF C1 CF 45 00 45 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1472ms total)
T30A4 032:015 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 1473ms total)
T30A4 032:017 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 8F D0 64 A4  returns 0x04 (0001ms, 1474ms total)
T30A4 032:021 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 4E 00  returns 0x02 (0001ms, 1475ms total)
T3FE0 032:025 JLINK_IsHalted()  returns FALSE (0001ms, 1476ms total)
T3FE0 032:127 JLINK_IsHalted()  returns FALSE (0001ms, 1476ms total)
T3FE0 032:229 JLINK_IsHalted()  returns FALSE (0000ms, 1475ms total)
T3FE0 032:329 JLINK_IsHalted()  returns FALSE (0001ms, 1476ms total)
T3FE0 032:431 JLINK_IsHalted()  returns FALSE (0001ms, 1476ms total)
T30A4 032:533 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 2D 78 CE A8  returns 0x04 (0001ms, 1476ms total)
T30A4 032:534 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 4F 00  returns 0x02 (0001ms, 1477ms total)
T30A4 032:536 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1478ms total)
T30A4 032:538 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1480ms total)
T30A4 032:540 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 2D 00 00 00  returns 0x04 (0001ms, 1481ms total)
T30A4 032:541 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 2D 00  returns 0x02 (0001ms, 1482ms total)
T30A4 032:542 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 2D 78 CE A8  returns 0x04 (0001ms, 1483ms total)
T30A4 032:544 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 4F 00  returns 0x02 (0001ms, 1484ms total)
T30A4 032:548 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 4F 00  returns 0x02 (0002ms, 1486ms total)
T30A4 032:551 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 2D 00  returns 0x02 (0001ms, 1487ms total)
T30A4 032:559 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1488ms total)
T30A4 032:561 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 4F 00  returns 0x02 (0001ms, 1489ms total)
T30A4 032:565 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 0B 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1491ms total)
T30A4 032:567 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1492ms total)
T30A4 032:568 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 6B 18 00 00  returns 0x04 (0002ms, 1494ms total)
T30A4 032:572 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 87 08  returns 0x02 (0001ms, 1495ms total)
T30A4 032:574 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C5 CF C1 CF 45 00 45 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1496ms total)
T30A4 032:575 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 1497ms total)
T30A4 032:577 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 2D 78 CE A8  returns 0x04 (0001ms, 1498ms total)
T30A4 032:581 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 4F 00  returns 0x02 (0001ms, 1499ms total)
T3FE0 032:583 JLINK_IsHalted()  returns FALSE (0001ms, 1500ms total)
T3FE0 032:684 JLINK_IsHalted()  returns FALSE (0001ms, 1500ms total)
T3FE0 032:786 JLINK_IsHalted()  returns FALSE (0001ms, 1500ms total)
T3FE0 032:887 JLINK_IsHalted()  returns FALSE (0001ms, 1500ms total)
T3FE0 032:989 JLINK_IsHalted()  returns FALSE (0001ms, 1500ms total)
T30A4 033:091 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: ED 4D 64 AD  returns 0x04 (0001ms, 1500ms total)
T30A4 033:092 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 52 00  returns 0x02 (0001ms, 1501ms total)
T30A4 033:094 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1502ms total)
T30A4 033:095 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1503ms total)
T30A4 033:097 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 2E 00 00 00  returns 0x04 (0001ms, 1504ms total)
T30A4 033:099 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 2E 00  returns 0x02 (0001ms, 1505ms total)
T30A4 033:100 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: ED 4D 64 AD  returns 0x04 (0001ms, 1506ms total)
T30A4 033:101 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 52 00  returns 0x02 (0001ms, 1507ms total)
T30A4 033:107 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 52 00  returns 0x02 (0001ms, 1508ms total)
T30A4 033:110 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 2E 00  returns 0x02 (0001ms, 1509ms total)
T30A4 033:117 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1510ms total)
T30A4 033:120 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 52 00  returns 0x02 (0002ms, 1512ms total)
T30A4 033:124 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 0B 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1513ms total)
T30A4 033:125 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1514ms total)
T30A4 033:126 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 6B 18 00 00  returns 0x04 (0001ms, 1515ms total)
T30A4 033:127 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 87 08  returns 0x02 (0001ms, 1516ms total)
T30A4 033:128 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C5 CF C1 CF 41 00 42 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1517ms total)
T30A4 033:131 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1518ms total)
T30A4 033:134 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: ED 4D 64 AD  returns 0x04 (0001ms, 1519ms total)
T30A4 033:139 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 52 00  returns 0x02 (0001ms, 1520ms total)
T3FE0 033:140 JLINK_IsHalted()  returns FALSE (0001ms, 1521ms total)
T3FE0 033:242 JLINK_IsHalted()  returns FALSE (0001ms, 1521ms total)
T3FE0 033:343 JLINK_IsHalted()  returns FALSE (0001ms, 1521ms total)
T3FE0 033:445 JLINK_IsHalted()  returns FALSE (0001ms, 1521ms total)
T3FE0 033:546 JLINK_IsHalted()  returns FALSE (0001ms, 1521ms total)
T30A4 033:648 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 63 DC 3E B0  returns 0x04 (0001ms, 1521ms total)
T30A4 033:650 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 53 00  returns 0x02 (0001ms, 1522ms total)
T30A4 033:651 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1523ms total)
T30A4 033:652 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1524ms total)
T30A4 033:654 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 2F 00 00 00  returns 0x04 (0001ms, 1525ms total)
T30A4 033:655 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 2F 00  returns 0x02 (0001ms, 1526ms total)
T30A4 033:656 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 63 DC 3E B0  returns 0x04 (0001ms, 1527ms total)
T30A4 033:657 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 53 00  returns 0x02 (0001ms, 1528ms total)
T30A4 033:666 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 53 00  returns 0x02 (0001ms, 1529ms total)
T30A4 033:669 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 2F 00  returns 0x02 (0001ms, 1530ms total)
T30A4 033:675 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1531ms total)
T30A4 033:677 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 53 00  returns 0x02 (0001ms, 1532ms total)
T30A4 033:681 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 0B 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1533ms total)
T30A4 033:682 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1534ms total)
T30A4 033:683 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 6B 18 00 00  returns 0x04 (0001ms, 1535ms total)
T30A4 033:684 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 87 08  returns 0x02 (0001ms, 1536ms total)
T30A4 033:685 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C1 CF C5 CF 44 00 45 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1537ms total)
T30A4 033:688 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1538ms total)
T30A4 033:690 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 63 DC 3E B0  returns 0x04 (0001ms, 1539ms total)
T30A4 033:697 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 53 00  returns 0x02 (0001ms, 1540ms total)
T3FE0 033:698 JLINK_IsHalted()  returns FALSE (0001ms, 1541ms total)
T3FE0 033:800 JLINK_IsHalted()  returns FALSE (0001ms, 1541ms total)
T3FE0 033:901 JLINK_IsHalted()  returns FALSE (0001ms, 1541ms total)
T3FE0 034:003 JLINK_IsHalted()  returns FALSE (0001ms, 1541ms total)
T3FE0 034:105 JLINK_IsHalted()  returns FALSE (0001ms, 1541ms total)
T30A4 034:206 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 87 82 45 B3  returns 0x04 (0001ms, 1541ms total)
T30A4 034:207 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 55 00  returns 0x02 (0002ms, 1543ms total)
T30A4 034:210 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1544ms total)
T30A4 034:211 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1545ms total)
T30A4 034:214 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 30 00 00 00  returns 0x04 (0001ms, 1546ms total)
T30A4 034:215 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 30 00  returns 0x02 (0001ms, 1547ms total)
T30A4 034:217 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 87 82 45 B3  returns 0x04 (0001ms, 1548ms total)
T30A4 034:218 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 55 00  returns 0x02 (0001ms, 1549ms total)
T30A4 034:224 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 55 00  returns 0x02 (0001ms, 1550ms total)
T30A4 034:227 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 30 00  returns 0x02 (0001ms, 1551ms total)
T30A4 034:233 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1552ms total)
T30A4 034:235 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 55 00  returns 0x02 (0001ms, 1553ms total)
T30A4 034:239 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 0C 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1556ms total)
T30A4 034:242 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1557ms total)
T30A4 034:243 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 67 18 00 00  returns 0x04 (0001ms, 1558ms total)
T30A4 034:247 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 86 08  returns 0x02 (0001ms, 1559ms total)
T30A4 034:249 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1560ms total)
T30A4 034:251 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 1561ms total)
T30A4 034:253 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 87 82 45 B3  returns 0x04 (0001ms, 1562ms total)
T30A4 034:257 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 55 00  returns 0x02 (0002ms, 1564ms total)
T3FE0 034:260 JLINK_IsHalted()  returns FALSE (0001ms, 1565ms total)
T3FE0 034:362 JLINK_IsHalted()  returns FALSE (0001ms, 1565ms total)
T3FE0 034:463 JLINK_IsHalted()  returns FALSE (0001ms, 1565ms total)
T3FE0 034:565 JLINK_IsHalted()  returns FALSE (0001ms, 1565ms total)
T3FE0 034:666 JLINK_IsHalted()  returns FALSE (0001ms, 1565ms total)
T30A4 034:768 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 19 4A 53 BA  returns 0x04 (0001ms, 1565ms total)
T30A4 034:769 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 57 00  returns 0x02 (0002ms, 1567ms total)
T30A4 034:771 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1568ms total)
T30A4 034:772 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1569ms total)
T30A4 034:775 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 32 00 00 00  returns 0x04 (0001ms, 1570ms total)
T30A4 034:776 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 32 00  returns 0x02 (0001ms, 1571ms total)
T30A4 034:778 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 19 4A 53 BA  returns 0x04 (0000ms, 1571ms total)
T30A4 034:779 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 57 00  returns 0x02 (0001ms, 1573ms total)
T30A4 034:784 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 57 00  returns 0x02 (0001ms, 1574ms total)
T30A4 034:787 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 32 00  returns 0x02 (0002ms, 1576ms total)
T30A4 034:796 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1577ms total)
T30A4 034:798 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 58 00  returns 0x02 (0002ms, 1579ms total)
T30A4 034:802 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 0C 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1581ms total)
T30A4 034:804 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1582ms total)
T30A4 034:805 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 67 18 00 00  returns 0x04 (0001ms, 1583ms total)
T30A4 034:807 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 86 08  returns 0x02 (0001ms, 1584ms total)
T30A4 034:809 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 42 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1586ms total)
T30A4 034:812 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1587ms total)
T30A4 034:815 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: F7 DB B5 BA  returns 0x04 (0001ms, 1588ms total)
T30A4 034:823 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 58 00  returns 0x02 (0001ms, 1589ms total)
T3FE0 034:825 JLINK_IsHalted()  returns FALSE (0001ms, 1590ms total)
T3FE0 034:926 JLINK_IsHalted()  returns FALSE (0001ms, 1590ms total)
T3FE0 035:028 JLINK_IsHalted()  returns FALSE (0001ms, 1590ms total)
T3FE0 035:129 JLINK_IsHalted()  returns FALSE (0000ms, 1589ms total)
T3FE0 035:231 JLINK_IsHalted()  returns FALSE (0000ms, 1589ms total)
T30A4 035:332 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: CF 34 45 BC  returns 0x04 (0001ms, 1590ms total)
T30A4 035:333 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 59 00  returns 0x02 (0001ms, 1591ms total)
T30A4 035:336 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1592ms total)
T30A4 035:337 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1593ms total)
T30A4 035:339 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 32 00 00 00  returns 0x04 (0001ms, 1594ms total)
T30A4 035:340 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 32 00  returns 0x02 (0001ms, 1595ms total)
T30A4 035:341 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: CF 34 45 BC  returns 0x04 (0001ms, 1596ms total)
T30A4 035:342 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 59 00  returns 0x02 (0002ms, 1598ms total)
T30A4 035:347 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 59 00  returns 0x02 (0001ms, 1599ms total)
T30A4 035:350 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 32 00  returns 0x02 (0001ms, 1600ms total)
T30A4 035:355 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1601ms total)
T30A4 035:357 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 59 00  returns 0x02 (0001ms, 1602ms total)
T30A4 035:360 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 0C 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1604ms total)
T30A4 035:362 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1605ms total)
T30A4 035:363 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 67 18 00 00  returns 0x04 (0001ms, 1606ms total)
T30A4 035:364 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 86 08  returns 0x02 (0001ms, 1607ms total)
T30A4 035:365 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 42 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1608ms total)
T30A4 035:366 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1609ms total)
T30A4 035:368 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: CF 34 45 BC  returns 0x04 (0001ms, 1610ms total)
T30A4 035:374 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 59 00  returns 0x02 (0000ms, 1610ms total)
T3FE0 035:375 JLINK_IsHalted()  returns FALSE (0001ms, 1611ms total)
T3FE0 035:477 JLINK_IsHalted()  returns FALSE (0001ms, 1611ms total)
T3FE0 035:578 JLINK_IsHalted()  returns FALSE (0000ms, 1610ms total)
T3FE0 035:680 JLINK_IsHalted()  returns FALSE (0001ms, 1611ms total)
T3FE0 035:781 JLINK_IsHalted()  returns FALSE (0001ms, 1611ms total)
T30A4 035:883 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 8B 35 26 C2  returns 0x04 (0001ms, 1611ms total)
T30A4 035:884 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 5C 00  returns 0x02 (0001ms, 1612ms total)
T30A4 035:885 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1613ms total)
T30A4 035:886 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1614ms total)
T30A4 035:888 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 34 00 00 00  returns 0x04 (0002ms, 1616ms total)
T30A4 035:890 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 34 00  returns 0x02 (0001ms, 1617ms total)
T30A4 035:891 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 8B 35 26 C2  returns 0x04 (0001ms, 1618ms total)
T30A4 035:892 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 5C 00  returns 0x02 (0001ms, 1619ms total)
T30A4 035:898 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 5C 00  returns 0x02 (0001ms, 1620ms total)
T30A4 035:900 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 34 00  returns 0x02 (0001ms, 1621ms total)
T30A4 035:906 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1622ms total)
T30A4 035:908 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 5C 00  returns 0x02 (0001ms, 1623ms total)
T30A4 035:911 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1A 34 12 11 11 0D 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1625ms total)
T30A4 035:914 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1626ms total)
T30A4 035:916 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: BD 18 00 00  returns 0x04 (0001ms, 1627ms total)
T30A4 035:918 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: A0 08  returns 0x02 (0001ms, 1628ms total)
T30A4 035:919 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1630ms total)
T30A4 035:921 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 1631ms total)
T30A4 035:924 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 8B 35 26 C2  returns 0x04 (0001ms, 1632ms total)
T30A4 035:928 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 5C 00  returns 0x02 (0001ms, 1633ms total)
T3FE0 035:930 JLINK_IsHalted()  returns FALSE (0001ms, 1634ms total)
T3FE0 036:031 JLINK_IsHalted()  returns FALSE (0001ms, 1634ms total)
T3FE0 036:132 JLINK_IsHalted()  returns FALSE (0001ms, 1634ms total)
T3FE0 036:234 JLINK_IsHalted()  returns FALSE (0001ms, 1634ms total)
T3FE0 036:335 JLINK_IsHalted()  returns FALSE (0000ms, 1633ms total)
T30A4 036:437 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: E3 E8 8F C6  returns 0x04 (0001ms, 1634ms total)
T30A4 036:439 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 5D 00  returns 0x02 (0001ms, 1635ms total)
T30A4 036:440 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1636ms total)
T30A4 036:441 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1637ms total)
T30A4 036:443 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 35 00 00 00  returns 0x04 (0001ms, 1638ms total)
T30A4 036:445 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 35 00  returns 0x02 (0001ms, 1639ms total)
T30A4 036:447 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: E3 E8 8F C6  returns 0x04 (0001ms, 1640ms total)
T30A4 036:448 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 5D 00  returns 0x02 (0001ms, 1641ms total)
T30A4 036:456 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 5D 00  returns 0x02 (0001ms, 1642ms total)
T30A4 036:460 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 35 00  returns 0x02 (0010ms, 1652ms total)
T30A4 036:477 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1653ms total)
T30A4 036:479 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 5D 00  returns 0x02 (0002ms, 1655ms total)
T30A4 036:483 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1A 34 12 11 11 0D 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1656ms total)
T30A4 036:485 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1657ms total)
T30A4 036:487 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: BD 18 00 00  returns 0x04 (0001ms, 1658ms total)
T30A4 036:489 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: A0 08  returns 0x02 (0001ms, 1659ms total)
T30A4 036:491 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C1 CF C5 CF 42 00 45 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1660ms total)
T30A4 036:494 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 1661ms total)
T30A4 036:496 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: E3 E8 8F C6  returns 0x04 (0001ms, 1662ms total)
T30A4 036:500 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 5D 00  returns 0x02 (0002ms, 1664ms total)
T3FE0 036:502 JLINK_IsHalted()  returns FALSE (0001ms, 1665ms total)
T3FE0 036:603 JLINK_IsHalted()  returns FALSE (0000ms, 1664ms total)
T3FE0 036:705 JLINK_IsHalted()  returns FALSE (0001ms, 1665ms total)
T3FE0 036:807 JLINK_IsHalted()  returns FALSE (0001ms, 1665ms total)
T3FE0 036:908 JLINK_IsHalted()  returns FALSE (0001ms, 1665ms total)
T30A4 037:010 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 1B 18 26 CB  returns 0x04 (0001ms, 1665ms total)
T30A4 037:012 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 60 00  returns 0x02 (0001ms, 1666ms total)
T30A4 037:013 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 02 00  returns 0x02 (0001ms, 1667ms total)
T30A4 037:014 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1668ms total)
T30A4 037:016 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 36 00 00 00  returns 0x04 (0001ms, 1669ms total)
T30A4 037:017 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 36 00  returns 0x02 (0001ms, 1670ms total)
T30A4 037:019 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 1B 18 26 CB  returns 0x04 (0001ms, 1671ms total)
T30A4 037:020 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 60 00  returns 0x02 (0001ms, 1672ms total)
T30A4 037:028 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 60 00  returns 0x02 (0001ms, 1673ms total)
T30A4 037:031 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 36 00  returns 0x02 (0001ms, 1674ms total)
T30A4 037:038 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1675ms total)
T30A4 037:040 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 60 00  returns 0x02 (0002ms, 1677ms total)
T30A4 037:045 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1A 34 12 11 11 0D 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1678ms total)
T30A4 037:046 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1679ms total)
T30A4 037:047 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: BD 18 00 00  returns 0x04 (0001ms, 1680ms total)
T30A4 037:048 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: A0 08  returns 0x02 (0002ms, 1682ms total)
T30A4 037:050 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C1 CF C5 CF 42 00 45 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1683ms total)
T30A4 037:051 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1684ms total)
T30A4 037:052 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 1B 18 26 CB  returns 0x04 (0003ms, 1687ms total)
T30A4 037:059 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 60 00  returns 0x02 (0001ms, 1688ms total)
T3FE0 037:061 JLINK_IsHalted()  returns FALSE (0001ms, 1689ms total)
T3FE0 037:163 JLINK_IsHalted()  returns FALSE (0001ms, 1689ms total)
T3FE0 037:265 JLINK_IsHalted()  returns FALSE (0001ms, 1689ms total)
T3FE0 037:367 JLINK_IsHalted()  returns FALSE (0001ms, 1689ms total)
T3FE0 037:469 JLINK_IsHalted()  returns FALSE (0001ms, 1689ms total)
T30A4 037:571 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 59 81 00 CE  returns 0x04 (0002ms, 1690ms total)
T30A4 037:573 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 61 00  returns 0x02 (0001ms, 1691ms total)
T30A4 037:575 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 03 00  returns 0x02 (0000ms, 1691ms total)
T30A4 037:576 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1693ms total)
T30A4 037:578 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 37 00 00 00  returns 0x04 (0001ms, 1694ms total)
T30A4 037:579 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 37 00  returns 0x02 (0001ms, 1695ms total)
T30A4 037:580 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 59 81 00 CE  returns 0x04 (0001ms, 1696ms total)
T30A4 037:581 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 61 00  returns 0x02 (0001ms, 1697ms total)
T30A4 037:589 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 61 00  returns 0x02 (0001ms, 1698ms total)
T30A4 037:592 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 37 00  returns 0x02 (0001ms, 1699ms total)
T30A4 037:598 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1700ms total)
T30A4 037:601 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 61 00  returns 0x02 (0002ms, 1702ms total)
T30A4 037:605 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1A 34 12 11 11 0D 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1704ms total)
T30A4 037:607 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1705ms total)
T30A4 037:608 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: BD 18 00 00  returns 0x04 (0000ms, 1705ms total)
T30A4 037:608 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: A0 08  returns 0x02 (0001ms, 1706ms total)
T30A4 037:609 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 43 00 42 00 45 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1708ms total)
T30A4 037:613 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1709ms total)
T30A4 037:615 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 59 81 00 CE  returns 0x04 (0001ms, 1710ms total)
T30A4 037:619 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 61 00  returns 0x02 (0001ms, 1711ms total)
T3FE0 037:621 JLINK_IsHalted()  returns FALSE (0001ms, 1712ms total)
T3FE0 037:723 JLINK_IsHalted()  returns FALSE (0001ms, 1712ms total)
T3FE0 037:825 JLINK_IsHalted()  returns FALSE (0001ms, 1712ms total)
T3FE0 037:927 JLINK_IsHalted()  returns FALSE (0001ms, 1712ms total)
T3FE0 038:029 JLINK_IsHalted()  returns FALSE (0001ms, 1712ms total)
T30A4 038:130 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 51 17 07 D1  returns 0x04 (0001ms, 1712ms total)
T30A4 038:131 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 63 00  returns 0x02 (0001ms, 1713ms total)
T30A4 038:133 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 03 00  returns 0x02 (0001ms, 1714ms total)
T30A4 038:134 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1715ms total)
T30A4 038:136 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 38 00 00 00  returns 0x04 (0001ms, 1716ms total)
T30A4 038:137 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 38 00  returns 0x02 (0001ms, 1717ms total)
T30A4 038:139 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 51 17 07 D1  returns 0x04 (0001ms, 1718ms total)
T30A4 038:140 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 63 00  returns 0x02 (0001ms, 1719ms total)
T30A4 038:145 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 63 00  returns 0x02 (0001ms, 1720ms total)
T30A4 038:149 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 38 00  returns 0x02 (0001ms, 1721ms total)
T30A4 038:156 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1722ms total)
T30A4 038:158 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 63 00  returns 0x02 (0001ms, 1723ms total)
T30A4 038:164 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 0E 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1725ms total)
T30A4 038:167 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1726ms total)
T30A4 038:169 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 5E 18 00 00  returns 0x04 (0001ms, 1727ms total)
T30A4 038:171 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 83 08  returns 0x02 (0001ms, 1728ms total)
T30A4 038:172 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C1 CF C5 CF 43 00 45 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1730ms total)
T30A4 038:176 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 1731ms total)
T30A4 038:177 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 51 17 07 D1  returns 0x04 (0001ms, 1732ms total)
T30A4 038:182 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 63 00  returns 0x02 (0001ms, 1733ms total)
T3FE0 038:184 JLINK_IsHalted()  returns FALSE (0001ms, 1734ms total)
T3FE0 038:286 JLINK_IsHalted()  returns FALSE (0001ms, 1734ms total)
T3FE0 038:387 JLINK_IsHalted()  returns FALSE (0001ms, 1734ms total)
T3FE0 038:489 JLINK_IsHalted()  returns FALSE (0001ms, 1734ms total)
T3FE0 038:591 JLINK_IsHalted()  returns FALSE (0001ms, 1734ms total)
T30A4 038:693 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 9B C7 70 D5  returns 0x04 (0001ms, 1734ms total)
T30A4 038:694 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 64 00  returns 0x02 (0001ms, 1735ms total)
T30A4 038:697 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 03 00  returns 0x02 (0001ms, 1736ms total)
T30A4 038:698 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1737ms total)
T30A4 038:700 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 39 00 00 00  returns 0x04 (0001ms, 1738ms total)
T30A4 038:701 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 39 00  returns 0x02 (0002ms, 1740ms total)
T30A4 038:703 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 9B C7 70 D5  returns 0x04 (0001ms, 1741ms total)
T30A4 038:704 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 64 00  returns 0x02 (0001ms, 1742ms total)
T30A4 038:710 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 64 00  returns 0x02 (0001ms, 1743ms total)
T30A4 038:714 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 39 00  returns 0x02 (0001ms, 1745ms total)
T30A4 038:721 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1746ms total)
T30A4 038:723 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 64 00  returns 0x02 (0002ms, 1748ms total)
T30A4 038:728 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 0E 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1750ms total)
T30A4 038:730 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1751ms total)
T30A4 038:732 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 5E 18 00 00  returns 0x04 (0001ms, 1752ms total)
T30A4 038:733 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 83 08  returns 0x02 (0001ms, 1753ms total)
T30A4 038:735 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C1 CF C5 CF 43 00 45 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1756ms total)
T30A4 038:737 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1757ms total)
T30A4 038:739 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: D9 7D 14 D8  returns 0x04 (0002ms, 1759ms total)
T30A4 038:746 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 65 00  returns 0x02 (0001ms, 1760ms total)
T3FE0 038:748 JLINK_IsHalted()  returns FALSE (0001ms, 1761ms total)
T3FE0 038:849 JLINK_IsHalted()  returns FALSE (0001ms, 1761ms total)
T3FE0 038:950 JLINK_IsHalted()  returns FALSE (0001ms, 1761ms total)
T3FE0 039:052 JLINK_IsHalted()  returns FALSE (0001ms, 1761ms total)
T3FE0 039:153 JLINK_IsHalted()  returns FALSE (0001ms, 1761ms total)
T30A4 039:255 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: BF 28 07 DA  returns 0x04 (0001ms, 1761ms total)
T30A4 039:257 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 67 00  returns 0x02 (0001ms, 1762ms total)
T30A4 039:259 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 03 00  returns 0x02 (0001ms, 1763ms total)
T30A4 039:260 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1764ms total)
T30A4 039:262 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 3A 00 00 00  returns 0x04 (0001ms, 1765ms total)
T30A4 039:263 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 3A 00  returns 0x02 (0001ms, 1766ms total)
T30A4 039:265 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: BF 28 07 DA  returns 0x04 (0001ms, 1767ms total)
T30A4 039:266 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 67 00  returns 0x02 (0001ms, 1768ms total)
T30A4 039:272 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 67 00  returns 0x02 (0002ms, 1770ms total)
T30A4 039:277 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 3A 00  returns 0x02 (0002ms, 1772ms total)
T30A4 039:285 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1773ms total)
T30A4 039:289 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 67 00  returns 0x02 (0001ms, 1774ms total)
T30A4 039:295 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 0E 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1775ms total)
T30A4 039:296 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1776ms total)
T30A4 039:298 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 5E 18 00 00  returns 0x04 (0000ms, 1777ms total)
T30A4 039:299 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 83 08  returns 0x02 (0001ms, 1779ms total)
T30A4 039:300 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C5 CF C1 CF 45 00 43 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1780ms total)
T30A4 039:303 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1781ms total)
T30A4 039:305 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: BF 28 07 DA  returns 0x04 (0001ms, 1782ms total)
T30A4 039:313 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 67 00  returns 0x02 (0002ms, 1784ms total)
T3FE0 039:315 JLINK_IsHalted()  returns FALSE (0001ms, 1785ms total)
T3FE0 039:417 JLINK_IsHalted()  returns FALSE (0001ms, 1785ms total)
T3FE0 039:519 JLINK_IsHalted()  returns FALSE (0001ms, 1785ms total)
T3FE0 039:621 JLINK_IsHalted()  returns FALSE (0001ms, 1785ms total)
T3FE0 039:723 JLINK_IsHalted()  returns FALSE (0001ms, 1785ms total)
T30A4 039:825 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 41 C9 E7 DF  returns 0x04 (0001ms, 1785ms total)
T30A4 039:827 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 6A 00  returns 0x02 (0001ms, 1786ms total)
T30A4 039:828 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 03 00  returns 0x02 (0001ms, 1787ms total)
T30A4 039:829 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1788ms total)
T30A4 039:831 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 3C 00 00 00  returns 0x04 (0001ms, 1789ms total)
T30A4 039:832 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 3C 00  returns 0x02 (0001ms, 1790ms total)
T30A4 039:833 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 41 C9 E7 DF  returns 0x04 (0001ms, 1791ms total)
T30A4 039:835 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 6A 00  returns 0x02 (0002ms, 1793ms total)
T30A4 039:843 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 6A 00  returns 0x02 (0001ms, 1794ms total)
T30A4 039:845 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 3C 00  returns 0x02 (0002ms, 1796ms total)
T30A4 039:854 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1797ms total)
T30A4 039:857 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 6A 00  returns 0x02 (0001ms, 1798ms total)
T30A4 039:860 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 0F 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1799ms total)
T30A4 039:863 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1800ms total)
T30A4 039:864 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 5A 18 00 00  returns 0x04 (0001ms, 1801ms total)
T30A4 039:866 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 82 08  returns 0x02 (0001ms, 1802ms total)
T30A4 039:870 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1803ms total)
T30A4 039:872 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 1804ms total)
T30A4 039:874 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 41 C9 E7 DF  returns 0x04 (0001ms, 1805ms total)
T30A4 039:879 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 6A 00  returns 0x02 (0001ms, 1806ms total)
T3FE0 039:881 JLINK_IsHalted()  returns FALSE (0001ms, 1807ms total)
T3FE0 039:983 JLINK_IsHalted()  returns FALSE (0001ms, 1807ms total)
T3FE0 040:085 JLINK_IsHalted()  returns FALSE (0001ms, 1807ms total)
T3FE0 040:187 JLINK_IsHalted()  returns FALSE (0001ms, 1807ms total)
T3FE0 040:289 JLINK_IsHalted()  returns FALSE (0001ms, 1807ms total)
T30A4 040:390 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: EB 87 51 E4  returns 0x04 (0001ms, 1807ms total)
T30A4 040:391 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 6B 00  returns 0x02 (0001ms, 1808ms total)
T30A4 040:392 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 03 00  returns 0x02 (0001ms, 1809ms total)
T30A4 040:393 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1810ms total)
T30A4 040:395 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 3D 00 00 00  returns 0x04 (0001ms, 1811ms total)
T30A4 040:396 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 3D 00  returns 0x02 (0001ms, 1812ms total)
T30A4 040:398 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: EB 87 51 E4  returns 0x04 (0000ms, 1812ms total)
T30A4 040:399 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 6B 00  returns 0x02 (0000ms, 1812ms total)
T30A4 040:403 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 6B 00  returns 0x02 (0001ms, 1813ms total)
T30A4 040:405 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 3D 00  returns 0x02 (0001ms, 1814ms total)
T30A4 040:408 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1815ms total)
T30A4 040:409 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 6B 00  returns 0x02 (0001ms, 1816ms total)
T30A4 040:412 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 0F 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1817ms total)
T30A4 040:413 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1818ms total)
T30A4 040:414 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 5A 18 00 00  returns 0x04 (0000ms, 1818ms total)
T30A4 040:415 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 82 08  returns 0x02 (0001ms, 1820ms total)
T30A4 040:416 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C5 CF C1 CF 45 00 42 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1821ms total)
T30A4 040:418 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 1822ms total)
T30A4 040:419 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: EB 87 51 E4  returns 0x04 (0001ms, 1823ms total)
T30A4 040:422 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 6B 00  returns 0x02 (0001ms, 1824ms total)
T3FE0 040:423 JLINK_IsHalted()  returns FALSE (0001ms, 1825ms total)
T3FE0 040:526 JLINK_IsHalted()  returns FALSE (0001ms, 1825ms total)
T3FE0 040:627 JLINK_IsHalted()  returns FALSE (0001ms, 1825ms total)
T3FE0 040:729 JLINK_IsHalted()  returns FALSE (0000ms, 1824ms total)
T3FE0 040:831 JLINK_IsHalted()  returns FALSE (0001ms, 1825ms total)
T30A4 040:934 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: C5 22 58 E7  returns 0x04 (0001ms, 1825ms total)
T30A4 040:936 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 6D 00  returns 0x02 (0001ms, 1826ms total)
T30A4 040:937 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 03 00  returns 0x02 (0001ms, 1827ms total)
T30A4 040:938 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0002ms, 1829ms total)
T30A4 040:941 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 3E 00 00 00  returns 0x04 (0001ms, 1830ms total)
T30A4 040:942 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 3E 00  returns 0x02 (0001ms, 1831ms total)
T30A4 040:943 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: C5 22 58 E7  returns 0x04 (0001ms, 1832ms total)
T30A4 040:945 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 6D 00  returns 0x02 (0001ms, 1833ms total)
T30A4 040:952 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 6D 00  returns 0x02 (0001ms, 1834ms total)
T30A4 040:955 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 3E 00  returns 0x02 (0001ms, 1835ms total)
T30A4 040:964 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1836ms total)
T30A4 040:966 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 6D 00  returns 0x02 (0001ms, 1837ms total)
T30A4 040:970 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 0F 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1840ms total)
T30A4 040:972 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1841ms total)
T30A4 040:973 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 5A 18 00 00  returns 0x04 (0001ms, 1842ms total)
T30A4 040:974 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 82 08  returns 0x02 (0001ms, 1843ms total)
T30A4 040:975 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C5 CF C1 CF 41 00 42 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1844ms total)
T30A4 040:978 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1845ms total)
T30A4 040:980 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: C5 22 58 E7  returns 0x04 (0001ms, 1846ms total)
T30A4 040:985 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 6D 00  returns 0x02 (0001ms, 1847ms total)
T3FE0 040:987 JLINK_IsHalted()  returns FALSE (0001ms, 1848ms total)
T3FE0 041:088 JLINK_IsHalted()  returns FALSE (0001ms, 1848ms total)
T3FE0 041:191 JLINK_IsHalted()  returns FALSE (0001ms, 1848ms total)
T3FE0 041:292 JLINK_IsHalted()  returns FALSE (0001ms, 1848ms total)
T3FE0 041:394 JLINK_IsHalted()  returns FALSE (0001ms, 1848ms total)
T30A4 041:496 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: CD EB C1 EB  returns 0x04 (0001ms, 1848ms total)
T30A4 041:498 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 6F 00  returns 0x02 (0001ms, 1849ms total)
T30A4 041:499 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 03 00  returns 0x02 (0001ms, 1850ms total)
T30A4 041:500 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1851ms total)
T30A4 041:502 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 3F 00 00 00  returns 0x04 (0001ms, 1852ms total)
T30A4 041:504 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 3F 00  returns 0x02 (0001ms, 1854ms total)
T30A4 041:506 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: CD EB C1 EB  returns 0x04 (0000ms, 1854ms total)
T30A4 041:506 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 6F 00  returns 0x02 (0001ms, 1855ms total)
T30A4 041:512 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 6F 00  returns 0x02 (0002ms, 1857ms total)
T30A4 041:515 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 3F 00  returns 0x02 (0001ms, 1858ms total)
T30A4 041:526 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1860ms total)
T30A4 041:529 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 6F 00  returns 0x02 (0001ms, 1861ms total)
T30A4 041:534 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 0F 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1862ms total)
T30A4 041:535 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0002ms, 1864ms total)
T30A4 041:537 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 5A 18 00 00  returns 0x04 (0001ms, 1865ms total)
T30A4 041:538 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 82 08  returns 0x02 (0000ms, 1865ms total)
T30A4 041:538 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 02 C5 CF C1 CF 41 00 42 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1866ms total)
T30A4 041:539 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0002ms, 1868ms total)
T30A4 041:541 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: CD EB C1 EB  returns 0x04 (0002ms, 1870ms total)
T30A4 041:547 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 6F 00  returns 0x02 (0002ms, 1872ms total)
T3FE0 041:549 JLINK_IsHalted()  returns FALSE (0001ms, 1873ms total)
T3FE0 041:651 JLINK_IsHalted()  returns FALSE (0001ms, 1873ms total)
T3FE0 041:753 JLINK_IsHalted()  returns FALSE (0001ms, 1873ms total)
T3FE0 041:855 JLINK_IsHalted()  returns FALSE (0001ms, 1873ms total)
T3FE0 041:957 JLINK_IsHalted()  returns FALSE (0001ms, 1873ms total)
T30A4 042:058 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 9B 7C C8 EE  returns 0x04 (0002ms, 1874ms total)
T30A4 042:061 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 71 00  returns 0x02 (0001ms, 1875ms total)
T30A4 042:062 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 03 00  returns 0x02 (0000ms, 1875ms total)
T30A4 042:062 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0002ms, 1877ms total)
T30A4 042:065 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 40 00 00 00  returns 0x04 (0000ms, 1877ms total)
T30A4 042:065 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 40 00  returns 0x02 (0002ms, 1879ms total)
T30A4 042:068 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 9B 7C C8 EE  returns 0x04 (0001ms, 1880ms total)
T30A4 042:069 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 71 00  returns 0x02 (0001ms, 1881ms total)
T30A4 042:077 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 71 00  returns 0x02 (0001ms, 1882ms total)
T30A4 042:079 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 40 00  returns 0x02 (0002ms, 1884ms total)
T30A4 042:089 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1885ms total)
T30A4 042:091 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 71 00  returns 0x02 (0001ms, 1886ms total)
T30A4 042:095 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 10 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1887ms total)
T30A4 042:098 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1888ms total)
T30A4 042:099 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 57 18 00 00  returns 0x04 (0001ms, 1889ms total)
T30A4 042:101 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 81 08  returns 0x02 (0001ms, 1890ms total)
T30A4 042:103 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 43 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1892ms total)
T30A4 042:106 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0002ms, 1894ms total)
T30A4 042:108 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: 9B 7C C8 EE  returns 0x04 (0001ms, 1895ms total)
T30A4 042:113 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 71 00  returns 0x02 (0001ms, 1897ms total)
T3FE0 042:114 JLINK_IsHalted()  returns FALSE (0001ms, 1898ms total)
T3FE0 042:217 JLINK_IsHalted()  returns FALSE (0001ms, 1898ms total)
T3FE0 042:319 JLINK_IsHalted()  returns FALSE (0001ms, 1898ms total)
T3FE0 042:420 JLINK_IsHalted()  returns FALSE (0001ms, 1898ms total)
T3FE0 042:522 JLINK_IsHalted()  returns FALSE (0001ms, 1898ms total)
T30A4 042:624 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: BB 4A 32 F3  returns 0x04 (0001ms, 1898ms total)
T30A4 042:626 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 72 00  returns 0x02 (0001ms, 1899ms total)
T30A4 042:627 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 03 00  returns 0x02 (0001ms, 1900ms total)
T30A4 042:628 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1901ms total)
T30A4 042:630 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 41 00 00 00  returns 0x04 (0001ms, 1902ms total)
T30A4 042:632 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 41 00  returns 0x02 (0001ms, 1903ms total)
T30A4 042:634 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: BB 4A 32 F3  returns 0x04 (0001ms, 1904ms total)
T30A4 042:635 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 72 00  returns 0x02 (0001ms, 1905ms total)
T30A4 042:641 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 72 00  returns 0x02 (0001ms, 1907ms total)
T30A4 042:644 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 41 00  returns 0x02 (0001ms, 1909ms total)
T30A4 042:652 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1910ms total)
T30A4 042:655 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 72 00  returns 0x02 (0001ms, 1912ms total)
T30A4 042:658 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 10 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1913ms total)
T30A4 042:660 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1915ms total)
T30A4 042:661 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 57 18 00 00  returns 0x04 (0001ms, 1916ms total)
T30A4 042:663 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 81 08  returns 0x02 (0001ms, 1917ms total)
T30A4 042:665 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 42 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1918ms total)
T30A4 042:668 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 1919ms total)
T30A4 042:670 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: BB 4A 32 F3  returns 0x04 (0001ms, 1920ms total)
T30A4 042:675 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 72 00  returns 0x02 (0001ms, 1921ms total)
T3FE0 042:678 JLINK_IsHalted()  returns FALSE (0001ms, 1922ms total)
T3FE0 042:780 JLINK_IsHalted()  returns FALSE (0001ms, 1922ms total)
T3FE0 042:882 JLINK_IsHalted()  returns FALSE (0001ms, 1922ms total)
T3FE0 042:984 JLINK_IsHalted()  returns FALSE (0001ms, 1922ms total)
T3FE0 043:086 JLINK_IsHalted()  returns FALSE (0001ms, 1922ms total)
T30A4 043:188 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: E1 C3 C8 F7  returns 0x04 (0001ms, 1922ms total)
T30A4 043:190 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 75 00  returns 0x02 (0001ms, 1923ms total)
T30A4 043:191 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 03 00  returns 0x02 (0001ms, 1924ms total)
T30A4 043:192 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1925ms total)
T30A4 043:194 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 42 00 00 00  returns 0x04 (0001ms, 1926ms total)
T30A4 043:196 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 42 00  returns 0x02 (0001ms, 1927ms total)
T30A4 043:198 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: E1 C3 C8 F7  returns 0x04 (0001ms, 1928ms total)
T30A4 043:199 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 75 00  returns 0x02 (0001ms, 1929ms total)
T30A4 043:204 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 75 00  returns 0x02 (0002ms, 1931ms total)
T30A4 043:207 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 42 00  returns 0x02 (0001ms, 1932ms total)
T30A4 043:216 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0002ms, 1934ms total)
T30A4 043:219 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 75 00  returns 0x02 (0001ms, 1935ms total)
T30A4 043:223 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1E 34 12 11 11 10 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1936ms total)
T30A4 043:224 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 20 00 00 00  returns 0x04 (0001ms, 1937ms total)
T30A4 043:225 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: 57 18 00 00  returns 0x04 (0001ms, 1938ms total)
T30A4 043:226 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 81 08  returns 0x02 (0001ms, 1939ms total)
T30A4 043:227 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 01 C1 CF 42 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1940ms total)
T30A4 043:228 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 01  returns 0x01 (0001ms, 1941ms total)
T30A4 043:230 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: E1 C3 C8 F7  returns 0x04 (0002ms, 1944ms total)
T30A4 043:236 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 75 00  returns 0x02 (0001ms, 1945ms total)
T3FE0 043:238 JLINK_IsHalted()  returns FALSE (0002ms, 1947ms total)
T3FE0 043:341 JLINK_IsHalted()  returns FALSE (0001ms, 1946ms total)
T3FE0 043:442 JLINK_IsHalted()  returns FALSE (0001ms, 1946ms total)
T3FE0 043:544 JLINK_IsHalted()  returns FALSE (0001ms, 1946ms total)
T3FE0 043:645 JLINK_IsHalted()  returns FALSE (0001ms, 1946ms total)
T30A4 043:747 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: DD 05 46 FD  returns 0x04 (0001ms, 1946ms total)
T30A4 043:748 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 76 00  returns 0x02 (0002ms, 1948ms total)
T30A4 043:750 JLINK_ReadMemEx(0x020197B4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197B4) - Data: 03 00  returns 0x02 (0001ms, 1949ms total)
T30A4 043:751 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1950ms total)
T30A4 043:753 JLINK_ReadMemEx(0x0201BDD0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BDD0) - Data: 43 00 00 00  returns 0x04 (0001ms, 1951ms total)
T30A4 043:754 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 43 00  returns 0x02 (0001ms, 1952ms total)
T30A4 043:756 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: DD 05 46 FD  returns 0x04 (0001ms, 1953ms total)
T30A4 043:757 JLINK_ReadMemEx(0x020197CC, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CC) - Data: 76 00  returns 0x02 (0001ms, 1954ms total)
T30A4 043:767 JLINK_ReadMemEx(0x020197CA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197CA) - Data: 76 00  returns 0x02 (0001ms, 1955ms total)
T30A4 043:769 JLINK_ReadMemEx(0x020197C8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020197C8) - Data: 43 00  returns 0x02 (0001ms, 1956ms total)
T30A4 043:777 JLINK_ReadMemEx(0x0201C072, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201C072) - Data: 02  returns 0x01 (0001ms, 1957ms total)
T30A4 043:780 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 76 00  returns 0x02 (0001ms, 1958ms total)
T30A4 043:784 JLINK_ReadMemEx(0x0201B664, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201B664) - Data: 26 1A 34 12 11 11 11 00 03 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1959ms total)
T30A4 043:787 JLINK_ReadMemEx(0x020196E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196E4) - Data: 1C 00 00 00  returns 0x04 (0001ms, 1960ms total)
T30A4 043:789 JLINK_ReadMemEx(0x0201BF44, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BF44) - Data: AC 18 00 00  returns 0x04 (0002ms, 1962ms total)
T30A4 043:792 JLINK_ReadMemEx(0x0201BCF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BCF0) - Data: 9B 08  returns 0x02 (0000ms, 1962ms total)
T30A4 043:793 JLINK_ReadMemEx(0x020196EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020196EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1965ms total)
T30A4 043:796 JLINK_ReadMemEx(0x0201BDC8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BDC8) - Data: 02  returns 0x01 (0001ms, 1966ms total)
T30A4 043:799 JLINK_ReadMemEx(0x0201C0B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201C0B8) - Data: F9 2E A9 FD  returns 0x04 (0001ms, 1967ms total)
T30A4 043:803 JLINK_ReadMemEx(0x02019A82, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x02019A82) - Data: 77 00  returns 0x02 (0001ms, 1968ms total)
T3FE0 043:806 JLINK_IsHalted()  returns FALSE (0001ms, 1969ms total)
T3FE0 043:908 JLINK_IsHalted()  returns FALSE (0001ms, 1969ms total)
T3FE0 044:010 JLINK_IsHalted()  returns FALSE (0001ms, 1969ms total)
T3FE0 044:112 JLINK_Halt()  returns 0x00 (0004ms, 1972ms total)
T3FE0 044:116 JLINK_IsHalted()  returns TRUE (0000ms, 1972ms total)
T3FE0 044:116 JLINK_IsHalted()  returns TRUE (0000ms, 1972ms total)
T3FE0 044:116 JLINK_IsHalted()  returns TRUE (0000ms, 1972ms total)
T3FE0 044:116 JLINK_ReadReg(R15 (PC))  returns 0x0000786A (0001ms, 1973ms total)
T3FE0 044:117 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1973ms total)
T3FE0 044:117 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00  returns 0x01 (0001ms, 1974ms total)
T3FE0 044:118 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1975ms total)
T3FE0 044:119 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 1976ms total)
T30A4 044:766 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> (0030ms, 2006ms total)
T30A4 044:766  (0031ms, 2007ms total)
T30A4 044:766 Closed (0031ms, 2007ms total)