WXK
2 天以前 8f93a6b7f22f270e52e18a9b414e97117f1ff232
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
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
 
T9028 000:086 SEGGER J-Link V6.30d Log File (0001ms, 0045ms total)
T9028 000:086 DLL Compiled: Feb 16 2018 13:30:32 (0001ms, 0045ms total)
T9028 000:086 Logging started @ 2025-05-22 16:39 (0001ms, 0045ms total)
T9028 000:087 JLINK_SetWarnOutHandler(...) (0000ms, 0045ms total)
T9028 000:087 JLINK_OpenEx(...)
Firmware: J-Link ARM-OB STM32 compiled Aug 22 2012 19:52:04
Hardware: V7.00
S/N: 20090928
Feature(s): RDI,FlashDL,FlashBP,JFlash,GDB
TELNET listener socket opened on port 19021WEBSRV 
Starting webserver (0035ms, 0080ms total)
T9028 000:087 WEBSRV Webserver running on local port 19080 (0035ms, 0080ms total)
T9028 000:087   returns O.K. (0035ms, 0080ms total)
T9028 000:122 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0080ms total)
T9028 000:122 JLINK_TIF_GetAvailable(...) (0000ms, 0080ms total)
T9028 000:122 JLINK_SetErrorOutHandler(...) (0000ms, 0080ms total)
T9028 000:122 JLINK_ExecCommand("ProjectFile = "C:\git-mk8000\ChinaUWBProject - 4G - OTA\keil\JLinkSettings.ini"", ...). C:\Keil_v5\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0094ms, 0174ms total)
T9028 000:216 JLINK_ExecCommand("Device = MK8000", ...). Device "MK8000" selected.  returns 0x00 (0005ms, 0179ms total)
T9028 000:221 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0179ms total)
T9028 000:221 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0179ms total)
T9028 000:221 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0179ms total)
T9028 000:221 JLINK_GetFirmwareString(...) (0000ms, 0179ms total)
T9028 000:221 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0179ms total)
T9028 000:221 JLINK_GetCompileDateTime() (0000ms, 0179ms total)
T9028 000:221 JLINK_GetFirmwareString(...) (0000ms, 0179ms total)
T9028 000:221 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0179ms total)
T9028 000:221 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0001ms, 0180ms total)
T9028 000:222 JLINK_SetSpeed(10000) (0001ms, 0181ms total)
T9028 000:223 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BB11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x04770021)Iterating through AP map to find AHB-AP to use
 >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC200. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p0, Little endian. -- CPU_ReadMem(4 bytes @ 0xE000EDF0)
 -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS
 -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB >0x0D TIF> >0x21 TIF>  returns 0x0BB11477 (0133ms, 0314ms total)
T9028 000:356 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0314ms total)
T9028 000:356 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0314ms total)
T9028 000:356 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0314ms total)
T9028 000:356 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0314ms total)
T9028 000:356 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0314ms total)
T9028 000:356 JLINK_ReadMemEx(0xE0041FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0041FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 0315ms total)
T9028 000:357 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0315ms total)
T9028 000:357 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0315ms total)
T9028 000:357 JLINK_ReadMemEx(0xE0040FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0040FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 0316ms total)
T9028 000:358 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0316ms total)
T9028 000:358 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0316ms total)
T9028 000:358 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0316ms total)
T9028 000:358 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 0316ms total)
T9028 000:358 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0316ms total)
T9028 000:358 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 0316ms total)
T9028 000:358 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41  returns 0x01 (0001ms, 0317ms total)
T9028 000:359 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0317ms total)
T9028 000:359 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0317ms total)
T9028 000:359 JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)
 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0070ms, 0387ms total)
T9028 000:429 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0387ms total)
T9028 000:429 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0387ms total)
T9028 000:429 JLINK_Halt()  returns 0x00 (0000ms, 0387ms total)
T9028 000:429 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 0x01 (0001ms, 0388ms total)
T9028 000:430 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0001ms, 0389ms total)
T9028 000:431 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0000ms, 0389ms total)
T9028 000:431 JLINK_GetHWStatus(...)  returns 0x00 (0001ms, 0390ms total)
T9028 000:432 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0390ms total)
T9028 000:432 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0390ms total)
T9028 000:432 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0390ms total)
T9028 000:432 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0390ms total)
T9028 000:432 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0000ms, 0390ms total)
T9028 000:432 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0001ms, 0391ms total)
T9028 000:433 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0391ms total)
T9028 000:535 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0391ms total)
T9028 000:535 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0070ms, 0461ms total)
T9028 000:605 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0461ms total)
T9028 000:605 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0461ms total)
T9028 000:605 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0002ms, 0463ms total)
T9028 000:607 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0000ms, 0463ms total)
T9028 000:607 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0464ms total)
T9028 000:608 JLINK_ReadMemEx(0x0300373C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0300373C) - Data: FC F7 C0 FC 80 B5 0D 49 08 68 00 28 00 D4 80 BD ...  returns 0x3C (0002ms, 0466ms total)
T9028 000:610 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0000ms, 0466ms total)
T9028 000:610 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0467ms total)
T9028 000:611 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0001ms, 0468ms total)
T9028 000:612 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 0469ms total)
T9028 000:613 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0000ms, 0469ms total)
T9028 000:614 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0000ms, 0469ms total)
T9028 000:614 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0001ms, 0470ms total)
T9028 000:615 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0471ms total)
T9028 000:616 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0001ms, 0472ms total)
T9028 000:617 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0473ms total)
T9028 000:618 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0000ms, 0473ms total)
T9028 002:639 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0474ms total)
T9028 002:640 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0475ms total)
T9028 002:641 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0476ms total)
T9028 002:642 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0477ms total)
T9028 002:643 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0478ms total)
T9028 002:644 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0000ms, 0478ms total)
T9028 003:036 JLINK_ReadReg(R0)  returns 0x0000183E (0000ms, 0478ms total)
T9028 003:036 JLINK_ReadReg(R1)  returns 0x80000000 (0000ms, 0478ms total)
T9028 003:036 JLINK_ReadReg(R2)  returns 0x5000B000 (0000ms, 0478ms total)
T9028 003:036 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 0478ms total)
T9028 003:036 JLINK_ReadReg(R4)  returns 0x000007CD (0000ms, 0478ms total)
T9028 003:036 JLINK_ReadReg(R5)  returns 0x000000CD (0000ms, 0478ms total)
T9028 003:036 JLINK_ReadReg(R6)  returns 0x02F6FBB5 (0000ms, 0478ms total)
T9028 003:036 JLINK_ReadReg(R7)  returns 0x0304BCF2 (0000ms, 0478ms total)
T9028 003:036 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0478ms total)
T9028 003:036 JLINK_ReadReg(R9)  returns 0x0202329C (0001ms, 0479ms total)
T9028 003:037 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0479ms total)
T9028 003:037 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0479ms total)
T9028 003:037 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0479ms total)
T9028 003:037 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0479ms total)
T9028 003:037 JLINK_ReadReg(R14)  returns 0x0000B223 (0000ms, 0479ms total)
T9028 003:037 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0479ms total)
T9028 003:037 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0479ms total)
T9028 003:037 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0479ms total)
T9028 003:037 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0479ms total)
T9028 003:037 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0479ms total)
T9028 003:037 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x280 (0007ms, 0486ms total)
T9028 003:048 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x280 (0008ms, 0494ms total)
T9028 003:057 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x280 (0007ms, 0501ms total)
T9028 003:419 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 00  returns 0x01 (0001ms, 0502ms total)
T9028 003:420 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 00  returns 0x01 (0001ms, 0503ms total)
T9028 003:421 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 00  returns 0x01 (0000ms, 0503ms total)
T9028 003:427 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0504ms total)
T9028 003:428 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0505ms total)
T9028 003:429 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 0505ms total)
T9028 003:435 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0506ms total)
T9028 003:437 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0506ms total)
T9028 003:437 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0507ms total)
T9028 003:438 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0508ms total)
T9028 003:486 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x280 (0007ms, 0515ms total)
T9028 003:497 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x280 (0007ms, 0522ms total)
TB4F0 003:537 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0523ms total)
TB4F0 003:538 JLINK_SetBPEx(Addr = 0x0000CB5C, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0523ms total)
TB4F0 003:538 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0005ms, 0528ms total)
TB4F0 003:645 JLINK_IsHalted()  returns TRUE (0003ms, 0531ms total)
TB4F0 003:648 JLINK_Halt()  returns 0x00 (0000ms, 0528ms total)
TB4F0 003:648 JLINK_IsHalted()  returns TRUE (0000ms, 0528ms total)
TB4F0 003:648 JLINK_IsHalted()  returns TRUE (0000ms, 0528ms total)
TB4F0 003:648 JLINK_IsHalted()  returns TRUE (0000ms, 0528ms total)
TB4F0 003:648 JLINK_ReadReg(R15 (PC))  returns 0x0000CB5C (0000ms, 0528ms total)
TB4F0 003:648 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0528ms total)
TB4F0 003:648 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0528ms total)
TB4F0 003:648 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0529ms total)
TB4F0 003:649 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0530ms total)
TB4F0 003:650 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 0530ms total)
TB4F0 003:650 JLINK_ReadReg(R0)  returns 0x0000CB5D (0000ms, 0530ms total)
TB4F0 003:650 JLINK_ReadReg(R1)  returns 0x0202586C (0000ms, 0530ms total)
TB4F0 003:650 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0530ms total)
TB4F0 003:650 JLINK_ReadReg(R3)  returns 0x000114B9 (0000ms, 0530ms total)
TB4F0 003:650 JLINK_ReadReg(R4)  returns 0x00014828 (0000ms, 0530ms total)
TB4F0 003:650 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0530ms total)
TB4F0 003:650 JLINK_ReadReg(R6)  returns 0x00014828 (0000ms, 0530ms total)
TB4F0 003:650 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0530ms total)
TB4F0 003:650 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0530ms total)
TB4F0 003:650 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0530ms total)
TB4F0 003:650 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0530ms total)
TB4F0 003:650 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0530ms total)
TB4F0 003:650 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0530ms total)
TB4F0 003:651 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0531ms total)
TB4F0 003:651 JLINK_ReadReg(R14)  returns 0x00000BD1 (0000ms, 0531ms total)
TB4F0 003:651 JLINK_ReadReg(R15 (PC))  returns 0x0000CB5C (0000ms, 0531ms total)
TB4F0 003:651 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0531ms total)
TB4F0 003:651 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0531ms total)
TB4F0 003:651 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0531ms total)
TB4F0 003:651 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0531ms total)
T9028 003:652 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 00  returns 0x01 (0000ms, 0531ms total)
T9028 003:652 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: 00 00  returns 0x02 (0001ms, 0532ms total)
T9028 003:653 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0533ms total)
T9028 003:654 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0534ms total)
T9028 003:655 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0535ms total)
T9028 003:658 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x280 (0007ms, 0542ms total)
T9028 003:665 JLINK_ReadMemEx(0x0000CB5C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0000CB40) -- Updating C cache (128 bytes @ 0x0000CB40) -- Read from C cache (60 bytes @ 0x0000CB5C) - Data: 82 B0 62 B6 FC F7 1A FE 05 20 00 24 21 46 FF F7 ...  returns 0x3C (0002ms, 0544ms total)
T9028 003:667 JLINK_ReadMemEx(0x0000CB5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CB5C) - Data: 82 B0  returns 0x02 (0000ms, 0544ms total)
T9028 003:667 JLINK_ReadMemEx(0x0000CB5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CB5E) - Data: 62 B6  returns 0x02 (0000ms, 0544ms total)
T9028 003:667 JLINK_ReadMemEx(0x0000CB5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CB5E) - Data: 62 B6  returns 0x02 (0000ms, 0544ms total)
T9028 003:667 JLINK_ReadMemEx(0x0000CB60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000CB60) - Data: FC F7 1A FE 05 20 00 24 21 46 FF F7 77 F8 06 20 ...  returns 0x3C (0000ms, 0544ms total)
T9028 003:667 JLINK_ReadMemEx(0x0000CB60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CB60) - Data: FC F7  returns 0x02 (0000ms, 0544ms total)
TB4F0 004:367 JLINK_ReadMemEx(0x0000CB5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000CB5C) - Data: 82 B0  returns 0x02 (0000ms, 0544ms total)
TB4F0 004:367 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0003ms, 0547ms total)
TB4F0 004:472 JLINK_IsHalted()  returns FALSE (0000ms, 0547ms total)
TB4F0 004:573 JLINK_IsHalted()  returns FALSE (0000ms, 0547ms total)
TB4F0 004:674 JLINK_IsHalted()  returns FALSE (0000ms, 0547ms total)
TB4F0 004:776 JLINK_IsHalted()  returns FALSE (0000ms, 0547ms total)
T9028 004:877 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0554ms total)
T9028 004:884 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 00  returns 0x01 (0001ms, 0555ms total)
T9028 004:885 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0556ms total)
T9028 004:886 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0557ms total)
T9028 004:887 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0558ms total)
T9028 004:888 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0559ms total)
TB4F0 004:889 JLINK_IsHalted()  returns FALSE (0001ms, 0560ms total)
TB4F0 004:991 JLINK_IsHalted()  returns FALSE (0000ms, 0559ms total)
TB4F0 005:092 JLINK_IsHalted()  returns FALSE (0000ms, 0559ms total)
TB4F0 005:193 JLINK_IsHalted()  returns FALSE (0000ms, 0559ms total)
TB4F0 005:294 JLINK_IsHalted()  returns FALSE (0000ms, 0559ms total)
T9028 005:396 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0566ms total)
T9028 005:404 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 00  returns 0x01 (0000ms, 0566ms total)
T9028 005:404 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0567ms total)
T9028 005:405 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0568ms total)
T9028 005:406 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0569ms total)
T9028 005:407 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0570ms total)
TB4F0 005:408 JLINK_IsHalted()  returns FALSE (0001ms, 0571ms total)
TB4F0 005:510 JLINK_IsHalted()  returns FALSE (0000ms, 0570ms total)
TB4F0 005:611 JLINK_IsHalted()  returns FALSE (0000ms, 0570ms total)
TB4F0 005:713 JLINK_IsHalted()  returns FALSE (0000ms, 0570ms total)
TB4F0 005:814 JLINK_IsHalted()  returns FALSE (0000ms, 0570ms total)
T9028 005:915 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0577ms total)
T9028 005:922 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 00  returns 0x01 (0001ms, 0578ms total)
T9028 005:923 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0579ms total)
T9028 005:924 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0580ms total)
T9028 005:925 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0580ms total)
T9028 005:926 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0581ms total)
TB4F0 005:927 JLINK_IsHalted()  returns FALSE (0000ms, 0581ms total)
TB4F0 006:028 JLINK_IsHalted()  returns FALSE (0000ms, 0581ms total)
TB4F0 006:129 JLINK_IsHalted()  returns FALSE (0000ms, 0581ms total)
TB4F0 006:230 JLINK_IsHalted()  returns FALSE (0000ms, 0581ms total)
TB4F0 006:331 JLINK_IsHalted()  returns FALSE (0000ms, 0581ms total)
T9028 006:433 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0588ms total)
T9028 006:440 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 00  returns 0x01 (0001ms, 0589ms total)
T9028 006:441 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0590ms total)
T9028 006:442 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0591ms total)
T9028 006:443 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0592ms total)
T9028 006:444 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0593ms total)
TB4F0 006:445 JLINK_IsHalted()  returns FALSE (0001ms, 0594ms total)
TB4F0 006:546 JLINK_IsHalted()  returns FALSE (0000ms, 0593ms total)
TB4F0 006:647 JLINK_IsHalted()  returns FALSE (0000ms, 0593ms total)
TB4F0 006:749 JLINK_IsHalted()  returns FALSE (0000ms, 0593ms total)
TB4F0 006:850 JLINK_IsHalted()  returns FALSE (0000ms, 0593ms total)
T9028 006:951 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0600ms total)
T9028 006:958 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 05  returns 0x01 (0001ms, 0601ms total)
T9028 006:959 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0602ms total)
T9028 006:960 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0603ms total)
T9028 006:961 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0604ms total)
T9028 006:962 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0605ms total)
TB4F0 006:963 JLINK_IsHalted()  returns FALSE (0001ms, 0606ms total)
TB4F0 007:065 JLINK_IsHalted()  returns FALSE (0000ms, 0605ms total)
TB4F0 007:166 JLINK_IsHalted()  returns FALSE (0000ms, 0605ms total)
TB4F0 007:267 JLINK_IsHalted()  returns FALSE (0000ms, 0605ms total)
TB4F0 007:368 JLINK_IsHalted()  returns FALSE (0000ms, 0605ms total)
T9028 007:469 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0612ms total)
T9028 007:477 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 0E  returns 0x01 (0000ms, 0612ms total)
T9028 007:477 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0613ms total)
T9028 007:478 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0614ms total)
T9028 007:479 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0615ms total)
T9028 007:480 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0616ms total)
TB4F0 007:481 JLINK_IsHalted()  returns FALSE (0001ms, 0617ms total)
TB4F0 007:584 JLINK_IsHalted()  returns FALSE (0000ms, 0616ms total)
TB4F0 007:685 JLINK_IsHalted()  returns FALSE (0000ms, 0616ms total)
TB4F0 007:786 JLINK_IsHalted()  returns FALSE (0000ms, 0616ms total)
TB4F0 007:887 JLINK_IsHalted()  returns FALSE (0000ms, 0616ms total)
T9028 007:989 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0623ms total)
T9028 007:996 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 0F  returns 0x01 (0001ms, 0624ms total)
T9028 007:997 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0625ms total)
T9028 007:998 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0626ms total)
T9028 007:999 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0627ms total)
T9028 008:000 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0628ms total)
TB4F0 008:001 JLINK_IsHalted()  returns FALSE (0001ms, 0629ms total)
TB4F0 008:103 JLINK_IsHalted()  returns FALSE (0000ms, 0628ms total)
TB4F0 008:204 JLINK_IsHalted()  returns FALSE (0000ms, 0628ms total)
TB4F0 008:305 JLINK_IsHalted()  returns FALSE (0000ms, 0628ms total)
TB4F0 008:407 JLINK_IsHalted()  returns FALSE (0000ms, 0628ms total)
T9028 008:508 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0635ms total)
T9028 008:515 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 10  returns 0x01 (0001ms, 0636ms total)
T9028 008:516 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0637ms total)
T9028 008:517 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0638ms total)
T9028 008:518 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0638ms total)
T9028 008:519 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0639ms total)
TB4F0 008:520 JLINK_IsHalted()  returns FALSE (0001ms, 0640ms total)
TB4F0 008:621 JLINK_IsHalted()  returns FALSE (0000ms, 0639ms total)
TB4F0 008:723 JLINK_IsHalted()  returns FALSE (0000ms, 0639ms total)
TB4F0 008:824 JLINK_IsHalted()  returns FALSE (0000ms, 0639ms total)
TB4F0 008:925 JLINK_IsHalted()  returns FALSE (0000ms, 0639ms total)
T9028 009:027 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0646ms total)
T9028 009:034 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 11  returns 0x01 (0001ms, 0647ms total)
T9028 009:035 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0648ms total)
T9028 009:036 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0649ms total)
T9028 009:037 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0650ms total)
T9028 009:038 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0651ms total)
TB4F0 009:039 JLINK_IsHalted()  returns FALSE (0001ms, 0652ms total)
TB4F0 009:141 JLINK_IsHalted()  returns FALSE (0000ms, 0651ms total)
TB4F0 009:242 JLINK_IsHalted()  returns FALSE (0000ms, 0651ms total)
TB4F0 009:343 JLINK_IsHalted()  returns FALSE (0000ms, 0651ms total)
TB4F0 009:444 JLINK_IsHalted()  returns FALSE (0000ms, 0651ms total)
T9028 009:545 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0658ms total)
T9028 009:552 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 11  returns 0x01 (0001ms, 0659ms total)
T9028 009:553 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0660ms total)
T9028 009:554 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0661ms total)
T9028 009:555 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0662ms total)
T9028 009:556 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0663ms total)
TB4F0 009:557 JLINK_IsHalted()  returns FALSE (0001ms, 0664ms total)
TB4F0 009:659 JLINK_IsHalted()  returns FALSE (0000ms, 0663ms total)
TB4F0 009:760 JLINK_IsHalted()  returns FALSE (0000ms, 0663ms total)
TB4F0 009:861 JLINK_IsHalted()  returns FALSE (0000ms, 0663ms total)
TB4F0 009:963 JLINK_IsHalted()  returns FALSE (0000ms, 0663ms total)
T9028 010:064 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0670ms total)
T9028 010:071 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 11  returns 0x01 (0001ms, 0671ms total)
T9028 010:072 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0672ms total)
T9028 010:073 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0673ms total)
T9028 010:074 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0674ms total)
T9028 010:075 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0675ms total)
TB4F0 010:076 JLINK_IsHalted()  returns FALSE (0001ms, 0676ms total)
TB4F0 010:178 JLINK_IsHalted()  returns FALSE (0000ms, 0675ms total)
TB4F0 010:279 JLINK_IsHalted()  returns FALSE (0000ms, 0675ms total)
TB4F0 010:381 JLINK_IsHalted()  returns FALSE (0000ms, 0675ms total)
TB4F0 010:482 JLINK_IsHalted()  returns FALSE (0000ms, 0675ms total)
T9028 010:583 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0682ms total)
T9028 010:591 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 11  returns 0x01 (0000ms, 0682ms total)
T9028 010:591 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0683ms total)
T9028 010:592 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0684ms total)
T9028 010:593 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0685ms total)
T9028 010:594 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0686ms total)
TB4F0 010:595 JLINK_IsHalted()  returns FALSE (0001ms, 0687ms total)
TB4F0 010:697 JLINK_IsHalted()  returns FALSE (0000ms, 0686ms total)
TB4F0 010:799 JLINK_IsHalted()  returns FALSE (0000ms, 0686ms total)
TB4F0 010:900 JLINK_IsHalted()  returns FALSE (0000ms, 0686ms total)
TB4F0 011:001 JLINK_IsHalted()  returns FALSE (0000ms, 0686ms total)
T9028 011:103 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0693ms total)
T9028 011:110 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 11  returns 0x01 (0001ms, 0694ms total)
T9028 011:111 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0695ms total)
T9028 011:112 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0696ms total)
T9028 011:113 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0697ms total)
T9028 011:114 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0698ms total)
TB4F0 011:115 JLINK_IsHalted()  returns FALSE (0001ms, 0699ms total)
TB4F0 011:217 JLINK_IsHalted()  returns FALSE (0000ms, 0698ms total)
TB4F0 011:318 JLINK_IsHalted()  returns FALSE (0000ms, 0698ms total)
TB4F0 011:419 JLINK_IsHalted()  returns FALSE (0000ms, 0698ms total)
TB4F0 011:521 JLINK_IsHalted()  returns FALSE (0000ms, 0698ms total)
T9028 011:621 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0705ms total)
T9028 011:628 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 11  returns 0x01 (0001ms, 0706ms total)
T9028 011:629 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0707ms total)
T9028 011:630 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0708ms total)
T9028 011:631 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0709ms total)
T9028 011:632 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0710ms total)
TB4F0 011:633 JLINK_IsHalted()  returns FALSE (0001ms, 0711ms total)
TB4F0 011:736 JLINK_IsHalted()  returns FALSE (0000ms, 0710ms total)
TB4F0 011:837 JLINK_IsHalted()  returns FALSE (0000ms, 0710ms total)
TB4F0 011:938 JLINK_IsHalted()  returns FALSE (0000ms, 0710ms total)
TB4F0 012:039 JLINK_IsHalted()  returns FALSE (0000ms, 0710ms total)
T9028 012:141 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0717ms total)
T9028 012:148 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 11  returns 0x01 (0001ms, 0718ms total)
T9028 012:149 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0719ms total)
T9028 012:150 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0720ms total)
T9028 012:151 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0721ms total)
T9028 012:152 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0722ms total)
TB4F0 012:153 JLINK_IsHalted()  returns FALSE (0001ms, 0723ms total)
TB4F0 012:254 JLINK_IsHalted()  returns FALSE (0000ms, 0722ms total)
TB4F0 012:356 JLINK_IsHalted()  returns FALSE (0000ms, 0722ms total)
TB4F0 012:457 JLINK_IsHalted()  returns FALSE (0001ms, 0723ms total)
TB4F0 012:558 JLINK_IsHalted()  returns FALSE (0000ms, 0722ms total)
T9028 012:659 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0729ms total)
T9028 012:666 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 11  returns 0x01 (0001ms, 0730ms total)
T9028 012:667 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0002ms, 0732ms total)
T9028 012:669 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0733ms total)
T9028 012:670 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0734ms total)
T9028 012:671 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0735ms total)
TB4F0 012:672 JLINK_IsHalted()  returns FALSE (0001ms, 0736ms total)
TB4F0 012:773 JLINK_IsHalted()  returns FALSE (0000ms, 0735ms total)
TB4F0 012:874 JLINK_IsHalted()  returns FALSE (0000ms, 0735ms total)
TB4F0 012:975 JLINK_IsHalted()  returns FALSE (0000ms, 0735ms total)
TB4F0 013:077 JLINK_IsHalted()  returns FALSE (0000ms, 0735ms total)
T9028 013:178 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0742ms total)
T9028 013:185 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 11  returns 0x01 (0001ms, 0743ms total)
T9028 013:186 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0744ms total)
T9028 013:187 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0745ms total)
T9028 013:188 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0746ms total)
T9028 013:189 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0747ms total)
TB4F0 013:190 JLINK_IsHalted()  returns FALSE (0001ms, 0748ms total)
TB4F0 013:291 JLINK_IsHalted()  returns FALSE (0000ms, 0747ms total)
TB4F0 013:393 JLINK_IsHalted()  returns FALSE (0000ms, 0747ms total)
TB4F0 013:494 JLINK_IsHalted()  returns FALSE (0000ms, 0747ms total)
TB4F0 013:595 JLINK_IsHalted()  returns FALSE (0000ms, 0747ms total)
T9028 013:696 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0754ms total)
T9028 013:703 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 11  returns 0x01 (0001ms, 0755ms total)
T9028 013:704 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0756ms total)
T9028 013:705 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0757ms total)
T9028 013:706 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0757ms total)
T9028 013:707 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0758ms total)
TB4F0 013:708 JLINK_IsHalted()  returns FALSE (0001ms, 0759ms total)
TB4F0 013:810 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
TB4F0 013:911 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
TB4F0 014:012 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
TB4F0 014:113 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T9028 014:215 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0765ms total)
T9028 014:222 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 12  returns 0x01 (0001ms, 0766ms total)
T9028 014:223 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0767ms total)
T9028 014:224 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0768ms total)
T9028 014:225 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0769ms total)
T9028 014:226 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0770ms total)
TB4F0 014:227 JLINK_IsHalted()  returns FALSE (0001ms, 0771ms total)
TB4F0 014:329 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
TB4F0 014:430 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
TB4F0 014:532 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
TB4F0 014:633 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T9028 014:734 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0777ms total)
T9028 014:741 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 12  returns 0x01 (0001ms, 0778ms total)
T9028 014:742 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0779ms total)
T9028 014:743 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0780ms total)
T9028 014:744 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0781ms total)
T9028 014:745 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0782ms total)
TB4F0 014:746 JLINK_IsHalted()  returns FALSE (0001ms, 0783ms total)
TB4F0 014:848 JLINK_IsHalted()  returns FALSE (0000ms, 0782ms total)
TB4F0 014:950 JLINK_IsHalted()  returns FALSE (0000ms, 0782ms total)
TB4F0 015:050 JLINK_IsHalted()  returns FALSE (0000ms, 0782ms total)
TB4F0 015:152 JLINK_IsHalted()  returns FALSE (0000ms, 0782ms total)
T9028 015:253 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0789ms total)
T9028 015:260 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 12  returns 0x01 (0002ms, 0791ms total)
T9028 015:262 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0792ms total)
T9028 015:263 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0793ms total)
T9028 015:264 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0794ms total)
T9028 015:265 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0795ms total)
TB4F0 015:266 JLINK_IsHalted()  returns FALSE (0001ms, 0796ms total)
TB4F0 015:368 JLINK_IsHalted()  returns FALSE (0000ms, 0795ms total)
TB4F0 015:469 JLINK_IsHalted()  returns FALSE (0000ms, 0795ms total)
TB4F0 015:570 JLINK_IsHalted()  returns FALSE (0000ms, 0795ms total)
TB4F0 015:671 JLINK_IsHalted()  returns FALSE (0000ms, 0795ms total)
T9028 015:772 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0802ms total)
T9028 015:780 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 12  returns 0x01 (0000ms, 0802ms total)
T9028 015:781 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 0802ms total)
T9028 015:782 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0803ms total)
T9028 015:783 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0803ms total)
T9028 015:784 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0804ms total)
TB4F0 015:785 JLINK_IsHalted()  returns FALSE (0001ms, 0805ms total)
TB4F0 015:886 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
TB4F0 015:987 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
TB4F0 016:089 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
TB4F0 016:190 JLINK_IsHalted()  returns FALSE (0000ms, 0804ms total)
T9028 016:291 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0811ms total)
T9028 016:298 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 12  returns 0x01 (0001ms, 0812ms total)
T9028 016:299 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0813ms total)
T9028 016:300 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0814ms total)
T9028 016:301 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0815ms total)
T9028 016:302 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0816ms total)
TB4F0 016:303 JLINK_IsHalted()  returns FALSE (0001ms, 0817ms total)
TB4F0 016:405 JLINK_IsHalted()  returns FALSE (0000ms, 0816ms total)
TB4F0 016:506 JLINK_IsHalted()  returns FALSE (0000ms, 0816ms total)
TB4F0 016:607 JLINK_IsHalted()  returns FALSE (0000ms, 0816ms total)
TB4F0 016:708 JLINK_IsHalted()  returns FALSE (0000ms, 0816ms total)
T9028 016:810 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0823ms total)
T9028 016:817 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 12  returns 0x01 (0001ms, 0824ms total)
T9028 016:818 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0825ms total)
T9028 016:819 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0826ms total)
T9028 016:820 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0827ms total)
T9028 016:821 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0828ms total)
TB4F0 016:822 JLINK_IsHalted()  returns FALSE (0001ms, 0829ms total)
TB4F0 016:923 JLINK_IsHalted()  returns FALSE (0000ms, 0828ms total)
TB4F0 017:024 JLINK_IsHalted()  returns FALSE (0000ms, 0828ms total)
TB4F0 017:125 JLINK_IsHalted()  returns FALSE (0000ms, 0828ms total)
TB4F0 017:227 JLINK_IsHalted()  returns FALSE (0000ms, 0828ms total)
T9028 017:328 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0835ms total)
T9028 017:335 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 12  returns 0x01 (0001ms, 0836ms total)
T9028 017:336 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0837ms total)
T9028 017:337 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0838ms total)
T9028 017:338 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0839ms total)
T9028 017:339 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0840ms total)
TB4F0 017:340 JLINK_IsHalted()  returns FALSE (0001ms, 0841ms total)
TB4F0 017:441 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
TB4F0 017:542 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
TB4F0 017:644 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
TB4F0 017:745 JLINK_IsHalted()  returns FALSE (0000ms, 0840ms total)
T9028 017:846 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...  returns 0x280 (0007ms, 0847ms total)
T9028 017:853 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 12  returns 0x01 (0001ms, 0848ms total)
T9028 017:854 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0849ms total)
T9028 017:855 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0850ms total)
T9028 017:856 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0851ms total)
T9028 017:857 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0852ms total)
TB4F0 017:858 JLINK_IsHalted()  returns FALSE (0001ms, 0853ms total)
TB4F0 017:961 JLINK_IsHalted()  returns FALSE (0000ms, 0852ms total)
TB4F0 018:062 JLINK_IsHalted()  returns FALSE (0000ms, 0852ms total)
TB4F0 018:163 JLINK_IsHalted()  returns FALSE (0000ms, 0852ms total)
TB4F0 018:264 JLINK_IsHalted()  returns FALSE (0000ms, 0852ms total)
T9028 018:365 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 0859ms total)
T9028 018:372 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 12  returns 0x01 (0001ms, 0860ms total)
T9028 018:373 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0861ms total)
T9028 018:374 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0862ms total)
T9028 018:375 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0863ms total)
T9028 018:376 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0864ms total)
TB4F0 018:377 JLINK_IsHalted()  returns FALSE (0001ms, 0865ms total)
TB4F0 018:478 JLINK_IsHalted()  returns FALSE (0000ms, 0864ms total)
TB4F0 018:580 JLINK_IsHalted()  returns FALSE (0000ms, 0864ms total)
TB4F0 018:681 JLINK_IsHalted()  returns FALSE (0000ms, 0864ms total)
TB4F0 018:782 JLINK_IsHalted()  returns FALSE (0000ms, 0864ms total)
T9028 018:883 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 0871ms total)
T9028 018:890 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 12  returns 0x01 (0001ms, 0872ms total)
T9028 018:891 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0873ms total)
T9028 018:892 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0874ms total)
T9028 018:893 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0875ms total)
T9028 018:894 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0876ms total)
TB4F0 018:895 JLINK_IsHalted()  returns FALSE (0001ms, 0877ms total)
TB4F0 018:998 JLINK_IsHalted()  returns FALSE (0000ms, 0876ms total)
TB4F0 019:099 JLINK_IsHalted()  returns FALSE (0000ms, 0876ms total)
TB4F0 019:200 JLINK_IsHalted()  returns FALSE (0000ms, 0876ms total)
TB4F0 019:302 JLINK_IsHalted()  returns FALSE (0000ms, 0876ms total)
T9028 019:403 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 0883ms total)
T9028 019:410 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 12  returns 0x01 (0001ms, 0884ms total)
T9028 019:411 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0885ms total)
T9028 019:412 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0886ms total)
T9028 019:413 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0887ms total)
T9028 019:414 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0888ms total)
TB4F0 019:415 JLINK_IsHalted()  returns FALSE (0001ms, 0889ms total)
TB4F0 019:517 JLINK_IsHalted()  returns FALSE (0000ms, 0888ms total)
TB4F0 019:618 JLINK_IsHalted()  returns FALSE (0000ms, 0888ms total)
TB4F0 019:719 JLINK_IsHalted()  returns FALSE (0000ms, 0888ms total)
TB4F0 019:820 JLINK_IsHalted()  returns FALSE (0000ms, 0888ms total)
T9028 019:921 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 0895ms total)
T9028 019:928 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 12  returns 0x01 (0001ms, 0896ms total)
T9028 019:929 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0897ms total)
T9028 019:930 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0898ms total)
T9028 019:931 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0899ms total)
T9028 019:932 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0900ms total)
TB4F0 019:933 JLINK_IsHalted()  returns FALSE (0001ms, 0901ms total)
TB4F0 020:036 JLINK_IsHalted()  returns FALSE (0000ms, 0900ms total)
TB4F0 020:137 JLINK_IsHalted()  returns FALSE (0000ms, 0900ms total)
TB4F0 020:238 JLINK_IsHalted()  returns FALSE (0000ms, 0900ms total)
TB4F0 020:339 JLINK_IsHalted()  returns FALSE (0000ms, 0900ms total)
T9028 020:440 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 0907ms total)
T9028 020:447 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 12  returns 0x01 (0001ms, 0908ms total)
T9028 020:448 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0909ms total)
T9028 020:449 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0910ms total)
T9028 020:450 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0911ms total)
T9028 020:451 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0912ms total)
TB4F0 020:453 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
TB4F0 020:554 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
TB4F0 020:655 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
TB4F0 020:756 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
TB4F0 020:858 JLINK_IsHalted()  returns FALSE (0000ms, 0912ms total)
T9028 020:959 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 0919ms total)
T9028 020:966 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 0920ms total)
T9028 020:967 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0921ms total)
T9028 020:968 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0922ms total)
T9028 020:969 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0923ms total)
T9028 020:970 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0924ms total)
TB4F0 020:971 JLINK_IsHalted()  returns FALSE (0001ms, 0925ms total)
TB4F0 021:073 JLINK_IsHalted()  returns FALSE (0000ms, 0924ms total)
TB4F0 021:174 JLINK_IsHalted()  returns FALSE (0000ms, 0924ms total)
TB4F0 021:275 JLINK_IsHalted()  returns FALSE (0000ms, 0924ms total)
TB4F0 021:376 JLINK_IsHalted()  returns FALSE (0000ms, 0924ms total)
T9028 021:477 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 0931ms total)
T9028 021:484 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 0932ms total)
T9028 021:485 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0933ms total)
T9028 021:486 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0934ms total)
T9028 021:487 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0935ms total)
T9028 021:488 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0936ms total)
TB4F0 021:489 JLINK_IsHalted()  returns FALSE (0001ms, 0937ms total)
TB4F0 021:591 JLINK_IsHalted()  returns FALSE (0000ms, 0936ms total)
TB4F0 021:692 JLINK_IsHalted()  returns FALSE (0000ms, 0936ms total)
TB4F0 021:793 JLINK_IsHalted()  returns FALSE (0000ms, 0936ms total)
TB4F0 021:895 JLINK_IsHalted()  returns FALSE (0000ms, 0936ms total)
T9028 021:996 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 0943ms total)
T9028 022:003 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 0944ms total)
T9028 022:004 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0945ms total)
T9028 022:005 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0946ms total)
T9028 022:006 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0947ms total)
T9028 022:007 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0948ms total)
TB4F0 022:008 JLINK_IsHalted()  returns FALSE (0001ms, 0949ms total)
TB4F0 022:109 JLINK_IsHalted()  returns FALSE (0000ms, 0948ms total)
TB4F0 022:210 JLINK_IsHalted()  returns FALSE (0000ms, 0948ms total)
TB4F0 022:312 JLINK_IsHalted()  returns FALSE (0000ms, 0948ms total)
TB4F0 022:413 JLINK_IsHalted()  returns FALSE (0000ms, 0948ms total)
T9028 022:514 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 0955ms total)
T9028 022:522 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 0956ms total)
T9028 022:523 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0957ms total)
T9028 022:524 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0958ms total)
T9028 022:525 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0958ms total)
T9028 022:526 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0959ms total)
TB4F0 022:527 JLINK_IsHalted()  returns FALSE (0000ms, 0959ms total)
TB4F0 022:628 JLINK_IsHalted()  returns FALSE (0000ms, 0959ms total)
TB4F0 022:730 JLINK_IsHalted()  returns FALSE (0000ms, 0959ms total)
TB4F0 022:831 JLINK_IsHalted()  returns FALSE (0000ms, 0959ms total)
TB4F0 022:932 JLINK_IsHalted()  returns FALSE (0000ms, 0959ms total)
T9028 023:034 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 0966ms total)
T9028 023:041 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 0967ms total)
T9028 023:042 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0968ms total)
T9028 023:043 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0969ms total)
T9028 023:044 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0970ms total)
T9028 023:046 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0971ms total)
TB4F0 023:047 JLINK_IsHalted()  returns FALSE (0000ms, 0971ms total)
TB4F0 023:148 JLINK_IsHalted()  returns FALSE (0000ms, 0971ms total)
TB4F0 023:249 JLINK_IsHalted()  returns FALSE (0000ms, 0971ms total)
TB4F0 023:350 JLINK_IsHalted()  returns FALSE (0000ms, 0971ms total)
TB4F0 023:452 JLINK_IsHalted()  returns FALSE (0000ms, 0971ms total)
T9028 023:553 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 0978ms total)
T9028 023:560 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 0979ms total)
T9028 023:561 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0980ms total)
T9028 023:562 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0981ms total)
T9028 023:563 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0982ms total)
T9028 023:564 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0983ms total)
TB4F0 023:565 JLINK_IsHalted()  returns FALSE (0001ms, 0984ms total)
TB4F0 023:667 JLINK_IsHalted()  returns FALSE (0000ms, 0983ms total)
TB4F0 023:769 JLINK_IsHalted()  returns FALSE (0000ms, 0983ms total)
TB4F0 023:870 JLINK_IsHalted()  returns FALSE (0000ms, 0983ms total)
TB4F0 023:971 JLINK_IsHalted()  returns FALSE (0000ms, 0983ms total)
T9028 024:072 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 0990ms total)
T9028 024:079 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 0991ms total)
T9028 024:080 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 0992ms total)
T9028 024:081 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0993ms total)
T9028 024:082 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0994ms total)
T9028 024:083 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 0995ms total)
TB4F0 024:084 JLINK_IsHalted()  returns FALSE (0001ms, 0996ms total)
TB4F0 024:186 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
TB4F0 024:287 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
TB4F0 024:388 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
TB4F0 024:490 JLINK_IsHalted()  returns FALSE (0000ms, 0995ms total)
T9028 024:591 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1002ms total)
T9028 024:598 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1003ms total)
T9028 024:599 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1004ms total)
T9028 024:600 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1005ms total)
T9028 024:601 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1006ms total)
T9028 024:602 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1007ms total)
TB4F0 024:603 JLINK_IsHalted()  returns FALSE (0001ms, 1008ms total)
TB4F0 024:705 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
TB4F0 024:807 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
TB4F0 024:908 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
TB4F0 025:009 JLINK_IsHalted()  returns FALSE (0000ms, 1007ms total)
T9028 025:110 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1014ms total)
T9028 025:117 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1015ms total)
T9028 025:118 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1016ms total)
T9028 025:119 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1017ms total)
T9028 025:120 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1018ms total)
T9028 025:121 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1019ms total)
TB4F0 025:122 JLINK_IsHalted()  returns FALSE (0001ms, 1020ms total)
TB4F0 025:225 JLINK_IsHalted()  returns FALSE (0000ms, 1019ms total)
TB4F0 025:326 JLINK_IsHalted()  returns FALSE (0000ms, 1019ms total)
TB4F0 025:427 JLINK_IsHalted()  returns FALSE (0000ms, 1019ms total)
TB4F0 025:528 JLINK_IsHalted()  returns FALSE (0000ms, 1019ms total)
T9028 025:630 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1026ms total)
T9028 025:637 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1027ms total)
T9028 025:638 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1028ms total)
T9028 025:639 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1029ms total)
T9028 025:640 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1030ms total)
T9028 025:641 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1031ms total)
TB4F0 025:642 JLINK_IsHalted()  returns FALSE (0001ms, 1032ms total)
TB4F0 025:743 JLINK_IsHalted()  returns FALSE (0000ms, 1031ms total)
TB4F0 025:844 JLINK_IsHalted()  returns FALSE (0000ms, 1031ms total)
TB4F0 025:946 JLINK_IsHalted()  returns FALSE (0000ms, 1031ms total)
TB4F0 026:047 JLINK_IsHalted()  returns FALSE (0000ms, 1031ms total)
T9028 026:148 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1038ms total)
T9028 026:155 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1039ms total)
T9028 026:156 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1040ms total)
T9028 026:157 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1041ms total)
T9028 026:158 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1042ms total)
T9028 026:159 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1043ms total)
TB4F0 026:160 JLINK_IsHalted()  returns FALSE (0001ms, 1044ms total)
TB4F0 026:261 JLINK_IsHalted()  returns FALSE (0000ms, 1043ms total)
TB4F0 026:363 JLINK_IsHalted()  returns FALSE (0000ms, 1043ms total)
TB4F0 026:464 JLINK_IsHalted()  returns FALSE (0000ms, 1043ms total)
TB4F0 026:565 JLINK_IsHalted()  returns FALSE (0000ms, 1043ms total)
T9028 026:666 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1050ms total)
T9028 026:673 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1051ms total)
T9028 026:674 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0002ms, 1053ms total)
T9028 026:676 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1054ms total)
T9028 026:677 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1055ms total)
T9028 026:678 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1056ms total)
TB4F0 026:679 JLINK_IsHalted()  returns FALSE (0001ms, 1057ms total)
TB4F0 026:780 JLINK_IsHalted()  returns FALSE (0000ms, 1056ms total)
TB4F0 026:881 JLINK_IsHalted()  returns FALSE (0000ms, 1056ms total)
TB4F0 026:982 JLINK_IsHalted()  returns FALSE (0000ms, 1056ms total)
TB4F0 027:084 JLINK_IsHalted()  returns FALSE (0000ms, 1056ms total)
T9028 027:185 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0006ms, 1062ms total)
T9028 027:192 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 1062ms total)
T9028 027:193 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1063ms total)
T9028 027:194 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1064ms total)
T9028 027:195 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1065ms total)
T9028 027:196 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1066ms total)
TB4F0 027:197 JLINK_IsHalted()  returns FALSE (0001ms, 1067ms total)
TB4F0 027:298 JLINK_IsHalted()  returns FALSE (0000ms, 1066ms total)
TB4F0 027:400 JLINK_IsHalted()  returns FALSE (0000ms, 1066ms total)
TB4F0 027:500 JLINK_IsHalted()  returns FALSE (0000ms, 1066ms total)
TB4F0 027:602 JLINK_IsHalted()  returns FALSE (0000ms, 1066ms total)
T9028 027:702 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0008ms, 1074ms total)
T9028 027:710 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1075ms total)
T9028 027:711 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1076ms total)
T9028 027:712 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1077ms total)
T9028 027:713 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1078ms total)
T9028 027:714 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1079ms total)
TB4F0 027:715 JLINK_IsHalted()  returns FALSE (0001ms, 1080ms total)
TB4F0 027:817 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
TB4F0 027:918 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
TB4F0 028:019 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
TB4F0 028:120 JLINK_IsHalted()  returns FALSE (0000ms, 1079ms total)
T9028 028:221 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1086ms total)
T9028 028:228 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1087ms total)
T9028 028:229 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1088ms total)
T9028 028:230 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1089ms total)
T9028 028:231 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1090ms total)
T9028 028:232 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1091ms total)
TB4F0 028:233 JLINK_IsHalted()  returns FALSE (0001ms, 1092ms total)
TB4F0 028:336 JLINK_IsHalted()  returns FALSE (0000ms, 1091ms total)
TB4F0 028:437 JLINK_IsHalted()  returns FALSE (0000ms, 1091ms total)
TB4F0 028:538 JLINK_IsHalted()  returns FALSE (0000ms, 1091ms total)
TB4F0 028:640 JLINK_IsHalted()  returns FALSE (0000ms, 1091ms total)
T9028 028:741 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1098ms total)
T9028 028:749 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 1098ms total)
T9028 028:749 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1099ms total)
T9028 028:750 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1100ms total)
T9028 028:751 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1101ms total)
T9028 028:752 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1102ms total)
TB4F0 028:753 JLINK_IsHalted()  returns FALSE (0001ms, 1103ms total)
TB4F0 028:855 JLINK_IsHalted()  returns FALSE (0000ms, 1102ms total)
TB4F0 028:956 JLINK_IsHalted()  returns FALSE (0000ms, 1102ms total)
TB4F0 029:058 JLINK_IsHalted()  returns FALSE (0000ms, 1102ms total)
TB4F0 029:159 JLINK_IsHalted()  returns FALSE (0000ms, 1102ms total)
T9028 029:260 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1109ms total)
T9028 029:267 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1110ms total)
T9028 029:268 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1111ms total)
T9028 029:269 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1112ms total)
T9028 029:270 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1113ms total)
T9028 029:271 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1114ms total)
TB4F0 029:272 JLINK_IsHalted()  returns FALSE (0001ms, 1115ms total)
TB4F0 029:374 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
TB4F0 029:475 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
TB4F0 029:576 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
TB4F0 029:677 JLINK_IsHalted()  returns FALSE (0000ms, 1114ms total)
T9028 029:779 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1121ms total)
T9028 029:786 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1122ms total)
T9028 029:787 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1123ms total)
T9028 029:788 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1124ms total)
T9028 029:789 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1125ms total)
T9028 029:790 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1126ms total)
TB4F0 029:791 JLINK_IsHalted()  returns FALSE (0001ms, 1127ms total)
TB4F0 029:893 JLINK_IsHalted()  returns FALSE (0000ms, 1126ms total)
TB4F0 029:994 JLINK_IsHalted()  returns FALSE (0000ms, 1126ms total)
TB4F0 030:095 JLINK_IsHalted()  returns FALSE (0000ms, 1126ms total)
TB4F0 030:196 JLINK_IsHalted()  returns FALSE (0000ms, 1126ms total)
T9028 030:297 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1133ms total)
T9028 030:304 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1134ms total)
T9028 030:305 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1135ms total)
T9028 030:306 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1136ms total)
T9028 030:307 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1137ms total)
T9028 030:308 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0002ms, 1139ms total)
TB4F0 030:310 JLINK_IsHalted()  returns FALSE (0001ms, 1140ms total)
TB4F0 030:412 JLINK_IsHalted()  returns FALSE (0000ms, 1139ms total)
TB4F0 030:513 JLINK_IsHalted()  returns FALSE (0000ms, 1139ms total)
TB4F0 030:614 JLINK_IsHalted()  returns FALSE (0000ms, 1139ms total)
TB4F0 030:716 JLINK_IsHalted()  returns FALSE (0000ms, 1139ms total)
T9028 030:817 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1146ms total)
T9028 030:824 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1147ms total)
T9028 030:825 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1148ms total)
T9028 030:826 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1149ms total)
T9028 030:827 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1150ms total)
T9028 030:829 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1151ms total)
TB4F0 030:830 JLINK_IsHalted()  returns FALSE (0000ms, 1151ms total)
TB4F0 030:931 JLINK_IsHalted()  returns FALSE (0000ms, 1151ms total)
TB4F0 031:033 JLINK_IsHalted()  returns FALSE (0000ms, 1151ms total)
TB4F0 031:134 JLINK_IsHalted()  returns FALSE (0000ms, 1151ms total)
TB4F0 031:235 JLINK_IsHalted()  returns FALSE (0000ms, 1151ms total)
T9028 031:336 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1158ms total)
T9028 031:343 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1159ms total)
T9028 031:344 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1160ms total)
T9028 031:345 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1161ms total)
T9028 031:346 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1162ms total)
T9028 031:347 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1163ms total)
TB4F0 031:348 JLINK_IsHalted()  returns FALSE (0001ms, 1164ms total)
TB4F0 031:450 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
TB4F0 031:551 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
TB4F0 031:652 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
TB4F0 031:753 JLINK_IsHalted()  returns FALSE (0000ms, 1163ms total)
T9028 031:854 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1170ms total)
T9028 031:861 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1171ms total)
T9028 031:862 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1172ms total)
T9028 031:863 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1173ms total)
T9028 031:864 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1173ms total)
T9028 031:865 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1174ms total)
TB4F0 031:866 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
TB4F0 031:968 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
TB4F0 032:069 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
TB4F0 032:170 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
TB4F0 032:271 JLINK_IsHalted()  returns FALSE (0000ms, 1174ms total)
T9028 032:373 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1181ms total)
T9028 032:381 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 1181ms total)
T9028 032:382 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 1181ms total)
T9028 032:383 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1181ms total)
T9028 032:384 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1181ms total)
T9028 032:384 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1182ms total)
TB4F0 032:385 JLINK_IsHalted()  returns FALSE (0001ms, 1183ms total)
TB4F0 032:487 JLINK_IsHalted()  returns FALSE (0000ms, 1182ms total)
TB4F0 032:588 JLINK_IsHalted()  returns FALSE (0000ms, 1182ms total)
TB4F0 032:690 JLINK_IsHalted()  returns FALSE (0000ms, 1182ms total)
TB4F0 032:791 JLINK_IsHalted()  returns FALSE (0000ms, 1182ms total)
T9028 032:892 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1189ms total)
T9028 032:899 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1190ms total)
T9028 032:900 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1191ms total)
T9028 032:901 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1192ms total)
T9028 032:902 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1193ms total)
T9028 032:903 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1194ms total)
TB4F0 032:904 JLINK_IsHalted()  returns FALSE (0001ms, 1195ms total)
TB4F0 033:006 JLINK_IsHalted()  returns FALSE (0000ms, 1194ms total)
TB4F0 033:108 JLINK_IsHalted()  returns FALSE (0000ms, 1194ms total)
TB4F0 033:208 JLINK_IsHalted()  returns FALSE (0000ms, 1194ms total)
TB4F0 033:310 JLINK_IsHalted()  returns FALSE (0000ms, 1194ms total)
T9028 033:411 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1201ms total)
T9028 033:418 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1202ms total)
T9028 033:419 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1203ms total)
T9028 033:420 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1204ms total)
T9028 033:421 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1205ms total)
T9028 033:422 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1206ms total)
TB4F0 033:423 JLINK_IsHalted()  returns FALSE (0001ms, 1207ms total)
TB4F0 033:525 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
TB4F0 033:626 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
TB4F0 033:728 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
TB4F0 033:829 JLINK_IsHalted()  returns FALSE (0000ms, 1206ms total)
T9028 033:931 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1213ms total)
T9028 033:938 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1214ms total)
T9028 033:939 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1215ms total)
T9028 033:940 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1216ms total)
T9028 033:941 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1217ms total)
T9028 033:942 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1218ms total)
TB4F0 033:943 JLINK_IsHalted()  returns FALSE (0001ms, 1219ms total)
TB4F0 034:045 JLINK_IsHalted()  returns FALSE (0000ms, 1218ms total)
TB4F0 034:146 JLINK_IsHalted()  returns FALSE (0000ms, 1218ms total)
TB4F0 034:247 JLINK_IsHalted()  returns FALSE (0000ms, 1218ms total)
TB4F0 034:348 JLINK_IsHalted()  returns FALSE (0000ms, 1218ms total)
T9028 034:450 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1225ms total)
T9028 034:457 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1226ms total)
T9028 034:458 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1227ms total)
T9028 034:459 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1228ms total)
T9028 034:460 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1229ms total)
T9028 034:461 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1230ms total)
TB4F0 034:462 JLINK_IsHalted()  returns FALSE (0001ms, 1231ms total)
TB4F0 034:564 JLINK_IsHalted()  returns FALSE (0000ms, 1230ms total)
TB4F0 034:665 JLINK_IsHalted()  returns FALSE (0000ms, 1230ms total)
TB4F0 034:766 JLINK_IsHalted()  returns FALSE (0000ms, 1230ms total)
TB4F0 034:867 JLINK_IsHalted()  returns FALSE (0000ms, 1230ms total)
T9028 034:968 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1237ms total)
T9028 034:975 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1238ms total)
T9028 034:976 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1239ms total)
T9028 034:977 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1240ms total)
T9028 034:978 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1240ms total)
T9028 034:979 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1241ms total)
TB4F0 034:980 JLINK_IsHalted()  returns FALSE (0001ms, 1242ms total)
TB4F0 035:082 JLINK_IsHalted()  returns FALSE (0000ms, 1241ms total)
TB4F0 035:183 JLINK_IsHalted()  returns FALSE (0000ms, 1241ms total)
TB4F0 035:284 JLINK_IsHalted()  returns FALSE (0000ms, 1241ms total)
TB4F0 035:385 JLINK_IsHalted()  returns FALSE (0000ms, 1241ms total)
T9028 035:486 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1248ms total)
T9028 035:494 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 1248ms total)
T9028 035:495 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1249ms total)
T9028 035:496 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1250ms total)
T9028 035:497 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1250ms total)
T9028 035:498 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1251ms total)
TB4F0 035:499 JLINK_IsHalted()  returns FALSE (0001ms, 1252ms total)
TB4F0 035:601 JLINK_IsHalted()  returns FALSE (0000ms, 1251ms total)
TB4F0 035:702 JLINK_IsHalted()  returns FALSE (0000ms, 1251ms total)
TB4F0 035:803 JLINK_IsHalted()  returns FALSE (0000ms, 1251ms total)
TB4F0 035:904 JLINK_IsHalted()  returns FALSE (0000ms, 1251ms total)
T9028 036:006 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1258ms total)
T9028 036:013 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1259ms total)
T9028 036:014 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1260ms total)
T9028 036:015 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1261ms total)
T9028 036:016 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1262ms total)
T9028 036:017 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1263ms total)
TB4F0 036:018 JLINK_IsHalted()  returns FALSE (0001ms, 1264ms total)
TB4F0 036:119 JLINK_IsHalted()  returns FALSE (0000ms, 1263ms total)
TB4F0 036:220 JLINK_IsHalted()  returns FALSE (0000ms, 1263ms total)
TB4F0 036:321 JLINK_IsHalted()  returns FALSE (0000ms, 1263ms total)
TB4F0 036:422 JLINK_IsHalted()  returns FALSE (0000ms, 1263ms total)
T9028 036:524 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1270ms total)
T9028 036:531 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1271ms total)
T9028 036:532 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1272ms total)
T9028 036:533 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1273ms total)
T9028 036:534 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1274ms total)
T9028 036:535 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1275ms total)
TB4F0 036:536 JLINK_IsHalted()  returns FALSE (0001ms, 1276ms total)
TB4F0 036:637 JLINK_IsHalted()  returns FALSE (0000ms, 1275ms total)
TB4F0 036:738 JLINK_IsHalted()  returns FALSE (0000ms, 1275ms total)
TB4F0 036:839 JLINK_IsHalted()  returns FALSE (0000ms, 1275ms total)
TB4F0 036:941 JLINK_IsHalted()  returns FALSE (0000ms, 1275ms total)
T9028 037:042 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1282ms total)
T9028 037:049 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1283ms total)
T9028 037:050 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1284ms total)
T9028 037:051 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1285ms total)
T9028 037:052 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1286ms total)
T9028 037:053 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1287ms total)
TB4F0 037:054 JLINK_IsHalted()  returns FALSE (0001ms, 1288ms total)
TB4F0 037:155 JLINK_IsHalted()  returns FALSE (0000ms, 1287ms total)
TB4F0 037:256 JLINK_IsHalted()  returns FALSE (0000ms, 1287ms total)
TB4F0 037:358 JLINK_IsHalted()  returns FALSE (0000ms, 1287ms total)
TB4F0 037:459 JLINK_IsHalted()  returns FALSE (0000ms, 1287ms total)
T9028 037:560 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1294ms total)
T9028 037:567 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1295ms total)
T9028 037:568 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1296ms total)
T9028 037:569 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1297ms total)
T9028 037:570 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1298ms total)
T9028 037:571 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1299ms total)
TB4F0 037:572 JLINK_IsHalted()  returns FALSE (0001ms, 1300ms total)
TB4F0 037:675 JLINK_IsHalted()  returns FALSE (0000ms, 1299ms total)
TB4F0 037:776 JLINK_IsHalted()  returns FALSE (0000ms, 1299ms total)
TB4F0 037:877 JLINK_IsHalted()  returns FALSE (0000ms, 1299ms total)
TB4F0 037:979 JLINK_IsHalted()  returns FALSE (0000ms, 1299ms total)
T9028 038:081 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1306ms total)
T9028 038:088 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1307ms total)
T9028 038:089 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1308ms total)
T9028 038:090 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1309ms total)
T9028 038:091 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1310ms total)
T9028 038:092 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1311ms total)
TB4F0 038:093 JLINK_IsHalted()  returns FALSE (0001ms, 1312ms total)
TB4F0 038:195 JLINK_IsHalted()  returns FALSE (0000ms, 1311ms total)
TB4F0 038:296 JLINK_IsHalted()  returns FALSE (0000ms, 1311ms total)
TB4F0 038:397 JLINK_IsHalted()  returns FALSE (0000ms, 1311ms total)
TB4F0 038:499 JLINK_IsHalted()  returns FALSE (0000ms, 1311ms total)
T9028 038:600 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1318ms total)
T9028 038:607 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1319ms total)
T9028 038:608 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1320ms total)
T9028 038:609 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1321ms total)
T9028 038:610 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1322ms total)
T9028 038:611 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1323ms total)
TB4F0 038:612 JLINK_IsHalted()  returns FALSE (0001ms, 1324ms total)
TB4F0 038:713 JLINK_IsHalted()  returns FALSE (0000ms, 1323ms total)
TB4F0 038:815 JLINK_IsHalted()  returns FALSE (0000ms, 1323ms total)
TB4F0 038:916 JLINK_IsHalted()  returns FALSE (0000ms, 1323ms total)
TB4F0 039:017 JLINK_IsHalted()  returns FALSE (0000ms, 1323ms total)
T9028 039:118 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1330ms total)
T9028 039:125 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1331ms total)
T9028 039:126 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1332ms total)
T9028 039:127 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1333ms total)
T9028 039:128 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1334ms total)
T9028 039:129 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1335ms total)
TB4F0 039:130 JLINK_IsHalted()  returns FALSE (0001ms, 1336ms total)
TB4F0 039:232 JLINK_IsHalted()  returns FALSE (0000ms, 1335ms total)
TB4F0 039:334 JLINK_IsHalted()  returns FALSE (0000ms, 1335ms total)
TB4F0 039:435 JLINK_IsHalted()  returns FALSE (0000ms, 1335ms total)
TB4F0 039:536 JLINK_IsHalted()  returns FALSE (0000ms, 1335ms total)
T9028 039:637 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1342ms total)
T9028 039:644 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1343ms total)
T9028 039:645 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1344ms total)
T9028 039:646 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1345ms total)
T9028 039:647 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1346ms total)
T9028 039:648 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1347ms total)
TB4F0 039:649 JLINK_IsHalted()  returns FALSE (0001ms, 1348ms total)
TB4F0 039:752 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
TB4F0 039:853 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
TB4F0 039:954 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
TB4F0 040:055 JLINK_IsHalted()  returns FALSE (0000ms, 1347ms total)
T9028 040:157 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1354ms total)
T9028 040:164 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1355ms total)
T9028 040:165 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1356ms total)
T9028 040:166 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1357ms total)
T9028 040:167 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1358ms total)
T9028 040:168 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1359ms total)
TB4F0 040:169 JLINK_IsHalted()  returns FALSE (0001ms, 1360ms total)
TB4F0 040:270 JLINK_IsHalted()  returns FALSE (0000ms, 1359ms total)
TB4F0 040:371 JLINK_IsHalted()  returns FALSE (0000ms, 1359ms total)
TB4F0 040:472 JLINK_IsHalted()  returns FALSE (0000ms, 1359ms total)
TB4F0 040:574 JLINK_IsHalted()  returns FALSE (0000ms, 1359ms total)
T9028 040:675 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1366ms total)
T9028 040:682 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1367ms total)
T9028 040:683 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1368ms total)
T9028 040:684 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1369ms total)
T9028 040:685 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1370ms total)
T9028 040:686 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1371ms total)
TB4F0 040:687 JLINK_IsHalted()  returns FALSE (0001ms, 1372ms total)
TB4F0 040:789 JLINK_IsHalted()  returns FALSE (0000ms, 1371ms total)
TB4F0 040:891 JLINK_IsHalted()  returns FALSE (0000ms, 1371ms total)
TB4F0 040:992 JLINK_IsHalted()  returns FALSE (0000ms, 1371ms total)
TB4F0 041:093 JLINK_IsHalted()  returns FALSE (0000ms, 1371ms total)
T9028 041:194 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1378ms total)
T9028 041:201 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1379ms total)
T9028 041:202 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1380ms total)
T9028 041:203 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1381ms total)
T9028 041:204 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1381ms total)
T9028 041:205 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1382ms total)
TB4F0 041:206 JLINK_IsHalted()  returns FALSE (0000ms, 1382ms total)
TB4F0 041:308 JLINK_IsHalted()  returns FALSE (0001ms, 1383ms total)
TB4F0 041:409 JLINK_IsHalted()  returns FALSE (0000ms, 1382ms total)
TB4F0 041:509 JLINK_IsHalted()  returns FALSE (0000ms, 1382ms total)
TB4F0 041:611 JLINK_IsHalted()  returns FALSE (0000ms, 1382ms total)
T9028 041:712 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1389ms total)
T9028 041:720 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 1389ms total)
T9028 041:721 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 1389ms total)
T9028 041:722 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1390ms total)
T9028 041:723 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1390ms total)
T9028 041:724 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0000ms, 1390ms total)
TB4F0 041:725 JLINK_IsHalted()  returns FALSE (0000ms, 1390ms total)
TB4F0 041:826 JLINK_IsHalted()  returns FALSE (0000ms, 1390ms total)
TB4F0 041:927 JLINK_IsHalted()  returns FALSE (0000ms, 1390ms total)
TB4F0 042:028 JLINK_IsHalted()  returns FALSE (0000ms, 1390ms total)
TB4F0 042:129 JLINK_IsHalted()  returns FALSE (0000ms, 1390ms total)
T9028 042:231 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1397ms total)
T9028 042:238 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1398ms total)
T9028 042:239 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1399ms total)
T9028 042:240 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1400ms total)
T9028 042:241 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1401ms total)
T9028 042:242 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1402ms total)
TB4F0 042:243 JLINK_IsHalted()  returns FALSE (0001ms, 1403ms total)
TB4F0 042:345 JLINK_IsHalted()  returns FALSE (0000ms, 1402ms total)
TB4F0 042:446 JLINK_IsHalted()  returns FALSE (0000ms, 1402ms total)
TB4F0 042:548 JLINK_IsHalted()  returns FALSE (0000ms, 1402ms total)
TB4F0 042:649 JLINK_IsHalted()  returns FALSE (0000ms, 1402ms total)
T9028 042:750 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1409ms total)
T9028 042:758 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 1409ms total)
T9028 042:758 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1410ms total)
T9028 042:759 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1411ms total)
T9028 042:760 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1412ms total)
T9028 042:762 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1413ms total)
TB4F0 042:763 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
TB4F0 042:865 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
TB4F0 042:966 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
TB4F0 043:068 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
TB4F0 043:169 JLINK_IsHalted()  returns FALSE (0000ms, 1413ms total)
T9028 043:270 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1420ms total)
T9028 043:277 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1421ms total)
T9028 043:278 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1422ms total)
T9028 043:279 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1423ms total)
T9028 043:280 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1424ms total)
T9028 043:281 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1425ms total)
TB4F0 043:282 JLINK_IsHalted()  returns FALSE (0001ms, 1426ms total)
TB4F0 043:384 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
TB4F0 043:485 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
TB4F0 043:586 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
TB4F0 043:687 JLINK_IsHalted()  returns FALSE (0000ms, 1425ms total)
T9028 043:789 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1432ms total)
T9028 043:796 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1433ms total)
T9028 043:797 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1434ms total)
T9028 043:798 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1435ms total)
T9028 043:799 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1436ms total)
T9028 043:800 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1437ms total)
TB4F0 043:801 JLINK_IsHalted()  returns FALSE (0001ms, 1438ms total)
TB4F0 043:903 JLINK_IsHalted()  returns FALSE (0000ms, 1437ms total)
TB4F0 044:004 JLINK_IsHalted()  returns FALSE (0000ms, 1437ms total)
TB4F0 044:105 JLINK_IsHalted()  returns FALSE (0000ms, 1437ms total)
TB4F0 044:207 JLINK_IsHalted()  returns FALSE (0000ms, 1437ms total)
T9028 044:308 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1444ms total)
T9028 044:315 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1445ms total)
T9028 044:316 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1446ms total)
T9028 044:317 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1447ms total)
T9028 044:318 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1448ms total)
T9028 044:319 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1449ms total)
TB4F0 044:320 JLINK_IsHalted()  returns FALSE (0001ms, 1450ms total)
T9028 044:367 JLINK_SetBPEx(Addr = 0x00007446, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008)  returns 0x00000002 (0001ms, 1450ms total)
TB4F0 044:421 JLINK_IsHalted()  returns FALSE (0000ms, 1450ms total)
TB4F0 044:523 JLINK_IsHalted()  returns FALSE (0000ms, 1450ms total)
TB4F0 044:624 JLINK_IsHalted()  returns FALSE (0000ms, 1450ms total)
TB4F0 044:725 JLINK_IsHalted()  returns FALSE (0000ms, 1450ms total)
T9028 044:827 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1457ms total)
T9028 044:834 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1458ms total)
T9028 044:835 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1459ms total)
T9028 044:836 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1460ms total)
T9028 044:837 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1461ms total)
T9028 044:838 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1462ms total)
TB4F0 044:839 JLINK_IsHalted()  returns FALSE (0001ms, 1463ms total)
TB4F0 044:941 JLINK_IsHalted()  returns FALSE (0000ms, 1462ms total)
TB4F0 045:042 JLINK_IsHalted()  returns FALSE (0000ms, 1462ms total)
TB4F0 045:143 JLINK_IsHalted()  returns FALSE (0000ms, 1462ms total)
TB4F0 045:244 JLINK_IsHalted()  returns FALSE (0000ms, 1462ms total)
T9028 045:345 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1469ms total)
T9028 045:352 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1470ms total)
T9028 045:353 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1471ms total)
T9028 045:354 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1472ms total)
T9028 045:355 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1473ms total)
T9028 045:356 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1474ms total)
TB4F0 045:357 JLINK_IsHalted()  returns FALSE (0001ms, 1475ms total)
TB4F0 045:459 JLINK_IsHalted()  returns FALSE (0000ms, 1474ms total)
TB4F0 045:560 JLINK_IsHalted()  returns FALSE (0000ms, 1474ms total)
TB4F0 045:661 JLINK_IsHalted()  returns FALSE (0000ms, 1474ms total)
TB4F0 045:762 JLINK_IsHalted()  returns FALSE (0000ms, 1474ms total)
T9028 045:863 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1481ms total)
T9028 045:870 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1482ms total)
T9028 045:871 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1483ms total)
T9028 045:872 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1484ms total)
T9028 045:873 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1485ms total)
T9028 045:874 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1486ms total)
TB4F0 045:875 JLINK_IsHalted()  returns FALSE (0001ms, 1487ms total)
TB4F0 045:978 JLINK_IsHalted()  returns FALSE (0000ms, 1486ms total)
TB4F0 046:079 JLINK_IsHalted()  returns FALSE (0000ms, 1486ms total)
TB4F0 046:180 JLINK_IsHalted()  returns FALSE (0000ms, 1486ms total)
TB4F0 046:281 JLINK_IsHalted()  returns FALSE (0000ms, 1486ms total)
T9028 046:383 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1493ms total)
T9028 046:390 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1494ms total)
T9028 046:391 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1495ms total)
T9028 046:392 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1496ms total)
T9028 046:393 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1497ms total)
T9028 046:394 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1498ms total)
TB4F0 046:395 JLINK_IsHalted()  returns FALSE (0001ms, 1499ms total)
TB4F0 046:496 JLINK_IsHalted()  returns FALSE (0000ms, 1498ms total)
TB4F0 046:597 JLINK_IsHalted()  returns FALSE (0000ms, 1498ms total)
TB4F0 046:698 JLINK_IsHalted()  returns FALSE (0000ms, 1498ms total)
TB4F0 046:800 JLINK_IsHalted()  returns FALSE (0000ms, 1498ms total)
T9028 046:901 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1505ms total)
T9028 046:908 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1506ms total)
T9028 046:909 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1507ms total)
T9028 046:910 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1508ms total)
T9028 046:911 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1509ms total)
T9028 046:912 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1510ms total)
TB4F0 046:914 JLINK_IsHalted()  returns FALSE (0000ms, 1510ms total)
TB4F0 047:015 JLINK_IsHalted()  returns FALSE (0000ms, 1510ms total)
TB4F0 047:117 JLINK_IsHalted()  returns FALSE (0000ms, 1510ms total)
TB4F0 047:217 JLINK_IsHalted()  returns FALSE (0000ms, 1510ms total)
TB4F0 047:318 JLINK_IsHalted()  returns FALSE (0001ms, 1511ms total)
T9028 047:420 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1517ms total)
T9028 047:428 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1518ms total)
T9028 047:429 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1519ms total)
T9028 047:430 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1520ms total)
T9028 047:431 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1521ms total)
T9028 047:432 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1522ms total)
TB4F0 047:433 JLINK_IsHalted()  returns FALSE (0001ms, 1523ms total)
TB4F0 047:535 JLINK_IsHalted()  returns FALSE (0000ms, 1522ms total)
TB4F0 047:636 JLINK_IsHalted()  returns FALSE (0000ms, 1522ms total)
TB4F0 047:737 JLINK_IsHalted()  returns FALSE (0000ms, 1522ms total)
TB4F0 047:838 JLINK_IsHalted()  returns FALSE (0000ms, 1522ms total)
T9028 047:939 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1529ms total)
T9028 047:946 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1530ms total)
T9028 047:947 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1531ms total)
T9028 047:948 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1532ms total)
T9028 047:949 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1533ms total)
T9028 047:950 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1534ms total)
TB4F0 047:951 JLINK_IsHalted()  returns FALSE (0001ms, 1535ms total)
TB4F0 048:054 JLINK_IsHalted()  returns FALSE (0000ms, 1534ms total)
TB4F0 048:155 JLINK_IsHalted()  returns FALSE (0000ms, 1534ms total)
TB4F0 048:256 JLINK_IsHalted()  returns FALSE (0000ms, 1534ms total)
TB4F0 048:357 JLINK_IsHalted()  returns FALSE (0000ms, 1534ms total)
T9028 048:458 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1541ms total)
T9028 048:465 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1542ms total)
T9028 048:466 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1543ms total)
T9028 048:467 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1544ms total)
T9028 048:468 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1545ms total)
T9028 048:469 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1546ms total)
TB4F0 048:470 JLINK_IsHalted()  returns FALSE (0001ms, 1547ms total)
TB4F0 048:572 JLINK_IsHalted()  returns FALSE (0000ms, 1546ms total)
TB4F0 048:673 JLINK_IsHalted()  returns FALSE (0000ms, 1546ms total)
TB4F0 048:775 JLINK_IsHalted()  returns FALSE (0000ms, 1546ms total)
TB4F0 048:876 JLINK_IsHalted()  returns FALSE (0000ms, 1546ms total)
T9028 048:977 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1553ms total)
T9028 048:985 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1554ms total)
T9028 048:986 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1555ms total)
T9028 048:987 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1556ms total)
T9028 048:988 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1557ms total)
T9028 048:989 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1558ms total)
TB4F0 048:990 JLINK_IsHalted()  returns FALSE (0001ms, 1559ms total)
TB4F0 049:092 JLINK_IsHalted()  returns FALSE (0000ms, 1558ms total)
TB4F0 049:194 JLINK_IsHalted()  returns FALSE (0000ms, 1558ms total)
TB4F0 049:295 JLINK_IsHalted()  returns FALSE (0000ms, 1558ms total)
TB4F0 049:396 JLINK_IsHalted()  returns FALSE (0000ms, 1558ms total)
T9028 049:498 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1565ms total)
T9028 049:506 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 1565ms total)
T9028 049:507 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 1565ms total)
T9028 049:508 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1566ms total)
T9028 049:509 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1566ms total)
T9028 049:510 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0000ms, 1566ms total)
TB4F0 049:511 JLINK_IsHalted()  returns FALSE (0000ms, 1566ms total)
TB4F0 049:612 JLINK_IsHalted()  returns FALSE (0000ms, 1566ms total)
TB4F0 049:713 JLINK_IsHalted()  returns FALSE (0000ms, 1566ms total)
TB4F0 049:814 JLINK_IsHalted()  returns FALSE (0000ms, 1566ms total)
TB4F0 049:916 JLINK_IsHalted()  returns FALSE (0000ms, 1566ms total)
T9028 050:017 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1573ms total)
T9028 050:024 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1574ms total)
T9028 050:025 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1575ms total)
T9028 050:026 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1576ms total)
T9028 050:027 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1577ms total)
T9028 050:028 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1578ms total)
TB4F0 050:030 JLINK_IsHalted()  returns FALSE (0000ms, 1578ms total)
TB4F0 050:131 JLINK_IsHalted()  returns FALSE (0000ms, 1578ms total)
TB4F0 050:232 JLINK_IsHalted()  returns FALSE (0000ms, 1578ms total)
TB4F0 050:334 JLINK_IsHalted()  returns FALSE (0000ms, 1578ms total)
TB4F0 050:435 JLINK_IsHalted()  returns FALSE (0000ms, 1578ms total)
T9028 050:536 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1585ms total)
T9028 050:543 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1586ms total)
T9028 050:544 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1587ms total)
T9028 050:545 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1588ms total)
T9028 050:546 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1589ms total)
T9028 050:548 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1590ms total)
TB4F0 050:549 JLINK_IsHalted()  returns FALSE (0001ms, 1591ms total)
TB4F0 050:651 JLINK_IsHalted()  returns FALSE (0000ms, 1590ms total)
TB4F0 050:752 JLINK_IsHalted()  returns FALSE (0000ms, 1590ms total)
TB4F0 050:853 JLINK_IsHalted()  returns FALSE (0000ms, 1590ms total)
TB4F0 050:954 JLINK_IsHalted()  returns FALSE (0000ms, 1590ms total)
T9028 051:056 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1597ms total)
T9028 051:063 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1598ms total)
T9028 051:064 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1599ms total)
T9028 051:065 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1600ms total)
T9028 051:066 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1600ms total)
T9028 051:067 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1601ms total)
TB4F0 051:068 JLINK_IsHalted()  returns FALSE (0001ms, 1602ms total)
TB4F0 051:169 JLINK_IsHalted()  returns FALSE (0000ms, 1601ms total)
TB4F0 051:270 JLINK_IsHalted()  returns FALSE (0000ms, 1601ms total)
TB4F0 051:371 JLINK_IsHalted()  returns FALSE (0000ms, 1601ms total)
TB4F0 051:473 JLINK_IsHalted()  returns FALSE (0000ms, 1601ms total)
T9028 051:574 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1608ms total)
T9028 051:584 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1609ms total)
T9028 051:586 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1610ms total)
T9028 051:587 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1611ms total)
T9028 051:588 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1612ms total)
T9028 051:591 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1613ms total)
TB4F0 051:592 JLINK_IsHalted()  returns FALSE (0001ms, 1614ms total)
TB4F0 051:693 JLINK_IsHalted()  returns FALSE (0000ms, 1613ms total)
TB4F0 051:795 JLINK_IsHalted()  returns FALSE (0000ms, 1613ms total)
TB4F0 051:896 JLINK_IsHalted()  returns FALSE (0000ms, 1613ms total)
TB4F0 051:997 JLINK_IsHalted()  returns FALSE (0000ms, 1613ms total)
T9028 052:098 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1620ms total)
T9028 052:106 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1621ms total)
T9028 052:107 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1622ms total)
T9028 052:108 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1623ms total)
T9028 052:109 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1624ms total)
T9028 052:111 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1625ms total)
TB4F0 052:112 JLINK_IsHalted()  returns FALSE (0001ms, 1626ms total)
TB4F0 052:214 JLINK_IsHalted()  returns FALSE (0000ms, 1625ms total)
TB4F0 052:315 JLINK_IsHalted()  returns FALSE (0000ms, 1625ms total)
TB4F0 052:416 JLINK_IsHalted()  returns FALSE (0000ms, 1625ms total)
TB4F0 052:517 JLINK_IsHalted()  returns FALSE (0000ms, 1625ms total)
T9028 052:618 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1632ms total)
T9028 052:625 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1633ms total)
T9028 052:626 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1634ms total)
T9028 052:627 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1635ms total)
T9028 052:628 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1636ms total)
T9028 052:629 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1637ms total)
TB4F0 052:630 JLINK_IsHalted()  returns FALSE (0001ms, 1638ms total)
TB4F0 052:732 JLINK_IsHalted()  returns FALSE (0000ms, 1637ms total)
TB4F0 052:833 JLINK_IsHalted()  returns FALSE (0000ms, 1637ms total)
TB4F0 052:934 JLINK_IsHalted()  returns FALSE (0000ms, 1637ms total)
TB4F0 053:035 JLINK_IsHalted()  returns FALSE (0000ms, 1637ms total)
T9028 053:136 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1644ms total)
T9028 053:143 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1645ms total)
T9028 053:144 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1646ms total)
T9028 053:145 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1647ms total)
T9028 053:146 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1648ms total)
T9028 053:147 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1649ms total)
TB4F0 053:148 JLINK_IsHalted()  returns FALSE (0001ms, 1650ms total)
TB4F0 053:250 JLINK_IsHalted()  returns FALSE (0000ms, 1649ms total)
TB4F0 053:351 JLINK_IsHalted()  returns FALSE (0000ms, 1649ms total)
TB4F0 053:452 JLINK_IsHalted()  returns FALSE (0000ms, 1649ms total)
TB4F0 053:554 JLINK_IsHalted()  returns FALSE (0000ms, 1649ms total)
T9028 053:655 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1656ms total)
T9028 053:662 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1657ms total)
T9028 053:663 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1658ms total)
T9028 053:664 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1659ms total)
T9028 053:665 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1660ms total)
T9028 053:666 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1661ms total)
TB4F0 053:667 JLINK_IsHalted()  returns FALSE (0001ms, 1662ms total)
TB4F0 053:769 JLINK_IsHalted()  returns FALSE (0000ms, 1661ms total)
TB4F0 053:870 JLINK_IsHalted()  returns FALSE (0000ms, 1661ms total)
TB4F0 053:972 JLINK_IsHalted()  returns FALSE (0000ms, 1661ms total)
TB4F0 054:073 JLINK_IsHalted()  returns FALSE (0000ms, 1661ms total)
T9028 054:174 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1668ms total)
T9028 054:181 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1669ms total)
T9028 054:182 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1670ms total)
T9028 054:183 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1671ms total)
T9028 054:184 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1672ms total)
T9028 054:185 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1673ms total)
TB4F0 054:186 JLINK_IsHalted()  returns FALSE (0001ms, 1674ms total)
TB4F0 054:288 JLINK_IsHalted()  returns FALSE (0000ms, 1673ms total)
TB4F0 054:389 JLINK_IsHalted()  returns FALSE (0000ms, 1673ms total)
TB4F0 054:490 JLINK_IsHalted()  returns FALSE (0000ms, 1673ms total)
TB4F0 054:592 JLINK_IsHalted()  returns FALSE (0000ms, 1673ms total)
T9028 054:693 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1680ms total)
T9028 054:701 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1681ms total)
T9028 054:702 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 1681ms total)
T9028 054:703 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1682ms total)
T9028 054:704 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1682ms total)
T9028 054:705 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0000ms, 1682ms total)
TB4F0 054:706 JLINK_IsHalted()  returns FALSE (0000ms, 1682ms total)
TB4F0 054:807 JLINK_IsHalted()  returns FALSE (0000ms, 1682ms total)
TB4F0 054:909 JLINK_IsHalted()  returns FALSE (0000ms, 1682ms total)
TB4F0 055:009 JLINK_IsHalted()  returns FALSE (0000ms, 1682ms total)
TB4F0 055:111 JLINK_IsHalted()  returns FALSE (0000ms, 1682ms total)
T9028 055:212 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1689ms total)
T9028 055:219 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1690ms total)
T9028 055:220 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1691ms total)
T9028 055:221 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1692ms total)
T9028 055:222 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1693ms total)
T9028 055:223 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1694ms total)
TB4F0 055:224 JLINK_IsHalted()  returns FALSE (0001ms, 1695ms total)
TB4F0 055:326 JLINK_IsHalted()  returns FALSE (0000ms, 1694ms total)
TB4F0 055:427 JLINK_IsHalted()  returns FALSE (0000ms, 1694ms total)
TB4F0 055:529 JLINK_IsHalted()  returns FALSE (0000ms, 1694ms total)
TB4F0 055:630 JLINK_IsHalted()  returns FALSE (0000ms, 1694ms total)
T9028 055:736 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1701ms total)
T9028 055:752 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1702ms total)
T9028 055:753 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1703ms total)
T9028 055:755 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1704ms total)
T9028 055:756 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1704ms total)
T9028 055:757 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1705ms total)
TB4F0 055:758 JLINK_IsHalted()  returns FALSE (0001ms, 1706ms total)
TB4F0 055:859 JLINK_IsHalted()  returns FALSE (0000ms, 1705ms total)
TB4F0 055:960 JLINK_IsHalted()  returns FALSE (0000ms, 1705ms total)
TB4F0 056:061 JLINK_IsHalted()  returns FALSE (0000ms, 1705ms total)
TB4F0 056:163 JLINK_IsHalted()  returns FALSE (0000ms, 1705ms total)
T9028 056:269 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1712ms total)
T9028 056:282 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1713ms total)
T9028 056:284 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1714ms total)
T9028 056:285 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1715ms total)
T9028 056:286 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1716ms total)
T9028 056:292 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1717ms total)
TB4F0 056:294 JLINK_IsHalted()  returns FALSE (0001ms, 1718ms total)
TB4F0 056:396 JLINK_IsHalted()  returns FALSE (0000ms, 1717ms total)
TB4F0 056:497 JLINK_IsHalted()  returns FALSE (0000ms, 1717ms total)
TB4F0 056:598 JLINK_IsHalted()  returns FALSE (0000ms, 1717ms total)
TB4F0 056:699 JLINK_IsHalted()  returns FALSE (0000ms, 1717ms total)
T9028 056:800 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1724ms total)
T9028 056:807 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1725ms total)
T9028 056:809 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 1725ms total)
T9028 056:810 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1726ms total)
T9028 056:811 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1727ms total)
T9028 056:812 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1728ms total)
TB4F0 056:813 JLINK_IsHalted()  returns FALSE (0001ms, 1729ms total)
TB4F0 056:915 JLINK_IsHalted()  returns FALSE (0000ms, 1728ms total)
TB4F0 057:017 JLINK_IsHalted()  returns FALSE (0000ms, 1728ms total)
TB4F0 057:118 JLINK_IsHalted()  returns FALSE (0000ms, 1728ms total)
TB4F0 057:219 JLINK_IsHalted()  returns FALSE (0000ms, 1728ms total)
T9028 057:320 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1735ms total)
T9028 057:327 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1736ms total)
T9028 057:328 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1737ms total)
T9028 057:329 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1738ms total)
T9028 057:330 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1739ms total)
T9028 057:331 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1740ms total)
TB4F0 057:332 JLINK_IsHalted()  returns FALSE (0001ms, 1741ms total)
TB4F0 057:434 JLINK_IsHalted()  returns FALSE (0000ms, 1740ms total)
TB4F0 057:535 JLINK_IsHalted()  returns FALSE (0000ms, 1740ms total)
TB4F0 057:636 JLINK_IsHalted()  returns FALSE (0000ms, 1740ms total)
TB4F0 057:738 JLINK_IsHalted()  returns FALSE (0000ms, 1740ms total)
T9028 057:839 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1747ms total)
T9028 057:846 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1748ms total)
T9028 057:847 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1749ms total)
T9028 057:848 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1750ms total)
T9028 057:849 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1751ms total)
T9028 057:850 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1752ms total)
TB4F0 057:851 JLINK_IsHalted()  returns FALSE (0001ms, 1753ms total)
TB4F0 057:952 JLINK_IsHalted()  returns FALSE (0000ms, 1752ms total)
TB4F0 058:053 JLINK_IsHalted()  returns FALSE (0000ms, 1752ms total)
TB4F0 058:155 JLINK_IsHalted()  returns FALSE (0000ms, 1752ms total)
TB4F0 058:256 JLINK_IsHalted()  returns FALSE (0000ms, 1752ms total)
T9028 058:357 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1759ms total)
T9028 058:364 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1760ms total)
T9028 058:365 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1761ms total)
T9028 058:366 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1762ms total)
T9028 058:367 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1763ms total)
T9028 058:368 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1764ms total)
TB4F0 058:369 JLINK_IsHalted()  returns FALSE (0001ms, 1765ms total)
TB4F0 058:470 JLINK_IsHalted()  returns FALSE (0000ms, 1764ms total)
TB4F0 058:572 JLINK_IsHalted()  returns FALSE (0000ms, 1764ms total)
TB4F0 058:673 JLINK_IsHalted()  returns FALSE (0000ms, 1764ms total)
TB4F0 058:774 JLINK_IsHalted()  returns FALSE (0000ms, 1764ms total)
T9028 058:876 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1771ms total)
T9028 058:883 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1772ms total)
T9028 058:884 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1773ms total)
T9028 058:885 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1774ms total)
T9028 058:886 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1775ms total)
T9028 058:887 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1776ms total)
TB4F0 058:888 JLINK_IsHalted()  returns FALSE (0001ms, 1777ms total)
TB4F0 058:990 JLINK_IsHalted()  returns FALSE (0000ms, 1776ms total)
TB4F0 059:091 JLINK_IsHalted()  returns FALSE (0000ms, 1776ms total)
TB4F0 059:192 JLINK_IsHalted()  returns FALSE (0000ms, 1776ms total)
TB4F0 059:294 JLINK_IsHalted()  returns FALSE (0000ms, 1776ms total)
T9028 059:395 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1783ms total)
T9028 059:403 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1784ms total)
T9028 059:404 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1785ms total)
T9028 059:405 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1786ms total)
T9028 059:406 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1787ms total)
T9028 059:408 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1788ms total)
TB4F0 059:409 JLINK_IsHalted()  returns FALSE (0000ms, 1788ms total)
TB4F0 059:510 JLINK_IsHalted()  returns FALSE (0000ms, 1788ms total)
TB4F0 059:611 JLINK_IsHalted()  returns FALSE (0000ms, 1788ms total)
TB4F0 059:713 JLINK_IsHalted()  returns FALSE (0000ms, 1788ms total)
TB4F0 059:814 JLINK_IsHalted()  returns FALSE (0000ms, 1788ms total)
T9028 059:915 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1795ms total)
T9028 059:922 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1796ms total)
T9028 059:923 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1797ms total)
T9028 059:924 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1798ms total)
T9028 059:925 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1799ms total)
T9028 059:928 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1800ms total)
TB4F0 059:929 JLINK_IsHalted()  returns FALSE (0001ms, 1801ms total)
TB4F0 060:032 JLINK_IsHalted()  returns FALSE (0000ms, 1800ms total)
TB4F0 060:133 JLINK_IsHalted()  returns FALSE (0000ms, 1800ms total)
TB4F0 060:235 JLINK_IsHalted()  returns FALSE (0000ms, 1800ms total)
TB4F0 060:336 JLINK_IsHalted()  returns FALSE (0000ms, 1800ms total)
T9028 060:437 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1807ms total)
T9028 060:444 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1808ms total)
T9028 060:445 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1809ms total)
T9028 060:446 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1810ms total)
T9028 060:447 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1811ms total)
T9028 060:448 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1812ms total)
TB4F0 060:449 JLINK_IsHalted()  returns FALSE (0001ms, 1813ms total)
TB4F0 060:551 JLINK_IsHalted()  returns FALSE (0000ms, 1812ms total)
TB4F0 060:652 JLINK_IsHalted()  returns FALSE (0000ms, 1812ms total)
TB4F0 060:753 JLINK_IsHalted()  returns FALSE (0000ms, 1812ms total)
TB4F0 060:854 JLINK_IsHalted()  returns FALSE (0000ms, 1812ms total)
T9028 060:956 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1819ms total)
T9028 060:963 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1820ms total)
T9028 060:964 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1821ms total)
T9028 060:965 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1822ms total)
T9028 060:966 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1823ms total)
T9028 060:968 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0000ms, 1823ms total)
TB4F0 060:969 JLINK_IsHalted()  returns FALSE (0001ms, 1824ms total)
TB4F0 061:071 JLINK_IsHalted()  returns FALSE (0000ms, 1823ms total)
TB4F0 061:172 JLINK_IsHalted()  returns FALSE (0000ms, 1823ms total)
TB4F0 061:273 JLINK_IsHalted()  returns FALSE (0000ms, 1823ms total)
TB4F0 061:374 JLINK_IsHalted()  returns FALSE (0000ms, 1823ms total)
T9028 061:476 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1830ms total)
T9028 061:483 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1831ms total)
T9028 061:484 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1832ms total)
T9028 061:485 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1833ms total)
T9028 061:486 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1834ms total)
T9028 061:487 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1835ms total)
TB4F0 061:488 JLINK_IsHalted()  returns FALSE (0001ms, 1836ms total)
TB4F0 061:590 JLINK_IsHalted()  returns FALSE (0000ms, 1835ms total)
TB4F0 061:691 JLINK_IsHalted()  returns FALSE (0000ms, 1835ms total)
TB4F0 061:792 JLINK_IsHalted()  returns FALSE (0000ms, 1835ms total)
TB4F0 061:894 JLINK_IsHalted()  returns FALSE (0000ms, 1835ms total)
T9028 061:995 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1842ms total)
T9028 062:002 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1843ms total)
T9028 062:003 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1844ms total)
T9028 062:004 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1845ms total)
T9028 062:005 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1846ms total)
T9028 062:006 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1847ms total)
TB4F0 062:007 JLINK_IsHalted()  returns FALSE (0001ms, 1848ms total)
TB4F0 062:108 JLINK_IsHalted()  returns FALSE (0000ms, 1847ms total)
TB4F0 062:209 JLINK_IsHalted()  returns FALSE (0000ms, 1847ms total)
TB4F0 062:311 JLINK_IsHalted()  returns FALSE (0000ms, 1847ms total)
TB4F0 062:412 JLINK_IsHalted()  returns FALSE (0000ms, 1847ms total)
T9028 062:513 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1854ms total)
T9028 062:523 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1855ms total)
T9028 062:525 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 1855ms total)
T9028 062:526 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1856ms total)
T9028 062:527 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1856ms total)
T9028 062:534 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1857ms total)
TB4F0 062:535 JLINK_IsHalted()  returns FALSE (0001ms, 1858ms total)
TB4F0 062:638 JLINK_IsHalted()  returns FALSE (0000ms, 1857ms total)
TB4F0 062:739 JLINK_IsHalted()  returns FALSE (0000ms, 1857ms total)
TB4F0 062:840 JLINK_IsHalted()  returns FALSE (0000ms, 1857ms total)
TB4F0 062:942 JLINK_IsHalted()  returns FALSE (0000ms, 1857ms total)
T9028 063:043 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1864ms total)
T9028 063:050 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1865ms total)
T9028 063:051 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1866ms total)
T9028 063:053 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1867ms total)
T9028 063:054 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1867ms total)
T9028 063:055 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1868ms total)
TB4F0 063:056 JLINK_IsHalted()  returns FALSE (0001ms, 1869ms total)
TB4F0 063:158 JLINK_IsHalted()  returns FALSE (0000ms, 1868ms total)
TB4F0 063:259 JLINK_IsHalted()  returns FALSE (0000ms, 1868ms total)
TB4F0 063:360 JLINK_IsHalted()  returns FALSE (0000ms, 1868ms total)
TB4F0 063:462 JLINK_IsHalted()  returns FALSE (0000ms, 1868ms total)
T9028 063:563 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1875ms total)
T9028 063:570 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1876ms total)
T9028 063:571 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1877ms total)
T9028 063:572 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1878ms total)
T9028 063:573 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1879ms total)
T9028 063:574 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1880ms total)
TB4F0 063:576 JLINK_IsHalted()  returns FALSE (0000ms, 1880ms total)
TB4F0 063:677 JLINK_IsHalted()  returns FALSE (0000ms, 1880ms total)
TB4F0 063:779 JLINK_IsHalted()  returns FALSE (0000ms, 1880ms total)
TB4F0 063:880 JLINK_IsHalted()  returns FALSE (0000ms, 1880ms total)
TB4F0 063:981 JLINK_IsHalted()  returns FALSE (0000ms, 1880ms total)
T9028 064:082 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1887ms total)
T9028 064:089 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1888ms total)
T9028 064:090 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1889ms total)
T9028 064:091 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1890ms total)
T9028 064:092 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1891ms total)
T9028 064:093 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1892ms total)
TB4F0 064:094 JLINK_IsHalted()  returns FALSE (0001ms, 1893ms total)
TB4F0 064:196 JLINK_IsHalted()  returns FALSE (0000ms, 1892ms total)
TB4F0 064:297 JLINK_IsHalted()  returns FALSE (0000ms, 1892ms total)
TB4F0 064:399 JLINK_IsHalted()  returns FALSE (0000ms, 1892ms total)
TB4F0 064:500 JLINK_IsHalted()  returns FALSE (0000ms, 1892ms total)
T9028 064:601 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1899ms total)
T9028 064:608 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1900ms total)
T9028 064:609 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1901ms total)
T9028 064:610 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1902ms total)
T9028 064:611 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1902ms total)
T9028 064:612 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1903ms total)
TB4F0 064:613 JLINK_IsHalted()  returns FALSE (0001ms, 1904ms total)
TB4F0 064:715 JLINK_IsHalted()  returns FALSE (0000ms, 1903ms total)
TB4F0 064:816 JLINK_IsHalted()  returns FALSE (0000ms, 1903ms total)
TB4F0 064:917 JLINK_IsHalted()  returns FALSE (0000ms, 1903ms total)
TB4F0 065:018 JLINK_IsHalted()  returns FALSE (0000ms, 1903ms total)
T9028 065:119 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1910ms total)
T9028 065:126 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1911ms total)
T9028 065:127 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1912ms total)
T9028 065:128 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1913ms total)
T9028 065:129 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1914ms total)
T9028 065:130 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1915ms total)
TB4F0 065:131 JLINK_IsHalted()  returns FALSE (0001ms, 1916ms total)
TB4F0 065:233 JLINK_IsHalted()  returns FALSE (0000ms, 1915ms total)
TB4F0 065:335 JLINK_IsHalted()  returns FALSE (0000ms, 1915ms total)
TB4F0 065:436 JLINK_IsHalted()  returns FALSE (0000ms, 1915ms total)
TB4F0 065:537 JLINK_IsHalted()  returns FALSE (0000ms, 1915ms total)
T9028 065:639 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1922ms total)
T9028 065:647 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 1922ms total)
T9028 065:648 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 1922ms total)
T9028 065:649 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1922ms total)
T9028 065:649 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1923ms total)
T9028 065:650 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1924ms total)
TB4F0 065:651 JLINK_IsHalted()  returns FALSE (0001ms, 1925ms total)
TB4F0 065:753 JLINK_IsHalted()  returns FALSE (0000ms, 1924ms total)
TB4F0 065:854 JLINK_IsHalted()  returns FALSE (0000ms, 1924ms total)
TB4F0 065:956 JLINK_IsHalted()  returns FALSE (0000ms, 1924ms total)
TB4F0 066:057 JLINK_IsHalted()  returns FALSE (0000ms, 1924ms total)
T9028 066:158 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1931ms total)
T9028 066:165 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1932ms total)
T9028 066:166 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1933ms total)
T9028 066:167 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1934ms total)
T9028 066:168 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1935ms total)
T9028 066:169 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1936ms total)
TB4F0 066:170 JLINK_IsHalted()  returns FALSE (0001ms, 1937ms total)
TB4F0 066:272 JLINK_IsHalted()  returns FALSE (0000ms, 1936ms total)
TB4F0 066:373 JLINK_IsHalted()  returns FALSE (0000ms, 1936ms total)
TB4F0 066:474 JLINK_IsHalted()  returns FALSE (0000ms, 1936ms total)
TB4F0 066:576 JLINK_IsHalted()  returns FALSE (0000ms, 1936ms total)
T9028 066:677 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1943ms total)
T9028 066:685 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 1943ms total)
T9028 066:685 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1944ms total)
T9028 066:687 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1944ms total)
T9028 066:687 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1945ms total)
T9028 066:689 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0000ms, 1945ms total)
TB4F0 066:690 JLINK_IsHalted()  returns FALSE (0000ms, 1945ms total)
TB4F0 066:791 JLINK_IsHalted()  returns FALSE (0000ms, 1945ms total)
TB4F0 066:893 JLINK_IsHalted()  returns FALSE (0000ms, 1945ms total)
TB4F0 066:994 JLINK_IsHalted()  returns FALSE (0000ms, 1945ms total)
TB4F0 067:095 JLINK_IsHalted()  returns FALSE (0000ms, 1945ms total)
T9028 067:196 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1952ms total)
T9028 067:203 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1953ms total)
T9028 067:204 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1954ms total)
T9028 067:205 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1955ms total)
T9028 067:206 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 1955ms total)
T9028 067:207 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1956ms total)
TB4F0 067:208 JLINK_IsHalted()  returns FALSE (0001ms, 1957ms total)
TB4F0 067:310 JLINK_IsHalted()  returns FALSE (0000ms, 1956ms total)
TB4F0 067:411 JLINK_IsHalted()  returns FALSE (0000ms, 1956ms total)
TB4F0 067:512 JLINK_IsHalted()  returns FALSE (0000ms, 1956ms total)
TB4F0 067:613 JLINK_IsHalted()  returns FALSE (0000ms, 1956ms total)
T9028 067:714 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1963ms total)
T9028 067:721 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1964ms total)
T9028 067:722 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1965ms total)
T9028 067:723 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1966ms total)
T9028 067:724 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1967ms total)
T9028 067:725 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1968ms total)
TB4F0 067:726 JLINK_IsHalted()  returns FALSE (0001ms, 1969ms total)
TB4F0 067:828 JLINK_IsHalted()  returns FALSE (0000ms, 1968ms total)
TB4F0 067:929 JLINK_IsHalted()  returns FALSE (0000ms, 1968ms total)
TB4F0 068:030 JLINK_IsHalted()  returns FALSE (0000ms, 1968ms total)
TB4F0 068:131 JLINK_IsHalted()  returns FALSE (0000ms, 1968ms total)
T9028 068:232 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1975ms total)
T9028 068:239 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1976ms total)
T9028 068:240 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1977ms total)
T9028 068:241 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1978ms total)
T9028 068:242 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1979ms total)
T9028 068:243 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1980ms total)
TB4F0 068:244 JLINK_IsHalted()  returns FALSE (0001ms, 1981ms total)
TB4F0 068:346 JLINK_IsHalted()  returns FALSE (0000ms, 1980ms total)
TB4F0 068:447 JLINK_IsHalted()  returns FALSE (0000ms, 1980ms total)
TB4F0 068:548 JLINK_IsHalted()  returns FALSE (0001ms, 1981ms total)
TB4F0 068:650 JLINK_IsHalted()  returns FALSE (0000ms, 1980ms total)
T9028 068:751 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1987ms total)
T9028 068:759 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 1987ms total)
T9028 068:759 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 1988ms total)
T9028 068:760 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1989ms total)
T9028 068:761 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 1990ms total)
T9028 068:762 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 1991ms total)
TB4F0 068:763 JLINK_IsHalted()  returns FALSE (0001ms, 1992ms total)
TB4F0 068:865 JLINK_IsHalted()  returns FALSE (0000ms, 1991ms total)
TB4F0 068:966 JLINK_IsHalted()  returns FALSE (0000ms, 1991ms total)
TB4F0 069:067 JLINK_IsHalted()  returns FALSE (0000ms, 1991ms total)
TB4F0 069:169 JLINK_IsHalted()  returns FALSE (0000ms, 1991ms total)
T9028 069:270 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 1998ms total)
T9028 069:277 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 1999ms total)
T9028 069:278 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2000ms total)
T9028 069:279 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2001ms total)
T9028 069:280 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2002ms total)
T9028 069:281 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2003ms total)
TB4F0 069:282 JLINK_IsHalted()  returns FALSE (0001ms, 2004ms total)
TB4F0 069:383 JLINK_IsHalted()  returns FALSE (0000ms, 2003ms total)
TB4F0 069:484 JLINK_IsHalted()  returns FALSE (0000ms, 2003ms total)
TB4F0 069:585 JLINK_IsHalted()  returns FALSE (0000ms, 2003ms total)
TB4F0 069:687 JLINK_IsHalted()  returns FALSE (0000ms, 2003ms total)
T9028 069:787 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2010ms total)
T9028 069:795 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2011ms total)
T9028 069:796 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2012ms total)
T9028 069:797 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2013ms total)
T9028 069:798 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2013ms total)
T9028 069:799 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2014ms total)
TB4F0 069:800 JLINK_IsHalted()  returns FALSE (0000ms, 2014ms total)
TB4F0 069:901 JLINK_IsHalted()  returns FALSE (0000ms, 2014ms total)
TB4F0 070:003 JLINK_IsHalted()  returns FALSE (0000ms, 2014ms total)
TB4F0 070:104 JLINK_IsHalted()  returns FALSE (0000ms, 2014ms total)
TB4F0 070:205 JLINK_IsHalted()  returns FALSE (0000ms, 2014ms total)
T9028 070:306 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2021ms total)
T9028 070:313 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2022ms total)
T9028 070:314 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2023ms total)
T9028 070:315 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2024ms total)
T9028 070:316 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2024ms total)
T9028 070:317 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2025ms total)
TB4F0 070:318 JLINK_IsHalted()  returns FALSE (0001ms, 2026ms total)
TB4F0 070:420 JLINK_IsHalted()  returns FALSE (0000ms, 2025ms total)
TB4F0 070:521 JLINK_IsHalted()  returns FALSE (0000ms, 2025ms total)
TB4F0 070:622 JLINK_IsHalted()  returns FALSE (0000ms, 2025ms total)
TB4F0 070:723 JLINK_IsHalted()  returns FALSE (0000ms, 2025ms total)
T9028 070:825 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2032ms total)
T9028 070:832 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2033ms total)
T9028 070:833 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2034ms total)
T9028 070:834 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2035ms total)
T9028 070:835 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2036ms total)
T9028 070:836 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2037ms total)
TB4F0 070:837 JLINK_IsHalted()  returns FALSE (0001ms, 2038ms total)
TB4F0 070:938 JLINK_IsHalted()  returns FALSE (0000ms, 2037ms total)
TB4F0 071:039 JLINK_IsHalted()  returns FALSE (0000ms, 2037ms total)
TB4F0 071:141 JLINK_IsHalted()  returns FALSE (0000ms, 2037ms total)
TB4F0 071:242 JLINK_IsHalted()  returns FALSE (0000ms, 2037ms total)
T9028 071:343 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2044ms total)
T9028 071:350 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2045ms total)
T9028 071:351 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2046ms total)
T9028 071:352 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2047ms total)
T9028 071:353 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2048ms total)
T9028 071:354 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2049ms total)
TB4F0 071:355 JLINK_IsHalted()  returns FALSE (0001ms, 2050ms total)
TB4F0 071:457 JLINK_IsHalted()  returns FALSE (0000ms, 2049ms total)
TB4F0 071:559 JLINK_IsHalted()  returns FALSE (0000ms, 2049ms total)
TB4F0 071:660 JLINK_IsHalted()  returns FALSE (0000ms, 2049ms total)
TB4F0 071:761 JLINK_IsHalted()  returns FALSE (0000ms, 2049ms total)
T9028 071:862 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2056ms total)
T9028 071:869 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2057ms total)
T9028 071:870 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2058ms total)
T9028 071:871 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2059ms total)
T9028 071:872 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2060ms total)
T9028 071:873 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2061ms total)
TB4F0 071:874 JLINK_IsHalted()  returns FALSE (0001ms, 2062ms total)
TB4F0 071:977 JLINK_IsHalted()  returns FALSE (0000ms, 2061ms total)
TB4F0 072:079 JLINK_IsHalted()  returns FALSE (0000ms, 2061ms total)
TB4F0 072:180 JLINK_IsHalted()  returns FALSE (0000ms, 2061ms total)
TB4F0 072:281 JLINK_IsHalted()  returns FALSE (0000ms, 2061ms total)
T9028 072:382 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2068ms total)
T9028 072:389 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2069ms total)
T9028 072:390 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2070ms total)
T9028 072:391 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2071ms total)
T9028 072:392 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2072ms total)
T9028 072:393 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2073ms total)
TB4F0 072:394 JLINK_IsHalted()  returns FALSE (0001ms, 2074ms total)
TB4F0 072:497 JLINK_IsHalted()  returns FALSE (0000ms, 2073ms total)
TB4F0 072:598 JLINK_IsHalted()  returns FALSE (0000ms, 2073ms total)
TB4F0 072:699 JLINK_IsHalted()  returns FALSE (0000ms, 2073ms total)
TB4F0 072:800 JLINK_IsHalted()  returns FALSE (0000ms, 2073ms total)
T9028 072:901 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2080ms total)
T9028 072:908 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2081ms total)
T9028 072:909 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2082ms total)
T9028 072:910 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2083ms total)
T9028 072:911 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2084ms total)
T9028 072:912 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2085ms total)
TB4F0 072:913 JLINK_IsHalted()  returns FALSE (0001ms, 2086ms total)
TB4F0 073:016 JLINK_IsHalted()  returns FALSE (0000ms, 2085ms total)
TB4F0 073:117 JLINK_IsHalted()  returns FALSE (0000ms, 2085ms total)
TB4F0 073:218 JLINK_IsHalted()  returns FALSE (0000ms, 2085ms total)
TB4F0 073:320 JLINK_IsHalted()  returns FALSE (0000ms, 2085ms total)
T9028 073:421 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2092ms total)
T9028 073:429 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 2092ms total)
T9028 073:430 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 2092ms total)
T9028 073:430 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2093ms total)
T9028 073:431 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2094ms total)
T9028 073:432 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2095ms total)
TB4F0 073:434 JLINK_IsHalted()  returns FALSE (0000ms, 2095ms total)
TB4F0 073:535 JLINK_IsHalted()  returns FALSE (0000ms, 2095ms total)
TB4F0 073:636 JLINK_IsHalted()  returns FALSE (0000ms, 2095ms total)
TB4F0 073:738 JLINK_IsHalted()  returns FALSE (0000ms, 2095ms total)
TB4F0 073:839 JLINK_IsHalted()  returns FALSE (0000ms, 2095ms total)
T9028 073:940 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2102ms total)
T9028 073:947 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2103ms total)
T9028 073:948 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2104ms total)
T9028 073:949 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2105ms total)
T9028 073:950 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2106ms total)
T9028 073:951 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2107ms total)
TB4F0 073:953 JLINK_IsHalted()  returns FALSE (0000ms, 2107ms total)
TB4F0 074:054 JLINK_IsHalted()  returns FALSE (0000ms, 2107ms total)
TB4F0 074:156 JLINK_IsHalted()  returns FALSE (0000ms, 2107ms total)
TB4F0 074:257 JLINK_IsHalted()  returns FALSE (0000ms, 2107ms total)
TB4F0 074:358 JLINK_IsHalted()  returns FALSE (0000ms, 2107ms total)
T9028 074:460 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2114ms total)
T9028 074:468 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 2114ms total)
T9028 074:469 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 2115ms total)
T9028 074:470 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2116ms total)
T9028 074:471 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2116ms total)
T9028 074:471 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2117ms total)
TB4F0 074:473 JLINK_IsHalted()  returns FALSE (0000ms, 2117ms total)
TB4F0 074:573 JLINK_IsHalted()  returns FALSE (0000ms, 2117ms total)
TB4F0 074:675 JLINK_IsHalted()  returns FALSE (0000ms, 2117ms total)
TB4F0 074:776 JLINK_IsHalted()  returns FALSE (0000ms, 2117ms total)
TB4F0 074:878 JLINK_IsHalted()  returns FALSE (0000ms, 2117ms total)
T9028 074:978 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2124ms total)
T9028 074:985 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2125ms total)
T9028 074:986 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2126ms total)
T9028 074:987 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2127ms total)
T9028 074:988 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2128ms total)
T9028 074:989 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2129ms total)
TB4F0 074:990 JLINK_IsHalted()  returns FALSE (0001ms, 2130ms total)
TB4F0 075:092 JLINK_IsHalted()  returns FALSE (0000ms, 2129ms total)
TB4F0 075:193 JLINK_IsHalted()  returns FALSE (0000ms, 2129ms total)
TB4F0 075:295 JLINK_IsHalted()  returns FALSE (0000ms, 2129ms total)
TB4F0 075:396 JLINK_IsHalted()  returns FALSE (0000ms, 2129ms total)
T9028 075:497 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2136ms total)
T9028 075:504 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2137ms total)
T9028 075:505 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2138ms total)
T9028 075:506 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2139ms total)
T9028 075:507 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2140ms total)
T9028 075:508 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2141ms total)
TB4F0 075:509 JLINK_IsHalted()  returns FALSE (0001ms, 2142ms total)
TB4F0 075:611 JLINK_IsHalted()  returns FALSE (0000ms, 2141ms total)
TB4F0 075:713 JLINK_IsHalted()  returns FALSE (0000ms, 2141ms total)
TB4F0 075:814 JLINK_IsHalted()  returns FALSE (0000ms, 2141ms total)
TB4F0 075:915 JLINK_IsHalted()  returns FALSE (0000ms, 2141ms total)
T9028 076:016 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2148ms total)
T9028 076:023 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2149ms total)
T9028 076:024 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2150ms total)
T9028 076:025 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2151ms total)
T9028 076:026 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2152ms total)
T9028 076:027 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2153ms total)
TB4F0 076:028 JLINK_IsHalted()  returns FALSE (0001ms, 2154ms total)
TB4F0 076:130 JLINK_IsHalted()  returns FALSE (0000ms, 2153ms total)
TB4F0 076:231 JLINK_IsHalted()  returns FALSE (0000ms, 2153ms total)
TB4F0 076:332 JLINK_IsHalted()  returns FALSE (0000ms, 2153ms total)
TB4F0 076:434 JLINK_IsHalted()  returns FALSE (0000ms, 2153ms total)
T9028 076:535 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2160ms total)
T9028 076:542 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2161ms total)
T9028 076:543 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2162ms total)
T9028 076:544 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2163ms total)
T9028 076:545 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2164ms total)
T9028 076:546 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2165ms total)
TB4F0 076:547 JLINK_IsHalted()  returns FALSE (0001ms, 2166ms total)
TB4F0 076:649 JLINK_IsHalted()  returns FALSE (0000ms, 2165ms total)
TB4F0 076:750 JLINK_IsHalted()  returns FALSE (0000ms, 2165ms total)
TB4F0 076:852 JLINK_IsHalted()  returns FALSE (0000ms, 2165ms total)
TB4F0 076:953 JLINK_IsHalted()  returns FALSE (0000ms, 2165ms total)
T9028 077:054 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2172ms total)
T9028 077:061 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2173ms total)
T9028 077:062 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2174ms total)
T9028 077:063 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2175ms total)
T9028 077:064 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2176ms total)
T9028 077:065 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2177ms total)
TB4F0 077:067 JLINK_IsHalted()  returns FALSE (0000ms, 2177ms total)
TB4F0 077:169 JLINK_IsHalted()  returns FALSE (0000ms, 2177ms total)
TB4F0 077:270 JLINK_IsHalted()  returns FALSE (0000ms, 2177ms total)
TB4F0 077:371 JLINK_IsHalted()  returns FALSE (0000ms, 2177ms total)
TB4F0 077:472 JLINK_IsHalted()  returns FALSE (0000ms, 2177ms total)
T9028 077:574 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2184ms total)
T9028 077:581 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2185ms total)
T9028 077:583 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2186ms total)
T9028 077:584 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2187ms total)
T9028 077:585 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2188ms total)
T9028 077:586 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2189ms total)
TB4F0 077:587 JLINK_IsHalted()  returns FALSE (0001ms, 2190ms total)
TB4F0 077:689 JLINK_IsHalted()  returns FALSE (0000ms, 2189ms total)
TB4F0 077:790 JLINK_IsHalted()  returns FALSE (0000ms, 2189ms total)
TB4F0 077:891 JLINK_IsHalted()  returns FALSE (0000ms, 2189ms total)
TB4F0 077:993 JLINK_IsHalted()  returns FALSE (0000ms, 2189ms total)
T9028 078:094 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2196ms total)
T9028 078:102 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 2196ms total)
T9028 078:102 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2197ms total)
T9028 078:103 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2198ms total)
T9028 078:104 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2199ms total)
T9028 078:105 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2200ms total)
TB4F0 078:106 JLINK_IsHalted()  returns FALSE (0001ms, 2201ms total)
TB4F0 078:208 JLINK_IsHalted()  returns FALSE (0000ms, 2200ms total)
TB4F0 078:309 JLINK_IsHalted()  returns FALSE (0000ms, 2200ms total)
TB4F0 078:410 JLINK_IsHalted()  returns FALSE (0000ms, 2200ms total)
TB4F0 078:512 JLINK_IsHalted()  returns FALSE (0000ms, 2200ms total)
T9028 078:613 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2207ms total)
T9028 078:620 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2208ms total)
T9028 078:621 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2209ms total)
T9028 078:622 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2210ms total)
T9028 078:623 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2211ms total)
T9028 078:624 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2212ms total)
TB4F0 078:625 JLINK_IsHalted()  returns FALSE (0001ms, 2213ms total)
TB4F0 078:727 JLINK_IsHalted()  returns FALSE (0000ms, 2212ms total)
TB4F0 078:828 JLINK_IsHalted()  returns FALSE (0000ms, 2212ms total)
TB4F0 078:929 JLINK_IsHalted()  returns FALSE (0000ms, 2212ms total)
TB4F0 079:030 JLINK_IsHalted()  returns FALSE (0000ms, 2212ms total)
T9028 079:132 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2219ms total)
T9028 079:139 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2220ms total)
T9028 079:140 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2221ms total)
T9028 079:141 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2222ms total)
T9028 079:142 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2223ms total)
T9028 079:143 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2224ms total)
TB4F0 079:144 JLINK_IsHalted()  returns FALSE (0001ms, 2225ms total)
TB4F0 079:246 JLINK_IsHalted()  returns FALSE (0000ms, 2224ms total)
TB4F0 079:347 JLINK_IsHalted()  returns FALSE (0000ms, 2224ms total)
TB4F0 079:448 JLINK_IsHalted()  returns FALSE (0000ms, 2224ms total)
TB4F0 079:550 JLINK_IsHalted()  returns FALSE (0000ms, 2224ms total)
T9028 079:651 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2231ms total)
T9028 079:658 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2232ms total)
T9028 079:659 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2233ms total)
T9028 079:660 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2234ms total)
T9028 079:661 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2235ms total)
T9028 079:662 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2236ms total)
TB4F0 079:663 JLINK_IsHalted()  returns FALSE (0001ms, 2237ms total)
TB4F0 079:766 JLINK_IsHalted()  returns FALSE (0000ms, 2236ms total)
TB4F0 079:867 JLINK_IsHalted()  returns FALSE (0000ms, 2236ms total)
TB4F0 079:968 JLINK_IsHalted()  returns FALSE (0000ms, 2236ms total)
TB4F0 080:069 JLINK_IsHalted()  returns FALSE (0000ms, 2236ms total)
T9028 080:170 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2243ms total)
T9028 080:177 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2244ms total)
T9028 080:178 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2245ms total)
T9028 080:179 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2246ms total)
T9028 080:180 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2247ms total)
T9028 080:181 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2248ms total)
TB4F0 080:182 JLINK_IsHalted()  returns FALSE (0001ms, 2249ms total)
TB4F0 080:283 JLINK_IsHalted()  returns FALSE (0000ms, 2248ms total)
TB4F0 080:385 JLINK_IsHalted()  returns FALSE (0000ms, 2248ms total)
TB4F0 080:486 JLINK_IsHalted()  returns FALSE (0000ms, 2248ms total)
TB4F0 080:587 JLINK_IsHalted()  returns FALSE (0000ms, 2248ms total)
T9028 080:688 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2255ms total)
T9028 080:695 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2256ms total)
T9028 080:696 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2257ms total)
T9028 080:697 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2258ms total)
T9028 080:698 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2259ms total)
T9028 080:699 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2260ms total)
TB4F0 080:700 JLINK_IsHalted()  returns FALSE (0001ms, 2261ms total)
TB4F0 080:803 JLINK_IsHalted()  returns FALSE (0000ms, 2260ms total)
TB4F0 080:904 JLINK_IsHalted()  returns FALSE (0000ms, 2260ms total)
TB4F0 081:005 JLINK_IsHalted()  returns FALSE (0000ms, 2260ms total)
TB4F0 081:106 JLINK_IsHalted()  returns FALSE (0000ms, 2260ms total)
T9028 081:207 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2267ms total)
T9028 081:214 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2268ms total)
T9028 081:215 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2269ms total)
T9028 081:216 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2270ms total)
T9028 081:217 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2271ms total)
T9028 081:218 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2272ms total)
TB4F0 081:219 JLINK_IsHalted()  returns FALSE (0001ms, 2273ms total)
TB4F0 081:322 JLINK_IsHalted()  returns FALSE (0000ms, 2272ms total)
TB4F0 081:423 JLINK_IsHalted()  returns FALSE (0000ms, 2272ms total)
TB4F0 081:524 JLINK_IsHalted()  returns FALSE (0000ms, 2272ms total)
TB4F0 081:625 JLINK_IsHalted()  returns FALSE (0000ms, 2272ms total)
T9028 081:727 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2279ms total)
T9028 081:734 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2280ms total)
T9028 081:735 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2281ms total)
T9028 081:736 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2282ms total)
T9028 081:737 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2283ms total)
T9028 081:738 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2284ms total)
TB4F0 081:739 JLINK_IsHalted()  returns FALSE (0001ms, 2285ms total)
TB4F0 081:841 JLINK_IsHalted()  returns FALSE (0000ms, 2284ms total)
TB4F0 081:942 JLINK_IsHalted()  returns FALSE (0000ms, 2284ms total)
TB4F0 082:043 JLINK_IsHalted()  returns FALSE (0000ms, 2284ms total)
TB4F0 082:145 JLINK_IsHalted()  returns FALSE (0000ms, 2284ms total)
T9028 082:246 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2291ms total)
T9028 082:253 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2292ms total)
T9028 082:254 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2293ms total)
T9028 082:255 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2294ms total)
T9028 082:256 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2295ms total)
T9028 082:257 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2296ms total)
TB4F0 082:258 JLINK_IsHalted()  returns FALSE (0001ms, 2297ms total)
TB4F0 082:359 JLINK_IsHalted()  returns FALSE (0000ms, 2296ms total)
TB4F0 082:460 JLINK_IsHalted()  returns FALSE (0000ms, 2296ms total)
TB4F0 082:562 JLINK_IsHalted()  returns FALSE (0000ms, 2296ms total)
TB4F0 082:663 JLINK_IsHalted()  returns FALSE (0000ms, 2296ms total)
T9028 082:764 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2303ms total)
T9028 082:771 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2304ms total)
T9028 082:772 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2305ms total)
T9028 082:773 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2306ms total)
T9028 082:774 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2307ms total)
T9028 082:775 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2308ms total)
TB4F0 082:776 JLINK_IsHalted()  returns FALSE (0001ms, 2309ms total)
TB4F0 082:879 JLINK_IsHalted()  returns FALSE (0000ms, 2308ms total)
TB4F0 082:980 JLINK_IsHalted()  returns FALSE (0000ms, 2308ms total)
TB4F0 083:081 JLINK_IsHalted()  returns FALSE (0000ms, 2308ms total)
TB4F0 083:182 JLINK_IsHalted()  returns FALSE (0000ms, 2308ms total)
T9028 083:284 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2315ms total)
T9028 083:291 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2316ms total)
T9028 083:292 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2317ms total)
T9028 083:293 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2318ms total)
T9028 083:294 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2319ms total)
T9028 083:295 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2320ms total)
TB4F0 083:296 JLINK_IsHalted()  returns FALSE (0001ms, 2321ms total)
TB4F0 083:397 JLINK_IsHalted()  returns FALSE (0000ms, 2320ms total)
TB4F0 083:498 JLINK_IsHalted()  returns FALSE (0000ms, 2320ms total)
TB4F0 083:599 JLINK_IsHalted()  returns FALSE (0000ms, 2320ms total)
TB4F0 083:700 JLINK_IsHalted()  returns FALSE (0000ms, 2320ms total)
T9028 083:802 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2327ms total)
T9028 083:809 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2328ms total)
T9028 083:810 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2329ms total)
T9028 083:811 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2330ms total)
T9028 083:812 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2331ms total)
T9028 083:813 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2332ms total)
TB4F0 083:814 JLINK_IsHalted()  returns FALSE (0001ms, 2333ms total)
TB4F0 083:916 JLINK_IsHalted()  returns FALSE (0000ms, 2332ms total)
TB4F0 084:017 JLINK_IsHalted()  returns FALSE (0000ms, 2332ms total)
TB4F0 084:118 JLINK_IsHalted()  returns FALSE (0000ms, 2332ms total)
TB4F0 084:219 JLINK_IsHalted()  returns FALSE (0000ms, 2332ms total)
T9028 084:320 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0008ms, 2340ms total)
T9028 084:328 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2341ms total)
T9028 084:329 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2342ms total)
T9028 084:330 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2343ms total)
T9028 084:331 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2344ms total)
T9028 084:332 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2345ms total)
TB4F0 084:333 JLINK_IsHalted()  returns FALSE (0001ms, 2346ms total)
TB4F0 084:434 JLINK_IsHalted()  returns FALSE (0000ms, 2345ms total)
TB4F0 084:535 JLINK_IsHalted()  returns FALSE (0000ms, 2345ms total)
TB4F0 084:636 JLINK_IsHalted()  returns FALSE (0000ms, 2345ms total)
TB4F0 084:738 JLINK_IsHalted()  returns FALSE (0000ms, 2345ms total)
T9028 084:839 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2352ms total)
T9028 084:846 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2353ms total)
T9028 084:847 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2354ms total)
T9028 084:848 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2355ms total)
T9028 084:849 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2356ms total)
T9028 084:850 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2357ms total)
TB4F0 084:851 JLINK_IsHalted()  returns FALSE (0001ms, 2358ms total)
TB4F0 084:952 JLINK_IsHalted()  returns FALSE (0000ms, 2357ms total)
TB4F0 085:054 JLINK_IsHalted()  returns FALSE (0000ms, 2357ms total)
TB4F0 085:155 JLINK_IsHalted()  returns FALSE (0000ms, 2357ms total)
TB4F0 085:256 JLINK_IsHalted()  returns FALSE (0000ms, 2357ms total)
T9028 085:358 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2364ms total)
T9028 085:365 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2365ms total)
T9028 085:366 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2366ms total)
T9028 085:367 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2367ms total)
T9028 085:368 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2368ms total)
T9028 085:369 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2369ms total)
TB4F0 085:370 JLINK_IsHalted()  returns FALSE (0001ms, 2370ms total)
TB4F0 085:472 JLINK_IsHalted()  returns FALSE (0000ms, 2369ms total)
TB4F0 085:573 JLINK_IsHalted()  returns FALSE (0000ms, 2369ms total)
TB4F0 085:675 JLINK_IsHalted()  returns FALSE (0000ms, 2369ms total)
TB4F0 085:776 JLINK_IsHalted()  returns FALSE (0000ms, 2369ms total)
T9028 085:877 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2376ms total)
T9028 085:884 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2377ms total)
T9028 085:885 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2378ms total)
T9028 085:886 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2379ms total)
T9028 085:887 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2380ms total)
T9028 085:888 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2381ms total)
TB4F0 085:889 JLINK_IsHalted()  returns FALSE (0001ms, 2382ms total)
TB4F0 085:990 JLINK_IsHalted()  returns FALSE (0000ms, 2381ms total)
TB4F0 086:091 JLINK_IsHalted()  returns FALSE (0000ms, 2381ms total)
TB4F0 086:192 JLINK_IsHalted()  returns FALSE (0000ms, 2381ms total)
TB4F0 086:293 JLINK_IsHalted()  returns FALSE (0000ms, 2381ms total)
T9028 086:394 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2388ms total)
T9028 086:402 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 2388ms total)
T9028 086:403 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 2388ms total)
T9028 086:403 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2389ms total)
T9028 086:404 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2390ms total)
T9028 086:406 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0000ms, 2390ms total)
TB4F0 086:407 JLINK_IsHalted()  returns FALSE (0000ms, 2390ms total)
TB4F0 086:509 JLINK_IsHalted()  returns FALSE (0001ms, 2391ms total)
TB4F0 086:610 JLINK_IsHalted()  returns FALSE (0000ms, 2390ms total)
TB4F0 086:711 JLINK_IsHalted()  returns FALSE (0000ms, 2390ms total)
TB4F0 086:812 JLINK_IsHalted()  returns FALSE (0000ms, 2390ms total)
T9028 086:913 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2397ms total)
T9028 086:920 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2398ms total)
T9028 086:921 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2399ms total)
T9028 086:922 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2400ms total)
T9028 086:923 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2401ms total)
T9028 086:924 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2402ms total)
TB4F0 086:926 JLINK_IsHalted()  returns FALSE (0000ms, 2402ms total)
TB4F0 087:027 JLINK_IsHalted()  returns FALSE (0000ms, 2402ms total)
TB4F0 087:129 JLINK_IsHalted()  returns FALSE (0000ms, 2402ms total)
TB4F0 087:230 JLINK_IsHalted()  returns FALSE (0000ms, 2402ms total)
TB4F0 087:331 JLINK_IsHalted()  returns FALSE (0000ms, 2402ms total)
T9028 087:433 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2409ms total)
T9028 087:440 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2410ms total)
T9028 087:441 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2411ms total)
T9028 087:442 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2412ms total)
T9028 087:443 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2413ms total)
T9028 087:444 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2414ms total)
TB4F0 087:445 JLINK_IsHalted()  returns FALSE (0001ms, 2415ms total)
TB4F0 087:547 JLINK_IsHalted()  returns FALSE (0000ms, 2414ms total)
TB4F0 087:648 JLINK_IsHalted()  returns FALSE (0000ms, 2414ms total)
TB4F0 087:749 JLINK_IsHalted()  returns FALSE (0000ms, 2414ms total)
TB4F0 087:851 JLINK_IsHalted()  returns FALSE (0000ms, 2414ms total)
T9028 087:952 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2421ms total)
T9028 087:959 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2422ms total)
T9028 087:960 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2423ms total)
T9028 087:961 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2424ms total)
T9028 087:962 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2425ms total)
T9028 087:963 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2426ms total)
TB4F0 087:964 JLINK_IsHalted()  returns FALSE (0001ms, 2427ms total)
TB4F0 088:065 JLINK_IsHalted()  returns FALSE (0000ms, 2426ms total)
TB4F0 088:166 JLINK_IsHalted()  returns FALSE (0000ms, 2426ms total)
TB4F0 088:267 JLINK_IsHalted()  returns FALSE (0000ms, 2426ms total)
TB4F0 088:369 JLINK_IsHalted()  returns FALSE (0000ms, 2426ms total)
T9028 088:470 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2433ms total)
T9028 088:478 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2434ms total)
T9028 088:479 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 2434ms total)
T9028 088:480 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2435ms total)
T9028 088:481 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2435ms total)
T9028 088:482 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0000ms, 2435ms total)
TB4F0 088:483 JLINK_IsHalted()  returns FALSE (0000ms, 2435ms total)
TB4F0 088:584 JLINK_IsHalted()  returns FALSE (0000ms, 2435ms total)
TB4F0 088:686 JLINK_IsHalted()  returns FALSE (0000ms, 2435ms total)
TB4F0 088:787 JLINK_IsHalted()  returns FALSE (0000ms, 2435ms total)
TB4F0 088:888 JLINK_IsHalted()  returns FALSE (0000ms, 2435ms total)
T9028 088:989 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2442ms total)
T9028 088:997 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 2442ms total)
T9028 088:998 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 2442ms total)
T9028 088:998 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2443ms total)
T9028 088:999 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2444ms total)
T9028 089:000 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2445ms total)
TB4F0 089:001 JLINK_IsHalted()  returns FALSE (0001ms, 2446ms total)
TB4F0 089:104 JLINK_IsHalted()  returns FALSE (0000ms, 2445ms total)
TB4F0 089:205 JLINK_IsHalted()  returns FALSE (0000ms, 2445ms total)
TB4F0 089:306 JLINK_IsHalted()  returns FALSE (0000ms, 2445ms total)
TB4F0 089:407 JLINK_IsHalted()  returns FALSE (0000ms, 2445ms total)
T9028 089:509 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2452ms total)
T9028 089:516 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2453ms total)
T9028 089:517 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2454ms total)
T9028 089:518 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2455ms total)
T9028 089:519 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2456ms total)
T9028 089:520 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2457ms total)
TB4F0 089:521 JLINK_IsHalted()  returns FALSE (0001ms, 2458ms total)
TB4F0 089:623 JLINK_IsHalted()  returns FALSE (0000ms, 2457ms total)
TB4F0 089:724 JLINK_IsHalted()  returns FALSE (0000ms, 2457ms total)
TB4F0 089:825 JLINK_IsHalted()  returns FALSE (0000ms, 2457ms total)
TB4F0 089:927 JLINK_IsHalted()  returns FALSE (0000ms, 2457ms total)
T9028 090:028 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2464ms total)
T9028 090:035 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2465ms total)
T9028 090:036 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2466ms total)
T9028 090:037 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2467ms total)
T9028 090:038 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2468ms total)
T9028 090:039 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2469ms total)
TB4F0 090:040 JLINK_IsHalted()  returns FALSE (0001ms, 2470ms total)
TB4F0 090:141 JLINK_IsHalted()  returns FALSE (0000ms, 2469ms total)
TB4F0 090:243 JLINK_IsHalted()  returns FALSE (0000ms, 2469ms total)
TB4F0 090:343 JLINK_IsHalted()  returns FALSE (0000ms, 2469ms total)
TB4F0 090:444 JLINK_IsHalted()  returns FALSE (0000ms, 2469ms total)
T9028 090:545 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2476ms total)
T9028 090:553 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 2476ms total)
T9028 090:554 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 2476ms total)
T9028 090:555 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 2476ms total)
T9028 090:556 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2476ms total)
T9028 090:557 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0000ms, 2476ms total)
TB4F0 090:558 JLINK_IsHalted()  returns FALSE (0000ms, 2476ms total)
TB4F0 090:659 JLINK_IsHalted()  returns FALSE (0000ms, 2476ms total)
TB4F0 090:760 JLINK_IsHalted()  returns FALSE (0000ms, 2476ms total)
TB4F0 090:862 JLINK_IsHalted()  returns FALSE (0000ms, 2476ms total)
TB4F0 090:963 JLINK_IsHalted()  returns FALSE (0000ms, 2476ms total)
T9028 091:064 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2483ms total)
T9028 091:071 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2484ms total)
T9028 091:072 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2485ms total)
T9028 091:073 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2486ms total)
T9028 091:074 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2487ms total)
T9028 091:075 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2488ms total)
TB4F0 091:076 JLINK_IsHalted()  returns FALSE (0001ms, 2489ms total)
TB4F0 091:179 JLINK_IsHalted()  returns FALSE (0000ms, 2488ms total)
TB4F0 091:280 JLINK_IsHalted()  returns FALSE (0000ms, 2488ms total)
TB4F0 091:381 JLINK_IsHalted()  returns FALSE (0000ms, 2488ms total)
TB4F0 091:482 JLINK_IsHalted()  returns FALSE (0000ms, 2488ms total)
T9028 091:584 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2495ms total)
T9028 091:591 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2496ms total)
T9028 091:592 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2497ms total)
T9028 091:593 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2498ms total)
T9028 091:594 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2499ms total)
T9028 091:595 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2500ms total)
TB4F0 091:596 JLINK_IsHalted()  returns FALSE (0001ms, 2501ms total)
TB4F0 091:698 JLINK_IsHalted()  returns FALSE (0000ms, 2500ms total)
TB4F0 091:799 JLINK_IsHalted()  returns FALSE (0000ms, 2500ms total)
TB4F0 091:900 JLINK_IsHalted()  returns FALSE (0000ms, 2500ms total)
TB4F0 092:002 JLINK_IsHalted()  returns FALSE (0000ms, 2500ms total)
T9028 092:103 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2507ms total)
T9028 092:110 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2508ms total)
T9028 092:111 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2509ms total)
T9028 092:112 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2510ms total)
T9028 092:113 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2511ms total)
T9028 092:114 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2512ms total)
TB4F0 092:115 JLINK_IsHalted()  returns FALSE (0001ms, 2513ms total)
TB4F0 092:216 JLINK_IsHalted()  returns FALSE (0000ms, 2512ms total)
TB4F0 092:318 JLINK_IsHalted()  returns FALSE (0000ms, 2512ms total)
TB4F0 092:419 JLINK_IsHalted()  returns FALSE (0000ms, 2512ms total)
TB4F0 092:520 JLINK_IsHalted()  returns FALSE (0000ms, 2512ms total)
T9028 092:621 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2519ms total)
T9028 092:628 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2520ms total)
T9028 092:629 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2521ms total)
T9028 092:630 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2522ms total)
T9028 092:631 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2523ms total)
T9028 092:632 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2524ms total)
TB4F0 092:633 JLINK_IsHalted()  returns FALSE (0001ms, 2525ms total)
TB4F0 092:736 JLINK_IsHalted()  returns FALSE (0000ms, 2524ms total)
TB4F0 092:837 JLINK_IsHalted()  returns FALSE (0000ms, 2524ms total)
TB4F0 092:938 JLINK_IsHalted()  returns FALSE (0000ms, 2524ms total)
TB4F0 093:039 JLINK_IsHalted()  returns FALSE (0000ms, 2524ms total)
T9028 093:141 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2531ms total)
T9028 093:148 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2532ms total)
T9028 093:149 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2533ms total)
T9028 093:150 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2534ms total)
T9028 093:151 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2535ms total)
T9028 093:153 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2536ms total)
TB4F0 093:154 JLINK_IsHalted()  returns FALSE (0000ms, 2536ms total)
TB4F0 093:255 JLINK_IsHalted()  returns FALSE (0000ms, 2536ms total)
TB4F0 093:357 JLINK_IsHalted()  returns FALSE (0000ms, 2536ms total)
TB4F0 093:458 JLINK_IsHalted()  returns FALSE (0000ms, 2536ms total)
TB4F0 093:560 JLINK_IsHalted()  returns FALSE (0000ms, 2536ms total)
T9028 093:661 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2543ms total)
T9028 093:668 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2544ms total)
T9028 093:669 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2545ms total)
T9028 093:670 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2546ms total)
T9028 093:671 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2547ms total)
T9028 093:672 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2548ms total)
TB4F0 093:673 JLINK_IsHalted()  returns FALSE (0001ms, 2549ms total)
TB4F0 093:775 JLINK_IsHalted()  returns FALSE (0000ms, 2548ms total)
TB4F0 093:876 JLINK_IsHalted()  returns FALSE (0000ms, 2548ms total)
TB4F0 093:977 JLINK_IsHalted()  returns FALSE (0000ms, 2548ms total)
TB4F0 094:079 JLINK_IsHalted()  returns FALSE (0000ms, 2548ms total)
T9028 094:180 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2555ms total)
T9028 094:187 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2556ms total)
T9028 094:188 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2557ms total)
T9028 094:189 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2558ms total)
T9028 094:190 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2559ms total)
T9028 094:191 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2560ms total)
TB4F0 094:193 JLINK_IsHalted()  returns FALSE (0000ms, 2560ms total)
TB4F0 094:294 JLINK_IsHalted()  returns FALSE (0000ms, 2560ms total)
TB4F0 094:395 JLINK_IsHalted()  returns FALSE (0000ms, 2560ms total)
TB4F0 094:497 JLINK_IsHalted()  returns FALSE (0000ms, 2560ms total)
TB4F0 094:598 JLINK_IsHalted()  returns FALSE (0000ms, 2560ms total)
T9028 094:699 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2567ms total)
T9028 094:707 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 2567ms total)
T9028 094:708 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 2567ms total)
T9028 094:709 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2569ms total)
T9028 094:710 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2570ms total)
T9028 094:712 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2571ms total)
TB4F0 094:713 JLINK_IsHalted()  returns FALSE (0001ms, 2572ms total)
TB4F0 094:814 JLINK_IsHalted()  returns FALSE (0000ms, 2571ms total)
TB4F0 094:916 JLINK_IsHalted()  returns FALSE (0000ms, 2571ms total)
TB4F0 095:017 JLINK_IsHalted()  returns FALSE (0000ms, 2571ms total)
TB4F0 095:118 JLINK_IsHalted()  returns FALSE (0000ms, 2571ms total)
T9028 095:219 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2578ms total)
T9028 095:227 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 2578ms total)
T9028 095:228 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 2578ms total)
T9028 095:229 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 2578ms total)
T9028 095:229 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2579ms total)
T9028 095:231 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0000ms, 2579ms total)
TB4F0 095:232 JLINK_IsHalted()  returns FALSE (0000ms, 2579ms total)
TB4F0 095:333 JLINK_IsHalted()  returns FALSE (0000ms, 2579ms total)
TB4F0 095:435 JLINK_IsHalted()  returns FALSE (0000ms, 2579ms total)
TB4F0 095:536 JLINK_IsHalted()  returns FALSE (0000ms, 2579ms total)
TB4F0 095:637 JLINK_IsHalted()  returns FALSE (0000ms, 2579ms total)
T9028 095:738 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2586ms total)
T9028 095:745 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2587ms total)
T9028 095:746 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2588ms total)
T9028 095:747 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2589ms total)
T9028 095:748 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2590ms total)
T9028 095:750 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2591ms total)
TB4F0 095:751 JLINK_IsHalted()  returns FALSE (0001ms, 2592ms total)
TB4F0 095:854 JLINK_IsHalted()  returns FALSE (0000ms, 2591ms total)
TB4F0 095:955 JLINK_IsHalted()  returns FALSE (0000ms, 2591ms total)
TB4F0 096:056 JLINK_IsHalted()  returns FALSE (0000ms, 2591ms total)
TB4F0 096:158 JLINK_IsHalted()  returns FALSE (0000ms, 2591ms total)
T9028 096:258 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2598ms total)
T9028 096:265 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2599ms total)
T9028 096:266 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2600ms total)
T9028 096:267 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2601ms total)
T9028 096:268 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2602ms total)
T9028 096:269 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2603ms total)
TB4F0 096:270 JLINK_IsHalted()  returns FALSE (0001ms, 2604ms total)
TB4F0 096:373 JLINK_IsHalted()  returns FALSE (0000ms, 2603ms total)
TB4F0 096:474 JLINK_IsHalted()  returns FALSE (0000ms, 2603ms total)
TB4F0 096:575 JLINK_IsHalted()  returns FALSE (0000ms, 2603ms total)
TB4F0 096:677 JLINK_IsHalted()  returns FALSE (0000ms, 2603ms total)
T9028 096:778 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2610ms total)
T9028 096:785 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2611ms total)
T9028 096:786 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2612ms total)
T9028 096:787 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 2614ms total)
T9028 096:789 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2614ms total)
T9028 096:790 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0000ms, 2614ms total)
TB4F0 096:791 JLINK_IsHalted()  returns FALSE (0000ms, 2614ms total)
TB4F0 096:892 JLINK_IsHalted()  returns FALSE (0000ms, 2614ms total)
TB4F0 096:993 JLINK_IsHalted()  returns FALSE (0000ms, 2614ms total)
TB4F0 097:094 JLINK_IsHalted()  returns FALSE (0000ms, 2614ms total)
TB4F0 097:196 JLINK_IsHalted()  returns FALSE (0000ms, 2614ms total)
T9028 097:297 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2621ms total)
T9028 097:304 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2622ms total)
T9028 097:305 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2623ms total)
T9028 097:306 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2624ms total)
T9028 097:307 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2625ms total)
T9028 097:308 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2626ms total)
TB4F0 097:309 JLINK_IsHalted()  returns FALSE (0001ms, 2627ms total)
TB4F0 097:411 JLINK_IsHalted()  returns FALSE (0000ms, 2626ms total)
TB4F0 097:512 JLINK_IsHalted()  returns FALSE (0000ms, 2626ms total)
TB4F0 097:614 JLINK_IsHalted()  returns FALSE (0000ms, 2626ms total)
TB4F0 097:715 JLINK_IsHalted()  returns FALSE (0000ms, 2626ms total)
T9028 097:816 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2633ms total)
T9028 097:824 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 2633ms total)
T9028 097:824 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2634ms total)
T9028 097:825 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2635ms total)
T9028 097:826 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2636ms total)
T9028 097:827 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2637ms total)
TB4F0 097:829 JLINK_IsHalted()  returns FALSE (0000ms, 2637ms total)
TB4F0 097:930 JLINK_IsHalted()  returns FALSE (0000ms, 2637ms total)
TB4F0 098:032 JLINK_IsHalted()  returns FALSE (0000ms, 2637ms total)
TB4F0 098:133 JLINK_IsHalted()  returns FALSE (0000ms, 2637ms total)
TB4F0 098:234 JLINK_IsHalted()  returns FALSE (0000ms, 2637ms total)
T9028 098:336 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2644ms total)
T9028 098:343 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2645ms total)
T9028 098:344 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2646ms total)
T9028 098:345 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2647ms total)
T9028 098:346 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2648ms total)
T9028 098:347 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2649ms total)
TB4F0 098:349 JLINK_IsHalted()  returns FALSE (0000ms, 2649ms total)
TB4F0 098:450 JLINK_IsHalted()  returns FALSE (0000ms, 2649ms total)
TB4F0 098:551 JLINK_IsHalted()  returns FALSE (0000ms, 2649ms total)
TB4F0 098:652 JLINK_IsHalted()  returns FALSE (0000ms, 2649ms total)
TB4F0 098:754 JLINK_IsHalted()  returns FALSE (0000ms, 2649ms total)
T9028 098:855 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2656ms total)
T9028 098:862 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2657ms total)
T9028 098:863 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2658ms total)
T9028 098:864 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2659ms total)
T9028 098:865 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2660ms total)
T9028 098:866 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2661ms total)
TB4F0 098:867 JLINK_IsHalted()  returns FALSE (0001ms, 2662ms total)
TB4F0 098:969 JLINK_IsHalted()  returns FALSE (0000ms, 2661ms total)
TB4F0 099:070 JLINK_IsHalted()  returns FALSE (0000ms, 2661ms total)
TB4F0 099:172 JLINK_IsHalted()  returns FALSE (0000ms, 2661ms total)
TB4F0 099:273 JLINK_IsHalted()  returns FALSE (0000ms, 2661ms total)
T9028 099:374 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2668ms total)
T9028 099:381 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2669ms total)
T9028 099:382 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2670ms total)
T9028 099:383 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2671ms total)
T9028 099:384 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2672ms total)
T9028 099:385 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2673ms total)
TB4F0 099:386 JLINK_IsHalted()  returns FALSE (0001ms, 2674ms total)
TB4F0 099:488 JLINK_IsHalted()  returns FALSE (0000ms, 2673ms total)
TB4F0 099:589 JLINK_IsHalted()  returns FALSE (0000ms, 2673ms total)
TB4F0 099:691 JLINK_IsHalted()  returns FALSE (0000ms, 2673ms total)
TB4F0 099:792 JLINK_IsHalted()  returns FALSE (0000ms, 2673ms total)
T9028 099:893 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2680ms total)
T9028 099:900 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2681ms total)
T9028 099:901 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2682ms total)
T9028 099:903 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2683ms total)
T9028 099:904 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2684ms total)
T9028 099:905 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2685ms total)
TB4F0 099:906 JLINK_IsHalted()  returns FALSE (0001ms, 2686ms total)
TB4F0 100:008 JLINK_IsHalted()  returns FALSE (0000ms, 2685ms total)
TB4F0 100:110 JLINK_IsHalted()  returns FALSE (0000ms, 2685ms total)
TB4F0 100:211 JLINK_IsHalted()  returns FALSE (0000ms, 2685ms total)
TB4F0 100:312 JLINK_IsHalted()  returns FALSE (0000ms, 2685ms total)
T9028 100:418 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2692ms total)
T9028 100:431 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2693ms total)
T9028 100:438 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2694ms total)
T9028 100:453 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2695ms total)
T9028 100:454 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2696ms total)
T9028 100:455 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2697ms total)
TB4F0 100:456 JLINK_IsHalted()  returns FALSE (0001ms, 2698ms total)
TB4F0 100:558 JLINK_IsHalted()  returns FALSE (0000ms, 2697ms total)
TB4F0 100:659 JLINK_IsHalted()  returns FALSE (0000ms, 2697ms total)
TB4F0 100:760 JLINK_IsHalted()  returns FALSE (0000ms, 2697ms total)
TB4F0 100:861 JLINK_IsHalted()  returns FALSE (0000ms, 2697ms total)
T9028 100:962 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2704ms total)
T9028 100:969 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2705ms total)
T9028 100:970 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2706ms total)
T9028 100:971 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2707ms total)
T9028 100:972 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2708ms total)
T9028 100:973 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2709ms total)
TB4F0 100:974 JLINK_IsHalted()  returns FALSE (0001ms, 2710ms total)
TB4F0 101:076 JLINK_IsHalted()  returns FALSE (0000ms, 2709ms total)
TB4F0 101:177 JLINK_IsHalted()  returns FALSE (0000ms, 2709ms total)
TB4F0 101:279 JLINK_IsHalted()  returns FALSE (0000ms, 2709ms total)
TB4F0 101:380 JLINK_IsHalted()  returns FALSE (0000ms, 2709ms total)
T9028 101:481 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2716ms total)
T9028 101:488 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2717ms total)
T9028 101:489 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2718ms total)
T9028 101:490 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2719ms total)
T9028 101:491 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2720ms total)
T9028 101:492 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2721ms total)
TB4F0 101:493 JLINK_IsHalted()  returns FALSE (0001ms, 2722ms total)
TB4F0 101:595 JLINK_IsHalted()  returns FALSE (0000ms, 2721ms total)
TB4F0 101:696 JLINK_IsHalted()  returns FALSE (0000ms, 2721ms total)
TB4F0 101:797 JLINK_IsHalted()  returns FALSE (0000ms, 2721ms total)
TB4F0 101:898 JLINK_IsHalted()  returns FALSE (0000ms, 2721ms total)
T9028 101:999 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2728ms total)
T9028 102:006 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2729ms total)
T9028 102:007 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2730ms total)
T9028 102:008 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2731ms total)
T9028 102:009 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2731ms total)
T9028 102:010 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2732ms total)
TB4F0 102:011 JLINK_IsHalted()  returns FALSE (0001ms, 2733ms total)
TB4F0 102:113 JLINK_IsHalted()  returns FALSE (0000ms, 2732ms total)
TB4F0 102:214 JLINK_IsHalted()  returns FALSE (0000ms, 2732ms total)
TB4F0 102:316 JLINK_IsHalted()  returns FALSE (0000ms, 2732ms total)
TB4F0 102:417 JLINK_IsHalted()  returns FALSE (0000ms, 2732ms total)
T9028 102:518 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2739ms total)
T9028 102:525 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2740ms total)
T9028 102:526 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2741ms total)
T9028 102:527 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2742ms total)
T9028 102:528 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2743ms total)
T9028 102:529 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2744ms total)
TB4F0 102:530 JLINK_IsHalted()  returns FALSE (0001ms, 2745ms total)
TB4F0 102:632 JLINK_IsHalted()  returns FALSE (0000ms, 2744ms total)
TB4F0 102:733 JLINK_IsHalted()  returns FALSE (0000ms, 2744ms total)
TB4F0 102:834 JLINK_IsHalted()  returns FALSE (0000ms, 2744ms total)
TB4F0 102:935 JLINK_IsHalted()  returns FALSE (0000ms, 2744ms total)
T9028 103:037 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2751ms total)
T9028 103:044 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2752ms total)
T9028 103:045 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2753ms total)
T9028 103:046 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2754ms total)
T9028 103:047 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2755ms total)
T9028 103:048 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2756ms total)
TB4F0 103:049 JLINK_IsHalted()  returns FALSE (0001ms, 2757ms total)
TB4F0 103:151 JLINK_IsHalted()  returns FALSE (0000ms, 2756ms total)
TB4F0 103:252 JLINK_IsHalted()  returns FALSE (0000ms, 2756ms total)
TB4F0 103:353 JLINK_IsHalted()  returns FALSE (0000ms, 2756ms total)
TB4F0 103:455 JLINK_IsHalted()  returns FALSE (0000ms, 2756ms total)
T9028 103:556 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2763ms total)
T9028 103:563 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2764ms total)
T9028 103:564 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2765ms total)
T9028 103:565 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2766ms total)
T9028 103:566 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2767ms total)
T9028 103:567 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2768ms total)
TB4F0 103:568 JLINK_IsHalted()  returns FALSE (0001ms, 2769ms total)
TB4F0 103:669 JLINK_IsHalted()  returns FALSE (0000ms, 2768ms total)
TB4F0 103:771 JLINK_IsHalted()  returns FALSE (0000ms, 2768ms total)
TB4F0 103:872 JLINK_IsHalted()  returns FALSE (0000ms, 2768ms total)
TB4F0 103:973 JLINK_IsHalted()  returns FALSE (0000ms, 2768ms total)
T9028 104:074 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2775ms total)
T9028 104:081 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2776ms total)
T9028 104:082 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2777ms total)
T9028 104:083 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2778ms total)
T9028 104:084 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2779ms total)
T9028 104:085 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2780ms total)
TB4F0 104:086 JLINK_IsHalted()  returns FALSE (0001ms, 2781ms total)
TB4F0 104:189 JLINK_IsHalted()  returns FALSE (0000ms, 2780ms total)
TB4F0 104:290 JLINK_IsHalted()  returns FALSE (0000ms, 2780ms total)
TB4F0 104:391 JLINK_IsHalted()  returns FALSE (0000ms, 2780ms total)
TB4F0 104:492 JLINK_IsHalted()  returns FALSE (0000ms, 2780ms total)
T9028 104:594 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2787ms total)
T9028 104:601 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2788ms total)
T9028 104:602 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2789ms total)
T9028 104:603 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2790ms total)
T9028 104:604 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2791ms total)
T9028 104:605 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2792ms total)
TB4F0 104:606 JLINK_IsHalted()  returns FALSE (0001ms, 2793ms total)
TB4F0 104:707 JLINK_IsHalted()  returns FALSE (0000ms, 2792ms total)
TB4F0 104:809 JLINK_IsHalted()  returns FALSE (0000ms, 2792ms total)
TB4F0 104:910 JLINK_IsHalted()  returns FALSE (0000ms, 2792ms total)
TB4F0 105:011 JLINK_IsHalted()  returns FALSE (0000ms, 2792ms total)
T9028 105:118 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2799ms total)
T9028 105:126 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2800ms total)
T9028 105:127 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2801ms total)
T9028 105:128 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2802ms total)
T9028 105:129 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2803ms total)
T9028 105:131 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2804ms total)
TB4F0 105:137 JLINK_IsHalted()  returns FALSE (0000ms, 2804ms total)
TB4F0 105:238 JLINK_IsHalted()  returns FALSE (0000ms, 2804ms total)
TB4F0 105:339 JLINK_IsHalted()  returns FALSE (0000ms, 2804ms total)
TB4F0 105:440 JLINK_IsHalted()  returns FALSE (0000ms, 2804ms total)
TB4F0 105:541 JLINK_IsHalted()  returns FALSE (0000ms, 2804ms total)
T9028 105:642 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2811ms total)
T9028 105:650 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 2811ms total)
T9028 105:651 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2812ms total)
T9028 105:652 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2813ms total)
T9028 105:653 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2813ms total)
T9028 105:654 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2814ms total)
TB4F0 105:655 JLINK_IsHalted()  returns FALSE (0001ms, 2815ms total)
TB4F0 105:757 JLINK_IsHalted()  returns FALSE (0000ms, 2814ms total)
TB4F0 105:858 JLINK_IsHalted()  returns FALSE (0000ms, 2814ms total)
TB4F0 105:959 JLINK_IsHalted()  returns FALSE (0000ms, 2814ms total)
TB4F0 106:060 JLINK_IsHalted()  returns FALSE (0000ms, 2814ms total)
T9028 106:161 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2821ms total)
T9028 106:168 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2822ms total)
T9028 106:170 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 2822ms total)
T9028 106:171 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2823ms total)
T9028 106:172 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 2823ms total)
T9028 106:173 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2824ms total)
TB4F0 106:174 JLINK_IsHalted()  returns FALSE (0001ms, 2825ms total)
TB4F0 106:276 JLINK_IsHalted()  returns FALSE (0000ms, 2824ms total)
TB4F0 106:377 JLINK_IsHalted()  returns FALSE (0000ms, 2824ms total)
TB4F0 106:478 JLINK_IsHalted()  returns FALSE (0000ms, 2824ms total)
TB4F0 106:580 JLINK_IsHalted()  returns FALSE (0000ms, 2824ms total)
T9028 106:681 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2831ms total)
T9028 106:688 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2832ms total)
T9028 106:689 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2833ms total)
T9028 106:690 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2834ms total)
T9028 106:691 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2835ms total)
T9028 106:692 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2836ms total)
TB4F0 106:693 JLINK_IsHalted()  returns FALSE (0001ms, 2837ms total)
TB4F0 106:795 JLINK_IsHalted()  returns FALSE (0000ms, 2836ms total)
TB4F0 106:896 JLINK_IsHalted()  returns FALSE (0000ms, 2836ms total)
TB4F0 106:998 JLINK_IsHalted()  returns FALSE (0000ms, 2836ms total)
TB4F0 107:099 JLINK_IsHalted()  returns FALSE (0000ms, 2836ms total)
T9028 107:200 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2843ms total)
T9028 107:207 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2844ms total)
T9028 107:208 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2845ms total)
T9028 107:209 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2846ms total)
T9028 107:210 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2847ms total)
T9028 107:211 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2848ms total)
TB4F0 107:212 JLINK_IsHalted()  returns FALSE (0001ms, 2849ms total)
TB4F0 107:314 JLINK_IsHalted()  returns FALSE (0000ms, 2848ms total)
TB4F0 107:415 JLINK_IsHalted()  returns FALSE (0000ms, 2848ms total)
TB4F0 107:517 JLINK_IsHalted()  returns FALSE (0000ms, 2848ms total)
TB4F0 107:618 JLINK_IsHalted()  returns FALSE (0000ms, 2848ms total)
T9028 107:719 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2855ms total)
T9028 107:726 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2856ms total)
T9028 107:727 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2857ms total)
T9028 107:728 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2858ms total)
T9028 107:729 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2859ms total)
T9028 107:730 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2860ms total)
TB4F0 107:731 JLINK_IsHalted()  returns FALSE (0001ms, 2861ms total)
TB4F0 107:833 JLINK_IsHalted()  returns FALSE (0000ms, 2860ms total)
TB4F0 107:935 JLINK_IsHalted()  returns FALSE (0000ms, 2860ms total)
TB4F0 108:036 JLINK_IsHalted()  returns FALSE (0000ms, 2860ms total)
TB4F0 108:137 JLINK_IsHalted()  returns FALSE (0000ms, 2860ms total)
T9028 108:239 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2867ms total)
T9028 108:246 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2868ms total)
T9028 108:247 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2869ms total)
T9028 108:248 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2870ms total)
T9028 108:249 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2871ms total)
T9028 108:250 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2872ms total)
TB4F0 108:251 JLINK_IsHalted()  returns FALSE (0001ms, 2873ms total)
TB4F0 108:353 JLINK_IsHalted()  returns FALSE (0000ms, 2872ms total)
TB4F0 108:455 JLINK_IsHalted()  returns FALSE (0000ms, 2872ms total)
TB4F0 108:556 JLINK_IsHalted()  returns FALSE (0000ms, 2872ms total)
TB4F0 108:657 JLINK_IsHalted()  returns FALSE (0000ms, 2872ms total)
T9028 108:758 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2879ms total)
T9028 108:765 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2880ms total)
T9028 108:766 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2881ms total)
T9028 108:767 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2882ms total)
T9028 108:768 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2883ms total)
T9028 108:769 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2884ms total)
TB4F0 108:770 JLINK_IsHalted()  returns FALSE (0001ms, 2885ms total)
TB4F0 108:872 JLINK_IsHalted()  returns FALSE (0000ms, 2884ms total)
TB4F0 108:973 JLINK_IsHalted()  returns FALSE (0000ms, 2884ms total)
TB4F0 109:074 JLINK_IsHalted()  returns FALSE (0000ms, 2884ms total)
TB4F0 109:175 JLINK_IsHalted()  returns FALSE (0000ms, 2884ms total)
T9028 109:276 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2891ms total)
T9028 109:283 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2892ms total)
T9028 109:284 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2893ms total)
T9028 109:285 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2894ms total)
T9028 109:286 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2895ms total)
T9028 109:287 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2896ms total)
TB4F0 109:288 JLINK_IsHalted()  returns FALSE (0001ms, 2897ms total)
TB4F0 109:390 JLINK_IsHalted()  returns FALSE (0000ms, 2896ms total)
TB4F0 109:491 JLINK_IsHalted()  returns FALSE (0000ms, 2896ms total)
TB4F0 109:593 JLINK_IsHalted()  returns FALSE (0000ms, 2896ms total)
TB4F0 109:694 JLINK_IsHalted()  returns FALSE (0000ms, 2896ms total)
T9028 109:795 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2903ms total)
T9028 109:802 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2904ms total)
T9028 109:804 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 2904ms total)
T9028 109:805 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2905ms total)
T9028 109:806 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2906ms total)
T9028 109:807 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2907ms total)
TB4F0 109:808 JLINK_IsHalted()  returns FALSE (0001ms, 2908ms total)
TB4F0 109:910 JLINK_IsHalted()  returns FALSE (0000ms, 2907ms total)
TB4F0 110:011 JLINK_IsHalted()  returns FALSE (0000ms, 2907ms total)
TB4F0 110:112 JLINK_IsHalted()  returns FALSE (0000ms, 2907ms total)
TB4F0 110:214 JLINK_IsHalted()  returns FALSE (0000ms, 2907ms total)
T9028 110:315 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2914ms total)
T9028 110:322 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2915ms total)
T9028 110:323 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2916ms total)
T9028 110:324 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2917ms total)
T9028 110:325 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2918ms total)
T9028 110:326 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2919ms total)
TB4F0 110:327 JLINK_IsHalted()  returns FALSE (0001ms, 2920ms total)
TB4F0 110:429 JLINK_IsHalted()  returns FALSE (0000ms, 2919ms total)
TB4F0 110:530 JLINK_IsHalted()  returns FALSE (0000ms, 2919ms total)
TB4F0 110:632 JLINK_IsHalted()  returns FALSE (0000ms, 2919ms total)
TB4F0 110:733 JLINK_IsHalted()  returns FALSE (0000ms, 2919ms total)
T9028 110:834 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2926ms total)
T9028 110:842 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 2926ms total)
T9028 110:842 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2927ms total)
T9028 110:843 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2928ms total)
T9028 110:844 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2929ms total)
T9028 110:845 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2930ms total)
TB4F0 110:847 JLINK_IsHalted()  returns FALSE (0000ms, 2930ms total)
TB4F0 110:949 JLINK_IsHalted()  returns FALSE (0000ms, 2930ms total)
TB4F0 111:050 JLINK_IsHalted()  returns FALSE (0000ms, 2930ms total)
TB4F0 111:151 JLINK_IsHalted()  returns FALSE (0000ms, 2930ms total)
TB4F0 111:252 JLINK_IsHalted()  returns FALSE (0000ms, 2930ms total)
T9028 111:353 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2937ms total)
T9028 111:363 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2938ms total)
T9028 111:364 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2939ms total)
T9028 111:365 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2940ms total)
T9028 111:366 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2941ms total)
T9028 111:367 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2942ms total)
TB4F0 111:368 JLINK_IsHalted()  returns FALSE (0001ms, 2943ms total)
TB4F0 111:470 JLINK_IsHalted()  returns FALSE (0000ms, 2942ms total)
TB4F0 111:572 JLINK_IsHalted()  returns FALSE (0000ms, 2942ms total)
TB4F0 111:673 JLINK_IsHalted()  returns FALSE (0000ms, 2942ms total)
TB4F0 111:774 JLINK_IsHalted()  returns FALSE (0000ms, 2942ms total)
T9028 111:875 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0008ms, 2950ms total)
T9028 111:883 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2951ms total)
T9028 111:884 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2952ms total)
T9028 111:885 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2953ms total)
T9028 111:886 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2954ms total)
T9028 111:887 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2955ms total)
TB4F0 111:888 JLINK_IsHalted()  returns FALSE (0001ms, 2956ms total)
TB4F0 111:990 JLINK_IsHalted()  returns FALSE (0000ms, 2955ms total)
TB4F0 112:091 JLINK_IsHalted()  returns FALSE (0000ms, 2955ms total)
TB4F0 112:192 JLINK_IsHalted()  returns FALSE (0000ms, 2955ms total)
TB4F0 112:294 JLINK_IsHalted()  returns FALSE (0000ms, 2955ms total)
T9028 112:395 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2962ms total)
T9028 112:402 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2963ms total)
T9028 112:403 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2964ms total)
T9028 112:404 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2965ms total)
T9028 112:405 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2966ms total)
T9028 112:406 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2967ms total)
TB4F0 112:407 JLINK_IsHalted()  returns FALSE (0001ms, 2968ms total)
TB4F0 112:509 JLINK_IsHalted()  returns FALSE (0000ms, 2967ms total)
TB4F0 112:611 JLINK_IsHalted()  returns FALSE (0000ms, 2967ms total)
TB4F0 112:712 JLINK_IsHalted()  returns FALSE (0000ms, 2967ms total)
TB4F0 112:813 JLINK_IsHalted()  returns FALSE (0000ms, 2967ms total)
T9028 112:914 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2974ms total)
T9028 112:921 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2975ms total)
T9028 112:922 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2976ms total)
T9028 112:923 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2977ms total)
T9028 112:924 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2978ms total)
T9028 112:925 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2979ms total)
TB4F0 112:926 JLINK_IsHalted()  returns FALSE (0001ms, 2980ms total)
TB4F0 113:028 JLINK_IsHalted()  returns FALSE (0000ms, 2979ms total)
TB4F0 113:129 JLINK_IsHalted()  returns FALSE (0000ms, 2979ms total)
TB4F0 113:231 JLINK_IsHalted()  returns FALSE (0000ms, 2979ms total)
TB4F0 113:332 JLINK_IsHalted()  returns FALSE (0000ms, 2979ms total)
T9028 113:433 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2986ms total)
T9028 113:440 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2987ms total)
T9028 113:441 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 2988ms total)
T9028 113:442 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 2989ms total)
T9028 113:443 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 2990ms total)
T9028 113:444 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 2991ms total)
TB4F0 113:445 JLINK_IsHalted()  returns FALSE (0001ms, 2992ms total)
TB4F0 113:547 JLINK_IsHalted()  returns FALSE (0000ms, 2991ms total)
TB4F0 113:648 JLINK_IsHalted()  returns FALSE (0000ms, 2991ms total)
TB4F0 113:749 JLINK_IsHalted()  returns FALSE (0000ms, 2991ms total)
TB4F0 113:850 JLINK_IsHalted()  returns FALSE (0000ms, 2991ms total)
T9028 113:951 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 2998ms total)
T9028 113:958 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 2999ms total)
T9028 113:959 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3000ms total)
T9028 113:960 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3001ms total)
T9028 113:961 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3002ms total)
T9028 113:963 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3003ms total)
TB4F0 113:964 JLINK_IsHalted()  returns FALSE (0000ms, 3003ms total)
TB4F0 114:065 JLINK_IsHalted()  returns FALSE (0000ms, 3003ms total)
TB4F0 114:167 JLINK_IsHalted()  returns FALSE (0000ms, 3003ms total)
TB4F0 114:268 JLINK_IsHalted()  returns FALSE (0000ms, 3003ms total)
TB4F0 114:369 JLINK_IsHalted()  returns FALSE (0000ms, 3003ms total)
T9028 114:470 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3010ms total)
T9028 114:477 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3011ms total)
T9028 114:478 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3012ms total)
T9028 114:479 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3013ms total)
T9028 114:480 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3014ms total)
T9028 114:481 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3015ms total)
TB4F0 114:483 JLINK_IsHalted()  returns FALSE (0000ms, 3015ms total)
TB4F0 114:584 JLINK_IsHalted()  returns FALSE (0000ms, 3015ms total)
TB4F0 114:686 JLINK_IsHalted()  returns FALSE (0000ms, 3015ms total)
TB4F0 114:787 JLINK_IsHalted()  returns FALSE (0000ms, 3015ms total)
TB4F0 114:888 JLINK_IsHalted()  returns FALSE (0000ms, 3015ms total)
T9028 114:989 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3022ms total)
T9028 114:996 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3023ms total)
T9028 114:997 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3024ms total)
T9028 114:998 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3025ms total)
T9028 114:999 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3026ms total)
T9028 115:000 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3027ms total)
TB4F0 115:001 JLINK_IsHalted()  returns FALSE (0001ms, 3028ms total)
TB4F0 115:103 JLINK_IsHalted()  returns FALSE (0000ms, 3027ms total)
TB4F0 115:204 JLINK_IsHalted()  returns FALSE (0000ms, 3027ms total)
TB4F0 115:306 JLINK_IsHalted()  returns FALSE (0000ms, 3027ms total)
TB4F0 115:407 JLINK_IsHalted()  returns FALSE (0000ms, 3027ms total)
T9028 115:508 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3034ms total)
T9028 115:515 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3035ms total)
T9028 115:516 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3036ms total)
T9028 115:517 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3037ms total)
T9028 115:518 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3038ms total)
T9028 115:520 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0000ms, 3038ms total)
TB4F0 115:521 JLINK_IsHalted()  returns FALSE (0000ms, 3038ms total)
TB4F0 115:623 JLINK_IsHalted()  returns FALSE (0000ms, 3038ms total)
TB4F0 115:724 JLINK_IsHalted()  returns FALSE (0000ms, 3038ms total)
TB4F0 115:825 JLINK_IsHalted()  returns FALSE (0000ms, 3038ms total)
TB4F0 115:926 JLINK_IsHalted()  returns FALSE (0000ms, 3038ms total)
T9028 116:028 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3045ms total)
T9028 116:035 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3046ms total)
T9028 116:036 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3047ms total)
T9028 116:037 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3048ms total)
T9028 116:038 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3049ms total)
T9028 116:039 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3050ms total)
TB4F0 116:040 JLINK_IsHalted()  returns FALSE (0001ms, 3051ms total)
TB4F0 116:142 JLINK_IsHalted()  returns FALSE (0000ms, 3050ms total)
TB4F0 116:243 JLINK_IsHalted()  returns FALSE (0000ms, 3050ms total)
TB4F0 116:344 JLINK_IsHalted()  returns FALSE (0000ms, 3050ms total)
TB4F0 116:446 JLINK_IsHalted()  returns FALSE (0000ms, 3050ms total)
T9028 116:547 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3057ms total)
T9028 116:554 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3058ms total)
T9028 116:555 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3059ms total)
T9028 116:556 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3060ms total)
T9028 116:557 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3061ms total)
T9028 116:558 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3062ms total)
TB4F0 116:559 JLINK_IsHalted()  returns FALSE (0001ms, 3063ms total)
TB4F0 116:661 JLINK_IsHalted()  returns FALSE (0000ms, 3062ms total)
TB4F0 116:762 JLINK_IsHalted()  returns FALSE (0000ms, 3062ms total)
TB4F0 116:863 JLINK_IsHalted()  returns FALSE (0000ms, 3062ms total)
TB4F0 116:964 JLINK_IsHalted()  returns FALSE (0000ms, 3062ms total)
T9028 117:066 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3069ms total)
T9028 117:073 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3070ms total)
T9028 117:074 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3071ms total)
T9028 117:075 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3072ms total)
T9028 117:076 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3072ms total)
T9028 117:077 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3073ms total)
TB4F0 117:078 JLINK_IsHalted()  returns FALSE (0001ms, 3074ms total)
TB4F0 117:179 JLINK_IsHalted()  returns FALSE (0000ms, 3073ms total)
TB4F0 117:280 JLINK_IsHalted()  returns FALSE (0000ms, 3073ms total)
TB4F0 117:381 JLINK_IsHalted()  returns FALSE (0000ms, 3073ms total)
TB4F0 117:483 JLINK_IsHalted()  returns FALSE (0000ms, 3073ms total)
T9028 117:584 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3080ms total)
T9028 117:592 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3081ms total)
T9028 117:593 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3082ms total)
T9028 117:594 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3083ms total)
T9028 117:595 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3083ms total)
T9028 117:596 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3084ms total)
TB4F0 117:597 JLINK_IsHalted()  returns FALSE (0001ms, 3085ms total)
TB4F0 117:698 JLINK_IsHalted()  returns FALSE (0000ms, 3084ms total)
TB4F0 117:800 JLINK_IsHalted()  returns FALSE (0000ms, 3084ms total)
TB4F0 117:901 JLINK_IsHalted()  returns FALSE (0000ms, 3084ms total)
TB4F0 118:002 JLINK_IsHalted()  returns FALSE (0000ms, 3084ms total)
T9028 118:103 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0008ms, 3092ms total)
T9028 118:111 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3093ms total)
T9028 118:112 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 3093ms total)
T9028 118:113 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3094ms total)
T9028 118:114 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3094ms total)
T9028 118:115 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0000ms, 3094ms total)
TB4F0 118:116 JLINK_IsHalted()  returns FALSE (0000ms, 3094ms total)
TB4F0 118:218 JLINK_IsHalted()  returns FALSE (0000ms, 3094ms total)
TB4F0 118:319 JLINK_IsHalted()  returns FALSE (0000ms, 3094ms total)
TB4F0 118:420 JLINK_IsHalted()  returns FALSE (0000ms, 3094ms total)
TB4F0 118:521 JLINK_IsHalted()  returns FALSE (0000ms, 3094ms total)
T9028 118:623 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3101ms total)
T9028 118:630 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3102ms total)
T9028 118:631 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3103ms total)
T9028 118:632 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3104ms total)
T9028 118:633 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3105ms total)
T9028 118:634 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3106ms total)
TB4F0 118:635 JLINK_IsHalted()  returns FALSE (0001ms, 3107ms total)
TB4F0 118:737 JLINK_IsHalted()  returns FALSE (0000ms, 3106ms total)
TB4F0 118:838 JLINK_IsHalted()  returns FALSE (0000ms, 3106ms total)
TB4F0 118:940 JLINK_IsHalted()  returns FALSE (0000ms, 3106ms total)
TB4F0 119:041 JLINK_IsHalted()  returns FALSE (0000ms, 3106ms total)
T9028 119:142 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3113ms total)
T9028 119:149 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3114ms total)
T9028 119:150 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3115ms total)
T9028 119:151 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3116ms total)
T9028 119:152 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3117ms total)
T9028 119:154 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3118ms total)
TB4F0 119:155 JLINK_IsHalted()  returns FALSE (0001ms, 3119ms total)
TB4F0 119:256 JLINK_IsHalted()  returns FALSE (0000ms, 3118ms total)
TB4F0 119:358 JLINK_IsHalted()  returns FALSE (0000ms, 3118ms total)
TB4F0 119:459 JLINK_IsHalted()  returns FALSE (0000ms, 3118ms total)
TB4F0 119:560 JLINK_IsHalted()  returns FALSE (0000ms, 3118ms total)
T9028 119:661 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3125ms total)
T9028 119:668 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3126ms total)
T9028 119:670 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 3126ms total)
T9028 119:670 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3127ms total)
T9028 119:671 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3128ms total)
T9028 119:673 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0000ms, 3128ms total)
TB4F0 119:674 JLINK_IsHalted()  returns FALSE (0000ms, 3128ms total)
TB4F0 119:776 JLINK_IsHalted()  returns FALSE (0000ms, 3128ms total)
TB4F0 119:877 JLINK_IsHalted()  returns FALSE (0000ms, 3128ms total)
TB4F0 119:978 JLINK_IsHalted()  returns FALSE (0000ms, 3128ms total)
TB4F0 120:079 JLINK_IsHalted()  returns FALSE (0000ms, 3128ms total)
T9028 120:180 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3135ms total)
T9028 120:188 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 3135ms total)
T9028 120:189 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 3135ms total)
T9028 120:190 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3136ms total)
T9028 120:191 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3136ms total)
T9028 120:192 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3137ms total)
TB4F0 120:193 JLINK_IsHalted()  returns FALSE (0001ms, 3138ms total)
TB4F0 120:295 JLINK_IsHalted()  returns FALSE (0000ms, 3137ms total)
TB4F0 120:396 JLINK_IsHalted()  returns FALSE (0000ms, 3137ms total)
TB4F0 120:497 JLINK_IsHalted()  returns FALSE (0000ms, 3137ms total)
TB4F0 120:599 JLINK_IsHalted()  returns FALSE (0000ms, 3137ms total)
T9028 120:700 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3144ms total)
T9028 120:707 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3145ms total)
T9028 120:708 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3146ms total)
T9028 120:709 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3147ms total)
T9028 120:710 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3148ms total)
T9028 120:711 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3149ms total)
TB4F0 120:712 JLINK_IsHalted()  returns FALSE (0001ms, 3150ms total)
TB4F0 120:813 JLINK_IsHalted()  returns FALSE (0000ms, 3149ms total)
TB4F0 120:914 JLINK_IsHalted()  returns FALSE (0000ms, 3149ms total)
TB4F0 121:016 JLINK_IsHalted()  returns FALSE (0000ms, 3149ms total)
TB4F0 121:117 JLINK_IsHalted()  returns FALSE (0000ms, 3149ms total)
T9028 121:218 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3156ms total)
T9028 121:225 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3157ms total)
T9028 121:226 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3158ms total)
T9028 121:227 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3159ms total)
T9028 121:228 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3160ms total)
T9028 121:229 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3161ms total)
TB4F0 121:230 JLINK_IsHalted()  returns FALSE (0001ms, 3162ms total)
TB4F0 121:332 JLINK_IsHalted()  returns FALSE (0000ms, 3161ms total)
TB4F0 121:434 JLINK_IsHalted()  returns FALSE (0000ms, 3161ms total)
TB4F0 121:535 JLINK_IsHalted()  returns FALSE (0000ms, 3161ms total)
TB4F0 121:636 JLINK_IsHalted()  returns FALSE (0000ms, 3161ms total)
T9028 121:738 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3168ms total)
T9028 121:745 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3169ms total)
T9028 121:746 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3170ms total)
T9028 121:747 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3171ms total)
T9028 121:748 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3172ms total)
T9028 121:749 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3173ms total)
TB4F0 121:750 JLINK_IsHalted()  returns FALSE (0001ms, 3174ms total)
TB4F0 121:851 JLINK_IsHalted()  returns FALSE (0000ms, 3173ms total)
TB4F0 121:952 JLINK_IsHalted()  returns FALSE (0000ms, 3173ms total)
TB4F0 122:053 JLINK_IsHalted()  returns FALSE (0000ms, 3173ms total)
TB4F0 122:155 JLINK_IsHalted()  returns FALSE (0000ms, 3173ms total)
T9028 122:256 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3180ms total)
T9028 122:263 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3181ms total)
T9028 122:264 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3182ms total)
T9028 122:265 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3183ms total)
T9028 122:266 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3184ms total)
T9028 122:268 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3185ms total)
TB4F0 122:269 JLINK_IsHalted()  returns FALSE (0001ms, 3186ms total)
TB4F0 122:370 JLINK_IsHalted()  returns FALSE (0000ms, 3185ms total)
TB4F0 122:471 JLINK_IsHalted()  returns FALSE (0000ms, 3185ms total)
TB4F0 122:573 JLINK_IsHalted()  returns FALSE (0000ms, 3185ms total)
TB4F0 122:674 JLINK_IsHalted()  returns FALSE (0000ms, 3185ms total)
T9028 122:775 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3192ms total)
T9028 122:783 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 3192ms total)
T9028 122:784 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 3192ms total)
T9028 122:785 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3193ms total)
T9028 122:786 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3193ms total)
T9028 122:787 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3194ms total)
TB4F0 122:788 JLINK_IsHalted()  returns FALSE (0000ms, 3194ms total)
TB4F0 122:890 JLINK_IsHalted()  returns FALSE (0000ms, 3194ms total)
TB4F0 122:991 JLINK_IsHalted()  returns FALSE (0000ms, 3194ms total)
TB4F0 123:092 JLINK_IsHalted()  returns FALSE (0000ms, 3194ms total)
TB4F0 123:193 JLINK_IsHalted()  returns FALSE (0001ms, 3195ms total)
T9028 123:294 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3201ms total)
T9028 123:302 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 3201ms total)
T9028 123:302 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3202ms total)
T9028 123:303 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3203ms total)
T9028 123:304 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3204ms total)
T9028 123:305 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3205ms total)
TB4F0 123:306 JLINK_IsHalted()  returns FALSE (0001ms, 3206ms total)
TB4F0 123:409 JLINK_IsHalted()  returns FALSE (0000ms, 3205ms total)
TB4F0 123:510 JLINK_IsHalted()  returns FALSE (0000ms, 3205ms total)
TB4F0 123:611 JLINK_IsHalted()  returns FALSE (0000ms, 3205ms total)
TB4F0 123:713 JLINK_IsHalted()  returns FALSE (0000ms, 3205ms total)
T9028 123:814 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3212ms total)
T9028 123:821 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3213ms total)
T9028 123:822 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3214ms total)
T9028 123:823 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3215ms total)
T9028 123:824 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3216ms total)
T9028 123:825 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3217ms total)
TB4F0 123:826 JLINK_IsHalted()  returns FALSE (0001ms, 3218ms total)
TB4F0 123:928 JLINK_IsHalted()  returns FALSE (0000ms, 3217ms total)
TB4F0 124:029 JLINK_IsHalted()  returns FALSE (0000ms, 3217ms total)
TB4F0 124:130 JLINK_IsHalted()  returns FALSE (0000ms, 3217ms total)
TB4F0 124:232 JLINK_IsHalted()  returns FALSE (0000ms, 3217ms total)
T9028 124:333 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3224ms total)
T9028 124:341 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 3224ms total)
T9028 124:342 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 3224ms total)
T9028 124:343 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3225ms total)
T9028 124:344 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3225ms total)
T9028 124:345 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3226ms total)
TB4F0 124:346 JLINK_IsHalted()  returns FALSE (0000ms, 3226ms total)
TB4F0 124:447 JLINK_IsHalted()  returns FALSE (0000ms, 3226ms total)
TB4F0 124:548 JLINK_IsHalted()  returns FALSE (0000ms, 3226ms total)
TB4F0 124:650 JLINK_IsHalted()  returns FALSE (0000ms, 3226ms total)
TB4F0 124:751 JLINK_IsHalted()  returns FALSE (0000ms, 3226ms total)
T9028 124:852 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3233ms total)
T9028 124:859 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3234ms total)
T9028 124:860 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3235ms total)
T9028 124:861 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3236ms total)
T9028 124:862 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3237ms total)
T9028 124:863 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3238ms total)
TB4F0 124:864 JLINK_IsHalted()  returns FALSE (0001ms, 3239ms total)
TB4F0 124:966 JLINK_IsHalted()  returns FALSE (0000ms, 3238ms total)
TB4F0 125:067 JLINK_IsHalted()  returns FALSE (0000ms, 3238ms total)
TB4F0 125:169 JLINK_IsHalted()  returns FALSE (0000ms, 3238ms total)
TB4F0 125:270 JLINK_IsHalted()  returns FALSE (0000ms, 3238ms total)
T9028 125:371 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3245ms total)
T9028 125:378 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3246ms total)
T9028 125:379 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3247ms total)
T9028 125:380 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3248ms total)
T9028 125:381 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3249ms total)
T9028 125:382 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3250ms total)
TB4F0 125:383 JLINK_IsHalted()  returns FALSE (0001ms, 3251ms total)
TB4F0 125:485 JLINK_IsHalted()  returns FALSE (0000ms, 3250ms total)
TB4F0 125:587 JLINK_IsHalted()  returns FALSE (0000ms, 3250ms total)
TB4F0 125:688 JLINK_IsHalted()  returns FALSE (0000ms, 3250ms total)
TB4F0 125:789 JLINK_IsHalted()  returns FALSE (0000ms, 3250ms total)
T9028 125:890 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3257ms total)
T9028 125:897 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3258ms total)
T9028 125:898 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3259ms total)
T9028 125:899 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3260ms total)
T9028 125:900 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3261ms total)
T9028 125:901 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3262ms total)
TB4F0 125:902 JLINK_IsHalted()  returns FALSE (0001ms, 3263ms total)
TB4F0 126:005 JLINK_IsHalted()  returns FALSE (0000ms, 3262ms total)
TB4F0 126:106 JLINK_IsHalted()  returns FALSE (0000ms, 3262ms total)
TB4F0 126:207 JLINK_IsHalted()  returns FALSE (0000ms, 3262ms total)
TB4F0 126:308 JLINK_IsHalted()  returns FALSE (0000ms, 3262ms total)
T9028 126:409 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3269ms total)
T9028 126:416 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3270ms total)
T9028 126:417 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3271ms total)
T9028 126:418 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3272ms total)
T9028 126:419 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3273ms total)
T9028 126:420 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3274ms total)
TB4F0 126:421 JLINK_IsHalted()  returns FALSE (0001ms, 3275ms total)
TB4F0 126:523 JLINK_IsHalted()  returns FALSE (0000ms, 3274ms total)
TB4F0 126:624 JLINK_IsHalted()  returns FALSE (0000ms, 3274ms total)
TB4F0 126:725 JLINK_IsHalted()  returns FALSE (0000ms, 3274ms total)
TB4F0 126:826 JLINK_IsHalted()  returns FALSE (0000ms, 3274ms total)
T9028 126:927 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3281ms total)
T9028 126:934 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3282ms total)
T9028 126:935 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3283ms total)
T9028 126:936 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3284ms total)
T9028 126:937 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3284ms total)
T9028 126:938 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3285ms total)
TB4F0 126:939 JLINK_IsHalted()  returns FALSE (0001ms, 3286ms total)
TB4F0 127:041 JLINK_IsHalted()  returns FALSE (0000ms, 3285ms total)
TB4F0 127:142 JLINK_IsHalted()  returns FALSE (0000ms, 3285ms total)
TB4F0 127:243 JLINK_IsHalted()  returns FALSE (0000ms, 3285ms total)
TB4F0 127:344 JLINK_IsHalted()  returns FALSE (0000ms, 3285ms total)
T9028 127:445 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3292ms total)
T9028 127:452 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3293ms total)
T9028 127:453 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3294ms total)
T9028 127:454 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3295ms total)
T9028 127:455 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3296ms total)
T9028 127:456 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3297ms total)
TB4F0 127:458 JLINK_IsHalted()  returns FALSE (0000ms, 3297ms total)
TB4F0 127:559 JLINK_IsHalted()  returns FALSE (0000ms, 3297ms total)
TB4F0 127:660 JLINK_IsHalted()  returns FALSE (0000ms, 3297ms total)
TB4F0 127:762 JLINK_IsHalted()  returns FALSE (0000ms, 3297ms total)
TB4F0 127:863 JLINK_IsHalted()  returns FALSE (0000ms, 3297ms total)
T9028 127:964 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3304ms total)
T9028 127:971 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3305ms total)
T9028 127:972 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3306ms total)
T9028 127:973 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3307ms total)
T9028 127:974 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3308ms total)
T9028 127:975 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3309ms total)
TB4F0 127:976 JLINK_IsHalted()  returns FALSE (0001ms, 3310ms total)
TB4F0 128:079 JLINK_IsHalted()  returns FALSE (0000ms, 3309ms total)
TB4F0 128:180 JLINK_IsHalted()  returns FALSE (0000ms, 3309ms total)
TB4F0 128:281 JLINK_IsHalted()  returns FALSE (0000ms, 3309ms total)
TB4F0 128:382 JLINK_IsHalted()  returns FALSE (0000ms, 3309ms total)
T9028 128:483 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3316ms total)
T9028 128:491 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 3316ms total)
T9028 128:491 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3317ms total)
T9028 128:492 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3318ms total)
T9028 128:493 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3319ms total)
T9028 128:494 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3320ms total)
TB4F0 128:495 JLINK_IsHalted()  returns FALSE (0001ms, 3321ms total)
TB4F0 128:598 JLINK_IsHalted()  returns FALSE (0000ms, 3320ms total)
TB4F0 128:699 JLINK_IsHalted()  returns FALSE (0000ms, 3320ms total)
TB4F0 128:800 JLINK_IsHalted()  returns FALSE (0000ms, 3320ms total)
TB4F0 128:901 JLINK_IsHalted()  returns FALSE (0000ms, 3320ms total)
T9028 129:003 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3327ms total)
T9028 129:010 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3328ms total)
T9028 129:011 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3329ms total)
T9028 129:012 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3330ms total)
T9028 129:013 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3331ms total)
T9028 129:015 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0000ms, 3331ms total)
TB4F0 129:016 JLINK_IsHalted()  returns FALSE (0000ms, 3331ms total)
TB4F0 129:117 JLINK_IsHalted()  returns FALSE (0000ms, 3331ms total)
TB4F0 129:218 JLINK_IsHalted()  returns FALSE (0000ms, 3331ms total)
TB4F0 129:319 JLINK_IsHalted()  returns FALSE (0000ms, 3331ms total)
TB4F0 129:420 JLINK_IsHalted()  returns FALSE (0000ms, 3331ms total)
T9028 129:522 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3338ms total)
T9028 129:529 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3339ms total)
T9028 129:530 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3340ms total)
T9028 129:531 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3341ms total)
T9028 129:532 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3342ms total)
T9028 129:533 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3343ms total)
TB4F0 129:534 JLINK_IsHalted()  returns FALSE (0001ms, 3344ms total)
TB4F0 129:636 JLINK_IsHalted()  returns FALSE (0000ms, 3343ms total)
TB4F0 129:737 JLINK_IsHalted()  returns FALSE (0000ms, 3343ms total)
TB4F0 129:838 JLINK_IsHalted()  returns FALSE (0000ms, 3343ms total)
TB4F0 129:940 JLINK_IsHalted()  returns FALSE (0000ms, 3343ms total)
T9028 130:041 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3350ms total)
T9028 130:048 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3351ms total)
T9028 130:049 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3352ms total)
T9028 130:050 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3353ms total)
T9028 130:051 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3354ms total)
T9028 130:052 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3355ms total)
TB4F0 130:053 JLINK_IsHalted()  returns FALSE (0001ms, 3356ms total)
TB4F0 130:155 JLINK_IsHalted()  returns FALSE (0000ms, 3355ms total)
TB4F0 130:256 JLINK_IsHalted()  returns FALSE (0000ms, 3355ms total)
TB4F0 130:357 JLINK_IsHalted()  returns FALSE (0000ms, 3355ms total)
TB4F0 130:458 JLINK_IsHalted()  returns FALSE (0000ms, 3355ms total)
T9028 130:559 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3362ms total)
T9028 130:567 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 3362ms total)
T9028 130:567 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3363ms total)
T9028 130:568 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3364ms total)
T9028 130:569 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3365ms total)
T9028 130:570 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3366ms total)
TB4F0 130:572 JLINK_IsHalted()  returns FALSE (0000ms, 3366ms total)
TB4F0 130:673 JLINK_IsHalted()  returns FALSE (0000ms, 3366ms total)
TB4F0 130:774 JLINK_IsHalted()  returns FALSE (0000ms, 3366ms total)
TB4F0 130:875 JLINK_IsHalted()  returns FALSE (0001ms, 3367ms total)
TB4F0 130:977 JLINK_IsHalted()  returns FALSE (0000ms, 3366ms total)
T9028 131:078 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3373ms total)
T9028 131:085 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3374ms total)
T9028 131:086 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3375ms total)
T9028 131:087 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3376ms total)
T9028 131:088 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3377ms total)
T9028 131:089 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3378ms total)
TB4F0 131:090 JLINK_IsHalted()  returns FALSE (0001ms, 3379ms total)
TB4F0 131:193 JLINK_IsHalted()  returns FALSE (0000ms, 3378ms total)
TB4F0 131:294 JLINK_IsHalted()  returns FALSE (0000ms, 3378ms total)
TB4F0 131:395 JLINK_IsHalted()  returns FALSE (0000ms, 3378ms total)
TB4F0 131:497 JLINK_IsHalted()  returns FALSE (0000ms, 3378ms total)
T9028 131:598 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3385ms total)
T9028 131:606 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 3385ms total)
T9028 131:607 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 3385ms total)
T9028 131:607 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3386ms total)
T9028 131:608 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3387ms total)
T9028 131:609 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3388ms total)
TB4F0 131:611 JLINK_IsHalted()  returns FALSE (0000ms, 3388ms total)
TB4F0 131:712 JLINK_IsHalted()  returns FALSE (0000ms, 3388ms total)
TB4F0 131:813 JLINK_IsHalted()  returns FALSE (0000ms, 3388ms total)
TB4F0 131:915 JLINK_IsHalted()  returns FALSE (0000ms, 3388ms total)
TB4F0 132:016 JLINK_IsHalted()  returns FALSE (0000ms, 3388ms total)
T9028 132:117 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3395ms total)
T9028 132:124 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3396ms total)
T9028 132:125 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3397ms total)
T9028 132:126 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3398ms total)
T9028 132:127 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3399ms total)
T9028 132:128 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3400ms total)
TB4F0 132:129 JLINK_IsHalted()  returns FALSE (0001ms, 3401ms total)
TB4F0 132:231 JLINK_IsHalted()  returns FALSE (0000ms, 3400ms total)
TB4F0 132:332 JLINK_IsHalted()  returns FALSE (0000ms, 3400ms total)
TB4F0 132:433 JLINK_IsHalted()  returns FALSE (0000ms, 3400ms total)
TB4F0 132:535 JLINK_IsHalted()  returns FALSE (0000ms, 3400ms total)
T9028 132:636 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3407ms total)
T9028 132:643 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3408ms total)
T9028 132:644 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3409ms total)
T9028 132:645 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3410ms total)
T9028 132:646 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3411ms total)
T9028 132:647 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3412ms total)
TB4F0 132:648 JLINK_IsHalted()  returns FALSE (0001ms, 3413ms total)
TB4F0 132:750 JLINK_IsHalted()  returns FALSE (0000ms, 3412ms total)
TB4F0 132:852 JLINK_IsHalted()  returns FALSE (0000ms, 3412ms total)
TB4F0 132:953 JLINK_IsHalted()  returns FALSE (0000ms, 3412ms total)
TB4F0 133:055 JLINK_IsHalted()  returns FALSE (0000ms, 3412ms total)
T9028 133:156 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3419ms total)
T9028 133:163 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3420ms total)
T9028 133:164 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3421ms total)
T9028 133:165 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3422ms total)
T9028 133:166 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3423ms total)
T9028 133:167 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3424ms total)
TB4F0 133:168 JLINK_IsHalted()  returns FALSE (0001ms, 3425ms total)
TB4F0 133:270 JLINK_IsHalted()  returns FALSE (0000ms, 3424ms total)
TB4F0 133:371 JLINK_IsHalted()  returns FALSE (0000ms, 3424ms total)
TB4F0 133:472 JLINK_IsHalted()  returns FALSE (0000ms, 3424ms total)
TB4F0 133:574 JLINK_IsHalted()  returns FALSE (0000ms, 3424ms total)
T9028 133:675 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3431ms total)
T9028 133:682 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3432ms total)
T9028 133:683 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3433ms total)
T9028 133:684 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3434ms total)
T9028 133:685 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3435ms total)
T9028 133:686 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3436ms total)
TB4F0 133:687 JLINK_IsHalted()  returns FALSE (0001ms, 3437ms total)
TB4F0 133:788 JLINK_IsHalted()  returns FALSE (0000ms, 3436ms total)
TB4F0 133:889 JLINK_IsHalted()  returns FALSE (0000ms, 3436ms total)
TB4F0 133:991 JLINK_IsHalted()  returns FALSE (0000ms, 3436ms total)
TB4F0 134:092 JLINK_IsHalted()  returns FALSE (0000ms, 3436ms total)
T9028 134:193 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3443ms total)
T9028 134:200 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3444ms total)
T9028 134:201 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3445ms total)
T9028 134:202 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3446ms total)
T9028 134:203 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3447ms total)
T9028 134:204 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3448ms total)
TB4F0 134:205 JLINK_IsHalted()  returns FALSE (0001ms, 3449ms total)
TB4F0 134:307 JLINK_IsHalted()  returns FALSE (0000ms, 3448ms total)
TB4F0 134:409 JLINK_IsHalted()  returns FALSE (0000ms, 3448ms total)
TB4F0 134:510 JLINK_IsHalted()  returns FALSE (0000ms, 3448ms total)
TB4F0 134:611 JLINK_IsHalted()  returns FALSE (0000ms, 3448ms total)
T9028 134:712 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3455ms total)
T9028 134:720 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 3455ms total)
T9028 134:721 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 3455ms total)
T9028 134:721 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3456ms total)
T9028 134:722 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3457ms total)
T9028 134:723 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3458ms total)
TB4F0 134:724 JLINK_IsHalted()  returns FALSE (0001ms, 3459ms total)
TB4F0 134:827 JLINK_IsHalted()  returns FALSE (0000ms, 3458ms total)
TB4F0 134:928 JLINK_IsHalted()  returns FALSE (0000ms, 3458ms total)
TB4F0 135:029 JLINK_IsHalted()  returns FALSE (0000ms, 3458ms total)
TB4F0 135:130 JLINK_IsHalted()  returns FALSE (0000ms, 3458ms total)
T9028 135:231 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3465ms total)
T9028 135:238 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3466ms total)
T9028 135:240 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 3466ms total)
T9028 135:240 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3467ms total)
T9028 135:241 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3468ms total)
T9028 135:242 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3469ms total)
TB4F0 135:243 JLINK_IsHalted()  returns FALSE (0001ms, 3470ms total)
TB4F0 135:345 JLINK_IsHalted()  returns FALSE (0000ms, 3469ms total)
TB4F0 135:446 JLINK_IsHalted()  returns FALSE (0000ms, 3469ms total)
TB4F0 135:548 JLINK_IsHalted()  returns FALSE (0000ms, 3469ms total)
TB4F0 135:649 JLINK_IsHalted()  returns FALSE (0000ms, 3469ms total)
T9028 135:750 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3476ms total)
T9028 135:757 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3477ms total)
T9028 135:758 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3478ms total)
T9028 135:759 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3479ms total)
T9028 135:760 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3480ms total)
T9028 135:761 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3481ms total)
TB4F0 135:763 JLINK_IsHalted()  returns FALSE (0000ms, 3481ms total)
TB4F0 135:865 JLINK_IsHalted()  returns FALSE (0000ms, 3481ms total)
TB4F0 135:966 JLINK_IsHalted()  returns FALSE (0000ms, 3481ms total)
TB4F0 136:067 JLINK_IsHalted()  returns FALSE (0000ms, 3481ms total)
TB4F0 136:168 JLINK_IsHalted()  returns FALSE (0000ms, 3481ms total)
T9028 136:270 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3488ms total)
T9028 136:277 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3489ms total)
T9028 136:278 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3490ms total)
T9028 136:279 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3491ms total)
T9028 136:280 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3492ms total)
T9028 136:281 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3493ms total)
TB4F0 136:282 JLINK_IsHalted()  returns FALSE (0001ms, 3494ms total)
TB4F0 136:384 JLINK_IsHalted()  returns FALSE (0000ms, 3493ms total)
TB4F0 136:485 JLINK_IsHalted()  returns FALSE (0000ms, 3493ms total)
TB4F0 136:586 JLINK_IsHalted()  returns FALSE (0000ms, 3493ms total)
TB4F0 136:687 JLINK_IsHalted()  returns FALSE (0000ms, 3493ms total)
T9028 136:789 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3500ms total)
T9028 136:797 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3501ms total)
T9028 136:798 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3502ms total)
T9028 136:799 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3503ms total)
T9028 136:800 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3503ms total)
T9028 136:801 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3504ms total)
TB4F0 136:802 JLINK_IsHalted()  returns FALSE (0000ms, 3504ms total)
TB4F0 136:903 JLINK_IsHalted()  returns FALSE (0000ms, 3504ms total)
TB4F0 137:004 JLINK_IsHalted()  returns FALSE (0000ms, 3504ms total)
TB4F0 137:105 JLINK_IsHalted()  returns FALSE (0000ms, 3504ms total)
TB4F0 137:206 JLINK_IsHalted()  returns FALSE (0000ms, 3504ms total)
T9028 137:307 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3511ms total)
T9028 137:314 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3512ms total)
T9028 137:315 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3513ms total)
T9028 137:316 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3514ms total)
T9028 137:317 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3515ms total)
T9028 137:318 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3516ms total)
TB4F0 137:319 JLINK_IsHalted()  returns FALSE (0001ms, 3517ms total)
TB4F0 137:421 JLINK_IsHalted()  returns FALSE (0000ms, 3516ms total)
TB4F0 137:522 JLINK_IsHalted()  returns FALSE (0000ms, 3516ms total)
TB4F0 137:623 JLINK_IsHalted()  returns FALSE (0000ms, 3516ms total)
TB4F0 137:724 JLINK_IsHalted()  returns FALSE (0000ms, 3516ms total)
T9028 137:826 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3523ms total)
T9028 137:833 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3524ms total)
T9028 137:834 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3525ms total)
T9028 137:835 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3526ms total)
T9028 137:836 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3527ms total)
T9028 137:837 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3528ms total)
TB4F0 137:838 JLINK_IsHalted()  returns FALSE (0001ms, 3529ms total)
TB4F0 137:940 JLINK_IsHalted()  returns FALSE (0000ms, 3528ms total)
TB4F0 138:041 JLINK_IsHalted()  returns FALSE (0000ms, 3528ms total)
TB4F0 138:142 JLINK_IsHalted()  returns FALSE (0000ms, 3528ms total)
TB4F0 138:243 JLINK_IsHalted()  returns FALSE (0000ms, 3528ms total)
T9028 138:344 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3535ms total)
T9028 138:352 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 3535ms total)
T9028 138:353 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3536ms total)
T9028 138:354 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3537ms total)
T9028 138:355 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3537ms total)
T9028 138:356 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3538ms total)
TB4F0 138:357 JLINK_IsHalted()  returns FALSE (0001ms, 3539ms total)
TB4F0 138:460 JLINK_IsHalted()  returns FALSE (0000ms, 3538ms total)
TB4F0 138:561 JLINK_IsHalted()  returns FALSE (0000ms, 3538ms total)
TB4F0 138:662 JLINK_IsHalted()  returns FALSE (0000ms, 3538ms total)
TB4F0 138:764 JLINK_IsHalted()  returns FALSE (0000ms, 3538ms total)
T9028 138:865 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3545ms total)
T9028 138:873 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 3545ms total)
T9028 138:874 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 3545ms total)
T9028 138:875 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3546ms total)
T9028 138:876 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3546ms total)
T9028 138:877 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3547ms total)
TB4F0 138:878 JLINK_IsHalted()  returns FALSE (0001ms, 3548ms total)
TB4F0 138:979 JLINK_IsHalted()  returns FALSE (0000ms, 3547ms total)
TB4F0 139:080 JLINK_IsHalted()  returns FALSE (0000ms, 3547ms total)
TB4F0 139:182 JLINK_IsHalted()  returns FALSE (0000ms, 3547ms total)
TB4F0 139:283 JLINK_IsHalted()  returns FALSE (0000ms, 3547ms total)
T9028 139:384 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3554ms total)
T9028 139:391 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3555ms total)
T9028 139:392 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3556ms total)
T9028 139:393 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3557ms total)
T9028 139:394 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3558ms total)
T9028 139:395 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3559ms total)
TB4F0 139:396 JLINK_IsHalted()  returns FALSE (0001ms, 3560ms total)
TB4F0 139:498 JLINK_IsHalted()  returns FALSE (0000ms, 3559ms total)
TB4F0 139:600 JLINK_IsHalted()  returns FALSE (0000ms, 3559ms total)
TB4F0 139:701 JLINK_IsHalted()  returns FALSE (0000ms, 3559ms total)
TB4F0 139:802 JLINK_IsHalted()  returns FALSE (0000ms, 3559ms total)
T9028 139:904 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3566ms total)
T9028 139:911 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3567ms total)
T9028 139:913 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3568ms total)
T9028 139:914 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3569ms total)
T9028 139:915 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3570ms total)
T9028 139:916 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3571ms total)
TB4F0 139:917 JLINK_IsHalted()  returns FALSE (0001ms, 3572ms total)
TB4F0 140:019 JLINK_IsHalted()  returns FALSE (0000ms, 3571ms total)
TB4F0 140:120 JLINK_IsHalted()  returns FALSE (0000ms, 3571ms total)
TB4F0 140:221 JLINK_IsHalted()  returns FALSE (0000ms, 3571ms total)
TB4F0 140:322 JLINK_IsHalted()  returns FALSE (0000ms, 3571ms total)
T9028 140:423 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3578ms total)
T9028 140:430 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3579ms total)
T9028 140:431 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3580ms total)
T9028 140:432 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3581ms total)
T9028 140:433 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3582ms total)
T9028 140:434 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3583ms total)
TB4F0 140:435 JLINK_IsHalted()  returns FALSE (0001ms, 3584ms total)
TB4F0 140:537 JLINK_IsHalted()  returns FALSE (0000ms, 3583ms total)
TB4F0 140:638 JLINK_IsHalted()  returns FALSE (0000ms, 3583ms total)
TB4F0 140:739 JLINK_IsHalted()  returns FALSE (0000ms, 3583ms total)
TB4F0 140:840 JLINK_IsHalted()  returns FALSE (0000ms, 3583ms total)
T9028 140:941 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3590ms total)
T9028 140:948 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3591ms total)
T9028 140:949 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3592ms total)
T9028 140:950 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3593ms total)
T9028 140:951 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3594ms total)
T9028 140:952 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3595ms total)
TB4F0 140:953 JLINK_IsHalted()  returns FALSE (0001ms, 3596ms total)
TB4F0 141:056 JLINK_IsHalted()  returns FALSE (0000ms, 3595ms total)
TB4F0 141:156 JLINK_IsHalted()  returns FALSE (0000ms, 3595ms total)
TB4F0 141:257 JLINK_IsHalted()  returns FALSE (0000ms, 3595ms total)
TB4F0 141:359 JLINK_IsHalted()  returns FALSE (0000ms, 3595ms total)
T9028 141:460 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3602ms total)
T9028 141:467 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3603ms total)
T9028 141:468 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3604ms total)
T9028 141:469 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3605ms total)
T9028 141:470 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3606ms total)
T9028 141:471 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3607ms total)
TB4F0 141:472 JLINK_IsHalted()  returns FALSE (0001ms, 3608ms total)
TB4F0 141:574 JLINK_IsHalted()  returns FALSE (0000ms, 3607ms total)
TB4F0 141:675 JLINK_IsHalted()  returns FALSE (0000ms, 3607ms total)
TB4F0 141:777 JLINK_IsHalted()  returns FALSE (0000ms, 3607ms total)
TB4F0 141:878 JLINK_IsHalted()  returns FALSE (0000ms, 3607ms total)
T9028 141:979 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3614ms total)
T9028 141:987 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 3614ms total)
T9028 141:988 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 3614ms total)
T9028 141:989 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 3614ms total)
T9028 141:989 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3615ms total)
T9028 141:991 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3616ms total)
TB4F0 141:992 JLINK_IsHalted()  returns FALSE (0000ms, 3616ms total)
TB4F0 142:093 JLINK_IsHalted()  returns FALSE (0000ms, 3616ms total)
TB4F0 142:194 JLINK_IsHalted()  returns FALSE (0000ms, 3616ms total)
TB4F0 142:296 JLINK_IsHalted()  returns FALSE (0000ms, 3616ms total)
TB4F0 142:397 JLINK_IsHalted()  returns FALSE (0000ms, 3616ms total)
T9028 142:498 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3623ms total)
T9028 142:505 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3624ms total)
T9028 142:506 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3625ms total)
T9028 142:507 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3626ms total)
T9028 142:508 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3627ms total)
T9028 142:509 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3628ms total)
TB4F0 142:510 JLINK_IsHalted()  returns FALSE (0001ms, 3629ms total)
TB4F0 142:612 JLINK_IsHalted()  returns FALSE (0000ms, 3628ms total)
TB4F0 142:714 JLINK_IsHalted()  returns FALSE (0000ms, 3628ms total)
TB4F0 142:815 JLINK_IsHalted()  returns FALSE (0000ms, 3628ms total)
TB4F0 142:916 JLINK_IsHalted()  returns FALSE (0000ms, 3628ms total)
T9028 143:017 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3635ms total)
T9028 143:024 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3636ms total)
T9028 143:025 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3637ms total)
T9028 143:026 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3638ms total)
T9028 143:027 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3638ms total)
T9028 143:030 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3639ms total)
TB4F0 143:031 JLINK_IsHalted()  returns FALSE (0000ms, 3639ms total)
TB4F0 143:132 JLINK_IsHalted()  returns FALSE (0000ms, 3639ms total)
TB4F0 143:233 JLINK_IsHalted()  returns FALSE (0000ms, 3639ms total)
TB4F0 143:334 JLINK_IsHalted()  returns FALSE (0000ms, 3639ms total)
TB4F0 143:435 JLINK_IsHalted()  returns FALSE (0000ms, 3639ms total)
T9028 143:536 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3646ms total)
T9028 143:543 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3647ms total)
T9028 143:544 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3648ms total)
T9028 143:545 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3649ms total)
T9028 143:546 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3650ms total)
T9028 143:547 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3651ms total)
TB4F0 143:548 JLINK_IsHalted()  returns FALSE (0001ms, 3652ms total)
TB4F0 143:650 JLINK_IsHalted()  returns FALSE (0000ms, 3651ms total)
TB4F0 143:751 JLINK_IsHalted()  returns FALSE (0000ms, 3651ms total)
TB4F0 143:853 JLINK_IsHalted()  returns FALSE (0000ms, 3651ms total)
TB4F0 143:954 JLINK_IsHalted()  returns FALSE (0000ms, 3651ms total)
T9028 144:055 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3658ms total)
T9028 144:062 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3659ms total)
T9028 144:063 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3660ms total)
T9028 144:064 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3661ms total)
T9028 144:065 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3662ms total)
T9028 144:066 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3663ms total)
TB4F0 144:067 JLINK_IsHalted()  returns FALSE (0001ms, 3664ms total)
TB4F0 144:169 JLINK_IsHalted()  returns FALSE (0000ms, 3663ms total)
TB4F0 144:271 JLINK_IsHalted()  returns FALSE (0000ms, 3663ms total)
TB4F0 144:372 JLINK_IsHalted()  returns FALSE (0000ms, 3663ms total)
TB4F0 144:474 JLINK_IsHalted()  returns FALSE (0000ms, 3663ms total)
T9028 144:575 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3670ms total)
T9028 144:582 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3671ms total)
T9028 144:583 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3672ms total)
T9028 144:584 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3673ms total)
T9028 144:585 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3674ms total)
T9028 144:586 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3675ms total)
TB4F0 144:587 JLINK_IsHalted()  returns FALSE (0001ms, 3676ms total)
TB4F0 144:689 JLINK_IsHalted()  returns FALSE (0000ms, 3675ms total)
TB4F0 144:791 JLINK_IsHalted()  returns FALSE (0000ms, 3675ms total)
TB4F0 144:892 JLINK_IsHalted()  returns FALSE (0000ms, 3675ms total)
TB4F0 144:994 JLINK_IsHalted()  returns FALSE (0000ms, 3675ms total)
T9028 145:095 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3682ms total)
T9028 145:102 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3683ms total)
T9028 145:103 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3684ms total)
T9028 145:104 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3685ms total)
T9028 145:105 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3686ms total)
T9028 145:106 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3687ms total)
TB4F0 145:107 JLINK_IsHalted()  returns FALSE (0001ms, 3688ms total)
TB4F0 145:209 JLINK_IsHalted()  returns FALSE (0000ms, 3687ms total)
TB4F0 145:310 JLINK_IsHalted()  returns FALSE (0000ms, 3687ms total)
TB4F0 145:412 JLINK_IsHalted()  returns FALSE (0000ms, 3687ms total)
TB4F0 145:513 JLINK_IsHalted()  returns FALSE (0000ms, 3687ms total)
T9028 145:614 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3694ms total)
T9028 145:622 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 3694ms total)
T9028 145:623 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 3694ms total)
T9028 145:624 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3695ms total)
T9028 145:625 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3695ms total)
T9028 145:626 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3696ms total)
TB4F0 145:627 JLINK_IsHalted()  returns FALSE (0000ms, 3696ms total)
TB4F0 145:729 JLINK_IsHalted()  returns FALSE (0000ms, 3696ms total)
TB4F0 145:830 JLINK_IsHalted()  returns FALSE (0000ms, 3696ms total)
TB4F0 145:931 JLINK_IsHalted()  returns FALSE (0000ms, 3696ms total)
TB4F0 146:032 JLINK_IsHalted()  returns FALSE (0000ms, 3696ms total)
T9028 146:134 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3703ms total)
T9028 146:142 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3704ms total)
T9028 146:143 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3705ms total)
T9028 146:144 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3706ms total)
T9028 146:145 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3706ms total)
T9028 146:146 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3707ms total)
TB4F0 146:147 JLINK_IsHalted()  returns FALSE (0001ms, 3708ms total)
TB4F0 146:249 JLINK_IsHalted()  returns FALSE (0000ms, 3707ms total)
TB4F0 146:350 JLINK_IsHalted()  returns FALSE (0000ms, 3707ms total)
TB4F0 146:451 JLINK_IsHalted()  returns FALSE (0000ms, 3707ms total)
TB4F0 146:552 JLINK_IsHalted()  returns FALSE (0000ms, 3707ms total)
T9028 146:653 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3714ms total)
T9028 146:660 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3715ms total)
T9028 146:661 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3716ms total)
T9028 146:662 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3717ms total)
T9028 146:663 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3718ms total)
T9028 146:664 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3719ms total)
TB4F0 146:665 JLINK_IsHalted()  returns FALSE (0001ms, 3720ms total)
TB4F0 146:767 JLINK_IsHalted()  returns FALSE (0000ms, 3719ms total)
TB4F0 146:869 JLINK_IsHalted()  returns FALSE (0000ms, 3719ms total)
TB4F0 146:970 JLINK_IsHalted()  returns FALSE (0000ms, 3719ms total)
TB4F0 147:071 JLINK_IsHalted()  returns FALSE (0000ms, 3719ms total)
T9028 147:172 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3726ms total)
T9028 147:179 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3727ms total)
T9028 147:180 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3728ms total)
T9028 147:181 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3729ms total)
T9028 147:182 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3730ms total)
T9028 147:183 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3731ms total)
TB4F0 147:184 JLINK_IsHalted()  returns FALSE (0001ms, 3732ms total)
TB4F0 147:286 JLINK_IsHalted()  returns FALSE (0000ms, 3731ms total)
TB4F0 147:387 JLINK_IsHalted()  returns FALSE (0000ms, 3731ms total)
TB4F0 147:488 JLINK_IsHalted()  returns FALSE (0000ms, 3731ms total)
TB4F0 147:589 JLINK_IsHalted()  returns FALSE (0000ms, 3731ms total)
T9028 147:691 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3738ms total)
T9028 147:698 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3739ms total)
T9028 147:699 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3740ms total)
T9028 147:700 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3741ms total)
T9028 147:701 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3742ms total)
T9028 147:702 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3743ms total)
TB4F0 147:704 JLINK_IsHalted()  returns FALSE (0000ms, 3743ms total)
TB4F0 147:805 JLINK_IsHalted()  returns FALSE (0000ms, 3743ms total)
TB4F0 147:906 JLINK_IsHalted()  returns FALSE (0000ms, 3743ms total)
TB4F0 148:008 JLINK_IsHalted()  returns FALSE (0000ms, 3743ms total)
TB4F0 148:109 JLINK_IsHalted()  returns FALSE (0000ms, 3743ms total)
T9028 148:210 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3750ms total)
T9028 148:218 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 3750ms total)
T9028 148:219 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 3750ms total)
T9028 148:219 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3751ms total)
T9028 148:220 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3752ms total)
T9028 148:222 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3753ms total)
TB4F0 148:223 JLINK_IsHalted()  returns FALSE (0000ms, 3753ms total)
TB4F0 148:324 JLINK_IsHalted()  returns FALSE (0000ms, 3753ms total)
TB4F0 148:426 JLINK_IsHalted()  returns FALSE (0000ms, 3753ms total)
TB4F0 148:527 JLINK_IsHalted()  returns FALSE (0000ms, 3753ms total)
TB4F0 148:628 JLINK_IsHalted()  returns FALSE (0000ms, 3753ms total)
T9028 148:729 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3760ms total)
T9028 148:736 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3761ms total)
T9028 148:737 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3762ms total)
T9028 148:738 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3763ms total)
T9028 148:739 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3764ms total)
T9028 148:740 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3765ms total)
TB4F0 148:741 JLINK_IsHalted()  returns FALSE (0001ms, 3766ms total)
TB4F0 148:844 JLINK_IsHalted()  returns FALSE (0000ms, 3765ms total)
TB4F0 148:945 JLINK_IsHalted()  returns FALSE (0000ms, 3765ms total)
TB4F0 149:046 JLINK_IsHalted()  returns FALSE (0000ms, 3765ms total)
TB4F0 149:148 JLINK_IsHalted()  returns FALSE (0000ms, 3765ms total)
T9028 149:249 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3772ms total)
T9028 149:256 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3773ms total)
T9028 149:257 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3774ms total)
T9028 149:258 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3775ms total)
T9028 149:259 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3775ms total)
T9028 149:260 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3776ms total)
TB4F0 149:261 JLINK_IsHalted()  returns FALSE (0000ms, 3776ms total)
TB4F0 149:362 JLINK_IsHalted()  returns FALSE (0000ms, 3776ms total)
TB4F0 149:463 JLINK_IsHalted()  returns FALSE (0000ms, 3776ms total)
TB4F0 149:565 JLINK_IsHalted()  returns FALSE (0000ms, 3776ms total)
TB4F0 149:666 JLINK_IsHalted()  returns FALSE (0000ms, 3776ms total)
T9028 149:767 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3783ms total)
T9028 149:774 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3784ms total)
T9028 149:775 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3785ms total)
T9028 149:776 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3786ms total)
T9028 149:777 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 3786ms total)
T9028 149:778 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3787ms total)
TB4F0 149:779 JLINK_IsHalted()  returns FALSE (0001ms, 3788ms total)
TB4F0 149:881 JLINK_IsHalted()  returns FALSE (0000ms, 3787ms total)
TB4F0 149:982 JLINK_IsHalted()  returns FALSE (0000ms, 3787ms total)
TB4F0 150:083 JLINK_IsHalted()  returns FALSE (0000ms, 3787ms total)
TB4F0 150:184 JLINK_IsHalted()  returns FALSE (0000ms, 3787ms total)
T9028 150:285 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3794ms total)
T9028 150:292 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3795ms total)
T9028 150:294 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 3795ms total)
T9028 150:294 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3796ms total)
T9028 150:295 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3797ms total)
T9028 150:297 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3798ms total)
TB4F0 150:298 JLINK_IsHalted()  returns FALSE (0000ms, 3798ms total)
TB4F0 150:400 JLINK_IsHalted()  returns FALSE (0000ms, 3798ms total)
TB4F0 150:501 JLINK_IsHalted()  returns FALSE (0000ms, 3798ms total)
TB4F0 150:602 JLINK_IsHalted()  returns FALSE (0000ms, 3798ms total)
TB4F0 150:703 JLINK_IsHalted()  returns FALSE (0000ms, 3798ms total)
T9028 150:804 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0008ms, 3806ms total)
T9028 150:812 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3807ms total)
T9028 150:813 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3808ms total)
T9028 150:814 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3809ms total)
T9028 150:815 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3810ms total)
T9028 150:816 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3811ms total)
TB4F0 150:820 JLINK_IsHalted()  returns FALSE (0001ms, 3812ms total)
TB4F0 150:922 JLINK_IsHalted()  returns FALSE (0000ms, 3811ms total)
TB4F0 151:023 JLINK_IsHalted()  returns FALSE (0000ms, 3811ms total)
TB4F0 151:124 JLINK_IsHalted()  returns FALSE (0000ms, 3811ms total)
TB4F0 151:226 JLINK_IsHalted()  returns FALSE (0000ms, 3811ms total)
T9028 151:327 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3818ms total)
T9028 151:337 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3819ms total)
T9028 151:339 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 3819ms total)
T9028 151:340 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3820ms total)
T9028 151:341 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3821ms total)
T9028 151:347 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3822ms total)
TB4F0 151:349 JLINK_IsHalted()  returns FALSE (0000ms, 3822ms total)
TB4F0 151:450 JLINK_IsHalted()  returns FALSE (0000ms, 3822ms total)
TB4F0 151:551 JLINK_IsHalted()  returns FALSE (0000ms, 3822ms total)
TB4F0 151:653 JLINK_IsHalted()  returns FALSE (0000ms, 3822ms total)
TB4F0 151:754 JLINK_IsHalted()  returns FALSE (0000ms, 3822ms total)
T9028 151:855 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3829ms total)
T9028 151:862 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3830ms total)
T9028 151:863 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3831ms total)
T9028 151:864 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3832ms total)
T9028 151:865 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3833ms total)
T9028 151:866 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3834ms total)
TB4F0 151:867 JLINK_IsHalted()  returns FALSE (0001ms, 3835ms total)
TB4F0 151:970 JLINK_IsHalted()  returns FALSE (0000ms, 3834ms total)
TB4F0 152:071 JLINK_IsHalted()  returns FALSE (0000ms, 3834ms total)
TB4F0 152:172 JLINK_IsHalted()  returns FALSE (0000ms, 3834ms total)
TB4F0 152:273 JLINK_IsHalted()  returns FALSE (0000ms, 3834ms total)
T9028 152:375 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3841ms total)
T9028 152:382 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3842ms total)
T9028 152:383 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3843ms total)
T9028 152:384 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3844ms total)
T9028 152:385 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3845ms total)
T9028 152:386 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3846ms total)
TB4F0 152:387 JLINK_IsHalted()  returns FALSE (0001ms, 3847ms total)
TB4F0 152:489 JLINK_IsHalted()  returns FALSE (0000ms, 3846ms total)
TB4F0 152:590 JLINK_IsHalted()  returns FALSE (0000ms, 3846ms total)
TB4F0 152:691 JLINK_IsHalted()  returns FALSE (0000ms, 3846ms total)
TB4F0 152:793 JLINK_IsHalted()  returns FALSE (0000ms, 3846ms total)
T9028 152:894 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3853ms total)
T9028 152:901 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3854ms total)
T9028 152:902 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3855ms total)
T9028 152:903 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3856ms total)
T9028 152:904 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3857ms total)
T9028 152:905 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3858ms total)
TB4F0 152:906 JLINK_IsHalted()  returns FALSE (0001ms, 3859ms total)
TB4F0 153:008 JLINK_IsHalted()  returns FALSE (0000ms, 3858ms total)
TB4F0 153:110 JLINK_IsHalted()  returns FALSE (0000ms, 3858ms total)
TB4F0 153:210 JLINK_IsHalted()  returns FALSE (0000ms, 3858ms total)
TB4F0 153:312 JLINK_IsHalted()  returns FALSE (0000ms, 3858ms total)
T9028 153:413 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3865ms total)
T9028 153:420 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3866ms total)
T9028 153:421 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3867ms total)
T9028 153:422 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3868ms total)
T9028 153:423 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3869ms total)
T9028 153:424 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3870ms total)
TB4F0 153:425 JLINK_IsHalted()  returns FALSE (0001ms, 3871ms total)
TB4F0 153:527 JLINK_IsHalted()  returns FALSE (0000ms, 3870ms total)
TB4F0 153:628 JLINK_IsHalted()  returns FALSE (0000ms, 3870ms total)
TB4F0 153:729 JLINK_IsHalted()  returns FALSE (0000ms, 3870ms total)
TB4F0 153:830 JLINK_IsHalted()  returns FALSE (0000ms, 3870ms total)
T9028 153:931 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3877ms total)
T9028 153:938 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3878ms total)
T9028 153:939 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3879ms total)
T9028 153:940 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3880ms total)
T9028 153:941 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3881ms total)
T9028 153:942 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3882ms total)
TB4F0 153:943 JLINK_IsHalted()  returns FALSE (0001ms, 3883ms total)
TB4F0 154:046 JLINK_IsHalted()  returns FALSE (0000ms, 3882ms total)
TB4F0 154:147 JLINK_IsHalted()  returns FALSE (0000ms, 3882ms total)
TB4F0 154:248 JLINK_IsHalted()  returns FALSE (0000ms, 3882ms total)
TB4F0 154:350 JLINK_IsHalted()  returns FALSE (0000ms, 3882ms total)
T9028 154:451 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3889ms total)
T9028 154:458 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3890ms total)
T9028 154:459 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3891ms total)
T9028 154:460 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3892ms total)
T9028 154:461 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3893ms total)
T9028 154:462 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3894ms total)
TB4F0 154:463 JLINK_IsHalted()  returns FALSE (0001ms, 3895ms total)
TB4F0 154:565 JLINK_IsHalted()  returns FALSE (0000ms, 3894ms total)
TB4F0 154:666 JLINK_IsHalted()  returns FALSE (0000ms, 3894ms total)
TB4F0 154:767 JLINK_IsHalted()  returns FALSE (0000ms, 3894ms total)
TB4F0 154:868 JLINK_IsHalted()  returns FALSE (0000ms, 3894ms total)
T9028 154:970 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3901ms total)
T9028 154:978 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 3901ms total)
T9028 154:979 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 3901ms total)
T9028 154:979 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3902ms total)
T9028 154:980 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3903ms total)
T9028 154:981 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3904ms total)
TB4F0 154:983 JLINK_IsHalted()  returns FALSE (0000ms, 3904ms total)
TB4F0 155:084 JLINK_IsHalted()  returns FALSE (0000ms, 3904ms total)
TB4F0 155:185 JLINK_IsHalted()  returns FALSE (0000ms, 3904ms total)
TB4F0 155:286 JLINK_IsHalted()  returns FALSE (0000ms, 3904ms total)
TB4F0 155:387 JLINK_IsHalted()  returns FALSE (0000ms, 3904ms total)
T9028 155:489 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3911ms total)
T9028 155:497 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 3911ms total)
T9028 155:498 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 3911ms total)
T9028 155:498 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3912ms total)
T9028 155:499 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3913ms total)
T9028 155:501 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3914ms total)
TB4F0 155:502 JLINK_IsHalted()  returns FALSE (0000ms, 3914ms total)
TB4F0 155:603 JLINK_IsHalted()  returns FALSE (0000ms, 3914ms total)
TB4F0 155:704 JLINK_IsHalted()  returns FALSE (0000ms, 3914ms total)
TB4F0 155:805 JLINK_IsHalted()  returns FALSE (0000ms, 3914ms total)
TB4F0 155:907 JLINK_IsHalted()  returns FALSE (0000ms, 3914ms total)
T9028 156:008 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3921ms total)
T9028 156:016 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 3921ms total)
T9028 156:017 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 3921ms total)
T9028 156:017 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3922ms total)
T9028 156:018 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3923ms total)
T9028 156:020 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3924ms total)
TB4F0 156:021 JLINK_IsHalted()  returns FALSE (0000ms, 3924ms total)
TB4F0 156:122 JLINK_IsHalted()  returns FALSE (0000ms, 3924ms total)
TB4F0 156:224 JLINK_IsHalted()  returns FALSE (0000ms, 3924ms total)
TB4F0 156:325 JLINK_IsHalted()  returns FALSE (0000ms, 3924ms total)
TB4F0 156:427 JLINK_IsHalted()  returns FALSE (0000ms, 3924ms total)
T9028 156:528 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3931ms total)
T9028 156:535 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3932ms total)
T9028 156:536 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3933ms total)
T9028 156:537 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3934ms total)
T9028 156:538 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3935ms total)
T9028 156:539 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3936ms total)
TB4F0 156:540 JLINK_IsHalted()  returns FALSE (0001ms, 3937ms total)
TB4F0 156:642 JLINK_IsHalted()  returns FALSE (0000ms, 3936ms total)
TB4F0 156:743 JLINK_IsHalted()  returns FALSE (0000ms, 3936ms total)
TB4F0 156:845 JLINK_IsHalted()  returns FALSE (0000ms, 3936ms total)
TB4F0 156:946 JLINK_IsHalted()  returns FALSE (0000ms, 3936ms total)
T9028 157:047 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3943ms total)
T9028 157:054 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3944ms total)
T9028 157:055 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3945ms total)
T9028 157:056 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3946ms total)
T9028 157:057 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3947ms total)
T9028 157:058 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3948ms total)
TB4F0 157:059 JLINK_IsHalted()  returns FALSE (0001ms, 3949ms total)
TB4F0 157:160 JLINK_IsHalted()  returns FALSE (0000ms, 3948ms total)
TB4F0 157:262 JLINK_IsHalted()  returns FALSE (0000ms, 3948ms total)
TB4F0 157:363 JLINK_IsHalted()  returns FALSE (0000ms, 3948ms total)
TB4F0 157:464 JLINK_IsHalted()  returns FALSE (0000ms, 3948ms total)
T9028 157:566 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3955ms total)
T9028 157:573 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3956ms total)
T9028 157:574 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3957ms total)
T9028 157:575 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3958ms total)
T9028 157:576 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3959ms total)
T9028 157:577 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3960ms total)
TB4F0 157:578 JLINK_IsHalted()  returns FALSE (0001ms, 3961ms total)
TB4F0 157:680 JLINK_IsHalted()  returns FALSE (0000ms, 3960ms total)
TB4F0 157:782 JLINK_IsHalted()  returns FALSE (0000ms, 3960ms total)
TB4F0 157:883 JLINK_IsHalted()  returns FALSE (0000ms, 3960ms total)
TB4F0 157:984 JLINK_IsHalted()  returns FALSE (0000ms, 3960ms total)
T9028 158:086 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3967ms total)
T9028 158:093 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3968ms total)
T9028 158:094 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3969ms total)
T9028 158:095 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3970ms total)
T9028 158:096 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3971ms total)
T9028 158:097 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3972ms total)
TB4F0 158:098 JLINK_IsHalted()  returns FALSE (0001ms, 3973ms total)
TB4F0 158:199 JLINK_IsHalted()  returns FALSE (0000ms, 3972ms total)
TB4F0 158:301 JLINK_IsHalted()  returns FALSE (0000ms, 3972ms total)
TB4F0 158:402 JLINK_IsHalted()  returns FALSE (0000ms, 3972ms total)
TB4F0 158:503 JLINK_IsHalted()  returns FALSE (0000ms, 3972ms total)
T9028 158:604 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3979ms total)
T9028 158:611 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3980ms total)
T9028 158:613 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 3980ms total)
T9028 158:614 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 3980ms total)
T9028 158:614 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3981ms total)
T9028 158:615 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3982ms total)
TB4F0 158:616 JLINK_IsHalted()  returns FALSE (0001ms, 3983ms total)
TB4F0 158:718 JLINK_IsHalted()  returns FALSE (0000ms, 3982ms total)
TB4F0 158:819 JLINK_IsHalted()  returns FALSE (0000ms, 3982ms total)
TB4F0 158:920 JLINK_IsHalted()  returns FALSE (0000ms, 3982ms total)
TB4F0 159:021 JLINK_IsHalted()  returns FALSE (0000ms, 3982ms total)
T9028 159:122 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 3989ms total)
T9028 159:129 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 3990ms total)
T9028 159:130 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 3991ms total)
T9028 159:131 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 3992ms total)
T9028 159:132 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 3993ms total)
T9028 159:133 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 3994ms total)
TB4F0 159:135 JLINK_IsHalted()  returns FALSE (0000ms, 3994ms total)
TB4F0 159:237 JLINK_IsHalted()  returns FALSE (0000ms, 3994ms total)
TB4F0 159:338 JLINK_IsHalted()  returns FALSE (0000ms, 3994ms total)
TB4F0 159:439 JLINK_IsHalted()  returns FALSE (0000ms, 3994ms total)
TB4F0 159:540 JLINK_IsHalted()  returns FALSE (0000ms, 3994ms total)
T9028 159:641 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4001ms total)
T9028 159:648 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4002ms total)
T9028 159:649 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4003ms total)
T9028 159:650 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4004ms total)
T9028 159:651 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4005ms total)
T9028 159:652 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4006ms total)
TB4F0 159:653 JLINK_IsHalted()  returns FALSE (0001ms, 4007ms total)
TB4F0 159:755 JLINK_IsHalted()  returns FALSE (0000ms, 4006ms total)
TB4F0 159:856 JLINK_IsHalted()  returns FALSE (0000ms, 4006ms total)
TB4F0 159:957 JLINK_IsHalted()  returns FALSE (0000ms, 4006ms total)
TB4F0 160:058 JLINK_IsHalted()  returns FALSE (0000ms, 4006ms total)
T9028 160:160 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4013ms total)
T9028 160:167 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4014ms total)
T9028 160:168 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4015ms total)
T9028 160:169 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4016ms total)
T9028 160:170 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4017ms total)
T9028 160:171 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4018ms total)
TB4F0 160:172 JLINK_IsHalted()  returns FALSE (0001ms, 4019ms total)
TB4F0 160:274 JLINK_IsHalted()  returns FALSE (0000ms, 4018ms total)
TB4F0 160:375 JLINK_IsHalted()  returns FALSE (0000ms, 4018ms total)
TB4F0 160:476 JLINK_IsHalted()  returns FALSE (0000ms, 4018ms total)
TB4F0 160:578 JLINK_IsHalted()  returns FALSE (0000ms, 4018ms total)
T9028 160:679 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4025ms total)
T9028 160:686 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4026ms total)
T9028 160:687 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4027ms total)
T9028 160:688 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4028ms total)
T9028 160:689 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4029ms total)
T9028 160:690 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4030ms total)
TB4F0 160:691 JLINK_IsHalted()  returns FALSE (0001ms, 4031ms total)
TB4F0 160:793 JLINK_IsHalted()  returns FALSE (0000ms, 4030ms total)
TB4F0 160:895 JLINK_IsHalted()  returns FALSE (0000ms, 4030ms total)
TB4F0 160:996 JLINK_IsHalted()  returns FALSE (0000ms, 4030ms total)
TB4F0 161:097 JLINK_IsHalted()  returns FALSE (0000ms, 4030ms total)
T9028 161:198 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4037ms total)
T9028 161:205 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4038ms total)
T9028 161:206 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4039ms total)
T9028 161:207 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4040ms total)
T9028 161:208 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4041ms total)
T9028 161:209 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4042ms total)
TB4F0 161:210 JLINK_IsHalted()  returns FALSE (0001ms, 4043ms total)
TB4F0 161:312 JLINK_IsHalted()  returns FALSE (0000ms, 4042ms total)
TB4F0 161:413 JLINK_IsHalted()  returns FALSE (0000ms, 4042ms total)
TB4F0 161:514 JLINK_IsHalted()  returns FALSE (0000ms, 4042ms total)
TB4F0 161:615 JLINK_IsHalted()  returns FALSE (0000ms, 4042ms total)
T9028 161:717 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4049ms total)
T9028 161:724 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4050ms total)
T9028 161:725 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4051ms total)
T9028 161:726 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4052ms total)
T9028 161:727 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4053ms total)
T9028 161:728 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4054ms total)
TB4F0 161:729 JLINK_IsHalted()  returns FALSE (0001ms, 4055ms total)
TB4F0 161:831 JLINK_IsHalted()  returns FALSE (0000ms, 4054ms total)
TB4F0 161:932 JLINK_IsHalted()  returns FALSE (0000ms, 4054ms total)
TB4F0 162:034 JLINK_IsHalted()  returns FALSE (0000ms, 4054ms total)
TB4F0 162:135 JLINK_IsHalted()  returns FALSE (0000ms, 4054ms total)
T9028 162:236 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4061ms total)
T9028 162:243 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4062ms total)
T9028 162:244 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4063ms total)
T9028 162:245 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4064ms total)
T9028 162:246 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4065ms total)
T9028 162:247 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4066ms total)
TB4F0 162:248 JLINK_IsHalted()  returns FALSE (0001ms, 4067ms total)
TB4F0 162:349 JLINK_IsHalted()  returns FALSE (0000ms, 4066ms total)
TB4F0 162:450 JLINK_IsHalted()  returns FALSE (0000ms, 4066ms total)
TB4F0 162:551 JLINK_IsHalted()  returns FALSE (0000ms, 4066ms total)
TB4F0 162:652 JLINK_IsHalted()  returns FALSE (0000ms, 4066ms total)
T9028 162:753 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4073ms total)
T9028 162:761 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4074ms total)
T9028 162:762 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4075ms total)
T9028 162:763 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4076ms total)
T9028 162:764 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 4076ms total)
T9028 162:766 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4077ms total)
TB4F0 162:767 JLINK_IsHalted()  returns FALSE (0001ms, 4078ms total)
TB4F0 162:869 JLINK_IsHalted()  returns FALSE (0000ms, 4077ms total)
TB4F0 162:971 JLINK_IsHalted()  returns FALSE (0000ms, 4077ms total)
TB4F0 163:071 JLINK_IsHalted()  returns FALSE (0000ms, 4077ms total)
TB4F0 163:172 JLINK_IsHalted()  returns FALSE (0000ms, 4077ms total)
T9028 163:273 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0008ms, 4085ms total)
T9028 163:281 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4086ms total)
T9028 163:282 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4087ms total)
T9028 163:283 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4088ms total)
T9028 163:284 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4089ms total)
T9028 163:285 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4090ms total)
TB4F0 163:286 JLINK_IsHalted()  returns FALSE (0001ms, 4091ms total)
TB4F0 163:388 JLINK_IsHalted()  returns FALSE (0000ms, 4090ms total)
TB4F0 163:489 JLINK_IsHalted()  returns FALSE (0000ms, 4090ms total)
TB4F0 163:590 JLINK_IsHalted()  returns FALSE (0000ms, 4090ms total)
TB4F0 163:692 JLINK_IsHalted()  returns FALSE (0000ms, 4090ms total)
T9028 163:793 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4097ms total)
T9028 163:800 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4098ms total)
T9028 163:801 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4099ms total)
T9028 163:802 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4100ms total)
T9028 163:803 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4101ms total)
T9028 163:804 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4102ms total)
TB4F0 163:805 JLINK_IsHalted()  returns FALSE (0001ms, 4103ms total)
TB4F0 163:907 JLINK_IsHalted()  returns FALSE (0000ms, 4102ms total)
TB4F0 164:008 JLINK_IsHalted()  returns FALSE (0000ms, 4102ms total)
TB4F0 164:110 JLINK_IsHalted()  returns FALSE (0000ms, 4102ms total)
TB4F0 164:211 JLINK_IsHalted()  returns FALSE (0000ms, 4102ms total)
T9028 164:312 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4109ms total)
T9028 164:319 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4110ms total)
T9028 164:321 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 4110ms total)
T9028 164:322 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 4110ms total)
T9028 164:322 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4111ms total)
T9028 164:324 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4112ms total)
TB4F0 164:325 JLINK_IsHalted()  returns FALSE (0000ms, 4112ms total)
TB4F0 164:427 JLINK_IsHalted()  returns FALSE (0000ms, 4112ms total)
TB4F0 164:528 JLINK_IsHalted()  returns FALSE (0000ms, 4112ms total)
TB4F0 164:629 JLINK_IsHalted()  returns FALSE (0000ms, 4112ms total)
TB4F0 164:730 JLINK_IsHalted()  returns FALSE (0000ms, 4112ms total)
T9028 164:832 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4119ms total)
T9028 164:839 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4120ms total)
T9028 164:840 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4121ms total)
T9028 164:841 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4122ms total)
T9028 164:842 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4123ms total)
T9028 164:844 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4124ms total)
TB4F0 164:845 JLINK_IsHalted()  returns FALSE (0001ms, 4125ms total)
TB4F0 164:947 JLINK_IsHalted()  returns FALSE (0000ms, 4124ms total)
TB4F0 165:048 JLINK_IsHalted()  returns FALSE (0000ms, 4124ms total)
TB4F0 165:149 JLINK_IsHalted()  returns FALSE (0000ms, 4124ms total)
TB4F0 165:250 JLINK_IsHalted()  returns FALSE (0000ms, 4124ms total)
T9028 165:351 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4131ms total)
T9028 165:359 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 4131ms total)
T9028 165:359 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4132ms total)
T9028 165:360 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4133ms total)
T9028 165:361 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4134ms total)
T9028 165:362 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4135ms total)
TB4F0 165:364 JLINK_IsHalted()  returns FALSE (0000ms, 4135ms total)
TB4F0 165:465 JLINK_IsHalted()  returns FALSE (0000ms, 4135ms total)
TB4F0 165:567 JLINK_IsHalted()  returns FALSE (0000ms, 4135ms total)
TB4F0 165:668 JLINK_IsHalted()  returns FALSE (0000ms, 4135ms total)
TB4F0 165:769 JLINK_IsHalted()  returns FALSE (0000ms, 4135ms total)
T9028 165:871 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4142ms total)
T9028 165:878 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4143ms total)
T9028 165:879 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4144ms total)
T9028 165:880 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4145ms total)
T9028 165:881 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4146ms total)
T9028 165:882 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4147ms total)
TB4F0 165:883 JLINK_IsHalted()  returns FALSE (0001ms, 4148ms total)
TB4F0 165:985 JLINK_IsHalted()  returns FALSE (0000ms, 4147ms total)
TB4F0 166:086 JLINK_IsHalted()  returns FALSE (0000ms, 4147ms total)
TB4F0 166:187 JLINK_IsHalted()  returns FALSE (0000ms, 4147ms total)
TB4F0 166:288 JLINK_IsHalted()  returns FALSE (0000ms, 4147ms total)
T9028 166:389 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4154ms total)
T9028 166:397 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 4154ms total)
T9028 166:397 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4155ms total)
T9028 166:398 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4156ms total)
T9028 166:399 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4157ms total)
T9028 166:400 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4158ms total)
TB4F0 166:402 JLINK_IsHalted()  returns FALSE (0000ms, 4158ms total)
TB4F0 166:503 JLINK_IsHalted()  returns FALSE (0000ms, 4158ms total)
TB4F0 166:605 JLINK_IsHalted()  returns FALSE (0000ms, 4158ms total)
TB4F0 166:706 JLINK_IsHalted()  returns FALSE (0000ms, 4158ms total)
TB4F0 166:807 JLINK_IsHalted()  returns FALSE (0000ms, 4158ms total)
T9028 166:908 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4165ms total)
T9028 166:915 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4166ms total)
T9028 166:916 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4167ms total)
T9028 166:917 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4168ms total)
T9028 166:918 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4169ms total)
T9028 166:919 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4170ms total)
TB4F0 166:920 JLINK_IsHalted()  returns FALSE (0001ms, 4171ms total)
TB4F0 167:022 JLINK_IsHalted()  returns FALSE (0000ms, 4170ms total)
TB4F0 167:124 JLINK_IsHalted()  returns FALSE (0000ms, 4170ms total)
TB4F0 167:225 JLINK_IsHalted()  returns FALSE (0000ms, 4170ms total)
TB4F0 167:326 JLINK_IsHalted()  returns FALSE (0000ms, 4170ms total)
T9028 167:427 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4177ms total)
T9028 167:434 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4178ms total)
T9028 167:436 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 4178ms total)
T9028 167:436 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4179ms total)
T9028 167:437 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4180ms total)
T9028 167:439 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4181ms total)
TB4F0 167:440 JLINK_IsHalted()  returns FALSE (0000ms, 4181ms total)
TB4F0 167:542 JLINK_IsHalted()  returns FALSE (0000ms, 4181ms total)
TB4F0 167:643 JLINK_IsHalted()  returns FALSE (0000ms, 4181ms total)
TB4F0 167:744 JLINK_IsHalted()  returns FALSE (0000ms, 4181ms total)
TB4F0 167:845 JLINK_IsHalted()  returns FALSE (0000ms, 4181ms total)
T9028 167:947 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4188ms total)
T9028 167:955 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 4188ms total)
T9028 167:955 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4189ms total)
T9028 167:956 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4190ms total)
T9028 167:957 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4191ms total)
T9028 167:958 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4192ms total)
TB4F0 167:959 JLINK_IsHalted()  returns FALSE (0001ms, 4193ms total)
TB4F0 168:061 JLINK_IsHalted()  returns FALSE (0000ms, 4192ms total)
TB4F0 168:162 JLINK_IsHalted()  returns FALSE (0000ms, 4192ms total)
TB4F0 168:264 JLINK_IsHalted()  returns FALSE (0000ms, 4192ms total)
TB4F0 168:365 JLINK_IsHalted()  returns FALSE (0000ms, 4192ms total)
T9028 168:466 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4199ms total)
T9028 168:473 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4200ms total)
T9028 168:474 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4201ms total)
T9028 168:475 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4202ms total)
T9028 168:476 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4203ms total)
T9028 168:477 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4204ms total)
TB4F0 168:478 JLINK_IsHalted()  returns FALSE (0001ms, 4205ms total)
TB4F0 168:580 JLINK_IsHalted()  returns FALSE (0000ms, 4204ms total)
TB4F0 168:682 JLINK_IsHalted()  returns FALSE (0000ms, 4204ms total)
TB4F0 168:783 JLINK_IsHalted()  returns FALSE (0000ms, 4204ms total)
TB4F0 168:884 JLINK_IsHalted()  returns FALSE (0000ms, 4204ms total)
T9028 168:985 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4211ms total)
T9028 168:992 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4212ms total)
T9028 168:993 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4213ms total)
T9028 168:994 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4214ms total)
T9028 168:995 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4215ms total)
T9028 168:996 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4216ms total)
TB4F0 168:997 JLINK_IsHalted()  returns FALSE (0001ms, 4217ms total)
TB4F0 169:100 JLINK_IsHalted()  returns FALSE (0000ms, 4216ms total)
TB4F0 169:201 JLINK_IsHalted()  returns FALSE (0000ms, 4216ms total)
TB4F0 169:302 JLINK_IsHalted()  returns FALSE (0000ms, 4216ms total)
TB4F0 169:404 JLINK_IsHalted()  returns FALSE (0000ms, 4216ms total)
T9028 169:505 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4223ms total)
T9028 169:512 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4224ms total)
T9028 169:513 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4225ms total)
T9028 169:514 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4226ms total)
T9028 169:515 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4227ms total)
T9028 169:516 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4228ms total)
TB4F0 169:518 JLINK_IsHalted()  returns FALSE (0000ms, 4228ms total)
TB4F0 169:619 JLINK_IsHalted()  returns FALSE (0000ms, 4228ms total)
TB4F0 169:720 JLINK_IsHalted()  returns FALSE (0000ms, 4228ms total)
TB4F0 169:822 JLINK_IsHalted()  returns FALSE (0000ms, 4228ms total)
TB4F0 169:923 JLINK_IsHalted()  returns FALSE (0000ms, 4228ms total)
T9028 170:024 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4235ms total)
T9028 170:031 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4236ms total)
T9028 170:032 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4237ms total)
T9028 170:033 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4238ms total)
T9028 170:034 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4239ms total)
T9028 170:035 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4240ms total)
TB4F0 170:036 JLINK_IsHalted()  returns FALSE (0001ms, 4241ms total)
TB4F0 170:138 JLINK_IsHalted()  returns FALSE (0000ms, 4240ms total)
TB4F0 170:240 JLINK_IsHalted()  returns FALSE (0000ms, 4240ms total)
TB4F0 170:341 JLINK_IsHalted()  returns FALSE (0000ms, 4240ms total)
TB4F0 170:442 JLINK_IsHalted()  returns FALSE (0000ms, 4240ms total)
T9028 170:543 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4247ms total)
T9028 170:550 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4248ms total)
T9028 170:551 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4249ms total)
T9028 170:552 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4250ms total)
T9028 170:553 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4251ms total)
T9028 170:554 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4252ms total)
TB4F0 170:555 JLINK_IsHalted()  returns FALSE (0001ms, 4253ms total)
TB4F0 170:657 JLINK_IsHalted()  returns FALSE (0000ms, 4252ms total)
TB4F0 170:758 JLINK_IsHalted()  returns FALSE (0000ms, 4252ms total)
TB4F0 170:859 JLINK_IsHalted()  returns FALSE (0000ms, 4252ms total)
TB4F0 170:960 JLINK_IsHalted()  returns FALSE (0000ms, 4252ms total)
T9028 171:062 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4259ms total)
T9028 171:069 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4260ms total)
T9028 171:070 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4261ms total)
T9028 171:071 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4262ms total)
T9028 171:072 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4263ms total)
T9028 171:073 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4264ms total)
TB4F0 171:074 JLINK_IsHalted()  returns FALSE (0001ms, 4265ms total)
TB4F0 171:176 JLINK_IsHalted()  returns FALSE (0000ms, 4264ms total)
TB4F0 171:277 JLINK_IsHalted()  returns FALSE (0000ms, 4264ms total)
TB4F0 171:378 JLINK_IsHalted()  returns FALSE (0000ms, 4264ms total)
TB4F0 171:479 JLINK_IsHalted()  returns FALSE (0000ms, 4264ms total)
T9028 171:581 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4271ms total)
T9028 171:588 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4272ms total)
T9028 171:589 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4273ms total)
T9028 171:590 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4274ms total)
T9028 171:591 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4275ms total)
T9028 171:593 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4276ms total)
TB4F0 171:594 JLINK_IsHalted()  returns FALSE (0001ms, 4277ms total)
TB4F0 171:695 JLINK_IsHalted()  returns FALSE (0000ms, 4276ms total)
TB4F0 171:796 JLINK_IsHalted()  returns FALSE (0000ms, 4276ms total)
TB4F0 171:897 JLINK_IsHalted()  returns FALSE (0000ms, 4276ms total)
TB4F0 171:999 JLINK_IsHalted()  returns FALSE (0000ms, 4276ms total)
T9028 172:100 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4283ms total)
T9028 172:107 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4284ms total)
T9028 172:108 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4285ms total)
T9028 172:109 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4286ms total)
T9028 172:110 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4287ms total)
T9028 172:111 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4288ms total)
TB4F0 172:112 JLINK_IsHalted()  returns FALSE (0001ms, 4289ms total)
TB4F0 172:213 JLINK_IsHalted()  returns FALSE (0000ms, 4288ms total)
TB4F0 172:314 JLINK_IsHalted()  returns FALSE (0000ms, 4288ms total)
TB4F0 172:416 JLINK_IsHalted()  returns FALSE (0000ms, 4288ms total)
TB4F0 172:517 JLINK_IsHalted()  returns FALSE (0000ms, 4288ms total)
T9028 172:618 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4295ms total)
T9028 172:626 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 4295ms total)
T9028 172:626 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4296ms total)
T9028 172:627 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4297ms total)
T9028 172:628 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4298ms total)
T9028 172:629 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4299ms total)
TB4F0 172:630 JLINK_IsHalted()  returns FALSE (0001ms, 4300ms total)
TB4F0 172:733 JLINK_IsHalted()  returns FALSE (0000ms, 4299ms total)
TB4F0 172:834 JLINK_IsHalted()  returns FALSE (0000ms, 4299ms total)
TB4F0 172:935 JLINK_IsHalted()  returns FALSE (0000ms, 4299ms total)
TB4F0 173:036 JLINK_IsHalted()  returns FALSE (0000ms, 4299ms total)
T9028 173:138 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4306ms total)
T9028 173:146 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0000ms, 4306ms total)
T9028 173:146 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4307ms total)
T9028 173:147 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4308ms total)
T9028 173:148 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4309ms total)
T9028 173:149 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4310ms total)
TB4F0 173:150 JLINK_IsHalted()  returns FALSE (0001ms, 4311ms total)
TB4F0 173:252 JLINK_IsHalted()  returns FALSE (0000ms, 4310ms total)
TB4F0 173:353 JLINK_IsHalted()  returns FALSE (0000ms, 4310ms total)
TB4F0 173:454 JLINK_IsHalted()  returns FALSE (0000ms, 4310ms total)
TB4F0 173:555 JLINK_IsHalted()  returns FALSE (0000ms, 4310ms total)
T9028 173:657 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4317ms total)
T9028 173:664 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4318ms total)
T9028 173:665 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0001ms, 4319ms total)
T9028 173:666 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4320ms total)
T9028 173:667 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 4321ms total)
T9028 173:668 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4322ms total)
TB4F0 173:669 JLINK_IsHalted()  returns TRUE (0004ms, 4326ms total)
TB4F0 173:673 JLINK_Halt()  returns 0x00 (0000ms, 4322ms total)
TB4F0 173:673 JLINK_IsHalted()  returns TRUE (0000ms, 4322ms total)
TB4F0 173:673 JLINK_IsHalted()  returns TRUE (0000ms, 4322ms total)
TB4F0 173:673 JLINK_IsHalted()  returns TRUE (0000ms, 4322ms total)
TB4F0 173:673 JLINK_ReadReg(R15 (PC))  returns 0x00007446 (0000ms, 4322ms total)
TB4F0 173:673 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 4322ms total)
TB4F0 173:673 JLINK_ClrBPEx(BPHandle = 0x00000002)  returns 0x00 (0000ms, 4322ms total)
TB4F0 173:673 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 4323ms total)
TB4F0 173:674 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 4324ms total)
TB4F0 173:675 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 4324ms total)
TB4F0 173:675 JLINK_ReadReg(R0)  returns 0x000F4240 (0000ms, 4324ms total)
TB4F0 173:675 JLINK_ReadReg(R1)  returns 0xFFFFFFFF (0000ms, 4324ms total)
TB4F0 173:675 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 4324ms total)
TB4F0 173:675 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 4324ms total)
TB4F0 173:675 JLINK_ReadReg(R4)  returns 0x00001000 (0000ms, 4324ms total)
TB4F0 173:675 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 4324ms total)
TB4F0 173:675 JLINK_ReadReg(R6)  returns 0x0402D010 (0000ms, 4324ms total)
TB4F0 173:675 JLINK_ReadReg(R7)  returns 0x00019450 (0000ms, 4324ms total)
TB4F0 173:675 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 4324ms total)
TB4F0 173:675 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 4324ms total)
TB4F0 173:675 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 4324ms total)
TB4F0 173:675 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 4324ms total)
TB4F0 173:675 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 4324ms total)
TB4F0 173:675 JLINK_ReadReg(R13 (SP))  returns 0x0202F6A0 (0000ms, 4324ms total)
TB4F0 173:675 JLINK_ReadReg(R14)  returns 0x0000AA17 (0000ms, 4324ms total)
TB4F0 173:675 JLINK_ReadReg(R15 (PC))  returns 0x00007446 (0000ms, 4324ms total)
TB4F0 173:675 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 4324ms total)
TB4F0 173:675 JLINK_ReadReg(MSP)  returns 0x0202F6A0 (0001ms, 4325ms total)
TB4F0 173:676 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 4325ms total)
TB4F0 173:676 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 4325ms total)
T9028 173:676 JLINK_ReadMemEx(0x02019902, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019902) - Data: 13  returns 0x01 (0001ms, 4326ms total)
T9028 173:677 JLINK_ReadMemEx(0x020199EE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020199EE) - Data: FF FF  returns 0x02 (0000ms, 4326ms total)
T9028 173:678 JLINK_ReadMemEx(0x02019898, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019898) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 4327ms total)
T9028 173:679 JLINK_ReadMemEx(0x020199F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020199F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 4327ms total)
T9028 173:679 JLINK_ReadMemEx(0x02019750, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019750) - Data: 00 00 00 00  returns 0x04 (0001ms, 4328ms total)
T9028 173:680 JLINK_ReadMemEx(0x02019750, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019750) - Data: 00 00 00 00  returns 0x04 (0001ms, 4329ms total)
T9028 173:682 JLINK_ReadMemEx(0x02019564, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02019564) - Data: 68 74 74 70 3A 2F 2F 31 32 33 2E 35 37 2E 38 37 ...  returns 0x20 (0001ms, 4330ms total)
T9028 173:683 JLINK_ReadMemEx(0x0402F000, 0x0280 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(640 bytes @ 0x0402F000) - Data: 36 A7 58 26 20 B7 55 09 CE 86 7F EA 61 43 88 D9 ...  returns 0x280 (0007ms, 4337ms total)
T9028 173:691 JLINK_ReadMemEx(0x00007446, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00007440) -- Updating C cache (64 bytes @ 0x00007440) -- Read from C cache (2 bytes @ 0x00007446) - Data: 02 F0  returns 0x02 (0001ms, 4338ms total)
T9028 173:692 JLINK_ReadMemEx(0x00007448, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00007480) -- Updating C cache (64 bytes @ 0x00007480) -- Read from C cache (60 bytes @ 0x00007448) - Data: B9 FC BF F3 4F 8F 17 48 17 49 01 60 BF F3 4F 8F ...  returns 0x3C (0001ms, 4339ms total)
T9028 173:693 JLINK_ReadMemEx(0x00007448, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00007448) - Data: B9 FC  returns 0x02 (0000ms, 4339ms total)
T9028 173:694 JLINK_ReadMemEx(0x0000744A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000744A) - Data: BF F3  returns 0x02 (0000ms, 4339ms total)
T9028 173:694 JLINK_ReadMemEx(0x0000744C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000744C) - Data: 4F 8F 17 48 17 49 01 60 BF F3 4F 8F 00 BF FD E7 ...  returns 0x3C (0000ms, 4339ms total)
T9028 173:694 JLINK_ReadMemEx(0x0000744C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000744C) - Data: 4F 8F  returns 0x02 (0000ms, 4339ms total)
TBA20 173:694 
  ***** Error: Connection to emulator lost! (3760761ms, 3765100ms total)
T9028 4356:253 JLINK_ReadMemEx(0x0201975C, 0x0004 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 4339ms total)
T9028 4356:253 JLINK_ReadMemEx(0x0201975C, 0x0004 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 4339ms total)
T9028 4356:253 JLINK_ReadMemEx(0x0201975C, 0x0004 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 4339ms total)
T9028 4356:253 JLINK_ReadMemEx(0x0201975C, 0x0004 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 4339ms total)
T9028 4356:253 JLINK_ReadMemEx(0x0201975C, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 4339ms total)
T9028 4356:253 JLINK_ReadMemEx(0x0201975C, 0x0001 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 4339ms total)
T9028 5435:734 JLINK_Close() (0013ms, 4352ms total)
T9028 5435:734  (0013ms, 4352ms total)
T9028 5435:734 Closed (0013ms, 4352ms total)