WXK
2025-04-07 f764106f5b366e08933749d6164e9ccbdd6fd149
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
 
T13920 000:042 SEGGER J-Link V6.30d Log File (0001ms, 0021ms total)
T13920 000:042 DLL Compiled: Feb 16 2018 13:30:32 (0001ms, 0021ms total)
T13920 000:042 Logging started @ 2025-04-07 17:44 (0001ms, 0021ms total)
T13920 000:043 JLINK_SetWarnOutHandler(...) (0000ms, 0021ms total)
T13920 000:043 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 (0014ms, 0035ms total)
T13920 000:043 WEBSRV Webserver running on local port 19081 (0014ms, 0035ms total)
T13920 000:043   returns O.K. (0014ms, 0035ms total)
T13920 000:057 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0035ms total)
T13920 000:057 JLINK_TIF_GetAvailable(...) (0000ms, 0035ms total)
T13920 000:057 JLINK_SetErrorOutHandler(...) (0000ms, 0035ms total)
T13920 000:057 JLINK_ExecCommand("ProjectFile = "C:\git\XRange_Tag - ÌúЬ - ÐÂÂß¼­\MDK-ARM\JLinkSettings.ini"", ...). C:\Keil_v5\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0094ms, 0129ms total)
T13920 000:151 JLINK_ExecCommand("Device = STM32L071RBTx", ...). Device "STM32L071RB" selected.  returns 0x00 (0002ms, 0132ms total)
T13920 000:154 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0132ms total)
T13920 000:154 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0132ms total)
T13920 000:154 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0132ms total)
T13920 000:154 JLINK_GetFirmwareString(...) (0000ms, 0132ms total)
T13920 000:154 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0132ms total)
T13920 000:154 JLINK_GetCompileDateTime() (0000ms, 0132ms total)
T13920 000:154 JLINK_GetFirmwareString(...) (0000ms, 0132ms total)
T13920 000:154 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0132ms total)
T13920 000:154 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0001ms, 0133ms total)
T13920 000:155 JLINK_SetSpeed(5000) (0001ms, 0134ms total)
T13920 000:156 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BC11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF>
 >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF>
 >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x10B TIF>Found SW-DP with ID 0x0BC11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reached
AP[0]: AHB-AP (IDR: 0x04770031)Iterating through AP map to find AHB-AP to use >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xF0000000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC601. Implementer code: 0x41 (ARM)
Found Cortex-M0 r0p1, Little endian. -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ F0000000 -- CPU_ReadMem(16 bytes @ 0xF0000000) -- CPU_ReadMem(16 bytes @ 0xE00FFFF0) -- CPU_ReadMem(16 bytes @ 0xE00FFFE0)
ROMTbl[0][0]: E00FF000, CID: B105100D, PID: 000BB4C0 ROM TableROMTbl[1] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[1][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[1][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)
ROMTbl[1][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running
 -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(20480 bytes @ 0x20000000) >0x0D TIF> >0x21 TIF>  returns 0x0BC11477 (0474ms, 0608ms total)
T13920 000:630 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0608ms total)
T13920 000:630 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0608ms total)
T13920 000:630 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 0608ms total)
T13920 000:630 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xF0000000  returns 0x00 (0000ms, 0608ms total)
T13920 000:630 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0608ms total)
T13920 000:630 JLINK_ReadMemEx(0xE0041FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0041FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 0609ms total)
T13920 000:631 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0609ms total)
T13920 000:631 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0609ms total)
T13920 000:631 JLINK_ReadMemEx(0xE0040FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0040FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0000ms, 0609ms total)
T13920 000:631 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0609ms total)
T13920 000:631 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0609ms total)
T13920 000:631 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0609ms total)
T13920 000:631 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 0609ms total)
T13920 000:631 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0609ms total)
T13920 000:631 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 0609ms total)
T13920 000:631 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 01 C6 0C 41  returns 0x01 (0001ms, 0610ms total)
T13920 000:632 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0610ms total)
T13920 000:632 JLINK_Halt()  returns 0x00 (0000ms, 0610ms total)
T13920 000:632 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 01  returns 0x01 (0001ms, 0611ms total)
T13920 000:633 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0000ms, 0611ms total)
T13920 000:633 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0001ms, 0612ms total)
T13920 000:634 JLINK_GetHWStatus(...)  returns 0x00 (0000ms, 0612ms total)
T13920 000:634 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0612ms total)
T13920 000:634 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0612ms total)
T13920 000:634 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0612ms total)
T13920 000:634 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0612ms total)
T13920 000:634 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0001ms, 0613ms total)
T13920 000:635 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 0613ms total)
T13920 000:635 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 0613ms total)
T13920 000:722 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0613ms total)
T13920 000:722 JLINK_Reset() -- CPU_ReadMem(4 bytes @ 0x20000000) -- CPU_WriteMem(4 bytes @ 0x20000000) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)
 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0070ms, 0683ms total)
T13920 000:792 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 0683ms total)
T13920 000:792 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 0683ms total)
T13920 000:793 JLINK_ReadMemEx(0x080000D4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x080000C0) -- Updating C cache (128 bytes @ 0x080000C0) -- Read from C cache (60 bytes @ 0x080000D4) - Data: 04 48 80 47 04 48 00 47 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0001ms, 0684ms total)
T13920 000:794 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 0684ms total)
T13920 000:795 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 0684ms total)
T13920 000:795 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 0684ms total)
T13920 000:795 JLINK_ReadMemEx(0x080000D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000D8) - Data: 04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0000ms, 0684ms total)
T13920 000:795 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 0684ms total)
T13920 000:795 JLINK_ReadMemEx(0x080000D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000D8) - Data: 04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0000ms, 0684ms total)
T13920 000:795 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 0684ms total)
T13920 000:795 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 0684ms total)
T13920 000:795 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 0684ms total)
T13920 000:795 JLINK_ReadMemEx(0x080000DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000DC) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 45 1F 00 08 ...  returns 0x3C (0000ms, 0684ms total)
T13920 000:795 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 0684ms total)
T13920 000:795 JLINK_ReadMemEx(0x080000DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000DC) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 45 1F 00 08 ...  returns 0x3C (0000ms, 0684ms total)
T13920 000:795 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 0684ms total)
T13920 000:795 JLINK_ReadMemEx(0x080000DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DE) - Data: FE E7  returns 0x02 (0000ms, 0684ms total)
T13920 002:629 JLINK_ReadMemEx(0x080000DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DE) - Data: FE E7  returns 0x02 (0000ms, 0684ms total)
T13920 002:629 JLINK_ReadMemEx(0x080000E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000E0) - Data: FE E7 FE E7 FE E7 FE E7 45 1F 00 08 C1 00 00 08 ...  returns 0x3C (0000ms, 0684ms total)
T13920 002:629 JLINK_ReadMemEx(0x080000E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000E0) - Data: FE E7  returns 0x02 (0000ms, 0684ms total)
T13920 002:629 JLINK_ReadMemEx(0x080000E0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000E0) - Data: FE E7 FE E7 FE E7 FE E7 45 1F 00 08 C1 00 00 08 ...  returns 0x3C (0000ms, 0684ms total)
T13920 002:629 JLINK_ReadMemEx(0x080000E0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000E0) - Data: FE E7  returns 0x02 (0000ms, 0684ms total)
T13920 002:629 JLINK_ReadMemEx(0x080000E2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000E2) - Data: FE E7  returns 0x02 (0000ms, 0684ms total)
T13920 003:323 JLINK_ReadReg(R0)  returns 0xFFFFFFFF (0001ms, 0685ms total)
T13920 003:324 JLINK_ReadReg(R1)  returns 0xFFFFFFFF (0000ms, 0685ms total)
T13920 003:324 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 0685ms total)
T13920 003:324 JLINK_ReadReg(R3)  returns 0xFFFFFFFF (0000ms, 0685ms total)
T13920 003:324 JLINK_ReadReg(R4)  returns 0xFFFFFFFF (0000ms, 0685ms total)
T13920 003:324 JLINK_ReadReg(R5)  returns 0xFFFFFFFF (0000ms, 0685ms total)
T13920 003:324 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0000ms, 0685ms total)
T13920 003:324 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 0685ms total)
T13920 003:324 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 0685ms total)
T13920 003:324 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 0685ms total)
T13920 003:324 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 0685ms total)
T13920 003:324 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 0685ms total)
T13920 003:324 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 0685ms total)
T13920 003:324 JLINK_ReadReg(R13 (SP))  returns 0x20001188 (0000ms, 0685ms total)
T13920 003:324 JLINK_ReadReg(R14)  returns 0xFFFFFFFF (0000ms, 0685ms total)
T13920 003:324 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 0685ms total)
T13920 003:324 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 0685ms total)
T13920 003:324 JLINK_ReadReg(MSP)  returns 0x20001188 (0000ms, 0685ms total)
T13920 003:324 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 0685ms total)
T13920 003:324 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0685ms total)
T13920 003:324 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200002C0) -- Updating C cache (64 bytes @ 0x200002C0) -- Read from C cache (32 bytes @ 0x200002D6) - Data: AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 ...  returns 0x20 (0002ms, 0687ms total)
T13920 003:342 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20003840) -- Updating C cache (128 bytes @ 0x20003840) -- Read from C cache (32 bytes @ 0x20003874) - Data: AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 ...  returns 0x20 (0002ms, 0689ms total)
T13920 003:359 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000300) -- Updating C cache (64 bytes @ 0x20000300) -- Read from C cache (1 bytes @ 0x2000033A) - Data: AA  returns 0x01 (0002ms, 0691ms total)
T13920 003:361 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000033A) - Data: AA  returns 0x01 (0000ms, 0691ms total)
T13920 003:361 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000033A) - Data: AA  returns 0x01 (0000ms, 0691ms total)
T13920 003:389 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000380) -- Updating C cache (64 bytes @ 0x20000380) -- Read from C cache (2 bytes @ 0x2000039E) - Data: AA 55  returns 0x02 (0001ms, 0692ms total)
T13920 003:390 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000039E) - Data: AA 55  returns 0x02 (0000ms, 0692ms total)
T13920 003:390 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000039E) - Data: AA 55  returns 0x02 (0000ms, 0692ms total)
T13920 003:397 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000340) -- Updating C cache (64 bytes @ 0x20000340) -- Read from C cache (1 bytes @ 0x20000359) - Data: 55  returns 0x01 (0002ms, 0694ms total)
T13920 003:399 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000359) - Data: 55  returns 0x01 (0000ms, 0694ms total)
T13920 003:399 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000359) - Data: 55  returns 0x01 (0000ms, 0694ms total)
T13920 003:405 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200003A2) - Data: AA  returns 0x01 (0000ms, 0694ms total)
T13920 003:405 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200003A2) - Data: AA  returns 0x01 (0000ms, 0694ms total)
T13920 003:405 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200003A2) - Data: AA  returns 0x01 (0000ms, 0694ms total)
T13920 003:437 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000200) -- Updating C cache (64 bytes @ 0x20000200) -- Read from C cache (32 bytes @ 0x2000020E) - Data: AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 ...  returns 0x20 (0001ms, 0695ms total)
T13920 003:450 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20003874) - Data: AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 ...  returns 0x20 (0000ms, 0695ms total)
T13920 003:492 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000359) - Data: 55  returns 0x01 (0000ms, 0695ms total)
T13920 003:492 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000359) - Data: 55  returns 0x01 (0000ms, 0695ms total)
T13920 003:492 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000359) - Data: 55  returns 0x01 (0000ms, 0695ms total)
T13920 003:503 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000020A) - Data: AA  returns 0x01 (0001ms, 0696ms total)
T13920 003:504 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000020A) - Data: AA  returns 0x01 (0000ms, 0696ms total)
T13920 003:504 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000020A) - Data: AA  returns 0x01 (0000ms, 0696ms total)
T13920 003:548 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (2 bytes @ 0x2000000E) - Data: AA 55  returns 0x02 (0002ms, 0698ms total)
T13920 003:550 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000000E) - Data: AA 55  returns 0x02 (0000ms, 0698ms total)
T13920 003:550 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x2000000E) - Data: AA 55  returns 0x02 (0000ms, 0698ms total)
T13920 003:562 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000010) - Data: AA 55  returns 0x02 (0000ms, 0698ms total)
T13920 003:562 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000010) - Data: AA 55  returns 0x02 (0000ms, 0698ms total)
T13920 003:562 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000010) - Data: AA 55  returns 0x02 (0000ms, 0698ms total)
T13920 003:573 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000012) - Data: AA 55  returns 0x02 (0000ms, 0698ms total)
T13920 003:573 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000012) - Data: AA 55  returns 0x02 (0000ms, 0698ms total)
T13920 003:573 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000012) - Data: AA 55  returns 0x02 (0000ms, 0698ms total)
T13920 003:626 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20002440) -- Updating C cache (128 bytes @ 0x20002440) -- Read from C cache (32 bytes @ 0x20002478) - Data: AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 ...  returns 0x20 (0002ms, 0700ms total)
T13920 003:640 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200001C0) -- Updating C cache (64 bytes @ 0x200001C0) -- Read from C cache (1 bytes @ 0x200001E6) - Data: AA  returns 0x01 (0002ms, 0702ms total)
T13920 003:642 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200001E6) - Data: AA  returns 0x01 (0000ms, 0702ms total)
T13920 003:642 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200001E6) - Data: AA  returns 0x01 (0000ms, 0702ms total)
T13920 003:654 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000180) -- Updating C cache (64 bytes @ 0x20000180) -- Read from C cache (2 bytes @ 0x200001A4) - Data: AA 55  returns 0x02 (0002ms, 0704ms total)
T13920 003:656 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A4) - Data: AA 55  returns 0x02 (0000ms, 0704ms total)
T13920 003:656 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A4) - Data: AA 55  returns 0x02 (0000ms, 0704ms total)
T13920 003:669 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A6) - Data: AA 55  returns 0x02 (0000ms, 0704ms total)
T13920 003:669 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A6) - Data: AA 55  returns 0x02 (0000ms, 0704ms total)
T13920 003:669 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A6) - Data: AA 55  returns 0x02 (0000ms, 0704ms total)
T13920 003:683 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A8) - Data: AA 55  returns 0x02 (0000ms, 0704ms total)
T13920 003:683 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A8) - Data: AA 55  returns 0x02 (0000ms, 0704ms total)
T13920 003:683 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A8) - Data: AA 55  returns 0x02 (0000ms, 0704ms total)
T13920 003:696 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001AA) - Data: AA 55  returns 0x02 (0000ms, 0704ms total)
T13920 003:696 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001AA) - Data: AA 55  returns 0x02 (0000ms, 0704ms total)
T13920 003:696 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001AA) - Data: AA 55  returns 0x02 (0000ms, 0704ms total)
T196EC 003:829 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 0704ms total)
T196EC 003:829 JLINK_SetBPEx(Addr = 0x0801296C, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0704ms total)
T196EC 003:829 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0006ms, 0710ms total)
T196EC 003:936 JLINK_IsHalted()  returns FALSE (0000ms, 0710ms total)
T196EC 004:037 JLINK_IsHalted()  returns FALSE (0000ms, 0710ms total)
T196EC 004:139 JLINK_IsHalted()  returns FALSE (0000ms, 0710ms total)
T196EC 004:240 JLINK_IsHalted()  returns FALSE (0000ms, 0710ms total)
T13920 004:354 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0711ms total)
T13920 004:356 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 ...  returns 0x20 (0001ms, 0712ms total)
T13920 004:357 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0713ms total)
T13920 004:359 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0002ms, 0715ms total)
T13920 004:361 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 0715ms total)
T13920 004:362 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 00  returns 0x01 (0000ms, 0715ms total)
T13920 004:363 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0716ms total)
T13920 004:364 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 ...  returns 0x20 (0001ms, 0717ms total)
T13920 004:366 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0718ms total)
T13920 004:367 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 0719ms total)
T13920 004:369 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0720ms total)
T13920 004:370 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 00 00  returns 0x02 (0001ms, 0721ms total)
T13920 004:371 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 0722ms total)
T13920 004:373 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 AA 55 ...  returns 0x20 (0001ms, 0723ms total)
T13920 004:374 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 0723ms total)
T13920 004:374 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0724ms total)
T13920 004:375 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0725ms total)
T13920 004:376 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 0725ms total)
T13920 004:376 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0726ms total)
T196EC 004:377 JLINK_IsHalted()  returns FALSE (0001ms, 0727ms total)
T196EC 004:478 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T196EC 004:580 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T196EC 004:681 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T196EC 004:782 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T13920 004:884 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0003ms, 0729ms total)
T13920 004:888 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0730ms total)
T13920 004:890 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0731ms total)
T13920 004:891 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0732ms total)
T13920 004:892 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0733ms total)
T13920 004:893 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 00  returns 0x01 (0001ms, 0734ms total)
T13920 004:895 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0735ms total)
T13920 004:896 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0736ms total)
T13920 004:898 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0737ms total)
T13920 004:899 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 0738ms total)
T13920 004:901 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 0738ms total)
T13920 004:901 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 00 00  returns 0x02 (0001ms, 0739ms total)
T13920 004:902 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 0740ms total)
T13920 004:904 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0741ms total)
T13920 004:915 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 0741ms total)
T13920 004:915 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0742ms total)
T13920 004:916 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 0742ms total)
T13920 004:917 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 0743ms total)
T13920 004:917 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0744ms total)
T196EC 004:918 JLINK_IsHalted()  returns TRUE (0004ms, 0748ms total)
T196EC 004:922 JLINK_Halt()  returns 0x00 (0000ms, 0744ms total)
T196EC 004:922 JLINK_IsHalted()  returns TRUE (0000ms, 0744ms total)
T196EC 004:922 JLINK_IsHalted()  returns TRUE (0000ms, 0744ms total)
T196EC 004:922 JLINK_IsHalted()  returns TRUE (0000ms, 0744ms total)
T196EC 004:922 JLINK_ReadReg(R15 (PC))  returns 0x0801296C (0000ms, 0744ms total)
T196EC 004:922 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0744ms total)
T196EC 004:922 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0744ms total)
T196EC 004:922 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0745ms total)
T196EC 004:923 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0000ms, 0745ms total)
T196EC 004:923 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(R0)  returns 0x0801296D (0000ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(R1)  returns 0x200048C8 (0000ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(R3)  returns 0x080116C1 (0000ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(R4)  returns 0x08013F9C (0000ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(R6)  returns 0x08013F9C (0000ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(R7)  returns 0x08005000 (0000ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(R13 (SP))  returns 0x200048C8 (0000ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(R14)  returns 0x08005B01 (0000ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(R15 (PC))  returns 0x0801296C (0000ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(MSP)  returns 0x200048C8 (0000ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 0746ms total)
T196EC 004:924 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0746ms total)
T13920 004:928 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200002C0) -- Updating C cache (64 bytes @ 0x200002C0) -- Read from C cache (32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 0747ms total)
T13920 004:930 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20003840) -- Updating C cache (128 bytes @ 0x20003840) -- Read from C cache (32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0749ms total)
T13920 004:932 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000300) -- Updating C cache (64 bytes @ 0x20000300) -- Read from C cache (1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0750ms total)
T13920 004:934 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000380) -- Updating C cache (64 bytes @ 0x20000380) -- Read from C cache (2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0002ms, 0752ms total)
T13920 004:936 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000340) -- Updating C cache (64 bytes @ 0x20000340) -- Read from C cache (1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0753ms total)
T13920 004:937 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200003A2) - Data: 00  returns 0x01 (0000ms, 0753ms total)
T13920 004:938 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000200) -- Updating C cache (64 bytes @ 0x20000200) -- Read from C cache (32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0754ms total)
T13920 004:939 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 0754ms total)
T13920 004:940 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 0754ms total)
T13920 004:940 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0000ms, 0754ms total)
T13920 004:942 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0755ms total)
T13920 004:943 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000010) - Data: 00 00  returns 0x02 (0000ms, 0755ms total)
T13920 004:943 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0000ms, 0755ms total)
T13920 004:946 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20002440) -- Updating C cache (128 bytes @ 0x20002440) -- Read from C cache (32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0757ms total)
T13920 004:948 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200001C0) -- Updating C cache (64 bytes @ 0x200001C0) -- Read from C cache (1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0002ms, 0759ms total)
T13920 004:950 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000180) -- Updating C cache (64 bytes @ 0x20000180) -- Read from C cache (2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0760ms total)
T13920 004:951 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 0760ms total)
T13920 004:951 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 0760ms total)
T13920 004:951 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 0760ms total)
T196EC 005:425 JLINK_ReadMemEx(0x0801296C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08012940) -- Updating C cache (64 bytes @ 0x08012940) -- Read from C cache (2 bytes @ 0x0801296C) - Data: 08 B5  returns 0x02 (0001ms, 0761ms total)
T196EC 005:426 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0003ms, 0764ms total)
T196EC 005:530 JLINK_IsHalted()  returns FALSE (0000ms, 0764ms total)
T196EC 005:632 JLINK_IsHalted()  returns FALSE (0000ms, 0764ms total)
T196EC 005:733 JLINK_IsHalted()  returns FALSE (0000ms, 0764ms total)
T196EC 005:834 JLINK_IsHalted()  returns FALSE (0000ms, 0764ms total)
T13920 005:936 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 0766ms total)
T13920 005:938 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0767ms total)
T13920 005:940 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 0767ms total)
T13920 005:941 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0768ms total)
T13920 005:942 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 0768ms total)
T13920 005:942 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 00  returns 0x01 (0001ms, 0769ms total)
T13920 005:943 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0771ms total)
T13920 005:945 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0772ms total)
T13920 005:947 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0773ms total)
T13920 005:948 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 0774ms total)
T13920 005:950 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0775ms total)
T13920 005:951 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 00 00  returns 0x02 (0001ms, 0776ms total)
T13920 005:952 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0000ms, 0776ms total)
T13920 005:954 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0777ms total)
T13920 005:955 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 0778ms total)
T13920 005:956 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 0778ms total)
T13920 005:956 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0779ms total)
T13920 005:957 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 0779ms total)
T13920 005:957 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0780ms total)
T196EC 005:959 JLINK_IsHalted()  returns FALSE (0000ms, 0780ms total)
T196EC 006:060 JLINK_IsHalted()  returns FALSE (0000ms, 0780ms total)
T196EC 006:162 JLINK_IsHalted()  returns FALSE (0000ms, 0780ms total)
T196EC 006:263 JLINK_IsHalted()  returns FALSE (0000ms, 0780ms total)
T196EC 006:364 JLINK_IsHalted()  returns FALSE (0000ms, 0780ms total)
T13920 006:466 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 0782ms total)
T13920 006:469 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0783ms total)
T13920 006:470 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0784ms total)
T13920 006:472 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0785ms total)
T13920 006:473 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 0785ms total)
T13920 006:473 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0786ms total)
T13920 006:474 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0788ms total)
T13920 006:476 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0789ms total)
T13920 006:479 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 0789ms total)
T13920 006:479 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 0790ms total)
T13920 006:481 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0791ms total)
T13920 006:482 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 21 00  returns 0x02 (0001ms, 0792ms total)
T13920 006:483 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 0793ms total)
T13920 006:485 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0794ms total)
T13920 006:486 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 0795ms total)
T13920 006:487 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0796ms total)
T13920 006:488 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 0796ms total)
T13920 006:488 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 0797ms total)
T13920 006:489 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0798ms total)
T196EC 006:490 JLINK_IsHalted()  returns FALSE (0001ms, 0799ms total)
T196EC 006:592 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T196EC 006:692 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T196EC 006:794 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T196EC 006:895 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T13920 006:998 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 0799ms total)
T13920 007:000 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0800ms total)
T13920 007:001 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0801ms total)
T13920 007:003 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0802ms total)
T13920 007:004 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 0802ms total)
T13920 007:004 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0803ms total)
T13920 007:006 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0804ms total)
T13920 007:007 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0805ms total)
T13920 007:010 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 0805ms total)
T13920 007:010 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 0806ms total)
T13920 007:012 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0807ms total)
T13920 007:013 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 78 00  returns 0x02 (0000ms, 0807ms total)
T13920 007:014 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 0808ms total)
T13920 007:016 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0809ms total)
T13920 007:017 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 0810ms total)
T13920 007:018 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0811ms total)
T13920 007:019 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 0811ms total)
T13920 007:019 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 0812ms total)
T13920 007:020 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0813ms total)
T196EC 007:021 JLINK_IsHalted()  returns FALSE (0001ms, 0814ms total)
T196EC 007:123 JLINK_IsHalted()  returns FALSE (0001ms, 0814ms total)
T196EC 007:224 JLINK_IsHalted()  returns FALSE (0000ms, 0813ms total)
T196EC 007:326 JLINK_IsHalted()  returns FALSE (0000ms, 0813ms total)
T196EC 007:427 JLINK_IsHalted()  returns FALSE (0001ms, 0814ms total)
T13920 007:530 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 0814ms total)
T13920 007:532 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0815ms total)
T13920 007:533 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0816ms total)
T13920 007:535 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 0816ms total)
T13920 007:535 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0817ms total)
T13920 007:536 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0818ms total)
T13920 007:537 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0819ms total)
T13920 007:538 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0820ms total)
T13920 007:541 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0821ms total)
T13920 007:542 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 0821ms total)
T13920 007:544 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 0821ms total)
T13920 007:544 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: AC 00  returns 0x02 (0001ms, 0822ms total)
T13920 007:545 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 0823ms total)
T13920 007:549 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0824ms total)
T13920 007:550 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 0824ms total)
T13920 007:551 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 0824ms total)
T13920 007:551 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0825ms total)
T13920 007:552 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 0825ms total)
T13920 007:552 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0826ms total)
T196EC 007:554 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T196EC 007:655 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T196EC 007:756 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T196EC 007:857 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T196EC 007:958 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T13920 008:061 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 0828ms total)
T13920 008:064 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0829ms total)
T13920 008:065 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0830ms total)
T13920 008:067 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 0830ms total)
T13920 008:067 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0001ms, 0831ms total)
T13920 008:068 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0832ms total)
T13920 008:070 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0833ms total)
T13920 008:071 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0834ms total)
T13920 008:074 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0001ms, 0835ms total)
T13920 008:075 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 0836ms total)
T13920 008:077 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 0836ms total)
T13920 008:077 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 17 01  returns 0x02 (0001ms, 0837ms total)
T13920 008:078 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 0838ms total)
T13920 008:080 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0839ms total)
T13920 008:081 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 0840ms total)
T13920 008:082 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0841ms total)
T13920 008:083 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 0841ms total)
T13920 008:083 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 0842ms total)
T13920 008:084 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0843ms total)
T196EC 008:085 JLINK_IsHalted()  returns FALSE (0001ms, 0844ms total)
T196EC 008:187 JLINK_IsHalted()  returns FALSE (0000ms, 0843ms total)
T196EC 008:289 JLINK_IsHalted()  returns FALSE (0000ms, 0843ms total)
T196EC 008:390 JLINK_IsHalted()  returns FALSE (0000ms, 0843ms total)
T196EC 008:491 JLINK_IsHalted()  returns FALSE (0000ms, 0843ms total)
T13920 008:594 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 0844ms total)
T13920 008:596 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0845ms total)
T13920 008:597 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0846ms total)
T13920 008:598 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0847ms total)
T13920 008:599 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0001ms, 0848ms total)
T13920 008:600 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0849ms total)
T13920 008:601 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0850ms total)
T13920 008:602 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0851ms total)
T13920 008:605 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0001ms, 0852ms total)
T13920 008:606 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 0853ms total)
T13920 008:608 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0854ms total)
T13920 008:609 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 54 01  returns 0x02 (0000ms, 0854ms total)
T13920 008:610 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 0855ms total)
T13920 008:612 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0856ms total)
T13920 008:613 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 0857ms total)
T13920 008:614 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 0857ms total)
T13920 008:614 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0858ms total)
T13920 008:615 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 0859ms total)
T13920 008:616 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 0859ms total)
T196EC 008:617 JLINK_IsHalted()  returns FALSE (0001ms, 0860ms total)
T196EC 008:719 JLINK_IsHalted()  returns FALSE (0000ms, 0859ms total)
T196EC 008:820 JLINK_IsHalted()  returns FALSE (0000ms, 0859ms total)
T196EC 008:921 JLINK_IsHalted()  returns FALSE (0000ms, 0859ms total)
T196EC 009:023 JLINK_IsHalted()  returns FALSE (0000ms, 0859ms total)
T13920 009:125 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 0861ms total)
T13920 009:128 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0862ms total)
T13920 009:129 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0863ms total)
T13920 009:131 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 0863ms total)
T13920 009:131 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0864ms total)
T13920 009:132 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0865ms total)
T13920 009:133 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 00 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0867ms total)
T13920 009:135 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0868ms total)
T13920 009:137 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0869ms total)
T13920 009:138 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 0870ms total)
T13920 009:140 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0871ms total)
T13920 009:141 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: AF 01  returns 0x02 (0001ms, 0872ms total)
T13920 009:142 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 0873ms total)
T13920 009:144 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0874ms total)
T13920 009:145 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0002ms, 0876ms total)
T13920 009:147 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 0876ms total)
T13920 009:147 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0877ms total)
T13920 009:148 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 0878ms total)
T13920 009:149 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 0878ms total)
T196EC 009:150 JLINK_IsHalted()  returns FALSE (0000ms, 0878ms total)
T196EC 009:251 JLINK_IsHalted()  returns FALSE (0000ms, 0878ms total)
T196EC 009:352 JLINK_IsHalted()  returns FALSE (0000ms, 0878ms total)
T196EC 009:454 JLINK_IsHalted()  returns FALSE (0000ms, 0878ms total)
T196EC 009:555 JLINK_IsHalted()  returns FALSE (0000ms, 0878ms total)
T13920 009:657 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 0880ms total)
T13920 009:660 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0881ms total)
T13920 009:661 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0882ms total)
T13920 009:663 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 0882ms total)
T13920 009:663 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 0883ms total)
T13920 009:664 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0884ms total)
T13920 009:665 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 00 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0886ms total)
T13920 009:667 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0887ms total)
T13920 009:670 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 0887ms total)
T13920 009:670 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 0888ms total)
T13920 009:672 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0889ms total)
T13920 009:673 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: EA 01  returns 0x02 (0000ms, 0889ms total)
T13920 009:674 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0000ms, 0889ms total)
T13920 009:676 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 24 47 4E 47 47 41 2C 2C 2C 2C 2C 2C 30 2C 30 30 ...  returns 0x20 (0001ms, 0890ms total)
T13920 009:687 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 0890ms total)
T13920 009:687 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0891ms total)
T13920 009:688 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0892ms total)
T13920 009:689 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 0892ms total)
T13920 009:689 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0893ms total)
T196EC 009:690 JLINK_IsHalted()  returns FALSE (0001ms, 0894ms total)
T196EC 009:793 JLINK_IsHalted()  returns FALSE (0000ms, 0893ms total)
T196EC 009:894 JLINK_IsHalted()  returns FALSE (0001ms, 0894ms total)
T196EC 009:995 JLINK_IsHalted()  returns FALSE (0001ms, 0894ms total)
T196EC 010:097 JLINK_IsHalted()  returns FALSE (0000ms, 0893ms total)
T13920 010:199 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 0895ms total)
T13920 010:202 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0896ms total)
T13920 010:203 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0897ms total)
T13920 010:205 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 0897ms total)
T13920 010:205 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0001ms, 0898ms total)
T13920 010:206 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0899ms total)
T13920 010:207 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 00 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0901ms total)
T13920 010:209 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0902ms total)
T13920 010:211 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0001ms, 0903ms total)
T13920 010:213 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 0903ms total)
T13920 010:214 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0904ms total)
T13920 010:215 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 4F 02  returns 0x02 (0001ms, 0905ms total)
T13920 010:216 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 0906ms total)
T13920 010:218 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 24 47 4E 47 47 41 2C 2C 2C 2C 2C 2C 30 2C 30 30 ...  returns 0x20 (0001ms, 0907ms total)
T13920 010:219 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 0908ms total)
T13920 010:220 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0909ms total)
T13920 010:221 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 0909ms total)
T13920 010:221 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 0910ms total)
T13920 010:222 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0911ms total)
T196EC 010:223 JLINK_IsHalted()  returns FALSE (0001ms, 0912ms total)
T196EC 010:325 JLINK_IsHalted()  returns FALSE (0000ms, 0911ms total)
T196EC 010:426 JLINK_IsHalted()  returns FALSE (0000ms, 0911ms total)
T196EC 010:527 JLINK_IsHalted()  returns FALSE (0000ms, 0911ms total)
T196EC 010:629 JLINK_IsHalted()  returns FALSE (0000ms, 0911ms total)
T13920 010:731 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 0912ms total)
T13920 010:733 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0913ms total)
T13920 010:735 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 0913ms total)
T13920 010:736 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0914ms total)
T13920 010:737 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0000ms, 0914ms total)
T13920 010:738 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 0914ms total)
T13920 010:739 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 2D 59 47 01 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0915ms total)
T13920 010:740 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0916ms total)
T13920 010:743 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0000ms, 0916ms total)
T13920 010:744 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 0916ms total)
T13920 010:745 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0917ms total)
T13920 010:746 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 98 02  returns 0x02 (0001ms, 0918ms total)
T13920 010:747 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 0919ms total)
T13920 010:750 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0920ms total)
T13920 010:761 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 0921ms total)
T13920 010:762 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 0921ms total)
T13920 010:762 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0922ms total)
T13920 010:763 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 0923ms total)
T13920 010:764 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 0923ms total)
T196EC 010:765 JLINK_IsHalted()  returns FALSE (0000ms, 0923ms total)
T196EC 010:866 JLINK_IsHalted()  returns FALSE (0000ms, 0923ms total)
T196EC 010:968 JLINK_IsHalted()  returns FALSE (0000ms, 0923ms total)
T196EC 011:069 JLINK_IsHalted()  returns FALSE (0000ms, 0923ms total)
T196EC 011:170 JLINK_IsHalted()  returns FALSE (0000ms, 0923ms total)
T13920 011:272 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 0924ms total)
T13920 011:274 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0925ms total)
T13920 011:276 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 0925ms total)
T13920 011:277 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0926ms total)
T13920 011:278 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0000ms, 0926ms total)
T13920 011:278 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0927ms total)
T13920 011:280 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 2D 59 47 01 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0928ms total)
T13920 011:281 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0929ms total)
T13920 011:284 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0000ms, 0929ms total)
T13920 011:284 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 0930ms total)
T13920 011:286 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0931ms total)
T13920 011:287 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: F5 02  returns 0x02 (0000ms, 0931ms total)
T13920 011:288 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0000ms, 0931ms total)
T13920 011:290 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0932ms total)
T13920 011:291 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 0932ms total)
T13920 011:291 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0933ms total)
T13920 011:292 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0934ms total)
T13920 011:293 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 0934ms total)
T13920 011:294 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 0934ms total)
T196EC 011:295 JLINK_IsHalted()  returns FALSE (0000ms, 0934ms total)
T196EC 011:397 JLINK_IsHalted()  returns FALSE (0000ms, 0934ms total)
T196EC 011:498 JLINK_IsHalted()  returns FALSE (0000ms, 0934ms total)
T196EC 011:599 JLINK_IsHalted()  returns FALSE (0000ms, 0934ms total)
T196EC 011:700 JLINK_IsHalted()  returns FALSE (0000ms, 0934ms total)
T13920 011:804 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 0935ms total)
T13920 011:806 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 36 66 66 31 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0936ms total)
T13920 011:808 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0937ms total)
T13920 011:809 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0938ms total)
T13920 011:810 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0001ms, 0939ms total)
T13920 011:811 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0940ms total)
T13920 011:812 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 02 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0941ms total)
T13920 011:814 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 36 66 66 31 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0942ms total)
T13920 011:816 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0001ms, 0943ms total)
T13920 011:817 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 0944ms total)
T13920 011:819 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0945ms total)
T13920 011:820 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 34 03  returns 0x02 (0000ms, 0945ms total)
T13920 011:821 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 0945ms total)
T13920 011:823 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0946ms total)
T13920 011:824 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 0946ms total)
T13920 011:824 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0947ms total)
T13920 011:825 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0948ms total)
T13920 011:826 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 0948ms total)
T13920 011:826 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0949ms total)
T196EC 011:827 JLINK_IsHalted()  returns FALSE (0001ms, 0950ms total)
T196EC 011:929 JLINK_IsHalted()  returns FALSE (0000ms, 0949ms total)
T196EC 012:031 JLINK_IsHalted()  returns FALSE (0000ms, 0949ms total)
T196EC 012:132 JLINK_IsHalted()  returns FALSE (0000ms, 0949ms total)
T196EC 012:233 JLINK_IsHalted()  returns FALSE (0000ms, 0949ms total)
T13920 012:336 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 0951ms total)
T13920 012:338 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 36 66 66 31 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0952ms total)
T13920 012:340 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0953ms total)
T13920 012:342 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0954ms total)
T13920 012:343 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0000ms, 0954ms total)
T13920 012:344 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0955ms total)
T13920 012:345 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 02 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0956ms total)
T13920 012:346 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 36 66 66 31 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0957ms total)
T13920 012:349 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0001ms, 0958ms total)
T13920 012:350 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 0959ms total)
T13920 012:352 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 0959ms total)
T13920 012:352 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 97 03  returns 0x02 (0001ms, 0960ms total)
T13920 012:353 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 0961ms total)
T13920 012:356 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0962ms total)
T13920 012:357 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 0962ms total)
T13920 012:357 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0963ms total)
T13920 012:358 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0964ms total)
T13920 012:359 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 0964ms total)
T13920 012:359 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0965ms total)
T196EC 012:360 JLINK_IsHalted()  returns FALSE (0001ms, 0966ms total)
T196EC 012:462 JLINK_IsHalted()  returns FALSE (0000ms, 0965ms total)
T196EC 012:564 JLINK_IsHalted()  returns FALSE (0000ms, 0965ms total)
T196EC 012:665 JLINK_IsHalted()  returns FALSE (0000ms, 0965ms total)
T196EC 012:767 JLINK_IsHalted()  returns FALSE (0000ms, 0965ms total)
T13920 012:869 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 0966ms total)
T13920 012:871 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 36 66 66 31 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0967ms total)
T13920 012:873 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 0967ms total)
T13920 012:874 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0968ms total)
T13920 012:875 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0001ms, 0969ms total)
T13920 012:876 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0970ms total)
T13920 012:877 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 03 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 0972ms total)
T13920 012:879 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 36 66 66 31 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0973ms total)
T13920 012:882 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0000ms, 0973ms total)
T13920 012:883 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 0973ms total)
T13920 012:884 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 0974ms total)
T13920 012:885 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: D8 03  returns 0x02 (0001ms, 0975ms total)
T13920 012:886 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 0976ms total)
T13920 012:889 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0977ms total)
T13920 012:890 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 0977ms total)
T13920 012:890 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0978ms total)
T13920 012:891 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 0979ms total)
T13920 012:892 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 0979ms total)
T13920 012:892 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 0980ms total)
T196EC 012:893 JLINK_IsHalted()  returns FALSE (0001ms, 0981ms total)
T196EC 012:996 JLINK_IsHalted()  returns FALSE (0000ms, 0980ms total)
T196EC 013:097 JLINK_IsHalted()  returns FALSE (0000ms, 0980ms total)
T196EC 013:198 JLINK_IsHalted()  returns FALSE (0000ms, 0980ms total)
T196EC 013:300 JLINK_IsHalted()  returns FALSE (0000ms, 0980ms total)
T13920 013:402 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 0982ms total)
T13920 013:405 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 36 66 66 31 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0983ms total)
T13920 013:406 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 0984ms total)
T13920 013:408 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 0984ms total)
T13920 013:408 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0001ms, 0985ms total)
T13920 013:410 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 0986ms total)
T13920 013:411 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 03 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0987ms total)
T13920 013:412 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 36 66 66 31 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0988ms total)
T13920 013:416 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0000ms, 0988ms total)
T13920 013:417 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 0988ms total)
T13920 013:419 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 0988ms total)
T13920 013:419 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 43 04  returns 0x02 (0001ms, 0989ms total)
T13920 013:420 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 0990ms total)
T13920 013:422 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0991ms total)
T13920 013:423 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 0992ms total)
T13920 013:424 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 0993ms total)
T13920 013:425 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 0993ms total)
T13920 013:425 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 0994ms total)
T13920 013:426 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 0994ms total)
T196EC 013:427 JLINK_IsHalted()  returns FALSE (0001ms, 0995ms total)
T13920 013:433 JLINK_SetBPEx(Addr = 0x08010C16, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008)  returns 0x00000002 (0001ms, 0995ms total)
T196EC 013:529 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T196EC 013:630 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T196EC 013:731 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T196EC 013:833 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T13920 013:935 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 0996ms total)
T13920 013:937 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 36 66 66 31 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0997ms total)
T13920 013:939 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 0997ms total)
T13920 013:940 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 0998ms total)
T13920 013:941 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0000ms, 0998ms total)
T13920 013:942 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 0998ms total)
T13920 013:943 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 2D 59 47 04 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0999ms total)
T13920 013:945 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 36 66 66 31 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1000ms total)
T13920 013:947 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0001ms, 1001ms total)
T13920 013:948 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 1002ms total)
T13920 013:951 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1003ms total)
T13920 013:952 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 8B 04  returns 0x02 (0000ms, 1003ms total)
T13920 013:953 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 1003ms total)
T13920 013:955 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1004ms total)
T13920 013:956 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1005ms total)
T13920 013:957 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1005ms total)
T13920 013:957 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1006ms total)
T13920 013:958 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1006ms total)
T13920 013:958 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1007ms total)
T196EC 013:960 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T196EC 014:061 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T196EC 014:162 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T196EC 014:263 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T196EC 014:365 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T13920 014:467 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1009ms total)
T13920 014:470 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 36 66 66 31 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1010ms total)
T13920 014:471 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1011ms total)
T13920 014:473 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 1011ms total)
T13920 014:473 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0001ms, 1012ms total)
T13920 014:474 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1013ms total)
T13920 014:475 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 2D 59 47 04 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1015ms total)
T13920 014:477 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 36 66 66 31 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1016ms total)
T13920 014:480 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0001ms, 1017ms total)
T13920 014:481 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 1018ms total)
T13920 014:483 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1018ms total)
T13920 014:483 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: E8 04  returns 0x02 (0001ms, 1019ms total)
T13920 014:484 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1020ms total)
T13920 014:487 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1021ms total)
T13920 014:488 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1021ms total)
T13920 014:488 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1022ms total)
T13920 014:489 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1023ms total)
T13920 014:490 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1024ms total)
T13920 014:491 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1024ms total)
T196EC 014:492 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T196EC 014:593 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T196EC 014:695 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T196EC 014:797 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T196EC 014:898 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T13920 015:000 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1026ms total)
T13920 015:003 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 35 38 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1028ms total)
T13920 015:006 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1029ms total)
T13920 015:007 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1030ms total)
T13920 015:008 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0001ms, 1031ms total)
T13920 015:009 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1032ms total)
T13920 015:011 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 05 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1033ms total)
T13920 015:012 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 35 38 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1034ms total)
T13920 015:015 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0001ms, 1035ms total)
T13920 015:016 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 1036ms total)
T13920 015:018 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1037ms total)
T13920 015:019 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 45 05  returns 0x02 (0000ms, 1037ms total)
T13920 015:020 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1038ms total)
T13920 015:022 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1039ms total)
T13920 015:023 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1040ms total)
T13920 015:024 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1040ms total)
T13920 015:024 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1041ms total)
T13920 015:025 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1042ms total)
T13920 015:026 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1042ms total)
T196EC 015:027 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T196EC 015:129 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T196EC 015:230 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T196EC 015:331 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T196EC 015:432 JLINK_IsHalted()  returns FALSE (0000ms, 1042ms total)
T13920 015:529 JLINK_ReadMemEx(0x200007DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007DC) - Data: 00 38 01 40  returns 0x04 (0000ms, 1042ms total)
T13920 015:529 JLINK_ReadMemEx(0x200007E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007E0) - Data: 00 C2 01 00  returns 0x04 (0001ms, 1043ms total)
T13920 015:530 JLINK_ReadMemEx(0x200007E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1044ms total)
T13920 015:531 JLINK_ReadMemEx(0x200007E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007E8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1044ms total)
T13920 015:531 JLINK_ReadMemEx(0x200007EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007EC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1045ms total)
T13920 015:532 JLINK_ReadMemEx(0x200007F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007F0) - Data: 0C 00 00 00  returns 0x04 (0001ms, 1046ms total)
T13920 015:533 JLINK_ReadMemEx(0x200007F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1046ms total)
T13920 015:533 JLINK_ReadMemEx(0x200007F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007F8) - Data: 00 00 00 00  returns 0x04 (0001ms, 1047ms total)
T13920 015:534 JLINK_ReadMemEx(0x200007FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007FC) - Data: 00 00 00 00  returns 0x04 (0000ms, 1047ms total)
T13920 015:534 JLINK_ReadMemEx(0x20000800, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000800) - Data: 00 00 00 00  returns 0x04 (0001ms, 1048ms total)
T13920 015:535 JLINK_ReadMemEx(0x20000804, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000804) - Data: 00 00 00 00  returns 0x04 (0001ms, 1049ms total)
T13920 015:536 JLINK_ReadMemEx(0x20000808, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000808) - Data: 00 00 00 00  returns 0x04 (0000ms, 1049ms total)
T13920 015:536 JLINK_ReadMemEx(0x2000080C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000080C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1050ms total)
T13920 015:537 JLINK_ReadMemEx(0x20000810, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000810) - Data: 00 00 00 00  returns 0x04 (0001ms, 1051ms total)
T13920 015:538 JLINK_ReadMemEx(0x20000814, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000814) - Data: 00 00 00 00  returns 0x04 (0000ms, 1051ms total)
T13920 015:538 JLINK_ReadMemEx(0x20000818, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000818) - Data: 00 00 00 00  returns 0x04 (0001ms, 1052ms total)
T13920 015:539 JLINK_ReadMemEx(0x2000081C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000081C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1053ms total)
T13920 015:540 JLINK_ReadMemEx(0x20000820, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000820) - Data: 00 00 00 00  returns 0x04 (0000ms, 1053ms total)
T13920 015:553 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1054ms total)
T13920 015:556 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 35 38 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1055ms total)
T13920 015:557 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1056ms total)
T13920 015:559 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 1056ms total)
T13920 015:559 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0001ms, 1057ms total)
T13920 015:561 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1057ms total)
T13920 015:562 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 05 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1058ms total)
T13920 015:563 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 35 38 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1059ms total)
T13920 015:566 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0001ms, 1060ms total)
T13920 015:567 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 1061ms total)
T13920 015:569 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1061ms total)
T13920 015:569 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 88 05  returns 0x02 (0001ms, 1062ms total)
T13920 015:571 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 1062ms total)
T13920 015:573 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1063ms total)
T13920 015:574 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1064ms total)
T13920 015:575 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1064ms total)
T13920 015:575 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1065ms total)
T13920 015:576 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1065ms total)
T13920 015:576 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1066ms total)
T196EC 015:577 JLINK_IsHalted()  returns FALSE (0001ms, 1067ms total)
T196EC 015:679 JLINK_IsHalted()  returns FALSE (0000ms, 1066ms total)
T196EC 015:779 JLINK_IsHalted()  returns FALSE (0000ms, 1066ms total)
T196EC 015:881 JLINK_IsHalted()  returns FALSE (0000ms, 1066ms total)
T196EC 015:982 JLINK_IsHalted()  returns FALSE (0000ms, 1066ms total)
T13920 016:084 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1067ms total)
T13920 016:086 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 35 38 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1068ms total)
T13920 016:087 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1069ms total)
T13920 016:089 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 1069ms total)
T13920 016:089 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0001ms, 1070ms total)
T13920 016:091 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1070ms total)
T13920 016:092 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 2D 59 47 06 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1071ms total)
T13920 016:093 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 35 38 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1072ms total)
T13920 016:096 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0000ms, 1072ms total)
T13920 016:097 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 1072ms total)
T13920 016:099 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1072ms total)
T13920 016:099 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: FA 05  returns 0x02 (0001ms, 1073ms total)
T13920 016:100 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1074ms total)
T13920 016:103 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1075ms total)
T13920 016:104 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1075ms total)
T13920 016:104 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1076ms total)
T13920 016:105 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1077ms total)
T13920 016:106 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1077ms total)
T13920 016:106 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1078ms total)
T196EC 016:107 JLINK_IsHalted()  returns FALSE (0001ms, 1079ms total)
T196EC 016:210 JLINK_IsHalted()  returns FALSE (0000ms, 1078ms total)
T196EC 016:311 JLINK_IsHalted()  returns FALSE (0000ms, 1078ms total)
T196EC 016:412 JLINK_IsHalted()  returns FALSE (0000ms, 1078ms total)
T196EC 016:513 JLINK_IsHalted()  returns FALSE (0000ms, 1078ms total)
T13920 016:615 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1079ms total)
T13920 016:617 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 35 38 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1080ms total)
T13920 016:618 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1081ms total)
T13920 016:620 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 1081ms total)
T13920 016:620 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0001ms, 1082ms total)
T13920 016:621 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1083ms total)
T13920 016:622 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 2D 59 47 06 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1085ms total)
T13920 016:624 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 35 38 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1086ms total)
T13920 016:626 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0001ms, 1087ms total)
T13920 016:627 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 1088ms total)
T13920 016:629 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1089ms total)
T13920 016:630 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 30 06  returns 0x02 (0001ms, 1090ms total)
T13920 016:631 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1091ms total)
T13920 016:633 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1092ms total)
T13920 016:634 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1093ms total)
T13920 016:635 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1093ms total)
T13920 016:635 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1094ms total)
T13920 016:636 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1095ms total)
T13920 016:637 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1095ms total)
T196EC 016:638 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T196EC 016:739 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T196EC 016:841 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T196EC 016:942 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T196EC 017:043 JLINK_IsHalted()  returns FALSE (0000ms, 1095ms total)
T13920 017:145 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1097ms total)
T13920 017:147 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 35 38 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1098ms total)
T13920 017:149 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 1098ms total)
T13920 017:150 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1099ms total)
T13920 017:151 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0000ms, 1099ms total)
T13920 017:152 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1099ms total)
T13920 017:153 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 2D 59 47 07 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1100ms total)
T13920 017:154 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 35 38 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1101ms total)
T13920 017:156 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0001ms, 1102ms total)
T13920 017:158 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 1102ms total)
T13920 017:159 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1103ms total)
T13920 017:160 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 9E 06  returns 0x02 (0001ms, 1104ms total)
T13920 017:161 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1105ms total)
T13920 017:163 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1106ms total)
T13920 017:164 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1107ms total)
T13920 017:165 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1107ms total)
T13920 017:165 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1108ms total)
T13920 017:166 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1108ms total)
T13920 017:166 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1109ms total)
T196EC 017:167 JLINK_IsHalted()  returns FALSE (0001ms, 1110ms total)
T196EC 017:270 JLINK_IsHalted()  returns FALSE (0000ms, 1109ms total)
T196EC 017:371 JLINK_IsHalted()  returns FALSE (0000ms, 1109ms total)
T196EC 017:473 JLINK_IsHalted()  returns FALSE (0000ms, 1109ms total)
T196EC 017:574 JLINK_IsHalted()  returns FALSE (0000ms, 1109ms total)
T13920 017:676 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1110ms total)
T13920 017:678 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 35 38 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1111ms total)
T13920 017:679 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1112ms total)
T13920 017:680 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1113ms total)
T13920 017:681 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0001ms, 1114ms total)
T13920 017:682 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1115ms total)
T13920 017:683 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 2D 59 47 07 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1116ms total)
T13920 017:684 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 37 35 35 35 38 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1117ms total)
T13920 017:687 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0000ms, 1117ms total)
T13920 017:688 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 1117ms total)
T13920 017:689 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1118ms total)
T13920 017:690 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: DD 06  returns 0x02 (0001ms, 1119ms total)
T13920 017:691 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1120ms total)
T13920 017:693 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 24 47 4E 47 47 41 2C 2C 2C 2C 2C 2C 30 2C 30 30 ...  returns 0x20 (0001ms, 1121ms total)
T13920 017:704 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1121ms total)
T13920 017:704 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1122ms total)
T13920 017:705 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1123ms total)
T13920 017:706 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1123ms total)
T13920 017:706 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1124ms total)
T196EC 017:707 JLINK_IsHalted()  returns FALSE (0001ms, 1125ms total)
T196EC 017:809 JLINK_IsHalted()  returns FALSE (0000ms, 1124ms total)
T196EC 017:911 JLINK_IsHalted()  returns FALSE (0000ms, 1124ms total)
T196EC 018:012 JLINK_IsHalted()  returns FALSE (0000ms, 1124ms total)
T196EC 018:113 JLINK_IsHalted()  returns FALSE (0000ms, 1124ms total)
T13920 018:215 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1125ms total)
T13920 018:217 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 38 35 35 66 33 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1126ms total)
T13920 018:219 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1127ms total)
T13920 018:221 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 1127ms total)
T13920 018:221 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0001ms, 1128ms total)
T13920 018:222 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1129ms total)
T13920 018:224 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 08 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1130ms total)
T13920 018:225 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 38 35 35 66 33 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1131ms total)
T13920 018:228 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0000ms, 1131ms total)
T13920 018:229 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 1131ms total)
T13920 018:230 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1132ms total)
T13920 018:231 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 45 07  returns 0x02 (0001ms, 1133ms total)
T13920 018:232 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1134ms total)
T13920 018:234 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1135ms total)
T13920 018:245 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1136ms total)
T13920 018:246 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1136ms total)
T13920 018:246 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1137ms total)
T13920 018:247 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1138ms total)
T13920 018:248 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1138ms total)
T196EC 018:249 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
T196EC 018:351 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
T196EC 018:452 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
T196EC 018:554 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
T196EC 018:655 JLINK_IsHalted()  returns FALSE (0000ms, 1138ms total)
T13920 018:757 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1140ms total)
T13920 018:760 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 35 35 35 63 65 66 31 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1141ms total)
T13920 018:762 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1142ms total)
T13920 018:764 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 1142ms total)
T13920 018:764 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1143ms total)
T13920 018:765 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1144ms total)
T13920 018:767 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 09 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1145ms total)
T13920 018:768 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 35 35 35 63 65 66 31 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1146ms total)
T13920 018:771 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1147ms total)
T13920 018:772 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 1148ms total)
T13920 018:774 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1148ms total)
T13920 018:774 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 8A 07  returns 0x02 (0001ms, 1149ms total)
T13920 018:775 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1150ms total)
T13920 018:778 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1151ms total)
T13920 018:779 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1152ms total)
T13920 018:780 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1153ms total)
T13920 018:781 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 1153ms total)
T13920 018:781 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1154ms total)
T13920 018:782 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1155ms total)
T196EC 018:783 JLINK_IsHalted()  returns FALSE (0001ms, 1156ms total)
T196EC 018:885 JLINK_IsHalted()  returns FALSE (0000ms, 1155ms total)
T196EC 018:986 JLINK_IsHalted()  returns FALSE (0000ms, 1155ms total)
T196EC 019:088 JLINK_IsHalted()  returns FALSE (0001ms, 1156ms total)
T196EC 019:189 JLINK_IsHalted()  returns FALSE (0000ms, 1155ms total)
T13920 019:291 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1157ms total)
T13920 019:293 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 35 35 35 63 65 66 31 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1158ms total)
T13920 019:295 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 1158ms total)
T13920 019:296 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1159ms total)
T13920 019:297 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 03  returns 0x01 (0001ms, 1160ms total)
T13920 019:298 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1161ms total)
T13920 019:299 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 09 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1162ms total)
T13920 019:300 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 35 35 35 63 65 66 31 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1163ms total)
T13920 019:303 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 03  returns 0x01 (0001ms, 1164ms total)
T13920 019:304 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 1165ms total)
T13920 019:306 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1165ms total)
T13920 019:306 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: EF 07  returns 0x02 (0001ms, 1166ms total)
T13920 019:307 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1167ms total)
T13920 019:309 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1168ms total)
T13920 019:310 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1169ms total)
T13920 019:311 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1170ms total)
T13920 019:312 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 1170ms total)
T13920 019:312 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1171ms total)
T13920 019:313 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1172ms total)
T196EC 019:314 JLINK_IsHalted()  returns FALSE (0001ms, 1173ms total)
T196EC 019:416 JLINK_IsHalted()  returns FALSE (0000ms, 1172ms total)
T196EC 019:517 JLINK_IsHalted()  returns FALSE (0000ms, 1172ms total)
T196EC 019:618 JLINK_IsHalted()  returns FALSE (0000ms, 1172ms total)
T196EC 019:719 JLINK_IsHalted()  returns FALSE (0000ms, 1172ms total)
T13920 019:822 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1174ms total)
T13920 019:824 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 38 35 35 34 39 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1175ms total)
T13920 019:826 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1176ms total)
T13920 019:827 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1177ms total)
T13920 019:828 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0001ms, 1178ms total)
T13920 019:829 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1179ms total)
T13920 019:830 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 0A 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1180ms total)
T13920 019:832 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 38 35 35 34 39 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1180ms total)
T13920 019:835 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0000ms, 1180ms total)
T13920 019:836 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0001ms, 1181ms total)
T13920 019:838 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1181ms total)
T13920 019:838 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 2E 08  returns 0x02 (0001ms, 1182ms total)
T13920 019:839 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1183ms total)
T13920 019:841 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1184ms total)
T13920 019:842 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1185ms total)
T13920 019:843 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1186ms total)
T13920 019:844 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 1186ms total)
T13920 019:844 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1187ms total)
T13920 019:845 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1188ms total)
T196EC 019:846 JLINK_IsHalted()  returns FALSE (0001ms, 1189ms total)
T196EC 019:948 JLINK_IsHalted()  returns TRUE (0003ms, 1191ms total)
T196EC 019:951 JLINK_Halt()  returns 0x00 (0000ms, 1188ms total)
T196EC 019:951 JLINK_IsHalted()  returns TRUE (0000ms, 1188ms total)
T196EC 019:951 JLINK_IsHalted()  returns TRUE (0000ms, 1188ms total)
T196EC 019:951 JLINK_IsHalted()  returns TRUE (0000ms, 1188ms total)
T196EC 019:951 JLINK_ReadReg(R15 (PC))  returns 0x08010C16 (0000ms, 1188ms total)
T196EC 019:951 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1188ms total)
T196EC 019:951 JLINK_ClrBPEx(BPHandle = 0x00000002)  returns 0x00 (0000ms, 1188ms total)
T196EC 019:951 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1189ms total)
T196EC 019:952 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1190ms total)
T196EC 019:953 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 1190ms total)
T196EC 019:953 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 1190ms total)
T196EC 019:953 JLINK_ReadReg(R1)  returns 0x00000033 (0000ms, 1190ms total)
T196EC 019:953 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 1190ms total)
T196EC 019:953 JLINK_ReadReg(R3)  returns 0x0000007D (0000ms, 1190ms total)
T196EC 019:953 JLINK_ReadReg(R4)  returns 0x200001E4 (0000ms, 1190ms total)
T196EC 019:953 JLINK_ReadReg(R5)  returns 0x00000033 (0000ms, 1190ms total)
T196EC 019:953 JLINK_ReadReg(R6)  returns 0x08013F9C (0000ms, 1190ms total)
T196EC 019:953 JLINK_ReadReg(R7)  returns 0x20000204 (0000ms, 1190ms total)
T196EC 019:953 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 1190ms total)
T196EC 019:953 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 1190ms total)
T196EC 019:953 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 1190ms total)
T196EC 019:953 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 1190ms total)
T196EC 019:953 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1190ms total)
T196EC 019:953 JLINK_ReadReg(R13 (SP))  returns 0x20004860 (0000ms, 1190ms total)
T196EC 019:953 JLINK_ReadReg(R14)  returns 0x0800B209 (0000ms, 1190ms total)
T196EC 019:953 JLINK_ReadReg(R15 (PC))  returns 0x08010C16 (0001ms, 1191ms total)
T196EC 019:954 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1191ms total)
T196EC 019:954 JLINK_ReadReg(MSP)  returns 0x20004860 (0000ms, 1191ms total)
T196EC 019:954 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 1191ms total)
T196EC 019:954 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1191ms total)
T13920 019:954 JLINK_ReadMemEx(0x2000488C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20004880) -- Updating C cache (64 bytes @ 0x20004880) -- Read from C cache (4 bytes @ 0x2000488C) - Data: D7 0C 01 08  returns 0x04 (0001ms, 1192ms total)
T13920 019:955 JLINK_ReadMemEx(0x20004884, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20004884) - Data: E4 01 00 20  returns 0x04 (0000ms, 1192ms total)
T13920 019:955 JLINK_ReadMemEx(0x20004888, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20004888) - Data: 00 00 00 00  returns 0x04 (0000ms, 1192ms total)
T13920 019:955 JLINK_ReadMemEx(0x2000488C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000488C) - Data: D7 0C 01 08  returns 0x04 (0000ms, 1192ms total)
T13920 019:955 JLINK_ReadMemEx(0x200048A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048A4) - Data: 31 D5 00 08  returns 0x04 (0000ms, 1192ms total)
T13920 019:961 JLINK_ReadMemEx(0x2000489C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000489C) - Data: 1A 00 00 20  returns 0x04 (0000ms, 1192ms total)
T13920 019:962 JLINK_ReadMemEx(0x200048A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048A0) - Data: 00 08 00 50  returns 0x04 (0000ms, 1193ms total)
T13920 019:962 JLINK_ReadMemEx(0x200048A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048A4) - Data: 31 D5 00 08  returns 0x04 (0000ms, 1193ms total)
T13920 019:962 JLINK_ReadMemEx(0x200048BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048BC) - Data: 17 2B 01 08  returns 0x04 (0000ms, 1193ms total)
T13920 019:962 JLINK_ReadMemEx(0x200048AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048AC) - Data: F4 01 00 00  returns 0x04 (0000ms, 1193ms total)
T13920 019:962 JLINK_ReadMemEx(0x200048B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048B0) - Data: 00 08 00 50  returns 0x04 (0000ms, 1193ms total)
T13920 019:962 JLINK_ReadMemEx(0x200048B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048B4) - Data: 9C 3F 01 08  returns 0x04 (0000ms, 1193ms total)
T13920 019:962 JLINK_ReadMemEx(0x200048B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048B8) - Data: 00 50 00 08  returns 0x04 (0000ms, 1193ms total)
T13920 019:962 JLINK_ReadMemEx(0x200048BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048BC) - Data: 17 2B 01 08  returns 0x04 (0000ms, 1193ms total)
T13920 019:962 JLINK_ReadMemEx(0x200048C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200048C0) -- Updating C cache (64 bytes @ 0x200048C0) -- Read from C cache (4 bytes @ 0x200048C4) - Data: 01 5B 00 08  returns 0x04 (0001ms, 1194ms total)
T13920 019:965 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200002C0) -- Updating C cache (64 bytes @ 0x200002C0) -- Read from C cache (32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1196ms total)
T13920 019:967 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20003840) -- Updating C cache (128 bytes @ 0x20003840) -- Read from C cache (32 bytes @ 0x20003874) - Data: 35 38 35 35 34 39 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1198ms total)
T13920 019:970 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000300) -- Updating C cache (64 bytes @ 0x20000300) -- Read from C cache (1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1199ms total)
T13920 019:972 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000380) -- Updating C cache (64 bytes @ 0x20000380) -- Read from C cache (2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1200ms total)
T13920 019:973 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000340) -- Updating C cache (64 bytes @ 0x20000340) -- Read from C cache (1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0001ms, 1201ms total)
T13920 019:975 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1201ms total)
T13920 019:975 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000200) -- Updating C cache (64 bytes @ 0x20000200) -- Read from C cache (32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 0A 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1203ms total)
T13920 019:977 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20003874) - Data: 35 38 35 35 34 39 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1203ms total)
T13920 019:977 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20003200) -- Updating C cache (64 bytes @ 0x20003200) -- Read from C cache (32 bytes @ 0x20003210) - Data: 24 58 54 42 2C 34 37 35 39 2C 38 35 25 2C 33 2E ...  returns 0x20 (0001ms, 1204ms total)
T13920 019:995 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0000ms, 1204ms total)
T13920 019:995 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 1204ms total)
T13920 019:995 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200001C0) -- Updating C cache (64 bytes @ 0x200001C0) -- Read from C cache (4 bytes @ 0x200001F4) - Data: 5D 32 00 00  returns 0x04 (0003ms, 1207ms total)
T13920 019:998 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200001F4) - Data: 5D 32 00 00  returns 0x04 (0000ms, 1207ms total)
T13920 020:014 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1208ms total)
T13920 020:015 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000010) - Data: 2E 08  returns 0x02 (0000ms, 1208ms total)
T13920 020:015 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 1208ms total)
T13920 020:016 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20003210) - Data: 24 58 54 42 2C 34 37 35 39 2C 38 35 25 2C 33 2E ...  returns 0x20 (0000ms, 1208ms total)
T13920 020:030 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20002440) -- Updating C cache (128 bytes @ 0x20002440) -- Read from C cache (32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1210ms total)
T13920 020:032 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1210ms total)
T13920 020:032 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000180) -- Updating C cache (64 bytes @ 0x20000180) -- Read from C cache (2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1211ms total)
T13920 020:033 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 1211ms total)
T13920 020:033 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1211ms total)
T13920 020:033 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1211ms total)
T13920 020:034 JLINK_ReadMemEx(0x08010C16, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08010C00) -- Updating C cache (64 bytes @ 0x08010C00) -- Read from C cache (2 bytes @ 0x08010C16) - Data: AA B2  returns 0x02 (0001ms, 1212ms total)
T13920 020:035 JLINK_ReadMemEx(0x08010C18, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08010C40) -- Updating C cache (64 bytes @ 0x08010C40) -- Read from C cache (60 bytes @ 0x08010C18) - Data: DB 00 16 49 16 48 FA F7 06 F8 29 46 13 48 F4 F7 ...  returns 0x3C (0001ms, 1213ms total)
T13920 020:036 JLINK_ReadMemEx(0x08010C18, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010C18) - Data: DB 00  returns 0x02 (0000ms, 1213ms total)
T13920 020:036 JLINK_ReadMemEx(0x08010C18, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010C18) - Data: DB 00 16 49 16 48 FA F7 06 F8 29 46 13 48 F4 F7 ...  returns 0x3C (0000ms, 1213ms total)
T13920 020:036 JLINK_ReadMemEx(0x08010C18, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010C18) - Data: DB 00  returns 0x02 (0000ms, 1213ms total)
T13920 020:036 JLINK_ReadMemEx(0x08010C1A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010C1A) - Data: 16 49  returns 0x02 (0000ms, 1213ms total)
T13920 020:036 JLINK_ReadMemEx(0x08010C1A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010C1A) - Data: 16 49  returns 0x02 (0000ms, 1213ms total)
T13920 020:036 JLINK_ReadMemEx(0x08010C1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010C1C) - Data: 16 48 FA F7 06 F8 29 46 13 48 F4 F7 E7 FA 00 20 ...  returns 0x3C (0000ms, 1213ms total)
T13920 020:036 JLINK_ReadMemEx(0x08010C1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010C1C) - Data: 16 48  returns 0x02 (0000ms, 1213ms total)
T13920 020:036 JLINK_ReadMemEx(0x08010C1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010C1C) - Data: 16 48 FA F7 06 F8 29 46 13 48 F4 F7 E7 FA 00 20 ...  returns 0x3C (0000ms, 1213ms total)
T13920 020:036 JLINK_ReadMemEx(0x08010C1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010C1C) - Data: 16 48  returns 0x02 (0000ms, 1213ms total)
T13920 020:036 JLINK_ReadMemEx(0x08010C1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010C1E) - Data: FA F7  returns 0x02 (0000ms, 1213ms total)
T13920 028:570 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 1214ms total)
T13920 028:570 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) (0070ms, 1284ms total)
T13920 028:640 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 1284ms total)
T13920 028:640 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 1284ms total)
T13920 028:640 JLINK_ReadMemEx(0x080000D4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x080000C0) -- Updating C cache (128 bytes @ 0x080000C0) -- Read from C cache (60 bytes @ 0x080000D4) - Data: 04 48 80 47 04 48 00 47 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0002ms, 1286ms total)
T13920 028:642 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 1286ms total)
T13920 028:642 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 1286ms total)
T13920 028:642 JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D6) - Data: 80 47  returns 0x02 (0000ms, 1286ms total)
T13920 028:642 JLINK_ReadMemEx(0x080000D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000D8) - Data: 04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0000ms, 1286ms total)
T13920 028:642 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 1286ms total)
T13920 028:642 JLINK_ReadMemEx(0x080000D8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000D8) - Data: 04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...  returns 0x3C (0000ms, 1286ms total)
T13920 028:642 JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D8) - Data: 04 48  returns 0x02 (0000ms, 1286ms total)
T13920 028:642 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0000ms, 1286ms total)
T13920 028:642 JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DA) - Data: 00 47  returns 0x02 (0001ms, 1287ms total)
T13920 028:643 JLINK_ReadMemEx(0x080000DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000DC) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 45 1F 00 08 ...  returns 0x3C (0000ms, 1287ms total)
T13920 028:643 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 1287ms total)
T13920 028:643 JLINK_ReadMemEx(0x080000DC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x080000DC) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 45 1F 00 08 ...  returns 0x3C (0000ms, 1287ms total)
T13920 028:643 JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DC) - Data: FE E7  returns 0x02 (0000ms, 1287ms total)
T13920 028:643 JLINK_ReadMemEx(0x080000DE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000DE) - Data: FE E7  returns 0x02 (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(R0)  returns 0xFFFFFFFF (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(R1)  returns 0xFFFFFFFF (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(R3)  returns 0xFFFFFFFF (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(R4)  returns 0xFFFFFFFF (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(R5)  returns 0xFFFFFFFF (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(R7)  returns 0xFFFFFFFF (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(R12)  returns 0xFFFFFFFF (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(R13 (SP))  returns 0x20001188 (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(R14)  returns 0xFFFFFFFF (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(R15 (PC))  returns 0x080000D4 (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(XPSR)  returns 0xF1000000 (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(MSP)  returns 0x20001188 (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1287ms total)
T13920 028:675 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200002C0) -- Updating C cache (64 bytes @ 0x200002C0) -- Read from C cache (32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1288ms total)
T13920 028:677 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20003840) -- Updating C cache (128 bytes @ 0x20003840) -- Read from C cache (32 bytes @ 0x20003874) - Data: 35 38 35 35 34 39 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1290ms total)
T13920 028:679 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000300) -- Updating C cache (64 bytes @ 0x20000300) -- Read from C cache (1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1291ms total)
T13920 028:681 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000380) -- Updating C cache (64 bytes @ 0x20000380) -- Read from C cache (2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1292ms total)
T13920 028:682 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000340) -- Updating C cache (64 bytes @ 0x20000340) -- Read from C cache (1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0001ms, 1293ms total)
T13920 028:683 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1293ms total)
T13920 028:684 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000200) -- Updating C cache (64 bytes @ 0x20000200) -- Read from C cache (32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 0A 00 55 10 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1294ms total)
T13920 028:685 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20003874) - Data: 35 38 35 35 34 39 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1294ms total)
T13920 028:685 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20003200) -- Updating C cache (64 bytes @ 0x20003200) -- Read from C cache (32 bytes @ 0x20003210) - Data: 24 58 54 42 2C 34 37 35 39 2C 38 35 25 2C 33 2E ...  returns 0x20 (0001ms, 1295ms total)
T13920 028:687 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0000ms, 1295ms total)
T13920 028:687 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000020A) - Data: 01  returns 0x01 (0000ms, 1295ms total)
T13920 028:687 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200001C0) -- Updating C cache (64 bytes @ 0x200001C0) -- Read from C cache (4 bytes @ 0x200001F4) - Data: 5D 32 00 00  returns 0x04 (0001ms, 1296ms total)
T13920 028:689 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1297ms total)
T13920 028:690 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000010) - Data: 2E 08  returns 0x02 (0000ms, 1297ms total)
T13920 028:690 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 1297ms total)
T13920 028:692 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20003210) - Data: 24 58 54 42 2C 34 37 35 39 2C 38 35 25 2C 33 2E ...  returns 0x20 (0000ms, 1297ms total)
T13920 028:693 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20002440) -- Updating C cache (128 bytes @ 0x20002440) -- Read from C cache (32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1298ms total)
T13920 028:694 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1299ms total)
T13920 028:695 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000180) -- Updating C cache (64 bytes @ 0x20000180) -- Read from C cache (2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1300ms total)
T13920 028:696 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 1300ms total)
T13920 028:696 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1300ms total)
T13920 028:696 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1300ms total)
T196EC 028:984 JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x080000D4) - Data: 04 48  returns 0x02 (0000ms, 1300ms total)
T196EC 028:984 JLINK_SetBPEx(Addr = 0x08010C16, Type = 0xFFFFFFF2)  returns 0x00000003 (0000ms, 1300ms total)
T196EC 028:984 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0005ms, 1305ms total)
T196EC 029:091 JLINK_IsHalted()  returns FALSE (0000ms, 1305ms total)
T196EC 029:192 JLINK_IsHalted()  returns FALSE (0000ms, 1305ms total)
T196EC 029:293 JLINK_IsHalted()  returns FALSE (0000ms, 1305ms total)
T196EC 029:395 JLINK_IsHalted()  returns FALSE (0000ms, 1305ms total)
T13920 029:497 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1306ms total)
T13920 029:499 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 38 35 35 34 39 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1307ms total)
T13920 029:500 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1308ms total)
T13920 029:502 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 1308ms total)
T13920 029:502 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1309ms total)
T13920 029:503 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 00  returns 0x01 (0001ms, 1310ms total)
T13920 029:504 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1312ms total)
T13920 029:506 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 38 35 35 34 39 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1313ms total)
T13920 029:507 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 24 58 54 42 2C 34 37 35 39 2C 38 35 25 2C 33 2E ...  returns 0x20 (0001ms, 1314ms total)
T13920 029:508 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1315ms total)
T13920 029:509 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1316ms total)
T13920 029:510 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1317ms total)
T13920 029:511 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1318ms total)
T13920 029:512 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 00 00  returns 0x02 (0001ms, 1319ms total)
T13920 029:513 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0000ms, 1319ms total)
T13920 029:514 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 24 58 54 42 2C 34 37 35 39 2C 38 35 25 2C 33 2E ...  returns 0x20 (0001ms, 1320ms total)
T13920 029:516 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1321ms total)
T13920 029:517 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1321ms total)
T13920 029:517 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1322ms total)
T13920 029:518 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 1322ms total)
T13920 029:519 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1322ms total)
T13920 029:519 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1323ms total)
T196EC 029:520 JLINK_IsHalted()  returns FALSE (0001ms, 1324ms total)
T196EC 029:621 JLINK_IsHalted()  returns FALSE (0000ms, 1323ms total)
T196EC 029:722 JLINK_IsHalted()  returns FALSE (0000ms, 1323ms total)
T196EC 029:824 JLINK_IsHalted()  returns FALSE (0000ms, 1323ms total)
T196EC 029:925 JLINK_IsHalted()  returns FALSE (0000ms, 1323ms total)
T13920 030:027 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1324ms total)
T13920 030:030 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1325ms total)
T13920 030:031 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1326ms total)
T13920 030:032 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1327ms total)
T13920 030:033 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1328ms total)
T13920 030:034 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 00  returns 0x01 (0000ms, 1328ms total)
T13920 030:035 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1329ms total)
T13920 030:037 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1330ms total)
T13920 030:038 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1331ms total)
T13920 030:040 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 1331ms total)
T13920 030:040 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1332ms total)
T13920 030:041 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1333ms total)
T13920 030:043 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1333ms total)
T13920 030:043 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 00 00  returns 0x02 (0001ms, 1334ms total)
T13920 030:044 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 1335ms total)
T13920 030:045 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1336ms total)
T13920 030:047 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1337ms total)
T13920 030:048 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1337ms total)
T13920 030:048 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1338ms total)
T13920 030:049 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1339ms total)
T13920 030:050 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1339ms total)
T13920 030:051 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1339ms total)
T196EC 030:051 JLINK_IsHalted()  returns FALSE (0001ms, 1340ms total)
T196EC 030:154 JLINK_IsHalted()  returns FALSE (0000ms, 1339ms total)
T196EC 030:255 JLINK_IsHalted()  returns FALSE (0000ms, 1339ms total)
T196EC 030:356 JLINK_IsHalted()  returns FALSE (0000ms, 1339ms total)
T196EC 030:457 JLINK_IsHalted()  returns FALSE (0000ms, 1339ms total)
T13920 030:560 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1340ms total)
T13920 030:562 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1341ms total)
T13920 030:563 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1342ms total)
T13920 030:564 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1343ms total)
T13920 030:565 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1344ms total)
T13920 030:566 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 00  returns 0x01 (0000ms, 1344ms total)
T13920 030:566 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1346ms total)
T13920 030:568 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1347ms total)
T13920 030:569 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1348ms total)
T13920 030:570 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1349ms total)
T13920 030:571 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0000ms, 1349ms total)
T13920 030:571 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1350ms total)
T13920 030:573 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1350ms total)
T13920 030:574 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 00 00  returns 0x02 (0000ms, 1350ms total)
T13920 030:574 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 1351ms total)
T13920 030:576 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1352ms total)
T13920 030:577 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1353ms total)
T13920 030:578 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1354ms total)
T13920 030:579 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1354ms total)
T13920 030:580 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 1355ms total)
T13920 030:580 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1356ms total)
T13920 030:581 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1357ms total)
T196EC 030:582 JLINK_IsHalted()  returns FALSE (0000ms, 1357ms total)
T196EC 030:683 JLINK_IsHalted()  returns FALSE (0000ms, 1357ms total)
T196EC 030:785 JLINK_IsHalted()  returns FALSE (0000ms, 1357ms total)
T196EC 030:886 JLINK_IsHalted()  returns FALSE (0000ms, 1357ms total)
T196EC 030:987 JLINK_IsHalted()  returns FALSE (0000ms, 1357ms total)
T13920 031:090 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1358ms total)
T13920 031:092 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1359ms total)
T13920 031:093 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1360ms total)
T13920 031:094 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1361ms total)
T13920 031:095 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1362ms total)
T13920 031:096 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1362ms total)
T13920 031:097 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1363ms total)
T13920 031:098 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1364ms total)
T13920 031:099 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1365ms total)
T13920 031:101 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1366ms total)
T13920 031:102 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0000ms, 1366ms total)
T13920 031:102 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1367ms total)
T13920 031:104 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1367ms total)
T13920 031:104 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 5B 00  returns 0x02 (0001ms, 1368ms total)
T13920 031:105 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 1369ms total)
T13920 031:106 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1370ms total)
T13920 031:108 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1371ms total)
T13920 031:109 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1372ms total)
T13920 031:110 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1372ms total)
T13920 031:110 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1373ms total)
T13920 031:111 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1374ms total)
T13920 031:112 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1374ms total)
T196EC 031:112 JLINK_IsHalted()  returns FALSE (0001ms, 1375ms total)
T196EC 031:213 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T196EC 031:315 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T196EC 031:416 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T196EC 031:517 JLINK_IsHalted()  returns FALSE (0000ms, 1374ms total)
T13920 031:630 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1376ms total)
T13920 031:632 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1377ms total)
T13920 031:633 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1378ms total)
T13920 031:634 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1379ms total)
T13920 031:635 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1380ms total)
T13920 031:636 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1380ms total)
T13920 031:637 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1381ms total)
T13920 031:638 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1382ms total)
T13920 031:639 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1383ms total)
T13920 031:641 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1384ms total)
T13920 031:642 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0000ms, 1384ms total)
T13920 031:642 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1385ms total)
T13920 031:643 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1386ms total)
T13920 031:644 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 9D 00  returns 0x02 (0001ms, 1387ms total)
T13920 031:645 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 1388ms total)
T13920 031:646 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1389ms total)
T13920 031:647 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1390ms total)
T13920 031:648 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1391ms total)
T13920 031:649 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1391ms total)
T13920 031:649 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1392ms total)
T13920 031:650 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1393ms total)
T13920 031:651 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1393ms total)
T196EC 031:651 JLINK_IsHalted()  returns FALSE (0001ms, 1394ms total)
T196EC 031:753 JLINK_IsHalted()  returns FALSE (0000ms, 1393ms total)
T196EC 031:854 JLINK_IsHalted()  returns FALSE (0000ms, 1393ms total)
T196EC 031:955 JLINK_IsHalted()  returns FALSE (0000ms, 1393ms total)
T196EC 032:057 JLINK_IsHalted()  returns FALSE (0000ms, 1393ms total)
T13920 032:159 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1394ms total)
T13920 032:161 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1395ms total)
T13920 032:162 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1396ms total)
T13920 032:163 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1397ms total)
T13920 032:164 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0000ms, 1397ms total)
T13920 032:165 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1397ms total)
T13920 032:166 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1398ms total)
T13920 032:167 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1399ms total)
T13920 032:168 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1400ms total)
T13920 032:170 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0000ms, 1400ms total)
T13920 032:170 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1401ms total)
T13920 032:171 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1402ms total)
T13920 032:172 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1403ms total)
T13920 032:173 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: FE 00  returns 0x02 (0000ms, 1403ms total)
T13920 032:174 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0000ms, 1403ms total)
T13920 032:175 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1404ms total)
T13920 032:176 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1405ms total)
T13920 032:177 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1406ms total)
T13920 032:178 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1407ms total)
T13920 032:179 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 1407ms total)
T13920 032:179 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1408ms total)
T13920 032:180 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1409ms total)
T196EC 032:181 JLINK_IsHalted()  returns FALSE (0000ms, 1409ms total)
T196EC 032:283 JLINK_IsHalted()  returns FALSE (0000ms, 1409ms total)
T196EC 032:384 JLINK_IsHalted()  returns FALSE (0000ms, 1409ms total)
T196EC 032:485 JLINK_IsHalted()  returns FALSE (0000ms, 1409ms total)
T196EC 032:586 JLINK_IsHalted()  returns FALSE (0000ms, 1409ms total)
T13920 032:689 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1410ms total)
T13920 032:690 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1411ms total)
T13920 032:692 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 1411ms total)
T13920 032:693 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 1411ms total)
T13920 032:693 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0001ms, 1412ms total)
T13920 032:695 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1412ms total)
T13920 032:695 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1414ms total)
T13920 032:697 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1414ms total)
T13920 032:698 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1415ms total)
T13920 032:699 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0001ms, 1417ms total)
T13920 032:700 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1418ms total)
T13920 032:701 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1419ms total)
T13920 032:702 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1420ms total)
T13920 032:703 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 3D 01  returns 0x02 (0000ms, 1420ms total)
T13920 032:704 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0000ms, 1420ms total)
T13920 032:705 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1421ms total)
T13920 032:707 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1421ms total)
T13920 032:707 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1422ms total)
T13920 032:708 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1423ms total)
T13920 032:709 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 1423ms total)
T13920 032:709 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1424ms total)
T13920 032:710 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1425ms total)
T196EC 032:711 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T196EC 032:812 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T196EC 032:913 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T196EC 033:015 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T196EC 033:116 JLINK_IsHalted()  returns FALSE (0001ms, 1426ms total)
T13920 033:219 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1426ms total)
T13920 033:221 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1427ms total)
T13920 033:222 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 1427ms total)
T13920 033:223 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 1427ms total)
T13920 033:224 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0000ms, 1427ms total)
T13920 033:224 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1428ms total)
T13920 033:225 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1430ms total)
T13920 033:227 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1430ms total)
T13920 033:227 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1431ms total)
T13920 033:229 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0001ms, 1432ms total)
T13920 033:230 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1433ms total)
T13920 033:231 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1433ms total)
T13920 033:232 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1433ms total)
T13920 033:232 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: A2 01  returns 0x02 (0001ms, 1434ms total)
T13920 033:234 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0000ms, 1434ms total)
T13920 033:234 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1435ms total)
T13920 033:236 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1436ms total)
T13920 033:237 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1436ms total)
T13920 033:237 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1437ms total)
T13920 033:238 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1438ms total)
T13920 033:239 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1438ms total)
T13920 033:239 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1439ms total)
T196EC 033:240 JLINK_IsHalted()  returns FALSE (0001ms, 1440ms total)
T196EC 033:342 JLINK_IsHalted()  returns FALSE (0000ms, 1439ms total)
T196EC 033:444 JLINK_IsHalted()  returns FALSE (0000ms, 1439ms total)
T196EC 033:545 JLINK_IsHalted()  returns FALSE (0000ms, 1439ms total)
T196EC 033:646 JLINK_IsHalted()  returns FALSE (0000ms, 1439ms total)
T13920 033:750 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1440ms total)
T13920 033:752 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1441ms total)
T13920 033:753 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1442ms total)
T13920 033:754 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1443ms total)
T13920 033:755 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0000ms, 1443ms total)
T13920 033:756 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1443ms total)
T13920 033:756 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 2D 59 47 00 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1445ms total)
T13920 033:758 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1446ms total)
T13920 033:759 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1447ms total)
T13920 033:760 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0001ms, 1448ms total)
T13920 033:761 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1449ms total)
T13920 033:762 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1449ms total)
T13920 033:763 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1450ms total)
T13920 033:764 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: E8 01  returns 0x02 (0000ms, 1450ms total)
T13920 033:765 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0000ms, 1450ms total)
T13920 033:765 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1451ms total)
T13920 033:767 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1452ms total)
T13920 033:768 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1453ms total)
T13920 033:769 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1453ms total)
T13920 033:769 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1454ms total)
T13920 033:770 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1454ms total)
T13920 033:770 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1455ms total)
T196EC 033:771 JLINK_IsHalted()  returns FALSE (0001ms, 1456ms total)
T196EC 033:873 JLINK_IsHalted()  returns FALSE (0000ms, 1455ms total)
T196EC 033:975 JLINK_IsHalted()  returns FALSE (0000ms, 1455ms total)
T196EC 034:076 JLINK_IsHalted()  returns FALSE (0000ms, 1455ms total)
T196EC 034:177 JLINK_IsHalted()  returns FALSE (0000ms, 1455ms total)
T13920 034:280 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1456ms total)
T13920 034:282 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1457ms total)
T13920 034:283 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1458ms total)
T13920 034:284 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1459ms total)
T13920 034:285 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0001ms, 1460ms total)
T13920 034:286 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1461ms total)
T13920 034:287 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 2D 59 47 00 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1462ms total)
T13920 034:288 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1463ms total)
T13920 034:289 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1464ms total)
T13920 034:291 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0000ms, 1464ms total)
T13920 034:292 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0000ms, 1464ms total)
T13920 034:292 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1465ms total)
T13920 034:293 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1466ms total)
T13920 034:294 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 53 02  returns 0x02 (0001ms, 1467ms total)
T13920 034:295 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 1468ms total)
T13920 034:296 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1469ms total)
T13920 034:298 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 24 47 4E 47 47 41 2C 2C 2C 2C 2C 2C 30 2C 30 30 ...  returns 0x20 (0001ms, 1470ms total)
T13920 034:308 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1471ms total)
T13920 034:309 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1471ms total)
T13920 034:309 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1472ms total)
T13920 034:310 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1473ms total)
T13920 034:311 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1473ms total)
T196EC 034:311 JLINK_IsHalted()  returns FALSE (0001ms, 1474ms total)
T196EC 034:413 JLINK_IsHalted()  returns FALSE (0000ms, 1473ms total)
T196EC 034:514 JLINK_IsHalted()  returns FALSE (0000ms, 1473ms total)
T196EC 034:616 JLINK_IsHalted()  returns FALSE (0000ms, 1473ms total)
T196EC 034:717 JLINK_IsHalted()  returns FALSE (0000ms, 1473ms total)
T13920 034:819 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1474ms total)
T13920 034:821 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1475ms total)
T13920 034:822 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1476ms total)
T13920 034:823 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1477ms total)
T13920 034:824 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0001ms, 1478ms total)
T13920 034:825 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1479ms total)
T13920 034:826 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 01 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1480ms total)
T13920 034:828 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1481ms total)
T13920 034:829 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1482ms total)
T13920 034:830 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0001ms, 1483ms total)
T13920 034:831 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1484ms total)
T13920 034:832 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1485ms total)
T13920 034:833 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1486ms total)
T13920 034:834 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 98 02  returns 0x02 (0000ms, 1486ms total)
T13920 034:835 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0000ms, 1486ms total)
T13920 034:836 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1487ms total)
T13920 034:837 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1488ms total)
T13920 034:848 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1489ms total)
T13920 034:849 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1489ms total)
T13920 034:849 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1490ms total)
T13920 034:850 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1491ms total)
T13920 034:851 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1491ms total)
T196EC 034:852 JLINK_IsHalted()  returns FALSE (0000ms, 1491ms total)
T196EC 034:954 JLINK_IsHalted()  returns FALSE (0000ms, 1491ms total)
T196EC 035:055 JLINK_IsHalted()  returns FALSE (0000ms, 1491ms total)
T196EC 035:156 JLINK_IsHalted()  returns FALSE (0001ms, 1492ms total)
T196EC 035:258 JLINK_IsHalted()  returns FALSE (0000ms, 1491ms total)
T13920 035:361 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1492ms total)
T13920 035:364 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 34 35 38 62 30 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1493ms total)
T13920 035:365 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1494ms total)
T13920 035:368 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 1494ms total)
T13920 035:368 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1495ms total)
T13920 035:371 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1495ms total)
T13920 035:372 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 02 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1496ms total)
T13920 035:374 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 34 35 38 62 30 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1497ms total)
T13920 035:375 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1498ms total)
T13920 035:376 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1499ms total)
T13920 035:377 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1500ms total)
T13920 035:378 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1501ms total)
T13920 035:384 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1501ms total)
T13920 035:384 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: FB 02  returns 0x02 (0001ms, 1502ms total)
T13920 035:386 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0000ms, 1502ms total)
T13920 035:387 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1503ms total)
T13920 035:388 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1504ms total)
T13920 035:389 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1505ms total)
T13920 035:390 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1505ms total)
T13920 035:390 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1506ms total)
T13920 035:391 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1507ms total)
T13920 035:392 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1507ms total)
T196EC 035:393 JLINK_IsHalted()  returns FALSE (0000ms, 1507ms total)
T196EC 035:494 JLINK_IsHalted()  returns FALSE (0000ms, 1507ms total)
T196EC 035:595 JLINK_IsHalted()  returns FALSE (0000ms, 1507ms total)
T196EC 035:697 JLINK_IsHalted()  returns FALSE (0000ms, 1507ms total)
T196EC 035:799 JLINK_IsHalted()  returns FALSE (0000ms, 1507ms total)
T13920 035:901 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1508ms total)
T13920 035:903 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 34 35 38 62 30 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1509ms total)
T13920 035:904 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1510ms total)
T13920 035:905 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1511ms total)
T13920 035:906 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0001ms, 1512ms total)
T13920 035:907 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1513ms total)
T13920 035:908 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 02 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1514ms total)
T13920 035:909 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 34 35 38 62 30 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1515ms total)
T13920 035:910 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1516ms total)
T13920 035:912 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0001ms, 1517ms total)
T13920 035:913 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1518ms total)
T13920 035:914 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1518ms total)
T13920 035:915 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1518ms total)
T13920 035:915 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 42 03  returns 0x02 (0001ms, 1519ms total)
T13920 035:916 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 00 00  returns 0x02 (0001ms, 1520ms total)
T13920 035:917 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1521ms total)
T13920 035:919 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1522ms total)
T13920 035:920 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1523ms total)
T13920 035:921 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1523ms total)
T13920 035:921 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1524ms total)
T13920 035:922 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1525ms total)
T13920 035:923 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1525ms total)
T196EC 035:924 JLINK_IsHalted()  returns FALSE (0000ms, 1525ms total)
T196EC 036:026 JLINK_IsHalted()  returns FALSE (0000ms, 1525ms total)
T196EC 036:127 JLINK_IsHalted()  returns FALSE (0000ms, 1525ms total)
T196EC 036:229 JLINK_IsHalted()  returns FALSE (0000ms, 1525ms total)
T196EC 036:330 JLINK_IsHalted()  returns FALSE (0000ms, 1525ms total)
T13920 036:432 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1526ms total)
T13920 036:434 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 38 35 33 35 65 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1527ms total)
T13920 036:436 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1528ms total)
T13920 036:437 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1529ms total)
T13920 036:438 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1530ms total)
T13920 036:439 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1531ms total)
T13920 036:440 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 03 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1532ms total)
T13920 036:442 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 38 35 33 35 65 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1533ms total)
T13920 036:443 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1534ms total)
T13920 036:444 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1535ms total)
T13920 036:445 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1536ms total)
T13920 036:446 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1537ms total)
T13920 036:447 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1538ms total)
T13920 036:448 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 9B 03  returns 0x02 (0001ms, 1539ms total)
T13920 036:449 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1540ms total)
T13920 036:450 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1541ms total)
T13920 036:452 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1542ms total)
T13920 036:453 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1542ms total)
T13920 036:453 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1543ms total)
T13920 036:454 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1544ms total)
T13920 036:455 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1544ms total)
T13920 036:455 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1545ms total)
T196EC 036:456 JLINK_IsHalted()  returns FALSE (0001ms, 1546ms total)
T196EC 036:558 JLINK_IsHalted()  returns FALSE (0001ms, 1546ms total)
T196EC 036:660 JLINK_IsHalted()  returns FALSE (0001ms, 1546ms total)
T196EC 036:762 JLINK_IsHalted()  returns FALSE (0000ms, 1545ms total)
T196EC 036:863 JLINK_IsHalted()  returns FALSE (0000ms, 1545ms total)
T13920 036:965 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1547ms total)
T13920 036:967 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 38 35 33 35 65 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1548ms total)
T13920 036:969 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 1548ms total)
T13920 036:970 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1549ms total)
T13920 036:971 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0000ms, 1549ms total)
T13920 036:972 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1549ms total)
T13920 036:973 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 03 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1550ms total)
T13920 036:974 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 38 35 33 35 65 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1551ms total)
T13920 036:975 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1552ms total)
T13920 036:976 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0001ms, 1553ms total)
T13920 036:977 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1554ms total)
T13920 036:978 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1555ms total)
T13920 036:979 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1556ms total)
T13920 036:980 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: EE 03  returns 0x02 (0000ms, 1556ms total)
T13920 036:981 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 1556ms total)
T13920 036:982 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1557ms total)
T13920 036:983 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1558ms total)
T13920 036:984 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1559ms total)
T13920 036:985 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1559ms total)
T13920 036:985 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1560ms total)
T13920 036:986 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1561ms total)
T13920 036:987 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1562ms total)
T196EC 036:988 JLINK_IsHalted()  returns FALSE (0001ms, 1563ms total)
T196EC 037:090 JLINK_IsHalted()  returns FALSE (0000ms, 1562ms total)
T196EC 037:191 JLINK_IsHalted()  returns FALSE (0001ms, 1563ms total)
T196EC 037:292 JLINK_IsHalted()  returns FALSE (0000ms, 1562ms total)
T196EC 037:394 JLINK_IsHalted()  returns FALSE (0000ms, 1562ms total)
T13920 037:496 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1563ms total)
T13920 037:498 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 34 35 33 64 37 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1564ms total)
T13920 037:499 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1565ms total)
T13920 037:501 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 1565ms total)
T13920 037:501 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1566ms total)
T13920 037:503 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1566ms total)
T13920 037:504 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 04 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1567ms total)
T13920 037:505 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 34 35 33 64 37 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1568ms total)
T13920 037:507 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1569ms total)
T13920 037:508 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 1570ms total)
T13920 037:509 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1571ms total)
T13920 037:510 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1571ms total)
T13920 037:511 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1572ms total)
T13920 037:512 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 2D 04  returns 0x02 (0000ms, 1572ms total)
T13920 037:513 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1573ms total)
T13920 037:514 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1574ms total)
T13920 037:515 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1575ms total)
T13920 037:516 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1576ms total)
T13920 037:517 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1577ms total)
T13920 037:518 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 1577ms total)
T13920 037:518 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1578ms total)
T13920 037:519 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1578ms total)
T196EC 037:520 JLINK_IsHalted()  returns FALSE (0000ms, 1578ms total)
T196EC 037:622 JLINK_IsHalted()  returns FALSE (0000ms, 1578ms total)
T196EC 037:723 JLINK_IsHalted()  returns FALSE (0001ms, 1579ms total)
T196EC 037:824 JLINK_IsHalted()  returns FALSE (0000ms, 1578ms total)
T196EC 037:926 JLINK_IsHalted()  returns FALSE (0000ms, 1578ms total)
T13920 038:028 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1580ms total)
T13920 038:030 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 34 35 33 64 37 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1581ms total)
T13920 038:031 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1582ms total)
T13920 038:032 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1583ms total)
T13920 038:033 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0001ms, 1584ms total)
T13920 038:034 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1585ms total)
T13920 038:035 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 04 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1586ms total)
T13920 038:036 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 34 35 33 64 37 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1587ms total)
T13920 038:037 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1588ms total)
T13920 038:039 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0001ms, 1589ms total)
T13920 038:040 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1590ms total)
T13920 038:041 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1590ms total)
T13920 038:042 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1590ms total)
T13920 038:042 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 9C 04  returns 0x02 (0001ms, 1591ms total)
T13920 038:043 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1592ms total)
T13920 038:044 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1593ms total)
T13920 038:046 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1594ms total)
T13920 038:047 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1595ms total)
T13920 038:048 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1595ms total)
T13920 038:048 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1596ms total)
T13920 038:049 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1597ms total)
T13920 038:050 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1597ms total)
T196EC 038:050 JLINK_IsHalted()  returns FALSE (0001ms, 1598ms total)
T196EC 038:152 JLINK_IsHalted()  returns FALSE (0000ms, 1597ms total)
T196EC 038:254 JLINK_IsHalted()  returns FALSE (0000ms, 1597ms total)
T196EC 038:355 JLINK_IsHalted()  returns FALSE (0000ms, 1597ms total)
T196EC 038:456 JLINK_IsHalted()  returns FALSE (0000ms, 1597ms total)
T13920 038:559 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1598ms total)
T13920 038:561 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 34 35 33 64 37 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1599ms total)
T13920 038:562 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1600ms total)
T13920 038:563 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1601ms total)
T13920 038:564 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0001ms, 1602ms total)
T13920 038:565 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1603ms total)
T13920 038:566 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 05 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1604ms total)
T13920 038:568 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 34 35 33 64 37 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1604ms total)
T13920 038:568 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1605ms total)
T13920 038:570 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0000ms, 1605ms total)
T13920 038:571 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1606ms total)
T13920 038:572 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1606ms total)
T13920 038:573 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1606ms total)
T13920 038:573 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: D6 04  returns 0x02 (0001ms, 1607ms total)
T13920 038:574 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1608ms total)
T13920 038:575 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1609ms total)
T13920 038:577 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1610ms total)
T13920 038:578 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1610ms total)
T13920 038:578 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1611ms total)
T13920 038:579 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1612ms total)
T13920 038:580 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1613ms total)
T13920 038:581 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1613ms total)
T196EC 038:581 JLINK_IsHalted()  returns FALSE (0001ms, 1614ms total)
T196EC 038:683 JLINK_IsHalted()  returns FALSE (0000ms, 1613ms total)
T196EC 038:784 JLINK_IsHalted()  returns FALSE (0000ms, 1613ms total)
T196EC 038:885 JLINK_IsHalted()  returns FALSE (0000ms, 1613ms total)
T196EC 038:987 JLINK_IsHalted()  returns FALSE (0001ms, 1614ms total)
T13920 039:090 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1614ms total)
T13920 039:092 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 34 35 33 64 37 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1616ms total)
T13920 039:093 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1617ms total)
T13920 039:095 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 1617ms total)
T13920 039:095 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 07  returns 0x01 (0001ms, 1618ms total)
T13920 039:096 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1619ms total)
T13920 039:097 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 05 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1620ms total)
T13920 039:098 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 34 35 33 64 37 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1621ms total)
T13920 039:099 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1622ms total)
T13920 039:101 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 07  returns 0x01 (0000ms, 1622ms total)
T13920 039:102 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1623ms total)
T13920 039:103 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1623ms total)
T13920 039:104 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1623ms total)
T13920 039:104 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 3E 05  returns 0x02 (0001ms, 1624ms total)
T13920 039:106 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 1624ms total)
T13920 039:107 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1625ms total)
T13920 039:108 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1626ms total)
T13920 039:109 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1627ms total)
T13920 039:110 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1627ms total)
T13920 039:110 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1628ms total)
T13920 039:111 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1629ms total)
T13920 039:112 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1629ms total)
T196EC 039:113 JLINK_IsHalted()  returns FALSE (0000ms, 1629ms total)
T196EC 039:214 JLINK_IsHalted()  returns FALSE (0000ms, 1629ms total)
T196EC 039:315 JLINK_IsHalted()  returns FALSE (0000ms, 1629ms total)
T196EC 039:416 JLINK_IsHalted()  returns FALSE (0000ms, 1629ms total)
T196EC 039:517 JLINK_IsHalted()  returns FALSE (0000ms, 1629ms total)
T13920 039:619 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1630ms total)
T13920 039:621 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 61 35 33 35 30 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1631ms total)
T13920 039:623 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 1631ms total)
T13920 039:624 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 1631ms total)
T13920 039:624 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0001ms, 1632ms total)
T13920 039:625 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1633ms total)
T13920 039:626 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 06 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1634ms total)
T13920 039:628 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 61 35 33 35 30 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1635ms total)
T13920 039:629 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1636ms total)
T13920 039:631 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0000ms, 1636ms total)
T13920 039:632 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0000ms, 1636ms total)
T13920 039:632 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1637ms total)
T13920 039:634 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1637ms total)
T13920 039:634 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 77 05  returns 0x02 (0001ms, 1638ms total)
T13920 039:635 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1639ms total)
T13920 039:636 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1640ms total)
T13920 039:638 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1641ms total)
T13920 039:639 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1642ms total)
T13920 039:640 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1643ms total)
T13920 039:641 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 1643ms total)
T13920 039:641 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1644ms total)
T13920 039:642 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1644ms total)
T196EC 039:643 JLINK_IsHalted()  returns FALSE (0000ms, 1644ms total)
T196EC 039:744 JLINK_IsHalted()  returns FALSE (0000ms, 1644ms total)
T196EC 039:845 JLINK_IsHalted()  returns FALSE (0000ms, 1644ms total)
T196EC 039:947 JLINK_IsHalted()  returns FALSE (0000ms, 1644ms total)
T196EC 040:048 JLINK_IsHalted()  returns FALSE (0000ms, 1644ms total)
T13920 040:150 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1645ms total)
T13920 040:152 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 61 35 33 35 30 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1646ms total)
T13920 040:153 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1647ms total)
T13920 040:154 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1648ms total)
T13920 040:155 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0001ms, 1649ms total)
T13920 040:156 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1650ms total)
T13920 040:157 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 06 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1651ms total)
T13920 040:158 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 61 35 33 35 30 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1652ms total)
T13920 040:159 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1653ms total)
T13920 040:160 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0001ms, 1654ms total)
T13920 040:161 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1655ms total)
T13920 040:162 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1656ms total)
T13920 040:163 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1657ms total)
T13920 040:164 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: D9 05  returns 0x02 (0000ms, 1657ms total)
T13920 040:165 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 1657ms total)
T13920 040:166 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1658ms total)
T13920 040:167 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1659ms total)
T13920 040:168 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1660ms total)
T13920 040:169 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1660ms total)
T13920 040:170 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 1660ms total)
T13920 040:170 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1661ms total)
T13920 040:171 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1661ms total)
T196EC 040:172 JLINK_IsHalted()  returns FALSE (0000ms, 1661ms total)
T196EC 040:274 JLINK_IsHalted()  returns FALSE (0000ms, 1661ms total)
T196EC 040:375 JLINK_IsHalted()  returns FALSE (0000ms, 1661ms total)
T196EC 040:476 JLINK_IsHalted()  returns FALSE (0000ms, 1661ms total)
T196EC 040:577 JLINK_IsHalted()  returns FALSE (0000ms, 1661ms total)
T13920 040:680 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1662ms total)
T13920 040:682 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 61 35 33 35 30 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1663ms total)
T13920 040:683 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1664ms total)
T13920 040:684 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1665ms total)
T13920 040:685 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0001ms, 1666ms total)
T13920 040:686 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1667ms total)
T13920 040:687 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 2D 59 47 07 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1668ms total)
T13920 040:689 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 61 35 33 35 30 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1669ms total)
T13920 040:690 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1669ms total)
T13920 040:691 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0001ms, 1670ms total)
T13920 040:692 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1671ms total)
T13920 040:693 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1671ms total)
T13920 040:694 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1671ms total)
T13920 040:694 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 0E 06  returns 0x02 (0001ms, 1672ms total)
T13920 040:695 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1673ms total)
T13920 040:697 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1674ms total)
T13920 040:698 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1675ms total)
T13920 040:699 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1676ms total)
T13920 040:700 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1676ms total)
T13920 040:700 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1677ms total)
T13920 040:701 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1678ms total)
T13920 040:702 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1679ms total)
T196EC 040:703 JLINK_IsHalted()  returns FALSE (0000ms, 1679ms total)
T196EC 040:804 JLINK_IsHalted()  returns FALSE (0000ms, 1679ms total)
T196EC 040:906 JLINK_IsHalted()  returns FALSE (0000ms, 1679ms total)
T196EC 041:007 JLINK_IsHalted()  returns FALSE (0000ms, 1679ms total)
T196EC 041:109 JLINK_IsHalted()  returns FALSE (0000ms, 1679ms total)
T13920 041:211 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1680ms total)
T13920 041:213 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 61 35 33 35 30 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1681ms total)
T13920 041:214 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1682ms total)
T13920 041:215 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1683ms total)
T13920 041:216 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0000ms, 1683ms total)
T13920 041:217 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1683ms total)
T13920 041:218 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 2D 59 47 07 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1684ms total)
T13920 041:219 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 61 35 33 35 30 66 34 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1685ms total)
T13920 041:220 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1686ms total)
T13920 041:222 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0000ms, 1686ms total)
T13920 041:223 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0000ms, 1686ms total)
T13920 041:223 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1687ms total)
T13920 041:224 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1688ms total)
T13920 041:225 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 6D 06  returns 0x02 (0001ms, 1689ms total)
T13920 041:226 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1690ms total)
T13920 041:227 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1691ms total)
T13920 041:228 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 24 47 4E 47 47 41 2C 2C 2C 2C 2C 2C 30 2C 30 30 ...  returns 0x20 (0001ms, 1692ms total)
T13920 041:239 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1693ms total)
T13920 041:240 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1693ms total)
T13920 041:240 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1694ms total)
T13920 041:241 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1695ms total)
T13920 041:242 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1695ms total)
T196EC 041:242 JLINK_IsHalted()  returns FALSE (0001ms, 1696ms total)
T196EC 041:344 JLINK_IsHalted()  returns FALSE (0000ms, 1695ms total)
T196EC 041:446 JLINK_IsHalted()  returns FALSE (0000ms, 1695ms total)
T196EC 041:547 JLINK_IsHalted()  returns FALSE (0000ms, 1695ms total)
T196EC 041:648 JLINK_IsHalted()  returns FALSE (0000ms, 1695ms total)
T13920 041:752 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 1697ms total)
T13920 041:755 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 38 35 33 33 65 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1697ms total)
T13920 041:756 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1698ms total)
T13920 041:757 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1699ms total)
T13920 041:758 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 03  returns 0x01 (0000ms, 1699ms total)
T13920 041:759 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1699ms total)
T13920 041:760 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 08 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1700ms total)
T13920 041:761 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 38 35 33 33 65 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1701ms total)
T13920 041:763 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1702ms total)
T13920 041:764 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0001ms, 1703ms total)
T13920 041:765 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1704ms total)
T13920 041:766 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1705ms total)
T13920 041:767 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1706ms total)
T13920 041:768 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: B3 06  returns 0x02 (0000ms, 1706ms total)
T13920 041:769 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 1706ms total)
T13920 041:770 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1707ms total)
T13920 041:773 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1708ms total)
T13920 041:784 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1708ms total)
T13920 041:784 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1709ms total)
T13920 041:785 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1710ms total)
T13920 041:786 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1710ms total)
T13920 041:786 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1711ms total)
T196EC 041:787 JLINK_IsHalted()  returns FALSE (0001ms, 1712ms total)
T196EC 041:889 JLINK_IsHalted()  returns FALSE (0001ms, 1712ms total)
T196EC 041:990 JLINK_IsHalted()  returns FALSE (0000ms, 1711ms total)
T196EC 042:091 JLINK_IsHalted()  returns FALSE (0000ms, 1711ms total)
T196EC 042:193 JLINK_IsHalted()  returns FALSE (0000ms, 1711ms total)
T13920 042:200 JLINK_ReadMemEx(0x200007DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007DC) - Data: 00 38 01 40  returns 0x04 (0000ms, 1711ms total)
T13920 042:200 JLINK_ReadMemEx(0x200007E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007E0) - Data: 00 C2 01 00  returns 0x04 (0001ms, 1712ms total)
T13920 042:201 JLINK_ReadMemEx(0x200007E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1713ms total)
T13920 042:202 JLINK_ReadMemEx(0x200007E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007E8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1713ms total)
T13920 042:202 JLINK_ReadMemEx(0x200007EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007EC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1714ms total)
T13920 042:203 JLINK_ReadMemEx(0x200007F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007F0) - Data: 0C 00 00 00  returns 0x04 (0000ms, 1714ms total)
T13920 042:203 JLINK_ReadMemEx(0x200007F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1715ms total)
T13920 042:204 JLINK_ReadMemEx(0x200007F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007F8) - Data: 00 00 00 00  returns 0x04 (0001ms, 1716ms total)
T13920 042:205 JLINK_ReadMemEx(0x200007FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007FC) - Data: 00 00 00 00  returns 0x04 (0000ms, 1716ms total)
T13920 042:205 JLINK_ReadMemEx(0x20000800, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000800) - Data: 00 00 00 00  returns 0x04 (0001ms, 1717ms total)
T13920 042:206 JLINK_ReadMemEx(0x20000804, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000804) - Data: 00 00 00 00  returns 0x04 (0001ms, 1718ms total)
T13920 042:207 JLINK_ReadMemEx(0x20000808, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000808) - Data: 00 00 00 00  returns 0x04 (0000ms, 1718ms total)
T13920 042:207 JLINK_ReadMemEx(0x2000080C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000080C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1719ms total)
T13920 042:208 JLINK_ReadMemEx(0x20000810, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000810) - Data: 00 00 00 00  returns 0x04 (0000ms, 1719ms total)
T13920 042:208 JLINK_ReadMemEx(0x20000814, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000814) - Data: 00 00 00 00  returns 0x04 (0001ms, 1720ms total)
T13920 042:209 JLINK_ReadMemEx(0x20000818, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000818) - Data: 00 00 00 00  returns 0x04 (0001ms, 1721ms total)
T13920 042:210 JLINK_ReadMemEx(0x2000081C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000081C) - Data: 00 00 00 00  returns 0x04 (0000ms, 1721ms total)
T13920 042:210 JLINK_ReadMemEx(0x20000820, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000820) - Data: 00 00 00 00  returns 0x04 (0001ms, 1722ms total)
T13920 042:296 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1723ms total)
T13920 042:298 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 38 35 33 33 65 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1724ms total)
T13920 042:299 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1725ms total)
T13920 042:300 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1726ms total)
T13920 042:301 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 08  returns 0x01 (0000ms, 1726ms total)
T13920 042:302 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1726ms total)
T13920 042:303 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 08 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1727ms total)
T13920 042:304 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 38 35 33 33 65 66 33 0D 0A 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1728ms total)
T13920 042:305 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1729ms total)
T13920 042:306 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 08  returns 0x01 (0001ms, 1730ms total)
T13920 042:308 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0000ms, 1730ms total)
T13920 042:308 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1731ms total)
T13920 042:309 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 1732ms total)
T13920 042:310 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 20 07  returns 0x02 (0001ms, 1733ms total)
T13920 042:311 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1734ms total)
T13920 042:312 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1735ms total)
T13920 042:314 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 24 47 4E 47 47 41 2C 2C 2C 2C 2C 2C 30 2C 30 30 ...  returns 0x20 (0001ms, 1736ms total)
T13920 042:325 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1737ms total)
T13920 042:326 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1737ms total)
T13920 042:326 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1738ms total)
T13920 042:327 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1739ms total)
T13920 042:328 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1739ms total)
T196EC 042:328 JLINK_IsHalted()  returns FALSE (0001ms, 1740ms total)
T196EC 042:430 JLINK_IsHalted()  returns FALSE (0000ms, 1739ms total)
T196EC 042:531 JLINK_IsHalted()  returns FALSE (0000ms, 1739ms total)
T196EC 042:632 JLINK_IsHalted()  returns FALSE (0000ms, 1739ms total)
T196EC 042:734 JLINK_IsHalted()  returns FALSE (0000ms, 1739ms total)
T13920 042:836 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1740ms total)
T13920 042:838 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 1741ms total)
T13920 042:839 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1742ms total)
T13920 042:841 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 1742ms total)
T13920 042:841 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0001ms, 1743ms total)
T13920 042:842 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1744ms total)
T13920 042:843 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 37 59 47 09 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1746ms total)
T13920 042:845 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 1747ms total)
T13920 042:846 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1748ms total)
T13920 042:848 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0001ms, 1749ms total)
T13920 042:849 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1750ms total)
T13920 042:850 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1750ms total)
T13920 042:851 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1750ms total)
T13920 042:851 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 61 07  returns 0x02 (0001ms, 1751ms total)
T13920 042:852 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1752ms total)
T13920 042:853 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1753ms total)
T13920 042:855 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1754ms total)
T13920 042:866 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1755ms total)
T13920 042:867 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1756ms total)
T13920 042:868 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 1756ms total)
T13920 042:868 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1757ms total)
T13920 042:869 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1758ms total)
T196EC 042:870 JLINK_IsHalted()  returns FALSE (0000ms, 1758ms total)
T196EC 042:971 JLINK_IsHalted()  returns FALSE (0000ms, 1758ms total)
T13920 043:062 JLINK_ReadMemEx(0x200007DC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007DC) - Data: 00 38 01 40  returns 0x04 (0000ms, 1758ms total)
T13920 043:062 JLINK_ReadMemEx(0x200007E0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007E0) - Data: 00 C2 01 00  returns 0x04 (0001ms, 1759ms total)
T13920 043:063 JLINK_ReadMemEx(0x200007E4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007E4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1760ms total)
T13920 043:064 JLINK_ReadMemEx(0x200007E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007E8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1760ms total)
T13920 043:064 JLINK_ReadMemEx(0x200007EC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007EC) - Data: 00 00 00 00  returns 0x04 (0001ms, 1761ms total)
T13920 043:065 JLINK_ReadMemEx(0x200007F0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007F0) - Data: 0C 00 00 00  returns 0x04 (0000ms, 1761ms total)
T13920 043:065 JLINK_ReadMemEx(0x200007F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1762ms total)
T13920 043:066 JLINK_ReadMemEx(0x200007F8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007F8) - Data: 00 00 00 00  returns 0x04 (0001ms, 1763ms total)
T13920 043:067 JLINK_ReadMemEx(0x200007FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200007FC) - Data: 00 00 00 00  returns 0x04 (0000ms, 1763ms total)
T13920 043:067 JLINK_ReadMemEx(0x20000800, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000800) - Data: 00 00 00 00  returns 0x04 (0001ms, 1764ms total)
T13920 043:068 JLINK_ReadMemEx(0x20000804, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000804) - Data: 00 00 00 00  returns 0x04 (0001ms, 1765ms total)
T13920 043:069 JLINK_ReadMemEx(0x20000808, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000808) - Data: 00 00 00 00  returns 0x04 (0000ms, 1765ms total)
T13920 043:069 JLINK_ReadMemEx(0x2000080C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000080C) - Data: 00 00 00 00  returns 0x04 (0001ms, 1766ms total)
T13920 043:070 JLINK_ReadMemEx(0x20000810, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000810) - Data: 00 00 00 00  returns 0x04 (0001ms, 1767ms total)
T13920 043:071 JLINK_ReadMemEx(0x20000814, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000814) - Data: 00 00 00 00  returns 0x04 (0000ms, 1767ms total)
T13920 043:071 JLINK_ReadMemEx(0x20000818, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000818) - Data: 00 00 00 00  returns 0x04 (0001ms, 1768ms total)
T13920 043:072 JLINK_ReadMemEx(0x2000081C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x2000081C) - Data: 00 00 00 00  returns 0x04 (0000ms, 1768ms total)
T13920 043:072 JLINK_ReadMemEx(0x20000820, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20000820) - Data: 00 00 00 00  returns 0x04 (0001ms, 1769ms total)
T196EC 043:073 JLINK_IsHalted()  returns FALSE (0001ms, 1770ms total)
T196EC 043:174 JLINK_IsHalted()  returns FALSE (0000ms, 1769ms total)
T196EC 043:275 JLINK_IsHalted()  returns FALSE (0000ms, 1769ms total)
T13920 043:378 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1770ms total)
T13920 043:380 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 1771ms total)
T13920 043:383 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1772ms total)
T13920 043:386 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1773ms total)
T13920 043:387 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 1773ms total)
T13920 043:388 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 1773ms total)
T13920 043:389 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 0A 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1774ms total)
T13920 043:390 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 1775ms total)
T13920 043:391 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1776ms total)
T13920 043:393 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 1776ms total)
T13920 043:394 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0000ms, 1776ms total)
T13920 043:394 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1777ms total)
T13920 043:396 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1777ms total)
T13920 043:396 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: C8 07  returns 0x02 (0001ms, 1778ms total)
T13920 043:397 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 1779ms total)
T13920 043:398 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1780ms total)
T13920 043:400 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1781ms total)
T13920 043:401 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 1781ms total)
T13920 043:401 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 1782ms total)
T13920 043:402 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1783ms total)
T13920 043:403 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 1783ms total)
T13920 043:403 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 1784ms total)
T196EC 043:404 JLINK_IsHalted()  returns FALSE (0001ms, 1785ms total)
T196EC 043:505 JLINK_IsHalted()  returns FALSE (0000ms, 1784ms total)
T196EC 043:606 JLINK_IsHalted()  returns FALSE (0000ms, 1784ms total)
T196EC 043:708 JLINK_IsHalted()  returns FALSE (0000ms, 1784ms total)
T196EC 043:809 JLINK_IsHalted()  returns FALSE (0000ms, 1784ms total)
T13920 043:911 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 1785ms total)
T13920 043:913 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 1786ms total)
T13920 043:914 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 1787ms total)
T13920 043:915 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 1788ms total)
T13920 043:916 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0001ms, 1789ms total)
T13920 043:917 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 1790ms total)
T13920 043:918 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 0A 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1791ms total)
T13920 043:919 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 1792ms total)
T13920 043:920 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1793ms total)
T13920 043:922 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 05  returns 0x01 (0000ms, 1793ms total)
T13920 043:923 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 1794ms total)
T13920 043:924 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1794ms total)
T13920 043:925 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 1794ms total)
T13920 043:925 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 0B 08  returns 0x02 (0001ms, 1795ms total)
T13920 043:927 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 1795ms total)
T13920 043:928 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1795ms total)
T13920 043:929 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1796ms total)
T13920 043:930 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 1797ms total)
T13920 043:931 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 1797ms total)
T13920 043:931 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 1798ms total)
T13920 043:932 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 1799ms total)
T13920 043:933 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 1799ms total)
T196EC 043:933 JLINK_IsHalted()  returns FALSE (0001ms, 1800ms total)
T196EC 044:035 JLINK_IsHalted()  returns FALSE (0000ms, 1799ms total)
T196EC 044:137 JLINK_IsHalted()  returns FALSE (0000ms, 1799ms total)
T13920 044:164 JLINK_SetBPEx(Addr = 0x08010C16, Type = 0xFFFFFFF2) -- CPU is running
  ***** API Warning: Debugger problem discovered:
 
The debugger has set two breakpoints at the same address 0x08010C16. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008)  returns 0x00000003 (1238ms, 3037ms total)
T13920 045:418 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 3038ms total)
T13920 045:420 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 3039ms total)
T13920 045:421 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 3040ms total)
T13920 045:423 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 3041ms total)
T13920 045:424 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 3041ms total)
T13920 045:425 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 3041ms total)
T13920 045:426 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 0B 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3042ms total)
T13920 045:427 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 3043ms total)
T13920 045:428 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 24 58 54 42 2C 34 37 35 39 2C 38 35 25 2C 33 2E ...  returns 0x20 (0001ms, 3044ms total)
T13920 045:430 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 3045ms total)
T13920 045:432 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0000ms, 3045ms total)
T13920 045:432 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 5B 32 00 00  returns 0x04 (0001ms, 3046ms total)
T13920 045:434 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 3047ms total)
T13920 045:435 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 66 08  returns 0x02 (0001ms, 3048ms total)
T13920 045:436 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 3049ms total)
T13920 045:437 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 24 58 54 42 2C 34 37 35 39 2C 38 35 25 2C 33 2E ...  returns 0x20 (0001ms, 3050ms total)
T13920 045:439 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3051ms total)
T13920 045:440 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 3052ms total)
T13920 045:441 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 3052ms total)
T13920 045:441 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 3053ms total)
T13920 045:442 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 3054ms total)
T13920 045:443 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 3054ms total)
T196EC 045:444 JLINK_IsHalted()  returns TRUE (0003ms, 3057ms total)
T196EC 045:447 JLINK_Halt()  returns 0x00 (0000ms, 3054ms total)
T196EC 045:447 JLINK_IsHalted()  returns TRUE (0000ms, 3054ms total)
T196EC 045:447 JLINK_IsHalted()  returns TRUE (0000ms, 3054ms total)
T196EC 045:447 JLINK_IsHalted()  returns TRUE (0000ms, 3054ms total)
T196EC 045:447 JLINK_ReadReg(R15 (PC))  returns 0x08010C16 (0000ms, 3054ms total)
T196EC 045:447 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 3054ms total)
T196EC 045:447 JLINK_ClrBPEx(BPHandle = 0x00000003)  returns 0x00 (0000ms, 3054ms total)
T196EC 045:447 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 3055ms total)
T196EC 045:448 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 3056ms total)
T196EC 045:449 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 3056ms total)
T196EC 045:449 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 3056ms total)
T196EC 045:449 JLINK_ReadReg(R1)  returns 0x00000033 (0000ms, 3056ms total)
T196EC 045:449 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 3056ms total)
T196EC 045:449 JLINK_ReadReg(R3)  returns 0x0000007D (0000ms, 3056ms total)
T196EC 045:449 JLINK_ReadReg(R4)  returns 0x200001E4 (0000ms, 3056ms total)
T196EC 045:449 JLINK_ReadReg(R5)  returns 0x00000033 (0000ms, 3056ms total)
T196EC 045:449 JLINK_ReadReg(R6)  returns 0x08013F9C (0000ms, 3056ms total)
T196EC 045:449 JLINK_ReadReg(R7)  returns 0x20000204 (0000ms, 3056ms total)
T196EC 045:449 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 3056ms total)
T196EC 045:449 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 3056ms total)
T196EC 045:449 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 3056ms total)
T196EC 045:449 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 3056ms total)
T196EC 045:449 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 3056ms total)
T196EC 045:449 JLINK_ReadReg(R13 (SP))  returns 0x20004860 (0000ms, 3056ms total)
T196EC 045:449 JLINK_ReadReg(R14)  returns 0x0800B209 (0000ms, 3056ms total)
T196EC 045:449 JLINK_ReadReg(R15 (PC))  returns 0x08010C16 (0000ms, 3056ms total)
T196EC 045:450 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 3057ms total)
T196EC 045:450 JLINK_ReadReg(MSP)  returns 0x20004860 (0000ms, 3057ms total)
T196EC 045:450 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 3057ms total)
T196EC 045:450 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 3057ms total)
T13920 045:457 JLINK_ReadMemEx(0x2000488C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20004880) -- Updating C cache (64 bytes @ 0x20004880) -- Read from C cache (4 bytes @ 0x2000488C) - Data: D7 0C 01 08  returns 0x04 (0001ms, 3058ms total)
T13920 045:458 JLINK_ReadMemEx(0x20004884, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20004884) - Data: E4 01 00 20  returns 0x04 (0000ms, 3058ms total)
T13920 045:458 JLINK_ReadMemEx(0x20004888, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20004888) - Data: 00 00 00 00  returns 0x04 (0000ms, 3058ms total)
T13920 045:458 JLINK_ReadMemEx(0x2000488C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000488C) - Data: D7 0C 01 08  returns 0x04 (0000ms, 3058ms total)
T13920 045:458 JLINK_ReadMemEx(0x200048A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048A4) - Data: 31 D5 00 08  returns 0x04 (0000ms, 3058ms total)
T13920 045:458 JLINK_ReadMemEx(0x2000489C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000489C) - Data: 1A 00 00 20  returns 0x04 (0000ms, 3058ms total)
T13920 045:458 JLINK_ReadMemEx(0x200048A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048A0) - Data: 00 08 00 50  returns 0x04 (0000ms, 3058ms total)
T13920 045:458 JLINK_ReadMemEx(0x200048A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048A4) - Data: 31 D5 00 08  returns 0x04 (0000ms, 3058ms total)
T13920 045:458 JLINK_ReadMemEx(0x200048BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048BC) - Data: 17 2B 01 08  returns 0x04 (0000ms, 3058ms total)
T13920 045:458 JLINK_ReadMemEx(0x200048AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048AC) - Data: F4 01 00 00  returns 0x04 (0000ms, 3058ms total)
T13920 045:458 JLINK_ReadMemEx(0x200048B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048B0) - Data: 00 08 00 50  returns 0x04 (0000ms, 3058ms total)
T13920 045:458 JLINK_ReadMemEx(0x200048B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048B4) - Data: 9C 3F 01 08  returns 0x04 (0000ms, 3058ms total)
T13920 045:458 JLINK_ReadMemEx(0x200048B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048B8) - Data: 00 50 00 08  returns 0x04 (0000ms, 3058ms total)
T13920 045:458 JLINK_ReadMemEx(0x200048BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048BC) - Data: 17 2B 01 08  returns 0x04 (0000ms, 3058ms total)
T13920 045:458 JLINK_ReadMemEx(0x200048C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200048C0) -- Updating C cache (64 bytes @ 0x200048C0) -- Read from C cache (4 bytes @ 0x200048C4) - Data: 01 5B 00 08  returns 0x04 (0002ms, 3060ms total)
T13920 045:462 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200002C0) -- Updating C cache (64 bytes @ 0x200002C0) -- Read from C cache (32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 3062ms total)
T13920 045:465 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20003840) -- Updating C cache (128 bytes @ 0x20003840) -- Read from C cache (32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0002ms, 3064ms total)
T13920 045:467 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000300) -- Updating C cache (64 bytes @ 0x20000300) -- Read from C cache (1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 3065ms total)
T13920 045:469 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000380) -- Updating C cache (64 bytes @ 0x20000380) -- Read from C cache (2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 3066ms total)
T13920 045:470 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000340) -- Updating C cache (64 bytes @ 0x20000340) -- Read from C cache (1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0002ms, 3068ms total)
T13920 045:472 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 3068ms total)
T13920 045:473 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000200) -- Updating C cache (64 bytes @ 0x20000200) -- Read from C cache (32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 0B 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3069ms total)
T13920 045:474 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0000ms, 3069ms total)
T13920 045:474 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20003200) -- Updating C cache (64 bytes @ 0x20003200) -- Read from C cache (32 bytes @ 0x20003210) - Data: 24 58 54 42 2C 34 37 35 39 2C 38 35 25 2C 33 2E ...  returns 0x20 (0001ms, 3070ms total)
T13920 045:476 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 3070ms total)
T13920 045:476 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 3071ms total)
T13920 045:477 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200001C0) -- Updating C cache (64 bytes @ 0x200001C0) -- Read from C cache (4 bytes @ 0x200001F4) - Data: 5B 32 00 00  returns 0x04 (0001ms, 3072ms total)
T13920 045:480 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0002ms, 3074ms total)
T13920 045:482 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000010) - Data: 66 08  returns 0x02 (0000ms, 3074ms total)
T13920 045:482 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 3074ms total)
T13920 045:483 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20003210) - Data: 24 58 54 42 2C 34 37 35 39 2C 38 35 25 2C 33 2E ...  returns 0x20 (0000ms, 3074ms total)
T13920 045:484 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20002440) -- Updating C cache (128 bytes @ 0x20002440) -- Read from C cache (32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3075ms total)
T13920 045:485 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 3075ms total)
T13920 045:485 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000180) -- Updating C cache (64 bytes @ 0x20000180) -- Read from C cache (2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0002ms, 3077ms total)
T13920 045:487 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 3077ms total)
T13920 045:487 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 3077ms total)
T13920 045:487 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 3077ms total)
T13920 045:487 JLINK_ReadMemEx(0x08010C16, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08010C00) -- Updating C cache (64 bytes @ 0x08010C00) -- Read from C cache (2 bytes @ 0x08010C16) - Data: AA B2  returns 0x02 (0002ms, 3079ms total)
T13920 045:489 JLINK_ReadMemEx(0x08010C18, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08010C40) -- Updating C cache (64 bytes @ 0x08010C40) -- Read from C cache (60 bytes @ 0x08010C18) - Data: DB 00 16 49 16 48 FA F7 06 F8 29 46 13 48 F4 F7 ...  returns 0x3C (0001ms, 3080ms total)
T13920 045:490 JLINK_ReadMemEx(0x08010C18, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010C18) - Data: DB 00  returns 0x02 (0000ms, 3080ms total)
T13920 045:490 JLINK_ReadMemEx(0x08010C18, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010C18) - Data: DB 00 16 49 16 48 FA F7 06 F8 29 46 13 48 F4 F7 ...  returns 0x3C (0000ms, 3080ms total)
T13920 045:490 JLINK_ReadMemEx(0x08010C18, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010C18) - Data: DB 00  returns 0x02 (0000ms, 3080ms total)
T13920 045:490 JLINK_ReadMemEx(0x08010C1A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010C1A) - Data: 16 49  returns 0x02 (0000ms, 3080ms total)
T13920 045:490 JLINK_ReadMemEx(0x08010C1A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010C1A) - Data: 16 49  returns 0x02 (0000ms, 3080ms total)
T13920 045:490 JLINK_ReadMemEx(0x08010C1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010C1C) - Data: 16 48 FA F7 06 F8 29 46 13 48 F4 F7 E7 FA 00 20 ...  returns 0x3C (0000ms, 3080ms total)
T13920 045:490 JLINK_ReadMemEx(0x08010C1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010C1C) - Data: 16 48  returns 0x02 (0000ms, 3080ms total)
T13920 045:490 JLINK_ReadMemEx(0x08010C1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08010C1C) - Data: 16 48 FA F7 06 F8 29 46 13 48 F4 F7 E7 FA 00 20 ...  returns 0x3C (0000ms, 3080ms total)
T13920 045:490 JLINK_ReadMemEx(0x08010C1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010C1C) - Data: 16 48  returns 0x02 (0000ms, 3080ms total)
T13920 045:490 JLINK_ReadMemEx(0x08010C1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010C1E) - Data: FA F7  returns 0x02 (0000ms, 3080ms total)
T196EC 046:917 JLINK_ReadMemEx(0x08010C16, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08010C16) - Data: AA B2  returns 0x02 (0000ms, 3080ms total)
T196EC 046:917 JLINK_Step() -- Read from C cache (2 bytes @ 0x08010C16) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0004ms, 3084ms total)
T196EC 046:921 JLINK_ReadReg(R15 (PC))  returns 0x08010C18 (0000ms, 3084ms total)
T196EC 046:921 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 3084ms total)
T196EC 046:921 JLINK_SetBPEx(Addr = 0x08010C16, Type = 0xFFFFFFF2)
  ***** API Warning: Debugger problem discovered:
 
The debugger has set two breakpoints at the same address 0x08010C16.  returns 0x00000003 (1255ms, 4339ms total)
T196EC 048:177 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0005ms, 4344ms total)
T196EC 048:282 JLINK_IsHalted()  returns FALSE (0000ms, 4344ms total)
T196EC 048:383 JLINK_IsHalted()  returns FALSE (0000ms, 4344ms total)
T196EC 048:485 JLINK_IsHalted()  returns FALSE (0000ms, 4344ms total)
T196EC 048:586 JLINK_IsHalted()  returns FALSE (0000ms, 4344ms total)
T13920 048:688 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0001ms, 4345ms total)
T13920 048:690 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 4346ms total)
T13920 048:691 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 4346ms total)
T13920 048:692 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 4347ms total)
T13920 048:693 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 4347ms total)
T13920 048:693 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 4348ms total)
T13920 048:695 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 0B 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4349ms total)
T13920 048:696 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 4350ms total)
T13920 048:697 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4351ms total)
T13920 048:699 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 4352ms total)
T13920 048:700 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0000ms, 4352ms total)
T13920 048:700 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 5B 32 00 00  returns 0x04 (0001ms, 4353ms total)
T13920 048:702 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 4353ms total)
T13920 048:702 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 9F 08  returns 0x02 (0001ms, 4354ms total)
T13920 048:703 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 4355ms total)
T13920 048:704 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4356ms total)
T13920 048:707 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 24 47 4E 47 47 41 2C 2C 2C 2C 2C 2C 30 2C 30 30 ...  returns 0x20 (0001ms, 4357ms total)
T13920 048:718 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 4357ms total)
T13920 048:718 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 4358ms total)
T13920 048:719 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 4358ms total)
T13920 048:719 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 4359ms total)
T13920 048:720 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 4360ms total)
T196EC 048:721 JLINK_IsHalted()  returns FALSE (0001ms, 4361ms total)
T196EC 048:823 JLINK_IsHalted()  returns FALSE (0000ms, 4360ms total)
T196EC 048:924 JLINK_IsHalted()  returns FALSE (0000ms, 4360ms total)
T196EC 049:025 JLINK_IsHalted()  returns FALSE (0000ms, 4360ms total)
T196EC 049:127 JLINK_IsHalted()  returns FALSE (0000ms, 4360ms total)
T13920 049:229 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 00 00 00 00 00 ...  returns 0x20 (0002ms, 4362ms total)
T13920 049:232 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0000ms, 4362ms total)
T13920 049:233 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 4363ms total)
T13920 049:235 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 4363ms total)
T13920 049:235 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0001ms, 4364ms total)
T13920 049:236 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 4365ms total)
T13920 049:237 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 28 59 47 0B 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4366ms total)
T13920 049:238 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 4367ms total)
T13920 049:239 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4368ms total)
T13920 049:241 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 01  returns 0x01 (0001ms, 4369ms total)
T13920 049:242 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 4370ms total)
T13920 049:243 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 5B 32 00 00  returns 0x04 (0001ms, 4371ms total)
T13920 049:244 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 4372ms total)
T13920 049:245 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 08 09  returns 0x02 (0000ms, 4372ms total)
T13920 049:246 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 4373ms total)
T13920 049:247 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4374ms total)
T13920 049:249 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 24 47 4E 47 47 41 2C 2C 2C 2C 2C 2C 30 2C 30 30 ...  returns 0x20 (0000ms, 4374ms total)
T13920 049:249 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 4375ms total)
T13920 049:250 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 4376ms total)
T13920 049:251 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 4376ms total)
T13920 049:251 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 4377ms total)
T13920 049:252 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 4377ms total)
T196EC 049:253 JLINK_IsHalted()  returns FALSE (0001ms, 4378ms total)
T196EC 049:355 JLINK_IsHalted()  returns FALSE (0000ms, 4377ms total)
T196EC 049:456 JLINK_IsHalted()  returns FALSE (0000ms, 4377ms total)
T196EC 049:557 JLINK_IsHalted()  returns FALSE (0000ms, 4377ms total)
T196EC 049:658 JLINK_IsHalted()  returns FALSE (0000ms, 4377ms total)
T13920 049:761 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 31 31 36 2E 32 ...  returns 0x20 (0002ms, 4379ms total)
T13920 049:764 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 4380ms total)
T13920 049:765 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 4381ms total)
T13920 049:767 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 4381ms total)
T13920 049:767 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0001ms, 4382ms total)
T13920 049:769 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 4382ms total)
T13920 049:770 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 14 59 47 0C 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4383ms total)
T13920 049:773 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 4384ms total)
T13920 049:774 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4385ms total)
T13920 049:776 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0000ms, 4385ms total)
T13920 049:777 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 4386ms total)
T13920 049:778 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 5B 32 00 00  returns 0x04 (0000ms, 4386ms total)
T13920 049:779 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 4387ms total)
T13920 049:780 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 40 09  returns 0x02 (0000ms, 4387ms total)
T13920 049:781 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 4387ms total)
T13920 049:782 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4388ms total)
T13920 049:784 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4389ms total)
T13920 049:795 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 4390ms total)
T13920 049:796 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 4390ms total)
T13920 049:796 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 4391ms total)
T13920 049:797 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 4392ms total)
T13920 049:798 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 4392ms total)
T196EC 049:799 JLINK_IsHalted()  returns FALSE (0001ms, 4393ms total)
T196EC 049:900 JLINK_IsHalted()  returns FALSE (0000ms, 4392ms total)
T196EC 050:002 JLINK_IsHalted()  returns FALSE (0000ms, 4392ms total)
T196EC 050:103 JLINK_IsHalted()  returns FALSE (0000ms, 4392ms total)
T196EC 050:204 JLINK_IsHalted()  returns FALSE (0000ms, 4392ms total)
T13920 050:306 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 31 31 36 2E 32 ...  returns 0x20 (0001ms, 4393ms total)
T13920 050:308 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 4394ms total)
T13920 050:310 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 4394ms total)
T13920 050:311 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 4395ms total)
T13920 050:312 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0001ms, 4396ms total)
T13920 050:313 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 4397ms total)
T13920 050:314 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 14 59 47 0C 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 4399ms total)
T13920 050:316 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 4400ms total)
T13920 050:317 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4401ms total)
T13920 050:319 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 06  returns 0x01 (0000ms, 4401ms total)
T13920 050:320 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 4402ms total)
T13920 050:321 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 5B 32 00 00  returns 0x04 (0000ms, 4402ms total)
T13920 050:322 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 4403ms total)
T13920 050:323 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 9E 09  returns 0x02 (0000ms, 4403ms total)
T13920 050:324 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 4404ms total)
T13920 050:327 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4405ms total)
T13920 050:328 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4406ms total)
T13920 050:329 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 4407ms total)
T13920 050:330 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0002ms, 4409ms total)
T13920 050:332 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 4409ms total)
T13920 050:332 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 4410ms total)
T13920 050:333 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 4411ms total)
T196EC 050:334 JLINK_IsHalted()  returns FALSE (0001ms, 4412ms total)
T196EC 050:435 JLINK_IsHalted()  returns FALSE (0000ms, 4411ms total)
T196EC 050:537 JLINK_IsHalted()  returns FALSE (0000ms, 4411ms total)
T196EC 050:638 JLINK_IsHalted()  returns FALSE (0000ms, 4411ms total)
T196EC 050:740 JLINK_IsHalted()  returns FALSE (0000ms, 4411ms total)
T13920 050:843 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 31 31 36 2E 32 ...  returns 0x20 (0001ms, 4412ms total)
T13920 050:845 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 4413ms total)
T13920 050:846 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 4414ms total)
T13920 050:848 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 4415ms total)
T13920 050:849 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0000ms, 4415ms total)
T13920 050:850 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 4415ms total)
T13920 050:851 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 2D 59 47 0D 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4416ms total)
T13920 050:852 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 4417ms total)
T13920 050:853 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4418ms total)
T13920 050:855 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 02  returns 0x01 (0001ms, 4419ms total)
T13920 050:856 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 4420ms total)
T13920 050:857 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 5B 32 00 00  returns 0x04 (0001ms, 4421ms total)
T13920 050:858 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 4422ms total)
T13920 050:859 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: DD 09  returns 0x02 (0000ms, 4422ms total)
T13920 050:860 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 4422ms total)
T13920 050:861 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4423ms total)
T13920 050:863 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 4423ms total)
T13920 050:863 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 4424ms total)
T13920 050:864 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 4425ms total)
T13920 050:865 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 4425ms total)
T13920 050:865 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 4426ms total)
T13920 050:866 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 4427ms total)
T196EC 050:867 JLINK_IsHalted()  returns FALSE (0001ms, 4428ms total)
T196EC 050:969 JLINK_IsHalted()  returns FALSE (0000ms, 4427ms total)
T196EC 051:071 JLINK_IsHalted()  returns FALSE (0001ms, 4428ms total)
T196EC 051:173 JLINK_IsHalted()  returns FALSE (0000ms, 4427ms total)
T196EC 051:274 JLINK_IsHalted()  returns FALSE (0000ms, 4427ms total)
T13920 051:378 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 31 31 36 2E 32 ...  returns 0x20 (0002ms, 4429ms total)
T13920 051:380 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 4430ms total)
T13920 051:382 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0000ms, 4430ms total)
T13920 051:385 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 4431ms total)
T13920 051:386 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 4432ms total)
T13920 051:389 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 4432ms total)
T13920 051:390 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 2D 59 47 0E 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4433ms total)
T13920 051:392 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 4434ms total)
T13920 051:393 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4435ms total)
T13920 051:395 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 4435ms total)
T13920 051:396 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0000ms, 4435ms total)
T13920 051:396 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 5B 32 00 00  returns 0x04 (0001ms, 4436ms total)
T13920 051:398 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 4436ms total)
T13920 051:398 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 4D 0A  returns 0x02 (0001ms, 4437ms total)
T13920 051:399 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 4438ms total)
T13920 051:400 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4439ms total)
T13920 051:402 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4440ms total)
T13920 051:403 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 4440ms total)
T13920 051:403 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 4441ms total)
T13920 051:404 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 4442ms total)
T13920 051:405 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 4442ms total)
T13920 051:405 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 4443ms total)
T196EC 051:406 JLINK_IsHalted()  returns FALSE (0001ms, 4444ms total)
T196EC 051:508 JLINK_IsHalted()  returns FALSE (0000ms, 4443ms total)
T196EC 051:609 JLINK_IsHalted()  returns FALSE (0000ms, 4443ms total)
T196EC 051:710 JLINK_IsHalted()  returns FALSE (0000ms, 4443ms total)
T196EC 051:811 JLINK_IsHalted()  returns FALSE (0000ms, 4443ms total)
T13920 051:914 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 31 31 36 2E 32 ...  returns 0x20 (0002ms, 4445ms total)
T13920 051:916 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0002ms, 4447ms total)
T13920 051:918 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 4448ms total)
T13920 051:919 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 4449ms total)
T13920 051:920 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 03  returns 0x01 (0002ms, 4451ms total)
T13920 051:922 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 4452ms total)
T13920 051:924 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 2D 59 47 0E 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4453ms total)
T13920 051:925 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 4454ms total)
T13920 051:926 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4455ms total)
T13920 051:928 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 03  returns 0x01 (0001ms, 4456ms total)
T13920 051:929 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 4457ms total)
T13920 051:930 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 5B 32 00 00  returns 0x04 (0000ms, 4457ms total)
T13920 051:931 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 4457ms total)
T13920 051:931 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 85 0A  returns 0x02 (0001ms, 4458ms total)
T13920 051:932 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 4459ms total)
T13920 051:933 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4460ms total)
T13920 051:935 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4461ms total)
T13920 051:936 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 4461ms total)
T13920 051:937 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0000ms, 4461ms total)
T13920 051:937 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 4462ms total)
T13920 051:938 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 4462ms total)
T13920 051:938 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 4463ms total)
T196EC 051:939 JLINK_IsHalted()  returns FALSE (0001ms, 4464ms total)
T196EC 052:041 JLINK_IsHalted()  returns FALSE (0000ms, 4463ms total)
T196EC 052:143 JLINK_IsHalted()  returns FALSE (0000ms, 4463ms total)
T196EC 052:244 JLINK_IsHalted()  returns FALSE (0000ms, 4463ms total)
T196EC 052:346 JLINK_IsHalted()  returns FALSE (0000ms, 4463ms total)
T13920 052:448 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 31 31 36 2E 32 ...  returns 0x20 (0002ms, 4465ms total)
T13920 052:451 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 4466ms total)
T13920 052:452 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 4467ms total)
T13920 052:454 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0000ms, 4467ms total)
T13920 052:454 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 4468ms total)
T13920 052:456 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 4468ms total)
T13920 052:457 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 2D 59 47 0F 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4469ms total)
T13920 052:458 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 4470ms total)
T13920 052:459 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4471ms total)
T13920 052:461 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0001ms, 4472ms total)
T13920 052:462 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0001ms, 4473ms total)
T13920 052:463 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 5B 32 00 00  returns 0x04 (0000ms, 4473ms total)
T13920 052:464 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 4474ms total)
T13920 052:465 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: E5 0A  returns 0x02 (0000ms, 4474ms total)
T13920 052:466 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 4474ms total)
T13920 052:467 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4475ms total)
T13920 052:468 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4476ms total)
T13920 052:469 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 4477ms total)
T13920 052:470 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 4478ms total)
T13920 052:471 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 4478ms total)
T13920 052:471 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 4479ms total)
T13920 052:472 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 4480ms total)
T196EC 052:473 JLINK_IsHalted()  returns FALSE (0001ms, 4481ms total)
T196EC 052:574 JLINK_IsHalted()  returns FALSE (0000ms, 4480ms total)
T196EC 052:675 JLINK_IsHalted()  returns FALSE (0000ms, 4480ms total)
T196EC 052:776 JLINK_IsHalted()  returns FALSE (0001ms, 4481ms total)
T196EC 052:878 JLINK_IsHalted()  returns FALSE (0000ms, 4480ms total)
T13920 052:982 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 31 31 36 2E 32 ...  returns 0x20 (0001ms, 4481ms total)
T13920 052:984 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 4482ms total)
T13920 052:985 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 4483ms total)
T13920 052:986 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 4484ms total)
T13920 052:987 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0001ms, 4485ms total)
T13920 052:988 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0001ms, 4486ms total)
T13920 052:989 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 2D 59 47 0F 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4487ms total)
T13920 052:990 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 33 35 63 35 35 35 35 35 34 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 4488ms total)
T13920 052:991 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4489ms total)
T13920 052:994 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0000ms, 4489ms total)
T13920 052:995 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0000ms, 4489ms total)
T13920 052:995 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 5B 32 00 00  returns 0x04 (0001ms, 4490ms total)
T13920 052:997 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0000ms, 4490ms total)
T13920 052:997 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 3A 0B  returns 0x02 (0001ms, 4491ms total)
T13920 052:998 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 4492ms total)
T13920 053:000 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4493ms total)
T13920 053:002 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4494ms total)
T13920 053:003 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 4494ms total)
T13920 053:003 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 4495ms total)
T13920 053:004 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 4495ms total)
T13920 053:004 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0001ms, 4496ms total)
T13920 053:005 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 4497ms total)
T196EC 053:006 JLINK_IsHalted()  returns FALSE (0001ms, 4498ms total)
T196EC 053:108 JLINK_IsHalted()  returns FALSE (0000ms, 4497ms total)
T196EC 053:209 JLINK_IsHalted()  returns FALSE (0000ms, 4497ms total)
T196EC 053:311 JLINK_IsHalted()  returns FALSE (0000ms, 4497ms total)
T196EC 053:412 JLINK_IsHalted()  returns FALSE (0000ms, 4497ms total)
T13920 053:515 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 31 31 36 2E 32 ...  returns 0x20 (0001ms, 4498ms total)
T13920 053:517 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 38 35 35 36 32 66 32 0D 0A 35 61 35 38 37 66 ...  returns 0x20 (0001ms, 4499ms total)
T13920 053:519 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 4500ms total)
T13920 053:520 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 4501ms total)
T13920 053:521 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 4501ms total)
T13920 053:522 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 4501ms total)
T13920 053:523 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 10 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4502ms total)
T13920 053:525 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: 35 38 35 35 36 32 66 32 0D 0A 35 61 35 38 37 66 ...  returns 0x20 (0000ms, 4502ms total)
T13920 053:526 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4503ms total)
T13920 053:528 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: 00  returns 0x01 (0000ms, 4503ms total)
T13920 053:529 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0000ms, 4503ms total)
T13920 053:529 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: 5B 32 00 00  returns 0x04 (0001ms, 4504ms total)
T13920 053:531 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 4505ms total)
T13920 053:532 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: 88 0B  returns 0x02 (0000ms, 4505ms total)
T13920 053:533 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0001ms, 4506ms total)
T13920 053:534 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4507ms total)
T13920 053:536 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 4507ms total)
T13920 053:536 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0001ms, 4508ms total)
T13920 053:537 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 4509ms total)
T13920 053:538 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0001ms, 4510ms total)
T13920 053:539 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 4510ms total)
T13920 053:539 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0001ms, 4511ms total)
T196EC 053:540 JLINK_IsHalted()  returns FALSE (0001ms, 4512ms total)
T196EC 053:642 JLINK_IsHalted()  returns FALSE (0000ms, 4511ms total)
T196EC 053:743 JLINK_IsHalted()  returns FALSE (0001ms, 4512ms total)
T196EC 053:845 JLINK_IsHalted()  returns TRUE (0003ms, 4514ms total)
T196EC 053:848 JLINK_Halt()  returns 0x00 (0000ms, 4511ms total)
T196EC 053:848 JLINK_IsHalted()  returns TRUE (0000ms, 4511ms total)
T196EC 053:848 JLINK_IsHalted()  returns TRUE (0000ms, 4511ms total)
T196EC 053:848 JLINK_IsHalted()  returns TRUE (0000ms, 4511ms total)
T196EC 053:848 JLINK_ReadReg(R15 (PC))  returns 0x08010C16 (0000ms, 4511ms total)
T196EC 053:848 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 4511ms total)
T196EC 053:848 JLINK_ClrBPEx(BPHandle = 0x00000003)  returns 0x00 (0000ms, 4511ms total)
T196EC 053:848 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 4512ms total)
T196EC 053:849 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 4513ms total)
T196EC 053:850 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(R1)  returns 0x00000033 (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(R3)  returns 0x0000007D (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(R4)  returns 0x200001E4 (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(R5)  returns 0x00000033 (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(R6)  returns 0x08013F9C (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(R7)  returns 0x20000204 (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(R13 (SP))  returns 0x20004860 (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(R14)  returns 0x0800B209 (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(R15 (PC))  returns 0x08010C16 (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(MSP)  returns 0x20004860 (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 4513ms total)
T196EC 053:852 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 4513ms total)
T13920 053:852 JLINK_ReadMemEx(0x2000488C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20004880) -- Updating C cache (64 bytes @ 0x20004880) -- Read from C cache (4 bytes @ 0x2000488C) - Data: D7 0C 01 08  returns 0x04 (0002ms, 4515ms total)
T13920 053:854 JLINK_ReadMemEx(0x20004884, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20004884) - Data: E4 01 00 20  returns 0x04 (0000ms, 4515ms total)
T13920 053:854 JLINK_ReadMemEx(0x20004888, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20004888) - Data: 00 00 00 00  returns 0x04 (0000ms, 4515ms total)
T13920 053:854 JLINK_ReadMemEx(0x2000488C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000488C) - Data: D7 0C 01 08  returns 0x04 (0000ms, 4515ms total)
T13920 053:854 JLINK_ReadMemEx(0x200048A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048A4) - Data: 31 D5 00 08  returns 0x04 (0000ms, 4515ms total)
T13920 053:854 JLINK_ReadMemEx(0x2000489C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000489C) - Data: 1A 00 00 20  returns 0x04 (0000ms, 4515ms total)
T13920 053:854 JLINK_ReadMemEx(0x200048A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048A0) - Data: 00 08 00 50  returns 0x04 (0000ms, 4515ms total)
T13920 053:854 JLINK_ReadMemEx(0x200048A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048A4) - Data: 31 D5 00 08  returns 0x04 (0000ms, 4515ms total)
T13920 053:854 JLINK_ReadMemEx(0x200048BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048BC) - Data: 17 2B 01 08  returns 0x04 (0000ms, 4515ms total)
T13920 053:854 JLINK_ReadMemEx(0x200048AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048AC) - Data: F4 01 00 00  returns 0x04 (0000ms, 4515ms total)
T13920 053:854 JLINK_ReadMemEx(0x200048B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048B0) - Data: 00 08 00 50  returns 0x04 (0000ms, 4515ms total)
T13920 053:854 JLINK_ReadMemEx(0x200048B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048B4) - Data: 9C 3F 01 08  returns 0x04 (0000ms, 4515ms total)
T13920 053:854 JLINK_ReadMemEx(0x200048B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048B8) - Data: 00 50 00 08  returns 0x04 (0000ms, 4515ms total)
T13920 053:854 JLINK_ReadMemEx(0x200048BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048BC) - Data: 17 2B 01 08  returns 0x04 (0000ms, 4515ms total)
T13920 053:854 JLINK_ReadMemEx(0x200048C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200048C0) -- Updating C cache (64 bytes @ 0x200048C0) -- Read from C cache (4 bytes @ 0x200048C4) - Data: 01 5B 00 08  returns 0x04 (0001ms, 4516ms total)
T13920 053:856 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200002C0) -- Updating C cache (64 bytes @ 0x200002C0) -- Read from C cache (32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 31 31 36 2E 32 ...  returns 0x20 (0002ms, 4518ms total)
T13920 053:858 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20003840) -- Updating C cache (128 bytes @ 0x20003840) -- Read from C cache (32 bytes @ 0x20003874) - Data: 35 38 35 35 36 32 66 32 0D 0A 35 61 35 38 37 66 ...  returns 0x20 (0002ms, 4520ms total)
T13920 053:861 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000300) -- Updating C cache (64 bytes @ 0x20000300) -- Read from C cache (1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0001ms, 4521ms total)
T13920 053:863 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000380) -- Updating C cache (64 bytes @ 0x20000380) -- Read from C cache (2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0001ms, 4522ms total)
T13920 053:864 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000340) -- Updating C cache (64 bytes @ 0x20000340) -- Read from C cache (1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0001ms, 4523ms total)
T13920 053:866 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 4523ms total)
T13920 053:867 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000200) -- Updating C cache (64 bytes @ 0x20000200) -- Read from C cache (32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 10 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4524ms total)
T13920 053:868 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20003874) - Data: 35 38 35 35 36 32 66 32 0D 0A 35 61 35 38 37 66 ...  returns 0x20 (0000ms, 4524ms total)
T13920 053:868 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20003200) -- Updating C cache (64 bytes @ 0x20003200) -- Read from C cache (32 bytes @ 0x20003210) - Data: 24 58 54 42 2C 34 37 35 39 2C 38 35 25 2C 33 2E ...  returns 0x20 (0001ms, 4525ms total)
T13920 053:871 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0000ms, 4525ms total)
T13920 053:872 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0000ms, 4525ms total)
T13920 053:872 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200001C0) -- Updating C cache (64 bytes @ 0x200001C0) -- Read from C cache (4 bytes @ 0x200001F4) - Data: E3 45 00 00  returns 0x04 (0001ms, 4526ms total)
T13920 053:874 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0002ms, 4528ms total)
T13920 053:876 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000010) - Data: A5 0B  returns 0x02 (0000ms, 4528ms total)
T13920 053:876 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 4528ms total)
T13920 053:877 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20003210) - Data: 24 58 54 42 2C 34 37 35 39 2C 38 35 25 2C 33 2E ...  returns 0x20 (0000ms, 4528ms total)
T13920 053:878 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20002440) -- Updating C cache (128 bytes @ 0x20002440) -- Read from C cache (32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 4530ms total)
T13920 053:880 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 4530ms total)
T13920 053:880 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000180) -- Updating C cache (64 bytes @ 0x20000180) -- Read from C cache (2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 4531ms total)
T13920 053:881 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 4531ms total)
T13920 053:881 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 4531ms total)
T13920 053:881 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 4531ms total)
T196EC 058:345 JLINK_ReadMemEx(0x08010C16, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08010C00) -- Updating C cache (64 bytes @ 0x08010C00) -- Read from C cache (2 bytes @ 0x08010C16) - Data: AA B2  returns 0x02 (0001ms, 4532ms total)
T196EC 058:346 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0004ms, 4536ms total)
T196EC 058:450 JLINK_IsHalted()  returns TRUE (0003ms, 4539ms total)
T196EC 058:453 JLINK_Halt()  returns 0x00 (0000ms, 4536ms total)
T196EC 058:453 JLINK_IsHalted()  returns TRUE (0000ms, 4536ms total)
T196EC 058:453 JLINK_IsHalted()  returns TRUE (0000ms, 4536ms total)
T196EC 058:453 JLINK_IsHalted()  returns TRUE (0000ms, 4536ms total)
T196EC 058:453 JLINK_ReadReg(R15 (PC))  returns 0x08010C16 (0000ms, 4536ms total)
T196EC 058:453 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 4536ms total)
T196EC 058:453 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 4537ms total)
T196EC 058:454 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 4538ms total)
T196EC 058:455 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 4538ms total)
T196EC 058:455 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 4538ms total)
T196EC 058:455 JLINK_ReadReg(R1)  returns 0x00000033 (0000ms, 4538ms total)
T196EC 058:455 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 4538ms total)
T196EC 058:455 JLINK_ReadReg(R3)  returns 0x0000007D (0000ms, 4538ms total)
T196EC 058:455 JLINK_ReadReg(R4)  returns 0x200001E4 (0000ms, 4538ms total)
T196EC 058:455 JLINK_ReadReg(R5)  returns 0x00000033 (0000ms, 4538ms total)
T196EC 058:455 JLINK_ReadReg(R6)  returns 0x08013F9C (0000ms, 4538ms total)
T196EC 058:455 JLINK_ReadReg(R7)  returns 0x20000204 (0000ms, 4538ms total)
T196EC 058:455 JLINK_ReadReg(R8)  returns 0xFFFFFFFF (0001ms, 4539ms total)
T196EC 058:456 JLINK_ReadReg(R9)  returns 0xFFFFFFFF (0000ms, 4539ms total)
T196EC 058:456 JLINK_ReadReg(R10)  returns 0xFFFFFFFF (0000ms, 4539ms total)
T196EC 058:456 JLINK_ReadReg(R11)  returns 0xFFFFFFFF (0000ms, 4539ms total)
T196EC 058:456 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 4539ms total)
T196EC 058:456 JLINK_ReadReg(R13 (SP))  returns 0x20004860 (0000ms, 4539ms total)
T196EC 058:456 JLINK_ReadReg(R14)  returns 0x0800B209 (0000ms, 4539ms total)
T196EC 058:456 JLINK_ReadReg(R15 (PC))  returns 0x08010C16 (0000ms, 4539ms total)
T196EC 058:456 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 4539ms total)
T196EC 058:456 JLINK_ReadReg(MSP)  returns 0x20004860 (0000ms, 4539ms total)
T196EC 058:456 JLINK_ReadReg(PSP)  returns 0xFFFFFFFC (0000ms, 4539ms total)
T196EC 058:456 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 4539ms total)
T13920 058:456 JLINK_ReadMemEx(0x2000488C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20004880) -- Updating C cache (64 bytes @ 0x20004880) -- Read from C cache (4 bytes @ 0x2000488C) - Data: D7 0C 01 08  returns 0x04 (0001ms, 4540ms total)
T13920 058:457 JLINK_ReadMemEx(0x20004884, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20004884) - Data: E4 01 00 20  returns 0x04 (0000ms, 4540ms total)
T13920 058:457 JLINK_ReadMemEx(0x20004888, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x20004888) - Data: 00 00 00 00  returns 0x04 (0000ms, 4540ms total)
T13920 058:457 JLINK_ReadMemEx(0x2000488C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000488C) - Data: D7 0C 01 08  returns 0x04 (0000ms, 4540ms total)
T13920 058:457 JLINK_ReadMemEx(0x200048A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048A4) - Data: 31 D5 00 08  returns 0x04 (0000ms, 4540ms total)
T13920 058:457 JLINK_ReadMemEx(0x2000489C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x2000489C) - Data: 1A 00 00 20  returns 0x04 (0000ms, 4540ms total)
T13920 058:457 JLINK_ReadMemEx(0x200048A0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048A0) - Data: 00 08 00 50  returns 0x04 (0000ms, 4540ms total)
T13920 058:457 JLINK_ReadMemEx(0x200048A4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048A4) - Data: 31 D5 00 08  returns 0x04 (0000ms, 4540ms total)
T13920 058:457 JLINK_ReadMemEx(0x200048BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048BC) - Data: 17 2B 01 08  returns 0x04 (0001ms, 4541ms total)
T13920 058:458 JLINK_ReadMemEx(0x200048AC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048AC) - Data: F4 01 00 00  returns 0x04 (0000ms, 4541ms total)
T13920 058:458 JLINK_ReadMemEx(0x200048B0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048B0) - Data: 00 08 00 50  returns 0x04 (0000ms, 4541ms total)
T13920 058:458 JLINK_ReadMemEx(0x200048B4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048B4) - Data: 9C 3F 01 08  returns 0x04 (0000ms, 4541ms total)
T13920 058:458 JLINK_ReadMemEx(0x200048B8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048B8) - Data: 00 50 00 08  returns 0x04 (0000ms, 4541ms total)
T13920 058:458 JLINK_ReadMemEx(0x200048BC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x200048BC) - Data: 17 2B 01 08  returns 0x04 (0000ms, 4541ms total)
T13920 058:458 JLINK_ReadMemEx(0x200048C4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200048C0) -- Updating C cache (64 bytes @ 0x200048C0) -- Read from C cache (4 bytes @ 0x200048C4) - Data: 01 5B 00 08  returns 0x04 (0001ms, 4542ms total)
T13920 058:460 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200002C0) -- Updating C cache (64 bytes @ 0x200002C0) -- Read from C cache (32 bytes @ 0x200002D6) - Data: 24 47 4E 47 47 41 2C 4C 42 53 2C 31 31 36 2E 32 ...  returns 0x20 (0001ms, 4543ms total)
T13920 058:462 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20003840) -- Updating C cache (128 bytes @ 0x20003840) -- Read from C cache (32 bytes @ 0x20003874) - Data: 35 38 35 35 36 32 66 32 0D 0A 35 61 35 38 37 66 ...  returns 0x20 (0002ms, 4545ms total)
T13920 058:464 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000300) -- Updating C cache (64 bytes @ 0x20000300) -- Read from C cache (1 bytes @ 0x2000033A) - Data: 00  returns 0x01 (0002ms, 4547ms total)
T13920 058:466 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000380) -- Updating C cache (64 bytes @ 0x20000380) -- Read from C cache (2 bytes @ 0x2000039E) - Data: 00 00  returns 0x02 (0002ms, 4549ms total)
T13920 058:468 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000340) -- Updating C cache (64 bytes @ 0x20000340) -- Read from C cache (1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0001ms, 4550ms total)
T13920 058:469 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200003A2) - Data: 43  returns 0x01 (0000ms, 4550ms total)
T13920 058:470 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000200) -- Updating C cache (64 bytes @ 0x20000200) -- Read from C cache (32 bytes @ 0x2000020E) - Data: 55 AA 12 32 59 47 10 00 55 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4551ms total)
T13920 058:471 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20003874) - Data: 35 38 35 35 36 32 66 32 0D 0A 35 61 35 38 37 66 ...  returns 0x20 (0000ms, 4551ms total)
T13920 058:471 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20003200) -- Updating C cache (64 bytes @ 0x20003200) -- Read from C cache (32 bytes @ 0x20003210) - Data: 24 58 54 42 2C 34 37 35 39 2C 38 35 25 2C 33 2E ...  returns 0x20 (0002ms, 4553ms total)
T13920 058:474 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20000359) - Data: 04  returns 0x01 (0000ms, 4553ms total)
T13920 058:474 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x2000020A) - Data: 00  returns 0x01 (0000ms, 4553ms total)
T13920 058:474 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200001C0) -- Updating C cache (64 bytes @ 0x200001C0) -- Read from C cache (4 bytes @ 0x200001F4) - Data: E3 45 00 00  returns 0x04 (0001ms, 4554ms total)
T13920 058:477 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000000) -- Updating C cache (64 bytes @ 0x20000000) -- Read from C cache (2 bytes @ 0x2000000E) - Data: 00 00  returns 0x02 (0001ms, 4555ms total)
T13920 058:478 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000010) - Data: A6 0B  returns 0x02 (0000ms, 4555ms total)
T13920 058:479 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000012) - Data: 01 00  returns 0x02 (0000ms, 4555ms total)
T13920 058:479 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x20003210) - Data: 24 58 54 42 2C 34 37 35 39 2C 38 35 25 2C 33 2E ...  returns 0x20 (0000ms, 4555ms total)
T13920 058:480 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x20002440) -- Updating C cache (128 bytes @ 0x20002440) -- Read from C cache (32 bytes @ 0x20002478) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 4557ms total)
T13920 058:482 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200001E6) - Data: 00  returns 0x01 (0000ms, 4557ms total)
T13920 058:482 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000180) -- Updating C cache (64 bytes @ 0x20000180) -- Read from C cache (2 bytes @ 0x200001A4) - Data: 00 00  returns 0x02 (0001ms, 4558ms total)
T13920 058:484 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A6) - Data: 00 00  returns 0x02 (0000ms, 4558ms total)
T13920 058:484 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001A8) - Data: 00 00  returns 0x02 (0000ms, 4558ms total)
T13920 058:484 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x200001AA) - Data: 00 00  returns 0x02 (0000ms, 4558ms total)
T196EC 109:051 JLINK_ReadMemEx(0x08010C16, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08010C00) -- CPU_ReadMem(64 bytes @ 0x08010C00) -- CPU_ReadMem(2 bytes @ 0x08010C16) - Data: AA AA  returns 0xFFFFFFFF (0005ms, 4563ms total)
T196EC 109:056 JLINK_ReadMemEx(0x08010C16, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08010C00) -- CPU_ReadMem(64 bytes @ 0x08010C00) -- CPU_ReadMem(2 bytes @ 0x08010C16) - Data: AA AA  returns 0xFFFFFFFF (0006ms, 4569ms total)
T196EC 109:062 JLINK_ReadMemEx(0x08010C16, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08010C00) -- CPU_ReadMem(64 bytes @ 0x08010C00) -- CPU_ReadMem(2 bytes @ 0x08010C16) - Data: AA AA  returns 0xFFFFFFFF (0005ms, 4574ms total)
T196EC 109:067 JLINK_ReadMemEx(0x08010C16, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08010C00) -- CPU_ReadMem(64 bytes @ 0x08010C00) -- CPU_ReadMem(2 bytes @ 0x08010C16) - Data: AA AA  returns 0xFFFFFFFF (0006ms, 4580ms total)
T196EC 109:073 JLINK_ReadMemEx(0x08010C16, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08010C00) -- CPU_ReadMem(64 bytes @ 0x08010C00) -- CPU_ReadMem(2 bytes @ 0x08010C16) - Data: AA AA  returns 0xFFFFFFFF (0006ms, 4586ms total)
T196EC 109:079 JLINK_ReadMemEx(0x08010C16, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x08010C00) -- CPU_ReadMem(64 bytes @ 0x08010C00) -- CPU_ReadMem(1 bytes @ 0x08010C16) - Data: AA  returns 0xFFFFFFFF (0005ms, 4591ms total)
T196EC 109:084 JLINK_Go()
  ***** Error: CPU is not halted (0003ms, 4594ms total)
T196EC 109:188 JLINK_IsHalted()  returns ERROR (0002ms, 4596ms total)
T196EC 109:190 JLINK_Halt()CPU could not be halted  returns 0x01 (0004ms, 4598ms total)
T196EC 109:194 JLINK_IsHalted()  returns ERROR (0002ms, 4600ms total)
T196EC 109:196 JLINK_IsHalted()  returns ERROR (0003ms, 4601ms total)
T196EC 109:199 JLINK_IsHalted()  returns ERROR (0003ms, 4601ms total)
T196EC 109:202 JLINK_ReadReg(R15 (PC)) -- CPU is running
  ***** Error: Can not read register 15 (R15) while CPU is running  returns 0x00000000 (0003ms, 4601ms total)
T196EC 109:205 JLINK_ReadReg(XPSR) -- CPU is running
  ***** Error: Can not read register 16 (XPSR) while CPU is running  returns 0x00000000 (0003ms, 4604ms total)
T196EC 109:208 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30)  returns 0xFFFFFFFF (0002ms, 4606ms total)
T196EC 109:210 JLINK_ReadReg(R0) -- CPU is running
  ***** Error: Can not read register 0 (R0) while CPU is running  returns 0x00000000 (0002ms, 4608ms total)
T196EC 109:212 JLINK_ReadReg(R1) -- CPU is running
  ***** Error: Can not read register 1 (R1) while CPU is running  returns 0x00000000 (0003ms, 4611ms total)
T196EC 109:215 JLINK_ReadReg(R2) -- CPU is running
  ***** Error: Can not read register 2 (R2) while CPU is running  returns 0x00000000 (0003ms, 4614ms total)
T196EC 109:219 JLINK_ReadReg(R3) -- CPU is running
  ***** Error: Can not read register 3 (R3) while CPU is running  returns 0x00000000 (0002ms, 4616ms total)
T196EC 109:221 JLINK_ReadReg(R4) -- CPU is running
  ***** Error: Can not read register 4 (R4) while CPU is running  returns 0x00000000 (0003ms, 4619ms total)
T196EC 109:224 JLINK_ReadReg(R5) -- CPU is running
  ***** Error: Can not read register 5 (R5) while CPU is running  returns 0x00000000 (0002ms, 4621ms total)
T196EC 109:227 JLINK_ReadReg(R6) -- CPU is running
  ***** Error: Can not read register 6 (R6) while CPU is running  returns 0x00000000 (0002ms, 4624ms total)
T196EC 109:229 JLINK_ReadReg(R7) -- CPU is running
  ***** Error: Can not read register 7 (R7) while CPU is running  returns 0x00000000 (0003ms, 4627ms total)
T196EC 109:232 JLINK_ReadReg(R8) -- CPU is running
  ***** Error: Can not read register 8 (R8) while CPU is running  returns 0x00000000 (0002ms, 4629ms total)
T196EC 109:234 JLINK_ReadReg(R9) -- CPU is running
  ***** Error: Can not read register 9 (R9) while CPU is running  returns 0x00000000 (0003ms, 4632ms total)
T196EC 109:237 JLINK_ReadReg(R10) -- CPU is running
  ***** Error: Can not read register 10 (R10) while CPU is running  returns 0x00000000 (0003ms, 4635ms total)
T196EC 109:240 JLINK_ReadReg(R11) -- CPU is running
  ***** Error: Can not read register 11 (R11) while CPU is running  returns 0x00000000 (0002ms, 4637ms total)
T196EC 109:242 JLINK_ReadReg(R12) -- CPU is running
  ***** Error: Can not read register 12 (R12) while CPU is running  returns 0x00000000 (0003ms, 4640ms total)
T196EC 109:245 JLINK_ReadReg(R13 (SP)) -- CPU is running
  ***** Error: Can not read register 13 (R13) while CPU is running  returns 0x00000000 (0003ms, 4643ms total)
T196EC 109:248 JLINK_ReadReg(R14) -- CPU is running
  ***** Error: Can not read register 14 (R14) while CPU is running  returns 0x00000000 (0002ms, 4645ms total)
T196EC 109:250 JLINK_ReadReg(R15 (PC)) -- CPU is running
  ***** Error: Can not read register 15 (R15) while CPU is running  returns 0x00000000 (0003ms, 4648ms total)
T196EC 109:253 JLINK_ReadReg(XPSR) -- CPU is running
  ***** Error: Can not read register 16 (XPSR) while CPU is running  returns 0x00000000 (0003ms, 4651ms total)
T196EC 109:256 JLINK_ReadReg(MSP) -- CPU is running
  ***** Error: Can not read register 17 (MSP) while CPU is running  returns 0x00000000 (0002ms, 4653ms total)
T196EC 109:259 JLINK_ReadReg(PSP) -- CPU is running
  ***** Error: Can not read register 18 (PSP) while CPU is running  returns 0x00000000 (0002ms, 4655ms total)
T196EC 109:261 JLINK_ReadReg(CFBP) -- CPU is running
  ***** Error: Can not read register 20 (CFBP) while CPU is running  returns 0x00000000 (0003ms, 4658ms total)
T13920 109:267 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 4660ms total)
T13920 109:269 JLINK_ReadMemEx(0x200002D6, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x200002D6) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 4662ms total)
T13920 109:271 JLINK_ReadMemEx(0x200002D6, 0x000A Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(10 bytes @ 0x200002D6) - Data: AA AA AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0002ms, 4664ms total)
T13920 109:273 JLINK_ReadMemEx(0x200002D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200002D6) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 4665ms total)
T13920 109:274 JLINK_ReadMemEx(0x200002D6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200002D6) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4667ms total)
T13920 109:276 JLINK_ReadMemEx(0x200002D6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200002D6) - Data: AA  returns 0xFFFFFFFF (0002ms, 4669ms total)
T13920 109:280 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0001ms, 4670ms total)
T13920 109:281 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 4672ms total)
T13920 109:283 JLINK_ReadMemEx(0x20003874, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x20003874) - Data: AA AA AA AA AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0002ms, 4674ms total)
T13920 109:285 JLINK_ReadMemEx(0x20003874, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20003874) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 4676ms total)
T13920 109:287 JLINK_ReadMemEx(0x20003874, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20003874) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4678ms total)
T13920 109:289 JLINK_ReadMemEx(0x20003874, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20003874) - Data: AA  returns 0xFFFFFFFF (0002ms, 4680ms total)
T13920 109:292 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: AA  returns 0xFFFFFFFF (0002ms, 4682ms total)
T13920 109:294 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: AA  returns 0xFFFFFFFF (0001ms, 4683ms total)
T13920 109:295 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: AA  returns 0xFFFFFFFF (0002ms, 4685ms total)
T13920 109:297 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: AA  returns 0xFFFFFFFF (0002ms, 4687ms total)
T13920 109:299 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: AA  returns 0xFFFFFFFF (0002ms, 4689ms total)
T13920 109:301 JLINK_ReadMemEx(0x2000033A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000033A) - Data: AA  returns 0xFFFFFFFF (0002ms, 4691ms total)
T13920 109:304 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4693ms total)
T13920 109:306 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4695ms total)
T13920 109:308 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 4696ms total)
T13920 109:310 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 4697ms total)
T13920 109:311 JLINK_ReadMemEx(0x2000039E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000039E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4699ms total)
T13920 109:313 JLINK_ReadMemEx(0x2000039E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000039E) - Data: AA  returns 0xFFFFFFFF (0003ms, 4702ms total)
T13920 109:317 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: AA  returns 0xFFFFFFFF (0002ms, 4704ms total)
T13920 109:319 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: AA  returns 0xFFFFFFFF (0001ms, 4705ms total)
T13920 109:320 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: AA  returns 0xFFFFFFFF (0002ms, 4707ms total)
T13920 109:322 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: AA  returns 0xFFFFFFFF (0002ms, 4709ms total)
T13920 109:324 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: AA  returns 0xFFFFFFFF (0002ms, 4711ms total)
T13920 109:326 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: AA  returns 0xFFFFFFFF (0002ms, 4713ms total)
T13920 109:328 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: AA  returns 0xFFFFFFFF (0002ms, 4715ms total)
T13920 109:330 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: AA  returns 0xFFFFFFFF (0002ms, 4717ms total)
T13920 109:332 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: AA  returns 0xFFFFFFFF (0002ms, 4719ms total)
T13920 109:334 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: AA  returns 0xFFFFFFFF (0001ms, 4720ms total)
T13920 109:335 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: AA  returns 0xFFFFFFFF (0002ms, 4722ms total)
T13920 109:337 JLINK_ReadMemEx(0x200003A2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200003A2) - Data: AA  returns 0xFFFFFFFF (0002ms, 4724ms total)
T13920 109:340 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 4726ms total)
T13920 109:342 JLINK_ReadMemEx(0x2000020E, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x2000020E) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 4728ms total)
T13920 109:344 JLINK_ReadMemEx(0x2000020E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000020E) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 4729ms total)
T13920 109:345 JLINK_ReadMemEx(0x2000020E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000020E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4731ms total)
T13920 109:347 JLINK_ReadMemEx(0x2000020E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000020E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4733ms total)
T13920 109:349 JLINK_ReadMemEx(0x2000020E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020E) - Data: AA  returns 0xFFFFFFFF (0002ms, 4735ms total)
T13920 109:352 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 4737ms total)
T13920 109:354 JLINK_ReadMemEx(0x20003874, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003874) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 4739ms total)
T13920 109:356 JLINK_ReadMemEx(0x20003874, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x20003874) - Data: AA AA AA AA AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0001ms, 4740ms total)
T13920 109:357 JLINK_ReadMemEx(0x20003874, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20003874) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 4742ms total)
T13920 109:359 JLINK_ReadMemEx(0x20003874, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20003874) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4744ms total)
T13920 109:361 JLINK_ReadMemEx(0x20003874, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20003874) - Data: AA  returns 0xFFFFFFFF (0002ms, 4746ms total)
T13920 109:364 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0001ms, 4747ms total)
T13920 109:365 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 4749ms total)
T13920 109:367 JLINK_ReadMemEx(0x20003210, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x20003210) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0002ms, 4751ms total)
T13920 109:369 JLINK_ReadMemEx(0x20003210, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20003210) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 4753ms total)
T13920 109:371 JLINK_ReadMemEx(0x20003210, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20003210) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4755ms total)
T13920 109:373 JLINK_ReadMemEx(0x20003210, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20003210) - Data: AA  returns 0xFFFFFFFF (0002ms, 4757ms total)
T13920 109:377 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: AA  returns 0xFFFFFFFF (0001ms, 4758ms total)
T13920 109:378 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: AA  returns 0xFFFFFFFF (0002ms, 4760ms total)
T13920 109:380 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: AA  returns 0xFFFFFFFF (0002ms, 4762ms total)
T13920 109:382 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: AA  returns 0xFFFFFFFF (0002ms, 4764ms total)
T13920 109:384 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: AA  returns 0xFFFFFFFF (0002ms, 4766ms total)
T13920 109:386 JLINK_ReadMemEx(0x20000359, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000359) - Data: AA  returns 0xFFFFFFFF (0001ms, 4767ms total)
T13920 109:389 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: AA  returns 0xFFFFFFFF (0002ms, 4769ms total)
T13920 109:391 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: AA  returns 0xFFFFFFFF (0002ms, 4771ms total)
T13920 109:393 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: AA  returns 0xFFFFFFFF (0001ms, 4772ms total)
T13920 109:394 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: AA  returns 0xFFFFFFFF (0002ms, 4774ms total)
T13920 109:396 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: AA  returns 0xFFFFFFFF (0002ms, 4776ms total)
T13920 109:398 JLINK_ReadMemEx(0x2000020A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000020A) - Data: AA  returns 0xFFFFFFFF (0002ms, 4778ms total)
T13920 109:402 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 4780ms total)
T13920 109:404 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 4782ms total)
T13920 109:406 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 4784ms total)
T13920 109:408 JLINK_ReadMemEx(0x200001F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x200001F4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 4786ms total)
T13920 109:410 JLINK_ReadMemEx(0x200001F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001F4) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4788ms total)
T13920 109:412 JLINK_ReadMemEx(0x200001F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001F4) - Data: AA  returns 0xFFFFFFFF (0002ms, 4790ms total)
T13920 109:415 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4792ms total)
T13920 109:417 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4794ms total)
T13920 109:419 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 4795ms total)
T13920 109:420 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4797ms total)
T13920 109:422 JLINK_ReadMemEx(0x2000000E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x2000000E) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4799ms total)
T13920 109:424 JLINK_ReadMemEx(0x2000000E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x2000000E) - Data: AA  returns 0xFFFFFFFF (0002ms, 4801ms total)
T13920 109:426 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4803ms total)
T13920 109:428 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4805ms total)
T13920 109:430 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4807ms total)
T13920 109:432 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4809ms total)
T13920 109:434 JLINK_ReadMemEx(0x20000010, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000010) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 4810ms total)
T13920 109:435 JLINK_ReadMemEx(0x20000010, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000010) - Data: AA  returns 0xFFFFFFFF (0002ms, 4812ms total)
T13920 109:438 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4814ms total)
T13920 109:440 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4816ms total)
T13920 109:442 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 4817ms total)
T13920 109:443 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4819ms total)
T13920 109:445 JLINK_ReadMemEx(0x20000012, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000012) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4821ms total)
T13920 109:447 JLINK_ReadMemEx(0x20000012, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20000012) - Data: AA  returns 0xFFFFFFFF (0002ms, 4823ms total)
T13920 109:450 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 4825ms total)
T13920 109:452 JLINK_ReadMemEx(0x20003210, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20003210) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0001ms, 4826ms total)
T13920 109:453 JLINK_ReadMemEx(0x20003210, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x20003210) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0002ms, 4828ms total)
T13920 109:455 JLINK_ReadMemEx(0x20003210, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20003210) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 4830ms total)
T13920 109:457 JLINK_ReadMemEx(0x20003210, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20003210) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4832ms total)
T13920 109:459 JLINK_ReadMemEx(0x20003210, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20003210) - Data: AA  returns 0xFFFFFFFF (0002ms, 4834ms total)
T13920 109:462 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 4836ms total)
T13920 109:464 JLINK_ReadMemEx(0x20002478, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x20002478) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 4838ms total)
T13920 109:466 JLINK_ReadMemEx(0x20002478, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x20002478) - Data: AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0002ms, 4840ms total)
T13920 109:468 JLINK_ReadMemEx(0x20002478, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x20002478) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 4842ms total)
T13920 109:470 JLINK_ReadMemEx(0x20002478, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20002478) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 4843ms total)
T13920 109:472 JLINK_ReadMemEx(0x20002478, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20002478) - Data: AA  returns 0xFFFFFFFF (0001ms, 4845ms total)
T13920 109:484 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: AA  returns 0xFFFFFFFF (0002ms, 4847ms total)
T13920 109:486 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: AA  returns 0xFFFFFFFF (0002ms, 4849ms total)
T13920 109:488 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: AA  returns 0xFFFFFFFF (0002ms, 4851ms total)
T13920 109:490 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: AA  returns 0xFFFFFFFF (0001ms, 4852ms total)
T13920 109:491 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: AA  returns 0xFFFFFFFF (0002ms, 4854ms total)
T13920 109:493 JLINK_ReadMemEx(0x200001E6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001E6) - Data: AA  returns 0xFFFFFFFF (0002ms, 4856ms total)
T13920 109:495 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4858ms total)
T13920 109:497 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4860ms total)
T13920 109:499 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4862ms total)
T13920 109:501 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4864ms total)
T13920 109:503 JLINK_ReadMemEx(0x200001A4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A4) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 4865ms total)
T13920 109:504 JLINK_ReadMemEx(0x200001A4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001A4) - Data: AA  returns 0xFFFFFFFF (0002ms, 4867ms total)
T13920 109:506 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4869ms total)
T13920 109:508 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4871ms total)
T13920 109:510 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4873ms total)
T13920 109:512 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4875ms total)
T13920 109:514 JLINK_ReadMemEx(0x200001A6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A6) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 4876ms total)
T13920 109:515 JLINK_ReadMemEx(0x200001A6, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001A6) - Data: AA  returns 0xFFFFFFFF (0002ms, 4878ms total)
T13920 109:517 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4880ms total)
T13920 109:519 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4882ms total)
T13920 109:521 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4884ms total)
T13920 109:523 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4886ms total)
T13920 109:525 JLINK_ReadMemEx(0x200001A8, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001A8) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 4887ms total)
T13920 109:526 JLINK_ReadMemEx(0x200001A8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001A8) - Data: AA  returns 0xFFFFFFFF (0002ms, 4889ms total)
T13920 109:528 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4891ms total)
T13920 109:530 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4893ms total)
T13920 109:532 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4895ms total)
T13920 109:534 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 4896ms total)
T13920 109:535 JLINK_ReadMemEx(0x200001AA, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x200001AA) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4898ms total)
T13920 109:537 JLINK_ReadMemEx(0x200001AA, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200001AA) - Data: AA  returns 0xFFFFFFFF (0002ms, 4900ms total)
T13920 109:539 JLINK_ReadMemEx(0x00000000, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x00000004) -- CPU_ReadMem(60 bytes @ 0x08000000) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0004ms, 4904ms total)
T13920 109:543 JLINK_ReadMemEx(0x00000000, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000000) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 4906ms total)
T13920 109:545 JLINK_ReadMemEx(0x00000000, 0x0010 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(16 bytes @ 0x08000000) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0002ms, 4908ms total)
T13920 109:547 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000000) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 4910ms total)
T13920 109:549 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4912ms total)
T13920 109:551 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: AA  returns 0xFFFFFFFF (0001ms, 4913ms total)
T13920 109:552 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4915ms total)
T13920 109:554 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4917ms total)
T13920 109:556 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4919ms total)
T13920 109:558 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4921ms total)
T13920 109:560 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000000) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4923ms total)
T13920 109:562 JLINK_ReadMemEx(0x00000000, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000000) - Data: AA  returns 0xFFFFFFFF (0001ms, 4924ms total)
T13920 109:564 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4927ms total)
T13920 109:566 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4929ms total)
T13920 109:568 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 4930ms total)
T13920 109:569 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4932ms total)
T13920 109:571 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4934ms total)
T13920 109:573 JLINK_ReadMemEx(0x00000002, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000002) - Data: AA  returns 0xFFFFFFFF (0002ms, 4936ms total)
T13920 109:575 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4938ms total)
T13920 109:577 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 4939ms total)
T13920 109:578 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4941ms total)
T13920 109:580 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4943ms total)
T13920 109:582 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000002) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4945ms total)
T13920 109:584 JLINK_ReadMemEx(0x00000002, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000002) - Data: AA  returns 0xFFFFFFFF (0002ms, 4947ms total)
T13920 109:586 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 4949ms total)
T13920 109:588 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 4951ms total)
T13920 109:590 JLINK_ReadMemEx(0x00000004, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x08000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0001ms, 4952ms total)
T13920 109:591 JLINK_ReadMemEx(0x00000004, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000004) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 4954ms total)
T13920 109:593 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4956ms total)
T13920 109:595 JLINK_ReadMemEx(0x00000004, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000004) - Data: AA  returns 0xFFFFFFFF (0002ms, 4958ms total)
T13920 109:597 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4960ms total)
T13920 109:599 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4962ms total)
T13920 109:601 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4964ms total)
T13920 109:603 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 4965ms total)
T13920 109:604 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4967ms total)
T13920 109:606 JLINK_ReadMemEx(0x00000004, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000004) - Data: AA  returns 0xFFFFFFFF (0002ms, 4969ms total)
T13920 109:608 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 4971ms total)
T13920 109:610 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 4973ms total)
T13920 109:612 JLINK_ReadMemEx(0x00000004, 0x000C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(12 bytes @ 0x08000004) - Data: AA AA AA AA AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0002ms, 4975ms total)
T13920 109:614 JLINK_ReadMemEx(0x00000004, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000004) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 4977ms total)
T13920 109:616 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 4978ms total)
T13920 109:618 JLINK_ReadMemEx(0x00000004, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000004) - Data: AA  returns 0xFFFFFFFF (0001ms, 4979ms total)
T13920 109:619 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4981ms total)
T13920 109:621 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4983ms total)
T13920 109:623 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4985ms total)
T13920 109:625 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4987ms total)
T13920 109:627 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000004) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4989ms total)
T13920 109:629 JLINK_ReadMemEx(0x00000004, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000004) - Data: AA  returns 0xFFFFFFFF (0001ms, 4990ms total)
T13920 109:630 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4992ms total)
T13920 109:632 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4994ms total)
T13920 109:634 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4996ms total)
T13920 109:636 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 4998ms total)
T13920 109:638 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5000ms total)
T13920 109:640 JLINK_ReadMemEx(0x00000006, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000006) - Data: AA  returns 0xFFFFFFFF (0001ms, 5001ms total)
T13920 109:641 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5003ms total)
T13920 109:643 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5005ms total)
T13920 109:645 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5007ms total)
T13920 109:647 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5009ms total)
T13920 109:649 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000006) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 5010ms total)
T13920 109:650 JLINK_ReadMemEx(0x00000006, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000006) - Data: AA  returns 0xFFFFFFFF (0002ms, 5012ms total)
T13920 109:652 JLINK_ReadMemEx(0x00000008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000008) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 5014ms total)
T13920 109:654 JLINK_ReadMemEx(0x00000008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000008) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 5016ms total)
T13920 109:656 JLINK_ReadMemEx(0x00000008, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x08000008) - Data: AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5018ms total)
T13920 109:658 JLINK_ReadMemEx(0x00000008, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000008) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5020ms total)
T13920 109:660 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0003ms, 5023ms total)
T13920 109:663 JLINK_ReadMemEx(0x00000008, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000008) - Data: AA  returns 0xFFFFFFFF (0001ms, 5024ms total)
T13920 109:664 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5026ms total)
T13920 109:666 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5028ms total)
T13920 109:668 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5030ms total)
T13920 109:670 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5032ms total)
T13920 109:672 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 5033ms total)
T13920 109:673 JLINK_ReadMemEx(0x00000008, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000008) - Data: AA  returns 0xFFFFFFFF (0002ms, 5035ms total)
T13920 109:675 JLINK_ReadMemEx(0x00000008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000008) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 5037ms total)
T13920 109:677 JLINK_ReadMemEx(0x00000008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x08000008) - Data: AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA AA ...  returns 0xFFFFFFFF (0002ms, 5039ms total)
T13920 109:679 JLINK_ReadMemEx(0x00000008, 0x0008 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(8 bytes @ 0x08000008) - Data: AA AA AA AA AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5041ms total)
T13920 109:681 JLINK_ReadMemEx(0x00000008, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x08000008) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 5043ms total)
T13920 109:683 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 5044ms total)
T13920 109:684 JLINK_ReadMemEx(0x00000008, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000008) - Data: AA  returns 0xFFFFFFFF (0002ms, 5046ms total)
T13920 109:686 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5048ms total)
T13920 109:688 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5050ms total)
T13920 109:690 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 5051ms total)
T13920 109:691 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5053ms total)
T13920 109:693 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x08000008) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5055ms total)
T13920 109:695 JLINK_ReadMemEx(0x00000008, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x08000008) - Data: AA  returns 0xFFFFFFFF (0002ms, 5057ms total)
T13920 109:697 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0800000A) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5059ms total)
T13920 109:699 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0800000A) - Data: AA AA  returns 0xFFFFFFFF (0001ms, 5060ms total)
T13920 109:700 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0800000A) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5062ms total)
T13920 109:702 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0800000A) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5064ms total)
T13920 109:704 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0800000A) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 5066ms total)
T13920 109:706 JLINK_ReadMemEx(0x0000000A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0800000A) - Data: AA  returns 0xFFFFFFFF (0001ms, 5067ms total)
T13920 113:692 JLINK_Close() -- CPU is running -- CPU is running -- CPU is running -- CPU is runningCPU could not be halted -- CPU_WriteMem(4 bytes @ 0xE0002008) >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> >0x0D TIF> (0013ms, 5080ms total)
T13920 113:692  (0013ms, 5080ms total)
T13920 113:692 Closed (0013ms, 5080ms total)