WXK
2023-07-28 d74cb2bd098186eef245b733aae6945db77a7431
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
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
T17D34 000:036.906   SEGGER J-Link V7.80c Log File
T17D34 000:037.044   DLL Compiled: Sep 27 2022 16:01:16
T17D34 000:037.055   Logging started @ 2023-07-28 10:10
T17D34 000:037.063 - 37.068ms
T17D34 000:037.080 JLINK_SetWarnOutHandler(...)
T17D34 000:037.090 - 0.014ms
T17D34 000:037.100 JLINK_OpenEx(...)
T17D34 000:038.057   Firmware: J-Link ARM-OB STM32 compiled Aug 22 2012 19:52:04
T17D34 000:038.306   Firmware: J-Link ARM-OB STM32 compiled Aug 22 2012 19:52:04
T17D34 000:039.736   Hardware: V7.00
T17D34 000:039.753   S/N: 20090928
T17D34 000:039.766   OEM: SEGGER
T17D34 000:039.778   Feature(s): RDI,FlashDL,FlashBP,JFlash,GDB
T17D34 000:040.468   TELNET listener socket opened on port 19021
T17D34 000:040.680   WEBSRV WEBSRV_Init(): Starting webserver thread(s)
T17D34 000:040.800   WEBSRV Webserver running on local port 19080
T17D34 000:047.047 - 9.962ms returns "O.K."
T17D34 000:047.091 JLINK_GetEmuCaps()
T17D34 000:047.104 - 0.018ms returns 0x88EA5833
T17D34 000:047.120 JLINK_TIF_GetAvailable(...)
T17D34 000:047.263 - 0.149ms
T17D34 000:047.279 JLINK_SetErrorOutHandler(...)
T17D34 000:047.289 - 0.015ms
T17D34 000:047.319 JLINK_ExecCommand("ProjectFile = "C:\git\XRange_Tag - ·¢ËÍ»ùÕ¾-dw3000\MDK-ARM\JLinkSettings.ini"", ...). 
T17D34 000:056.151   Ref file found at: C:\Keil_v5\ARM\Segger\JLinkDevices.ref
T17D34 000:056.332   REF file references invalid XML file: C:\Program Files (x86)\SEGGER\JLink\JLinkDevices.xml
T17D34 000:056.759 - 9.448ms returns 0x00
T17D34 000:056.802 JLINK_ExecCommand("Device = STM32L051C8Tx", ...). 
T17D34 000:057.014   Device "STM32L051C8" selected.
T17D34 000:057.590 - 0.783ms returns 0x00
T17D34 000:057.606 JLINK_ExecCommand("DisableConnectionTimeout", ...). 
T17D34 000:057.620 - 0.005ms returns 0x01
T17D34 000:057.630 JLINK_GetHardwareVersion()
T17D34 000:057.639 - 0.012ms returns 70000
T17D34 000:057.649 JLINK_GetDLLVersion()
T17D34 000:057.657 - 0.012ms returns 78003
T17D34 000:057.667 JLINK_GetOEMString(...)
T17D34 000:057.680 JLINK_GetFirmwareString(...)
T17D34 000:057.689 - 0.012ms
T17D34 000:057.712 JLINK_GetDLLVersion()
T17D34 000:057.720 - 0.012ms returns 78003
T17D34 000:057.730 JLINK_GetCompileDateTime()
T17D34 000:057.738 - 0.012ms
T17D34 000:057.752 JLINK_GetFirmwareString(...)
T17D34 000:057.761 - 0.012ms
T17D34 000:057.774 JLINK_GetHardwareVersion()
T17D34 000:057.782 - 0.012ms returns 70000
T17D34 000:057.795 JLINK_GetSN()
T17D34 000:057.804 - 0.012ms returns 20090928
T17D34 000:057.816 JLINK_GetOEMString(...)
T17D34 000:057.839 JLINK_TIF_Select(JLINKARM_TIF_SWD)
T17D34 000:058.198 - 0.366ms returns 0x00
T17D34 000:058.213 JLINK_HasError()
T17D34 000:058.235 JLINK_SetSpeed(5000)
T17D34 000:058.301 - 0.071ms
T17D34 000:058.314 JLINK_GetId()
T17D34 000:058.460   InitTarget() start
T17D34 000:058.478    J-Link Script File: Executing InitTarget()
T17D34 000:073.056   InitTarget() end
T17D34 000:073.663   Found SW-DP with ID 0x0BC11477
T17D34 000:076.400   Old FW that does not support reading DPIDR via DAP jobs
T17D34 000:079.188   DPv0 detected
T17D34 000:079.219   CoreSight SoC-400 or earlier
T17D34 000:079.239   Scanning AP map to find all available APs
T17D34 000:081.037   AP[1]: Stopped AP scan as end of AP map has been reached
T17D34 000:081.057   AP[0]: AHB-AP (IDR: 0x04770031)
T17D34 000:081.073   Iterating through AP map to find AHB-AP to use
T17D34 000:084.038   AP[0]: Core found
T17D34 000:084.063   AP[0]: AHB-AP ROM base: 0xF0000000
T17D34 000:085.483   CPUID register: 0x410CC601. Implementer code: 0x41 (ARM)
T17D34 000:085.507   Found Cortex-M0 r0p1, Little endian.
T17D34 000:186.031   -- Max. mem block: 0x00002C18
T17D34 000:186.177   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T17D34 000:186.657   CPU_ReadMem(4 bytes @ 0xE0002000)
T17D34 000:187.067   FPUnit: 4 code (BP) slots and 0 literal slots
T17D34 000:187.084   CPU_ReadMem(4 bytes @ 0xE000EDFC)
T17D34 000:187.462   CPU_WriteMem(4 bytes @ 0xE000EDFC)
T17D34 000:187.871   CPU_ReadMem(4 bytes @ 0xE0001000)
T17D34 000:188.252   CPU_WriteMem(4 bytes @ 0xE0001000)
T17D34 000:188.716   CoreSight components:
T17D34 000:188.748   ROMTbl[0] @ F0000000
T17D34 000:188.766   CPU_ReadMem(64 bytes @ 0xF0000000)
T17D34 000:189.750   CPU_ReadMem(32 bytes @ 0xE00FFFE0)
T17D34 000:190.427   [0][0]: E00FF000 CID B105100D PID 000BB4C0 ROM Table
T17D34 000:190.447   ROMTbl[1] @ E00FF000
T17D34 000:190.463   CPU_ReadMem(64 bytes @ 0xE00FF000)
T17D34 000:191.445   CPU_ReadMem(32 bytes @ 0xE000EFE0)
T17D34 000:192.111   [1][0]: E000E000 CID B105E00D PID 000BB008 SCS
T17D34 000:192.129   CPU_ReadMem(32 bytes @ 0xE0001FE0)
T17D34 000:192.794   [1][1]: E0001000 CID B105E00D PID 000BB00A DWT
T17D34 000:192.814   CPU_ReadMem(32 bytes @ 0xE0002FE0)
T17D34 000:193.477   [1][2]: E0002000 CID B105E00D PID 000BB00B FPB
T17D34 000:193.805 - 135.499ms returns 0x0BC11477
T17D34 000:193.826 JLINK_GetDLLVersion()
T17D34 000:193.835 - 0.013ms returns 78003
T17D34 000:193.846 JLINK_CORE_GetFound()
T17D34 000:193.854 - 0.012ms returns 0x60000FF
T17D34 000:193.866 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX)
T17D34 000:193.878   Value=0xF0000000
T17D34 000:193.891 - 0.029ms returns 0
T17D34 000:193.936 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX)
T17D34 000:193.947   Value=0xF0000000
T17D34 000:193.960 - 0.028ms returns 0
T17D34 000:193.970 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX)
T17D34 000:193.979   Value=0x00000000
T17D34 000:193.991 - 0.024ms returns 0
T17D34 000:194.007 JLINK_ReadMemEx(0xE0041FF0, 0x10 Bytes, Flags = 0x02000004)
T17D34 000:194.037   CPU_ReadMem(16 bytes @ 0xE0041FF0)
T17D34 000:194.544   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
T17D34 000:194.560 - 0.557ms returns 16 (0x10)
T17D34 000:194.571 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX)
T17D34 000:194.581   Value=0x00000000
T17D34 000:194.594 - 0.027ms returns 0
T17D34 000:194.604 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX)
T17D34 000:194.613   Value=0x00000000
T17D34 000:194.625 - 0.024ms returns 0
T17D34 000:194.635 JLINK_ReadMemEx(0xE0040FF0, 0x10 Bytes, Flags = 0x02000004)
T17D34 000:194.648   CPU_ReadMem(16 bytes @ 0xE0040FF0)
T17D34 000:195.152   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
T17D34 000:195.167 - 0.536ms returns 16 (0x10)
T17D34 000:195.178 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX)
T17D34 000:195.187   Value=0xE0000000
T17D34 000:195.199 - 0.025ms returns 0
T17D34 000:195.208 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX)
T17D34 000:195.217   Value=0xE0001000
T17D34 000:195.229 - 0.025ms returns 0
T17D34 000:195.239 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX)
T17D34 000:195.248   Value=0xE0002000
T17D34 000:195.260 - 0.024ms returns 0
T17D34 000:195.269 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX)
T17D34 000:195.278   Value=0xE000E000
T17D34 000:195.290 - 0.024ms returns 0
T17D34 000:195.299 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX)
T17D34 000:195.308   Value=0xE000EDF0
T17D34 000:195.319 - 0.024ms returns 0
T17D34 000:195.329 JLINK_GetDebugInfo(0x01 = Unknown)
T17D34 000:195.338   Value=0x00000000
T17D34 000:195.349 - 0.024ms returns 0
T17D34 000:195.359 JLINK_ReadMemU32(0xE000ED00, 0x1 Items)
T17D34 000:195.370   CPU_ReadMem(4 bytes @ 0xE000ED00)
T17D34 000:195.752   Data:  01 C6 0C 41
T17D34 000:195.771   Debug reg: CPUID
T17D34 000:195.783 - 0.428ms returns 1 (0x1)
T17D34 000:195.794 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX)
T17D34 000:195.803   Value=0x00000000
T17D34 000:195.815 - 0.024ms returns 0
T17D34 000:195.825 JLINK_Halt()
T17D34 000:198.887 - 3.073ms returns 0x00
T17D34 000:198.908 JLINK_ReadMemU32(0xE000EDF0, 0x1 Items)
T17D34 000:198.923   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T17D34 000:199.344   Data:  03 00 03 01
T17D34 000:199.361   Debug reg: DHCSR
T17D34 000:199.376 - 0.473ms returns 1 (0x1)
T17D34 000:199.395 JLINK_WriteU32_64(0xE000EDF0, 0xA05F0003)
T17D34 000:199.407   Debug reg: DHCSR
T17D34 000:199.783   CPU_WriteMem(4 bytes @ 0xE000EDF0)
T17D34 000:200.201 - 0.813ms returns 0 (0x00000000)
T17D34 000:200.218 JLINK_WriteU32_64(0xE000EDFC, 0x01000000)
T17D34 000:200.228   Debug reg: DEMCR
T17D34 000:200.247   CPU_WriteMem(4 bytes @ 0xE000EDFC)
T17D34 000:200.651 - 0.438ms returns 0 (0x00000000)
T17D34 000:200.688 JLINK_GetHWStatus(...)
T17D34 000:200.801 - 0.117ms returns 0
T17D34 000:200.826 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)
T17D34 000:200.835 - 0.013ms returns 0x04
T17D34 000:200.845 JLINK_GetNumBPUnits(Type = 0xF0)
T17D34 000:200.854 - 0.012ms returns 0x2000
T17D34 000:200.864 JLINK_GetNumWPUnits()
T17D34 000:200.872 - 0.012ms returns 2
T17D34 000:200.890 JLINK_GetSpeed()
T17D34 000:200.899 - 0.013ms returns 4000
T17D34 000:200.914 JLINK_ReadMemU32(0xE000E004, 0x1 Items)
T17D34 000:200.926   CPU_ReadMem(4 bytes @ 0xE000E004)
T17D34 000:201.342   Data:  00 00 00 00
T17D34 000:201.356 - 0.445ms returns 1 (0x1)
T17D34 000:201.368 JLINK_HasError()
T17D34 000:201.378 JLINK_ReadReg(R15 (PC))
T17D34 000:201.395 - 0.020ms returns 0x08002318
T17D34 000:201.405 JLINK_ReadReg(XPSR)
T17D34 000:201.414 - 0.013ms returns 0x21000000
T17D34 000:293.925 JLINK_HasError()
T17D34 000:293.956 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)
T17D34 000:293.966 - 0.014ms returns JLINKARM_CM3_RESET_TYPE_NORMAL
T17D34 000:293.977 JLINK_Reset()
T17D34 000:294.009   CPU_WriteMem(4 bytes @ 0xE000EDF0)
T17D34 000:294.436   CPU_WriteMem(4 bytes @ 0xE000EDFC)
T17D34 000:294.854   Reset: Halt core after reset via DEMCR.VC_CORERESET.
T17D34 000:295.197   Reset: Reset device via AIRCR.SYSRESETREQ.
T17D34 000:295.216   CPU_WriteMem(4 bytes @ 0xE000ED0C)
T17D34 000:348.038   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T17D34 000:348.434   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T17D34 000:348.817   CPU_WriteMem(4 bytes @ 0xE000EDF0)
T17D34 000:349.226   CPU_WriteMem(4 bytes @ 0xE000EDFC)
T17D34 000:354.682   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T17D34 000:358.115   CPU_WriteMem(4 bytes @ 0xE0002000)
T17D34 000:358.527   CPU_ReadMem(4 bytes @ 0xE000EDFC)
T17D34 000:358.907   CPU_ReadMem(4 bytes @ 0xE0001000)
T17D34 000:359.289   CPU_WriteMem(4 bytes @ 0xE0001000)
T17D34 000:359.706 - 65.736ms
T17D34 000:359.764 JLINK_HasError()
T17D34 000:359.779 JLINK_ReadReg(R15 (PC))
T17D34 000:359.793 - 0.018ms returns 0x080000D4
T17D34 000:359.805 JLINK_ReadReg(XPSR)
T17D34 000:359.816 - 0.015ms returns 0xF1000000
T17D34 000:359.899 JLINK_ReadMemEx(0x080000D4, 0x3C Bytes, Flags = 0x02000000)
T17D34 000:359.917   CPU_ReadMem(128 bytes @ 0x080000C0)
T17D34 000:361.620    -- Updating C cache (128 bytes @ 0x080000C0)
T17D34 000:361.645    -- Read from C cache (60 bytes @ 0x080000D4)
T17D34 000:361.662   Data:  04 48 80 47 04 48 00 47 FE E7 FE E7 FE E7 FE E7 ...
T17D34 000:361.676 - 1.784ms returns 60 (0x3C)
T17D34 000:361.693 JLINK_ReadMemEx(0x080000D4, 0x2 Bytes, Flags = 0x02000000)
T17D34 000:361.705    -- Read from C cache (2 bytes @ 0x080000D4)
T17D34 000:361.720   Data:  04 48
T17D34 000:361.735 - 0.047ms returns 2 (0x2)
T17D34 000:361.808 JLINK_ReadMemEx(0x080000D6, 0x2 Bytes, Flags = 0x02000000)
T17D34 000:361.821    -- Read from C cache (2 bytes @ 0x080000D6)
T17D34 000:361.835   Data:  80 47
T17D34 000:361.850 - 0.046ms returns 2 (0x2)
T17D34 000:361.878 JLINK_ReadMemEx(0x080000D6, 0x2 Bytes, Flags = 0x02000000)
T17D34 000:361.890    -- Read from C cache (2 bytes @ 0x080000D6)
T17D34 000:361.904   Data:  80 47
T17D34 000:361.919 - 0.045ms returns 2 (0x2)
T17D34 000:361.931 JLINK_ReadMemEx(0x080000D8, 0x3C Bytes, Flags = 0x02000000)
T17D34 000:361.942    -- Read from C cache (60 bytes @ 0x080000D8)
T17D34 000:361.957   Data:  04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...
T17D34 000:361.971 - 0.045ms returns 60 (0x3C)
T17D34 000:361.983 JLINK_ReadMemEx(0x080000D8, 0x2 Bytes, Flags = 0x02000000)
T17D34 000:361.993    -- Read from C cache (2 bytes @ 0x080000D8)
T17D34 000:362.008   Data:  04 48
T17D34 000:362.023 - 0.045ms returns 2 (0x2)
T17D34 000:362.039 JLINK_ReadMemEx(0x080000D8, 0x3C Bytes, Flags = 0x02000000)
T17D34 000:362.054    -- Read from C cache (60 bytes @ 0x080000D8)
T17D34 000:362.071   Data:  04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...
T17D34 000:362.086 - 0.051ms returns 60 (0x3C)
T17D34 000:362.097 JLINK_ReadMemEx(0x080000D8, 0x2 Bytes, Flags = 0x02000000)
T17D34 000:362.108    -- Read from C cache (2 bytes @ 0x080000D8)
T17D34 000:362.122   Data:  04 48
T17D34 000:362.137 - 0.044ms returns 2 (0x2)
T17D34 000:362.149 JLINK_ReadMemEx(0x080000DA, 0x2 Bytes, Flags = 0x02000000)
T17D34 000:362.159    -- Read from C cache (2 bytes @ 0x080000DA)
T17D34 000:362.173   Data:  00 47
T17D34 000:362.188 - 0.044ms returns 2 (0x2)
T17D34 000:362.204 JLINK_ReadMemEx(0x080000DA, 0x2 Bytes, Flags = 0x02000000)
T17D34 000:362.215    -- Read from C cache (2 bytes @ 0x080000DA)
T17D34 000:362.231   Data:  00 47
T17D34 000:362.246 - 0.046ms returns 2 (0x2)
T17D34 000:362.257 JLINK_ReadMemEx(0x080000DC, 0x3C Bytes, Flags = 0x02000000)
T17D34 000:362.268    -- Read from C cache (60 bytes @ 0x080000DC)
T17D34 000:362.283   Data:  FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 A9 25 00 08 ...
T17D34 000:362.298 - 0.045ms returns 60 (0x3C)
T17D34 000:362.309 JLINK_ReadMemEx(0x080000DC, 0x2 Bytes, Flags = 0x02000000)
T17D34 000:362.320    -- Read from C cache (2 bytes @ 0x080000DC)
T17D34 000:362.334   Data:  FE E7
T17D34 000:362.349 - 0.044ms returns 2 (0x2)
T17D34 000:362.364 JLINK_ReadMemEx(0x080000DC, 0x3C Bytes, Flags = 0x02000000)
T17D34 000:362.375    -- Read from C cache (60 bytes @ 0x080000DC)
T17D34 000:362.390   Data:  FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 A9 25 00 08 ...
T17D34 000:362.404 - 0.045ms returns 60 (0x3C)
T17D34 000:362.416 JLINK_ReadMemEx(0x080000DC, 0x2 Bytes, Flags = 0x02000000)
T17D34 000:362.426    -- Read from C cache (2 bytes @ 0x080000DC)
T17D34 000:362.440   Data:  FE E7
T17D34 000:362.455 - 0.044ms returns 2 (0x2)
T17D34 000:362.467 JLINK_ReadMemEx(0x080000DE, 0x2 Bytes, Flags = 0x02000000)
T17D34 000:362.477    -- Read from C cache (2 bytes @ 0x080000DE)
T17D34 000:362.491   Data:  FE E7
T17D34 000:362.506 - 0.044ms returns 2 (0x2)
T17D34 001:529.565 JLINK_ReadMemEx(0x080000DE, 0x2 Bytes, Flags = 0x02000000)
T17D34 001:529.602    -- Read from C cache (2 bytes @ 0x080000DE)
T17D34 001:529.619   Data:  FE E7
T17D34 001:529.634 - 0.075ms returns 2 (0x2)
T17D34 001:529.648 JLINK_ReadMemEx(0x080000E0, 0x3C Bytes, Flags = 0x02000000)
T17D34 001:529.659    -- Read from C cache (60 bytes @ 0x080000E0)
T17D34 001:529.675   Data:  FE E7 FE E7 FE E7 FE E7 A9 25 00 08 C1 00 00 08 ...
T17D34 001:529.689 - 0.046ms returns 60 (0x3C)
T17D34 001:529.701 JLINK_ReadMemEx(0x080000E0, 0x2 Bytes, Flags = 0x02000000)
T17D34 001:529.712    -- Read from C cache (2 bytes @ 0x080000E0)
T17D34 001:529.727   Data:  FE E7
T17D34 001:529.741 - 0.045ms returns 2 (0x2)
T17D34 001:529.760 JLINK_ReadMemEx(0x080000E0, 0x3C Bytes, Flags = 0x02000000)
T17D34 001:529.771    -- Read from C cache (60 bytes @ 0x080000E0)
T17D34 001:529.786   Data:  FE E7 FE E7 FE E7 FE E7 A9 25 00 08 C1 00 00 08 ...
T17D34 001:529.801 - 0.046ms returns 60 (0x3C)
T17D34 001:529.813 JLINK_ReadMemEx(0x080000E0, 0x2 Bytes, Flags = 0x02000000)
T17D34 001:529.823    -- Read from C cache (2 bytes @ 0x080000E0)
T17D34 001:529.838   Data:  FE E7
T17D34 001:529.852 - 0.044ms returns 2 (0x2)
T17D34 001:529.864 JLINK_ReadMemEx(0x080000E2, 0x2 Bytes, Flags = 0x02000000)
T17D34 001:529.874    -- Read from C cache (2 bytes @ 0x080000E2)
T17D34 001:529.889   Data:  FE E7
T17D34 001:529.903 - 0.044ms returns 2 (0x2)
T17D34 001:855.162 JLINK_HasError()
T17D34 001:855.199 JLINK_ReadReg(R0)
T17D34 001:855.600 - 0.408ms returns 0xFFFFFFFF
T17D34 001:855.616 JLINK_ReadReg(R1)
T17D34 001:855.625 - 0.013ms returns 0xFFFFFFFF
T17D34 001:855.635 JLINK_ReadReg(R2)
T17D34 001:855.644 - 0.013ms returns 0xFFFFFFFF
T17D34 001:855.654 JLINK_ReadReg(R3)
T17D34 001:855.662 - 0.012ms returns 0xFFFFFFFF
T17D34 001:855.672 JLINK_ReadReg(R4)
T17D34 001:855.681 - 0.012ms returns 0xFFFFFFFF
T17D34 001:855.691 JLINK_ReadReg(R5)
T17D34 001:855.757 - 0.071ms returns 0xFFFFFFFF
T17D34 001:855.768 JLINK_ReadReg(R6)
T17D34 001:855.776 - 0.012ms returns 0xFFFFFFFF
T17D34 001:855.786 JLINK_ReadReg(R7)
T17D34 001:855.794 - 0.012ms returns 0xFFFFFFFF
T17D34 001:855.804 JLINK_ReadReg(R8)
T17D34 001:855.825 - 0.025ms returns 0xFFFFFFFF
T17D34 001:855.835 JLINK_ReadReg(R9)
T17D34 001:855.844 - 0.012ms returns 0xFFFFFFFF
T17D34 001:855.853 JLINK_ReadReg(R10)
T17D34 001:855.862 - 0.012ms returns 0xFFFFFFFF
T17D34 001:855.872 JLINK_ReadReg(R11)
T17D34 001:855.880 - 0.012ms returns 0xFFFFFFFF
T17D34 001:855.890 JLINK_ReadReg(R12)
T17D34 001:855.898 - 0.012ms returns 0xFFFFFFFF
T17D34 001:855.908 JLINK_ReadReg(R13 (SP))
T17D34 001:855.917 - 0.013ms returns 0x20001140
T17D34 001:855.927 JLINK_ReadReg(R14)
T17D34 001:855.935 - 0.012ms returns 0xFFFFFFFF
T17D34 001:855.945 JLINK_ReadReg(R15 (PC))
T17D34 001:855.953 - 0.012ms returns 0x080000D4
T17D34 001:855.963 JLINK_ReadReg(XPSR)
T17D34 001:855.972 - 0.012ms returns 0xF1000000
T17D34 001:855.982 JLINK_ReadReg(MSP)
T17D34 001:855.990 - 0.012ms returns 0x20001140
T17D34 001:856.000 JLINK_ReadReg(PSP)
T17D34 001:856.008 - 0.012ms returns 0xFFFFFFFC
T17D34 001:856.018 JLINK_ReadReg(CFBP)
T17D34 001:856.027 - 0.012ms returns 0x00000000
T17D34 001:861.103 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 001:861.133   CPU_ReadMem(128 bytes @ 0x20001340)
T17D34 001:862.770    -- Updating C cache (128 bytes @ 0x20001340)
T17D34 001:862.789    -- Read from C cache (25 bytes @ 0x20001378)
T17D34 001:862.805   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 001:862.819 - 1.721ms returns 25 (0x19)
T17D34 001:867.085 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 001:867.117   CPU_ReadMem(64 bytes @ 0x20000000)
T17D34 001:868.125    -- Updating C cache (64 bytes @ 0x20000000)
T17D34 001:868.142    -- Read from C cache (1 bytes @ 0x2000003C)
T17D34 001:868.154   Data:  00
T17D34 001:868.167 - 1.086ms returns 1 (0x1)
T17D34 001:868.193 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 001:868.205    -- Read from C cache (1 bytes @ 0x2000003C)
T17D34 001:868.217   Data:  00
T17D34 001:868.229 - 0.040ms returns 1 (0x1)
T17D34 001:868.255 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 001:868.266    -- Read from C cache (1 bytes @ 0x2000003C)
T17D34 001:868.278   Data:  00
T17D34 001:868.290 - 0.039ms returns 1 (0x1)
T17D34 001:881.331 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 001:881.379   CPU_ReadMem(64 bytes @ 0x20000040)
T17D34 001:882.391    -- Updating C cache (64 bytes @ 0x20000040)
T17D34 001:882.418    -- Read from C cache (1 bytes @ 0x20000044)
T17D34 001:882.434   Data:  00
T17D34 001:882.450 - 1.124ms returns 1 (0x1)
T17D34 001:882.485 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 001:882.501    -- Read from C cache (1 bytes @ 0x20000044)
T17D34 001:882.516   Data:  00
T17D34 001:882.531 - 0.051ms returns 1 (0x1)
T17D34 001:882.558 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 001:882.572    -- Read from C cache (1 bytes @ 0x20000044)
T17D34 001:882.586   Data:  00
T17D34 001:882.601 - 0.047ms returns 1 (0x1)
T17D34 001:886.771 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 001:886.792    -- Read from C cache (25 bytes @ 0x20001378)
T17D34 001:886.805   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 001:886.817 - 0.050ms returns 25 (0x19)
T17D34 001:891.312 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 001:891.335    -- Read from C cache (1 bytes @ 0x20001378)
T17D34 001:891.349   Data:  04
T17D34 001:891.361 - 0.053ms returns 1 (0x1)
T17D34 001:891.381 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 001:891.393    -- Read from C cache (1 bytes @ 0x20001378)
T17D34 001:891.405   Data:  04
T17D34 001:891.417 - 0.040ms returns 1 (0x1)
T17D34 001:891.437 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 001:891.452    -- Read from C cache (1 bytes @ 0x20001378)
T17D34 001:891.467   Data:  04
T17D34 001:891.479 - 0.045ms returns 1 (0x1)
T17D34 001:915.449 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 001:915.489   CPU_ReadMem(64 bytes @ 0x20001240)
T17D34 001:916.502    -- Updating C cache (64 bytes @ 0x20001240)
T17D34 001:916.517    -- Read from C cache (4 bytes @ 0x20001254)
T17D34 001:916.530   Data:  00 00 00 00
T17D34 001:916.542 - 1.097ms returns 4 (0x4)
T17D34 001:916.567 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 001:916.579    -- Read from C cache (4 bytes @ 0x20001254)
T17D34 001:916.592   Data:  00 00 00 00
T17D34 001:916.604 - 0.040ms returns 4 (0x4)
T17D34 001:916.624 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 001:916.634    -- Read from C cache (4 bytes @ 0x20001254)
T17D34 001:916.647   Data:  00 00 00 00
T17D34 001:916.658 - 0.038ms returns 4 (0x4)
T17D34 001:929.375 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 001:929.407   CPU_ReadMem(64 bytes @ 0x20001300)
T17D34 001:930.417    -- Updating C cache (64 bytes @ 0x20001300)
T17D34 001:930.432    -- Read from C cache (4 bytes @ 0x20001314)
T17D34 001:930.445   Data:  04 00 00 00
T17D34 001:930.457 - 1.086ms returns 4 (0x4)
T17D34 001:930.481 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 001:930.493    -- Read from C cache (4 bytes @ 0x20001314)
T17D34 001:930.505   Data:  04 00 00 00
T17D34 001:930.517 - 0.040ms returns 4 (0x4)
T17D34 001:930.538 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 001:930.549    -- Read from C cache (4 bytes @ 0x20001314)
T17D34 001:930.561   Data:  04 00 00 00
T17D34 001:930.573 - 0.039ms returns 4 (0x4)
T17D34 001:936.886 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 001:936.907    -- Read from C cache (4 bytes @ 0x20000064)
T17D34 001:936.920   Data:  01 00 00 00
T17D34 001:936.932 - 0.051ms returns 4 (0x4)
T17D34 001:936.951 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 001:936.963    -- Read from C cache (4 bytes @ 0x20000064)
T17D34 001:936.975   Data:  01 00 00 00
T17D34 001:936.987 - 0.039ms returns 4 (0x4)
T17D34 001:937.006 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 001:937.017    -- Read from C cache (4 bytes @ 0x20000064)
T17D34 001:937.029   Data:  01 00 00 00
T17D34 001:937.041 - 0.039ms returns 4 (0x4)
T17D34 001:943.941 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 001:943.965    -- Read from C cache (4 bytes @ 0x20000078)
T17D34 001:943.978   Data:  79 03 00 00
T17D34 001:943.991 - 0.054ms returns 4 (0x4)
T17D34 001:944.011 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 001:944.022    -- Read from C cache (4 bytes @ 0x20000078)
T17D34 001:944.035   Data:  79 03 00 00
T17D34 001:944.047 - 0.040ms returns 4 (0x4)
T17D34 001:944.067 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 001:944.078    -- Read from C cache (4 bytes @ 0x20000078)
T17D34 001:944.090   Data:  79 03 00 00
T17D34 001:944.102 - 0.039ms returns 4 (0x4)
T17D34 001:951.025 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 001:951.049    -- Read from C cache (4 bytes @ 0x20000060)
T17D34 001:951.062   Data:  00 00 00 00
T17D34 001:951.075 - 0.054ms returns 4 (0x4)
T17D34 001:951.094 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 001:951.107    -- Read from C cache (4 bytes @ 0x20000060)
T17D34 001:951.119   Data:  00 00 00 00
T17D34 001:951.131 - 0.040ms returns 4 (0x4)
T17D34 001:951.151 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 001:951.161    -- Read from C cache (4 bytes @ 0x20000060)
T17D34 001:951.174   Data:  00 00 00 00
T17D34 001:951.186 - 0.039ms returns 4 (0x4)
T17D34 001:958.746 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 001:958.777   CPU_ReadMem(128 bytes @ 0x20001100)
T17D34 001:960.419    -- Updating C cache (128 bytes @ 0x20001100)
T17D34 001:960.440    -- Read from C cache (32 bytes @ 0x20001134)
T17D34 001:960.454   Data:  7D 31 00 08 00 2F 00 08 61 05 00 08 28 31 FF 00 ...
T17D34 001:960.466 - 1.724ms returns 32 (0x20)
T17D34 001:985.252 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 001:985.288   CPU_ReadMem(64 bytes @ 0x20000080)
T17D34 001:986.289    -- Updating C cache (64 bytes @ 0x20000080)
T17D34 001:986.314    -- Read from C cache (8 bytes @ 0x20000098)
T17D34 001:986.330   Data:  00 00 00 00 00 00 00 00
T17D34 001:986.346 - 1.098ms returns 8 (0x8)
T17D34 001:986.376 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 001:986.392    -- Read from C cache (8 bytes @ 0x20000098)
T17D34 001:986.407   Data:  00 00 00 00 00 00 00 00
T17D34 001:986.421 - 0.050ms returns 8 (0x8)
T17D34 001:986.447 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 001:986.460    -- Read from C cache (8 bytes @ 0x20000098)
T17D34 001:986.475   Data:  00 00 00 00 00 00 00 00
T17D34 001:986.489 - 0.047ms returns 8 (0x8)
T17D34 001:995.513 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 001:995.538    -- Read from C cache (1 bytes @ 0x2000003E)
T17D34 001:995.552   Data:  00
T17D34 001:995.565 - 0.055ms returns 1 (0x1)
T17D34 001:995.585 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 001:995.596    -- Read from C cache (1 bytes @ 0x2000003E)
T17D34 001:995.608   Data:  00
T17D34 001:995.620 - 0.039ms returns 1 (0x1)
T17D34 001:995.641 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 001:995.652    -- Read from C cache (1 bytes @ 0x2000003E)
T17D34 001:995.664   Data:  00
T17D34 001:995.676 - 0.038ms returns 1 (0x1)
T17D34 002:042.449 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 002:042.493   CPU_ReadMem(64 bytes @ 0x20000D80)
T17D34 002:043.526    -- Updating C cache (64 bytes @ 0x20000D80)
T17D34 002:043.546    -- Read from C cache (32 bytes @ 0x20000DA0)
T17D34 002:043.563   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 002:043.578 - 1.133ms returns 32 (0x20)
T17D34 002:053.862 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 002:053.890    -- Read from C cache (1 bytes @ 0x2000003E)
T17D34 002:053.906   Data:  00
T17D34 002:053.921 - 0.064ms returns 1 (0x1)
T17D34 002:053.945 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 002:053.957    -- Read from C cache (1 bytes @ 0x2000003E)
T17D34 002:053.969   Data:  00
T17D34 002:053.981 - 0.040ms returns 1 (0x1)
T17D34 002:054.001 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 002:054.012    -- Read from C cache (1 bytes @ 0x2000003E)
T17D34 002:054.024   Data:  00
T17D34 002:054.036 - 0.039ms returns 1 (0x1)
T74F0 002:101.144 JLINK_ReadMemEx(0x080000D4, 0x2 Bytes, Flags = 0x02000000)
T74F0 002:101.181    -- Read from C cache (2 bytes @ 0x080000D4)
T74F0 002:101.198   Data:  04 48
T74F0 002:101.213 - 0.082ms returns 2 (0x2)
T74F0 002:101.227 JLINK_HasError()
T74F0 002:101.241 JLINK_SetBPEx(Addr = 0x0800AA2C, Type = 0xFFFFFFF2)
T74F0 002:101.257 - 0.021ms returns 0x00000001
T74F0 002:101.269 JLINK_HasError()
T74F0 002:101.281 JLINK_HasError()
T74F0 002:101.295 JLINK_Go()
T74F0 002:101.315   CPU_WriteMem(4 bytes @ 0xE0002000)
T74F0 002:101.789   CPU_ReadMem(4 bytes @ 0xE0001000)
T74F0 002:102.181   CPU_WriteMem(4 bytes @ 0xE0001000)
T74F0 002:102.586   CPU_WriteMem(4 bytes @ 0xE0002008)
T74F0 002:102.600   CPU_WriteMem(4 bytes @ 0xE000200C)
T74F0 002:102.613   CPU_WriteMem(4 bytes @ 0xE0002010)
T74F0 002:102.626   CPU_WriteMem(4 bytes @ 0xE0002014)
T74F0 002:104.068   CPU_WriteMem(4 bytes @ 0xE0001004)
T74F0 002:105.033 - 3.750ms
T74F0 002:205.336 JLINK_HasError()
T74F0 002:205.377 JLINK_IsHalted()
T74F0 002:205.788 - 0.425ms returns FALSE
T74F0 002:306.356 JLINK_HasError()
T74F0 002:306.392 JLINK_IsHalted()
T74F0 002:306.779 - 0.394ms returns FALSE
T74F0 002:407.376 JLINK_HasError()
T74F0 002:407.409 JLINK_IsHalted()
T74F0 002:407.800 - 0.407ms returns FALSE
T74F0 002:508.398 JLINK_HasError()
T74F0 002:508.429 JLINK_IsHalted()
T74F0 002:508.810 - 0.389ms returns FALSE
T74F0 002:609.424 JLINK_HasError()
T74F0 002:609.461 JLINK_HasError()
T17D34 002:721.715 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 002:721.753   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 002:722.561   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 002:722.576 - 0.865ms returns 25 (0x19)
T17D34 002:722.592 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 002:722.603   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 002:723.030   Data:  00
T17D34 002:723.044 - 0.456ms returns 1 (0x1)
T17D34 002:723.069 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 002:723.080   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 002:723.455   Data:  00
T17D34 002:723.471 - 0.407ms returns 1 (0x1)
T17D34 002:723.493 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 002:723.506   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 002:724.286   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 002:724.299 - 0.810ms returns 25 (0x19)
T17D34 002:724.313 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 002:724.324   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 002:724.698   Data:  04
T17D34 002:724.713 - 0.404ms returns 1 (0x1)
T17D34 002:724.739 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 002:724.750   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 002:725.193   Data:  00 00 00 00
T17D34 002:725.206 - 0.471ms returns 4 (0x4)
T17D34 002:725.590 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 002:725.614   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 002:726.036   Data:  04 00 00 00
T17D34 002:726.060 - 0.475ms returns 4 (0x4)
T17D34 002:726.085 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 002:726.102   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 002:726.511   Data:  01 00 00 00
T17D34 002:726.528 - 0.447ms returns 4 (0x4)
T17D34 002:726.554 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 002:726.566   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 002:726.942   Data:  6E 02 00 00
T17D34 002:726.956 - 0.406ms returns 4 (0x4)
T17D34 002:727.179 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 002:727.197   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 002:727.580   Data:  00 00 00 00
T17D34 002:727.594 - 0.419ms returns 4 (0x4)
T17D34 002:727.614 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 002:727.625   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 002:728.279   Data:  7D 31 00 08 00 2F 00 08 61 05 00 08 28 31 FF 00 ...
T17D34 002:728.292 - 0.682ms returns 32 (0x20)
T17D34 002:728.749 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 002:728.767   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 002:729.193   Data:  00 00 00 00 00 00 00 00
T17D34 002:729.207 - 0.462ms returns 8 (0x8)
T17D34 002:729.226 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 002:729.238   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 002:729.612   Data:  00
T17D34 002:729.625 - 0.402ms returns 1 (0x1)
T17D34 002:730.477 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 002:730.496   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 002:731.250   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 002:731.264 - 0.790ms returns 32 (0x20)
T17D34 002:731.279 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 002:731.291   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 002:731.672   Data:  00
T17D34 002:731.685 - 0.410ms returns 1 (0x1)
T74F0 002:731.783 JLINK_IsHalted()
T74F0 002:732.152 - 0.376ms returns FALSE
T74F0 002:832.484 JLINK_HasError()
T74F0 002:832.524 JLINK_IsHalted()
T74F0 002:832.940 - 0.427ms returns FALSE
T74F0 002:933.496 JLINK_HasError()
T74F0 002:933.529 JLINK_IsHalted()
T74F0 002:933.916 - 0.394ms returns FALSE
T74F0 003:034.516 JLINK_HasError()
T74F0 003:034.547 JLINK_IsHalted()
T74F0 003:034.929 - 0.390ms returns FALSE
T74F0 003:135.551 JLINK_HasError()
T74F0 003:135.586 JLINK_HasError()
T17D34 003:135.685 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 003:135.718   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 003:136.522   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 003:136.546 - 0.866ms returns 25 (0x19)
T17D34 003:136.569 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 003:136.583   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 003:137.029   Data:  00
T17D34 003:137.044 - 0.479ms returns 1 (0x1)
T17D34 003:137.069 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 003:137.080   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 003:137.460   Data:  00
T17D34 003:137.475 - 0.410ms returns 1 (0x1)
T17D34 003:137.494 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 003:137.506   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 003:139.193   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 003:139.210 - 1.720ms returns 25 (0x19)
T17D34 003:139.258 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 003:139.273   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 003:139.656   Data:  04
T17D34 003:139.672 - 0.419ms returns 1 (0x1)
T17D34 003:139.703 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 003:139.716   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 003:140.103   Data:  00 00 00 00
T17D34 003:140.120 - 0.422ms returns 4 (0x4)
T17D34 003:140.516 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 003:140.539   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 003:140.937   Data:  04 00 00 00
T17D34 003:140.961 - 0.451ms returns 4 (0x4)
T17D34 003:140.985 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 003:141.002   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 003:141.391   Data:  01 00 00 00
T17D34 003:141.409 - 0.428ms returns 4 (0x4)
T17D34 003:141.435 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 003:141.447   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 003:141.824   Data:  10 04 00 00
T17D34 003:141.838 - 0.407ms returns 4 (0x4)
T17D34 003:142.242 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 003:142.260   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 003:142.650   Data:  00 00 00 00
T17D34 003:142.666 - 0.428ms returns 4 (0x4)
T17D34 003:142.688 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 003:142.700   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 003:143.395   Data:  7D 31 00 08 00 2F 00 08 61 05 00 08 28 31 FF 00 ...
T17D34 003:143.409 - 0.725ms returns 32 (0x20)
T17D34 003:144.015 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 003:144.040   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 003:144.470   Data:  00 00 00 00 00 00 00 00
T17D34 003:144.488 - 0.476ms returns 8 (0x8)
T17D34 003:144.508 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 003:144.521   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 003:144.908   Data:  00
T17D34 003:144.923 - 0.418ms returns 1 (0x1)
T17D34 003:145.789 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 003:145.807   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 003:146.462   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 003:146.477 - 0.691ms returns 32 (0x20)
T17D34 003:146.492 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 003:146.503   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 003:146.879   Data:  00
T17D34 003:146.893 - 0.405ms returns 1 (0x1)
T74F0 003:146.932 JLINK_IsHalted()
T74F0 003:147.318 - 0.393ms returns FALSE
T74F0 003:247.566 JLINK_HasError()
T74F0 003:247.598 JLINK_IsHalted()
T74F0 003:248.032 - 0.442ms returns FALSE
T74F0 003:348.587 JLINK_HasError()
T74F0 003:348.618 JLINK_IsHalted()
T74F0 003:349.031 - 0.420ms returns FALSE
T74F0 003:449.612 JLINK_HasError()
T74F0 003:449.645 JLINK_IsHalted()
T74F0 003:450.038 - 0.400ms returns FALSE
T74F0 003:550.634 JLINK_HasError()
T74F0 003:550.663 JLINK_IsHalted()
T74F0 003:553.695 - 3.045ms returns TRUE
T74F0 003:553.771 JLINK_HasError()
T74F0 003:553.789 JLINK_Halt()
T74F0 003:553.799 - 0.015ms returns 0x00
T74F0 003:553.811 JLINK_IsHalted()
T74F0 003:553.822 - 0.015ms returns TRUE
T74F0 003:553.834 JLINK_IsHalted()
T74F0 003:553.844 - 0.015ms returns TRUE
T74F0 003:553.855 JLINK_IsHalted()
T74F0 003:553.865 - 0.014ms returns TRUE
T74F0 003:553.877 JLINK_HasError()
T74F0 003:553.890 JLINK_ReadReg(R15 (PC))
T74F0 003:553.903 - 0.018ms returns 0x0800AA2C
T74F0 003:553.916 JLINK_ReadReg(XPSR)
T74F0 003:553.927 - 0.016ms returns 0x61000000
T74F0 003:553.942 JLINK_HasError()
T74F0 003:553.954 JLINK_ClrBPEx(BPHandle = 0x00000001)
T74F0 003:553.965 - 0.016ms returns 0x00
T74F0 003:553.977 JLINK_HasError()
T74F0 003:553.989 JLINK_HasError()
T74F0 003:554.001 JLINK_ReadMemU32(0xE000ED30, 0x1 Items)
T74F0 003:554.018   CPU_ReadMem(4 bytes @ 0xE000ED30)
T74F0 003:554.412   Data:  03 00 00 00
T74F0 003:554.432 - 0.436ms returns 1 (0x1)
T74F0 003:554.445 JLINK_ReadMemU32(0xE0001028, 0x1 Items)
T74F0 003:554.459   CPU_ReadMem(4 bytes @ 0xE0001028)
T74F0 003:554.849   Data:  00 00 00 00
T74F0 003:554.864   Debug reg: DWT_FUNC[0]
T74F0 003:554.876 - 0.435ms returns 1 (0x1)
T74F0 003:554.887 JLINK_ReadMemU32(0xE0001038, 0x1 Items)
T74F0 003:554.898   CPU_ReadMem(4 bytes @ 0xE0001038)
T74F0 003:555.270   Data:  00 00 00 00
T74F0 003:555.284   Debug reg: DWT_FUNC[1]
T74F0 003:555.296 - 0.413ms returns 1 (0x1)
T74F0 003:555.322 JLINK_HasError()
T74F0 003:555.332 JLINK_ReadReg(R0)
T74F0 003:555.343 - 0.014ms returns 0x0800AA2D
T74F0 003:555.353 JLINK_ReadReg(R1)
T74F0 003:555.361 - 0.013ms returns 0x20001CC0
T74F0 003:555.371 JLINK_ReadReg(R2)
T74F0 003:555.380 - 0.013ms returns 0x00000000
T74F0 003:555.390 JLINK_ReadReg(R3)
T74F0 003:555.398 - 0.012ms returns 0x0800970D
T74F0 003:555.408 JLINK_ReadReg(R4)
T74F0 003:555.417 - 0.012ms returns 0x0800AEA4
T74F0 003:555.427 JLINK_ReadReg(R5)
T74F0 003:555.435 - 0.012ms returns 0x00000001
T74F0 003:555.445 JLINK_ReadReg(R6)
T74F0 003:555.453 - 0.012ms returns 0x0800AEA4
T74F0 003:555.463 JLINK_ReadReg(R7)
T74F0 003:555.472 - 0.012ms returns 0xFFFFFFFF
T74F0 003:555.481 JLINK_ReadReg(R8)
T74F0 003:555.490 - 0.013ms returns 0xFFFFFFFF
T74F0 003:555.500 JLINK_ReadReg(R9)
T74F0 003:555.509 - 0.012ms returns 0xFFFFFFFF
T74F0 003:555.518 JLINK_ReadReg(R10)
T74F0 003:555.527 - 0.012ms returns 0xFFFFFFFF
T74F0 003:555.536 JLINK_ReadReg(R11)
T74F0 003:555.545 - 0.012ms returns 0xFFFFFFFF
T74F0 003:555.555 JLINK_ReadReg(R12)
T74F0 003:555.563 - 0.012ms returns 0xFFFFFFFF
T74F0 003:555.573 JLINK_ReadReg(R13 (SP))
T74F0 003:555.582 - 0.013ms returns 0x20001CC0
T74F0 003:555.591 JLINK_ReadReg(R14)
T74F0 003:555.600 - 0.012ms returns 0x08005A81
T74F0 003:555.610 JLINK_ReadReg(R15 (PC))
T74F0 003:555.618 - 0.013ms returns 0x0800AA2C
T74F0 003:555.631 JLINK_ReadReg(XPSR)
T74F0 003:555.640 - 0.013ms returns 0x61000000
T74F0 003:555.650 JLINK_ReadReg(MSP)
T74F0 003:555.658 - 0.012ms returns 0x20001CC0
T74F0 003:555.668 JLINK_ReadReg(PSP)
T74F0 003:555.676 - 0.012ms returns 0xFFFFFFFC
T74F0 003:555.686 JLINK_ReadReg(CFBP)
T74F0 003:555.694 - 0.012ms returns 0x00000000
T17D34 003:555.774 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 003:555.800   CPU_ReadMem(128 bytes @ 0x20001340)
T17D34 003:557.431    -- Updating C cache (128 bytes @ 0x20001340)
T17D34 003:557.446    -- Read from C cache (25 bytes @ 0x20001378)
T17D34 003:557.459   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 003:557.471 - 1.701ms returns 25 (0x19)
T17D34 003:558.438 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 003:558.461   CPU_ReadMem(64 bytes @ 0x20000000)
T17D34 003:559.457    -- Updating C cache (64 bytes @ 0x20000000)
T17D34 003:559.471    -- Read from C cache (1 bytes @ 0x2000003C)
T17D34 003:559.484   Data:  00
T17D34 003:559.496 - 1.062ms returns 1 (0x1)
T17D34 003:559.526 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 003:559.537   CPU_ReadMem(64 bytes @ 0x20000040)
T17D34 003:560.528    -- Updating C cache (64 bytes @ 0x20000040)
T17D34 003:560.542    -- Read from C cache (1 bytes @ 0x20000044)
T17D34 003:560.554   Data:  00
T17D34 003:560.566 - 1.044ms returns 1 (0x1)
T17D34 003:560.586 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 003:560.596    -- Read from C cache (25 bytes @ 0x20001378)
T17D34 003:560.609   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 003:560.621 - 0.040ms returns 25 (0x19)
T17D34 003:561.002 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 003:561.025    -- Read from C cache (1 bytes @ 0x20001378)
T17D34 003:561.041   Data:  00
T17D34 003:561.056 - 0.059ms returns 1 (0x1)
T17D34 003:561.315 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 003:561.337   CPU_ReadMem(64 bytes @ 0x20001240)
T17D34 003:562.328    -- Updating C cache (64 bytes @ 0x20001240)
T17D34 003:562.345    -- Read from C cache (4 bytes @ 0x20001254)
T17D34 003:562.358   Data:  00 00 00 00
T17D34 003:562.370 - 1.059ms returns 4 (0x4)
T17D34 003:563.295 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 003:563.316   CPU_ReadMem(64 bytes @ 0x20001300)
T17D34 003:564.309    -- Updating C cache (64 bytes @ 0x20001300)
T17D34 003:564.324    -- Read from C cache (4 bytes @ 0x20001314)
T17D34 003:564.337   Data:  00 00 00 00
T17D34 003:564.349 - 1.058ms returns 4 (0x4)
T17D34 003:564.570 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 003:564.587    -- Read from C cache (4 bytes @ 0x20000064)
T17D34 003:564.600   Data:  00 00 00 00
T17D34 003:564.612 - 0.045ms returns 4 (0x4)
T17D34 003:564.812 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 003:564.832    -- Read from C cache (4 bytes @ 0x20000078)
T17D34 003:564.847   Data:  00 00 00 00
T17D34 003:564.862 - 0.054ms returns 4 (0x4)
T17D34 003:565.310 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 003:565.329    -- Read from C cache (4 bytes @ 0x20000060)
T17D34 003:565.344   Data:  00 00 00 00
T17D34 003:565.359 - 0.054ms returns 4 (0x4)
T17D34 003:565.381 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 003:565.395   CPU_ReadMem(128 bytes @ 0x20001100)
T17D34 003:567.091    -- Updating C cache (128 bytes @ 0x20001100)
T17D34 003:567.108    -- Read from C cache (32 bytes @ 0x20001134)
T17D34 003:567.124   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 003:567.138 - 1.762ms returns 32 (0x20)
T17D34 003:568.202 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 003:568.222   CPU_ReadMem(64 bytes @ 0x20000080)
T17D34 003:569.208    -- Updating C cache (64 bytes @ 0x20000080)
T17D34 003:569.223    -- Read from C cache (8 bytes @ 0x20000098)
T17D34 003:569.235   Data:  00 00 00 00 00 00 00 00
T17D34 003:569.247 - 1.048ms returns 8 (0x8)
T17D34 003:569.267 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 003:569.277    -- Read from C cache (1 bytes @ 0x2000003E)
T17D34 003:569.289   Data:  00
T17D34 003:569.301 - 0.038ms returns 1 (0x1)
T17D34 003:570.269 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 003:570.288   CPU_ReadMem(64 bytes @ 0x20000D80)
T17D34 003:571.272    -- Updating C cache (64 bytes @ 0x20000D80)
T17D34 003:571.287    -- Read from C cache (32 bytes @ 0x20000DA0)
T17D34 003:571.299   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 003:571.311 - 1.046ms returns 32 (0x20)
T17D34 003:571.326 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 003:571.336    -- Read from C cache (1 bytes @ 0x2000003E)
T17D34 003:571.349   Data:  00
T17D34 003:571.361 - 0.038ms returns 1 (0x1)
T74F0 004:025.570 JLINK_ReadMemEx(0x0800AA2C, 0x2 Bytes, Flags = 0x02000000)
T74F0 004:025.615   CPU_ReadMem(64 bytes @ 0x0800AA00)
T74F0 004:026.638    -- Updating C cache (64 bytes @ 0x0800AA00)
T74F0 004:026.656    -- Read from C cache (2 bytes @ 0x0800AA2C)
T74F0 004:026.672   Data:  FC F7
T74F0 004:026.687 - 1.122ms returns 2 (0x2)
T74F0 004:026.706 JLINK_HasError()
T74F0 004:026.722 JLINK_HasError()
T74F0 004:026.739 JLINK_Go()
T74F0 004:026.766   CPU_ReadMem(4 bytes @ 0xE0001000)
T74F0 004:027.161   CPU_WriteMem(4 bytes @ 0xE0002008)
T74F0 004:028.070 - 1.337ms
T74F0 004:128.763 JLINK_HasError()
T74F0 004:128.800 JLINK_IsHalted()
T74F0 004:129.185 - 0.392ms returns FALSE
T74F0 004:229.786 JLINK_HasError()
T74F0 004:229.816 JLINK_IsHalted()
T74F0 004:230.202 - 0.392ms returns FALSE
T74F0 004:330.810 JLINK_HasError()
T74F0 004:330.847 JLINK_IsHalted()
T74F0 004:331.242 - 0.404ms returns FALSE
T74F0 004:431.833 JLINK_HasError()
T74F0 004:431.861 JLINK_IsHalted()
T74F0 004:432.245 - 0.391ms returns FALSE
T74F0 004:532.855 JLINK_HasError()
T74F0 004:532.888 JLINK_HasError()
T17D34 004:532.943 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 004:532.973   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 004:533.774   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 004:533.791 - 0.852ms returns 25 (0x19)
T17D34 004:533.811 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 004:533.825   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 004:534.206   Data:  00
T17D34 004:534.222 - 0.416ms returns 1 (0x1)
T17D34 004:534.255 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 004:534.268   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 004:534.647   Data:  00
T17D34 004:534.663 - 0.413ms returns 1 (0x1)
T17D34 004:534.685 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 004:534.699   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 004:535.479   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 004:535.495 - 0.815ms returns 25 (0x19)
T17D34 004:535.513 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 004:535.525   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 004:535.905   Data:  00
T17D34 004:535.919 - 0.410ms returns 1 (0x1)
T17D34 004:536.287 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 004:536.313   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 004:536.705   Data:  00 00 00 00
T17D34 004:536.722 - 0.440ms returns 4 (0x4)
T17D34 004:537.249 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 004:537.268   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 004:537.649   Data:  00 00 00 00
T17D34 004:537.663 - 0.419ms returns 4 (0x4)
T17D34 004:537.886 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 004:537.903   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 004:538.280   Data:  00 00 00 00
T17D34 004:538.294 - 0.412ms returns 4 (0x4)
T17D34 004:538.504 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 004:538.521   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 004:538.906   Data:  00 00 00 00
T17D34 004:538.920 - 0.420ms returns 4 (0x4)
T17D34 004:539.144 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 004:539.162   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 004:539.547   Data:  07 00 80 03
T17D34 004:539.561 - 0.421ms returns 4 (0x4)
T17D34 004:539.777 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 004:539.795   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 004:540.451   Data:  00 40 00 00 00 40 00 00 00 00 00 00 00 00 00 00 ...
T17D34 004:540.468 - 0.695ms returns 32 (0x20)
T17D34 004:541.256 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 004:541.274   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 004:541.695   Data:  00 00 00 00 00 00 00 00
T17D34 004:541.709 - 0.457ms returns 8 (0x8)
T17D34 004:541.728 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 004:541.740   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 004:542.110   Data:  00
T17D34 004:542.125 - 0.401ms returns 1 (0x1)
T17D34 004:543.138 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 004:543.157   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 004:543.817   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 004:543.832 - 0.698ms returns 32 (0x20)
T17D34 004:544.120 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 004:544.141   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 004:544.521   Data:  00
T17D34 004:544.537 - 0.421ms returns 1 (0x1)
T74F0 004:544.615 JLINK_IsHalted()
T74F0 004:545.030 - 0.422ms returns FALSE
T74F0 004:645.880 JLINK_HasError()
T74F0 004:645.913 JLINK_IsHalted()
T74F0 004:646.356 - 0.451ms returns FALSE
T74F0 004:746.901 JLINK_HasError()
T74F0 004:746.934 JLINK_IsHalted()
T74F0 004:747.325 - 0.398ms returns FALSE
T74F0 004:847.926 JLINK_HasError()
T74F0 004:847.960 JLINK_IsHalted()
T74F0 004:848.349 - 0.405ms returns FALSE
T74F0 004:948.947 JLINK_HasError()
T74F0 004:948.985 JLINK_IsHalted()
T74F0 004:949.374 - 0.396ms returns FALSE
T74F0 005:049.968 JLINK_HasError()
T74F0 005:050.000 JLINK_HasError()
T17D34 005:050.059 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 005:050.089   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 005:050.898   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 005:050.915 - 0.860ms returns 25 (0x19)
T17D34 005:050.934 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 005:050.948   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 005:051.338   Data:  00
T17D34 005:051.355 - 0.425ms returns 1 (0x1)
T17D34 005:051.384 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 005:051.397   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 005:051.776   Data:  00
T17D34 005:051.792 - 0.413ms returns 1 (0x1)
T17D34 005:051.814 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 005:051.827   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 005:052.609   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 005:052.625 - 0.815ms returns 25 (0x19)
T17D34 005:052.641 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 005:052.651   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 005:053.028   Data:  00
T17D34 005:053.041 - 0.404ms returns 1 (0x1)
T17D34 005:053.064 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 005:053.075   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 005:053.453   Data:  00 00 00 00
T17D34 005:053.466 - 0.405ms returns 4 (0x4)
T17D34 005:053.998 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 005:054.017   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 005:054.408   Data:  00 00 00 00
T17D34 005:054.422 - 0.427ms returns 4 (0x4)
T17D34 005:054.439 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 005:054.450   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 005:054.826   Data:  00 00 00 40
T17D34 005:054.840 - 0.404ms returns 4 (0x4)
T17D34 005:055.058 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 005:055.075   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 005:055.460   Data:  00 00 00 00
T17D34 005:055.474 - 0.420ms returns 4 (0x4)
T17D34 005:055.491 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 005:055.502   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 005:055.879   Data:  07 00 80 03
T17D34 005:055.892 - 0.404ms returns 4 (0x4)
T17D34 005:056.116 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 005:056.133   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 005:056.795   Data:  00 40 00 00 00 40 00 00 00 00 00 00 00 00 00 00 ...
T17D34 005:056.809 - 0.697ms returns 32 (0x20)
T17D34 005:057.528 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 005:057.547   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 005:058.032   Data:  00 00 00 00 00 00 00 00
T17D34 005:058.046 - 0.522ms returns 8 (0x8)
T17D34 005:058.066 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 005:058.077   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 005:058.454   Data:  00
T17D34 005:058.468 - 0.406ms returns 1 (0x1)
T17D34 005:059.472 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 005:059.492   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 005:060.155   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 005:060.169 - 0.701ms returns 32 (0x20)
T17D34 005:060.184 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 005:060.198   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 005:060.576   Data:  00
T17D34 005:060.589 - 0.409ms returns 1 (0x1)
T74F0 005:060.626 JLINK_IsHalted()
T74F0 005:061.028 - 0.409ms returns FALSE
T74F0 005:161.996 JLINK_HasError()
T74F0 005:162.039 JLINK_IsHalted()
T74F0 005:162.466 - 0.434ms returns FALSE
T74F0 005:263.019 JLINK_HasError()
T74F0 005:263.060 JLINK_IsHalted()
T74F0 005:263.448 - 0.396ms returns FALSE
T74F0 005:364.059 JLINK_HasError()
T74F0 005:364.092 JLINK_IsHalted()
T74F0 005:364.475 - 0.389ms returns FALSE
T74F0 005:465.062 JLINK_HasError()
T74F0 005:465.103 JLINK_IsHalted()
T74F0 005:465.490 - 0.394ms returns FALSE
T74F0 005:566.088 JLINK_HasError()
T74F0 005:566.123 JLINK_HasError()
T17D34 005:566.179 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 005:566.208   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 005:567.048   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 005:567.065 - 0.891ms returns 25 (0x19)
T17D34 005:567.087 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 005:567.107   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 005:567.542   Data:  00
T17D34 005:567.559 - 0.476ms returns 1 (0x1)
T17D34 005:567.588 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 005:567.613   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 005:568.025   Data:  00
T17D34 005:568.039 - 0.455ms returns 1 (0x1)
T17D34 005:568.057 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 005:568.068   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 005:568.852   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 005:568.865 - 0.812ms returns 25 (0x19)
T17D34 005:568.880 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 005:568.890   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 005:569.260   Data:  00
T17D34 005:569.273 - 0.397ms returns 1 (0x1)
T17D34 005:569.298 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 005:569.308   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 005:569.685   Data:  00 00 00 00
T17D34 005:569.701 - 0.408ms returns 4 (0x4)
T17D34 005:570.325 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 005:570.348   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 005:570.734   Data:  00 00 00 00
T17D34 005:570.748 - 0.427ms returns 4 (0x4)
T17D34 005:570.766 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 005:570.777   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 005:571.151   Data:  00 00 00 40
T17D34 005:571.165 - 0.403ms returns 4 (0x4)
T17D34 005:571.378 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 005:571.396   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 005:571.780   Data:  00 00 00 00
T17D34 005:571.793 - 0.419ms returns 4 (0x4)
T17D34 005:571.811 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 005:571.821   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 005:572.193   Data:  07 00 80 03
T17D34 005:572.206 - 0.400ms returns 4 (0x4)
T17D34 005:572.225 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 005:572.236   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 005:572.888   Data:  00 40 00 00 00 40 00 00 00 00 00 00 00 00 00 00 ...
T17D34 005:572.901 - 0.679ms returns 32 (0x20)
T17D34 005:573.605 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 005:573.627   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 005:574.050   Data:  00 00 00 00 00 00 00 00
T17D34 005:574.064 - 0.462ms returns 8 (0x8)
T17D34 005:574.085 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 005:574.096   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 005:574.476   Data:  00
T17D34 005:574.491 - 0.410ms returns 1 (0x1)
T17D34 005:575.464 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 005:575.482   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 005:576.225   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 005:576.240 - 0.780ms returns 32 (0x20)
T17D34 005:576.255 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 005:576.266   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 005:576.650   Data:  00
T17D34 005:576.664 - 0.412ms returns 1 (0x1)
T74F0 005:576.713 JLINK_IsHalted()
T74F0 005:577.087 - 0.386ms returns FALSE
T74F0 005:678.111 JLINK_HasError()
T74F0 005:678.149 JLINK_IsHalted()
T74F0 005:678.537 - 0.402ms returns FALSE
T74F0 005:779.135 JLINK_HasError()
T74F0 005:779.173 JLINK_IsHalted()
T74F0 005:779.648 - 0.483ms returns FALSE
T74F0 005:880.158 JLINK_HasError()
T74F0 005:880.198 JLINK_IsHalted()
T74F0 005:880.586 - 0.402ms returns FALSE
T74F0 005:981.187 JLINK_HasError()
T74F0 005:981.211 JLINK_IsHalted()
T74F0 005:981.616 - 0.415ms returns FALSE
T74F0 006:082.213 JLINK_HasError()
T74F0 006:082.245 JLINK_HasError()
T17D34 006:082.364 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 006:082.397   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 006:083.204   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 006:083.227 - 0.869ms returns 25 (0x19)
T17D34 006:084.321 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 006:084.342   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 006:084.729   Data:  01
T17D34 006:084.743 - 0.426ms returns 1 (0x1)
T17D34 006:084.965 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 006:084.983   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 006:085.366   Data:  01
T17D34 006:085.380 - 0.419ms returns 1 (0x1)
T17D34 006:085.585 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 006:085.603   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 006:086.392   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 006:086.407 - 0.826ms returns 25 (0x19)
T17D34 006:086.760 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 006:086.778   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 006:087.157   Data:  04
T17D34 006:087.171 - 0.415ms returns 1 (0x1)
T17D34 006:087.391 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 006:087.408   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 006:087.808   Data:  00 00 00 00
T17D34 006:087.822 - 0.435ms returns 4 (0x4)
T17D34 006:088.284 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 006:088.302   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 006:088.691   Data:  04 00 00 00
T17D34 006:088.705 - 0.425ms returns 4 (0x4)
T17D34 006:088.927 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 006:088.944   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 006:089.331   Data:  00 00 00 00
T17D34 006:089.345 - 0.422ms returns 4 (0x4)
T17D34 006:089.563 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 006:089.581   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 006:090.031   Data:  02 03 CA DE
T17D34 006:090.045 - 0.486ms returns 4 (0x4)
T17D34 006:090.274 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 006:090.292   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 006:090.675   Data:  07 00 80 03
T17D34 006:090.689 - 0.419ms returns 4 (0x4)
T17D34 006:090.709 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 006:090.721   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 006:091.373   Data:  03 36 00 00 00 40 00 00 00 22 00 2E 60 19 00 00 ...
T17D34 006:091.388 - 0.682ms returns 32 (0x20)
T17D34 006:092.394 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 006:092.413   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 006:092.842   Data:  CE EF 76 75 4A 6C F3 BF
T17D34 006:092.855 - 0.465ms returns 8 (0x8)
T17D34 006:093.073 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 006:093.090   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 006:093.475   Data:  00
T17D34 006:093.499 - 0.432ms returns 1 (0x1)
T17D34 006:094.788 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 006:094.808   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 006:095.467   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 006:095.481 - 0.697ms returns 32 (0x20)
T17D34 006:095.497 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 006:095.508   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 006:095.906   Data:  00
T17D34 006:095.928 - 0.435ms returns 1 (0x1)
T74F0 006:096.040 JLINK_IsHalted()
T74F0 006:096.420 - 0.390ms returns FALSE
T74F0 006:197.230 JLINK_HasError()
T74F0 006:197.261 JLINK_IsHalted()
T74F0 006:197.638 - 0.384ms returns FALSE
T74F0 006:298.261 JLINK_HasError()
T74F0 006:298.293 JLINK_IsHalted()
T74F0 006:298.702 - 0.421ms returns FALSE
T74F0 006:399.284 JLINK_HasError()
T74F0 006:399.315 JLINK_IsHalted()
T74F0 006:399.719 - 0.416ms returns FALSE
T74F0 006:500.296 JLINK_HasError()
T74F0 006:500.330 JLINK_IsHalted()
T74F0 006:500.716 - 0.398ms returns FALSE
T74F0 006:601.321 JLINK_HasError()
T74F0 006:601.362 JLINK_HasError()
T17D34 006:601.438 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 006:601.474   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 006:602.288   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 006:602.306 - 0.873ms returns 25 (0x19)
T17D34 006:602.326 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 006:602.342   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 006:602.725   Data:  01
T17D34 006:602.741 - 0.420ms returns 1 (0x1)
T17D34 006:603.127 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 006:603.149   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 006:603.534   Data:  01
T17D34 006:603.551 - 0.429ms returns 1 (0x1)
T17D34 006:603.789 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 006:603.806   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 006:604.594   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 006:604.609 - 0.824ms returns 25 (0x19)
T17D34 006:604.624 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 006:604.636   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 006:605.024   Data:  04
T17D34 006:605.037 - 0.417ms returns 1 (0x1)
T17D34 006:605.253 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 006:605.270   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 006:606.101   Data:  00 00 00 00
T17D34 006:606.115 - 0.867ms returns 4 (0x4)
T17D34 006:606.603 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 006:606.621   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 006:607.029   Data:  04 00 00 00
T17D34 006:607.043 - 0.443ms returns 4 (0x4)
T17D34 006:607.253 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 006:607.270   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 006:607.653   Data:  00 00 00 00
T17D34 006:607.668 - 0.419ms returns 4 (0x4)
T17D34 006:607.874 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 006:607.891   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 006:608.270   Data:  02 03 CA DE
T17D34 006:608.284 - 0.414ms returns 4 (0x4)
T17D34 006:608.498 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 006:608.515   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 006:608.899   Data:  07 00 80 03
T17D34 006:608.913 - 0.419ms returns 4 (0x4)
T17D34 006:608.933 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 006:608.944   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 006:609.605   Data:  03 36 00 00 00 40 00 00 00 22 00 2E 60 19 00 00 ...
T17D34 006:609.619 - 0.690ms returns 32 (0x20)
T17D34 006:610.296 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 006:610.315   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 006:610.744   Data:  CE EF 76 75 4A 6C F3 BF
T17D34 006:610.761 - 0.469ms returns 8 (0x8)
T17D34 006:611.037 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 006:611.056   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 006:611.444   Data:  00
T17D34 006:611.469 - 0.437ms returns 1 (0x1)
T17D34 006:612.568 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 006:612.587   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 006:613.248   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 006:613.262 - 0.698ms returns 32 (0x20)
T17D34 006:613.277 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 006:613.288   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 006:613.670   Data:  00
T17D34 006:613.684 - 0.410ms returns 1 (0x1)
T74F0 006:613.728 JLINK_IsHalted()
T74F0 006:614.103 - 0.382ms returns FALSE
T74F0 006:714.363 JLINK_HasError()
T74F0 006:714.398 JLINK_IsHalted()
T74F0 006:714.782 - 0.392ms returns FALSE
T74F0 006:815.366 JLINK_HasError()
T74F0 006:815.399 JLINK_IsHalted()
T74F0 006:815.783 - 0.392ms returns FALSE
T74F0 006:916.392 JLINK_HasError()
T74F0 006:916.429 JLINK_IsHalted()
T74F0 006:916.816 - 0.394ms returns FALSE
T74F0 007:017.414 JLINK_HasError()
T74F0 007:017.454 JLINK_IsHalted()
T74F0 007:018.103 - 0.657ms returns FALSE
T74F0 007:118.434 JLINK_HasError()
T74F0 007:118.471 JLINK_HasError()
T17D34 007:118.533 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 007:118.568   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 007:119.383   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 007:119.400 - 0.873ms returns 25 (0x19)
T17D34 007:119.420 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 007:119.436   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 007:119.828   Data:  01
T17D34 007:119.845 - 0.429ms returns 1 (0x1)
T17D34 007:119.876 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 007:119.890   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 007:120.268   Data:  01
T17D34 007:120.284 - 0.412ms returns 1 (0x1)
T17D34 007:120.306 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 007:120.320   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 007:121.103   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 007:121.117 - 0.814ms returns 25 (0x19)
T17D34 007:121.131 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 007:121.141   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 007:121.515   Data:  04
T17D34 007:121.529 - 0.402ms returns 1 (0x1)
T17D34 007:121.554 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 007:121.565   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 007:121.943   Data:  00 00 00 00
T17D34 007:121.959 - 0.410ms returns 4 (0x4)
T17D34 007:122.595 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 007:122.618   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 007:123.029   Data:  04 00 00 00
T17D34 007:123.043 - 0.451ms returns 4 (0x4)
T17D34 007:123.060 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 007:123.071   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 007:123.447   Data:  00 00 00 00
T17D34 007:123.460 - 0.404ms returns 4 (0x4)
T17D34 007:123.480 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 007:123.490   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 007:123.866   Data:  02 03 CA DE
T17D34 007:123.879 - 0.403ms returns 4 (0x4)
T17D34 007:123.895 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 007:123.905   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 007:124.279   Data:  07 00 80 03
T17D34 007:124.292 - 0.401ms returns 4 (0x4)
T17D34 007:124.311 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 007:124.321   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 007:125.070   Data:  03 00 00 01 3A 40 00 00 00 22 00 AA 3E 19 FF 00 ...
T17D34 007:125.094 - 0.788ms returns 32 (0x20)
T17D34 007:126.544 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 007:126.568   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 007:127.049   Data:  93 C7 95 D4 8F 1E F2 BF
T17D34 007:127.063 - 0.523ms returns 8 (0x8)
T17D34 007:127.290 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 007:127.308   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 007:127.690   Data:  00
T17D34 007:127.706 - 0.419ms returns 1 (0x1)
T17D34 007:128.711 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 007:128.730   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 007:129.383   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 007:129.397 - 0.689ms returns 32 (0x20)
T17D34 007:129.412 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 007:129.422   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 007:129.808   Data:  00
T17D34 007:129.821 - 0.414ms returns 1 (0x1)
T74F0 007:129.861 JLINK_IsHalted()
T74F0 007:130.227 - 0.373ms returns FALSE
T74F0 007:230.459 JLINK_HasError()
T74F0 007:230.490 JLINK_IsHalted()
T74F0 007:230.862 - 0.378ms returns FALSE
T74F0 007:331.482 JLINK_HasError()
T74F0 007:331.528 JLINK_IsHalted()
T74F0 007:331.914 - 0.394ms returns FALSE
T74F0 007:432.505 JLINK_HasError()
T74F0 007:432.540 JLINK_IsHalted()
T74F0 007:432.926 - 0.393ms returns FALSE
T74F0 007:533.528 JLINK_HasError()
T74F0 007:533.560 JLINK_IsHalted()
T74F0 007:533.942 - 0.389ms returns FALSE
T74F0 007:634.552 JLINK_HasError()
T74F0 007:634.588 JLINK_HasError()
T17D34 007:634.656 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 007:634.692   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 007:635.508   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 007:635.525 - 0.874ms returns 25 (0x19)
T17D34 007:635.546 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 007:635.560   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 007:635.941   Data:  01
T17D34 007:635.957 - 0.416ms returns 1 (0x1)
T17D34 007:635.987 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 007:636.000   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 007:636.381   Data:  01
T17D34 007:636.397 - 0.415ms returns 1 (0x1)
T17D34 007:636.419 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 007:636.432   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 007:637.217   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 007:637.232 - 0.816ms returns 25 (0x19)
T17D34 007:637.246 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 007:637.257   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 007:637.635   Data:  04
T17D34 007:637.652 - 0.410ms returns 1 (0x1)
T17D34 007:637.681 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 007:637.694   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 007:638.075   Data:  00 00 00 00
T17D34 007:638.091 - 0.415ms returns 4 (0x4)
T17D34 007:638.703 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 007:638.721   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 007:639.105   Data:  04 00 00 00
T17D34 007:639.118 - 0.420ms returns 4 (0x4)
T17D34 007:639.136 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 007:639.147   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 007:639.523   Data:  00 00 00 00
T17D34 007:639.536 - 0.405ms returns 4 (0x4)
T17D34 007:639.577 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 007:639.589   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 007:640.026   Data:  02 03 CA DE
T17D34 007:640.040 - 0.467ms returns 4 (0x4)
T17D34 007:640.056 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 007:640.067   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 007:640.447   Data:  07 00 80 03
T17D34 007:640.461 - 0.409ms returns 4 (0x4)
T17D34 007:640.480 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 007:640.491   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 007:641.150   Data:  03 00 00 01 3A 40 00 00 00 22 00 AA 3E 19 FF 00 ...
T17D34 007:641.163 - 0.687ms returns 32 (0x20)
T17D34 007:641.905 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 007:641.927   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 007:642.384   Data:  93 C7 95 D4 8F 1E F2 BF
T17D34 007:642.400 - 0.500ms returns 8 (0x8)
T17D34 007:642.670 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 007:642.688   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 007:643.068   Data:  00
T17D34 007:643.082 - 0.416ms returns 1 (0x1)
T17D34 007:644.232 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 007:644.252   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 007:644.916   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 007:644.932 - 0.704ms returns 32 (0x20)
T17D34 007:644.948 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 007:644.960   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 007:645.340   Data:  00
T17D34 007:645.357 - 0.413ms returns 1 (0x1)
T74F0 007:645.398 JLINK_IsHalted()
T74F0 007:645.765 - 0.374ms returns FALSE
T74F0 007:746.575 JLINK_HasError()
T74F0 007:746.615 JLINK_IsHalted()
T74F0 007:747.028 - 0.420ms returns FALSE
T74F0 007:847.603 JLINK_HasError()
T74F0 007:847.641 JLINK_IsHalted()
T74F0 007:848.028 - 0.394ms returns FALSE
T74F0 007:948.621 JLINK_HasError()
T74F0 007:948.653 JLINK_IsHalted()
T74F0 007:949.039 - 0.393ms returns FALSE
T74F0 008:049.644 JLINK_HasError()
T74F0 008:049.675 JLINK_IsHalted()
T74F0 008:050.070 - 0.407ms returns FALSE
T74F0 008:150.670 JLINK_HasError()
T74F0 008:150.705 JLINK_HasError()
T17D34 008:150.824 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 008:150.860   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 008:151.675   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 008:151.689 - 0.869ms returns 25 (0x19)
T17D34 008:151.706 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 008:151.717   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 008:152.089   Data:  01
T17D34 008:152.103 - 0.401ms returns 1 (0x1)
T17D34 008:152.127 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 008:152.138   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 008:152.512   Data:  01
T17D34 008:152.526 - 0.402ms returns 1 (0x1)
T17D34 008:152.544 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 008:152.555   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 008:153.329   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 008:153.345 - 0.806ms returns 25 (0x19)
T17D34 008:153.363 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 008:153.375   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 008:153.754   Data:  04
T17D34 008:153.770 - 0.413ms returns 1 (0x1)
T17D34 008:153.799 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 008:153.812   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 008:154.188   Data:  00 00 00 00
T17D34 008:154.215 - 0.420ms returns 4 (0x4)
T17D34 008:154.895 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 008:154.914   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 008:155.356   Data:  04 00 00 00
T17D34 008:155.381 - 0.491ms returns 4 (0x4)
T17D34 008:155.405 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 008:155.422   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 008:155.818   Data:  00 00 00 00
T17D34 008:155.836 - 0.435ms returns 4 (0x4)
T17D34 008:155.860 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 008:155.873   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 008:156.258   Data:  02 03 CA DE
T17D34 008:156.271 - 0.416ms returns 4 (0x4)
T17D34 008:156.288 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 008:156.299   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 008:156.676   Data:  07 00 80 03
T17D34 008:156.690 - 0.405ms returns 4 (0x4)
T17D34 008:156.709 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 008:156.720   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 008:157.376   Data:  03 00 00 02 3A 40 00 00 00 22 00 90 3C 19 FF 00 ...
T17D34 008:157.389 - 0.684ms returns 32 (0x20)
T17D34 008:158.106 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 008:158.124   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 008:158.545   Data:  4D 4A D0 49 58 52 F2 BF
T17D34 008:158.559 - 0.457ms returns 8 (0x8)
T17D34 008:158.798 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 008:158.816   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 008:159.191   Data:  00
T17D34 008:159.205 - 0.411ms returns 1 (0x1)
T17D34 008:160.224 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 008:160.243   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 008:160.904   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 008:160.918 - 0.698ms returns 32 (0x20)
T17D34 008:160.933 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 008:160.944   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 008:161.442   Data:  00
T17D34 008:161.466 - 0.537ms returns 1 (0x1)
T74F0 008:161.507 JLINK_IsHalted()
T74F0 008:161.885 - 0.384ms returns FALSE
T74F0 008:262.693 JLINK_HasError()
T74F0 008:262.725 JLINK_IsHalted()
T74F0 008:263.104 - 0.386ms returns FALSE
T74F0 008:363.715 JLINK_HasError()
T74F0 008:363.745 JLINK_IsHalted()
T74F0 008:364.127 - 0.389ms returns FALSE
T74F0 008:464.761 JLINK_HasError()
T74F0 008:464.799 JLINK_IsHalted()
T74F0 008:465.182 - 0.390ms returns FALSE
T74F0 008:565.763 JLINK_HasError()
T74F0 008:565.797 JLINK_IsHalted()
T74F0 008:566.184 - 0.398ms returns FALSE
T74F0 008:666.782 JLINK_HasError()
T74F0 008:666.823 JLINK_HasError()
T17D34 008:666.903 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 008:666.938   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 008:667.751   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 008:667.764 - 0.866ms returns 25 (0x19)
T17D34 008:667.784 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 008:667.796   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 008:668.173   Data:  01
T17D34 008:668.186 - 0.406ms returns 1 (0x1)
T17D34 008:668.211 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 008:668.222   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 008:668.597   Data:  01
T17D34 008:668.610 - 0.403ms returns 1 (0x1)
T17D34 008:668.631 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 008:668.644   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 008:669.424   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 008:669.440 - 0.814ms returns 25 (0x19)
T17D34 008:669.458 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 008:669.470   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 008:669.854   Data:  04
T17D34 008:669.868 - 0.414ms returns 1 (0x1)
T17D34 008:669.892 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 008:669.903   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 008:670.280   Data:  00 00 00 00
T17D34 008:670.293 - 0.404ms returns 4 (0x4)
T17D34 008:670.826 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 008:670.845   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 008:671.230   Data:  04 00 00 00
T17D34 008:671.244 - 0.422ms returns 4 (0x4)
T17D34 008:671.261 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 008:671.272   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 008:671.648   Data:  00 00 00 00
T17D34 008:671.662 - 0.404ms returns 4 (0x4)
T17D34 008:671.682 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 008:671.693   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 008:672.072   Data:  02 03 CA DE
T17D34 008:672.085 - 0.407ms returns 4 (0x4)
T17D34 008:672.101 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 008:672.111   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 008:672.487   Data:  07 00 80 03
T17D34 008:672.500 - 0.403ms returns 4 (0x4)
T17D34 008:672.519 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 008:672.529   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 008:673.181   Data:  03 00 00 02 3A 40 00 00 00 22 00 90 3C 19 FF 00 ...
T17D34 008:673.194 - 0.679ms returns 32 (0x20)
T17D34 008:673.925 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 008:673.947   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 008:674.377   Data:  4D 4A D0 49 58 52 F2 BF
T17D34 008:674.393 - 0.472ms returns 8 (0x8)
T17D34 008:674.657 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 008:674.675   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 008:675.054   Data:  00
T17D34 008:675.068 - 0.415ms returns 1 (0x1)
T17D34 008:676.320 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 008:676.339   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 008:677.047   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 008:677.064 - 0.748ms returns 32 (0x20)
T17D34 008:677.080 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 008:677.091   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 008:677.473   Data:  00
T17D34 008:677.500 - 0.424ms returns 1 (0x1)
T74F0 008:677.539 JLINK_IsHalted()
T74F0 008:677.908 - 0.375ms returns FALSE
T74F0 008:778.809 JLINK_HasError()
T74F0 008:778.848 JLINK_IsHalted()
T74F0 008:779.236 - 0.394ms returns FALSE
T74F0 008:879.832 JLINK_HasError()
T74F0 008:879.871 JLINK_IsHalted()
T74F0 008:880.252 - 0.388ms returns FALSE
T74F0 008:980.854 JLINK_HasError()
T74F0 008:980.884 JLINK_IsHalted()
T74F0 008:981.269 - 0.393ms returns FALSE
T74F0 009:081.876 JLINK_HasError()
T74F0 009:081.912 JLINK_IsHalted()
T74F0 009:082.315 - 0.410ms returns FALSE
T74F0 009:182.898 JLINK_HasError()
T74F0 009:182.934 JLINK_HasError()
T17D34 009:183.019 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 009:183.055   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 009:183.869   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 009:183.884 - 0.870ms returns 25 (0x19)
T17D34 009:183.902 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 009:183.914   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 009:184.334   Data:  01
T17D34 009:184.348 - 0.450ms returns 1 (0x1)
T17D34 009:184.376 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 009:184.387   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 009:184.764   Data:  01
T17D34 009:184.781 - 0.410ms returns 1 (0x1)
T17D34 009:184.804 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 009:184.817   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 009:185.672   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 009:185.685 - 0.885ms returns 25 (0x19)
T17D34 009:185.700 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 009:185.710   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 009:186.082   Data:  04
T17D34 009:186.096 - 0.400ms returns 1 (0x1)
T17D34 009:186.121 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 009:186.133   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 009:186.509   Data:  00 00 00 00
T17D34 009:186.523 - 0.405ms returns 4 (0x4)
T17D34 009:187.148 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 009:187.170   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 009:187.558   Data:  04 00 00 00
T17D34 009:187.575 - 0.432ms returns 4 (0x4)
T17D34 009:187.594 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 009:187.605   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 009:188.025   Data:  00 00 00 00
T17D34 009:188.039 - 0.449ms returns 4 (0x4)
T17D34 009:188.060 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 009:188.071   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 009:188.448   Data:  02 03 CA DE
T17D34 009:188.462 - 0.406ms returns 4 (0x4)
T17D34 009:188.477 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 009:188.488   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 009:188.864   Data:  07 00 80 03
T17D34 009:188.878 - 0.404ms returns 4 (0x4)
T17D34 009:188.898 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 009:188.909   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 009:189.557   Data:  03 00 00 03 3A 40 00 00 00 22 00 08 37 19 FF 00 ...
T17D34 009:189.570 - 0.676ms returns 32 (0x20)
T17D34 009:190.339 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 009:190.358   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 009:190.786   Data:  9B 75 5F 28 71 E2 F2 BF
T17D34 009:190.800 - 0.465ms returns 8 (0x8)
T17D34 009:191.027 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 009:191.045   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 009:191.428   Data:  00
T17D34 009:191.442 - 0.418ms returns 1 (0x1)
T17D34 009:192.441 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 009:192.460   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 009:193.128   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 009:193.145 - 0.708ms returns 32 (0x20)
T17D34 009:193.161 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 009:193.174   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 009:193.558   Data:  00
T17D34 009:193.575 - 0.421ms returns 1 (0x1)
T74F0 009:193.620 JLINK_IsHalted()
T74F0 009:194.025 - 0.412ms returns FALSE
T74F0 009:294.922 JLINK_HasError()
T74F0 009:294.956 JLINK_IsHalted()
T74F0 009:295.342 - 0.397ms returns FALSE
T74F0 009:395.948 JLINK_HasError()
T74F0 009:395.985 JLINK_IsHalted()
T74F0 009:396.378 - 0.404ms returns FALSE
T74F0 009:496.969 JLINK_HasError()
T74F0 009:497.004 JLINK_IsHalted()
T74F0 009:497.391 - 0.402ms returns FALSE
T74F0 009:597.991 JLINK_HasError()
T74F0 009:598.024 JLINK_IsHalted()
T74F0 009:598.419 - 0.402ms returns FALSE
T74F0 009:699.016 JLINK_HasError()
T74F0 009:699.053 JLINK_HasError()
T17D34 009:699.146 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 009:699.181   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 009:700.057   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 009:700.081 - 0.940ms returns 25 (0x19)
T17D34 009:700.103 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 009:700.119   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 009:700.509   Data:  01
T17D34 009:700.533 - 0.435ms returns 1 (0x1)
T17D34 009:700.567 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 009:700.583   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 009:701.030   Data:  01
T17D34 009:701.054 - 0.492ms returns 1 (0x1)
T17D34 009:701.082 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 009:701.099   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 009:701.891   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 009:701.910 - 0.832ms returns 25 (0x19)
T17D34 009:701.927 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 009:701.940   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 009:702.329   Data:  04
T17D34 009:702.343 - 0.420ms returns 1 (0x1)
T17D34 009:702.371 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 009:702.382   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 009:702.760   Data:  00 00 00 00
T17D34 009:702.774 - 0.407ms returns 4 (0x4)
T17D34 009:703.301 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 009:703.319   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 009:703.703   Data:  04 00 00 00
T17D34 009:703.716 - 0.420ms returns 4 (0x4)
T17D34 009:703.734 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 009:703.745   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 009:704.126   Data:  00 00 00 00
T17D34 009:704.139 - 0.409ms returns 4 (0x4)
T17D34 009:704.158 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 009:704.169   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 009:704.545   Data:  02 03 CA DE
T17D34 009:704.559 - 0.404ms returns 4 (0x4)
T17D34 009:704.575 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 009:704.585   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 009:705.025   Data:  07 00 80 03
T17D34 009:705.038 - 0.467ms returns 4 (0x4)
T17D34 009:705.056 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 009:705.067   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 009:705.720   Data:  03 00 00 03 3A 40 00 00 00 22 00 08 37 19 FF 00 ...
T17D34 009:705.734 - 0.681ms returns 32 (0x20)
T17D34 009:706.435 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 009:706.453   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 009:706.882   Data:  9B 75 5F 28 71 E2 F2 BF
T17D34 009:706.905 - 0.475ms returns 8 (0x8)
T17D34 009:707.195 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 009:707.218   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 009:707.606   Data:  00
T17D34 009:707.624 - 0.433ms returns 1 (0x1)
T17D34 009:708.607 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 009:708.626   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 009:709.284   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 009:709.299 - 0.696ms returns 32 (0x20)
T17D34 009:709.315 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 009:709.326   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 009:709.708   Data:  00
T17D34 009:709.722 - 0.414ms returns 1 (0x1)
T74F0 009:709.809 JLINK_IsHalted()
T74F0 009:710.184 - 0.385ms returns FALSE
T74F0 009:811.054 JLINK_HasError()
T74F0 009:811.086 JLINK_IsHalted()
T74F0 009:811.473 - 0.395ms returns FALSE
T74F0 009:912.063 JLINK_HasError()
T74F0 009:912.097 JLINK_IsHalted()
T74F0 009:912.482 - 0.392ms returns FALSE
T74F0 010:013.086 JLINK_HasError()
T74F0 010:013.117 JLINK_IsHalted()
T74F0 010:013.497 - 0.386ms returns FALSE
T74F0 010:114.109 JLINK_HasError()
T74F0 010:114.142 JLINK_IsHalted()
T74F0 010:114.529 - 0.394ms returns FALSE
T74F0 010:215.143 JLINK_HasError()
T74F0 010:215.178 JLINK_HasError()
T17D34 010:215.249 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 010:215.283   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 010:216.102   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 010:216.120 - 0.878ms returns 25 (0x19)
T17D34 010:216.142 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 010:216.156   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 010:216.546   Data:  01
T17D34 010:216.565 - 0.428ms returns 1 (0x1)
T17D34 010:216.597 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 010:216.611   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 010:217.023   Data:  01
T17D34 010:217.040 - 0.448ms returns 1 (0x1)
T17D34 010:217.062 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 010:217.076   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 010:217.859   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 010:217.873 - 0.814ms returns 25 (0x19)
T17D34 010:217.887 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 010:217.897   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 010:218.272   Data:  04
T17D34 010:218.292 - 0.409ms returns 1 (0x1)
T17D34 010:218.322 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 010:218.336   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 010:218.723   Data:  00 00 00 00
T17D34 010:218.743 - 0.426ms returns 4 (0x4)
T17D34 010:219.489 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 010:219.515   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 010:219.910   Data:  04 00 00 00
T17D34 010:219.929 - 0.444ms returns 4 (0x4)
T17D34 010:219.947 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 010:219.960   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 010:220.343   Data:  00 00 00 00
T17D34 010:220.356 - 0.413ms returns 4 (0x4)
T17D34 010:220.377 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 010:220.388   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 010:220.765   Data:  02 03 CA DE
T17D34 010:220.778 - 0.405ms returns 4 (0x4)
T17D34 010:220.794 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 010:220.805   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 010:221.178   Data:  07 00 80 03
T17D34 010:221.191 - 0.401ms returns 4 (0x4)
T17D34 010:221.210 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 010:221.220   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 010:221.872   Data:  03 00 00 04 3A 40 00 00 00 22 00 22 37 19 FF 00 ...
T17D34 010:221.885 - 0.679ms returns 32 (0x20)
T17D34 010:222.594 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 010:222.613   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 010:223.041   Data:  F6 70 D4 81 1E 81 F1 BF
T17D34 010:223.055 - 0.464ms returns 8 (0x8)
T17D34 010:223.279 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 010:223.296   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 010:223.677   Data:  00
T17D34 010:223.691 - 0.417ms returns 1 (0x1)
T17D34 010:224.664 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 010:224.682   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 010:225.339   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 010:225.352 - 0.692ms returns 32 (0x20)
T17D34 010:225.368 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 010:225.379   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 010:225.756   Data:  00
T17D34 010:225.769 - 0.405ms returns 1 (0x1)
T74F0 010:225.812 JLINK_IsHalted()
T74F0 010:226.190 - 0.385ms returns FALSE
T74F0 010:327.166 JLINK_HasError()
T74F0 010:327.203 JLINK_IsHalted()
T74F0 010:327.587 - 0.397ms returns FALSE
T74F0 010:428.187 JLINK_HasError()
T74F0 010:428.227 JLINK_IsHalted()
T74F0 010:428.624 - 0.411ms returns FALSE
T74F0 010:529.214 JLINK_HasError()
T74F0 010:529.255 JLINK_IsHalted()
T74F0 010:529.651 - 0.402ms returns FALSE
T74F0 010:630.236 JLINK_HasError()
T74F0 010:630.272 JLINK_IsHalted()
T74F0 010:630.659 - 0.393ms returns FALSE
T74F0 010:731.265 JLINK_HasError()
T74F0 010:731.295 JLINK_HasError()
T17D34 010:731.375 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 010:731.408   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 010:732.216   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 010:732.234 - 0.864ms returns 25 (0x19)
T17D34 010:732.256 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 010:732.272   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 010:732.657   Data:  01
T17D34 010:732.670 - 0.418ms returns 1 (0x1)
T17D34 010:732.695 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 010:732.707   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 010:733.081   Data:  01
T17D34 010:733.094 - 0.403ms returns 1 (0x1)
T17D34 010:733.112 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 010:733.123   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 010:733.904   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 010:733.920 - 0.812ms returns 25 (0x19)
T17D34 010:733.936 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 010:733.947   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 010:734.328   Data:  04
T17D34 010:734.341 - 0.409ms returns 1 (0x1)
T17D34 010:734.366 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 010:734.378   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 010:734.755   Data:  00 00 00 00
T17D34 010:734.768 - 0.406ms returns 4 (0x4)
T17D34 010:735.429 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 010:735.449   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 010:735.837   Data:  04 00 00 00
T17D34 010:735.861 - 0.437ms returns 4 (0x4)
T17D34 010:735.885 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 010:735.901   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 010:736.338   Data:  00 00 00 00
T17D34 010:736.356 - 0.475ms returns 4 (0x4)
T17D34 010:736.379 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 010:736.392   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 010:736.772   Data:  02 03 CA DE
T17D34 010:736.786 - 0.410ms returns 4 (0x4)
T17D34 010:736.802 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 010:736.813   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 010:737.194   Data:  07 00 80 03
T17D34 010:737.209 - 0.410ms returns 4 (0x4)
T17D34 010:737.229 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 010:737.240   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 010:737.920   Data:  03 00 00 04 3A 40 00 00 00 22 00 22 37 19 FF 00 ...
T17D34 010:737.933 - 0.708ms returns 32 (0x20)
T17D34 010:738.655 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 010:738.673   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 010:739.094   Data:  F6 70 D4 81 1E 81 F1 BF
T17D34 010:739.108 - 0.457ms returns 8 (0x8)
T17D34 010:739.333 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 010:739.350   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 010:739.733   Data:  00
T17D34 010:739.747 - 0.418ms returns 1 (0x1)
T17D34 010:740.725 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 010:740.744   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 010:741.399   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 010:741.413 - 0.692ms returns 32 (0x20)
T17D34 010:741.429 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 010:741.439   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 010:741.814   Data:  00
T17D34 010:741.827 - 0.403ms returns 1 (0x1)
T74F0 010:741.869 JLINK_IsHalted()
T74F0 010:742.244 - 0.384ms returns FALSE
T74F0 010:842.283 JLINK_HasError()
T74F0 010:842.323 JLINK_IsHalted()
T74F0 010:842.714 - 0.402ms returns FALSE
T74F0 010:943.304 JLINK_HasError()
T74F0 010:943.337 JLINK_IsHalted()
T74F0 010:943.723 - 0.393ms returns FALSE
T74F0 011:044.325 JLINK_HasError()
T74F0 011:044.358 JLINK_IsHalted()
T74F0 011:044.744 - 0.392ms returns FALSE
T74F0 011:145.351 JLINK_HasError()
T74F0 011:145.390 JLINK_IsHalted()
T74F0 011:145.778 - 0.396ms returns FALSE
T74F0 011:246.373 JLINK_HasError()
T74F0 011:246.402 JLINK_HasError()
T17D34 011:246.474 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 011:246.508   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 011:247.323   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 011:247.340 - 0.871ms returns 25 (0x19)
T17D34 011:247.361 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 011:247.375   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 011:247.758   Data:  01
T17D34 011:247.774 - 0.418ms returns 1 (0x1)
T17D34 011:247.803 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 011:247.817   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 011:248.193   Data:  01
T17D34 011:248.209 - 0.410ms returns 1 (0x1)
T17D34 011:248.231 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 011:248.244   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 011:249.038   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 011:249.052 - 0.825ms returns 25 (0x19)
T17D34 011:249.067 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 011:249.078   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 011:249.457   Data:  04
T17D34 011:249.481 - 0.419ms returns 1 (0x1)
T17D34 011:249.518 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 011:249.534   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 011:249.930   Data:  00 00 00 00
T17D34 011:249.947 - 0.433ms returns 4 (0x4)
T17D34 011:250.579 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 011:250.598   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 011:251.027   Data:  04 00 00 00
T17D34 011:251.044 - 0.470ms returns 4 (0x4)
T17D34 011:251.063 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 011:251.076   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 011:251.457   Data:  00 00 00 00
T17D34 011:251.470 - 0.411ms returns 4 (0x4)
T17D34 011:251.491 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 011:251.501   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 011:251.877   Data:  02 03 CA DE
T17D34 011:251.891 - 0.404ms returns 4 (0x4)
T17D34 011:251.907 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 011:251.917   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 011:252.336   Data:  07 00 80 03
T17D34 011:252.350 - 0.447ms returns 4 (0x4)
T17D34 011:252.370 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 011:252.381   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 011:253.043   Data:  03 00 00 05 3A 40 00 00 00 22 00 6E 35 19 FF 00 ...
T17D34 011:253.056 - 0.690ms returns 32 (0x20)
T17D34 011:253.827 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 011:253.850   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 011:254.278   Data:  2E 6D FD F5 3A 88 F2 BF
T17D34 011:254.294 - 0.472ms returns 8 (0x8)
T17D34 011:254.565 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 011:254.582   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 011:255.022   Data:  00
T17D34 011:255.036 - 0.476ms returns 1 (0x1)
T17D34 011:256.011 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 011:256.030   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 011:256.691   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 011:256.705 - 0.698ms returns 32 (0x20)
T17D34 011:256.720 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 011:256.731   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 011:257.103   Data:  00
T17D34 011:257.117 - 0.400ms returns 1 (0x1)
T74F0 011:257.160 JLINK_IsHalted()
T74F0 011:257.544 - 0.392ms returns FALSE
T74F0 011:358.398 JLINK_HasError()
T74F0 011:358.436 JLINK_IsHalted()
T74F0 011:358.813 - 0.385ms returns FALSE
T74F0 011:459.421 JLINK_HasError()
T74F0 011:459.457 JLINK_IsHalted()
T74F0 011:459.845 - 0.394ms returns FALSE
T74F0 011:560.452 JLINK_HasError()
T74F0 011:560.488 JLINK_IsHalted()
T74F0 011:560.888 - 0.413ms returns FALSE
T74F0 011:661.465 JLINK_HasError()
T74F0 011:661.497 JLINK_IsHalted()
T74F0 011:661.883 - 0.394ms returns FALSE
T74F0 011:762.490 JLINK_HasError()
T74F0 011:762.524 JLINK_HasError()
T17D34 011:762.605 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 011:762.640   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 011:763.451   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 011:763.468 - 0.868ms returns 25 (0x19)
T17D34 011:763.490 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 011:763.504   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 011:763.885   Data:  01
T17D34 011:763.898 - 0.412ms returns 1 (0x1)
T17D34 011:763.923 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 011:763.935   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 011:764.325   Data:  01
T17D34 011:764.339 - 0.420ms returns 1 (0x1)
T17D34 011:764.357 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 011:764.368   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 011:765.144   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 011:765.158 - 0.804ms returns 25 (0x19)
T17D34 011:765.172 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 011:765.183   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 011:765.560   Data:  04
T17D34 011:765.576 - 0.409ms returns 1 (0x1)
T17D34 011:765.635 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 011:765.663   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 011:766.048   Data:  00 00 00 00
T17D34 011:766.065 - 0.434ms returns 4 (0x4)
T17D34 011:766.663 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 011:766.682   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 011:767.067   Data:  04 00 00 00
T17D34 011:767.081 - 0.422ms returns 4 (0x4)
T17D34 011:767.099 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 011:767.110   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 011:767.491   Data:  00 00 00 00
T17D34 011:767.505 - 0.410ms returns 4 (0x4)
T17D34 011:767.529 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 011:767.540   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 011:767.919   Data:  02 03 CA DE
T17D34 011:767.937 - 0.412ms returns 4 (0x4)
T17D34 011:767.952 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 011:767.963   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 011:768.340   Data:  07 00 80 03
T17D34 011:768.353 - 0.405ms returns 4 (0x4)
T17D34 011:768.372 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 011:768.382   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 011:769.049   Data:  03 00 00 05 3A 40 00 00 00 22 00 6E 35 19 FF 00 ...
T17D34 011:769.074 - 0.707ms returns 32 (0x20)
T17D34 011:769.912 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 011:769.932   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 011:770.367   Data:  2E 6D FD F5 3A 88 F2 BF
T17D34 011:770.381 - 0.472ms returns 8 (0x8)
T17D34 011:770.615 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 011:770.633   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 011:771.023   Data:  00
T17D34 011:771.037 - 0.426ms returns 1 (0x1)
T17D34 011:772.020 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 011:772.038   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 011:772.700   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 011:772.715 - 0.699ms returns 32 (0x20)
T17D34 011:772.730 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 011:772.742   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 011:773.115   Data:  00
T17D34 011:773.129 - 0.403ms returns 1 (0x1)
T74F0 011:773.168 JLINK_IsHalted()
T74F0 011:773.571 - 0.410ms returns FALSE
T74F0 011:874.514 JLINK_HasError()
T74F0 011:874.548 JLINK_IsHalted()
T74F0 011:874.937 - 0.397ms returns FALSE
T74F0 011:975.537 JLINK_HasError()
T74F0 011:975.570 JLINK_IsHalted()
T74F0 011:976.026 - 0.463ms returns FALSE
T74F0 012:076.562 JLINK_HasError()
T74F0 012:076.598 JLINK_IsHalted()
T74F0 012:077.030 - 0.446ms returns FALSE
T74F0 012:177.581 JLINK_HasError()
T74F0 012:177.615 JLINK_IsHalted()
T74F0 012:178.041 - 0.434ms returns FALSE
T74F0 012:278.605 JLINK_HasError()
T74F0 012:278.642 JLINK_HasError()
T17D34 012:278.697 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 012:278.728   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 012:279.537   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 012:279.552 - 0.859ms returns 25 (0x19)
T17D34 012:279.570 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 012:279.582   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 012:280.028   Data:  01
T17D34 012:280.052 - 0.488ms returns 1 (0x1)
T17D34 012:280.088 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 012:280.105   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 012:280.501   Data:  01
T17D34 012:280.518 - 0.434ms returns 1 (0x1)
T17D34 012:280.541 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 012:280.554   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 012:281.332   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 012:281.346 - 0.809ms returns 25 (0x19)
T17D34 012:281.361 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 012:281.372   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 012:281.749   Data:  04
T17D34 012:281.764 - 0.406ms returns 1 (0x1)
T17D34 012:281.789 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 012:281.801   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 012:282.177   Data:  00 00 00 00
T17D34 012:282.191 - 0.405ms returns 4 (0x4)
T17D34 012:282.734 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 012:282.753   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 012:283.134   Data:  04 00 00 00
T17D34 012:283.148 - 0.419ms returns 4 (0x4)
T17D34 012:283.166 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 012:283.177   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 012:283.553   Data:  00 00 00 00
T17D34 012:283.567 - 0.405ms returns 4 (0x4)
T17D34 012:283.587 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 012:283.599   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 012:284.022   Data:  02 03 CA DE
T17D34 012:284.035 - 0.452ms returns 4 (0x4)
T17D34 012:284.051 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 012:284.062   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 012:284.437   Data:  07 00 80 03
T17D34 012:284.450 - 0.403ms returns 4 (0x4)
T17D34 012:284.469 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 012:284.479   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 012:285.130   Data:  03 00 00 06 3A 40 00 00 00 22 00 F0 32 19 FF 00 ...
T17D34 012:285.143 - 0.679ms returns 32 (0x20)
T17D34 012:285.959 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 012:285.983   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 012:286.411   Data:  6D 61 AF 9B 5D C9 F2 BF
T17D34 012:286.432 - 0.479ms returns 8 (0x8)
T17D34 012:286.689 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 012:286.708   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 012:287.086   Data:  00
T17D34 012:287.101 - 0.416ms returns 1 (0x1)
T17D34 012:288.099 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 012:288.117   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 012:288.782   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 012:288.796 - 0.701ms returns 32 (0x20)
T17D34 012:288.811 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 012:288.822   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 012:289.311   Data:  00
T17D34 012:289.327 - 0.519ms returns 1 (0x1)
T74F0 012:289.409 JLINK_IsHalted()
T74F0 012:289.781 - 0.383ms returns FALSE
T74F0 012:390.658 JLINK_HasError()
T74F0 012:390.697 JLINK_IsHalted()
T74F0 012:391.085 - 0.403ms returns FALSE
T74F0 012:491.652 JLINK_HasError()
T74F0 012:491.688 JLINK_IsHalted()
T74F0 012:492.073 - 0.397ms returns FALSE
T74F0 012:592.675 JLINK_HasError()
T74F0 012:592.715 JLINK_IsHalted()
T74F0 012:593.102 - 0.394ms returns FALSE
T74F0 012:693.705 JLINK_HasError()
T74F0 012:693.737 JLINK_IsHalted()
T74F0 012:694.127 - 0.398ms returns FALSE
T74F0 012:794.853 JLINK_HasError()
T74F0 012:794.893 JLINK_HasError()
T17D34 012:794.987 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 012:795.025   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 012:795.865   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 012:795.881 - 0.898ms returns 25 (0x19)
T17D34 012:795.903 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 012:795.916   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 012:796.331   Data:  01
T17D34 012:796.346 - 0.447ms returns 1 (0x1)
T17D34 012:796.376 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 012:796.388   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 012:796.761   Data:  01
T17D34 012:796.775 - 0.403ms returns 1 (0x1)
T17D34 012:796.795 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 012:796.807   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 012:797.693   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 012:797.707 - 0.916ms returns 25 (0x19)
T17D34 012:797.722 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 012:797.732   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 012:798.110   Data:  04
T17D34 012:798.124 - 0.406ms returns 1 (0x1)
T17D34 012:798.150 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 012:798.161   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 012:798.535   Data:  00 00 00 00
T17D34 012:798.552 - 0.407ms returns 4 (0x4)
T17D34 012:799.274 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 012:799.300   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 012:799.700   Data:  04 00 00 00
T17D34 012:799.715 - 0.445ms returns 4 (0x4)
T17D34 012:799.733 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 012:799.745   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 012:800.125   Data:  00 00 00 00
T17D34 012:800.140 - 0.411ms returns 4 (0x4)
T17D34 012:800.161 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 012:800.173   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 012:800.547   Data:  02 03 CA DE
T17D34 012:800.561 - 0.404ms returns 4 (0x4)
T17D34 012:800.578 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 012:800.589   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 012:801.018   Data:  07 00 80 03
T17D34 012:801.032 - 0.458ms returns 4 (0x4)
T17D34 012:801.051 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 012:801.062   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 012:801.718   Data:  03 00 00 06 3A 40 00 00 00 22 00 F0 32 19 FF 00 ...
T17D34 012:801.732 - 0.685ms returns 32 (0x20)
T17D34 012:802.473 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 012:802.492   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 012:802.918   Data:  6D 61 AF 9B 5D C9 F2 BF
T17D34 012:802.943 - 0.475ms returns 8 (0x8)
T17D34 012:803.267 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 012:803.286   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 012:803.729   Data:  00
T17D34 012:803.743 - 0.480ms returns 1 (0x1)
T17D34 012:804.766 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 012:804.786   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 012:805.446   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 012:805.461 - 0.698ms returns 32 (0x20)
T17D34 012:805.476 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 012:805.488   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 012:805.863   Data:  00
T17D34 012:805.877 - 0.404ms returns 1 (0x1)
T74F0 012:805.935 JLINK_IsHalted()
T74F0 012:806.311 - 0.390ms returns FALSE
T74F0 012:906.532 JLINK_HasError()
T74F0 012:906.564 JLINK_IsHalted()
T74F0 012:907.028 - 0.475ms returns FALSE
T74F0 013:007.552 JLINK_HasError()
T74F0 013:007.592 JLINK_IsHalted()
T74F0 013:008.030 - 0.451ms returns FALSE
T74F0 013:108.575 JLINK_HasError()
T74F0 013:108.619 JLINK_IsHalted()
T74F0 013:109.027 - 0.417ms returns FALSE
T74F0 013:209.601 JLINK_HasError()
T74F0 013:209.642 JLINK_IsHalted()
T74F0 013:210.209 - 0.578ms returns FALSE
T74F0 013:310.618 JLINK_HasError()
T74F0 013:310.656 JLINK_HasError()
T17D34 013:310.711 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 013:310.743   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 013:311.549   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 013:311.564 - 0.856ms returns 25 (0x19)
T17D34 013:311.580 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 013:311.593   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 013:312.021   Data:  01
T17D34 013:312.035 - 0.458ms returns 1 (0x1)
T17D34 013:312.062 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 013:312.074   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 013:312.451   Data:  01
T17D34 013:312.467 - 0.410ms returns 1 (0x1)
T17D34 013:312.490 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 013:312.503   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 013:313.288   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 013:313.304 - 0.818ms returns 25 (0x19)
T17D34 013:313.321 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 013:313.334   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 013:313.711   Data:  04
T17D34 013:313.724 - 0.407ms returns 1 (0x1)
T17D34 013:313.751 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 013:313.762   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 013:314.133   Data:  00 00 00 00
T17D34 013:314.147 - 0.400ms returns 4 (0x4)
T17D34 013:314.782 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 013:314.802   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 013:315.194   Data:  04 00 00 00
T17D34 013:315.219 - 0.442ms returns 4 (0x4)
T17D34 013:315.244 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 013:315.260   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 013:315.654   Data:  00 00 00 00
T17D34 013:315.670 - 0.430ms returns 4 (0x4)
T17D34 013:315.691 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 013:315.703   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 013:316.086   Data:  02 03 CA DE
T17D34 013:316.104 - 0.416ms returns 4 (0x4)
T17D34 013:316.123 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 013:316.136   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 013:316.516   Data:  07 00 80 03
T17D34 013:316.529 - 0.410ms returns 4 (0x4)
T17D34 013:316.549 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 013:316.561   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 013:317.215   Data:  03 00 00 07 3A 40 00 00 00 22 00 EC 3B 19 FF 00 ...
T17D34 013:317.230 - 0.685ms returns 32 (0x20)
T17D34 013:318.064 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 013:318.082   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 013:318.513   Data:  4B 6E 98 ED A6 71 F1 BF
T17D34 013:318.527 - 0.468ms returns 8 (0x8)
T17D34 013:318.756 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 013:318.775   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 013:319.154   Data:  00
T17D34 013:319.169 - 0.416ms returns 1 (0x1)
T17D34 013:320.194 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 013:320.213   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 013:320.879   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 013:320.894 - 0.704ms returns 32 (0x20)
T17D34 013:320.909 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 013:320.921   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 013:321.330   Data:  00
T17D34 013:321.344 - 0.438ms returns 1 (0x1)
T74F0 013:321.429 JLINK_IsHalted()
T74F0 013:321.801 - 0.383ms returns FALSE
T74F0 013:422.643 JLINK_HasError()
T74F0 013:422.678 JLINK_IsHalted()
T74F0 013:423.061 - 0.391ms returns FALSE
T74F0 013:523.676 JLINK_HasError()
T74F0 013:523.710 JLINK_IsHalted()
T74F0 013:524.105 - 0.402ms returns FALSE
T74F0 013:624.692 JLINK_HasError()
T74F0 013:624.737 JLINK_IsHalted()
T74F0 013:625.135 - 0.416ms returns FALSE
T74F0 013:725.729 JLINK_HasError()
T74F0 013:725.761 JLINK_IsHalted()
T74F0 013:726.150 - 0.403ms returns FALSE
T74F0 013:826.733 JLINK_HasError()
T74F0 013:826.766 JLINK_HasError()
T17D34 013:826.818 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 013:826.848   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 013:827.663   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 013:827.682 - 0.868ms returns 25 (0x19)
T17D34 013:827.703 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 013:827.718   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 013:828.144   Data:  01
T17D34 013:828.169 - 0.471ms returns 1 (0x1)
T17D34 013:828.207 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 013:828.225   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 013:828.615   Data:  01
T17D34 013:828.634 - 0.431ms returns 1 (0x1)
T17D34 013:828.658 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 013:828.671   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 013:829.456   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 013:829.471 - 0.817ms returns 25 (0x19)
T17D34 013:829.487 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 013:829.498   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 013:829.873   Data:  04
T17D34 013:829.888 - 0.405ms returns 1 (0x1)
T17D34 013:829.914 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 013:829.925   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 013:830.328   Data:  00 00 00 00
T17D34 013:830.341 - 0.431ms returns 4 (0x4)
T17D34 013:830.997 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 013:831.016   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 013:831.399   Data:  04 00 00 00
T17D34 013:831.413 - 0.420ms returns 4 (0x4)
T17D34 013:831.431 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 013:831.442   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 013:831.821   Data:  00 00 00 00
T17D34 013:831.840 - 0.414ms returns 4 (0x4)
T17D34 013:831.868 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 013:831.884   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 013:832.279   Data:  02 03 CA DE
T17D34 013:832.296 - 0.432ms returns 4 (0x4)
T17D34 013:832.314 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 013:832.327   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 013:832.706   Data:  07 00 80 03
T17D34 013:832.722 - 0.413ms returns 4 (0x4)
T17D34 013:832.746 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 013:832.758   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 013:833.416   Data:  03 00 00 07 3A 40 00 00 00 22 00 EC 3B 19 FF 00 ...
T17D34 013:833.430 - 0.688ms returns 32 (0x20)
T17D34 013:834.294 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 013:834.313   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 013:834.737   Data:  4B 6E 98 ED A6 71 F1 BF
T17D34 013:834.751 - 0.461ms returns 8 (0x8)
T17D34 013:834.994 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 013:835.012   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 013:835.394   Data:  00
T17D34 013:835.408 - 0.418ms returns 1 (0x1)
T17D34 013:836.440 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 013:836.460   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 013:837.118   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 013:837.133 - 0.697ms returns 32 (0x20)
T17D34 013:837.149 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 013:837.160   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 013:837.536   Data:  00
T17D34 013:837.549 - 0.404ms returns 1 (0x1)
T74F0 013:837.588 JLINK_IsHalted()
T74F0 013:838.020 - 0.440ms returns FALSE
T74F0 013:938.768 JLINK_HasError()
T74F0 013:938.804 JLINK_IsHalted()
T74F0 013:939.194 - 0.402ms returns FALSE
T74F0 014:039.780 JLINK_HasError()
T74F0 014:039.810 JLINK_IsHalted()
T74F0 014:040.197 - 0.394ms returns FALSE
T74F0 014:140.804 JLINK_HasError()
T74F0 014:140.842 JLINK_IsHalted()
T74F0 014:141.226 - 0.397ms returns FALSE
T74F0 014:241.827 JLINK_HasError()
T74F0 014:241.861 JLINK_IsHalted()
T74F0 014:242.335 - 0.481ms returns FALSE
T74F0 014:342.851 JLINK_HasError()
T74F0 014:342.894 JLINK_HasError()
T17D34 014:342.970 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 014:343.004   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 014:343.817   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 014:343.835 - 0.872ms returns 25 (0x19)
T17D34 014:343.857 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 014:343.871   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 014:344.250   Data:  01
T17D34 014:344.267 - 0.415ms returns 1 (0x1)
T17D34 014:344.296 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 014:344.309   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 014:344.688   Data:  01
T17D34 014:344.702 - 0.410ms returns 1 (0x1)
T17D34 014:344.720 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 014:344.731   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 014:345.511   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 014:345.528 - 0.812ms returns 25 (0x19)
T17D34 014:345.545 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 014:345.557   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 014:345.940   Data:  04
T17D34 014:345.954 - 0.413ms returns 1 (0x1)
T17D34 014:345.981 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 014:345.992   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 014:346.368   Data:  00 00 00 00
T17D34 014:346.381 - 0.405ms returns 4 (0x4)
T17D34 014:347.022 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 014:347.041   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 014:347.429   Data:  04 00 00 00
T17D34 014:347.443 - 0.425ms returns 4 (0x4)
T17D34 014:347.461 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 014:347.472   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 014:347.851   Data:  00 00 00 00
T17D34 014:347.865 - 0.408ms returns 4 (0x4)
T17D34 014:347.885 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 014:347.896   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 014:348.268   Data:  02 03 CA DE
T17D34 014:348.281 - 0.400ms returns 4 (0x4)
T17D34 014:348.297 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 014:348.308   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 014:348.683   Data:  07 00 80 03
T17D34 014:348.696 - 0.403ms returns 4 (0x4)
T17D34 014:348.714 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 014:348.725   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 014:349.379   Data:  03 00 00 08 3A 40 00 00 00 22 00 12 2F 19 FF 00 ...
T17D34 014:349.393 - 0.683ms returns 32 (0x20)
T17D34 014:350.108 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 014:350.126   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 014:350.555   Data:  6E E0 A5 3F 39 88 F2 BF
T17D34 014:350.569 - 0.465ms returns 8 (0x8)
T17D34 014:350.794 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 014:350.812   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 014:352.035   Data:  00
T17D34 014:352.051 - 1.261ms returns 1 (0x1)
T17D34 014:353.223 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 014:353.250   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 014:353.920   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 014:353.937 - 0.718ms returns 32 (0x20)
T17D34 014:353.954 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 014:353.967   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 014:354.345   Data:  00
T17D34 014:354.359 - 0.408ms returns 1 (0x1)
T74F0 014:354.398 JLINK_IsHalted()
T74F0 014:354.769 - 0.377ms returns FALSE
T74F0 014:454.874 JLINK_HasError()
T74F0 014:454.914 JLINK_IsHalted()
T74F0 014:455.315 - 0.414ms returns FALSE
T74F0 014:555.897 JLINK_HasError()
T74F0 014:555.932 JLINK_IsHalted()
T74F0 014:556.317 - 0.392ms returns FALSE
T74F0 014:656.920 JLINK_HasError()
T74F0 014:656.952 JLINK_IsHalted()
T74F0 014:657.330 - 0.383ms returns FALSE
T74F0 014:757.945 JLINK_HasError()
T74F0 014:757.982 JLINK_IsHalted()
T74F0 014:758.370 - 0.396ms returns FALSE
T74F0 014:858.968 JLINK_HasError()
T74F0 014:859.006 JLINK_HasError()
T17D34 014:859.112 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 014:859.149   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 014:860.043   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 014:860.068 - 0.961ms returns 25 (0x19)
T17D34 014:860.095 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 014:860.113   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 014:860.507   Data:  01
T17D34 014:860.528 - 0.437ms returns 1 (0x1)
T17D34 014:860.569 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 014:860.586   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 014:861.021   Data:  01
T17D34 014:861.038 - 0.473ms returns 1 (0x1)
T17D34 014:861.066 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 014:861.081   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 014:861.866   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 014:861.879 - 0.817ms returns 25 (0x19)
T17D34 014:861.895 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 014:861.906   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 014:862.330   Data:  04
T17D34 014:862.344 - 0.453ms returns 1 (0x1)
T17D34 014:862.371 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 014:862.382   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 014:862.761   Data:  00 00 00 00
T17D34 014:862.774 - 0.407ms returns 4 (0x4)
T17D34 014:863.415 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 014:863.435   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 014:863.821   Data:  04 00 00 00
T17D34 014:863.835 - 0.423ms returns 4 (0x4)
T17D34 014:863.853 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 014:863.864   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 014:864.299   Data:  00 00 00 00
T17D34 014:864.313 - 0.465ms returns 4 (0x4)
T17D34 014:864.334 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 014:864.345   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 014:864.721   Data:  02 03 CA DE
T17D34 014:864.735 - 0.405ms returns 4 (0x4)
T17D34 014:864.752 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 014:864.763   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 014:865.140   Data:  07 00 80 03
T17D34 014:865.154 - 0.406ms returns 4 (0x4)
T17D34 014:865.174 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 014:865.185   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 014:865.841   Data:  03 00 00 08 3A 40 00 00 00 22 00 12 2F 19 FF 00 ...
T17D34 014:865.854 - 0.684ms returns 32 (0x20)
T17D34 014:866.681 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 014:866.700   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 014:867.124   Data:  6E E0 A5 3F 39 88 F2 BF
T17D34 014:867.138 - 0.461ms returns 8 (0x8)
T17D34 014:867.367 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 014:867.385   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 014:867.765   Data:  00
T17D34 014:867.779 - 0.416ms returns 1 (0x1)
T17D34 014:868.820 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 014:868.839   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 014:869.503   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 014:869.517 - 0.701ms returns 32 (0x20)
T17D34 014:869.532 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 014:869.543   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 014:869.917   Data:  00
T17D34 014:869.931 - 0.402ms returns 1 (0x1)
T74F0 014:869.991 JLINK_IsHalted()
T74F0 014:870.368 - 0.384ms returns FALSE
T74F0 014:971.000 JLINK_HasError()
T74F0 014:971.082 JLINK_IsHalted()
T74F0 014:971.468 - 0.391ms returns FALSE
T74F0 015:072.013 JLINK_HasError()
T74F0 015:072.051 JLINK_IsHalted()
T74F0 015:072.434 - 0.389ms returns FALSE
T74F0 015:173.035 JLINK_HasError()
T74F0 015:173.069 JLINK_IsHalted()
T74F0 015:173.451 - 0.389ms returns FALSE
T74F0 015:274.060 JLINK_HasError()
T74F0 015:274.097 JLINK_IsHalted()
T74F0 015:274.490 - 0.401ms returns FALSE
T74F0 015:375.083 JLINK_HasError()
T74F0 015:375.116 JLINK_HasError()
T17D34 015:375.196 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 015:375.228   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 015:376.114   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 015:376.134 - 0.942ms returns 25 (0x19)
T17D34 015:376.157 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 015:376.172   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 015:376.554   Data:  01
T17D34 015:376.570 - 0.417ms returns 1 (0x1)
T17D34 015:376.601 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 015:376.614   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 015:377.019   Data:  01
T17D34 015:377.033 - 0.435ms returns 1 (0x1)
T17D34 015:377.052 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 015:377.063   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 015:377.844   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 015:377.860 - 0.814ms returns 25 (0x19)
T17D34 015:377.878 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 015:377.891   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 015:378.269   Data:  04
T17D34 015:378.289 - 0.416ms returns 1 (0x1)
T17D34 015:378.324 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 015:378.338   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 015:378.725   Data:  00 00 00 00
T17D34 015:378.739 - 0.419ms returns 4 (0x4)
T17D34 015:379.332 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 015:379.350   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 015:379.757   Data:  04 00 00 00
T17D34 015:379.772 - 0.444ms returns 4 (0x4)
T17D34 015:379.789 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 015:379.801   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 015:380.219   Data:  00 00 00 00
T17D34 015:380.232 - 0.447ms returns 4 (0x4)
T17D34 015:380.253 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 015:380.264   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 015:380.636   Data:  02 03 CA DE
T17D34 015:380.650 - 0.401ms returns 4 (0x4)
T17D34 015:380.666 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 015:380.676   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 015:381.049   Data:  07 00 80 03
T17D34 015:381.063 - 0.401ms returns 4 (0x4)
T17D34 015:381.083 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 015:381.094   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 015:381.752   Data:  03 00 00 09 3A 40 00 00 00 22 00 5A 31 19 FF 00 ...
T17D34 015:381.769 - 0.690ms returns 32 (0x20)
T17D34 015:382.628 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 015:382.648   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 015:383.073   Data:  38 81 D2 B5 7C 8E F1 BF
T17D34 015:383.087 - 0.462ms returns 8 (0x8)
T17D34 015:383.336 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 015:383.358   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 015:383.743   Data:  00
T17D34 015:383.759 - 0.427ms returns 1 (0x1)
T17D34 015:384.990 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 015:385.016   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 015:385.693   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 015:385.711 - 0.725ms returns 32 (0x20)
T17D34 015:385.728 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 015:385.740   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 015:386.136   Data:  00
T17D34 015:386.149 - 0.426ms returns 1 (0x1)
T74F0 015:386.196 JLINK_IsHalted()
T74F0 015:386.572 - 0.383ms returns FALSE
T74F0 015:487.108 JLINK_HasError()
T74F0 015:487.197 JLINK_IsHalted()
T74F0 015:487.587 - 0.397ms returns FALSE
T74F0 015:588.141 JLINK_HasError()
T74F0 015:588.173 JLINK_IsHalted()
T74F0 015:588.558 - 0.393ms returns FALSE
T74F0 015:689.153 JLINK_HasError()
T74F0 015:689.185 JLINK_IsHalted()
T74F0 015:689.586 - 0.412ms returns FALSE
T74F0 015:790.173 JLINK_HasError()
T74F0 015:790.209 JLINK_IsHalted()
T74F0 015:790.595 - 0.394ms returns FALSE
T74F0 015:891.199 JLINK_HasError()
T74F0 015:891.239 JLINK_HasError()
T17D34 015:891.314 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 015:891.346   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 015:892.149   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 015:892.175 - 0.866ms returns 25 (0x19)
T17D34 015:892.198 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 015:892.215   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 015:892.602   Data:  01
T17D34 015:892.620 - 0.427ms returns 1 (0x1)
T17D34 015:892.652 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 015:892.667   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 015:893.048   Data:  01
T17D34 015:893.065 - 0.418ms returns 1 (0x1)
T17D34 015:893.087 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 015:893.101   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 015:893.884   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 015:893.900 - 0.817ms returns 25 (0x19)
T17D34 015:893.950 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 015:893.963   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 015:894.344   Data:  04
T17D34 015:894.358 - 0.411ms returns 1 (0x1)
T17D34 015:894.384 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 015:894.395   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 015:894.776   Data:  00 00 00 00
T17D34 015:894.790 - 0.410ms returns 4 (0x4)
T17D34 015:895.379 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 015:895.398   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 015:895.780   Data:  04 00 00 00
T17D34 015:895.794 - 0.419ms returns 4 (0x4)
T17D34 015:895.812 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 015:895.823   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 015:896.196   Data:  00 00 00 00
T17D34 015:896.210 - 0.402ms returns 4 (0x4)
T17D34 015:896.231 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 015:896.242   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 015:896.620   Data:  02 03 CA DE
T17D34 015:896.634 - 0.407ms returns 4 (0x4)
T17D34 015:896.650 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 015:896.661   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 015:897.041   Data:  07 00 80 03
T17D34 015:897.055 - 0.408ms returns 4 (0x4)
T17D34 015:897.074 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 015:897.085   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 015:897.740   Data:  03 00 00 09 3A 40 00 00 00 22 00 5A 31 19 FF 00 ...
T17D34 015:897.756 - 0.687ms returns 32 (0x20)
T17D34 015:898.672 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 015:898.690   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 015:899.114   Data:  38 81 D2 B5 7C 8E F1 BF
T17D34 015:899.128 - 0.460ms returns 8 (0x8)
T17D34 015:899.360 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 015:899.378   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 015:899.759   Data:  00
T17D34 015:899.773 - 0.417ms returns 1 (0x1)
T17D34 015:900.815 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 015:900.834   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 015:901.491   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 015:901.506 - 0.695ms returns 32 (0x20)
T17D34 015:901.522 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 015:901.534   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 015:901.910   Data:  00
T17D34 015:901.924 - 0.406ms returns 1 (0x1)
T74F0 015:901.966 JLINK_IsHalted()
T74F0 015:902.340 - 0.381ms returns FALSE
T74F0 016:003.223 JLINK_HasError()
T74F0 016:003.322 JLINK_IsHalted()
T74F0 016:003.714 - 0.400ms returns FALSE
T74F0 016:104.245 JLINK_HasError()
T74F0 016:104.282 JLINK_IsHalted()
T74F0 016:104.677 - 0.402ms returns FALSE
T74F0 016:205.271 JLINK_HasError()
T74F0 016:205.303 JLINK_IsHalted()
T74F0 016:205.694 - 0.397ms returns FALSE
T74F0 016:306.318 JLINK_HasError()
T74F0 016:306.357 JLINK_IsHalted()
T74F0 016:306.745 - 0.396ms returns FALSE
T74F0 016:407.314 JLINK_HasError()
T74F0 016:407.351 JLINK_HasError()
T17D34 016:407.446 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 016:407.477   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 016:408.276   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 016:408.291 - 0.849ms returns 25 (0x19)
T17D34 016:408.309 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 016:408.322   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 016:408.701   Data:  01
T17D34 016:408.717 - 0.412ms returns 1 (0x1)
T17D34 016:408.747 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 016:408.759   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 016:409.132   Data:  01
T17D34 016:409.146 - 0.404ms returns 1 (0x1)
T17D34 016:409.167 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 016:409.179   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 016:410.034   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 016:410.047 - 0.884ms returns 25 (0x19)
T17D34 016:410.062 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 016:410.073   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 016:410.450   Data:  04
T17D34 016:410.467 - 0.410ms returns 1 (0x1)
T17D34 016:410.499 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 016:410.514   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 016:410.903   Data:  00 00 00 00
T17D34 016:410.920 - 0.425ms returns 4 (0x4)
T17D34 016:411.575 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 016:411.594   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 016:412.022   Data:  04 00 00 00
T17D34 016:412.037 - 0.466ms returns 4 (0x4)
T17D34 016:412.054 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 016:412.066   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 016:412.442   Data:  00 00 00 00
T17D34 016:412.456 - 0.405ms returns 4 (0x4)
T17D34 016:412.475 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 016:412.486   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 016:412.863   Data:  02 03 CA DE
T17D34 016:412.877 - 0.405ms returns 4 (0x4)
T17D34 016:412.893 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 016:412.904   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 016:413.281   Data:  07 00 80 03
T17D34 016:413.295 - 0.406ms returns 4 (0x4)
T17D34 016:413.314 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 016:413.325   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 016:414.039   Data:  03 00 00 0A 3A 40 00 00 00 22 00 9C 31 19 FF 00 ...
T17D34 016:414.052 - 0.742ms returns 32 (0x20)
T17D34 016:414.896 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 016:414.919   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 016:415.373   Data:  FF 22 D5 0B 0C EC F2 BF
T17D34 016:415.390 - 0.498ms returns 8 (0x8)
T17D34 016:415.625 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 016:415.643   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 016:416.018   Data:  00
T17D34 016:416.032 - 0.411ms returns 1 (0x1)
T17D34 016:417.042 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 016:417.061   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 016:417.723   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 016:417.738 - 0.700ms returns 32 (0x20)
T17D34 016:417.753 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 016:417.765   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 016:418.136   Data:  00
T17D34 016:418.150 - 0.400ms returns 1 (0x1)
T74F0 016:418.226 JLINK_IsHalted()
T74F0 016:419.178 - 0.962ms returns FALSE
T74F0 016:519.337 JLINK_HasError()
T74F0 016:519.371 JLINK_IsHalted()
T74F0 016:519.826 - 0.462ms returns FALSE
T74F0 016:620.361 JLINK_HasError()
T74F0 016:620.396 JLINK_IsHalted()
T74F0 016:620.784 - 0.395ms returns FALSE
T74F0 016:721.382 JLINK_HasError()
T74F0 016:721.410 JLINK_IsHalted()
T74F0 016:721.792 - 0.387ms returns FALSE
T74F0 016:822.407 JLINK_HasError()
T74F0 016:822.440 JLINK_IsHalted()
T74F0 016:822.827 - 0.393ms returns FALSE
T74F0 016:923.430 JLINK_HasError()
T74F0 016:923.464 JLINK_HasError()
T17D34 016:923.569 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 016:923.602   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 016:924.420   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 016:924.437 - 0.873ms returns 25 (0x19)
T17D34 016:924.459 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 016:924.473   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 016:924.859   Data:  01
T17D34 016:924.874 - 0.419ms returns 1 (0x1)
T17D34 016:924.906 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 016:924.918   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 016:925.322   Data:  01
T17D34 016:925.336 - 0.433ms returns 1 (0x1)
T17D34 016:925.355 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 016:925.367   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 016:926.160   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 016:926.175 - 0.824ms returns 25 (0x19)
T17D34 016:926.191 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 016:926.202   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 016:926.574   Data:  04
T17D34 016:926.591 - 0.405ms returns 1 (0x1)
T17D34 016:926.623 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 016:926.637   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 016:927.021   Data:  00 00 00 00
T17D34 016:927.038 - 0.419ms returns 4 (0x4)
T17D34 016:927.647 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 016:927.666   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 016:928.049   Data:  04 00 00 00
T17D34 016:928.064 - 0.421ms returns 4 (0x4)
T17D34 016:928.082 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 016:928.093   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 016:928.469   Data:  00 00 00 00
T17D34 016:928.483 - 0.405ms returns 4 (0x4)
T17D34 016:928.504 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 016:928.516   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 016:928.895   Data:  02 03 CA DE
T17D34 016:928.908 - 0.408ms returns 4 (0x4)
T17D34 016:928.925 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 016:928.936   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 016:929.331   Data:  07 00 80 03
T17D34 016:929.345 - 0.424ms returns 4 (0x4)
T17D34 016:929.364 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 016:929.375   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 016:930.039   Data:  03 00 00 0A 3A 40 00 00 00 22 00 9C 31 19 FF 00 ...
T17D34 016:930.053 - 0.693ms returns 32 (0x20)
T17D34 016:930.914 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 016:930.936   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 016:931.371   Data:  FF 22 D5 0B 0C EC F2 BF
T17D34 016:931.388 - 0.479ms returns 8 (0x8)
T17D34 016:931.626 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 016:931.644   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 016:932.019   Data:  00
T17D34 016:932.033 - 0.411ms returns 1 (0x1)
T17D34 016:933.038 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 016:933.057   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 016:933.721   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 016:933.735 - 0.701ms returns 32 (0x20)
T17D34 016:933.750 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 016:933.762   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 016:934.136   Data:  00
T17D34 016:934.149 - 0.403ms returns 1 (0x1)
T74F0 016:934.189 JLINK_IsHalted()
T74F0 016:934.564 - 0.383ms returns FALSE
T74F0 017:035.455 JLINK_HasError()
T74F0 017:035.490 JLINK_IsHalted()
T74F0 017:035.880 - 0.400ms returns FALSE
T74F0 017:136.479 JLINK_HasError()
T74F0 017:136.516 JLINK_IsHalted()
T74F0 017:136.983 - 0.476ms returns FALSE
T74F0 017:237.509 JLINK_HasError()
T74F0 017:237.545 JLINK_IsHalted()
T74F0 017:237.926 - 0.389ms returns FALSE
T74F0 017:338.524 JLINK_HasError()
T74F0 017:338.557 JLINK_IsHalted()
T74F0 017:338.936 - 0.386ms returns FALSE
T74F0 017:439.545 JLINK_HasError()
T74F0 017:439.577 JLINK_HasError()
T17D34 017:439.644 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 017:439.678   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 017:440.495   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 017:440.512 - 0.873ms returns 25 (0x19)
T17D34 017:440.535 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 017:440.550   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 017:440.932   Data:  01
T17D34 017:440.951 - 0.421ms returns 1 (0x1)
T17D34 017:440.985 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 017:441.000   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 017:441.384   Data:  01
T17D34 017:441.401 - 0.421ms returns 1 (0x1)
T17D34 017:441.424 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 017:441.438   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 017:442.343   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 017:442.360 - 0.941ms returns 25 (0x19)
T17D34 017:442.378 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 017:442.392   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 017:442.769   Data:  04
T17D34 017:442.784 - 0.409ms returns 1 (0x1)
T17D34 017:442.810 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 017:442.822   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 017:443.198   Data:  00 00 00 00
T17D34 017:443.212 - 0.405ms returns 4 (0x4)
T17D34 017:443.827 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 017:443.847   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 017:444.227   Data:  04 00 00 00
T17D34 017:444.242 - 0.418ms returns 4 (0x4)
T17D34 017:444.259 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 017:444.271   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 017:444.650   Data:  00 00 00 00
T17D34 017:444.665 - 0.410ms returns 4 (0x4)
T17D34 017:444.686 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 017:444.698   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 017:445.081   Data:  02 03 CA DE
T17D34 017:445.095 - 0.412ms returns 4 (0x4)
T17D34 017:445.111 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 017:445.122   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 017:445.497   Data:  07 00 80 03
T17D34 017:445.511 - 0.404ms returns 4 (0x4)
T17D34 017:445.529 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 017:445.541   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 017:446.194   Data:  03 00 00 0B 3A 40 00 00 00 22 00 F0 39 19 FF 00 ...
T17D34 017:446.208 - 0.683ms returns 32 (0x20)
T17D34 017:447.115 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 017:447.138   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 017:447.569   Data:  DF 3C BD 46 5C C4 F1 BF
T17D34 017:447.583 - 0.472ms returns 8 (0x8)
T17D34 017:447.811 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 017:447.829   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 017:448.201   Data:  00
T17D34 017:448.216 - 0.409ms returns 1 (0x1)
T17D34 017:449.228 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 017:449.247   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 017:449.905   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 017:449.919 - 0.695ms returns 32 (0x20)
T17D34 017:449.935 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 017:449.946   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 017:450.328   Data:  00
T17D34 017:450.342 - 0.411ms returns 1 (0x1)
T74F0 017:450.380 JLINK_IsHalted()
T74F0 017:450.750 - 0.376ms returns FALSE
T74F0 017:551.592 JLINK_HasError()
T74F0 017:551.624 JLINK_IsHalted()
T74F0 017:552.023 - 0.408ms returns FALSE
T74F0 017:652.593 JLINK_HasError()
T74F0 017:652.632 JLINK_IsHalted()
T74F0 017:653.022 - 0.397ms returns FALSE
T74F0 017:753.617 JLINK_HasError()
T74F0 017:753.652 JLINK_IsHalted()
T74F0 017:754.040 - 0.396ms returns FALSE
T74F0 017:854.641 JLINK_HasError()
T74F0 017:854.680 JLINK_IsHalted()
T74F0 017:855.068 - 0.396ms returns FALSE
T74F0 017:955.663 JLINK_HasError()
T74F0 017:955.699 JLINK_HasError()
T17D34 017:955.756 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 017:955.787   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 017:956.600   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 017:956.619 - 0.868ms returns 25 (0x19)
T17D34 017:956.639 JLINK_ReadMemEx(0x2000003C, 0x1 Bytes, Flags = 0x02000000)
T17D34 017:956.656   CPU_ReadMem(1 bytes @ 0x2000003C)
T17D34 017:957.036   Data:  01
T17D34 017:957.053 - 0.419ms returns 1 (0x1)
T17D34 017:957.086 JLINK_ReadMemEx(0x20000044, 0x1 Bytes, Flags = 0x02000000)
T17D34 017:957.100   CPU_ReadMem(1 bytes @ 0x20000044)
T17D34 017:957.487   Data:  01
T17D34 017:957.505 - 0.424ms returns 1 (0x1)
T17D34 017:957.528 JLINK_ReadMemEx(0x20001378, 0x19 Bytes, Flags = 0x02000000)
T17D34 017:957.542   CPU_ReadMem(25 bytes @ 0x20001378)
T17D34 017:958.330   Data:  04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 017:958.349 - 0.826ms returns 25 (0x19)
T17D34 017:958.369 JLINK_ReadMemEx(0x20001378, 0x1 Bytes, Flags = 0x02000000)
T17D34 017:958.383   CPU_ReadMem(1 bytes @ 0x20001378)
T17D34 017:958.763   Data:  04
T17D34 017:958.778 - 0.414ms returns 1 (0x1)
T17D34 017:958.807 JLINK_ReadMemEx(0x20001254, 0x4 Bytes, Flags = 0x02000000)
T17D34 017:958.819   CPU_ReadMem(4 bytes @ 0x20001254)
T17D34 017:959.198   Data:  00 00 00 00
T17D34 017:959.213 - 0.410ms returns 4 (0x4)
T17D34 017:959.810 JLINK_ReadMemEx(0x20001314, 0x4 Bytes, Flags = 0x02000000)
T17D34 017:959.829   CPU_ReadMem(4 bytes @ 0x20001314)
T17D34 017:960.216   Data:  04 00 00 00
T17D34 017:960.231 - 0.426ms returns 4 (0x4)
T17D34 017:960.249 JLINK_ReadMemEx(0x20000064, 0x4 Bytes, Flags = 0x02000000)
T17D34 017:960.261   CPU_ReadMem(4 bytes @ 0x20000064)
T17D34 017:960.640   Data:  00 00 00 00
T17D34 017:960.655 - 0.410ms returns 4 (0x4)
T17D34 017:960.675 JLINK_ReadMemEx(0x20000078, 0x4 Bytes, Flags = 0x02000000)
T17D34 017:960.688   CPU_ReadMem(4 bytes @ 0x20000078)
T17D34 017:961.065   Data:  02 03 CA DE
T17D34 017:961.080 - 0.408ms returns 4 (0x4)
T17D34 017:961.096 JLINK_ReadMemEx(0x20000060, 0x4 Bytes, Flags = 0x02000000)
T17D34 017:961.108   CPU_ReadMem(4 bytes @ 0x20000060)
T17D34 017:961.482   Data:  07 00 80 03
T17D34 017:961.496 - 0.404ms returns 4 (0x4)
T17D34 017:961.516 JLINK_ReadMemEx(0x20001134, 0x20 Bytes, Flags = 0x02000000)
T17D34 017:961.527   CPU_ReadMem(32 bytes @ 0x20001134)
T17D34 017:962.179   Data:  03 00 00 0B 3A 40 00 00 00 22 00 F0 39 19 FF 00 ...
T17D34 017:962.194 - 0.682ms returns 32 (0x20)
T17D34 017:962.985 JLINK_ReadMemEx(0x20000098, 0x8 Bytes, Flags = 0x02000000)
T17D34 017:963.004   CPU_ReadMem(8 bytes @ 0x20000098)
T17D34 017:963.437   Data:  DF 3C BD 46 5C C4 F1 BF
T17D34 017:963.452 - 0.471ms returns 8 (0x8)
T17D34 017:963.697 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 017:963.716   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 017:964.095   Data:  00
T17D34 017:964.109 - 0.417ms returns 1 (0x1)
T17D34 017:965.120 JLINK_ReadMemEx(0x20000DA0, 0x20 Bytes, Flags = 0x02000000)
T17D34 017:965.139   CPU_ReadMem(32 bytes @ 0x20000DA0)
T17D34 017:965.792   Data:  FE 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
T17D34 017:965.808 - 0.692ms returns 32 (0x20)
T17D34 017:965.823 JLINK_ReadMemEx(0x2000003E, 0x1 Bytes, Flags = 0x02000000)
T17D34 017:965.835   CPU_ReadMem(1 bytes @ 0x2000003E)
T17D34 017:966.206   Data:  00
T17D34 017:966.220 - 0.401ms returns 1 (0x1)
T74F0 017:966.256 JLINK_IsHalted()
T74F0 017:966.624 - 0.375ms returns FALSE
T74F0 018:066.688 JLINK_HasError()
T74F0 018:066.719 JLINK_IsHalted()
T74F0 018:067.100 - 0.393ms returns FALSE
T74F0 018:167.707 JLINK_HasError()
T74F0 018:167.740 JLINK_IsHalted()
T74F0 018:168.122 - 0.389ms returns FALSE
T74F0 018:268.761 JLINK_HasError()
T74F0 018:268.795 JLINK_IsHalted()
T74F0 018:269.181 - 0.393ms returns FALSE
T74F0 018:369.755 JLINK_HasError()
T74F0 018:369.792 JLINK_Halt()
T74F0 018:372.839 - 3.056ms returns 0x00
T74F0 018:372.857 JLINK_IsHalted()
T74F0 018:372.867 - 0.015ms returns TRUE
T74F0 018:372.880 JLINK_IsHalted()
T74F0 018:372.889 - 0.014ms returns TRUE
T74F0 018:372.901 JLINK_IsHalted()
T74F0 018:372.911 - 0.014ms returns TRUE
T74F0 018:372.924 JLINK_HasError()
T74F0 018:372.936 JLINK_ReadReg(R15 (PC))
T74F0 018:372.949 - 0.018ms returns 0x08007F60
T74F0 018:372.961 JLINK_ReadReg(XPSR)
T74F0 018:372.972 - 0.015ms returns 0x61000000
T74F0 018:372.986 JLINK_HasError()
T74F0 018:372.998 JLINK_HasError()
T74F0 018:373.010 JLINK_ReadMemU32(0xE000ED30, 0x1 Items)
T74F0 018:373.027   CPU_ReadMem(4 bytes @ 0xE000ED30)
T74F0 018:373.421   Data:  01 00 00 00
T74F0 018:373.438 - 0.433ms returns 1 (0x1)
T74F0 018:373.452 JLINK_ReadMemU32(0xE0001028, 0x1 Items)
T74F0 018:373.464   CPU_ReadMem(4 bytes @ 0xE0001028)
T74F0 018:373.846   Data:  00 00 00 00
T74F0 018:373.862   Debug reg: DWT_FUNC[0]
T74F0 018:373.877 - 0.430ms returns 1 (0x1)
T74F0 018:373.890 JLINK_ReadMemU32(0xE0001038, 0x1 Items)
T74F0 018:373.902   CPU_ReadMem(4 bytes @ 0xE0001038)
T74F0 018:374.279   Data:  00 00 00 00
T74F0 018:374.292   Debug reg: DWT_FUNC[1]
T74F0 018:374.304 - 0.418ms returns 1 (0x1)
T17D34 018:968.714 JLINK_HasError()
T17D34 018:974.996 JLINK_Close()
T17D34 018:975.260   OnDisconnectTarget() start
T17D34 018:975.281    J-Link Script File: Executing OnDisconnectTarget()
T17D34 018:975.297   CPU_WriteMem(4 bytes @ 0x40015804)
T17D34 018:975.715   CPU_WriteMem(4 bytes @ 0x40015808)
T17D34 018:976.125   CPU_ReadMem(4 bytes @ 0x40021018)
T17D34 018:976.508   CPU_WriteMem(4 bytes @ 0x40021018)
T17D34 018:976.918   OnDisconnectTarget() end
T17D34 018:976.934   CPU_ReadMem(4 bytes @ 0xE0001000)
T17D34 018:977.324   CPU_WriteMem(4 bytes @ 0xE0001000)
T17D34 018:993.937 - 18.964ms
T17D34 018:993.967   
T17D34 018:993.976   Closed