yincheng.zhong
2024-09-04 2e7e22e3a8fdd2dfbbf9b4e1dd92b96cbf96868b
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
 
T0554 000:079 SEGGER J-Link V6.30d Log File (0000ms, 0032ms total)
T0554 000:079 DLL Compiled: Feb 16 2018 13:30:32 (0000ms, 0032ms total)
T0554 000:079 Logging started @ 2024-09-03 18:57 (0000ms, 0032ms total)
T0554 000:079 JLINK_SetWarnOutHandler(...) (0000ms, 0032ms total)
T0554 000:079 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 (0016ms, 0048ms total)
T0554 000:079 WEBSRV Webserver running on local port 19080 (0016ms, 0048ms total)
T0554 000:079   returns O.K. (0016ms, 0048ms total)
T0554 000:095 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0048ms total)
T0554 000:095 JLINK_TIF_GetAvailable(...) (0000ms, 0048ms total)
T0554 000:095 JLINK_SetErrorOutHandler(...) (0000ms, 0048ms total)
T0554 000:095 JLINK_ExecCommand("ProjectFile = "E:\GIT\ChinaUWBProject\keil\JLinkSettings.ini"", ...). D:\Keil_v5\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0097ms, 0145ms total)
T0554 000:192 JLINK_ExecCommand("Device = MK8000", ...). Device "MK8000" selected.  returns 0x00 (0005ms, 0150ms total)
T0554 000:197 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0150ms total)
T0554 000:197 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0150ms total)
T0554 000:197 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0150ms total)
T0554 000:197 JLINK_GetFirmwareString(...) (0000ms, 0150ms total)
T0554 000:197 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0150ms total)
T0554 000:197 JLINK_GetCompileDateTime() (0000ms, 0150ms total)
T0554 000:197 JLINK_GetFirmwareString(...) (0000ms, 0150ms total)
T0554 000:197 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0150ms total)
T0554 000:197 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0001ms, 0151ms total)
T0554 000:198 JLINK_SetSpeed(10000) (0000ms, 0151ms total)
T0554 000:198 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_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)
ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB >0x0D TIF> >0x21 TIF>  returns 0x0BB11477 (0130ms, 0281ms total)
T0554 000:329 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0281ms total)
T0554 000:329 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0281ms total)
T0554 000:329 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0281ms total)
T0554 000:329 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0281ms total)
T0554 000:329 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0281ms total)
T0554 000:329 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, 0282ms total)
T0554 000:330 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0282ms total)
T0554 000:330 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0282ms total)
T0554 000:330 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, 0283ms total)
T0554 000:331 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0283ms total)
T0554 000:331 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0283ms total)
T0554 000:331 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0283ms total)
T0554 000:331 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 0283ms total)
T0554 000:331 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0283ms total)
T0554 000:331 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 0283ms total)
T0554 000:331 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41  returns 0x01 (0000ms, 0283ms total)
T0554 000:331 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0283ms total)
T0554 000:331 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0283ms total)
T0554 000:331 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, 0353ms total)
T0554 000:401 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0353ms total)
T0554 000:401 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0353ms total)
T0554 000:401 JLINK_Halt()  returns 0x00 (0000ms, 0353ms total)
T0554 000:401 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 0x01 (0001ms, 0354ms total)
T0554 000:402 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0001ms, 0355ms total)
T0554 000:403 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0000ms, 0355ms total)
T0554 000:403 JLINK_GetHWStatus(...)  returns 0x00 (0001ms, 0356ms total)
T0554 000:404 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0356ms total)
T0554 000:404 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0356ms total)
T0554 000:404 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0356ms total)
T0554 000:404 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0356ms total)
T0554 000:404 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0000ms, 0356ms total)
T0554 000:404 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0001ms, 0357ms total)
T0554 000:405 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0357ms total)
T0554 000:494 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0357ms total)
T0554 000:494 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, 0427ms total)
T0554 000:564 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0427ms total)
T0554 000:564 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0427ms total)
T0554 000:564 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0001ms, 0428ms total)
T0554 000:565 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0429ms total)
T0554 000:566 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0430ms total)
T0554 000:567 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 (0001ms, 0431ms total)
T0554 000:568 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 0432ms total)
T0554 000:569 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0000ms, 0432ms total)
T0554 000:569 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 (0002ms, 0434ms total)
T0554 000:571 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0000ms, 0434ms total)
T0554 000:571 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0435ms total)
T0554 000:572 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0000ms, 0435ms total)
T0554 000:572 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0002ms, 0437ms total)
T0554 000:574 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0000ms, 0437ms total)
T0554 000:574 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, 0438ms total)
T0554 000:575 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 0439ms total)
T0554 000:576 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0440ms total)
T0554 002:401 JLINK_ReadMemEx(0x00006978, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x00006940) -- Updating C cache (128 bytes @ 0x00006940) -- Read from C cache (60 bytes @ 0x00006978) - Data: 00 6B 00 28 00 D0 80 47 80 BD C0 46 80 B5 6C 48 ...  returns 0x3C (0002ms, 0442ms total)
T0554 002:403 JLINK_ReadMemEx(0x00006978, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00006978) - Data: 00 6B  returns 0x02 (0001ms, 0443ms total)
T0554 002:404 JLINK_ReadMemEx(0x0000697A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000697A) - Data: 00 28  returns 0x02 (0000ms, 0443ms total)
T0554 002:404 JLINK_ReadMemEx(0x0000697A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000697A) - Data: 00 28  returns 0x02 (0000ms, 0443ms total)
T0554 002:404 JLINK_ReadMemEx(0x0000697C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000697C) - Data: 00 D0 80 47 80 BD C0 46 80 B5 6C 48 40 6B 00 28 ...  returns 0x3C (0000ms, 0443ms total)
T0554 002:404 JLINK_ReadMemEx(0x0000697C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000697C) - Data: 00 D0  returns 0x02 (0000ms, 0443ms total)
T0554 002:404 JLINK_ReadMemEx(0x0000697C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000697C) - Data: 00 D0 80 47 80 BD C0 46 80 B5 6C 48 40 6B 00 28 ...  returns 0x3C (0000ms, 0443ms total)
T0554 002:404 JLINK_ReadMemEx(0x0000697C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000697C) - Data: 00 D0  returns 0x02 (0000ms, 0443ms total)
T0554 002:404 JLINK_ReadMemEx(0x0000697E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000697E) - Data: 80 47  returns 0x02 (0000ms, 0443ms total)
T0554 002:846 JLINK_ReadReg(R0)  returns 0x034DDDC9 (0000ms, 0443ms total)
T0554 002:846 JLINK_ReadReg(R1)  returns 0x00000080 (0000ms, 0443ms total)
T0554 002:846 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0443ms total)
T0554 002:846 JLINK_ReadReg(R3)  returns 0x00000008 (0000ms, 0443ms total)
T0554 002:846 JLINK_ReadReg(R4)  returns 0x000007CD (0000ms, 0443ms total)
T0554 002:846 JLINK_ReadReg(R5)  returns 0x000000CD (0000ms, 0443ms total)
T0554 002:846 JLINK_ReadReg(R6)  returns 0x02019810 (0000ms, 0443ms total)
T0554 002:846 JLINK_ReadReg(R7)  returns 0x0201901C (0000ms, 0443ms total)
T0554 002:846 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0443ms total)
T0554 002:846 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0443ms total)
T0554 002:847 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0444ms total)
T0554 002:847 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0444ms total)
T0554 002:847 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0444ms total)
T0554 002:847 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0444ms total)
T0554 002:847 JLINK_ReadReg(R14)  returns 0x00002ECB (0000ms, 0444ms total)
T0554 002:847 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0444ms total)
T0554 002:847 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0444ms total)
T0554 002:847 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0444ms total)
T0554 002:847 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0444ms total)
T0554 002:847 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0444ms total)
T0554 002:913 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0445ms total)
T0554 002:919 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0446ms total)
T0554 002:920 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0447ms total)
T0554 002:924 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 00  returns 0x01 (0001ms, 0448ms total)
T0554 002:925 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 00  returns 0x01 (0001ms, 0449ms total)
T0554 002:926 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 00  returns 0x01 (0000ms, 0449ms total)
T0554 002:930 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 00  returns 0x01 (0001ms, 0450ms total)
T0554 002:931 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 00  returns 0x01 (0000ms, 0450ms total)
T0554 002:931 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 00  returns 0x01 (0001ms, 0451ms total)
T0554 002:936 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0452ms total)
T0554 002:937 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0452ms total)
T0554 002:937 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0453ms total)
T0554 002:943 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0000ms, 0453ms total)
T0554 002:943 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0454ms total)
T0554 002:944 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0000ms, 0454ms total)
T0554 002:949 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0455ms total)
T0554 002:950 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0456ms total)
T0554 002:951 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0456ms total)
T0554 002:956 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0457ms total)
T0554 002:957 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0458ms total)
T0554 002:958 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0458ms total)
T71A8 003:053 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0459ms total)
T71A8 003:054 JLINK_SetBPEx(Addr = 0x000098AC, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0459ms total)
T71A8 003:054 JLINK_SetBPEx(Addr = 0x00005E22, Type = 0xFFFFFFF2)  returns 0x00000002 (0000ms, 0459ms total)
T71A8 003:054 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- 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, 0464ms total)
T71A8 003:160 JLINK_IsHalted()  returns TRUE (0003ms, 0467ms total)
T71A8 003:163 JLINK_Halt()  returns 0x00 (0000ms, 0464ms total)
T71A8 003:163 JLINK_IsHalted()  returns TRUE (0000ms, 0464ms total)
T71A8 003:163 JLINK_IsHalted()  returns TRUE (0000ms, 0464ms total)
T71A8 003:163 JLINK_IsHalted()  returns TRUE (0000ms, 0464ms total)
T71A8 003:163 JLINK_ReadReg(R15 (PC))  returns 0x000098AC (0000ms, 0464ms total)
T71A8 003:163 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0464ms total)
T71A8 003:163 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0464ms total)
T71A8 003:163 JLINK_ClrBPEx(BPHandle = 0x00000002)  returns 0x00 (0000ms, 0464ms total)
T71A8 003:163 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0465ms total)
T71A8 003:164 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0466ms total)
T71A8 003:165 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 0466ms total)
T71A8 003:165 JLINK_ReadReg(R0)  returns 0x000098AD (0000ms, 0466ms total)
T71A8 003:165 JLINK_ReadReg(R1)  returns 0x0201CDD8 (0000ms, 0466ms total)
T71A8 003:165 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0466ms total)
T71A8 003:165 JLINK_ReadReg(R3)  returns 0x0000D069 (0000ms, 0466ms total)
T71A8 003:165 JLINK_ReadReg(R4)  returns 0x0000F134 (0000ms, 0466ms total)
T71A8 003:165 JLINK_ReadReg(R5)  returns 0x00000001 (0001ms, 0467ms total)
T71A8 003:166 JLINK_ReadReg(R6)  returns 0x0000F134 (0000ms, 0467ms total)
T71A8 003:166 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0467ms total)
T71A8 003:166 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0467ms total)
T71A8 003:166 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0467ms total)
T71A8 003:166 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0467ms total)
T71A8 003:166 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0467ms total)
T71A8 003:166 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 0467ms total)
T71A8 003:166 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0467ms total)
T71A8 003:166 JLINK_ReadReg(R14)  returns 0x00000C7D (0000ms, 0467ms total)
T71A8 003:166 JLINK_ReadReg(R15 (PC))  returns 0x000098AC (0000ms, 0467ms total)
T71A8 003:166 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0467ms total)
T71A8 003:166 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0467ms total)
T71A8 003:166 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0467ms total)
T71A8 003:166 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0467ms total)
T0554 003:167 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: 00 00 00 00  returns 0x04 (0001ms, 0468ms total)
T0554 003:169 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 00  returns 0x01 (0001ms, 0469ms total)
T0554 003:170 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 00  returns 0x01 (0000ms, 0469ms total)
T0554 003:170 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0470ms total)
T0554 003:171 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0471ms total)
T0554 003:172 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0472ms total)
T0554 003:173 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0472ms total)
T0554 003:174 JLINK_ReadMemEx(0x000098AC, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x00009880) -- Updating C cache (128 bytes @ 0x00009880) -- Read from C cache (60 bytes @ 0x000098AC) - Data: 82 B0 FD F7 75 FC 05 20 00 24 21 46 FF F7 B6 FE ...  returns 0x3C (0002ms, 0474ms total)
T0554 003:176 JLINK_ReadMemEx(0x000098AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000098AC) - Data: 82 B0  returns 0x02 (0000ms, 0474ms total)
T0554 003:176 JLINK_ReadMemEx(0x000098AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000098AE) - Data: FD F7  returns 0x02 (0000ms, 0474ms total)
T0554 003:176 JLINK_ReadMemEx(0x000098AE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000098AE) - Data: FD F7  returns 0x02 (0000ms, 0474ms total)
T0554 003:176 JLINK_ReadMemEx(0x000098B0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x000098B0) - Data: 75 FC 05 20 00 24 21 46 FF F7 B6 FE 06 20 21 46 ...  returns 0x3C (0000ms, 0474ms total)
T0554 003:176 JLINK_ReadMemEx(0x000098B0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000098B0) - Data: 75 FC  returns 0x02 (0000ms, 0474ms total)
T71A8 004:232 JLINK_ReadMemEx(0x000098AC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x000098AC) - Data: 82 B0  returns 0x02 (0000ms, 0474ms total)
T71A8 004:232 JLINK_SetBPEx(Addr = 0x00005E22, Type = 0xFFFFFFF2)  returns 0x00000003 (0000ms, 0474ms total)
T71A8 004:232 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) (0004ms, 0478ms total)
T71A8 004:337 JLINK_IsHalted()  returns FALSE (0000ms, 0478ms total)
T71A8 004:438 JLINK_IsHalted()  returns FALSE (0000ms, 0478ms total)
T71A8 004:539 JLINK_IsHalted()  returns FALSE (0000ms, 0478ms total)
T71A8 004:640 JLINK_IsHalted()  returns FALSE (0000ms, 0478ms total)
T0554 004:741 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0478ms total)
T0554 004:741 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 00  returns 0x01 (0001ms, 0479ms total)
T0554 004:742 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 00  returns 0x01 (0001ms, 0480ms total)
T0554 004:743 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0480ms total)
T0554 004:743 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0481ms total)
T0554 004:744 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0481ms total)
T0554 004:744 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0482ms total)
T71A8 004:745 JLINK_IsHalted()  returns FALSE (0001ms, 0483ms total)
T71A8 004:847 JLINK_IsHalted()  returns FALSE (0000ms, 0482ms total)
T71A8 004:949 JLINK_IsHalted()  returns FALSE (0000ms, 0482ms total)
T71A8 005:050 JLINK_IsHalted()  returns FALSE (0000ms, 0482ms total)
T71A8 005:151 JLINK_IsHalted()  returns FALSE (0000ms, 0482ms total)
T0554 005:253 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0482ms total)
T0554 005:253 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 00  returns 0x01 (0001ms, 0483ms total)
T0554 005:254 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 00  returns 0x01 (0001ms, 0484ms total)
T0554 005:255 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0484ms total)
T0554 005:255 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0485ms total)
T0554 005:256 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0486ms total)
T0554 005:257 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0486ms total)
T71A8 005:257 JLINK_IsHalted()  returns FALSE (0001ms, 0487ms total)
T0554 005:321 JLINK_ReadMemEx(0x00006978, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00006978) - Data: 20 46  returns 0x02 (0001ms, 0487ms total)
T0554 005:322 JLINK_ReadMemEx(0x0000697A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000697A) - Data: 03 F0  returns 0x02 (0000ms, 0487ms total)
T0554 005:322 JLINK_ReadMemEx(0x0000697A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000697A) - Data: 03 F0  returns 0x02 (0001ms, 0488ms total)
T0554 005:323 JLINK_ReadMemEx(0x0000697C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000697C) - Data: 43 FF  returns 0x02 (0000ms, 0488ms total)
T71A8 005:358 JLINK_IsHalted()  returns FALSE (0000ms, 0488ms total)
T71A8 005:459 JLINK_IsHalted()  returns FALSE (0000ms, 0488ms total)
T71A8 005:561 JLINK_IsHalted()  returns FALSE (0000ms, 0488ms total)
T71A8 005:662 JLINK_IsHalted()  returns FALSE (0000ms, 0488ms total)
T71A8 005:763 JLINK_IsHalted()  returns FALSE (0000ms, 0488ms total)
T0554 005:864 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: 00 00 00 00  returns 0x04 (0000ms, 0488ms total)
T0554 005:864 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 00  returns 0x01 (0001ms, 0489ms total)
T0554 005:866 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 00  returns 0x01 (0000ms, 0489ms total)
T0554 005:866 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0490ms total)
T0554 005:867 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0000ms, 0490ms total)
T0554 005:867 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0491ms total)
T0554 005:868 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0491ms total)
T71A8 005:868 JLINK_IsHalted()  returns FALSE (0001ms, 0492ms total)
T71A8 005:970 JLINK_IsHalted()  returns FALSE (0000ms, 0491ms total)
T71A8 006:071 JLINK_IsHalted()  returns FALSE (0000ms, 0491ms total)
T71A8 006:172 JLINK_IsHalted()  returns FALSE (0000ms, 0491ms total)
T71A8 006:273 JLINK_IsHalted()  returns FALSE (0000ms, 0491ms total)
T71A8 006:374 JLINK_IsHalted()  returns FALSE (0000ms, 0491ms total)
T0554 006:475 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0491ms total)
T0554 006:476 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0492ms total)
T0554 006:477 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0493ms total)
T0554 006:478 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0494ms total)
T0554 006:479 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0495ms total)
T0554 006:480 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0495ms total)
T0554 006:480 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0496ms total)
T71A8 006:481 JLINK_IsHalted()  returns FALSE (0001ms, 0497ms total)
T71A8 006:583 JLINK_IsHalted()  returns FALSE (0000ms, 0496ms total)
T71A8 006:684 JLINK_IsHalted()  returns FALSE (0000ms, 0496ms total)
T71A8 006:785 JLINK_IsHalted()  returns FALSE (0000ms, 0496ms total)
T71A8 006:886 JLINK_IsHalted()  returns FALSE (0000ms, 0496ms total)
T0554 006:987 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0496ms total)
T0554 006:988 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0497ms total)
T0554 006:989 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0498ms total)
T0554 006:990 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0499ms total)
T0554 006:991 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0500ms total)
T0554 006:992 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0500ms total)
T0554 006:992 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0501ms total)
T71A8 006:993 JLINK_IsHalted()  returns FALSE (0001ms, 0502ms total)
T71A8 007:094 JLINK_IsHalted()  returns FALSE (0000ms, 0501ms total)
T71A8 007:195 JLINK_IsHalted()  returns FALSE (0000ms, 0501ms total)
T71A8 007:296 JLINK_IsHalted()  returns FALSE (0000ms, 0501ms total)
T71A8 007:398 JLINK_IsHalted()  returns FALSE (0000ms, 0501ms total)
T71A8 007:499 JLINK_IsHalted()  returns FALSE (0000ms, 0501ms total)
T0554 007:600 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0501ms total)
T0554 007:600 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0502ms total)
T0554 007:601 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0503ms total)
T0554 007:602 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0503ms total)
T0554 007:602 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0504ms total)
T0554 007:603 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0505ms total)
T0554 007:604 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0505ms total)
T71A8 007:604 JLINK_IsHalted()  returns FALSE (0001ms, 0506ms total)
T71A8 007:706 JLINK_IsHalted()  returns FALSE (0000ms, 0505ms total)
T71A8 007:807 JLINK_IsHalted()  returns FALSE (0000ms, 0505ms total)
T71A8 007:908 JLINK_IsHalted()  returns FALSE (0000ms, 0505ms total)
T71A8 008:009 JLINK_IsHalted()  returns FALSE (0000ms, 0505ms total)
T71A8 008:110 JLINK_IsHalted()  returns FALSE (0000ms, 0505ms total)
T0554 008:212 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0505ms total)
T0554 008:212 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0506ms total)
T0554 008:213 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0507ms total)
T0554 008:214 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0507ms total)
T0554 008:214 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0508ms total)
T0554 008:215 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0509ms total)
T0554 008:216 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0509ms total)
T71A8 008:216 JLINK_IsHalted()  returns FALSE (0001ms, 0510ms total)
T71A8 008:317 JLINK_IsHalted()  returns FALSE (0000ms, 0509ms total)
T71A8 008:418 JLINK_IsHalted()  returns FALSE (0000ms, 0509ms total)
T71A8 008:520 JLINK_IsHalted()  returns FALSE (0000ms, 0509ms total)
T71A8 008:621 JLINK_IsHalted()  returns FALSE (0000ms, 0509ms total)
T0554 008:722 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0509ms total)
T0554 008:722 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0510ms total)
T0554 008:723 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0511ms total)
T0554 008:724 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0511ms total)
T0554 008:724 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0512ms total)
T0554 008:725 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0512ms total)
T0554 008:725 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0513ms total)
T71A8 008:726 JLINK_IsHalted()  returns FALSE (0001ms, 0514ms total)
T71A8 008:828 JLINK_IsHalted()  returns FALSE (0000ms, 0513ms total)
T71A8 008:929 JLINK_IsHalted()  returns FALSE (0000ms, 0513ms total)
T71A8 009:030 JLINK_IsHalted()  returns FALSE (0000ms, 0513ms total)
T71A8 009:131 JLINK_IsHalted()  returns FALSE (0000ms, 0513ms total)
T71A8 009:233 JLINK_IsHalted()  returns FALSE (0000ms, 0513ms total)
T0554 009:334 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0513ms total)
T0554 009:334 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0514ms total)
T0554 009:335 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0515ms total)
T0554 009:336 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0515ms total)
T0554 009:337 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0000ms, 0515ms total)
T0554 009:337 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0516ms total)
T0554 009:338 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0517ms total)
T71A8 009:339 JLINK_IsHalted()  returns FALSE (0000ms, 0517ms total)
T71A8 009:440 JLINK_IsHalted()  returns FALSE (0000ms, 0517ms total)
T71A8 009:541 JLINK_IsHalted()  returns FALSE (0000ms, 0517ms total)
T71A8 009:642 JLINK_IsHalted()  returns FALSE (0000ms, 0517ms total)
T71A8 009:743 JLINK_IsHalted()  returns FALSE (0000ms, 0517ms total)
T71A8 009:844 JLINK_IsHalted()  returns FALSE (0000ms, 0517ms total)
T0554 009:945 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0517ms total)
T0554 009:945 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0518ms total)
T0554 009:946 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0519ms total)
T0554 009:947 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0519ms total)
T0554 009:947 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0520ms total)
T0554 009:948 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0521ms total)
T0554 009:949 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0521ms total)
T71A8 009:949 JLINK_IsHalted()  returns FALSE (0001ms, 0522ms total)
T71A8 010:051 JLINK_IsHalted()  returns FALSE (0000ms, 0521ms total)
T71A8 010:152 JLINK_IsHalted()  returns FALSE (0000ms, 0521ms total)
T71A8 010:254 JLINK_IsHalted()  returns FALSE (0000ms, 0521ms total)
T71A8 010:356 JLINK_IsHalted()  returns FALSE (0000ms, 0521ms total)
T0554 010:457 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0521ms total)
T0554 010:457 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0522ms total)
T0554 010:458 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0000ms, 0522ms total)
T0554 010:459 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0523ms total)
T0554 010:459 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0524ms total)
T0554 010:460 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0524ms total)
T0554 010:460 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0525ms total)
T71A8 010:461 JLINK_IsHalted()  returns FALSE (0001ms, 0526ms total)
T71A8 010:563 JLINK_IsHalted()  returns FALSE (0000ms, 0525ms total)
T71A8 010:664 JLINK_IsHalted()  returns FALSE (0000ms, 0525ms total)
T71A8 010:765 JLINK_IsHalted()  returns FALSE (0000ms, 0525ms total)
T71A8 010:866 JLINK_IsHalted()  returns FALSE (0000ms, 0525ms total)
T71A8 010:967 JLINK_IsHalted()  returns FALSE (0000ms, 0525ms total)
T0554 011:068 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0525ms total)
T0554 011:068 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0526ms total)
T0554 011:069 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0527ms total)
T0554 011:070 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0527ms total)
T0554 011:070 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0528ms total)
T0554 011:071 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0529ms total)
T0554 011:072 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0529ms total)
T71A8 011:072 JLINK_IsHalted()  returns FALSE (0001ms, 0530ms total)
T71A8 011:174 JLINK_IsHalted()  returns FALSE (0000ms, 0529ms total)
T71A8 011:276 JLINK_IsHalted()  returns FALSE (0000ms, 0529ms total)
T71A8 011:377 JLINK_IsHalted()  returns FALSE (0000ms, 0529ms total)
T71A8 011:478 JLINK_IsHalted()  returns FALSE (0000ms, 0529ms total)
T71A8 011:580 JLINK_IsHalted()  returns FALSE (0000ms, 0529ms total)
T0554 011:681 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0529ms total)
T0554 011:681 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0530ms total)
T0554 011:682 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0531ms total)
T0554 011:683 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0531ms total)
T0554 011:683 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0532ms total)
T0554 011:684 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0532ms total)
T0554 011:684 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0533ms total)
T71A8 011:685 JLINK_IsHalted()  returns FALSE (0001ms, 0534ms total)
T71A8 011:786 JLINK_IsHalted()  returns FALSE (0000ms, 0533ms total)
T71A8 011:887 JLINK_IsHalted()  returns FALSE (0000ms, 0533ms total)
T71A8 011:988 JLINK_IsHalted()  returns FALSE (0000ms, 0533ms total)
T71A8 012:089 JLINK_IsHalted()  returns FALSE (0000ms, 0533ms total)
T0554 012:190 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0533ms total)
T0554 012:190 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0534ms total)
T0554 012:191 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0535ms total)
T0554 012:192 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0535ms total)
T0554 012:192 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0536ms total)
T0554 012:193 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0536ms total)
T0554 012:194 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0537ms total)
T71A8 012:194 JLINK_IsHalted()  returns FALSE (0001ms, 0538ms total)
T71A8 012:296 JLINK_IsHalted()  returns FALSE (0000ms, 0537ms total)
T71A8 012:397 JLINK_IsHalted()  returns FALSE (0000ms, 0537ms total)
T71A8 012:498 JLINK_IsHalted()  returns FALSE (0000ms, 0537ms total)
T71A8 012:599 JLINK_IsHalted()  returns FALSE (0000ms, 0537ms total)
T71A8 012:700 JLINK_IsHalted()  returns FALSE (0000ms, 0537ms total)
T0554 012:802 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0537ms total)
T0554 012:802 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0538ms total)
T0554 012:803 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0539ms total)
T0554 012:804 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0539ms total)
T0554 012:804 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0540ms total)
T0554 012:805 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0541ms total)
T0554 012:806 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0541ms total)
T71A8 012:806 JLINK_IsHalted()  returns FALSE (0001ms, 0542ms total)
T71A8 012:908 JLINK_IsHalted()  returns FALSE (0000ms, 0541ms total)
T71A8 013:009 JLINK_IsHalted()  returns FALSE (0000ms, 0541ms total)
T71A8 013:110 JLINK_IsHalted()  returns FALSE (0000ms, 0541ms total)
T71A8 013:212 JLINK_IsHalted()  returns FALSE (0000ms, 0541ms total)
T71A8 013:313 JLINK_IsHalted()  returns FALSE (0000ms, 0541ms total)
T0554 013:414 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0541ms total)
T0554 013:414 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0542ms total)
T0554 013:415 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0543ms total)
T0554 013:416 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0543ms total)
T0554 013:416 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0544ms total)
T0554 013:417 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0545ms total)
T0554 013:418 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0545ms total)
T71A8 013:418 JLINK_IsHalted()  returns FALSE (0001ms, 0546ms total)
T71A8 013:520 JLINK_IsHalted()  returns FALSE (0000ms, 0545ms total)
T71A8 013:621 JLINK_IsHalted()  returns FALSE (0000ms, 0545ms total)
T71A8 013:722 JLINK_IsHalted()  returns FALSE (0000ms, 0545ms total)
T71A8 013:823 JLINK_IsHalted()  returns FALSE (0000ms, 0545ms total)
T71A8 013:923 JLINK_IsHalted()  returns FALSE (0000ms, 0545ms total)
T0554 014:024 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0545ms total)
T0554 014:024 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0546ms total)
T0554 014:025 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0547ms total)
T0554 014:026 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0547ms total)
T0554 014:026 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0548ms total)
T0554 014:027 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0548ms total)
T0554 014:027 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0549ms total)
T71A8 014:028 JLINK_IsHalted()  returns FALSE (0001ms, 0550ms total)
T71A8 014:131 JLINK_IsHalted()  returns FALSE (0000ms, 0549ms total)
T71A8 014:232 JLINK_IsHalted()  returns FALSE (0000ms, 0549ms total)
T71A8 014:334 JLINK_IsHalted()  returns FALSE (0000ms, 0549ms total)
T71A8 014:435 JLINK_IsHalted()  returns FALSE (0000ms, 0549ms total)
T0554 014:536 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0549ms total)
T0554 014:536 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0550ms total)
T0554 014:537 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0551ms total)
T0554 014:538 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0551ms total)
T0554 014:538 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0552ms total)
T0554 014:539 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0553ms total)
T0554 014:540 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0553ms total)
T71A8 014:540 JLINK_IsHalted()  returns FALSE (0001ms, 0554ms total)
T71A8 014:642 JLINK_IsHalted()  returns FALSE (0000ms, 0553ms total)
T71A8 014:743 JLINK_IsHalted()  returns FALSE (0000ms, 0553ms total)
T71A8 014:844 JLINK_IsHalted()  returns FALSE (0000ms, 0553ms total)
T71A8 014:945 JLINK_IsHalted()  returns FALSE (0000ms, 0553ms total)
T71A8 015:046 JLINK_IsHalted()  returns FALSE (0000ms, 0553ms total)
T0554 015:147 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0553ms total)
T0554 015:147 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0554ms total)
T0554 015:148 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0555ms total)
T0554 015:149 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0555ms total)
T0554 015:149 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0556ms total)
T0554 015:150 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0557ms total)
T0554 015:151 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0557ms total)
T71A8 015:151 JLINK_IsHalted()  returns FALSE (0001ms, 0558ms total)
T71A8 015:253 JLINK_IsHalted()  returns FALSE (0000ms, 0557ms total)
T71A8 015:354 JLINK_IsHalted()  returns FALSE (0000ms, 0557ms total)
T71A8 015:455 JLINK_IsHalted()  returns FALSE (0000ms, 0557ms total)
T71A8 015:557 JLINK_IsHalted()  returns FALSE (0000ms, 0557ms total)
T71A8 015:658 JLINK_IsHalted()  returns FALSE (0000ms, 0557ms total)
T0554 015:759 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0557ms total)
T0554 015:759 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0558ms total)
T0554 015:760 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0559ms total)
T0554 015:761 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0559ms total)
T0554 015:761 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0560ms total)
T0554 015:762 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0560ms total)
T0554 015:763 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0560ms total)
T71A8 015:763 JLINK_IsHalted()  returns FALSE (0001ms, 0561ms total)
T71A8 015:864 JLINK_IsHalted()  returns FALSE (0000ms, 0560ms total)
T71A8 015:965 JLINK_IsHalted()  returns FALSE (0000ms, 0560ms total)
T71A8 016:066 JLINK_IsHalted()  returns FALSE (0000ms, 0560ms total)
T71A8 016:167 JLINK_IsHalted()  returns FALSE (0000ms, 0560ms total)
T0554 016:269 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0560ms total)
T0554 016:269 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0561ms total)
T0554 016:270 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0562ms total)
T0554 016:271 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0562ms total)
T0554 016:271 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0563ms total)
T0554 016:272 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0564ms total)
T0554 016:273 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0564ms total)
T71A8 016:273 JLINK_IsHalted()  returns FALSE (0001ms, 0565ms total)
T71A8 016:375 JLINK_IsHalted()  returns FALSE (0000ms, 0564ms total)
T71A8 016:476 JLINK_IsHalted()  returns FALSE (0000ms, 0564ms total)
T71A8 016:577 JLINK_IsHalted()  returns FALSE (0000ms, 0564ms total)
T71A8 016:678 JLINK_IsHalted()  returns FALSE (0000ms, 0564ms total)
T71A8 016:779 JLINK_IsHalted()  returns FALSE (0000ms, 0564ms total)
T0554 016:879 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0564ms total)
T0554 016:879 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0002ms, 0566ms total)
T0554 016:881 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0000ms, 0566ms total)
T0554 016:881 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0567ms total)
T0554 016:882 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0568ms total)
T0554 016:883 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0568ms total)
T0554 016:883 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0569ms total)
T71A8 016:884 JLINK_IsHalted()  returns FALSE (0000ms, 0569ms total)
T71A8 016:986 JLINK_IsHalted()  returns FALSE (0000ms, 0569ms total)
T71A8 017:087 JLINK_IsHalted()  returns FALSE (0000ms, 0569ms total)
T71A8 017:188 JLINK_IsHalted()  returns FALSE (0000ms, 0569ms total)
T71A8 017:289 JLINK_IsHalted()  returns FALSE (0000ms, 0569ms total)
T71A8 017:390 JLINK_IsHalted()  returns FALSE (0000ms, 0569ms total)
T0554 017:491 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0569ms total)
T0554 017:491 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0570ms total)
T0554 017:492 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0571ms total)
T0554 017:493 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0571ms total)
T0554 017:493 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0572ms total)
T0554 017:494 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0572ms total)
T0554 017:494 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0573ms total)
T71A8 017:495 JLINK_IsHalted()  returns FALSE (0001ms, 0574ms total)
T71A8 017:596 JLINK_IsHalted()  returns FALSE (0000ms, 0573ms total)
T71A8 017:697 JLINK_IsHalted()  returns FALSE (0000ms, 0573ms total)
T71A8 017:798 JLINK_IsHalted()  returns FALSE (0000ms, 0573ms total)
T71A8 017:899 JLINK_IsHalted()  returns FALSE (0000ms, 0573ms total)
T71A8 018:000 JLINK_IsHalted()  returns FALSE (0000ms, 0573ms total)
T0554 018:101 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0573ms total)
T0554 018:101 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0574ms total)
T0554 018:102 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0575ms total)
T0554 018:103 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0575ms total)
T0554 018:103 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0576ms total)
T0554 018:104 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0577ms total)
T0554 018:105 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0577ms total)
T71A8 018:105 JLINK_IsHalted()  returns FALSE (0001ms, 0578ms total)
T71A8 018:207 JLINK_IsHalted()  returns FALSE (0000ms, 0577ms total)
T71A8 018:309 JLINK_IsHalted()  returns FALSE (0000ms, 0577ms total)
T71A8 018:410 JLINK_IsHalted()  returns FALSE (0000ms, 0577ms total)
T71A8 018:511 JLINK_IsHalted()  returns FALSE (0000ms, 0577ms total)
T0554 018:612 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0577ms total)
T0554 018:612 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0578ms total)
T0554 018:613 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0579ms total)
T0554 018:614 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0579ms total)
T0554 018:614 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0580ms total)
T0554 018:615 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0581ms total)
T0554 018:616 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0581ms total)
T71A8 018:616 JLINK_IsHalted()  returns FALSE (0001ms, 0582ms total)
T71A8 018:718 JLINK_IsHalted()  returns FALSE (0000ms, 0581ms total)
T71A8 018:818 JLINK_IsHalted()  returns FALSE (0000ms, 0581ms total)
T71A8 018:919 JLINK_IsHalted()  returns FALSE (0000ms, 0581ms total)
T71A8 019:020 JLINK_IsHalted()  returns FALSE (0000ms, 0581ms total)
T71A8 019:121 JLINK_IsHalted()  returns FALSE (0000ms, 0581ms total)
T0554 019:223 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0581ms total)
T0554 019:223 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0582ms total)
T0554 019:224 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0583ms total)
T0554 019:225 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0583ms total)
T0554 019:225 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0584ms total)
T0554 019:226 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0585ms total)
T0554 019:227 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0585ms total)
T71A8 019:227 JLINK_IsHalted()  returns FALSE (0001ms, 0586ms total)
T71A8 019:328 JLINK_IsHalted()  returns FALSE (0000ms, 0585ms total)
T71A8 019:429 JLINK_IsHalted()  returns FALSE (0000ms, 0585ms total)
T71A8 019:530 JLINK_IsHalted()  returns FALSE (0000ms, 0585ms total)
T71A8 019:631 JLINK_IsHalted()  returns FALSE (0000ms, 0585ms total)
T71A8 019:732 JLINK_IsHalted()  returns FALSE (0000ms, 0585ms total)
T0554 019:833 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0585ms total)
T0554 019:833 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0586ms total)
T0554 019:834 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0587ms total)
T0554 019:835 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0587ms total)
T0554 019:835 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0588ms total)
T0554 019:836 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0589ms total)
T0554 019:837 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0589ms total)
T71A8 019:837 JLINK_IsHalted()  returns FALSE (0001ms, 0590ms total)
T71A8 019:939 JLINK_IsHalted()  returns FALSE (0000ms, 0589ms total)
T71A8 020:040 JLINK_IsHalted()  returns FALSE (0000ms, 0589ms total)
T71A8 020:141 JLINK_IsHalted()  returns FALSE (0000ms, 0589ms total)
T71A8 020:243 JLINK_IsHalted()  returns FALSE (0000ms, 0589ms total)
T71A8 020:344 JLINK_IsHalted()  returns FALSE (0000ms, 0589ms total)
T0554 020:445 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0589ms total)
T0554 020:445 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0590ms total)
T0554 020:446 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0591ms total)
T0554 020:447 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0591ms total)
T0554 020:447 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0592ms total)
T0554 020:448 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0593ms total)
T0554 020:449 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0593ms total)
T71A8 020:449 JLINK_IsHalted()  returns FALSE (0001ms, 0594ms total)
T71A8 020:551 JLINK_IsHalted()  returns FALSE (0000ms, 0593ms total)
T71A8 020:652 JLINK_IsHalted()  returns FALSE (0000ms, 0593ms total)
T71A8 020:753 JLINK_IsHalted()  returns FALSE (0000ms, 0593ms total)
T71A8 020:854 JLINK_IsHalted()  returns FALSE (0000ms, 0593ms total)
T0554 020:955 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0001ms, 0594ms total)
T0554 020:956 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0595ms total)
T0554 020:957 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0000ms, 0595ms total)
T0554 020:957 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0596ms total)
T0554 020:958 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0000ms, 0596ms total)
T0554 020:958 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0597ms total)
T0554 020:959 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0597ms total)
T71A8 020:959 JLINK_IsHalted()  returns FALSE (0001ms, 0598ms total)
T71A8 021:061 JLINK_IsHalted()  returns FALSE (0000ms, 0597ms total)
T71A8 021:162 JLINK_IsHalted()  returns FALSE (0000ms, 0597ms total)
T71A8 021:263 JLINK_IsHalted()  returns FALSE (0000ms, 0597ms total)
T71A8 021:364 JLINK_IsHalted()  returns FALSE (0000ms, 0597ms total)
T71A8 021:465 JLINK_IsHalted()  returns FALSE (0000ms, 0597ms total)
T0554 021:566 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0597ms total)
T0554 021:566 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0598ms total)
T0554 021:567 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0599ms total)
T0554 021:568 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0599ms total)
T0554 021:568 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0600ms total)
T0554 021:569 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0601ms total)
T0554 021:570 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0601ms total)
T71A8 021:570 JLINK_IsHalted()  returns FALSE (0001ms, 0602ms total)
T71A8 021:672 JLINK_IsHalted()  returns FALSE (0000ms, 0601ms total)
T71A8 021:773 JLINK_IsHalted()  returns FALSE (0000ms, 0601ms total)
T71A8 021:874 JLINK_IsHalted()  returns FALSE (0000ms, 0601ms total)
T71A8 021:975 JLINK_IsHalted()  returns FALSE (0000ms, 0601ms total)
T0554 022:054 JLINK_ReadMemEx(0x0000697E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000697E) - Data: 20 46  returns 0x02 (0001ms, 0602ms total)
T0554 022:055 JLINK_ReadMemEx(0x00006980, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00006980) - Data: 02 F0  returns 0x02 (0001ms, 0603ms total)
T0554 022:056 JLINK_ReadMemEx(0x00006980, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00006980) - Data: 02 F0  returns 0x02 (0000ms, 0603ms total)
T0554 022:056 JLINK_ReadMemEx(0x00006982, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00006982) - Data: 2A FD  returns 0x02 (0001ms, 0604ms total)
T71A8 022:076 JLINK_IsHalted()  returns FALSE (0000ms, 0604ms total)
T0554 022:179 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0001ms, 0605ms total)
T0554 022:180 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0606ms total)
T0554 022:181 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0000ms, 0606ms total)
T0554 022:181 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0607ms total)
T0554 022:182 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0608ms total)
T0554 022:183 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0608ms total)
T0554 022:183 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0609ms total)
T71A8 022:184 JLINK_IsHalted()  returns FALSE (0001ms, 0610ms total)
T71A8 022:286 JLINK_IsHalted()  returns FALSE (0000ms, 0609ms total)
T71A8 022:387 JLINK_IsHalted()  returns FALSE (0000ms, 0609ms total)
T71A8 022:488 JLINK_IsHalted()  returns FALSE (0000ms, 0609ms total)
T71A8 022:590 JLINK_IsHalted()  returns FALSE (0000ms, 0609ms total)
T0554 022:691 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0609ms total)
T0554 022:691 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0610ms total)
T0554 022:692 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0611ms total)
T0554 022:693 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0611ms total)
T0554 022:693 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0612ms total)
T0554 022:694 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0612ms total)
T0554 022:695 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0613ms total)
T71A8 022:696 JLINK_IsHalted()  returns FALSE (0000ms, 0613ms total)
T71A8 022:797 JLINK_IsHalted()  returns FALSE (0000ms, 0613ms total)
T71A8 022:897 JLINK_IsHalted()  returns FALSE (0000ms, 0613ms total)
T71A8 022:998 JLINK_IsHalted()  returns FALSE (0000ms, 0613ms total)
T71A8 023:099 JLINK_IsHalted()  returns FALSE (0000ms, 0613ms total)
T71A8 023:200 JLINK_IsHalted()  returns FALSE (0000ms, 0613ms total)
T0554 023:301 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0613ms total)
T0554 023:301 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0614ms total)
T0554 023:302 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0000ms, 0614ms total)
T0554 023:303 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0615ms total)
T0554 023:303 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0616ms total)
T0554 023:304 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0616ms total)
T0554 023:305 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0616ms total)
T71A8 023:305 JLINK_IsHalted()  returns FALSE (0001ms, 0617ms total)
T71A8 023:407 JLINK_IsHalted()  returns FALSE (0000ms, 0616ms total)
T71A8 023:508 JLINK_IsHalted()  returns FALSE (0000ms, 0616ms total)
T71A8 023:609 JLINK_IsHalted()  returns FALSE (0000ms, 0616ms total)
T71A8 023:711 JLINK_IsHalted()  returns FALSE (0000ms, 0616ms total)
T71A8 023:812 JLINK_IsHalted()  returns FALSE (0000ms, 0616ms total)
T0554 023:913 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0616ms total)
T0554 023:913 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0617ms total)
T0554 023:914 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0618ms total)
T0554 023:915 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0618ms total)
T0554 023:915 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0619ms total)
T0554 023:916 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0619ms total)
T0554 023:916 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0620ms total)
T71A8 023:917 JLINK_IsHalted()  returns FALSE (0001ms, 0621ms total)
T71A8 024:019 JLINK_IsHalted()  returns FALSE (0000ms, 0620ms total)
T71A8 024:120 JLINK_IsHalted()  returns FALSE (0000ms, 0620ms total)
T71A8 024:221 JLINK_IsHalted()  returns FALSE (0000ms, 0620ms total)
T71A8 024:322 JLINK_IsHalted()  returns FALSE (0000ms, 0620ms total)
T0554 024:424 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0001ms, 0621ms total)
T0554 024:425 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0000ms, 0621ms total)
T0554 024:425 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0622ms total)
T0554 024:426 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0623ms total)
T0554 024:427 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0000ms, 0623ms total)
T0554 024:427 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0624ms total)
T0554 024:428 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0625ms total)
T71A8 024:429 JLINK_IsHalted()  returns FALSE (0000ms, 0625ms total)
T71A8 024:530 JLINK_IsHalted()  returns FALSE (0000ms, 0625ms total)
T71A8 024:631 JLINK_IsHalted()  returns FALSE (0000ms, 0625ms total)
T71A8 024:732 JLINK_IsHalted()  returns FALSE (0000ms, 0625ms total)
T71A8 024:833 JLINK_IsHalted()  returns FALSE (0000ms, 0625ms total)
T71A8 024:934 JLINK_IsHalted()  returns FALSE (0000ms, 0625ms total)
T0554 025:035 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0625ms total)
T0554 025:035 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0626ms total)
T0554 025:036 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0627ms total)
T0554 025:037 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0627ms total)
T0554 025:037 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0628ms total)
T0554 025:038 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0629ms total)
T0554 025:039 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0629ms total)
T71A8 025:039 JLINK_IsHalted()  returns FALSE (0001ms, 0630ms total)
T71A8 025:141 JLINK_IsHalted()  returns FALSE (0000ms, 0629ms total)
T71A8 025:242 JLINK_IsHalted()  returns FALSE (0000ms, 0629ms total)
T71A8 025:344 JLINK_IsHalted()  returns FALSE (0000ms, 0629ms total)
T71A8 025:445 JLINK_IsHalted()  returns FALSE (0000ms, 0629ms total)
T71A8 025:546 JLINK_IsHalted()  returns FALSE (0000ms, 0629ms total)
T0554 025:647 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0629ms total)
T0554 025:647 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0630ms total)
T0554 025:648 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0631ms total)
T0554 025:649 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0631ms total)
T0554 025:649 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0632ms total)
T0554 025:650 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0633ms total)
T0554 025:651 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0633ms total)
T71A8 025:651 JLINK_IsHalted()  returns FALSE (0001ms, 0634ms total)
T71A8 025:753 JLINK_IsHalted()  returns FALSE (0000ms, 0633ms total)
T71A8 025:854 JLINK_IsHalted()  returns FALSE (0001ms, 0634ms total)
T71A8 025:955 JLINK_IsHalted()  returns FALSE (0000ms, 0633ms total)
T71A8 026:056 JLINK_IsHalted()  returns FALSE (0000ms, 0633ms total)
T71A8 026:157 JLINK_IsHalted()  returns FALSE (0000ms, 0633ms total)
T0554 026:258 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0633ms total)
T0554 026:258 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0634ms total)
T0554 026:259 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0635ms total)
T0554 026:260 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0635ms total)
T0554 026:260 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0636ms total)
T0554 026:261 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0637ms total)
T0554 026:262 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0637ms total)
T71A8 026:262 JLINK_IsHalted()  returns FALSE (0001ms, 0638ms total)
T71A8 026:364 JLINK_IsHalted()  returns FALSE (0000ms, 0637ms total)
T71A8 026:465 JLINK_IsHalted()  returns FALSE (0000ms, 0637ms total)
T71A8 026:567 JLINK_IsHalted()  returns FALSE (0000ms, 0637ms total)
T71A8 026:668 JLINK_IsHalted()  returns FALSE (0000ms, 0637ms total)
T0554 026:770 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0637ms total)
T0554 026:770 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0638ms total)
T0554 026:771 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0639ms total)
T0554 026:772 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0639ms total)
T0554 026:772 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0640ms total)
T0554 026:773 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0641ms total)
T0554 026:774 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0641ms total)
T71A8 026:774 JLINK_IsHalted()  returns FALSE (0001ms, 0642ms total)
T71A8 026:876 JLINK_IsHalted()  returns FALSE (0000ms, 0641ms total)
T71A8 026:977 JLINK_IsHalted()  returns FALSE (0000ms, 0641ms total)
T71A8 027:078 JLINK_IsHalted()  returns FALSE (0000ms, 0641ms total)
T71A8 027:179 JLINK_IsHalted()  returns FALSE (0000ms, 0641ms total)
T71A8 027:280 JLINK_IsHalted()  returns FALSE (0000ms, 0641ms total)
T0554 027:382 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0641ms total)
T0554 027:382 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0642ms total)
T0554 027:383 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0000ms, 0642ms total)
T0554 027:384 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0643ms total)
T0554 027:384 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0644ms total)
T0554 027:385 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0644ms total)
T0554 027:385 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0645ms total)
T71A8 027:386 JLINK_IsHalted()  returns FALSE (0001ms, 0646ms total)
T71A8 027:488 JLINK_IsHalted()  returns FALSE (0000ms, 0645ms total)
T71A8 027:589 JLINK_IsHalted()  returns FALSE (0000ms, 0645ms total)
T71A8 027:690 JLINK_IsHalted()  returns FALSE (0000ms, 0645ms total)
T71A8 027:791 JLINK_IsHalted()  returns FALSE (0000ms, 0645ms total)
T71A8 027:892 JLINK_IsHalted()  returns FALSE (0000ms, 0645ms total)
T0554 027:993 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0645ms total)
T0554 027:993 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0646ms total)
T0554 027:994 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0647ms total)
T0554 027:995 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0647ms total)
T0554 027:995 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0648ms total)
T0554 027:996 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0649ms total)
T0554 027:997 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0649ms total)
T71A8 027:997 JLINK_IsHalted()  returns FALSE (0001ms, 0650ms total)
T71A8 028:098 JLINK_IsHalted()  returns FALSE (0000ms, 0649ms total)
T71A8 028:199 JLINK_IsHalted()  returns FALSE (0000ms, 0649ms total)
T71A8 028:300 JLINK_IsHalted()  returns FALSE (0000ms, 0649ms total)
T71A8 028:401 JLINK_IsHalted()  returns FALSE (0000ms, 0649ms total)
T0554 028:502 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0001ms, 0650ms total)
T0554 028:503 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0000ms, 0650ms total)
T0554 028:503 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0651ms total)
T0554 028:504 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0651ms total)
T0554 028:504 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0652ms total)
T0554 028:505 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0653ms total)
T0554 028:506 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0653ms total)
T71A8 028:506 JLINK_IsHalted()  returns FALSE (0001ms, 0654ms total)
T71A8 028:608 JLINK_IsHalted()  returns FALSE (0000ms, 0653ms total)
T71A8 028:709 JLINK_IsHalted()  returns FALSE (0000ms, 0653ms total)
T71A8 028:810 JLINK_IsHalted()  returns FALSE (0000ms, 0653ms total)
T71A8 028:911 JLINK_IsHalted()  returns FALSE (0000ms, 0653ms total)
T71A8 029:012 JLINK_IsHalted()  returns FALSE (0000ms, 0653ms total)
T0554 029:128 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0653ms total)
T0554 029:129 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0000ms, 0654ms total)
T0554 029:129 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0655ms total)
T0554 029:130 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0655ms total)
T0554 029:130 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0656ms total)
T0554 029:131 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0657ms total)
T0554 029:132 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0657ms total)
T71A8 029:132 JLINK_IsHalted()  returns FALSE (0001ms, 0658ms total)
T71A8 029:234 JLINK_IsHalted()  returns FALSE (0000ms, 0657ms total)
T71A8 029:335 JLINK_IsHalted()  returns FALSE (0000ms, 0657ms total)
T71A8 029:436 JLINK_IsHalted()  returns FALSE (0000ms, 0657ms total)
T71A8 029:537 JLINK_IsHalted()  returns FALSE (0000ms, 0657ms total)
T0554 029:638 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0657ms total)
T0554 029:638 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0658ms total)
T0554 029:639 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0659ms total)
T0554 029:640 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0659ms total)
T0554 029:640 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0660ms total)
T0554 029:641 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0661ms total)
T0554 029:642 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0661ms total)
T71A8 029:642 JLINK_IsHalted()  returns FALSE (0001ms, 0662ms total)
T71A8 029:744 JLINK_IsHalted()  returns FALSE (0000ms, 0661ms total)
T71A8 029:845 JLINK_IsHalted()  returns FALSE (0000ms, 0661ms total)
T71A8 029:947 JLINK_IsHalted()  returns FALSE (0000ms, 0661ms total)
T71A8 030:048 JLINK_IsHalted()  returns FALSE (0000ms, 0661ms total)
T0554 030:149 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0661ms total)
T0554 030:149 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0662ms total)
T0554 030:150 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0663ms total)
T0554 030:151 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0663ms total)
T0554 030:151 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0664ms total)
T0554 030:152 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0664ms total)
T0554 030:152 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0665ms total)
T71A8 030:153 JLINK_IsHalted()  returns FALSE (0001ms, 0666ms total)
T71A8 030:254 JLINK_IsHalted()  returns FALSE (0000ms, 0665ms total)
T71A8 030:356 JLINK_IsHalted()  returns FALSE (0000ms, 0665ms total)
T71A8 030:457 JLINK_IsHalted()  returns FALSE (0000ms, 0665ms total)
T71A8 030:558 JLINK_IsHalted()  returns FALSE (0000ms, 0665ms total)
T0554 030:659 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0665ms total)
T0554 030:659 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0666ms total)
T0554 030:660 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0667ms total)
T0554 030:661 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0667ms total)
T0554 030:661 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0668ms total)
T0554 030:662 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0669ms total)
T0554 030:663 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0669ms total)
T71A8 030:663 JLINK_IsHalted()  returns FALSE (0001ms, 0670ms total)
T71A8 030:765 JLINK_IsHalted()  returns FALSE (0000ms, 0669ms total)
T71A8 030:866 JLINK_IsHalted()  returns FALSE (0000ms, 0669ms total)
T71A8 030:967 JLINK_IsHalted()  returns FALSE (0000ms, 0669ms total)
T71A8 031:068 JLINK_IsHalted()  returns FALSE (0000ms, 0669ms total)
T71A8 031:169 JLINK_IsHalted()  returns FALSE (0000ms, 0669ms total)
T0554 031:271 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0669ms total)
T0554 031:271 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0670ms total)
T0554 031:272 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0671ms total)
T0554 031:273 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0671ms total)
T0554 031:273 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0672ms total)
T0554 031:274 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0673ms total)
T0554 031:275 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0673ms total)
T71A8 031:275 JLINK_IsHalted()  returns FALSE (0001ms, 0674ms total)
T71A8 031:376 JLINK_IsHalted()  returns FALSE (0000ms, 0673ms total)
T71A8 031:477 JLINK_IsHalted()  returns FALSE (0000ms, 0673ms total)
T71A8 031:578 JLINK_IsHalted()  returns FALSE (0000ms, 0673ms total)
T71A8 031:680 JLINK_IsHalted()  returns FALSE (0000ms, 0673ms total)
T71A8 031:781 JLINK_IsHalted()  returns FALSE (0000ms, 0673ms total)
T0554 031:881 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0673ms total)
T0554 031:881 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0674ms total)
T0554 031:882 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0675ms total)
T0554 031:883 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0675ms total)
T0554 031:883 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0676ms total)
T0554 031:884 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0677ms total)
T0554 031:885 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0677ms total)
T71A8 031:885 JLINK_IsHalted()  returns FALSE (0001ms, 0678ms total)
T71A8 031:987 JLINK_IsHalted()  returns FALSE (0000ms, 0677ms total)
T71A8 032:088 JLINK_IsHalted()  returns FALSE (0000ms, 0677ms total)
T71A8 032:189 JLINK_IsHalted()  returns FALSE (0000ms, 0677ms total)
T71A8 032:290 JLINK_IsHalted()  returns FALSE (0000ms, 0677ms total)
T71A8 032:391 JLINK_IsHalted()  returns FALSE (0000ms, 0677ms total)
T0554 032:492 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0677ms total)
T0554 032:492 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0678ms total)
T0554 032:493 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0679ms total)
T0554 032:494 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0679ms total)
T0554 032:494 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0680ms total)
T0554 032:495 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0680ms total)
T0554 032:495 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0681ms total)
T71A8 032:496 JLINK_IsHalted()  returns FALSE (0001ms, 0682ms total)
T71A8 032:598 JLINK_IsHalted()  returns FALSE (0000ms, 0681ms total)
T71A8 032:699 JLINK_IsHalted()  returns FALSE (0000ms, 0681ms total)
T71A8 032:800 JLINK_IsHalted()  returns FALSE (0000ms, 0681ms total)
T71A8 032:901 JLINK_IsHalted()  returns FALSE (0000ms, 0681ms total)
T0554 033:002 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0681ms total)
T0554 033:003 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0000ms, 0681ms total)
T0554 033:003 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0682ms total)
T0554 033:004 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0682ms total)
T0554 033:004 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0683ms total)
T0554 033:005 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0684ms total)
T0554 033:006 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0684ms total)
T71A8 033:006 JLINK_IsHalted()  returns FALSE (0001ms, 0685ms total)
T71A8 033:108 JLINK_IsHalted()  returns FALSE (0000ms, 0684ms total)
T71A8 033:210 JLINK_IsHalted()  returns FALSE (0000ms, 0684ms total)
T71A8 033:311 JLINK_IsHalted()  returns FALSE (0000ms, 0684ms total)
T71A8 033:412 JLINK_IsHalted()  returns FALSE (0000ms, 0684ms total)
T71A8 033:514 JLINK_IsHalted()  returns FALSE (0000ms, 0684ms total)
T0554 033:615 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0684ms total)
T0554 033:615 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0685ms total)
T0554 033:616 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0686ms total)
T0554 033:617 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0686ms total)
T0554 033:617 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0687ms total)
T0554 033:618 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0687ms total)
T0554 033:618 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0688ms total)
T71A8 033:619 JLINK_IsHalted()  returns FALSE (0001ms, 0689ms total)
T71A8 033:721 JLINK_IsHalted()  returns FALSE (0000ms, 0688ms total)
T71A8 033:822 JLINK_IsHalted()  returns FALSE (0000ms, 0688ms total)
T71A8 033:923 JLINK_IsHalted()  returns FALSE (0000ms, 0688ms total)
T71A8 034:024 JLINK_IsHalted()  returns FALSE (0000ms, 0688ms total)
T71A8 034:125 JLINK_IsHalted()  returns FALSE (0000ms, 0688ms total)
T0554 034:226 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0688ms total)
T0554 034:226 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0689ms total)
T0554 034:227 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0690ms total)
T0554 034:228 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0690ms total)
T0554 034:228 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0691ms total)
T0554 034:229 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0692ms total)
T0554 034:230 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0692ms total)
T71A8 034:230 JLINK_IsHalted()  returns FALSE (0001ms, 0693ms total)
T71A8 034:333 JLINK_IsHalted()  returns FALSE (0000ms, 0692ms total)
T71A8 034:434 JLINK_IsHalted()  returns FALSE (0000ms, 0692ms total)
T71A8 034:535 JLINK_IsHalted()  returns FALSE (0000ms, 0692ms total)
T71A8 034:636 JLINK_IsHalted()  returns FALSE (0000ms, 0692ms total)
T0554 034:737 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0692ms total)
T0554 034:737 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0693ms total)
T0554 034:738 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0694ms total)
T0554 034:739 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0694ms total)
T0554 034:739 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0695ms total)
T0554 034:740 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0696ms total)
T0554 034:741 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0696ms total)
T71A8 034:741 JLINK_IsHalted()  returns FALSE (0001ms, 0697ms total)
T71A8 034:843 JLINK_IsHalted()  returns FALSE (0000ms, 0696ms total)
T71A8 034:945 JLINK_IsHalted()  returns FALSE (0000ms, 0696ms total)
T71A8 035:046 JLINK_IsHalted()  returns FALSE (0000ms, 0696ms total)
T71A8 035:147 JLINK_IsHalted()  returns FALSE (0000ms, 0696ms total)
T71A8 035:248 JLINK_IsHalted()  returns FALSE (0000ms, 0696ms total)
T0554 035:350 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0696ms total)
T0554 035:350 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0697ms total)
T0554 035:351 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0698ms total)
T0554 035:352 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0698ms total)
T0554 035:352 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0699ms total)
T0554 035:353 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0700ms total)
T0554 035:354 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0700ms total)
T71A8 035:354 JLINK_IsHalted()  returns FALSE (0001ms, 0701ms total)
T71A8 035:456 JLINK_IsHalted()  returns FALSE (0000ms, 0700ms total)
T71A8 035:558 JLINK_IsHalted()  returns FALSE (0000ms, 0700ms total)
T71A8 035:659 JLINK_IsHalted()  returns FALSE (0000ms, 0700ms total)
T71A8 035:760 JLINK_IsHalted()  returns FALSE (0000ms, 0700ms total)
T71A8 035:861 JLINK_IsHalted()  returns FALSE (0000ms, 0700ms total)
T0554 035:963 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0700ms total)
T0554 035:963 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0701ms total)
T0554 035:964 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0000ms, 0701ms total)
T0554 035:964 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0702ms total)
T0554 035:965 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0000ms, 0702ms total)
T0554 035:965 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0703ms total)
T0554 035:966 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0704ms total)
T71A8 035:967 JLINK_IsHalted()  returns FALSE (0001ms, 0705ms total)
T71A8 036:069 JLINK_IsHalted()  returns FALSE (0000ms, 0704ms total)
T71A8 036:170 JLINK_IsHalted()  returns FALSE (0000ms, 0704ms total)
T71A8 036:271 JLINK_IsHalted()  returns FALSE (0000ms, 0704ms total)
T71A8 036:372 JLINK_IsHalted()  returns FALSE (0000ms, 0704ms total)
T0554 036:473 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0704ms total)
T0554 036:473 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0705ms total)
T0554 036:474 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0706ms total)
T0554 036:475 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0706ms total)
T0554 036:475 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0707ms total)
T0554 036:476 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0708ms total)
T0554 036:477 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0708ms total)
T71A8 036:477 JLINK_IsHalted()  returns FALSE (0001ms, 0709ms total)
T71A8 036:579 JLINK_IsHalted()  returns FALSE (0000ms, 0708ms total)
T71A8 036:680 JLINK_IsHalted()  returns FALSE (0000ms, 0708ms total)
T71A8 036:781 JLINK_IsHalted()  returns FALSE (0000ms, 0708ms total)
T71A8 036:882 JLINK_IsHalted()  returns FALSE (0000ms, 0708ms total)
T71A8 036:983 JLINK_IsHalted()  returns FALSE (0000ms, 0708ms total)
T0554 037:084 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0708ms total)
T0554 037:084 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0709ms total)
T0554 037:085 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0000ms, 0709ms total)
T0554 037:085 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0710ms total)
T0554 037:086 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0711ms total)
T0554 037:087 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0711ms total)
T0554 037:087 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0712ms total)
T71A8 037:088 JLINK_IsHalted()  returns FALSE (0001ms, 0713ms total)
T71A8 037:190 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T71A8 037:291 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T71A8 037:392 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T71A8 037:493 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T71A8 037:594 JLINK_IsHalted()  returns FALSE (0000ms, 0712ms total)
T0554 037:695 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0001ms, 0713ms total)
T0554 037:696 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0000ms, 0713ms total)
T0554 037:696 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0714ms total)
T0554 037:697 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0715ms total)
T0554 037:698 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0716ms total)
T0554 037:699 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0716ms total)
T0554 037:699 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0717ms total)
T71A8 037:700 JLINK_IsHalted()  returns FALSE (0001ms, 0718ms total)
T71A8 037:802 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T71A8 037:903 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T71A8 038:004 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T71A8 038:105 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T0554 038:206 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0001ms, 0718ms total)
T0554 038:207 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0719ms total)
T0554 038:208 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0000ms, 0719ms total)
T0554 038:208 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0720ms total)
T0554 038:209 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0721ms total)
T0554 038:210 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0721ms total)
T0554 038:210 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0722ms total)
T71A8 038:211 JLINK_IsHalted()  returns FALSE (0001ms, 0723ms total)
T71A8 038:313 JLINK_IsHalted()  returns FALSE (0000ms, 0722ms total)
T71A8 038:414 JLINK_IsHalted()  returns FALSE (0000ms, 0722ms total)
T71A8 038:515 JLINK_IsHalted()  returns FALSE (0000ms, 0722ms total)
T71A8 038:617 JLINK_IsHalted()  returns FALSE (0000ms, 0722ms total)
T71A8 038:718 JLINK_IsHalted()  returns FALSE (0000ms, 0722ms total)
T0554 038:819 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0722ms total)
T0554 038:819 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0723ms total)
T0554 038:820 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0724ms total)
T0554 038:821 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0724ms total)
T0554 038:821 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0725ms total)
T0554 038:822 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0726ms total)
T0554 038:823 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0726ms total)
T71A8 038:823 JLINK_IsHalted()  returns FALSE (0001ms, 0727ms total)
T71A8 038:924 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T71A8 039:025 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T71A8 039:126 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T71A8 039:228 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T71A8 039:329 JLINK_IsHalted()  returns FALSE (0000ms, 0726ms total)
T0554 039:430 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0726ms total)
T0554 039:430 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0727ms total)
T0554 039:431 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0000ms, 0727ms total)
T0554 039:432 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0727ms total)
T0554 039:432 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0728ms total)
T0554 039:433 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0728ms total)
T0554 039:433 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0729ms total)
T71A8 039:434 JLINK_IsHalted()  returns FALSE (0001ms, 0730ms total)
T71A8 039:536 JLINK_IsHalted()  returns FALSE (0000ms, 0729ms total)
T71A8 039:637 JLINK_IsHalted()  returns FALSE (0000ms, 0729ms total)
T71A8 039:738 JLINK_IsHalted()  returns FALSE (0000ms, 0729ms total)
T71A8 039:840 JLINK_IsHalted()  returns FALSE (0000ms, 0729ms total)
T0554 039:941 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0001ms, 0730ms total)
T0554 039:942 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0731ms total)
T0554 039:943 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0000ms, 0731ms total)
T0554 039:943 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0732ms total)
T0554 039:944 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0733ms total)
T0554 039:945 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0733ms total)
T0554 039:945 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0734ms total)
T71A8 039:946 JLINK_IsHalted()  returns FALSE (0001ms, 0735ms total)
T71A8 040:048 JLINK_IsHalted()  returns FALSE (0000ms, 0734ms total)
T71A8 040:149 JLINK_IsHalted()  returns FALSE (0000ms, 0734ms total)
T71A8 040:250 JLINK_IsHalted()  returns FALSE (0000ms, 0734ms total)
T71A8 040:352 JLINK_IsHalted()  returns FALSE (0000ms, 0734ms total)
T71A8 040:453 JLINK_IsHalted()  returns FALSE (0000ms, 0734ms total)
T0554 040:554 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0734ms total)
T0554 040:554 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0735ms total)
T0554 040:555 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0736ms total)
T0554 040:556 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0736ms total)
T0554 040:556 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0737ms total)
T0554 040:557 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0738ms total)
T0554 040:558 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0738ms total)
T71A8 040:558 JLINK_IsHalted()  returns FALSE (0001ms, 0739ms total)
T71A8 040:660 JLINK_IsHalted()  returns FALSE (0000ms, 0738ms total)
T71A8 040:761 JLINK_IsHalted()  returns FALSE (0000ms, 0738ms total)
T71A8 040:862 JLINK_IsHalted()  returns FALSE (0000ms, 0738ms total)
T71A8 040:963 JLINK_IsHalted()  returns FALSE (0000ms, 0738ms total)
T71A8 041:064 JLINK_IsHalted()  returns FALSE (0000ms, 0738ms total)
T0554 041:165 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0738ms total)
T0554 041:165 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0739ms total)
T0554 041:166 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0740ms total)
T0554 041:167 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0740ms total)
T0554 041:167 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0741ms total)
T0554 041:168 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0742ms total)
T0554 041:169 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0742ms total)
T71A8 041:169 JLINK_IsHalted()  returns FALSE (0001ms, 0743ms total)
T71A8 041:270 JLINK_IsHalted()  returns FALSE (0000ms, 0742ms total)
T71A8 041:372 JLINK_IsHalted()  returns FALSE (0000ms, 0742ms total)
T71A8 041:473 JLINK_IsHalted()  returns FALSE (0000ms, 0742ms total)
T71A8 041:575 JLINK_IsHalted()  returns FALSE (0000ms, 0742ms total)
T0554 041:676 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0001ms, 0743ms total)
T0554 041:677 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0000ms, 0743ms total)
T0554 041:677 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0744ms total)
T0554 041:678 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0745ms total)
T0554 041:679 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0000ms, 0745ms total)
T0554 041:679 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0746ms total)
T0554 041:680 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0747ms total)
T71A8 041:681 JLINK_IsHalted()  returns FALSE (0001ms, 0748ms total)
T71A8 041:783 JLINK_IsHalted()  returns FALSE (0000ms, 0747ms total)
T71A8 041:884 JLINK_IsHalted()  returns FALSE (0000ms, 0747ms total)
T71A8 041:985 JLINK_IsHalted()  returns FALSE (0000ms, 0747ms total)
T71A8 042:086 JLINK_IsHalted()  returns FALSE (0000ms, 0747ms total)
T71A8 042:187 JLINK_IsHalted()  returns FALSE (0000ms, 0747ms total)
T0554 042:288 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0747ms total)
T0554 042:288 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0748ms total)
T0554 042:289 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0000ms, 0748ms total)
T0554 042:290 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0748ms total)
T0554 042:290 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0749ms total)
T0554 042:291 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0749ms total)
T0554 042:291 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0750ms total)
T71A8 042:292 JLINK_IsHalted()  returns FALSE (0001ms, 0751ms total)
T71A8 042:394 JLINK_IsHalted()  returns FALSE (0000ms, 0750ms total)
T71A8 042:495 JLINK_IsHalted()  returns FALSE (0000ms, 0750ms total)
T71A8 042:596 JLINK_IsHalted()  returns FALSE (0000ms, 0750ms total)
T71A8 042:697 JLINK_IsHalted()  returns FALSE (0000ms, 0750ms total)
T71A8 042:798 JLINK_IsHalted()  returns FALSE (0000ms, 0750ms total)
T0554 042:899 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0750ms total)
T0554 042:899 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0751ms total)
T0554 042:900 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0752ms total)
T0554 042:901 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0752ms total)
T0554 042:901 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0753ms total)
T0554 042:902 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0754ms total)
T0554 042:903 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0754ms total)
T71A8 042:903 JLINK_IsHalted()  returns FALSE (0001ms, 0755ms total)
T71A8 043:005 JLINK_IsHalted()  returns FALSE (0000ms, 0754ms total)
T71A8 043:106 JLINK_IsHalted()  returns FALSE (0000ms, 0754ms total)
T71A8 043:208 JLINK_IsHalted()  returns FALSE (0000ms, 0754ms total)
T71A8 043:309 JLINK_IsHalted()  returns FALSE (0000ms, 0754ms total)
T0554 043:411 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0001ms, 0755ms total)
T0554 043:412 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0000ms, 0755ms total)
T0554 043:412 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0756ms total)
T0554 043:413 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0756ms total)
T0554 043:413 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0757ms total)
T0554 043:414 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0758ms total)
T0554 043:415 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0758ms total)
T71A8 043:415 JLINK_IsHalted()  returns FALSE (0001ms, 0759ms total)
T71A8 043:518 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T71A8 043:619 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T71A8 043:720 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T71A8 043:821 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T71A8 043:921 JLINK_IsHalted()  returns FALSE (0000ms, 0758ms total)
T0554 044:023 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0758ms total)
T0554 044:023 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0759ms total)
T0554 044:024 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0760ms total)
T0554 044:025 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0760ms total)
T0554 044:025 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0761ms total)
T0554 044:026 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0761ms total)
T0554 044:026 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0762ms total)
T71A8 044:027 JLINK_IsHalted()  returns FALSE (0001ms, 0763ms total)
T71A8 044:129 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T71A8 044:230 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T71A8 044:332 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T71A8 044:433 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T0554 044:534 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0762ms total)
T0554 044:534 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0763ms total)
T0554 044:535 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0764ms total)
T0554 044:536 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0764ms total)
T0554 044:536 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0765ms total)
T0554 044:537 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0766ms total)
T0554 044:538 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0766ms total)
T71A8 044:538 JLINK_IsHalted()  returns FALSE (0001ms, 0767ms total)
T71A8 044:640 JLINK_IsHalted()  returns FALSE (0000ms, 0766ms total)
T71A8 044:741 JLINK_IsHalted()  returns FALSE (0000ms, 0766ms total)
T71A8 044:842 JLINK_IsHalted()  returns FALSE (0000ms, 0766ms total)
T71A8 044:943 JLINK_IsHalted()  returns FALSE (0000ms, 0766ms total)
T71A8 045:044 JLINK_IsHalted()  returns FALSE (0000ms, 0766ms total)
T0554 045:145 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0766ms total)
T0554 045:145 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0767ms total)
T0554 045:146 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0768ms total)
T0554 045:147 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0768ms total)
T0554 045:147 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0769ms total)
T0554 045:148 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0769ms total)
T0554 045:148 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0770ms total)
T71A8 045:149 JLINK_IsHalted()  returns FALSE (0001ms, 0771ms total)
T71A8 045:251 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T71A8 045:352 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T71A8 045:454 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T71A8 045:555 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T71A8 045:656 JLINK_IsHalted()  returns FALSE (0000ms, 0770ms total)
T0554 045:757 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0770ms total)
T0554 045:757 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0771ms total)
T0554 045:758 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0772ms total)
T0554 045:759 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0772ms total)
T0554 045:759 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0773ms total)
T0554 045:760 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0773ms total)
T0554 045:760 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0774ms total)
T71A8 045:761 JLINK_IsHalted()  returns FALSE (0001ms, 0775ms total)
T71A8 045:862 JLINK_IsHalted()  returns FALSE (0000ms, 0774ms total)
T71A8 045:964 JLINK_IsHalted()  returns FALSE (0000ms, 0774ms total)
T71A8 046:065 JLINK_IsHalted()  returns FALSE (0000ms, 0774ms total)
T71A8 046:166 JLINK_IsHalted()  returns FALSE (0000ms, 0774ms total)
T71A8 046:267 JLINK_IsHalted()  returns FALSE (0000ms, 0774ms total)
T0554 046:368 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0774ms total)
T0554 046:368 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0775ms total)
T0554 046:369 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0776ms total)
T0554 046:370 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0776ms total)
T0554 046:370 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0777ms total)
T0554 046:371 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0777ms total)
T0554 046:371 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0778ms total)
T71A8 046:372 JLINK_IsHalted()  returns FALSE (0001ms, 0779ms total)
T71A8 046:474 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T71A8 046:575 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T71A8 046:676 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T71A8 046:777 JLINK_IsHalted()  returns FALSE (0000ms, 0778ms total)
T0554 046:879 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0778ms total)
T0554 046:879 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0779ms total)
T0554 046:880 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0780ms total)
T0554 046:881 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0780ms total)
T0554 046:881 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0781ms total)
T0554 046:882 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0782ms total)
T0554 046:883 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0782ms total)
T71A8 046:883 JLINK_IsHalted()  returns FALSE (0001ms, 0783ms total)
T71A8 046:985 JLINK_IsHalted()  returns FALSE (0000ms, 0782ms total)
T71A8 047:086 JLINK_IsHalted()  returns FALSE (0000ms, 0782ms total)
T71A8 047:187 JLINK_IsHalted()  returns FALSE (0000ms, 0782ms total)
T71A8 047:288 JLINK_IsHalted()  returns FALSE (0000ms, 0782ms total)
T71A8 047:389 JLINK_IsHalted()  returns FALSE (0000ms, 0782ms total)
T0554 047:491 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0782ms total)
T0554 047:491 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0783ms total)
T0554 047:492 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0784ms total)
T0554 047:493 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0784ms total)
T0554 047:493 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0785ms total)
T0554 047:494 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0786ms total)
T0554 047:495 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0786ms total)
T71A8 047:495 JLINK_IsHalted()  returns FALSE (0001ms, 0787ms total)
T71A8 047:596 JLINK_IsHalted()  returns FALSE (0000ms, 0786ms total)
T71A8 047:697 JLINK_IsHalted()  returns FALSE (0000ms, 0786ms total)
T71A8 047:798 JLINK_IsHalted()  returns FALSE (0000ms, 0786ms total)
T71A8 047:899 JLINK_IsHalted()  returns FALSE (0000ms, 0786ms total)
T71A8 048:000 JLINK_IsHalted()  returns FALSE (0000ms, 0786ms total)
T0554 048:101 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0786ms total)
T0554 048:101 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0787ms total)
T0554 048:102 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0788ms total)
T0554 048:103 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0788ms total)
T0554 048:103 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0789ms total)
T0554 048:104 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0789ms total)
T0554 048:105 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0790ms total)
T71A8 048:105 JLINK_IsHalted()  returns FALSE (0001ms, 0791ms total)
T71A8 048:207 JLINK_IsHalted()  returns FALSE (0000ms, 0790ms total)
T71A8 048:308 JLINK_IsHalted()  returns FALSE (0000ms, 0790ms total)
T71A8 048:409 JLINK_IsHalted()  returns FALSE (0000ms, 0790ms total)
T71A8 048:510 JLINK_IsHalted()  returns FALSE (0000ms, 0790ms total)
T0554 048:611 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0790ms total)
T0554 048:611 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0791ms total)
T0554 048:612 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0792ms total)
T0554 048:613 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0792ms total)
T0554 048:613 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0793ms total)
T0554 048:614 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0793ms total)
T0554 048:615 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0794ms total)
T71A8 048:615 JLINK_IsHalted()  returns FALSE (0001ms, 0795ms total)
T71A8 048:717 JLINK_IsHalted()  returns FALSE (0000ms, 0794ms total)
T71A8 048:818 JLINK_IsHalted()  returns FALSE (0000ms, 0794ms total)
T71A8 048:919 JLINK_IsHalted()  returns FALSE (0000ms, 0794ms total)
T71A8 049:020 JLINK_IsHalted()  returns FALSE (0000ms, 0794ms total)
T71A8 049:121 JLINK_IsHalted()  returns FALSE (0000ms, 0794ms total)
T0554 049:223 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0794ms total)
T0554 049:223 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0795ms total)
T0554 049:224 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0796ms total)
T0554 049:225 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0796ms total)
T0554 049:225 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0797ms total)
T0554 049:226 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0798ms total)
T0554 049:227 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0798ms total)
T71A8 049:227 JLINK_IsHalted()  returns FALSE (0001ms, 0799ms total)
T71A8 049:328 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T71A8 049:429 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T71A8 049:530 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T71A8 049:631 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T71A8 049:732 JLINK_IsHalted()  returns FALSE (0000ms, 0798ms total)
T0554 049:833 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0798ms total)
T0554 049:833 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0799ms total)
T0554 049:834 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0800ms total)
T0554 049:835 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0800ms total)
T0554 049:835 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0801ms total)
T0554 049:836 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0801ms total)
T0554 049:836 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0802ms total)
T71A8 049:837 JLINK_IsHalted()  returns FALSE (0001ms, 0803ms total)
T71A8 049:939 JLINK_IsHalted()  returns FALSE (0000ms, 0802ms total)
T71A8 050:040 JLINK_IsHalted()  returns FALSE (0000ms, 0802ms total)
T71A8 050:141 JLINK_IsHalted()  returns FALSE (0000ms, 0802ms total)
T71A8 050:243 JLINK_IsHalted()  returns FALSE (0000ms, 0802ms total)
T71A8 050:344 JLINK_IsHalted()  returns FALSE (0000ms, 0802ms total)
T0554 050:445 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0802ms total)
T0554 050:445 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0803ms total)
T0554 050:446 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0804ms total)
T0554 050:447 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0804ms total)
T0554 050:447 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0805ms total)
T0554 050:448 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0806ms total)
T0554 050:449 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0806ms total)
T71A8 050:449 JLINK_IsHalted()  returns FALSE (0001ms, 0807ms total)
T71A8 050:551 JLINK_IsHalted()  returns FALSE (0000ms, 0806ms total)
T71A8 050:652 JLINK_IsHalted()  returns FALSE (0000ms, 0806ms total)
T71A8 050:754 JLINK_IsHalted()  returns FALSE (0000ms, 0806ms total)
T71A8 050:855 JLINK_IsHalted()  returns FALSE (0000ms, 0806ms total)
T0554 050:956 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0806ms total)
T0554 050:956 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0807ms total)
T0554 050:957 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0808ms total)
T0554 050:958 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0808ms total)
T0554 050:958 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0809ms total)
T0554 050:959 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0810ms total)
T0554 050:960 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0810ms total)
T71A8 050:960 JLINK_IsHalted()  returns FALSE (0001ms, 0811ms total)
T71A8 051:062 JLINK_IsHalted()  returns FALSE (0000ms, 0810ms total)
T71A8 051:163 JLINK_IsHalted()  returns FALSE (0000ms, 0810ms total)
T71A8 051:264 JLINK_IsHalted()  returns FALSE (0000ms, 0810ms total)
T71A8 051:365 JLINK_IsHalted()  returns FALSE (0000ms, 0810ms total)
T71A8 051:466 JLINK_IsHalted()  returns FALSE (0000ms, 0810ms total)
T0554 051:567 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0810ms total)
T0554 051:567 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0811ms total)
T0554 051:568 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0812ms total)
T0554 051:569 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0812ms total)
T0554 051:569 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0813ms total)
T0554 051:570 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0814ms total)
T0554 051:571 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0814ms total)
T71A8 051:571 JLINK_IsHalted()  returns FALSE (0001ms, 0815ms total)
T71A8 051:673 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T71A8 051:774 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T71A8 051:875 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T71A8 051:976 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T71A8 052:077 JLINK_IsHalted()  returns FALSE (0000ms, 0814ms total)
T0554 052:178 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0814ms total)
T0554 052:178 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0815ms total)
T0554 052:179 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0816ms total)
T0554 052:180 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0816ms total)
T0554 052:180 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0817ms total)
T0554 052:181 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0818ms total)
T0554 052:182 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0818ms total)
T71A8 052:182 JLINK_IsHalted()  returns FALSE (0001ms, 0819ms total)
T71A8 052:284 JLINK_IsHalted()  returns FALSE (0000ms, 0818ms total)
T71A8 052:385 JLINK_IsHalted()  returns FALSE (0000ms, 0818ms total)
T71A8 052:486 JLINK_IsHalted()  returns FALSE (0000ms, 0818ms total)
T71A8 052:588 JLINK_IsHalted()  returns FALSE (0000ms, 0818ms total)
T71A8 052:689 JLINK_IsHalted()  returns FALSE (0000ms, 0818ms total)
T0554 052:790 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0818ms total)
T0554 052:790 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0819ms total)
T0554 052:791 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0820ms total)
T0554 052:792 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0820ms total)
T0554 052:792 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0821ms total)
T0554 052:793 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0821ms total)
T0554 052:793 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0822ms total)
T71A8 052:794 JLINK_IsHalted()  returns FALSE (0001ms, 0823ms total)
T71A8 052:895 JLINK_IsHalted()  returns FALSE (0000ms, 0822ms total)
T71A8 052:996 JLINK_IsHalted()  returns FALSE (0000ms, 0822ms total)
T71A8 053:097 JLINK_IsHalted()  returns FALSE (0000ms, 0822ms total)
T71A8 053:198 JLINK_IsHalted()  returns FALSE (0000ms, 0822ms total)
T0554 053:299 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0822ms total)
T0554 053:299 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0823ms total)
T0554 053:300 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0824ms total)
T0554 053:301 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0824ms total)
T0554 053:301 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0825ms total)
T0554 053:302 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0826ms total)
T0554 053:303 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0826ms total)
T71A8 053:303 JLINK_IsHalted()  returns FALSE (0001ms, 0827ms total)
T71A8 053:405 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T71A8 053:507 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T71A8 053:608 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T71A8 053:709 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T71A8 053:811 JLINK_IsHalted()  returns FALSE (0000ms, 0826ms total)
T0554 053:912 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0826ms total)
T0554 053:912 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0827ms total)
T0554 053:913 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0828ms total)
T0554 053:914 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0828ms total)
T0554 053:914 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0829ms total)
T0554 053:915 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0829ms total)
T0554 053:915 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0830ms total)
T71A8 053:916 JLINK_IsHalted()  returns FALSE (0001ms, 0831ms total)
T71A8 054:018 JLINK_IsHalted()  returns FALSE (0000ms, 0830ms total)
T71A8 054:119 JLINK_IsHalted()  returns FALSE (0000ms, 0830ms total)
T71A8 054:220 JLINK_IsHalted()  returns FALSE (0000ms, 0830ms total)
T71A8 054:322 JLINK_IsHalted()  returns FALSE (0000ms, 0830ms total)
T71A8 054:423 JLINK_IsHalted()  returns FALSE (0000ms, 0830ms total)
T0554 054:524 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0830ms total)
T0554 054:524 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0831ms total)
T0554 054:525 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0832ms total)
T0554 054:526 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0832ms total)
T0554 054:526 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0833ms total)
T0554 054:527 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0834ms total)
T0554 054:528 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0834ms total)
T71A8 054:528 JLINK_IsHalted()  returns FALSE (0001ms, 0835ms total)
T71A8 054:630 JLINK_IsHalted()  returns FALSE (0000ms, 0834ms total)
T71A8 054:731 JLINK_IsHalted()  returns FALSE (0000ms, 0834ms total)
T71A8 054:832 JLINK_IsHalted()  returns FALSE (0000ms, 0834ms total)
T71A8 054:933 JLINK_IsHalted()  returns FALSE (0000ms, 0834ms total)
T0554 055:034 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0001ms, 0835ms total)
T0554 055:035 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0000ms, 0835ms total)
T0554 055:035 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0836ms total)
T0554 055:036 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0836ms total)
T0554 055:036 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0837ms total)
T0554 055:037 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0838ms total)
T0554 055:038 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0838ms total)
T71A8 055:038 JLINK_IsHalted()  returns FALSE (0001ms, 0839ms total)
T71A8 055:140 JLINK_IsHalted()  returns FALSE (0000ms, 0838ms total)
T71A8 055:241 JLINK_IsHalted()  returns FALSE (0000ms, 0838ms total)
T71A8 055:343 JLINK_IsHalted()  returns FALSE (0000ms, 0838ms total)
T71A8 055:444 JLINK_IsHalted()  returns FALSE (0000ms, 0838ms total)
T71A8 055:545 JLINK_IsHalted()  returns FALSE (0000ms, 0838ms total)
T0554 055:646 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0838ms total)
T0554 055:646 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0839ms total)
T0554 055:647 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0840ms total)
T0554 055:648 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0840ms total)
T0554 055:648 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0841ms total)
T0554 055:649 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0842ms total)
T0554 055:650 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0842ms total)
T71A8 055:650 JLINK_IsHalted()  returns FALSE (0001ms, 0843ms total)
T71A8 055:752 JLINK_IsHalted()  returns FALSE (0000ms, 0842ms total)
T71A8 055:853 JLINK_IsHalted()  returns FALSE (0001ms, 0843ms total)
T71A8 055:954 JLINK_IsHalted()  returns FALSE (0000ms, 0842ms total)
T71A8 056:055 JLINK_IsHalted()  returns FALSE (0000ms, 0842ms total)
T71A8 056:156 JLINK_IsHalted()  returns FALSE (0000ms, 0842ms total)
T0554 056:258 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0842ms total)
T0554 056:258 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0843ms total)
T0554 056:259 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0844ms total)
T0554 056:260 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0844ms total)
T0554 056:260 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0845ms total)
T0554 056:261 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0845ms total)
T0554 056:261 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0846ms total)
T71A8 056:262 JLINK_IsHalted()  returns FALSE (0001ms, 0847ms total)
T71A8 056:363 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T71A8 056:464 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T71A8 056:566 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T71A8 056:667 JLINK_IsHalted()  returns FALSE (0000ms, 0846ms total)
T0554 056:768 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 0848ms total)
T0554 056:770 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0001ms, 0849ms total)
T0554 056:771 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 0851ms total)
T0554 056:773 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: AA AA AA AA  returns 0xFFFFFFFF (0002ms, 0853ms total)
T0554 056:775 JLINK_ReadMemEx(0x020196F4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020196F4) - Data: AA AA  returns 0xFFFFFFFF (0002ms, 0855ms total)
T0554 056:777 JLINK_ReadMemEx(0x020196F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020196F4) - Data: FF  returns 0x01 (0000ms, 0855ms total)
T0554 056:778 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0856ms total)
T0554 056:779 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0857ms total)
T0554 056:780 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: AA AA AA AA  returns 0xFFFFFFFF (0001ms, 0858ms total)
T0554 056:781 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0859ms total)
T0554 056:782 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0000ms, 0859ms total)
T0554 056:782 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0860ms total)
T0554 056:783 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0861ms total)
T71A8 056:784 JLINK_IsHalted()  returns FALSE (0000ms, 0861ms total)
T71A8 056:885 JLINK_IsHalted()  returns FALSE (0000ms, 0861ms total)
T71A8 056:986 JLINK_IsHalted()  returns FALSE (0000ms, 0861ms total)
T71A8 057:087 JLINK_IsHalted()  returns FALSE (0000ms, 0861ms total)
T71A8 057:188 JLINK_IsHalted()  returns FALSE (0000ms, 0861ms total)
T0554 057:290 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0861ms total)
T0554 057:291 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0862ms total)
T0554 057:292 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0863ms total)
T0554 057:293 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0863ms total)
T0554 057:293 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0864ms total)
T0554 057:294 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0001ms, 0865ms total)
T0554 057:295 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0000ms, 0865ms total)
T71A8 057:295 JLINK_IsHalted()  returns FALSE (0001ms, 0866ms total)
T71A8 057:397 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T71A8 057:498 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T71A8 057:599 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T71A8 057:699 JLINK_IsHalted()  returns FALSE (0000ms, 0865ms total)
T0554 057:800 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0000ms, 0865ms total)
T0554 057:800 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0866ms total)
T0554 057:801 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0001ms, 0867ms total)
T0554 057:802 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0000ms, 0867ms total)
T0554 057:802 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0868ms total)
T0554 057:803 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0868ms total)
T0554 057:803 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0869ms total)
T71A8 057:804 JLINK_IsHalted()  returns FALSE (0001ms, 0870ms total)
T71A8 057:906 JLINK_IsHalted()  returns FALSE (0000ms, 0869ms total)
T71A8 058:008 JLINK_IsHalted()  returns FALSE (0000ms, 0869ms total)
T71A8 058:109 JLINK_IsHalted()  returns FALSE (0000ms, 0869ms total)
T71A8 058:210 JLINK_IsHalted()  returns ERROR (0002ms, 0871ms total)
T71A8 058:212 JLINK_Halt()CPU could not be halted  returns 0x01 (0003ms, 0872ms total)
T71A8 058:215 JLINK_IsHalted()  returns ERROR (0003ms, 0875ms total)
T71A8 058:218 JLINK_IsHalted()  returns ERROR (0002ms, 0874ms total)
T71A8 058:220 JLINK_IsHalted()  returns ERROR (0003ms, 0875ms total)
T71A8 058:223 JLINK_ReadReg(R15 (PC)) -- CPU is running
  ***** Error: Can not read register 15 (R15) while CPU is running  returns 0x00000000 (0003ms, 0875ms total)
T71A8 058:226 JLINK_ReadReg(XPSR) -- CPU is running
  ***** Error: Can not read register 16 (XPSR) while CPU is running  returns 0x00000000 (0002ms, 0877ms total)
T71A8 058:228 JLINK_ClrBPEx(BPHandle = 0x00000003) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002014)  returns 0x00 (0010ms, 0887ms total)
T71A8 058:238 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30)  returns 0xFFFFFFFF (0002ms, 0889ms total)
T71A8 058:240 JLINK_ReadReg(R0) -- CPU is running
  ***** Error: Can not read register 0 (R0) while CPU is running  returns 0x00000000 (0002ms, 0891ms total)
T71A8 058:242 JLINK_ReadReg(R1) -- CPU is running
  ***** Error: Can not read register 1 (R1) while CPU is running  returns 0x00000000 (0003ms, 0894ms total)
T71A8 058:245 JLINK_ReadReg(R2) -- CPU is running
  ***** Error: Can not read register 2 (R2) while CPU is running  returns 0x00000000 (0003ms, 0897ms total)
T71A8 058:248 JLINK_ReadReg(R3) -- CPU is running
  ***** Error: Can not read register 3 (R3) while CPU is running  returns 0x00000000 (0000ms, 0897ms total)
T71A8 058:248 JLINK_ReadReg(R4) -- CPU is running
  ***** Error: Can not read register 4 (R4) while CPU is running  returns 0x00000000 (0001ms, 0898ms total)
T71A8 058:249 JLINK_ReadReg(R5) -- CPU is running
  ***** Error: Can not read register 5 (R5) while CPU is running  returns 0x00000000 (0001ms, 0899ms total)
T71A8 058:250 JLINK_ReadReg(R6) -- CPU is running
  ***** Error: Can not read register 6 (R6) while CPU is running  returns 0x00000000 (0000ms, 0899ms total)
T71A8 058:250 JLINK_ReadReg(R7) -- CPU is running
  ***** Error: Can not read register 7 (R7) while CPU is running  returns 0x00000000 (0001ms, 0900ms total)
T71A8 058:251 JLINK_ReadReg(R8) -- CPU is running
  ***** Error: Can not read register 8 (R8) while CPU is running  returns 0x00000000 (0001ms, 0901ms total)
T71A8 058:254 JLINK_ReadReg(R9) -- CPU is running
  ***** Error: Can not read register 9 (R9) while CPU is running  returns 0x00000000 (0000ms, 0901ms total)
T71A8 058:254 JLINK_ReadReg(R10) -- CPU is running
  ***** Error: Can not read register 10 (R10) while CPU is running  returns 0x00000000 (0001ms, 0902ms total)
T71A8 058:255 JLINK_ReadReg(R11) -- CPU is running
  ***** Error: Can not read register 11 (R11) while CPU is running  returns 0x00000000 (0001ms, 0903ms total)
T71A8 058:256 JLINK_ReadReg(R12) -- CPU is running
  ***** Error: Can not read register 12 (R12) while CPU is running  returns 0x00000000 (0000ms, 0903ms total)
T71A8 058:256 JLINK_ReadReg(R13 (SP)) -- CPU is running
  ***** Error: Can not read register 13 (R13) while CPU is running  returns 0x00000000 (0001ms, 0904ms total)
T71A8 058:257 JLINK_ReadReg(R14) -- CPU is running
  ***** Error: Can not read register 14 (R14) while CPU is running  returns 0x00000000 (0001ms, 0905ms total)
T71A8 058:258 JLINK_ReadReg(R15 (PC)) -- CPU is running
  ***** Error: Can not read register 15 (R15) while CPU is running  returns 0x00000000 (0000ms, 0905ms total)
T71A8 058:258 JLINK_ReadReg(XPSR) -- CPU is running
  ***** Error: Can not read register 16 (XPSR) while CPU is running  returns 0x00000000 (0001ms, 0906ms total)
T71A8 058:259 JLINK_ReadReg(MSP) -- CPU is running
  ***** Error: Can not read register 17 (MSP) while CPU is running  returns 0x00000000 (0000ms, 0906ms total)
T71A8 058:260 JLINK_ReadReg(PSP) -- CPU is running
  ***** Error: Can not read register 18 (PSP) while CPU is running  returns 0x00000000 (0000ms, 0906ms total)
T71A8 058:260 JLINK_ReadReg(CFBP) -- CPU is running
  ***** Error: Can not read register 20 (CFBP) while CPU is running  returns 0x00000000 (0001ms, 0907ms total)
T0554 058:262 JLINK_ReadMemEx(0x020196F4, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020196F4) - Data: FF FF FF FF  returns 0x04 (0001ms, 0908ms total)
T0554 058:263 JLINK_ReadMemEx(0x02019560, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x02019560) - Data: 01  returns 0x01 (0001ms, 0909ms total)
T0554 058:264 JLINK_ReadMemEx(0x0201959F, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201959F) - Data: 01  returns 0x01 (0000ms, 0909ms total)
T0554 058:264 JLINK_ReadMemEx(0x0201970C, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201970C) - Data: 00 00 00 00  returns 0x04 (0001ms, 0910ms total)
T0554 058:265 JLINK_ReadMemEx(0x02019700, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019700) - Data: 00 00 00 00  returns 0x04 (0001ms, 0911ms total)
T0554 058:266 JLINK_ReadMemEx(0x02019710, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x02019710) - Data: 00 00 00 00  returns 0x04 (0000ms, 0911ms total)
T0554 058:266 JLINK_ReadMemEx(0x0201905A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201905A) - Data: F0 01  returns 0x02 (0001ms, 0912ms total)
T0554 058:267 JLINK_ReadMemEx(0x00000000, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000000) - Data: 00 F8 02 02 39 56 00 00 C9 2F 00 00 F1 3D 00 00 ...  returns 0x3C (0001ms, 0913ms total)
T0554 058:268 JLINK_ReadMemEx(0x00000000, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000000) - Data: 00 F8  returns 0x02 (0001ms, 0914ms total)
T0554 058:269 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000002) - Data: 02 02  returns 0x02 (0000ms, 0914ms total)
T0554 058:270 JLINK_ReadMemEx(0x00000002, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000002) - Data: 02 02  returns 0x02 (0000ms, 0914ms total)
T0554 058:270 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000004) - Data: 39 56 00 00 C9 2F 00 00 F1 3D 00 00 00 00 00 00 ...  returns 0x3C (0002ms, 0916ms total)
T0554 058:272 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000004) - Data: 39 56  returns 0x02 (0000ms, 0916ms total)
T0554 058:272 JLINK_ReadMemEx(0x00000004, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000004) - Data: 39 56 00 00 C9 2F 00 00 F1 3D 00 00 00 00 00 00 ...  returns 0x3C (0002ms, 0918ms total)
T0554 058:274 JLINK_ReadMemEx(0x00000004, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000004) - Data: 39 56  returns 0x02 (0000ms, 0918ms total)
T0554 058:274 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000006) - Data: 00 00  returns 0x02 (0001ms, 0919ms total)
T0554 058:275 JLINK_ReadMemEx(0x00000006, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000006) - Data: 00 00  returns 0x02 (0001ms, 0920ms total)
T0554 058:276 JLINK_ReadMemEx(0x00000008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000008) - Data: C9 2F 00 00 F1 3D 00 00 00 00 00 00 00 00 00 00 ...  returns 0x3C (0001ms, 0921ms total)
T0554 058:277 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000008) - Data: C9 2F  returns 0x02 (0001ms, 0922ms total)
T0554 058:278 JLINK_ReadMemEx(0x00000008, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x00000008) - Data: C9 2F 00 00 F1 3D 00 00 00 00 00 00 00 00 00 00 ...  returns 0x3C (0002ms, 0924ms total)
T0554 058:280 JLINK_ReadMemEx(0x00000008, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x00000008) - Data: C9 2F  returns 0x02 (0000ms, 0924ms total)
T0554 058:280 JLINK_ReadMemEx(0x0000000A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0000000A) - Data: 00 00  returns 0x02 (0001ms, 0925ms total)