JLinkLog.txt
161 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
T0C04 3281:050 SEGGER J-Link V6.46 Log File (0000ms, 39525ms total)
T0C04 3281:050 DLL Compiled: May 23 2019 17:49:56 (0000ms, 39525ms total)
T0C04 3281:050 Logging started @ 2023-05-04 16:59 (0000ms, 39525ms total)
T0C04 3281:050 JLINK_SetWarnOutHandler(...) (0000ms, 39525ms total)
T0C04 3281:050 JLINK_OpenEx(...)
Firmware: J-Link V9 compiled May 7 2021 16:26:12
Hardware: V9.40
S/N: 59425868
Feature(s): RDI, GDB, FlashDL, FlashBP, JFlash, RDDI
TELNET listener socket opened on port 19021WEBSRV
Starting webserver (0032ms, 39557ms total)
T0C04 3281:050 WEBSRV Webserver running on local port 19080 (0032ms, 39557ms total)
T0C04 3281:050 returns O.K. (0032ms, 39557ms total)
T0C04 3281:082 JLINK_GetEmuCaps() returns 0xB9FF7BBF (0000ms, 39557ms total)
T0C04 3281:082 JLINK_TIF_GetAvailable(...) (0001ms, 39558ms total)
T0C04 3281:083 JLINK_SetErrorOutHandler(...) (0000ms, 39558ms total)
T0C04 3281:083 JLINK_ExecCommand("ProjectFile = "E:\C100B_S6\C100B_GD\Proj\JLinkSettings.ini"", ...). returns 0x00 (0001ms, 39559ms total)
T0C04 3281:084 JLINK_ExecCommand("Device = GD32F305RE", ...). Device "GD32F305RE" selected. returns 0x00 (0001ms, 39560ms total)
T0C04 3281:085 JLINK_ExecCommand("DisableConnectionTimeout", ...). returns 0x01 (0000ms, 39560ms total)
T0C04 3281:085 JLINK_GetHardwareVersion() returns 0x16F30 (0000ms, 39560ms total)
T0C04 3281:085 JLINK_GetDLLVersion() returns 64600 (0000ms, 39560ms total)
T0C04 3281:085 JLINK_GetFirmwareString(...) (0000ms, 39560ms total)
T0C04 3281:085 JLINK_GetDLLVersion() returns 64600 (0000ms, 39560ms total)
T0C04 3281:085 JLINK_GetCompileDateTime() (0000ms, 39560ms total)
T0C04 3281:085 JLINK_GetFirmwareString(...) (0000ms, 39560ms total)
T0C04 3281:085 JLINK_GetHardwareVersion() returns 0x16F30 (0000ms, 39560ms total)
T0C04 3281:085 JLINK_TIF_Select(JLINKARM_TIF_SWD) returns 0x00 (0001ms, 39561ms total)
T0C04 3281:086 JLINK_SetSpeed(5000) (0000ms, 39561ms total)
T0C04 3281:086 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x2BA01477 >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: 0x24770011)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: 0x410FC241. Implementer code: 0x41 (ARM)Found Cortex-M4 r0p1, Little endian. -- Max. mem block: 0x00011028
-- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 6 code (BP) slots and 2 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_ReadMem(4 bytes @ 0xE000ED88) -- CPU_WriteMem(4 bytes @ 0xE000ED88) -- CPU_ReadMem(4 bytes @ 0xE000ED88) -- CPU_WriteMem(4 bytes @ 0xE000ED88)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: 000BB00C SCS-M7 -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 003BB002 DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 002BB003 FPB -- CPU_ReadMem(16 bytes @ 0xE0000FF0)
-- CPU_ReadMem(16 bytes @ 0xE0000FE0)ROMTbl[0][3]: E0000000, CID: B105E00D, PID: 003BB001 ITM -- CPU_ReadMem(16 bytes @ 0xE00FF010) -- CPU_ReadMem(16 bytes @ 0xE0040FF0) -- CPU_ReadMem(16 bytes @ 0xE0040FE0)ROMTbl[0][4]: E0040000, CID: B105900D, PID: 000BB9A1 TPIU -- CPU_ReadMem(16 bytes @ 0xE0041FF0) -- CPU_ReadMem(16 bytes @ 0xE0041FE0)ROMTbl[0][5]: E0041000, CID: 00000000, PID: 00000000 ??? >0x0D TIF> >0x21 TIF> returns 0x2BA01477 (0122ms, 39683ms total)
T0C04 3281:208 JLINK_GetDLLVersion() returns 64600 (0000ms, 39683ms total)
T0C04 3281:208 JLINK_CORE_GetFound() returns 0xE0000FF (0000ms, 39683ms total)
T0C04 3281:208 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000 returns 0x00 (0000ms, 39683ms total)
T0C04 3281:208 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000 returns 0x00 (0000ms, 39683ms total)
T0C04 3281:208 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000 returns 0x00 (0000ms, 39683ms total)
T0C04 3281:208 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, 39684ms total)
T0C04 3281:209 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000 returns 0x00 (0000ms, 39684ms total)
T0C04 3281:209 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0xE0040000 returns 0x00 (0000ms, 39684ms total)
T0C04 3281:209 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000 returns 0x00 (0000ms, 39684ms total)
T0C04 3281:209 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000 returns 0x00 (0000ms, 39684ms total)
T0C04 3281:209 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000 returns 0x00 (0000ms, 39684ms total)
T0C04 3281:209 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000 returns 0x00 (0000ms, 39684ms total)
T0C04 3281:209 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0 returns 0x00 (0000ms, 39684ms total)
T0C04 3281:209 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000001 returns 0x00 (0000ms, 39684ms total)
T0C04 3281:209 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 41 C2 0F 41 returns 1 (0000ms, 39684ms total)
T0C04 3281:209 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000 returns 0x00 (0000ms, 39684ms total)
T0C04 3281:209 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 39684ms total)
T0C04 3281:209 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) (0067ms, 39751ms total)
T0C04 3281:276 JLINK_ReadReg(R15 (PC)) returns 0x08000168 (0000ms, 39751ms total)
T0C04 3281:276 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 39751ms total)
T0C04 3281:276 JLINK_Halt() returns 0x00 (0000ms, 39751ms total)
T0C04 3281:276 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00 returns 1 (0000ms, 39751ms total)
T0C04 3281:276 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) returns 0 (0000ms, 39751ms total)
T0C04 3281:276 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) returns 0 (0001ms, 39752ms total)
T0C04 3281:277 JLINK_GetHWStatus(...) returns 0x00 (0000ms, 39752ms total)
T0C04 3281:277 JLINK_GetNumBPUnits(Type = 0xFFFFFF00) returns 0x06 (0000ms, 39752ms total)
T0C04 3281:277 JLINK_GetNumBPUnits(Type = 0xF0) returns 0x2000 (0000ms, 39752ms total)
T0C04 3281:277 JLINK_GetNumWPUnits() returns 0x04 (0000ms, 39752ms total)
T0C04 3281:277 JLINK_GetSpeed() returns 0xFA0 (0000ms, 39752ms total)
T0C04 3281:277 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 02 00 00 00 returns 1 (0001ms, 39753ms total)
T0C04 3281:278 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 02 00 00 00 returns 1 (0000ms, 39753ms total)
T0C04 3281:278 JLINK_WriteMemEx(0xE0001000, 0x001C Bytes, ..., Flags = 0x02000004) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... -- CPU_WriteMem(28 bytes @ 0xE0001000) returns 0x1C (0001ms, 39754ms total)
T0C04 3281:279 JLINK_ReadReg(R15 (PC)) returns 0x08000168 (0000ms, 39754ms total)
T0C04 3281:279 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 39754ms total)
T0C04 3281:281 JLINK_ReadMemEx(0xE0001004, 0x0004 Bytes, ..., Flags = 0x02000000) - Data: 00 00 00 00 returns 0x04 (0000ms, 39754ms total)
T0C04 3281:361 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 39754ms total)
T0C04 3281:361 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) (0067ms, 39821ms total)
T0C04 3281:428 JLINK_ReadReg(R15 (PC)) returns 0x08000168 (0000ms, 39821ms total)
T0C04 3281:428 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 39821ms total)
T0C04 3281:428 JLINK_ReadMemEx(0x08000168, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08000140) -- Updating C cache (128 bytes @ 0x08000140) -- Read from C cache (60 bytes @ 0x08000168) - Data: 06 48 80 47 06 48 00 47 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0001ms, 39822ms total)
T0C04 3281:429 JLINK_ReadMemEx(0x08000168, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000168) - Data: 06 48 returns 0x02 (0000ms, 39822ms total)
T0C04 3281:429 JLINK_ReadMemEx(0x0800016A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016A) - Data: 80 47 returns 0x02 (0000ms, 39822ms total)
T0C04 3281:429 JLINK_ReadMemEx(0x0800016A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016A) - Data: 80 47 returns 0x02 (0000ms, 39822ms total)
T0C04 3281:429 JLINK_ReadMemEx(0x0800016C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800016C) - Data: 06 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 39822ms total)
T0C04 3281:429 JLINK_ReadMemEx(0x0800016C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016C) - Data: 06 48 returns 0x02 (0000ms, 39822ms total)
T0C04 3282:897 JLINK_ReadMemEx(0x0800016C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800016C) - Data: 06 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 39822ms total)
T0C04 3282:897 JLINK_ReadMemEx(0x0800016C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016C) - Data: 06 48 returns 0x02 (0000ms, 39822ms total)
T0C04 3282:898 JLINK_ReadMemEx(0x0800016E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016E) - Data: 00 47 returns 0x02 (0000ms, 39823ms total)
T0C04 3282:898 JLINK_ReadMemEx(0x0800016E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016E) - Data: 00 47 returns 0x02 (0000ms, 39823ms total)
T0C04 3282:898 JLINK_ReadMemEx(0x08000170, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08000170) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 39823ms total)
T0C04 3282:898 JLINK_ReadMemEx(0x08000170, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000170) - Data: FE E7 returns 0x02 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(R0) returns 0x20000A18 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(R1) returns 0x20012520 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(R2) returns 0x00000011 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(R3) returns 0x00000040 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(R4) returns 0x20012520 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(R5) returns 0x080167E4 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(R9) returns 0x200001E0 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(R13 (SP)) returns 0x20000E30 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(R14) returns 0xFFFFFFFF (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(R15 (PC)) returns 0x08000168 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(MSP) returns 0x20000E30 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(CFBP) returns 0x00000000 (0000ms, 39823ms total)
T0C04 3283:302 JLINK_ReadReg(FPSCR) returns 0x00000000 (0003ms, 39826ms total)
T0C04 3283:305 JLINK_ReadReg(FPS0) returns 0xF188D809 (0000ms, 39826ms total)
T0C04 3283:305 JLINK_ReadReg(FPS1) returns 0xC0040010 (0000ms, 39826ms total)
T0C04 3283:305 JLINK_ReadReg(FPS2) returns 0x11C80E21 (0000ms, 39826ms total)
T0C04 3283:305 JLINK_ReadReg(FPS3) returns 0xD1822967 (0000ms, 39826ms total)
T0C04 3283:305 JLINK_ReadReg(FPS4) returns 0x0C141C00 (0000ms, 39826ms total)
T0C04 3283:305 JLINK_ReadReg(FPS5) returns 0x90208200 (0001ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS6) returns 0x04834000 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS7) returns 0x262A6851 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS8) returns 0x510D4121 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS9) returns 0x00C24926 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS10) returns 0x24019E50 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS11) returns 0x00640008 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS12) returns 0x308851C8 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS13) returns 0x0344C110 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS14) returns 0xD0C1CC24 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS15) returns 0xF45ADB43 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS16) returns 0x11384B00 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS17) returns 0x9E0015DC (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS18) returns 0x02052D09 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS19) returns 0x02040D9B (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS20) returns 0xDC01510E (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS21) returns 0x4D624E00 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS22) returns 0x019040D3 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS23) returns 0x80221693 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS24) returns 0x6094DE14 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS25) returns 0xA0689A4E (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS26) returns 0x8738ED17 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS27) returns 0x0A840200 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS28) returns 0x4E0C8003 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS29) returns 0x95A2106C (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS30) returns 0x3910141D (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadReg(FPS31) returns 0x60503631 (0000ms, 39827ms total)
T0C04 3283:306 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000940) -- Updating C cache (64 bytes @ 0x20000940) -- Read from C cache (2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39828ms total)
T0C04 3283:314 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39828ms total)
T0C04 3283:314 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39828ms total)
T0C04 3283:320 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001280) -- Updating C cache (64 bytes @ 0x20001280) -- Read from C cache (1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39829ms total)
T0C04 3283:321 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39829ms total)
T0C04 3283:321 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39829ms total)
T0C04 3283:324 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200058C0) -- Updating C cache (64 bytes @ 0x200058C0) -- Read from C cache (1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39830ms total)
T0C04 3283:325 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39830ms total)
T0C04 3283:325 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39830ms total)
T0990 3283:380 JLINK_ReadMemEx(0x08000168, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000168) - Data: 06 48 returns 0x02 (0000ms, 39830ms total)
T0990 3283:380 JLINK_SetBPEx(Addr = 0x0800FEEC, Type = 0xFFFFFFF2) returns 0x00000001 (0000ms, 39830ms total)
T0990 3283:380 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(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 @ 0xE0002018) -- CPU_WriteMem(4 bytes @ 0xE000201C) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0003ms, 39833ms total)
T0990 3283:483 JLINK_IsHalted() returns TRUE (0002ms, 39835ms total)
T0990 3283:485 JLINK_Halt() returns 0x00 (0000ms, 39833ms total)
T0990 3283:485 JLINK_IsHalted() returns TRUE (0000ms, 39833ms total)
T0990 3283:485 JLINK_IsHalted() returns TRUE (0000ms, 39833ms total)
T0990 3283:485 JLINK_IsHalted() returns TRUE (0000ms, 39833ms total)
T0990 3283:485 JLINK_ReadReg(R15 (PC)) returns 0x0800FEEC (0000ms, 39833ms total)
T0990 3283:485 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 39833ms total)
T0990 3283:485 JLINK_ClrBPEx(BPHandle = 0x00000001) returns 0x00 (0000ms, 39833ms total)
T0990 3283:485 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0000ms, 39833ms total)
T0990 3283:485 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0001ms, 39834ms total)
T0990 3283:486 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0000ms, 39834ms total)
T0990 3283:486 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 39835ms total)
T0990 3283:487 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(R0) returns 0x0800FEED (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(R1) returns 0x20012570 (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(R2) returns 0x00000000 (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(R3) returns 0x0800B871 (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(R4) returns 0x080167E4 (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(R5) returns 0x080167E4 (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(R9) returns 0x200001E0 (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(R13 (SP)) returns 0x20012570 (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(R14) returns 0x0800825D (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(R15 (PC)) returns 0x0800FEEC (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(MSP) returns 0x20012570 (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 39835ms total)
T0990 3283:488 JLINK_ReadReg(FPSCR) returns 0x00000000 (0003ms, 39838ms total)
T0990 3283:491 JLINK_ReadReg(FPS0) returns 0xF188D809 (0000ms, 39838ms total)
T0990 3283:491 JLINK_ReadReg(FPS1) returns 0xC0040010 (0000ms, 39838ms total)
T0990 3283:491 JLINK_ReadReg(FPS2) returns 0x11C80E21 (0000ms, 39838ms total)
T0990 3283:491 JLINK_ReadReg(FPS3) returns 0xD1822967 (0000ms, 39838ms total)
T0990 3283:491 JLINK_ReadReg(FPS4) returns 0x0C141C00 (0000ms, 39838ms total)
T0990 3283:491 JLINK_ReadReg(FPS5) returns 0x90208200 (0000ms, 39838ms total)
T0990 3283:491 JLINK_ReadReg(FPS6) returns 0x04834000 (0000ms, 39838ms total)
T0990 3283:491 JLINK_ReadReg(FPS7) returns 0x262A6851 (0000ms, 39838ms total)
T0990 3283:491 JLINK_ReadReg(FPS8) returns 0x510D4121 (0000ms, 39838ms total)
T0990 3283:491 JLINK_ReadReg(FPS9) returns 0x00C24926 (0000ms, 39838ms total)
T0990 3283:491 JLINK_ReadReg(FPS10) returns 0x24019E50 (0000ms, 39838ms total)
T0990 3283:491 JLINK_ReadReg(FPS11) returns 0x00640008 (0000ms, 39838ms total)
T0990 3283:491 JLINK_ReadReg(FPS12) returns 0x308851C8 (0000ms, 39838ms total)
T0990 3283:491 JLINK_ReadReg(FPS13) returns 0x0344C110 (0000ms, 39838ms total)
T0990 3283:491 JLINK_ReadReg(FPS14) returns 0xD0C1CC24 (0000ms, 39838ms total)
T0990 3283:492 JLINK_ReadReg(FPS15) returns 0xF45ADB43 (0000ms, 39839ms total)
T0990 3283:492 JLINK_ReadReg(FPS16) returns 0x11384B00 (0000ms, 39839ms total)
T0990 3283:492 JLINK_ReadReg(FPS17) returns 0x9E0015DC (0000ms, 39839ms total)
T0990 3283:492 JLINK_ReadReg(FPS18) returns 0x02052D09 (0000ms, 39839ms total)
T0990 3283:492 JLINK_ReadReg(FPS19) returns 0x02040D9B (0000ms, 39839ms total)
T0990 3283:492 JLINK_ReadReg(FPS20) returns 0xDC01510E (0000ms, 39839ms total)
T0990 3283:492 JLINK_ReadReg(FPS21) returns 0x4D624E00 (0000ms, 39839ms total)
T0990 3283:492 JLINK_ReadReg(FPS22) returns 0x019040D3 (0000ms, 39839ms total)
T0990 3283:492 JLINK_ReadReg(FPS23) returns 0x80221693 (0000ms, 39839ms total)
T0990 3283:492 JLINK_ReadReg(FPS24) returns 0x6094DE14 (0000ms, 39839ms total)
T0990 3283:492 JLINK_ReadReg(FPS25) returns 0xA0689A4E (0000ms, 39839ms total)
T0990 3283:492 JLINK_ReadReg(FPS26) returns 0x8738ED17 (0000ms, 39839ms total)
T0990 3283:492 JLINK_ReadReg(FPS27) returns 0x0A840200 (0000ms, 39839ms total)
T0990 3283:492 JLINK_ReadReg(FPS28) returns 0x4E0C8003 (0000ms, 39839ms total)
T0990 3283:492 JLINK_ReadReg(FPS29) returns 0x95A2106C (0000ms, 39839ms total)
T0990 3283:492 JLINK_ReadReg(FPS30) returns 0x3910141D (0000ms, 39839ms total)
T0990 3283:492 JLINK_ReadReg(FPS31) returns 0x60503631 (0000ms, 39839ms total)
T0C04 3283:494 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000940) -- Updating C cache (64 bytes @ 0x20000940) -- Read from C cache (2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39840ms total)
T0C04 3283:495 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001280) -- Updating C cache (64 bytes @ 0x20001280) -- Read from C cache (1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0001ms, 39841ms total)
T0C04 3283:496 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200058C0) -- Updating C cache (64 bytes @ 0x200058C0) -- Read from C cache (1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39842ms total)
T0C04 3283:497 JLINK_ReadMemEx(0x0800FEEC, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0800FEC0) -- Updating C cache (128 bytes @ 0x0800FEC0) -- Read from C cache (60 bytes @ 0x0800FEEC) - Data: 4F F4 00 41 08 03 00 F0 FD FE 62 B6 00 BF EF F3 ... returns 0x3C (0001ms, 39843ms total)
T0C04 3283:498 JLINK_ReadMemEx(0x0800FEEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FEEC) - Data: 4F F4 returns 0x02 (0000ms, 39843ms total)
T0C04 3283:498 JLINK_ReadMemEx(0x0800FEEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FEEE) - Data: 00 41 returns 0x02 (0000ms, 39843ms total)
T0990 3284:971 JLINK_ReadMemEx(0x0800FEEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FEEC) - Data: 4F F4 returns 0x02 (0000ms, 39843ms total)
T0990 3284:971 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0002ms, 39845ms total)
T0990 3285:074 JLINK_IsHalted() returns FALSE (0000ms, 39845ms total)
T0990 3285:176 JLINK_IsHalted() returns FALSE (0000ms, 39845ms total)
T0990 3285:277 JLINK_IsHalted() returns FALSE (0000ms, 39845ms total)
T0990 3285:378 JLINK_IsHalted() returns FALSE (0000ms, 39845ms total)
T0990 3285:479 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: F9 2F A8 03 returns 1 (0000ms, 39845ms total)
T0C04 3285:479 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39846ms total)
T0C04 3285:480 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39846ms total)
T0C04 3285:480 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39847ms total)
T0990 3285:481 JLINK_IsHalted() returns FALSE (0000ms, 39847ms total)
T0990 3285:583 JLINK_IsHalted() returns FALSE (0000ms, 39847ms total)
T0990 3285:683 JLINK_IsHalted() returns FALSE (0000ms, 39847ms total)
T0990 3285:785 JLINK_IsHalted() returns FALSE (0000ms, 39847ms total)
T0990 3285:886 JLINK_IsHalted() returns FALSE (0000ms, 39847ms total)
T0990 3285:987 JLINK_IsHalted() returns FALSE (0000ms, 39847ms total)
T0990 3286:088 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39847ms total)
T0C04 3286:088 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39848ms total)
T0C04 3286:089 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39848ms total)
T0C04 3286:090 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39848ms total)
T0990 3286:090 JLINK_IsHalted() returns FALSE (0001ms, 39849ms total)
T0990 3286:191 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total)
T0990 3286:293 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total)
T0990 3286:394 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total)
T0990 3286:495 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total)
T0990 3286:596 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total)
T0990 3286:697 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39848ms total)
T0C04 3286:697 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39848ms total)
T0C04 3286:698 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39848ms total)
T0C04 3286:698 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39848ms total)
T0990 3286:698 JLINK_IsHalted() returns FALSE (0001ms, 39849ms total)
T0990 3286:800 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total)
T0990 3286:901 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total)
T0990 3287:002 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total)
T0990 3287:103 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total)
T0990 3287:204 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total)
T0990 3287:305 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39848ms total)
T0C04 3287:305 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39848ms total)
T0C04 3287:305 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0001ms, 39849ms total)
T0C04 3287:306 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39849ms total)
T0990 3287:306 JLINK_IsHalted() returns FALSE (0001ms, 39850ms total)
T0990 3287:408 JLINK_IsHalted() returns FALSE (0000ms, 39849ms total)
T0990 3287:508 JLINK_IsHalted() returns FALSE (0000ms, 39849ms total)
T0990 3287:610 JLINK_IsHalted() returns FALSE (0000ms, 39849ms total)
T0990 3287:711 JLINK_IsHalted() returns FALSE (0000ms, 39849ms total)
T0990 3287:811 JLINK_IsHalted() returns FALSE (0001ms, 39850ms total)
T0990 3287:913 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39849ms total)
T0C04 3287:913 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39849ms total)
T0C04 3287:913 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39850ms total)
T0C04 3287:914 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39851ms total)
T0990 3287:915 JLINK_IsHalted() returns FALSE (0000ms, 39851ms total)
T0990 3288:016 JLINK_IsHalted() returns FALSE (0000ms, 39851ms total)
T0990 3288:117 JLINK_IsHalted() returns FALSE (0000ms, 39851ms total)
T0990 3288:218 JLINK_IsHalted() returns FALSE (0000ms, 39851ms total)
T0990 3288:318 JLINK_IsHalted() returns FALSE (0000ms, 39851ms total)
T0990 3288:419 JLINK_IsHalted() returns FALSE (0000ms, 39851ms total)
T0990 3288:520 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39851ms total)
T0C04 3288:520 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39851ms total)
T0C04 3288:521 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39851ms total)
T0C04 3288:521 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39852ms total)
T0990 3288:522 JLINK_IsHalted() returns FALSE (0000ms, 39852ms total)
T0990 3288:623 JLINK_IsHalted() returns FALSE (0001ms, 39853ms total)
T0990 3288:724 JLINK_IsHalted() returns FALSE (0000ms, 39852ms total)
T0990 3288:826 JLINK_IsHalted() returns FALSE (0000ms, 39852ms total)
T0990 3288:927 JLINK_IsHalted() returns FALSE (0000ms, 39852ms total)
T0990 3289:027 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39852ms total)
T0C04 3289:027 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39852ms total)
T0C04 3289:028 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0000ms, 39852ms total)
T0C04 3289:028 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39853ms total)
T0990 3289:029 JLINK_IsHalted() returns FALSE (0000ms, 39853ms total)
T0990 3289:130 JLINK_IsHalted() returns FALSE (0000ms, 39853ms total)
T0990 3289:232 JLINK_IsHalted() returns FALSE (0000ms, 39853ms total)
T0990 3289:333 JLINK_IsHalted() returns FALSE (0000ms, 39853ms total)
T0990 3289:433 JLINK_IsHalted() returns FALSE (0000ms, 39853ms total)
T0990 3289:534 JLINK_IsHalted() returns FALSE (0000ms, 39853ms total)
T0990 3289:635 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39853ms total)
T0C04 3289:635 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39853ms total)
T0C04 3289:635 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39854ms total)
T0C04 3289:636 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39855ms total)
T0990 3289:637 JLINK_IsHalted() returns FALSE (0000ms, 39855ms total)
T0990 3289:738 JLINK_IsHalted() returns FALSE (0000ms, 39855ms total)
T0990 3289:839 JLINK_IsHalted() returns FALSE (0000ms, 39855ms total)
T0990 3289:940 JLINK_IsHalted() returns FALSE (0000ms, 39855ms total)
T0990 3290:040 JLINK_IsHalted() returns FALSE (0001ms, 39856ms total)
T0990 3290:141 JLINK_IsHalted() returns FALSE (0000ms, 39855ms total)
T0990 3290:242 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39855ms total)
T0C04 3290:242 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39855ms total)
T0C04 3290:242 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39856ms total)
T0C04 3290:243 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39856ms total)
T0990 3290:243 JLINK_IsHalted() returns FALSE (0001ms, 39857ms total)
T0990 3290:345 JLINK_IsHalted() returns FALSE (0000ms, 39856ms total)
T0990 3290:445 JLINK_IsHalted() returns FALSE (0000ms, 39856ms total)
T0990 3290:547 JLINK_IsHalted() returns FALSE (0000ms, 39856ms total)
T0990 3290:648 JLINK_IsHalted() returns FALSE (0000ms, 39856ms total)
T0990 3290:749 JLINK_IsHalted() returns FALSE (0000ms, 39856ms total)
T0990 3290:849 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39856ms total)
T0C04 3290:849 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39856ms total)
T0C04 3290:849 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 05 returns 0x01 (0001ms, 39857ms total)
T0C04 3290:850 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39858ms total)
T0990 3290:851 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total)
T0990 3290:953 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total)
T0990 3291:054 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total)
T0990 3291:155 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total)
T0990 3291:255 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total)
T0990 3291:356 JLINK_IsHalted() returns FALSE (0001ms, 39859ms total)
T0990 3291:458 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39858ms total)
T0C04 3291:458 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39858ms total)
T0C04 3291:459 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39858ms total)
T0C04 3291:460 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39858ms total)
T0990 3291:460 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total)
T0990 3291:561 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total)
T0990 3291:662 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total)
T0990 3291:762 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total)
T0990 3291:863 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total)
T0990 3291:964 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39858ms total)
T0C04 3291:964 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39858ms total)
T0C04 3291:965 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39858ms total)
T0C04 3291:965 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39859ms total)
T0990 3291:966 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total)
T0990 3292:067 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total)
T0990 3292:168 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total)
T0990 3292:270 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total)
T0990 3292:371 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total)
T0990 3292:472 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total)
T0990 3292:572 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39859ms total)
T0C04 3292:572 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39859ms total)
T0C04 3292:573 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 05 returns 0x01 (0000ms, 39859ms total)
T0C04 3292:575 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39859ms total)
T0990 3292:575 JLINK_IsHalted() returns FALSE (0001ms, 39860ms total)
T0990 3292:676 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total)
T0990 3292:777 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total)
T0990 3292:878 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total)
T0990 3292:980 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total)
T0990 3293:081 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total)
T0990 3293:182 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39859ms total)
T0C04 3293:182 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39859ms total)
T0C04 3293:183 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39859ms total)
T0C04 3293:183 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39860ms total)
T0990 3293:184 JLINK_IsHalted() returns FALSE (0000ms, 39860ms total)
T0990 3293:285 JLINK_IsHalted() returns FALSE (0000ms, 39860ms total)
T0990 3293:385 JLINK_IsHalted() returns FALSE (0000ms, 39860ms total)
T0990 3293:486 JLINK_IsHalted() returns FALSE (0000ms, 39860ms total)
T0990 3293:587 JLINK_IsHalted() returns FALSE (0000ms, 39860ms total)
T0990 3293:687 JLINK_IsHalted() returns FALSE (0000ms, 39860ms total)
T0990 3293:789 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39860ms total)
T0C04 3293:789 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39860ms total)
T0C04 3293:790 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39860ms total)
T0C04 3293:790 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39861ms total)
T0990 3293:791 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total)
T0990 3293:892 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total)
T0990 3293:993 JLINK_IsHalted() returns FALSE (0001ms, 39862ms total)
T0990 3294:095 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total)
T0990 3294:196 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total)
T0990 3294:297 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total)
T0990 3294:398 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39861ms total)
T0C04 3294:398 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39861ms total)
T0C04 3294:399 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39861ms total)
T0C04 3294:399 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39861ms total)
T0990 3294:400 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total)
T0990 3294:501 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total)
T0990 3294:602 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total)
T0990 3294:703 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total)
T0990 3294:804 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total)
T0990 3294:905 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total)
T0990 3295:006 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39861ms total)
T0C04 3295:006 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39861ms total)
T0C04 3295:006 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39862ms total)
T0C04 3295:007 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39862ms total)
T0990 3295:008 JLINK_IsHalted() returns FALSE (0000ms, 39862ms total)
T0990 3295:109 JLINK_IsHalted() returns FALSE (0000ms, 39862ms total)
T0990 3295:210 JLINK_IsHalted() returns FALSE (0000ms, 39862ms total)
T0990 3295:311 JLINK_IsHalted() returns FALSE (0000ms, 39862ms total)
T0990 3295:412 JLINK_IsHalted() returns FALSE (0000ms, 39862ms total)
T0990 3295:512 JLINK_IsHalted() returns FALSE (0000ms, 39862ms total)
T0990 3295:613 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39862ms total)
T0C04 3295:613 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39862ms total)
T0C04 3295:614 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39862ms total)
T0C04 3295:614 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39863ms total)
T0990 3295:615 JLINK_IsHalted() returns FALSE (0000ms, 39863ms total)
T0990 3295:716 JLINK_IsHalted() returns FALSE (0000ms, 39863ms total)
T0990 3295:817 JLINK_IsHalted() returns FALSE (0000ms, 39863ms total)
T0990 3295:918 JLINK_IsHalted() returns FALSE (0000ms, 39863ms total)
T0990 3296:019 JLINK_IsHalted() returns FALSE (0000ms, 39863ms total)
T0990 3296:120 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39863ms total)
T0C04 3296:120 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39863ms total)
T0C04 3296:121 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39864ms total)
T0C04 3296:122 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39864ms total)
T0990 3296:122 JLINK_IsHalted() returns FALSE (0001ms, 39865ms total)
T0990 3296:223 JLINK_IsHalted() returns FALSE (0000ms, 39864ms total)
T0990 3296:324 JLINK_IsHalted() returns FALSE (0000ms, 39864ms total)
T0990 3296:426 JLINK_IsHalted() returns FALSE (0000ms, 39864ms total)
T0990 3296:526 JLINK_IsHalted() returns FALSE (0000ms, 39864ms total)
T0990 3296:627 JLINK_IsHalted() returns FALSE (0000ms, 39864ms total)
T0990 3296:728 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39864ms total)
T0C04 3296:728 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39864ms total)
T0C04 3296:729 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39864ms total)
T0C04 3296:729 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39865ms total)
T0990 3296:730 JLINK_IsHalted() returns FALSE (0000ms, 39865ms total)
T0990 3296:832 JLINK_IsHalted() returns FALSE (0000ms, 39865ms total)
T0990 3296:933 JLINK_IsHalted() returns FALSE (0000ms, 39865ms total)
T0990 3297:033 JLINK_IsHalted() returns FALSE (0000ms, 39865ms total)
T0990 3297:134 JLINK_IsHalted() returns FALSE (0000ms, 39865ms total)
T0990 3297:235 JLINK_IsHalted() returns FALSE (0000ms, 39865ms total)
T0990 3297:335 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39865ms total)
T0C04 3297:335 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39865ms total)
T0C04 3297:336 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39865ms total)
T0C04 3297:336 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39866ms total)
T0990 3297:337 JLINK_IsHalted() returns FALSE (0000ms, 39866ms total)
T0990 3297:438 JLINK_IsHalted() returns FALSE (0000ms, 39866ms total)
T0990 3297:539 JLINK_IsHalted() returns FALSE (0000ms, 39866ms total)
T0990 3297:640 JLINK_IsHalted() returns FALSE (0000ms, 39866ms total)
T0990 3297:742 JLINK_IsHalted() returns FALSE (0000ms, 39866ms total)
T0990 3297:843 JLINK_IsHalted() returns FALSE (0000ms, 39866ms total)
T0990 3297:944 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39866ms total)
T0C04 3297:944 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39866ms total)
T0C04 3297:944 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39866ms total)
T0C04 3297:944 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39867ms total)
T0990 3297:945 JLINK_IsHalted() returns FALSE (0000ms, 39867ms total)
T0990 3298:047 JLINK_IsHalted() returns FALSE (0000ms, 39867ms total)
T0990 3298:148 JLINK_IsHalted() returns FALSE (0000ms, 39867ms total)
T0990 3298:249 JLINK_IsHalted() returns FALSE (0000ms, 39867ms total)
T0990 3298:350 JLINK_IsHalted() returns FALSE (0000ms, 39867ms total)
T0990 3298:451 JLINK_IsHalted() returns FALSE (0000ms, 39867ms total)
T0990 3298:552 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39867ms total)
T0C04 3298:552 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39867ms total)
T0C04 3298:553 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 05 returns 0x01 (0000ms, 39867ms total)
T0C04 3298:553 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39868ms total)
T0990 3298:554 JLINK_IsHalted() returns FALSE (0001ms, 39869ms total)
T0990 3298:655 JLINK_IsHalted() returns FALSE (0000ms, 39868ms total)
T0990 3298:756 JLINK_IsHalted() returns FALSE (0000ms, 39868ms total)
T0990 3298:857 JLINK_IsHalted() returns FALSE (0000ms, 39868ms total)
T0990 3298:958 JLINK_IsHalted() returns FALSE (0000ms, 39868ms total)
T0990 3299:058 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39868ms total)
T0C04 3299:058 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39868ms total)
T0C04 3299:059 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39868ms total)
T0C04 3299:059 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39869ms total)
T0990 3299:060 JLINK_IsHalted() returns FALSE (0000ms, 39869ms total)
T0990 3299:162 JLINK_IsHalted() returns FALSE (0000ms, 39869ms total)
T0990 3299:262 JLINK_IsHalted() returns FALSE (0000ms, 39869ms total)
T0990 3299:363 JLINK_IsHalted() returns FALSE (0000ms, 39869ms total)
T0990 3299:464 JLINK_IsHalted() returns FALSE (0000ms, 39869ms total)
T0990 3299:565 JLINK_IsHalted() returns FALSE (0000ms, 39869ms total)
T0990 3299:666 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39869ms total)
T0C04 3299:666 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39869ms total)
T0C04 3299:667 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39869ms total)
T0C04 3299:667 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39870ms total)
T0990 3299:668 JLINK_IsHalted() returns FALSE (0000ms, 39870ms total)
T0990 3299:769 JLINK_IsHalted() returns FALSE (0000ms, 39870ms total)
T0990 3299:870 JLINK_IsHalted() returns FALSE (0000ms, 39870ms total)
T0990 3299:971 JLINK_IsHalted() returns FALSE (0000ms, 39870ms total)
T0990 3300:072 JLINK_IsHalted() returns FALSE (0000ms, 39870ms total)
T0990 3300:172 JLINK_IsHalted() returns FALSE (0000ms, 39870ms total)
T0990 3300:273 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39870ms total)
T0C04 3300:273 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39870ms total)
T0C04 3300:273 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0001ms, 39871ms total)
T0C04 3300:274 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39871ms total)
T0990 3300:275 JLINK_IsHalted() returns FALSE (0000ms, 39871ms total)
T0990 3300:377 JLINK_IsHalted() returns FALSE (0000ms, 39871ms total)
T0990 3300:478 JLINK_IsHalted() returns FALSE (0000ms, 39871ms total)
T0990 3300:579 JLINK_IsHalted() returns FALSE (0000ms, 39871ms total)
T0990 3300:680 JLINK_IsHalted() returns FALSE (0000ms, 39871ms total)
T0990 3300:781 JLINK_IsHalted() returns FALSE (0000ms, 39871ms total)
T0990 3300:882 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39871ms total)
T0C04 3300:882 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39871ms total)
T0C04 3300:882 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39872ms total)
T0C04 3300:883 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39873ms total)
T0990 3300:884 JLINK_IsHalted() returns FALSE (0000ms, 39873ms total)
T0990 3300:985 JLINK_IsHalted() returns FALSE (0000ms, 39873ms total)
T0990 3301:086 JLINK_IsHalted() returns FALSE (0000ms, 39873ms total)
T0990 3301:187 JLINK_IsHalted() returns FALSE (0000ms, 39873ms total)
T0990 3301:289 JLINK_IsHalted() returns FALSE (0000ms, 39873ms total)
T0990 3301:389 JLINK_IsHalted() returns FALSE (0001ms, 39874ms total)
T0990 3301:490 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39873ms total)
T0C04 3301:490 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39873ms total)
T0C04 3301:491 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39873ms total)
T0C04 3301:491 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39874ms total)
T0990 3301:492 JLINK_IsHalted() returns FALSE (0000ms, 39874ms total)
T0990 3301:593 JLINK_IsHalted() returns FALSE (0000ms, 39874ms total)
T0990 3301:695 JLINK_IsHalted() returns FALSE (0000ms, 39874ms total)
T0990 3301:796 JLINK_IsHalted() returns FALSE (0000ms, 39874ms total)
T0990 3301:896 JLINK_IsHalted() returns FALSE (0000ms, 39874ms total)
T0990 3301:997 JLINK_IsHalted() returns FALSE (0000ms, 39874ms total)
T0990 3302:098 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39874ms total)
T0C04 3302:098 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39874ms total)
T0C04 3302:099 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 06 returns 0x01 (0000ms, 39874ms total)
T0C04 3302:099 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39875ms total)
T0990 3302:100 JLINK_IsHalted() returns FALSE (0000ms, 39875ms total)
T0990 3302:201 JLINK_IsHalted() returns FALSE (0000ms, 39875ms total)
T0990 3302:302 JLINK_IsHalted() returns FALSE (0000ms, 39875ms total)
T0990 3302:403 JLINK_IsHalted() returns FALSE (0000ms, 39875ms total)
T0990 3302:504 JLINK_IsHalted() returns FALSE (0000ms, 39875ms total)
T0990 3302:606 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39875ms total)
T0C04 3302:606 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39875ms total)
T0C04 3302:606 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39876ms total)
T0C04 3302:607 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39877ms total)
T0990 3302:608 JLINK_IsHalted() returns FALSE (0000ms, 39877ms total)
T0990 3302:708 JLINK_IsHalted() returns FALSE (0000ms, 39877ms total)
T0990 3302:810 JLINK_IsHalted() returns FALSE (0000ms, 39877ms total)
T0990 3302:910 JLINK_IsHalted() returns FALSE (0000ms, 39877ms total)
T0990 3303:012 JLINK_IsHalted() returns FALSE (0000ms, 39877ms total)
T0990 3303:113 JLINK_IsHalted() returns FALSE (0000ms, 39877ms total)
T0990 3303:214 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39877ms total)
T0C04 3303:214 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39877ms total)
T0C04 3303:215 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39877ms total)
T0C04 3303:215 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39878ms total)
T0990 3303:216 JLINK_IsHalted() returns FALSE (0000ms, 39878ms total)
T0990 3303:318 JLINK_IsHalted() returns FALSE (0000ms, 39878ms total)
T0990 3303:418 JLINK_IsHalted() returns FALSE (0000ms, 39878ms total)
T0990 3303:519 JLINK_IsHalted() returns FALSE (0000ms, 39878ms total)
T0990 3303:621 JLINK_IsHalted() returns FALSE (0000ms, 39878ms total)
T0990 3303:722 JLINK_IsHalted() returns FALSE (0000ms, 39878ms total)
T0990 3303:823 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39878ms total)
T0C04 3303:823 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39879ms total)
T0C04 3303:824 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39880ms total)
T0C04 3303:825 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39880ms total)
T0990 3303:825 JLINK_IsHalted() returns FALSE (0001ms, 39881ms total)
T0990 3303:927 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total)
T0990 3304:027 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total)
T0990 3304:128 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total)
T0990 3304:229 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total)
T0990 3304:330 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total)
T0990 3304:431 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39880ms total)
T0C04 3304:431 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39880ms total)
T0C04 3304:432 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39880ms total)
T0C04 3304:432 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39880ms total)
T0990 3304:432 JLINK_IsHalted() returns FALSE (0001ms, 39881ms total)
T0990 3304:534 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total)
T0990 3304:635 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total)
T0990 3304:736 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total)
T0990 3304:837 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total)
T0990 3304:937 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total)
T0990 3305:038 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39880ms total)
T0C04 3305:038 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39880ms total)
T0C04 3305:038 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39881ms total)
T0C04 3305:039 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39881ms total)
T0990 3305:039 JLINK_IsHalted() returns FALSE (0001ms, 39882ms total)
T0990 3305:141 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total)
T0990 3305:242 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total)
T0990 3305:343 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total)
T0990 3305:444 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total)
T0990 3305:545 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total)
T0990 3305:646 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39881ms total)
T0C04 3305:646 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39881ms total)
T0C04 3305:647 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39881ms total)
T0C04 3305:647 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39881ms total)
T0990 3305:648 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total)
T0990 3305:749 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total)
T0990 3305:850 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total)
T0990 3305:952 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total)
T0990 3306:053 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total)
T0990 3306:155 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39881ms total)
T0C04 3306:155 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39881ms total)
T0C04 3306:155 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0000ms, 39881ms total)
T0C04 3306:155 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0002ms, 39883ms total)
T0990 3306:157 JLINK_IsHalted() returns FALSE (0000ms, 39883ms total)
T0990 3306:258 JLINK_IsHalted() returns FALSE (0001ms, 39884ms total)
T0990 3306:359 JLINK_IsHalted() returns FALSE (0000ms, 39883ms total)
T0990 3306:460 JLINK_IsHalted() returns FALSE (0000ms, 39883ms total)
T0990 3306:560 JLINK_IsHalted() returns FALSE (0000ms, 39883ms total)
T0990 3306:661 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39883ms total)
T0C04 3306:661 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39883ms total)
T0C04 3306:662 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39883ms total)
T0C04 3306:662 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39884ms total)
T0990 3306:663 JLINK_IsHalted() returns FALSE (0001ms, 39885ms total)
T0990 3306:764 JLINK_IsHalted() returns FALSE (0000ms, 39884ms total)
T0990 3306:865 JLINK_IsHalted() returns FALSE (0000ms, 39884ms total)
T0990 3306:966 JLINK_IsHalted() returns FALSE (0000ms, 39884ms total)
T0990 3307:067 JLINK_IsHalted() returns FALSE (0000ms, 39884ms total)
T0990 3307:168 JLINK_IsHalted() returns FALSE (0000ms, 39884ms total)
T0990 3307:269 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39884ms total)
T0C04 3307:269 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39884ms total)
T0C04 3307:270 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39884ms total)
T0C04 3307:270 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39885ms total)
T0990 3307:271 JLINK_IsHalted() returns FALSE (0000ms, 39885ms total)
T0990 3307:373 JLINK_IsHalted() returns FALSE (0000ms, 39885ms total)
T0990 3307:474 JLINK_IsHalted() returns FALSE (0000ms, 39885ms total)
T0990 3307:576 JLINK_IsHalted() returns FALSE (0000ms, 39885ms total)
T0990 3307:677 JLINK_IsHalted() returns FALSE (0000ms, 39885ms total)
T0990 3307:777 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39885ms total)
T0C04 3307:777 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39885ms total)
T0C04 3307:777 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39886ms total)
T0C04 3307:778 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39886ms total)
T0990 3307:779 JLINK_IsHalted() returns FALSE (0000ms, 39886ms total)
T0990 3307:880 JLINK_IsHalted() returns FALSE (0000ms, 39886ms total)
T0990 3307:982 JLINK_IsHalted() returns FALSE (0000ms, 39886ms total)
T0990 3308:083 JLINK_IsHalted() returns FALSE (0000ms, 39886ms total)
T0990 3308:184 JLINK_IsHalted() returns FALSE (0000ms, 39886ms total)
T0990 3308:285 JLINK_IsHalted() returns FALSE (0000ms, 39886ms total)
T0990 3308:385 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39886ms total)
T0C04 3308:385 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39886ms total)
T0C04 3308:386 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39886ms total)
T0C04 3308:386 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39887ms total)
T0990 3308:387 JLINK_IsHalted() returns FALSE (0000ms, 39887ms total)
T0990 3308:489 JLINK_IsHalted() returns FALSE (0000ms, 39887ms total)
T0990 3308:590 JLINK_IsHalted() returns FALSE (0000ms, 39887ms total)
T0990 3308:691 JLINK_IsHalted() returns FALSE (0000ms, 39887ms total)
T0990 3308:792 JLINK_IsHalted() returns FALSE (0000ms, 39887ms total)
T0990 3308:893 JLINK_IsHalted() returns FALSE (0000ms, 39887ms total)
T0990 3308:993 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39887ms total)
T0C04 3308:993 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39887ms total)
T0C04 3308:993 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39888ms total)
T0C04 3308:994 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39888ms total)
T0990 3308:994 JLINK_IsHalted() returns FALSE (0001ms, 39889ms total)
T0990 3309:096 JLINK_IsHalted() returns FALSE (0000ms, 39888ms total)
T0990 3309:197 JLINK_IsHalted() returns FALSE (0000ms, 39888ms total)
T0990 3309:298 JLINK_IsHalted() returns FALSE (0000ms, 39888ms total)
T0990 3309:399 JLINK_IsHalted() returns FALSE (0000ms, 39888ms total)
T0990 3309:501 JLINK_IsHalted() returns FALSE (0000ms, 39888ms total)
T0990 3309:601 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39888ms total)
T0C04 3309:601 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39888ms total)
T0C04 3309:601 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0001ms, 39889ms total)
T0C04 3309:602 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0002ms, 39891ms total)
T0990 3309:604 JLINK_IsHalted() returns FALSE (0000ms, 39891ms total)
T0990 3309:704 JLINK_IsHalted() returns FALSE (0000ms, 39891ms total)
T0990 3309:806 JLINK_IsHalted() returns FALSE (0000ms, 39891ms total)
T0990 3309:907 JLINK_IsHalted() returns FALSE (0000ms, 39891ms total)
T0990 3310:008 JLINK_IsHalted() returns FALSE (0000ms, 39891ms total)
T0990 3310:109 JLINK_IsHalted() returns FALSE (0000ms, 39891ms total)
T0990 3310:209 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39891ms total)
T0C04 3310:209 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39891ms total)
T0C04 3310:209 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39892ms total)
T0C04 3310:210 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39893ms total)
T0990 3310:211 JLINK_IsHalted() returns FALSE (0000ms, 39893ms total)
T0990 3310:312 JLINK_IsHalted() returns FALSE (0000ms, 39893ms total)
T0990 3310:414 JLINK_IsHalted() returns FALSE (0000ms, 39893ms total)
T0990 3310:515 JLINK_IsHalted() returns FALSE (0000ms, 39893ms total)
T0990 3310:616 JLINK_IsHalted() returns FALSE (0000ms, 39893ms total)
T0990 3310:717 JLINK_IsHalted() returns FALSE (0000ms, 39893ms total)
T0990 3310:818 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39893ms total)
T0C04 3310:818 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39893ms total)
T0C04 3310:819 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39893ms total)
T0C04 3310:819 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39894ms total)
T0990 3310:820 JLINK_IsHalted() returns FALSE (0000ms, 39894ms total)
T0990 3310:921 JLINK_IsHalted() returns FALSE (0000ms, 39894ms total)
T0990 3311:022 JLINK_IsHalted() returns FALSE (0000ms, 39894ms total)
T0990 3311:123 JLINK_IsHalted() returns FALSE (0000ms, 39894ms total)
T0990 3311:224 JLINK_IsHalted() returns FALSE (0000ms, 39894ms total)
T0990 3311:325 JLINK_IsHalted() returns FALSE (0000ms, 39894ms total)
T0990 3311:426 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39894ms total)
T0C04 3311:426 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39894ms total)
T0C04 3311:426 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 06 returns 0x01 (0001ms, 39895ms total)
T0C04 3311:427 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39895ms total)
T0990 3311:428 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total)
T0990 3311:528 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total)
T0990 3311:630 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total)
T0990 3311:731 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total)
T0990 3311:832 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total)
T0990 3311:933 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39895ms total)
T0C04 3311:933 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39895ms total)
T0C04 3311:934 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39895ms total)
T0C04 3311:935 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39895ms total)
T0990 3311:936 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total)
T0990 3312:037 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total)
T0990 3312:139 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total)
T0990 3312:239 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total)
T0990 3312:340 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total)
T0990 3312:441 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total)
T0990 3312:542 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39895ms total)
T0C04 3312:542 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39895ms total)
T0C04 3312:543 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39895ms total)
T0C04 3312:543 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39895ms total)
T0990 3312:543 JLINK_IsHalted() returns FALSE (0001ms, 39896ms total)
T0990 3312:645 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total)
T0990 3312:745 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total)
T0990 3312:847 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total)
T0990 3312:947 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total)
T0990 3313:049 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total)
T0990 3313:150 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39895ms total)
T0C04 3313:150 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39895ms total)
T0C04 3313:151 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39895ms total)
T0C04 3313:151 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39896ms total)
T0990 3313:152 JLINK_IsHalted() returns FALSE (0000ms, 39896ms total)
T0990 3313:253 JLINK_IsHalted() returns FALSE (0000ms, 39896ms total)
T0990 3313:354 JLINK_IsHalted() returns FALSE (0000ms, 39896ms total)
T0990 3313:454 JLINK_IsHalted() returns FALSE (0000ms, 39896ms total)
T0990 3313:556 JLINK_IsHalted() returns FALSE (0000ms, 39896ms total)
T0990 3313:657 JLINK_IsHalted() returns FALSE (0000ms, 39896ms total)
T0990 3313:758 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39896ms total)
T0C04 3313:758 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39896ms total)
T0C04 3313:759 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39897ms total)
T0C04 3313:760 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39897ms total)
T0990 3313:760 JLINK_IsHalted() returns FALSE (0001ms, 39898ms total)
T0990 3313:862 JLINK_IsHalted() returns FALSE (0000ms, 39897ms total)
T0990 3313:963 JLINK_IsHalted() returns FALSE (0000ms, 39897ms total)
T0990 3314:064 JLINK_IsHalted() returns FALSE (0000ms, 39897ms total)
T0990 3314:165 JLINK_IsHalted() returns FALSE (0000ms, 39897ms total)
T0990 3314:266 JLINK_IsHalted() returns FALSE (0000ms, 39897ms total)
T0990 3314:367 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39897ms total)
T0C04 3314:367 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39897ms total)
T0C04 3314:367 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39898ms total)
T0C04 3314:368 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39898ms total)
T0990 3314:368 JLINK_IsHalted() returns FALSE (0001ms, 39899ms total)
T0990 3314:470 JLINK_IsHalted() returns FALSE (0000ms, 39898ms total)
T0990 3314:571 JLINK_IsHalted() returns FALSE (0000ms, 39898ms total)
T0990 3314:671 JLINK_IsHalted() returns FALSE (0000ms, 39898ms total)
T0990 3314:773 JLINK_IsHalted() returns FALSE (0000ms, 39898ms total)
T0990 3314:873 JLINK_IsHalted() returns FALSE (0000ms, 39898ms total)
T0990 3314:974 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39898ms total)
T0C04 3314:974 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39898ms total)
T0C04 3314:974 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39899ms total)
T0C04 3314:975 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39899ms total)
T0990 3314:976 JLINK_IsHalted() returns FALSE (0000ms, 39899ms total)
T0990 3315:077 JLINK_IsHalted() returns FALSE (0000ms, 39899ms total)
T0990 3315:179 JLINK_IsHalted() returns FALSE (0000ms, 39899ms total)
T0990 3315:279 JLINK_IsHalted() returns FALSE (0000ms, 39899ms total)
T0990 3315:381 JLINK_IsHalted() returns FALSE (0000ms, 39899ms total)
T0990 3315:482 JLINK_IsHalted() returns FALSE (0000ms, 39899ms total)
T0990 3315:583 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39899ms total)
T0C04 3315:583 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39900ms total)
T0C04 3315:584 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 05 returns 0x01 (0000ms, 39900ms total)
T0C04 3315:585 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39900ms total)
T0990 3315:585 JLINK_IsHalted() returns FALSE (0001ms, 39901ms total)
T0990 3315:687 JLINK_IsHalted() returns FALSE (0000ms, 39900ms total)
T0990 3315:787 JLINK_IsHalted() returns FALSE (0000ms, 39900ms total)
T0990 3315:889 JLINK_IsHalted() returns FALSE (0000ms, 39900ms total)
T0990 3315:990 JLINK_IsHalted() returns FALSE (0000ms, 39900ms total)
T0990 3316:091 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39900ms total)
T0C04 3316:091 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39900ms total)
T0C04 3316:092 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39900ms total)
T0C04 3316:093 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39900ms total)
T0990 3316:093 JLINK_IsHalted() returns FALSE (0001ms, 39901ms total)
T0990 3316:194 JLINK_IsHalted() returns FALSE (0001ms, 39901ms total)
T0990 3316:295 JLINK_IsHalted() returns FALSE (0000ms, 39900ms total)
T0990 3316:396 JLINK_IsHalted() returns FALSE (0000ms, 39900ms total)
T0990 3316:497 JLINK_IsHalted() returns FALSE (0000ms, 39900ms total)
T0990 3316:598 JLINK_IsHalted() returns FALSE (0000ms, 39900ms total)
T0990 3316:698 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39900ms total)
T0C04 3316:699 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39900ms total)
T0C04 3316:700 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39900ms total)
T0C04 3316:700 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39901ms total)
T0990 3316:701 JLINK_IsHalted() returns FALSE (0000ms, 39901ms total)
T0990 3316:802 JLINK_IsHalted() returns FALSE (0000ms, 39901ms total)
T0990 3316:903 JLINK_IsHalted() returns FALSE (0000ms, 39901ms total)
T0990 3317:003 JLINK_IsHalted() returns FALSE (0000ms, 39901ms total)
T0990 3317:104 JLINK_IsHalted() returns FALSE (0000ms, 39901ms total)
T0990 3317:205 JLINK_IsHalted() returns FALSE (0000ms, 39901ms total)
T0990 3317:306 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39901ms total)
T0C04 3317:306 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39901ms total)
T0C04 3317:307 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0000ms, 39901ms total)
T0C04 3317:307 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 01 returns 0x01 (0001ms, 39902ms total)
T0990 3317:308 JLINK_IsHalted() returns FALSE (0001ms, 39903ms total)
T0990 3317:409 JLINK_IsHalted() returns FALSE (0000ms, 39902ms total)
T0990 3317:510 JLINK_IsHalted() returns FALSE (0000ms, 39902ms total)
T0990 3317:612 JLINK_IsHalted() returns FALSE (0000ms, 39902ms total)
T0990 3317:712 JLINK_IsHalted() returns FALSE (0000ms, 39902ms total)
T0990 3317:814 JLINK_IsHalted() returns FALSE (0000ms, 39902ms total)
T0990 3317:914 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39902ms total)
T0C04 3317:914 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39902ms total)
T0C04 3317:914 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39903ms total)
T0C04 3317:915 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39904ms total)
T0990 3317:916 JLINK_IsHalted() returns FALSE (0000ms, 39904ms total)
T0990 3318:017 JLINK_IsHalted() returns FALSE (0000ms, 39904ms total)
T0990 3318:118 JLINK_IsHalted() returns FALSE (0000ms, 39904ms total)
T0990 3318:219 JLINK_IsHalted() returns FALSE (0000ms, 39904ms total)
T0990 3318:320 JLINK_IsHalted() returns FALSE (0000ms, 39904ms total)
T0990 3318:421 JLINK_IsHalted() returns FALSE (0000ms, 39904ms total)
T0990 3318:523 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39904ms total)
T0C04 3318:523 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39904ms total)
T0C04 3318:524 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39905ms total)
T0C04 3318:525 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39905ms total)
T0990 3318:526 JLINK_IsHalted() returns FALSE (0000ms, 39905ms total)
T0990 3318:627 JLINK_IsHalted() returns FALSE (0000ms, 39905ms total)
T0990 3318:728 JLINK_IsHalted() returns FALSE (0000ms, 39905ms total)
T0990 3318:829 JLINK_IsHalted() returns FALSE (0000ms, 39905ms total)
T0990 3318:930 JLINK_IsHalted() returns FALSE (0000ms, 39905ms total)
T0990 3319:031 JLINK_IsHalted() returns FALSE (0000ms, 39905ms total)
T0990 3319:132 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39905ms total)
T0C04 3319:132 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39905ms total)
T0C04 3319:132 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39906ms total)
T0C04 3319:133 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39907ms total)
T0990 3319:134 JLINK_IsHalted() returns FALSE (0000ms, 39907ms total)
T0990 3319:236 JLINK_IsHalted() returns FALSE (0000ms, 39907ms total)
T0990 3319:337 JLINK_IsHalted() returns FALSE (0000ms, 39907ms total)
T0990 3319:438 JLINK_IsHalted() returns FALSE (0000ms, 39907ms total)
T0990 3319:539 JLINK_IsHalted() returns FALSE (0000ms, 39907ms total)
T0990 3319:641 JLINK_IsHalted() returns FALSE (0000ms, 39907ms total)
T0990 3319:741 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39907ms total)
T0C04 3319:741 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39907ms total)
T0C04 3319:741 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39908ms total)
T0C04 3319:742 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39909ms total)
T0990 3319:743 JLINK_IsHalted() returns FALSE (0001ms, 39910ms total)
T0990 3319:845 JLINK_IsHalted() returns FALSE (0000ms, 39909ms total)
T0990 3319:947 JLINK_IsHalted() returns FALSE (0000ms, 39909ms total)
T0990 3320:048 JLINK_IsHalted() returns FALSE (0000ms, 39909ms total)
T0990 3320:148 JLINK_IsHalted() returns FALSE (0001ms, 39910ms total)
T0990 3320:249 JLINK_IsHalted() returns FALSE (0000ms, 39909ms total)
T0990 3320:350 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39909ms total)
T0C04 3320:350 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39910ms total)
T0C04 3320:351 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 06 returns 0x01 (0000ms, 39910ms total)
T0C04 3320:352 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39910ms total)
T0990 3320:352 JLINK_IsHalted() returns FALSE (0000ms, 39910ms total)
T0990 3320:453 JLINK_IsHalted() returns FALSE (0000ms, 39910ms total)
T0990 3320:554 JLINK_IsHalted() returns FALSE (0000ms, 39910ms total)
T0990 3320:656 JLINK_IsHalted() returns FALSE (0000ms, 39910ms total)
T0990 3320:756 JLINK_IsHalted() returns FALSE (0000ms, 39910ms total)
T0990 3320:858 JLINK_IsHalted() returns FALSE (0000ms, 39910ms total)
T0990 3320:959 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39910ms total)
T0C04 3320:959 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39910ms total)
T0C04 3320:960 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39910ms total)
T0C04 3320:960 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39911ms total)
T0990 3320:961 JLINK_IsHalted() returns FALSE (0001ms, 39912ms total)
T0990 3321:062 JLINK_IsHalted() returns FALSE (0000ms, 39911ms total)
T0990 3321:164 JLINK_IsHalted() returns FALSE (0000ms, 39911ms total)
T0990 3321:265 JLINK_IsHalted() returns FALSE (0000ms, 39911ms total)
T0990 3321:366 JLINK_IsHalted() returns FALSE (0000ms, 39911ms total)
T0990 3321:467 JLINK_IsHalted() returns FALSE (0000ms, 39911ms total)
T0990 3321:567 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39911ms total)
T0C04 3321:568 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39911ms total)
T0C04 3321:569 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39911ms total)
T0C04 3321:569 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39912ms total)
T0990 3321:570 JLINK_IsHalted() returns FALSE (0000ms, 39912ms total)
T0990 3321:671 JLINK_IsHalted() returns FALSE (0000ms, 39912ms total)
T0990 3321:772 JLINK_IsHalted() returns FALSE (0000ms, 39912ms total)
T0990 3321:873 JLINK_IsHalted() returns FALSE (0000ms, 39912ms total)
T0990 3321:974 JLINK_IsHalted() returns FALSE (0000ms, 39912ms total)
T0990 3322:074 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39912ms total)
T0C04 3322:075 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39912ms total)
T0C04 3322:075 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39913ms total)
T0C04 3322:076 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39913ms total)
T0990 3322:076 JLINK_IsHalted() returns FALSE (0001ms, 39914ms total)
T0990 3322:177 JLINK_IsHalted() returns FALSE (0000ms, 39913ms total)
T0990 3322:278 JLINK_IsHalted() returns FALSE (0000ms, 39913ms total)
T0990 3322:379 JLINK_IsHalted() returns FALSE (0000ms, 39913ms total)
T0990 3322:480 JLINK_IsHalted() returns FALSE (0000ms, 39913ms total)
T0990 3322:581 JLINK_IsHalted() returns FALSE (0000ms, 39913ms total)
T0990 3322:682 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39913ms total)
T0C04 3322:682 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39913ms total)
T0C04 3322:682 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39914ms total)
T0C04 3322:683 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39914ms total)
T0990 3322:683 JLINK_IsHalted() returns FALSE (0001ms, 39915ms total)
T0990 3322:785 JLINK_IsHalted() returns FALSE (0000ms, 39914ms total)
T0990 3322:885 JLINK_IsHalted() returns FALSE (0000ms, 39914ms total)
T0990 3322:986 JLINK_IsHalted() returns FALSE (0000ms, 39914ms total)
T0990 3323:088 JLINK_IsHalted() returns FALSE (0000ms, 39914ms total)
T0990 3323:188 JLINK_IsHalted() returns FALSE (0001ms, 39915ms total)
T0990 3323:290 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39914ms total)
T0C04 3323:290 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39914ms total)
T0C04 3323:290 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39915ms total)
T0C04 3323:291 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39916ms total)
T0990 3323:292 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total)
T0990 3323:393 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total)
T0990 3323:493 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total)
T0990 3323:595 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total)
T0990 3323:695 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total)
T0990 3323:796 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total)
T0990 3323:898 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39916ms total)
T0C04 3323:898 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39916ms total)
T0C04 3323:899 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0000ms, 39916ms total)
T0C04 3323:899 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 26 returns 0x01 (0000ms, 39916ms total)
T0990 3323:900 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total)
T0990 3324:001 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total)
T0990 3324:102 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total)
T0990 3324:202 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total)
T0990 3324:303 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total)
T0990 3324:404 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total)
T0990 3324:505 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39916ms total)
T0C04 3324:505 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39916ms total)
T0C04 3324:505 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0001ms, 39917ms total)
T0C04 3324:506 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 17 returns 0x01 (0000ms, 39917ms total)
T0990 3324:507 JLINK_IsHalted() returns FALSE (0000ms, 39917ms total)
T0990 3324:608 JLINK_IsHalted() returns FALSE (0000ms, 39917ms total)
T0990 3324:709 JLINK_IsHalted() returns FALSE (0000ms, 39917ms total)
T0990 3324:811 JLINK_IsHalted() returns FALSE (0000ms, 39917ms total)
T0990 3324:912 JLINK_IsHalted() returns FALSE (0000ms, 39917ms total)
T0990 3325:013 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39917ms total)
T0C04 3325:013 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39917ms total)
T0C04 3325:014 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0000ms, 39917ms total)
T0C04 3325:014 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 61 returns 0x01 (0001ms, 39918ms total)
T0990 3325:015 JLINK_IsHalted() returns FALSE (0001ms, 39919ms total)
T0990 3325:116 JLINK_IsHalted() returns FALSE (0000ms, 39918ms total)
T0990 3325:218 JLINK_IsHalted() returns FALSE (0000ms, 39918ms total)
T0990 3325:318 JLINK_IsHalted() returns FALSE (0000ms, 39918ms total)
T0990 3325:419 JLINK_IsHalted() returns FALSE (0000ms, 39918ms total)
T0990 3325:520 JLINK_IsHalted() returns FALSE (0000ms, 39918ms total)
T0990 3325:621 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39918ms total)
T0C04 3325:621 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39918ms total)
T0C04 3325:622 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0000ms, 39918ms total)
T0C04 3325:622 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 53 returns 0x01 (0001ms, 39919ms total)
T0990 3325:623 JLINK_IsHalted() returns FALSE (0000ms, 39919ms total)
T0990 3325:724 JLINK_IsHalted() returns FALSE (0000ms, 39919ms total)
T0990 3325:825 JLINK_IsHalted() returns FALSE (0000ms, 39919ms total)
T0990 3325:926 JLINK_IsHalted() returns FALSE (0000ms, 39919ms total)
T0990 3326:027 JLINK_IsHalted() returns FALSE (0000ms, 39919ms total)
T0990 3326:128 JLINK_IsHalted() returns FALSE (0000ms, 39919ms total)
T0990 3326:229 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39919ms total)
T0C04 3326:229 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39919ms total)
T0C04 3326:229 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0001ms, 39920ms total)
T0C04 3326:230 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 44 returns 0x01 (0000ms, 39920ms total)
T0990 3326:231 JLINK_IsHalted() returns FALSE (0000ms, 39920ms total)
T0990 3326:332 JLINK_IsHalted() returns FALSE (0000ms, 39920ms total)
T0990 3326:433 JLINK_IsHalted() returns FALSE (0000ms, 39920ms total)
T0990 3326:534 JLINK_IsHalted() returns FALSE (0000ms, 39920ms total)
T0990 3326:635 JLINK_IsHalted() returns FALSE (0000ms, 39920ms total)
T0990 3326:736 JLINK_IsHalted() returns FALSE (0000ms, 39920ms total)
T0990 3326:838 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39920ms total)
T0C04 3326:838 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39920ms total)
T0C04 3326:838 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0001ms, 39921ms total)
T0C04 3326:839 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 35 returns 0x01 (0000ms, 39921ms total)
T0990 3326:840 JLINK_IsHalted() returns FALSE (0000ms, 39921ms total)
T0990 3326:940 JLINK_IsHalted() returns FALSE (0000ms, 39921ms total)
T0990 3327:041 JLINK_IsHalted() returns FALSE (0000ms, 39921ms total)
T0990 3327:142 JLINK_IsHalted() returns FALSE (0000ms, 39921ms total)
T0990 3327:244 JLINK_IsHalted() returns FALSE (0000ms, 39921ms total)
T0990 3327:345 JLINK_IsHalted() returns FALSE (0000ms, 39921ms total)
T0990 3327:445 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39921ms total)
T0C04 3327:445 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39922ms total)
T0C04 3327:446 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0001ms, 39923ms total)
T0C04 3327:447 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39923ms total)
T0990 3327:448 JLINK_IsHalted() returns FALSE (0000ms, 39923ms total)
T0990 3327:549 JLINK_IsHalted() returns FALSE (0000ms, 39923ms total)
T0990 3327:650 JLINK_IsHalted() returns FALSE (0000ms, 39923ms total)
T0990 3327:751 JLINK_IsHalted() returns FALSE (0000ms, 39923ms total)
T0990 3327:852 JLINK_IsHalted() returns FALSE (0000ms, 39923ms total)
T0990 3327:953 JLINK_IsHalted() returns FALSE (0000ms, 39923ms total)
T0990 3328:054 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39923ms total)
T0C04 3328:054 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39923ms total)
T0C04 3328:054 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39924ms total)
T0C04 3328:055 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39925ms total)
T0990 3328:056 JLINK_IsHalted() returns FALSE (0000ms, 39925ms total)
T0990 3328:157 JLINK_IsHalted() returns FALSE (0000ms, 39925ms total)
T0990 3328:258 JLINK_IsHalted() returns FALSE (0000ms, 39925ms total)
T0990 3328:359 JLINK_IsHalted() returns FALSE (0001ms, 39926ms total)
T0990 3328:460 JLINK_IsHalted() returns FALSE (0000ms, 39925ms total)
T0990 3328:561 JLINK_IsHalted() returns FALSE (0000ms, 39925ms total)
T0990 3328:662 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39925ms total)
T0C04 3328:662 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39925ms total)
T0C04 3328:663 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39925ms total)
T0C04 3328:663 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39926ms total)
T0990 3328:664 JLINK_IsHalted() returns FALSE (0000ms, 39926ms total)
T0990 3328:765 JLINK_IsHalted() returns FALSE (0000ms, 39926ms total)
T0990 3328:866 JLINK_IsHalted() returns FALSE (0000ms, 39926ms total)
T0990 3328:967 JLINK_IsHalted() returns FALSE (0000ms, 39926ms total)
T0990 3329:067 JLINK_IsHalted() returns FALSE (0001ms, 39927ms total)
T0990 3329:169 JLINK_IsHalted() returns FALSE (0000ms, 39926ms total)
T0990 3329:270 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39926ms total)
T0C04 3329:270 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39926ms total)
T0C04 3329:271 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0000ms, 39926ms total)
T0C04 3329:271 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 1B returns 0x01 (0001ms, 39927ms total)
T0990 3329:272 JLINK_IsHalted() returns FALSE (0000ms, 39927ms total)
T0990 3329:373 JLINK_IsHalted() returns FALSE (0000ms, 39927ms total)
T0990 3329:474 JLINK_IsHalted() returns FALSE (0000ms, 39927ms total)
T0990 3329:576 JLINK_IsHalted() returns FALSE (0000ms, 39927ms total)
T0990 3329:676 JLINK_IsHalted() returns FALSE (0000ms, 39927ms total)
T0990 3329:778 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39927ms total)
T0C04 3329:778 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39927ms total)
T0C04 3329:778 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0001ms, 39928ms total)
T0C04 3329:779 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 65 returns 0x01 (0000ms, 39928ms total)
T0990 3329:780 JLINK_IsHalted() returns FALSE (0000ms, 39928ms total)
T0990 3329:881 JLINK_IsHalted() returns FALSE (0000ms, 39928ms total)
T0990 3329:982 JLINK_IsHalted() returns FALSE (0000ms, 39928ms total)
T0990 3330:083 JLINK_IsHalted() returns FALSE (0000ms, 39928ms total)
T0990 3330:184 JLINK_IsHalted() returns FALSE (0000ms, 39928ms total)
T0990 3330:285 JLINK_IsHalted() returns FALSE (0000ms, 39928ms total)
T0990 3330:386 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39928ms total)
T0C04 3330:386 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39928ms total)
T0C04 3330:386 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0001ms, 39929ms total)
T0C04 3330:387 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 56 returns 0x01 (0000ms, 39929ms total)
T0990 3330:388 JLINK_IsHalted() returns FALSE (0000ms, 39929ms total)
T0990 3330:489 JLINK_IsHalted() returns FALSE (0000ms, 39929ms total)
T0990 3330:590 JLINK_IsHalted() returns FALSE (0000ms, 39929ms total)
T0990 3330:692 JLINK_IsHalted() returns FALSE (0000ms, 39929ms total)
T0990 3330:793 JLINK_IsHalted() returns FALSE (0000ms, 39929ms total)
T0990 3330:894 JLINK_IsHalted() returns FALSE (0000ms, 39929ms total)
T0990 3330:994 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39929ms total)
T0C04 3330:994 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39929ms total)
T0C04 3330:994 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0002ms, 39931ms total)
T0C04 3330:996 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 48 returns 0x01 (0000ms, 39931ms total)
T0990 3330:997 JLINK_IsHalted() returns FALSE (0000ms, 39931ms total)
T0990 3331:099 JLINK_IsHalted() returns FALSE (0000ms, 39931ms total)
T0990 3331:199 JLINK_IsHalted() returns FALSE (0000ms, 39931ms total)
T0990 3331:300 JLINK_IsHalted() returns FALSE (0000ms, 39931ms total)
T0990 3331:401 JLINK_IsHalted() returns FALSE (0000ms, 39931ms total)
T0990 3331:502 JLINK_IsHalted() returns FALSE (0000ms, 39931ms total)
T0990 3331:602 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39931ms total)
T0C04 3331:602 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39931ms total)
T0C04 3331:602 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0001ms, 39932ms total)
T0C04 3331:603 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 39 returns 0x01 (0000ms, 39932ms total)
T0990 3331:604 JLINK_IsHalted() returns FALSE (0000ms, 39932ms total)
T0990 3331:706 JLINK_IsHalted() returns FALSE (0000ms, 39932ms total)
T0990 3331:807 JLINK_IsHalted() returns FALSE (0000ms, 39932ms total)
T0990 3331:908 JLINK_IsHalted() returns FALSE (0001ms, 39933ms total)
T0990 3332:009 JLINK_IsHalted() returns FALSE (0000ms, 39932ms total)
T0990 3332:110 JLINK_IsHalted() returns FALSE (0000ms, 39932ms total)
T0990 3332:211 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39932ms total)
T0C04 3332:211 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39932ms total)
T0C04 3332:212 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39932ms total)
T0C04 3332:212 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39933ms total)
T0990 3332:213 JLINK_IsHalted() returns FALSE (0001ms, 39934ms total)
T0990 3332:314 JLINK_IsHalted() returns FALSE (0000ms, 39933ms total)
T0990 3332:415 JLINK_IsHalted() returns FALSE (0000ms, 39933ms total)
T0990 3332:516 JLINK_IsHalted() returns FALSE (0000ms, 39933ms total)
T0990 3332:618 JLINK_IsHalted() returns FALSE (0000ms, 39933ms total)
T0990 3332:718 JLINK_IsHalted() returns FALSE (0000ms, 39933ms total)
T0990 3332:820 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39933ms total)
T0C04 3332:820 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39933ms total)
T0C04 3332:820 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 06 returns 0x01 (0001ms, 39934ms total)
T0C04 3332:821 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39934ms total)
T0990 3332:822 JLINK_IsHalted() returns FALSE (0000ms, 39934ms total)
T0990 3332:923 JLINK_IsHalted() returns FALSE (0000ms, 39934ms total)
T0990 3333:024 JLINK_IsHalted() returns FALSE (0000ms, 39934ms total)
T0990 3333:125 JLINK_IsHalted() returns FALSE (0000ms, 39934ms total)
T0990 3333:226 JLINK_IsHalted() returns FALSE (0000ms, 39934ms total)
T0990 3333:327 JLINK_IsHalted() returns FALSE (0000ms, 39934ms total)
T0990 3333:428 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39934ms total)
T0C04 3333:428 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39934ms total)
T0C04 3333:428 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39935ms total)
T0C04 3333:429 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39936ms total)
T0990 3333:430 JLINK_IsHalted() returns FALSE (0000ms, 39936ms total)
T0990 3333:531 JLINK_IsHalted() returns FALSE (0000ms, 39936ms total)
T0990 3333:631 JLINK_IsHalted() returns FALSE (0001ms, 39937ms total)
T0990 3333:733 JLINK_IsHalted() returns FALSE (0000ms, 39936ms total)
T0990 3333:834 JLINK_IsHalted() returns FALSE (0000ms, 39936ms total)
T0990 3333:934 JLINK_IsHalted() returns FALSE (0000ms, 39936ms total)
T0990 3334:035 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39936ms total)
T0C04 3334:035 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39936ms total)
T0C04 3334:036 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39936ms total)
T0C04 3334:036 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39937ms total)
T0990 3334:037 JLINK_IsHalted() returns FALSE (0001ms, 39938ms total)
T0990 3334:139 JLINK_IsHalted() returns FALSE (0000ms, 39937ms total)
T0990 3334:240 JLINK_IsHalted() returns FALSE (0001ms, 39938ms total)
T0990 3334:341 JLINK_IsHalted() returns FALSE (0000ms, 39937ms total)
T0990 3334:442 JLINK_IsHalted() returns FALSE (0000ms, 39937ms total)
T0990 3334:542 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39937ms total)
T0C04 3334:542 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39937ms total)
T0C04 3334:543 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 06 returns 0x01 (0000ms, 39937ms total)
T0C04 3334:544 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39937ms total)
T0990 3334:544 JLINK_IsHalted() returns FALSE (0001ms, 39938ms total)
T0990 3334:646 JLINK_IsHalted() returns FALSE (0000ms, 39937ms total)
T0990 3334:747 JLINK_IsHalted() returns FALSE (0000ms, 39937ms total)
T0990 3334:849 JLINK_IsHalted() returns FALSE (0000ms, 39937ms total)
T0990 3334:949 JLINK_IsHalted() returns FALSE (0000ms, 39937ms total)
T0990 3335:051 JLINK_IsHalted() returns FALSE (0000ms, 39937ms total)
T0990 3335:152 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39937ms total)
T0C04 3335:152 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39937ms total)
T0C04 3335:153 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39938ms total)
T0C04 3335:154 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39939ms total)
T0990 3335:155 JLINK_IsHalted() returns FALSE (0000ms, 39939ms total)
T0990 3335:257 JLINK_IsHalted() returns FALSE (0000ms, 39939ms total)
T0990 3335:358 JLINK_IsHalted() returns FALSE (0000ms, 39939ms total)
T0990 3335:459 JLINK_IsHalted() returns FALSE (0000ms, 39939ms total)
T0990 3335:560 JLINK_IsHalted() returns FALSE (0000ms, 39939ms total)
T0990 3335:660 JLINK_IsHalted() returns FALSE (0000ms, 39939ms total)
T0990 3335:761 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39939ms total)
T0C04 3335:761 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39939ms total)
T0C04 3335:762 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39940ms total)
T0C04 3335:764 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39940ms total)
T0990 3335:764 JLINK_IsHalted() returns FALSE (0001ms, 39941ms total)
T0990 3335:866 JLINK_IsHalted() returns FALSE (0000ms, 39940ms total)
T0990 3335:966 JLINK_IsHalted() returns FALSE (0000ms, 39940ms total)
T0990 3336:067 JLINK_IsHalted() returns FALSE (0000ms, 39940ms total)
T0990 3336:168 JLINK_IsHalted() returns FALSE (0000ms, 39940ms total)
T0990 3336:270 JLINK_IsHalted() returns FALSE (0000ms, 39940ms total)
T0990 3336:371 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39940ms total)
T0C04 3336:372 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39940ms total)
T0C04 3336:373 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39940ms total)
T0C04 3336:373 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39940ms total)
T0990 3336:373 JLINK_IsHalted() returns FALSE (0001ms, 39941ms total)
T0990 3336:474 JLINK_IsHalted() returns FALSE (0000ms, 39940ms total)
T0990 3336:575 JLINK_IsHalted() returns FALSE (0000ms, 39940ms total)
T0990 3336:676 JLINK_IsHalted() returns FALSE (0000ms, 39940ms total)
T0990 3336:776 JLINK_IsHalted() returns FALSE (0001ms, 39941ms total)
T0990 3336:877 JLINK_IsHalted() returns FALSE (0000ms, 39940ms total)
T0990 3336:979 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39940ms total)
T0C04 3336:979 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39940ms total)
T0C04 3336:980 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 05 returns 0x01 (0000ms, 39940ms total)
T0C04 3336:980 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39941ms total)
T0990 3336:981 JLINK_IsHalted() returns FALSE (0000ms, 39941ms total)
T0990 3337:083 JLINK_IsHalted() returns FALSE (0000ms, 39941ms total)
T0990 3337:183 JLINK_IsHalted() returns FALSE (0000ms, 39941ms total)
T0990 3337:284 JLINK_IsHalted() returns FALSE (0000ms, 39941ms total)
T0990 3337:385 JLINK_IsHalted() returns FALSE (0000ms, 39941ms total)
T0990 3337:486 JLINK_IsHalted() returns FALSE (0000ms, 39941ms total)
T0990 3337:588 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39941ms total)
T0C04 3337:588 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39941ms total)
T0C04 3337:589 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39941ms total)
T0C04 3337:589 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39942ms total)
T0990 3337:590 JLINK_IsHalted() returns FALSE (0000ms, 39942ms total)
T0990 3337:691 JLINK_IsHalted() returns FALSE (0000ms, 39942ms total)
T0990 3337:792 JLINK_IsHalted() returns FALSE (0000ms, 39942ms total)
T0990 3337:893 JLINK_IsHalted() returns FALSE (0000ms, 39942ms total)
T0990 3337:994 JLINK_IsHalted() returns FALSE (0000ms, 39942ms total)
T0990 3338:095 JLINK_IsHalted() returns FALSE (0000ms, 39942ms total)
T0990 3338:196 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39942ms total)
T0C04 3338:196 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39942ms total)
T0C04 3338:197 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39942ms total)
T0C04 3338:197 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39943ms total)
T0990 3338:198 JLINK_IsHalted() returns FALSE (0000ms, 39943ms total)
T0990 3338:299 JLINK_IsHalted() returns FALSE (0000ms, 39943ms total)
T0990 3338:401 JLINK_IsHalted() returns FALSE (0000ms, 39943ms total)
T0990 3338:502 JLINK_IsHalted() returns FALSE (0000ms, 39943ms total)
T0990 3338:603 JLINK_IsHalted() returns FALSE (0000ms, 39943ms total)
T0990 3338:704 JLINK_IsHalted() returns FALSE (0000ms, 39943ms total)
T0990 3338:804 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39943ms total)
T0C04 3338:805 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39943ms total)
T0C04 3338:805 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39944ms total)
T0C04 3338:806 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39944ms total)
T0990 3338:806 JLINK_IsHalted() returns FALSE (0001ms, 39945ms total)
T0990 3338:907 JLINK_IsHalted() returns FALSE (0000ms, 39944ms total)
T0990 3339:009 JLINK_IsHalted() returns FALSE (0000ms, 39944ms total)
T0990 3339:110 JLINK_IsHalted() returns FALSE (0000ms, 39944ms total)
T0990 3339:211 JLINK_IsHalted() returns FALSE (0000ms, 39944ms total)
T0990 3339:312 JLINK_IsHalted() returns FALSE (0000ms, 39944ms total)
T0990 3339:414 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39944ms total)
T0C04 3339:414 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39944ms total)
T0C04 3339:415 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0000ms, 39944ms total)
T0C04 3339:415 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39945ms total)
T0990 3339:416 JLINK_IsHalted() returns FALSE (0000ms, 39945ms total)
T0990 3339:517 JLINK_IsHalted() returns FALSE (0000ms, 39945ms total)
T0990 3339:618 JLINK_IsHalted() returns FALSE (0000ms, 39945ms total)
T0990 3339:718 JLINK_IsHalted() returns FALSE (0000ms, 39945ms total)
T0990 3339:819 JLINK_IsHalted() returns FALSE (0000ms, 39945ms total)
T0990 3339:921 JLINK_IsHalted() returns FALSE (0000ms, 39945ms total)
T0990 3340:021 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39945ms total)
T0C04 3340:021 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39945ms total)
T0C04 3340:022 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39945ms total)
T0C04 3340:022 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39946ms total)
T0990 3340:023 JLINK_IsHalted() returns FALSE (0000ms, 39946ms total)
T0990 3340:125 JLINK_IsHalted() returns FALSE (0000ms, 39946ms total)
T0990 3340:226 JLINK_IsHalted() returns FALSE (0000ms, 39946ms total)
T0990 3340:327 JLINK_IsHalted() returns FALSE (0000ms, 39946ms total)
T0990 3340:428 JLINK_IsHalted() returns FALSE (0000ms, 39946ms total)
T0990 3340:529 JLINK_IsHalted() returns FALSE (0000ms, 39946ms total)
T0990 3340:629 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39946ms total)
T0C04 3340:629 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39947ms total)
T0C04 3340:630 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39948ms total)
T0C04 3340:631 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39948ms total)
T0990 3340:632 JLINK_IsHalted() returns FALSE (0000ms, 39948ms total)
T0990 3340:732 JLINK_IsHalted() returns FALSE (0000ms, 39948ms total)
T0990 3340:833 JLINK_IsHalted() returns FALSE (0000ms, 39948ms total)
T0990 3340:934 JLINK_IsHalted() returns FALSE (0000ms, 39948ms total)
T0990 3341:035 JLINK_IsHalted() returns FALSE (0000ms, 39948ms total)
T0990 3341:136 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39948ms total)
T0C04 3341:136 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39948ms total)
T0C04 3341:137 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0000ms, 39948ms total)
T0C04 3341:137 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39949ms total)
T0990 3341:138 JLINK_IsHalted() returns FALSE (0000ms, 39949ms total)
T0990 3341:238 JLINK_IsHalted() returns FALSE (0000ms, 39949ms total)
T0990 3341:339 JLINK_IsHalted() returns FALSE (0000ms, 39949ms total)
T0990 3341:440 JLINK_IsHalted() returns FALSE (0000ms, 39949ms total)
T0990 3341:542 JLINK_IsHalted() returns FALSE (0000ms, 39949ms total)
T0990 3341:642 JLINK_IsHalted() returns FALSE (0000ms, 39949ms total)
T0990 3341:743 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39949ms total)
T0C04 3341:743 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39949ms total)
T0C04 3341:743 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0002ms, 39951ms total)
T0C04 3341:745 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39951ms total)
T0990 3341:745 JLINK_IsHalted() returns FALSE (0001ms, 39952ms total)
T0990 3341:846 JLINK_IsHalted() returns FALSE (0000ms, 39951ms total)
T0990 3341:947 JLINK_IsHalted() returns FALSE (0000ms, 39951ms total)
T0990 3342:048 JLINK_IsHalted() returns FALSE (0000ms, 39951ms total)
T0990 3342:149 JLINK_IsHalted() returns FALSE (0000ms, 39951ms total)
T0990 3342:250 JLINK_IsHalted() returns FALSE (0000ms, 39951ms total)
T0990 3342:350 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39951ms total)
T0C04 3342:350 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39952ms total)
T0C04 3342:351 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39953ms total)
T0C04 3342:352 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39953ms total)
T0990 3342:353 JLINK_IsHalted() returns FALSE (0000ms, 39953ms total)
T0990 3342:453 JLINK_IsHalted() returns FALSE (0000ms, 39953ms total)
T0990 3342:555 JLINK_IsHalted() returns FALSE (0000ms, 39953ms total)
T0990 3342:656 JLINK_IsHalted() returns FALSE (0000ms, 39953ms total)
T0990 3342:757 JLINK_IsHalted() returns FALSE (0000ms, 39953ms total)
T0990 3342:858 JLINK_IsHalted() returns FALSE (0000ms, 39953ms total)
T0990 3342:958 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39953ms total)
T0C04 3342:958 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39953ms total)
T0C04 3342:959 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 05 returns 0x01 (0001ms, 39954ms total)
T0C04 3342:960 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39954ms total)
T0990 3342:960 JLINK_IsHalted() returns FALSE (0001ms, 39955ms total)
T0990 3343:061 JLINK_IsHalted() returns FALSE (0000ms, 39954ms total)
T0990 3343:162 JLINK_IsHalted() returns FALSE (0000ms, 39954ms total)
T0990 3343:263 JLINK_IsHalted() returns FALSE (0000ms, 39954ms total)
T0990 3343:365 JLINK_IsHalted() returns FALSE (0000ms, 39954ms total)
T0990 3343:466 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39954ms total)
T0C04 3343:466 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39954ms total)
T0C04 3343:466 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39955ms total)
T0C04 3343:467 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39956ms total)
T0990 3343:468 JLINK_IsHalted() returns FALSE (0000ms, 39956ms total)
T0990 3343:569 JLINK_IsHalted() returns FALSE (0000ms, 39956ms total)
T0990 3343:670 JLINK_IsHalted() returns FALSE (0000ms, 39956ms total)
T0990 3343:772 JLINK_IsHalted() returns FALSE (0000ms, 39956ms total)
T0990 3343:872 JLINK_IsHalted() returns FALSE (0000ms, 39956ms total)
T0990 3343:974 JLINK_IsHalted() returns FALSE (0000ms, 39956ms total)
T0990 3344:074 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39956ms total)
T0C04 3344:074 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39957ms total)
T0C04 3344:075 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39958ms total)
T0C04 3344:076 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39959ms total)
T0990 3344:077 JLINK_IsHalted() returns FALSE (0000ms, 39959ms total)
T0990 3344:177 JLINK_IsHalted() returns FALSE (0000ms, 39959ms total)
T0990 3344:279 JLINK_IsHalted() returns FALSE (0000ms, 39959ms total)
T0990 3344:380 JLINK_IsHalted() returns FALSE (0000ms, 39959ms total)
T0990 3344:480 JLINK_IsHalted() returns FALSE (0001ms, 39960ms total)
T0990 3344:581 JLINK_IsHalted() returns FALSE (0000ms, 39959ms total)
T0990 3344:683 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39959ms total)
T0C04 3344:683 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39959ms total)
T0C04 3344:684 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 06 returns 0x01 (0000ms, 39959ms total)
T0C04 3344:684 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39960ms total)
T0990 3344:685 JLINK_IsHalted() returns FALSE (0000ms, 39960ms total)
T0990 3344:786 JLINK_IsHalted() returns FALSE (0000ms, 39960ms total)
T0990 3344:887 JLINK_IsHalted() returns FALSE (0000ms, 39960ms total)
T0990 3344:988 JLINK_IsHalted() returns FALSE (0000ms, 39960ms total)
T0990 3345:089 JLINK_IsHalted() returns FALSE (0000ms, 39960ms total)
T0990 3345:190 JLINK_IsHalted() returns FALSE (0000ms, 39960ms total)
T0990 3345:291 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39960ms total)
T0C04 3345:291 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39960ms total)
T0C04 3345:292 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39960ms total)
T0C04 3345:292 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39961ms total)
T0990 3345:293 JLINK_IsHalted() returns FALSE (0001ms, 39962ms total)
T0990 3345:394 JLINK_IsHalted() returns FALSE (0000ms, 39961ms total)
T0990 3345:495 JLINK_IsHalted() returns FALSE (0000ms, 39961ms total)
T0990 3345:596 JLINK_IsHalted() returns FALSE (0000ms, 39961ms total)
T0990 3345:696 JLINK_IsHalted() returns FALSE (0000ms, 39961ms total)
T0990 3345:797 JLINK_IsHalted() returns FALSE (0000ms, 39961ms total)
T0990 3345:898 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39961ms total)
T0C04 3345:898 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39961ms total)
T0C04 3345:898 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39962ms total)
T0C04 3345:899 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39962ms total)
T0990 3345:900 JLINK_IsHalted() returns FALSE (0000ms, 39962ms total)
T0990 3346:001 JLINK_IsHalted() returns FALSE (0000ms, 39962ms total)
T0990 3346:103 JLINK_IsHalted() returns FALSE (0000ms, 39962ms total)
T0990 3346:204 JLINK_IsHalted() returns FALSE (0000ms, 39962ms total)
T0990 3346:305 JLINK_IsHalted() returns FALSE (0000ms, 39962ms total)
T0990 3346:405 JLINK_IsHalted() returns FALSE (0000ms, 39962ms total)
T0990 3346:506 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39962ms total)
T0C04 3346:506 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39962ms total)
T0C04 3346:507 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39962ms total)
T0C04 3346:507 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39963ms total)
T0990 3346:508 JLINK_IsHalted() returns FALSE (0000ms, 39963ms total)
T0990 3346:609 JLINK_IsHalted() returns FALSE (0000ms, 39963ms total)
T0990 3346:711 JLINK_IsHalted() returns FALSE (0000ms, 39963ms total)
T0990 3346:812 JLINK_IsHalted() returns FALSE (0000ms, 39963ms total)
T0990 3346:912 JLINK_IsHalted() returns FALSE (0001ms, 39964ms total)
T0990 3347:014 JLINK_IsHalted() returns FALSE (0000ms, 39963ms total)
T0990 3347:114 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39963ms total)
T0C04 3347:114 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39964ms total)
T0C04 3347:116 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0000ms, 39964ms total)
T0C04 3347:116 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39965ms total)
T0990 3347:117 JLINK_IsHalted() returns FALSE (0000ms, 39965ms total)
T0990 3347:218 JLINK_IsHalted() returns FALSE (0000ms, 39965ms total)
T0990 3347:319 JLINK_IsHalted() returns FALSE (0000ms, 39965ms total)
T0990 3347:420 JLINK_IsHalted() returns FALSE (0000ms, 39965ms total)
T0990 3347:521 JLINK_IsHalted() returns FALSE (0000ms, 39965ms total)
T0990 3347:622 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39965ms total)
T0C04 3347:622 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39965ms total)
T0C04 3347:622 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39966ms total)
T0C04 3347:623 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39967ms total)
T0990 3347:624 JLINK_IsHalted() returns FALSE (0000ms, 39967ms total)
T0990 3347:725 JLINK_IsHalted() returns FALSE (0000ms, 39967ms total)
T0990 3347:826 JLINK_IsHalted() returns FALSE (0000ms, 39967ms total)
T0990 3347:927 JLINK_IsHalted() returns FALSE (0000ms, 39967ms total)
T0990 3348:028 JLINK_IsHalted() returns FALSE (0000ms, 39967ms total)
T0990 3348:129 JLINK_IsHalted() returns FALSE (0000ms, 39967ms total)
T0990 3348:230 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39967ms total)
T0C04 3348:230 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39967ms total)
T0C04 3348:231 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39967ms total)
T0C04 3348:231 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39968ms total)
T0990 3348:232 JLINK_IsHalted() returns FALSE (0001ms, 39969ms total)
T0990 3348:334 JLINK_IsHalted() returns FALSE (0000ms, 39968ms total)
T0990 3348:435 JLINK_IsHalted() returns FALSE (0000ms, 39968ms total)
T0990 3348:537 JLINK_IsHalted() returns FALSE (0000ms, 39968ms total)
T0990 3348:638 JLINK_IsHalted() returns FALSE (0000ms, 39968ms total)
T0990 3348:739 JLINK_IsHalted() returns FALSE (0000ms, 39968ms total)
T0990 3348:840 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39968ms total)
T0C04 3348:840 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39969ms total)
T0C04 3348:841 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 05 returns 0x01 (0001ms, 39970ms total)
T0C04 3348:842 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39970ms total)
T0990 3348:842 JLINK_IsHalted() returns FALSE (0001ms, 39971ms total)
T0990 3348:944 JLINK_IsHalted() returns FALSE (0000ms, 39970ms total)
T0990 3349:045 JLINK_IsHalted() returns FALSE (0000ms, 39970ms total)
T0990 3349:146 JLINK_IsHalted() returns FALSE (0000ms, 39970ms total)
T0990 3349:247 JLINK_IsHalted() returns FALSE (0001ms, 39971ms total)
T0990 3349:348 JLINK_IsHalted() returns FALSE (0001ms, 39971ms total)
T0990 3349:450 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39970ms total)
T0C04 3349:450 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39970ms total)
T0C04 3349:451 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39970ms total)
T0C04 3349:451 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39971ms total)
T0990 3349:452 JLINK_IsHalted() returns FALSE (0001ms, 39972ms total)
T0990 3349:553 JLINK_IsHalted() returns FALSE (0000ms, 39971ms total)
T0990 3349:654 JLINK_IsHalted() returns FALSE (0000ms, 39971ms total)
T0990 3349:755 JLINK_IsHalted() returns FALSE (0000ms, 39971ms total)
T0990 3349:856 JLINK_IsHalted() returns FALSE (0000ms, 39971ms total)
T0990 3349:957 JLINK_IsHalted() returns FALSE (0000ms, 39971ms total)
T0990 3350:058 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39971ms total)
T0C04 3350:058 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39971ms total)
T0C04 3350:059 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39971ms total)
T0C04 3350:059 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39972ms total)
T0990 3350:060 JLINK_IsHalted() returns FALSE (0000ms, 39972ms total)
T0990 3350:162 JLINK_IsHalted() returns FALSE (0000ms, 39972ms total)
T0990 3350:262 JLINK_IsHalted() returns FALSE (0000ms, 39972ms total)
T0990 3350:363 JLINK_IsHalted() returns FALSE (0000ms, 39972ms total)
T0990 3350:464 JLINK_IsHalted() returns FALSE (0000ms, 39972ms total)
T0990 3350:565 JLINK_IsHalted() returns FALSE (0000ms, 39972ms total)
T0990 3350:666 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39972ms total)
T0C04 3350:666 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39972ms total)
T0C04 3350:667 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39972ms total)
T0C04 3350:667 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39973ms total)
T0990 3350:668 JLINK_IsHalted() returns FALSE (0000ms, 39973ms total)
T0990 3350:770 JLINK_IsHalted() returns FALSE (0000ms, 39973ms total)
T0990 3350:872 JLINK_IsHalted() returns FALSE (0000ms, 39973ms total)
T0990 3350:973 JLINK_IsHalted() returns FALSE (0000ms, 39973ms total)
T0990 3351:075 JLINK_IsHalted() returns FALSE (0000ms, 39973ms total)
T0990 3351:175 JLINK_IsHalted() returns FALSE (0000ms, 39973ms total)
T0990 3351:276 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39973ms total)
T0C04 3351:276 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39973ms total)
T0C04 3351:277 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0000ms, 39973ms total)
T0C04 3351:277 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39974ms total)
T0990 3351:278 JLINK_IsHalted() returns FALSE (0000ms, 39974ms total)
T0990 3351:379 JLINK_IsHalted() returns FALSE (0000ms, 39974ms total)
T0990 3351:480 JLINK_IsHalted() returns FALSE (0000ms, 39974ms total)
T0990 3351:580 JLINK_IsHalted() returns FALSE (0000ms, 39974ms total)
T0990 3351:681 JLINK_IsHalted() returns FALSE (0000ms, 39974ms total)
T0990 3351:782 JLINK_IsHalted() returns FALSE (0000ms, 39974ms total)
T0990 3351:883 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39974ms total)
T0C04 3351:883 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39974ms total)
T0C04 3351:884 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39974ms total)
T0C04 3351:884 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0002ms, 39976ms total)
T0990 3351:886 JLINK_IsHalted() returns FALSE (0000ms, 39976ms total)
T0990 3351:987 JLINK_IsHalted() returns FALSE (0000ms, 39976ms total)
T0990 3352:088 JLINK_IsHalted() returns FALSE (0000ms, 39976ms total)
T0990 3352:189 JLINK_IsHalted() returns FALSE (0000ms, 39976ms total)
T0990 3352:290 JLINK_IsHalted() returns FALSE (0000ms, 39976ms total)
T0990 3352:391 JLINK_IsHalted() returns FALSE (0000ms, 39976ms total)
T0990 3352:492 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39976ms total)
T0C04 3352:492 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39976ms total)
T0C04 3352:493 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39976ms total)
T0C04 3352:493 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39977ms total)
T0990 3352:494 JLINK_IsHalted() returns FALSE (0000ms, 39977ms total)
T0990 3352:595 JLINK_IsHalted() returns FALSE (0000ms, 39977ms total)
T0990 3352:696 JLINK_IsHalted() returns FALSE (0000ms, 39977ms total)
T0990 3352:797 JLINK_IsHalted() returns FALSE (0000ms, 39977ms total)
T0990 3352:898 JLINK_IsHalted() returns FALSE (0000ms, 39977ms total)
T0990 3352:999 JLINK_IsHalted() returns FALSE (0000ms, 39977ms total)
T0990 3353:100 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39977ms total)
T0C04 3353:100 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39977ms total)
T0C04 3353:101 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 06 returns 0x01 (0000ms, 39977ms total)
T0C04 3353:101 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39978ms total)
T0990 3353:102 JLINK_IsHalted() returns FALSE (0000ms, 39978ms total)
T0990 3353:204 JLINK_IsHalted() returns FALSE (0000ms, 39978ms total)
T0990 3353:305 JLINK_IsHalted() returns FALSE (0000ms, 39978ms total)
T0990 3353:406 JLINK_IsHalted() returns FALSE (0000ms, 39978ms total)
T0990 3353:506 JLINK_IsHalted() returns FALSE (0000ms, 39978ms total)
T0990 3353:607 JLINK_IsHalted() returns FALSE (0001ms, 39979ms total)
T0990 3353:708 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39978ms total)
T0C04 3353:708 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39979ms total)
T0C04 3353:709 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39980ms total)
T0C04 3353:710 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39980ms total)
T0990 3353:711 JLINK_IsHalted() returns FALSE (0000ms, 39980ms total)
T0990 3353:812 JLINK_IsHalted() returns FALSE (0000ms, 39980ms total)
T0990 3353:913 JLINK_IsHalted() returns FALSE (0000ms, 39980ms total)
T0990 3354:014 JLINK_IsHalted() returns FALSE (0000ms, 39980ms total)
T0990 3354:116 JLINK_IsHalted() returns FALSE (0000ms, 39980ms total)
T0990 3354:217 JLINK_IsHalted() returns FALSE (0000ms, 39980ms total)
T0990 3354:318 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39980ms total)
T0C04 3354:318 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39980ms total)
T0C04 3354:318 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39981ms total)
T0C04 3354:319 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39981ms total)
T0990 3354:320 JLINK_IsHalted() returns FALSE (0000ms, 39981ms total)
T0990 3354:421 JLINK_IsHalted() returns FALSE (0000ms, 39981ms total)
T0990 3354:522 JLINK_IsHalted() returns FALSE (0000ms, 39981ms total)
T0990 3354:623 JLINK_IsHalted() returns FALSE (0000ms, 39981ms total)
T0990 3354:724 JLINK_IsHalted() returns FALSE (0000ms, 39981ms total)
T0990 3354:825 JLINK_IsHalted() returns FALSE (0000ms, 39981ms total)
T0990 3354:926 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39981ms total)
T0C04 3354:926 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39981ms total)
T0C04 3354:927 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39981ms total)
T0C04 3354:927 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39982ms total)
T0990 3354:928 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total)
T0990 3355:029 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total)
T0990 3355:130 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total)
T0990 3355:231 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total)
T0990 3355:332 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total)
T0990 3355:433 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39982ms total)
T0C04 3355:433 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39982ms total)
T0C04 3355:434 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39982ms total)
T0C04 3355:434 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39982ms total)
T0990 3355:434 JLINK_IsHalted() returns FALSE (0001ms, 39983ms total)
T0990 3355:536 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total)
T0990 3355:637 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total)
T0990 3355:738 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total)
T0990 3355:839 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total)
T0990 3355:941 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total)
T0990 3356:042 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39982ms total)
T0C04 3356:042 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39982ms total)
T0C04 3356:042 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39983ms total)
T0C04 3356:043 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39984ms total)
T0990 3356:044 JLINK_IsHalted() returns FALSE (0000ms, 39984ms total)
T0990 3356:145 JLINK_IsHalted() returns FALSE (0000ms, 39984ms total)
T0990 3356:246 JLINK_IsHalted() returns FALSE (0000ms, 39984ms total)
T0990 3356:347 JLINK_IsHalted() returns FALSE (0000ms, 39984ms total)
T0990 3356:447 JLINK_IsHalted() returns FALSE (0000ms, 39984ms total)
T0990 3356:548 JLINK_IsHalted() returns FALSE (0000ms, 39984ms total)
T0990 3356:649 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39984ms total)
T0C04 3356:649 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39984ms total)
T0C04 3356:650 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39984ms total)
T0C04 3356:650 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39985ms total)
T0990 3356:651 JLINK_IsHalted() returns FALSE (0000ms, 39985ms total)
T0990 3356:752 JLINK_IsHalted() returns FALSE (0000ms, 39985ms total)
T0990 3356:852 JLINK_IsHalted() returns FALSE (0001ms, 39986ms total)
T0990 3356:953 JLINK_IsHalted() returns FALSE (0000ms, 39985ms total)
T0990 3357:054 JLINK_IsHalted() returns FALSE (0000ms, 39985ms total)
T0990 3357:155 JLINK_IsHalted() returns FALSE (0000ms, 39985ms total)
T0990 3357:256 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39985ms total)
T0C04 3357:256 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39986ms total)
T0C04 3357:257 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0001ms, 39987ms total)
T0C04 3357:258 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39987ms total)
T0990 3357:259 JLINK_IsHalted() returns FALSE (0000ms, 39987ms total)
T0990 3357:360 JLINK_IsHalted() returns FALSE (0000ms, 39987ms total)
T0990 3357:461 JLINK_IsHalted() returns FALSE (0000ms, 39987ms total)
T0990 3357:561 JLINK_IsHalted() returns FALSE (0000ms, 39987ms total)
T0990 3357:662 JLINK_IsHalted() returns FALSE (0000ms, 39987ms total)
T0990 3357:764 JLINK_IsHalted() returns FALSE (0000ms, 39987ms total)
T0990 3357:865 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39987ms total)
T0C04 3357:865 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39987ms total)
T0C04 3357:866 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39988ms total)
T0C04 3357:867 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39988ms total)
T0990 3357:867 JLINK_IsHalted() returns FALSE (0001ms, 39989ms total)
T0990 3357:968 JLINK_IsHalted() returns FALSE (0000ms, 39988ms total)
T0990 3358:069 JLINK_IsHalted() returns FALSE (0000ms, 39988ms total)
T0990 3358:170 JLINK_IsHalted() returns FALSE (0000ms, 39988ms total)
T0990 3358:271 JLINK_IsHalted() returns FALSE (0000ms, 39988ms total)
T0990 3358:372 JLINK_IsHalted() returns FALSE (0000ms, 39988ms total)
T0990 3358:474 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39988ms total)
T0C04 3358:474 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39988ms total)
T0C04 3358:474 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39989ms total)
T0C04 3358:475 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39990ms total)
T0990 3358:476 JLINK_IsHalted() returns FALSE (0000ms, 39990ms total)
T0990 3358:577 JLINK_IsHalted() returns FALSE (0000ms, 39990ms total)
T0990 3358:678 JLINK_IsHalted() returns FALSE (0000ms, 39990ms total)
T0990 3358:779 JLINK_IsHalted() returns FALSE (0000ms, 39990ms total)
T0990 3358:880 JLINK_IsHalted() returns FALSE (0000ms, 39990ms total)
T0990 3358:981 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39990ms total)
T0C04 3358:981 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39990ms total)
T0C04 3358:981 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 05 returns 0x01 (0001ms, 39991ms total)
T0C04 3358:982 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39992ms total)
T0990 3358:983 JLINK_IsHalted() returns FALSE (0000ms, 39992ms total)
T0990 3359:083 JLINK_IsHalted() returns FALSE (0000ms, 39992ms total)
T0990 3359:184 JLINK_IsHalted() returns FALSE (0000ms, 39992ms total)
T0990 3359:285 JLINK_IsHalted() returns FALSE (0000ms, 39992ms total)
T0990 3359:386 JLINK_IsHalted() returns FALSE (0000ms, 39992ms total)
T0990 3359:487 JLINK_IsHalted() returns FALSE (0000ms, 39992ms total)
T0990 3359:589 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39992ms total)
T0C04 3359:589 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39992ms total)
T0C04 3359:589 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39992ms total)
T0C04 3359:590 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39993ms total)
T0990 3359:590 JLINK_IsHalted() returns FALSE (0001ms, 39994ms total)
T0990 3359:692 JLINK_IsHalted() returns FALSE (0000ms, 39993ms total)
T0990 3359:793 JLINK_IsHalted() returns FALSE (0000ms, 39993ms total)
T0990 3359:894 JLINK_IsHalted() returns FALSE (0000ms, 39993ms total)
T0990 3359:994 JLINK_IsHalted() returns FALSE (0001ms, 39994ms total)
T0990 3360:095 JLINK_IsHalted() returns FALSE (0000ms, 39993ms total)
T0990 3360:196 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39993ms total)
T0C04 3360:196 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39993ms total)
T0C04 3360:197 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39993ms total)
T0C04 3360:197 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39994ms total)
T0990 3360:198 JLINK_IsHalted() returns FALSE (0000ms, 39994ms total)
T0990 3360:300 JLINK_IsHalted() returns FALSE (0000ms, 39994ms total)
T0990 3360:401 JLINK_IsHalted() returns FALSE (0000ms, 39994ms total)
T0990 3360:502 JLINK_IsHalted() returns FALSE (0000ms, 39994ms total)
T0990 3360:602 JLINK_IsHalted() returns FALSE (0000ms, 39994ms total)
T0990 3360:703 JLINK_IsHalted() returns FALSE (0000ms, 39994ms total)
T0990 3360:804 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39994ms total)
T0C04 3360:804 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39994ms total)
T0C04 3360:805 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 06 returns 0x01 (0000ms, 39994ms total)
T0C04 3360:805 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39995ms total)
T0990 3360:806 JLINK_IsHalted() returns FALSE (0000ms, 39995ms total)
T0990 3360:907 JLINK_IsHalted() returns FALSE (0000ms, 39995ms total)
T0990 3361:008 JLINK_IsHalted() returns FALSE (0000ms, 39995ms total)
T0990 3361:109 JLINK_IsHalted() returns FALSE (0000ms, 39995ms total)
T0990 3361:210 JLINK_IsHalted() returns FALSE (0000ms, 39995ms total)
T0990 3361:311 JLINK_IsHalted() returns FALSE (0000ms, 39995ms total)
T0990 3361:412 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39995ms total)
T0C04 3361:412 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39995ms total)
T0C04 3361:413 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39995ms total)
T0C04 3361:413 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39996ms total)
T0990 3361:414 JLINK_IsHalted() returns FALSE (0001ms, 39997ms total)
T0990 3361:515 JLINK_IsHalted() returns FALSE (0000ms, 39996ms total)
T0990 3361:616 JLINK_IsHalted() returns FALSE (0000ms, 39996ms total)
T0990 3361:717 JLINK_IsHalted() returns FALSE (0000ms, 39996ms total)
T0990 3361:818 JLINK_IsHalted() returns FALSE (0000ms, 39996ms total)
T0990 3361:919 JLINK_IsHalted() returns FALSE (0000ms, 39996ms total)
T0990 3362:020 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39996ms total)
T0C04 3362:020 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39996ms total)
T0C04 3362:021 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39996ms total)
T0C04 3362:021 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39997ms total)
T0990 3362:022 JLINK_IsHalted() returns FALSE (0000ms, 39997ms total)
T0990 3362:123 JLINK_IsHalted() returns FALSE (0000ms, 39997ms total)
T0990 3362:225 JLINK_IsHalted() returns FALSE (0000ms, 39997ms total)
T0990 3362:325 JLINK_IsHalted() returns FALSE (0000ms, 39997ms total)
T0990 3362:426 JLINK_IsHalted() returns FALSE (0000ms, 39997ms total)
T0990 3362:527 JLINK_Halt() returns 0x00 (0002ms, 39999ms total)
T0990 3362:529 JLINK_IsHalted() returns TRUE (0000ms, 39999ms total)
T0990 3362:529 JLINK_IsHalted() returns TRUE (0000ms, 39999ms total)
T0990 3362:529 JLINK_IsHalted() returns TRUE (0000ms, 39999ms total)
T0990 3362:529 JLINK_ReadReg(R15 (PC)) returns 0x0800B85A (0000ms, 39999ms total)
T0990 3362:529 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 39999ms total)
T0990 3362:529 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00 returns 1 (0001ms, 40000ms total)
T0990 3362:530 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0000ms, 40000ms total)
T0990 3362:530 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0001ms, 40001ms total)
T0990 3362:531 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0000ms, 40001ms total)
T0990 3362:531 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0001ms, 40002ms total)
T0C04 3363:116 JLINK_Close() -- CPU_ReadMem(4 bytes @ 0xE0001000) >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> (0011ms, 40013ms total)
T0C04 3363:116 (0011ms, 40013ms total)
T0C04 3363:116 Closed (0011ms, 40013ms total)