yincheng.zhong
2023-07-25 74c028b0a375f730e1c25ce09146566ed4bc8f5d
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
T73F4 000:057.906   SEGGER J-Link V6.70e Log File
T73F4 000:058.101   DLL Compiled: Apr 17 2020 17:55:05
T73F4 000:058.117   Logging started @ 2023-07-21 06:39
T73F4 000:058.135 JLINK_SetWarnOutHandler(...)
T73F4 000:058.151 - 0.023ms
T73F4 000:058.170 JLINK_OpenEx(...)
T73F4 000:059.639   Firmware: J-Link ARM-OB STM32 compiled Aug 22 2012 19:52:04
T73F4 000:062.576   Hardware: V7.00
T73F4 000:062.621   S/N: 20090928
T73F4 000:062.647   OEM: SEGGER
T73F4 000:062.673   Feature(s): RDI,FlashDL,FlashBP,JFlash,GDB
T73F4 000:064.179   TELNET listener socket opened on port 19021
T73F4 000:064.278   WEBSRV Starting webserver
T73F4 000:064.435   WEBSRV Webserver running on local port 19080
T73F4 000:064.459 - 6.296ms returns "O.K."
T73F4 000:064.506 JLINK_GetEmuCaps()
T73F4 000:064.521 - 0.021ms returns 0x88EA5833
T73F4 000:064.538 JLINK_TIF_GetAvailable(...)
T73F4 000:064.907 - 0.385ms
T73F4 000:064.936 JLINK_SetErrorOutHandler(...)
T73F4 000:064.951 - 0.022ms
T73F4 000:064.985 JLINK_ExecCommand("ProjectFile = "E:\GIT\XRange_Tag - ¸±±¾\MDK-ARM\JLinkSettings.ini"", ...). 
T73F4 000:072.665 - 7.708ms returns 0x00
T73F4 000:072.716 JLINK_ExecCommand("Device = STM32L051C8Tx", ...). 
T73F4 000:072.922   Device "STM32L051C8" selected.
T73F4 000:073.463 - 0.733ms returns 0x00
T73F4 000:073.485 JLINK_ExecCommand("DisableConnectionTimeout", ...). 
T73F4 000:073.505 - 0.014ms returns 0x01
T73F4 000:073.526 JLINK_GetHardwareVersion()
T73F4 000:073.546 - 0.029ms returns 0x11170
T73F4 000:073.563 JLINK_GetDLLVersion()  returns 67005
T73F4 000:073.583 JLINK_GetFirmwareString(...)
T73F4 000:073.600 - 0.025ms
T73F4 000:073.629 JLINK_GetDLLVersion()  returns 67005
T73F4 000:073.645 JLINK_GetCompileDateTime()
T73F4 000:073.659 - 0.021ms
T73F4 000:073.679 JLINK_GetFirmwareString(...)
T73F4 000:073.693 - 0.023ms
T73F4 000:073.715 JLINK_GetHardwareVersion()
T73F4 000:073.729 - 0.021ms returns 0x11170
T73F4 000:073.758 JLINK_TIF_Select(JLINKARM_TIF_SWD)
T73F4 000:075.113 - 1.374ms returns 0x00
T73F4 000:075.167 JLINK_SetSpeed(5000)
T73F4 000:075.628 - 0.475ms
T73F4 000:075.657 JLINK_GetId()
T73F4 000:077.550   Found SW-DP with ID 0x0BC11477
T73F4 000:114.040   Found SW-DP with ID 0x0BC11477
T73F4 000:119.543   Old FW that does not support reading DPIDR via DAP jobs
T73F4 000:127.121   Unknown DP version. Assuming DPv0
T73F4 000:127.174   Scanning AP map to find all available APs
T73F4 000:132.207   AP[1]: Stopped AP scan as end of AP map has been reached
T73F4 000:132.242   AP[0]: AHB-AP (IDR: 0x04770031)
T73F4 000:132.267   Iterating through AP map to find AHB-AP to use
T73F4 000:140.525   AP[0]: Core found
T73F4 000:140.595   AP[0]: AHB-AP ROM base: 0xF0000000
T73F4 000:145.051   CPUID register: 0x410CC601. Implementer code: 0x41 (ARM)
T73F4 000:145.108   Found Cortex-M0 r0p1, Little endian.
T73F4 000:247.078    -- Max. mem block: 0x00002C18
T73F4 000:247.244   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T73F4 000:248.874   CPU_WriteMem(4 bytes @ 0xE000EDF0)
T73F4 000:249.596   CPU_ReadMem(4 bytes @ 0xE0002000)
T73F4 000:250.316   FPUnit: 4 code (BP) slots and 0 literal slots
T73F4 000:250.346   CPU_ReadMem(4 bytes @ 0xE000EDFC)
T73F4 000:251.095   CPU_WriteMem(4 bytes @ 0xE000EDFC)
T73F4 000:251.935   CPU_ReadMem(4 bytes @ 0xE0001000)
T73F4 000:252.610   CPU_WriteMem(4 bytes @ 0xE0001000)
T73F4 000:253.360   CoreSight components:
T73F4 000:253.410   ROMTbl[0] @ F0000000
T73F4 000:253.434   CPU_ReadMem(64 bytes @ 0xF0000000)
T73F4 000:254.730   CPU_ReadMem(32 bytes @ 0xE00FFFE0)
T73F4 000:255.719   ROMTbl[0][0]: E00FF000, CID: B105100D, PID: 000BB4C0 ROM Table
T73F4 000:255.762   ROMTbl[1] @ E00FF000
T73F4 000:255.784   CPU_ReadMem(64 bytes @ 0xE00FF000)
T73F4 000:257.106   CPU_ReadMem(32 bytes @ 0xE000EFE0)
T73F4 000:258.221   ROMTbl[1][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS
T73F4 000:258.319   CPU_ReadMem(32 bytes @ 0xE0001FE0)
T73F4 000:259.488   ROMTbl[1][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT
T73F4 000:259.571   CPU_ReadMem(32 bytes @ 0xE0002FE0)
T73F4 000:260.575   ROMTbl[1][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB
T73F4 000:261.549 - 185.914ms   returns 0x0BC11477
T73F4 000:261.588 JLINK_GetDLLVersion()  returns 67005
T73F4 000:261.604 JLINK_CORE_GetFound()
T73F4 000:261.618 - 0.021ms returns 0x60000FF
T73F4 000:261.635 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX)
T73F4 000:261.654   Value=0xF0000000
T73F4 000:261.676 - 0.048ms returns 0x00
T73F4 000:261.702 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX)
T73F4 000:261.717   Value=0xF0000000
T73F4 000:261.737 - 0.043ms returns 0x00
T73F4 000:261.754 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX)
T73F4 000:261.768   Value=0x00000000
T73F4 000:261.789 - 0.041ms returns 0x00
T73F4 000:261.850   JLINK_ReadMemEx(0xE0041FF0, 0x0010 Bytes, ..., Flags = 0x02000004)
T73F4 000:261.908   CPU_ReadMem(16 bytes @ 0xE0041FF0)
T73F4 000:262.704   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
T73F4 000:262.742 - 0.904ms returns 0x10
T73F4 000:262.759 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX)
T73F4 000:262.774   Value=0x00000000
T73F4 000:262.795 - 0.042ms returns 0x00
T73F4 000:262.810 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX)
T73F4 000:262.824   Value=0x00000000
T73F4 000:262.845 - 0.041ms returns 0x00
T73F4 000:262.861   JLINK_ReadMemEx(0xE0040FF0, 0x0010 Bytes, ..., Flags = 0x02000004)
T73F4 000:262.886   CPU_ReadMem(16 bytes @ 0xE0040FF0)
T73F4 000:263.692   Data:  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
T73F4 000:263.733 - 0.879ms returns 0x10
T73F4 000:263.750 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX)
T73F4 000:263.765   Value=0xE0000000
T73F4 000:263.786 - 0.042ms returns 0x00
T73F4 000:263.801 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX)
T73F4 000:263.815   Value=0xE0001000
T73F4 000:263.836 - 0.041ms returns 0x00
T73F4 000:263.851 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX)
T73F4 000:263.865   Value=0xE0002000
T73F4 000:263.885 - 0.041ms returns 0x00
T73F4 000:263.900 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX)
T73F4 000:263.914   Value=0xE000E000
T73F4 000:263.935 - 0.041ms returns 0x00
T73F4 000:263.950 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX)
T73F4 000:263.964   Value=0xE000EDF0
T73F4 000:263.984 - 0.041ms returns 0x00
T73F4 000:263.999 JLINK_GetDebugInfo(0x01 = Unknown)
T73F4 000:264.022   Value=0x00000000
T73F4 000:264.042 - 0.050ms returns 0x00
T73F4 000:264.063 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...)
T73F4 000:264.082   CPU_ReadMem(4 bytes @ 0xE000ED00)
T73F4 000:264.768   Data:  01 C6 0C 41
T73F4 000:264.814    - CPUID
T73F4 000:264.836 - 0.779ms returns 1
T73F4 000:264.853 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX)
T73F4 000:264.868   Value=0x00000000
T73F4 000:264.889 - 0.043ms returns 0x00
T73F4 000:264.906 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)
T73F4 000:264.921 - 0.021ms returns JLINKARM_CM3_RESET_TYPE_NORMAL
T73F4 000:264.936 JLINK_Reset()
T73F4 000:264.965   CPU is running
T73F4 000:264.987   CPU_WriteMem(4 bytes @ 0xE000EDF0)
T73F4 000:265.709   CPU is running
T73F4 000:265.750   CPU_WriteMem(4 bytes @ 0xE000EDFC)
T73F4 000:266.483   Reset: Halt core after reset via DEMCR.VC_CORERESET.
T73F4 000:267.454   Reset: Reset device via AIRCR.SYSRESETREQ.
T73F4 000:267.515   CPU is running
T73F4 000:267.557   CPU_WriteMem(4 bytes @ 0xE000ED0C)
T73F4 000:322.222   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T73F4 000:322.905   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T73F4 000:323.630   CPU is running
T73F4 000:323.697   CPU_WriteMem(4 bytes @ 0xE000EDF0)
T73F4 000:324.497   CPU is running
T73F4 000:324.567   CPU_WriteMem(4 bytes @ 0xE000EDFC)
T73F4 000:331.089   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T73F4 000:335.661   CPU_WriteMem(4 bytes @ 0xE0002000)
T73F4 000:336.614   CPU_ReadMem(4 bytes @ 0xE000EDFC)
T73F4 000:337.373   CPU_ReadMem(4 bytes @ 0xE0001000)
T73F4 000:338.084   CPU_WriteMem(4 bytes @ 0xE0001000)
T73F4 000:338.880 - 74.003ms
T73F4 000:338.985 JLINK_ReadReg(R15 (PC))
T73F4 000:339.031 - 0.065ms returns 0x080000D4
T73F4 000:339.077 JLINK_ReadReg(XPSR)
T73F4 000:339.118 - 0.059ms returns 0xF1000000
T73F4 000:339.162 JLINK_Halt()
T73F4 000:339.208 - 0.066ms returns 0x00
T73F4 000:339.252 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...)
T73F4 000:339.298   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T73F4 000:340.082   Data:  03 00 03 01
T73F4 000:340.115    - DHCSR
T73F4 000:340.141 - 0.896ms returns 1
T73F4 000:340.160 JLINK_WriteU32(0xE000EDF0, 0xA05F0003)
T73F4 000:340.179    - DHCSR
T73F4 000:340.228   CPU_WriteMem(4 bytes @ 0xE000EDF0)
T73F4 000:340.921 - 0.781ms returns 0
T73F4 000:340.957 JLINK_WriteU32(0xE000EDFC, 0x01000000)
T73F4 000:340.972    - DEMCR
T73F4 000:340.998   CPU_WriteMem(4 bytes @ 0xE000EDFC)
T73F4 000:341.684 - 0.742ms returns 0
T73F4 000:341.756 JLINK_GetHWStatus(...)
T73F4 000:342.117 - 0.384ms returns 0x00
T73F4 000:342.177 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)
T73F4 000:342.193 - 0.023ms returns 0x04
T73F4 000:342.208 JLINK_GetNumBPUnits(Type = 0xF0)
T73F4 000:342.222 - 0.021ms returns 0x2000
T73F4 000:342.238 JLINK_GetNumWPUnits()
T73F4 000:342.251 - 0.020ms returns 0x02
T73F4 000:342.275 JLINK_GetSpeed()
T73F4 000:342.289 - 0.021ms returns 0xFA0
T73F4 000:342.309 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...)
T73F4 000:342.328   CPU_ReadMem(4 bytes @ 0xE000E004)
T73F4 000:343.088   Data:  00 00 00 00
T73F4 000:343.153 - 0.863ms returns 1
T73F4 000:343.195 JLINK_ReadReg(R15 (PC))
T73F4 000:343.239 - 0.057ms returns 0x080000D4
T73F4 000:343.268 JLINK_ReadReg(XPSR)
T73F4 000:343.295 - 0.046ms returns 0xF1000000
T73F4 000:428.149 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)
T73F4 000:428.189 - 0.050ms returns JLINKARM_CM3_RESET_TYPE_NORMAL
T73F4 000:428.207 JLINK_Reset()
T73F4 000:428.236   CPU_WriteMem(4 bytes @ 0xE000EDF0)
T73F4 000:428.941   CPU_WriteMem(4 bytes @ 0xE000EDFC)
T73F4 000:429.670   Reset: Halt core after reset via DEMCR.VC_CORERESET.
T73F4 000:430.584   Reset: Reset device via AIRCR.SYSRESETREQ.
T73F4 000:430.623   CPU_WriteMem(4 bytes @ 0xE000ED0C)
T73F4 000:484.513   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T73F4 000:485.320   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T73F4 000:486.003   CPU_WriteMem(4 bytes @ 0xE000EDF0)
T73F4 000:486.732   CPU_WriteMem(4 bytes @ 0xE000EDFC)
T73F4 000:493.299   CPU_ReadMem(4 bytes @ 0xE000EDF0)
T73F4 000:497.983   CPU_WriteMem(4 bytes @ 0xE0002000)
T73F4 000:498.865   CPU_ReadMem(4 bytes @ 0xE000EDFC)
T73F4 000:499.785   CPU_ReadMem(4 bytes @ 0xE0001000)
T73F4 000:500.686   CPU_WriteMem(4 bytes @ 0xE0001000)
T73F4 000:501.561 - 73.381ms
T73F4 000:501.656 JLINK_ReadReg(R15 (PC))
T73F4 000:501.680 - 0.035ms returns 0x080000D4
T73F4 000:501.706 JLINK_ReadReg(XPSR)
T73F4 000:501.725 - 0.027ms returns 0xF1000000
T73F4 000:501.820   JLINK_ReadMemEx(0x080000D4, 0x003C Bytes, ..., Flags = 0x02000000)
T73F4 000:501.854   CPU_ReadMem(128 bytes @ 0x080000C0)
T73F4 000:503.771    -- Updating C cache (128 bytes @ 0x080000C0)
T73F4 000:503.831    -- Read from C cache (60 bytes @ 0x080000D4)
T73F4 000:503.884   Data:  04 48 80 47 04 48 00 47 FE E7 FE E7 FE E7 FE E7 ...
T73F4 000:503.937 - 2.135ms returns 0x3C
T73F4 000:503.981   JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 000:504.036    -- Read from C cache (2 bytes @ 0x080000D4)
T73F4 000:504.089   Data:  04 48
T73F4 000:504.141 - 0.178ms returns 0x02
T73F4 000:504.281   JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 000:504.341    -- Read from C cache (2 bytes @ 0x080000D6)
T73F4 000:504.394   Data:  80 47
T73F4 000:504.458 - 0.201ms returns 0x02
T73F4 000:504.548   JLINK_ReadMemEx(0x080000D6, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 000:504.632    -- Read from C cache (2 bytes @ 0x080000D6)
T73F4 000:504.685   Data:  80 47
T73F4 000:504.748 - 0.225ms returns 0x02
T73F4 000:504.808   JLINK_ReadMemEx(0x080000D8, 0x003C Bytes, ..., Flags = 0x02000000)
T73F4 000:504.871    -- Read from C cache (60 bytes @ 0x080000D8)
T73F4 000:504.948   Data:  04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...
T73F4 000:505.002 - 0.211ms returns 0x3C
T73F4 000:505.027   JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 000:505.048    -- Read from C cache (2 bytes @ 0x080000D8)
T73F4 000:505.070   Data:  04 48
T73F4 000:505.100 - 0.080ms returns 0x02
T73F4 000:505.119   JLINK_ReadMemEx(0x080000D8, 0x003C Bytes, ..., Flags = 0x02000000)
T73F4 000:505.140    -- Read from C cache (60 bytes @ 0x080000D8)
T73F4 000:505.162   Data:  04 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...
T73F4 000:505.185 - 0.073ms returns 0x3C
T73F4 000:505.201   JLINK_ReadMemEx(0x080000D8, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 000:505.222    -- Read from C cache (2 bytes @ 0x080000D8)
T73F4 000:505.256   Data:  04 48
T73F4 000:505.288 - 0.094ms returns 0x02
T73F4 000:505.304   JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 000:505.326    -- Read from C cache (2 bytes @ 0x080000DA)
T73F4 000:505.353   Data:  00 47
T73F4 000:505.378 - 0.084ms returns 0x02
T73F4 002:158.387   JLINK_ReadMemEx(0x080000DA, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:158.435    -- Read from C cache (2 bytes @ 0x080000DA)
T73F4 002:158.459   Data:  00 47
T73F4 002:158.481 - 0.102ms returns 0x02
T73F4 002:158.501   JLINK_ReadMemEx(0x080000DC, 0x003C Bytes, ..., Flags = 0x02000000)
T73F4 002:158.527    -- Read from C cache (60 bytes @ 0x080000DC)
T73F4 002:158.549   Data:  FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 A9 25 00 08 ...
T73F4 002:158.574 - 0.080ms returns 0x3C
T73F4 002:158.589   JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:158.610    -- Read from C cache (2 bytes @ 0x080000DC)
T73F4 002:158.631   Data:  FE E7
T73F4 002:158.652 - 0.070ms returns 0x02
T73F4 002:158.671   JLINK_ReadMemEx(0x080000DC, 0x003C Bytes, ..., Flags = 0x02000000)
T73F4 002:158.693    -- Read from C cache (60 bytes @ 0x080000DC)
T73F4 002:158.714   Data:  FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 A9 25 00 08 ...
T73F4 002:158.735 - 0.070ms returns 0x3C
T73F4 002:158.750   JLINK_ReadMemEx(0x080000DC, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:158.772    -- Read from C cache (2 bytes @ 0x080000DC)
T73F4 002:158.792   Data:  FE E7
T73F4 002:158.813 - 0.070ms returns 0x02
T73F4 002:158.832   JLINK_ReadMemEx(0x080000DE, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:158.854    -- Read from C cache (2 bytes @ 0x080000DE)
T73F4 002:158.875   Data:  FE E7
T73F4 002:158.896 - 0.070ms returns 0x02
T73F4 002:298.351   JLINK_ReadMemEx(0x0800920C, 0x003C Bytes, ..., Flags = 0x02000000)
T73F4 002:298.393   CPU_ReadMem(128 bytes @ 0x08009200)
T73F4 002:300.346    -- Updating C cache (128 bytes @ 0x08009200)
T73F4 002:300.387    -- Read from C cache (60 bytes @ 0x0800920C)
T73F4 002:300.410   Data:  17 48 01 69 21 43 01 61 06 20 00 90 FF 20 01 30 ...
T73F4 002:300.430 - 2.088ms returns 0x3C
T73F4 002:300.449   JLINK_ReadMemEx(0x0800920C, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:300.474    -- Read from C cache (2 bytes @ 0x0800920C)
T73F4 002:300.501   Data:  17 48
T73F4 002:300.527 - 0.087ms returns 0x02
T73F4 002:300.546   JLINK_ReadMemEx(0x0800920E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:300.572    -- Read from C cache (2 bytes @ 0x0800920E)
T73F4 002:300.600   Data:  01 69
T73F4 002:300.623 - 0.084ms returns 0x02
T73F4 002:300.647   JLINK_ReadMemEx(0x0800920E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:300.669    -- Read from C cache (2 bytes @ 0x0800920E)
T73F4 002:300.689   Data:  01 69
T73F4 002:300.710 - 0.070ms returns 0x02
T73F4 002:300.725   JLINK_ReadMemEx(0x08009210, 0x003C Bytes, ..., Flags = 0x02000000)
T73F4 002:300.746    -- Read from C cache (60 bytes @ 0x08009210)
T73F4 002:300.768   Data:  21 43 01 61 06 20 00 90 FF 20 01 30 02 90 01 20 ...
T73F4 002:300.788 - 0.069ms returns 0x3C
T73F4 002:300.803   JLINK_ReadMemEx(0x08009210, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:300.824    -- Read from C cache (2 bytes @ 0x08009210)
T73F4 002:300.903   Data:  21 43
T73F4 002:300.923 - 0.127ms returns 0x02
T73F4 002:469.274 JLINK_ReadReg(R0)
T73F4 002:469.930 - 0.679ms returns 0xFFFFFFFF
T73F4 002:469.965 JLINK_ReadReg(R1)
T73F4 002:469.981 - 0.023ms returns 0xFFFFFFFF
T73F4 002:469.997 JLINK_ReadReg(R2)
T73F4 002:470.012 - 0.022ms returns 0xFFFFFFFF
T73F4 002:470.027 JLINK_ReadReg(R3)
T73F4 002:470.041 - 0.021ms returns 0xFFFFFFFF
T73F4 002:470.056 JLINK_ReadReg(R4)
T73F4 002:470.071 - 0.021ms returns 0xFFFFFFFF
T73F4 002:470.086 JLINK_ReadReg(R5)
T73F4 002:470.100 - 0.021ms returns 0xFFFFFFFF
T73F4 002:470.115 JLINK_ReadReg(R6)
T73F4 002:470.130 - 0.021ms returns 0xFFFFFFFF
T73F4 002:470.145 JLINK_ReadReg(R7)
T73F4 002:470.159 - 0.021ms returns 0xFFFFFFFF
T73F4 002:470.174 JLINK_ReadReg(R8)
T73F4 002:470.189 - 0.021ms returns 0xFFFFFFFF
T73F4 002:470.204 JLINK_ReadReg(R9)
T73F4 002:470.218 - 0.021ms returns 0xFFFFFFFF
T73F4 002:470.233 JLINK_ReadReg(R10)
T73F4 002:470.247 - 0.021ms returns 0xFFFFFFFF
T73F4 002:470.262 JLINK_ReadReg(R11)
T73F4 002:470.277 - 0.021ms returns 0xFFFFFFFF
T73F4 002:470.292 JLINK_ReadReg(R12)
T73F4 002:470.306 - 0.021ms returns 0xFFFFFFFF
T73F4 002:470.321 JLINK_ReadReg(R13 (SP))
T73F4 002:470.336 - 0.022ms returns 0x20001140
T73F4 002:470.351 JLINK_ReadReg(R14)
T73F4 002:470.365 - 0.021ms returns 0xFFFFFFFF
T73F4 002:470.380 JLINK_ReadReg(R15 (PC))
T73F4 002:470.395 - 0.021ms returns 0x080000D4
T73F4 002:470.410 JLINK_ReadReg(XPSR)
T73F4 002:470.424 - 0.021ms returns 0xF1000000
T73F4 002:470.439 JLINK_ReadReg(MSP)
T73F4 002:470.453 - 0.021ms returns 0x20001140
T73F4 002:470.468 JLINK_ReadReg(PSP)
T73F4 002:470.482 - 0.021ms returns 0xFFFFFFFC
T73F4 002:470.497 JLINK_ReadReg(CFBP)
T73F4 002:470.512 - 0.021ms returns 0x00000000
T73F4 002:470.532   JLINK_ReadMemEx(0x20000062, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 002:470.559   CPU_ReadMem(64 bytes @ 0x20000040)
T73F4 002:471.832    -- Updating C cache (64 bytes @ 0x20000040)
T73F4 002:471.879    -- Read from C cache (1 bytes @ 0x20000062)
T73F4 002:471.901   Data:  00
T73F4 002:471.929 - 1.405ms returns 0x01
T73F4 002:480.059   JLINK_ReadMemEx(0x20000062, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 002:480.099    -- Read from C cache (1 bytes @ 0x20000062)
T73F4 002:480.121   Data:  00
T73F4 002:480.143 - 0.091ms returns 0x01
T73F4 002:480.174   JLINK_ReadMemEx(0x20000062, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 002:480.197    -- Read from C cache (1 bytes @ 0x20000062)
T73F4 002:480.218   Data:  00
T73F4 002:480.239 - 0.072ms returns 0x01
T73F4 002:490.790   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:490.837    -- Read from C cache (2 bytes @ 0x2000007E)
T73F4 002:490.859   Data:  00 00
T73F4 002:490.880 - 0.097ms returns 0x02
T73F4 002:490.906   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:490.929    -- Read from C cache (2 bytes @ 0x2000007E)
T73F4 002:490.950   Data:  00 00
T73F4 002:490.971 - 0.072ms returns 0x02
T73F4 002:490.999   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:491.021    -- Read from C cache (2 bytes @ 0x2000007E)
T73F4 002:491.042   Data:  00 00
T73F4 002:491.063 - 0.071ms returns 0x02
T73F4 002:500.063   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 002:500.109   CPU_ReadMem(64 bytes @ 0x20000100)
T73F4 002:501.385    -- Updating C cache (64 bytes @ 0x20000100)
T73F4 002:501.427    -- Read from C cache (4 bytes @ 0x2000010C)
T73F4 002:501.449   Data:  00 00 00 00
T73F4 002:501.470 - 1.415ms returns 0x04
T73F4 002:501.500   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 002:501.525    -- Read from C cache (4 bytes @ 0x2000010C)
T73F4 002:501.547   Data:  00 00 00 00
T73F4 002:501.568 - 0.075ms returns 0x04
T73F4 002:501.618   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 002:501.641    -- Read from C cache (4 bytes @ 0x2000010C)
T73F4 002:501.662   Data:  00 00 00 00
T73F4 002:501.689 - 0.078ms returns 0x04
T73F4 002:506.557   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 002:562.002    -- Read from C cache (1 bytes @ 0x20000060)
T73F4 002:562.072   Data:  01
T73F4 002:562.128 - 55.590ms returns 0x01
T73F4 002:562.306   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 002:562.397    -- Read from C cache (1 bytes @ 0x20000060)
T73F4 002:562.450   Data:  01
T73F4 002:562.502 - 0.217ms returns 0x01
T73F4 002:562.581   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 002:562.638    -- Read from C cache (1 bytes @ 0x20000060)
T73F4 002:562.691   Data:  01
T73F4 002:562.742 - 0.179ms returns 0x01
T73F4 002:569.054   JLINK_ReadMemEx(0x20000016, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 002:569.094   CPU_ReadMem(64 bytes @ 0x20000000)
T73F4 002:570.375    -- Updating C cache (64 bytes @ 0x20000000)
T73F4 002:570.412    -- Read from C cache (1 bytes @ 0x20000016)
T73F4 002:570.433   Data:  00
T73F4 002:570.462 - 1.418ms returns 0x01
T73F4 002:570.497   JLINK_ReadMemEx(0x20000016, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 002:570.522    -- Read from C cache (1 bytes @ 0x20000016)
T73F4 002:570.544   Data:  00
T73F4 002:570.581 - 0.097ms returns 0x01
T73F4 002:570.627   JLINK_ReadMemEx(0x20000016, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 002:570.653    -- Read from C cache (1 bytes @ 0x20000016)
T73F4 002:570.679   Data:  00
T73F4 002:570.700 - 0.081ms returns 0x01
T73F4 002:590.812   JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 002:590.857    -- Read from C cache (4 bytes @ 0x20000104)
T73F4 002:590.879   Data:  00 00 00 00
T73F4 002:590.900 - 0.095ms returns 0x04
T73F4 002:590.926   JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 002:590.949    -- Read from C cache (4 bytes @ 0x20000104)
T73F4 002:590.970   Data:  00 00 00 00
T73F4 002:590.991 - 0.072ms returns 0x04
T73F4 002:591.018   JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 002:591.041    -- Read from C cache (4 bytes @ 0x20000104)
T73F4 002:591.062   Data:  00 00 00 00
T73F4 002:591.082 - 0.071ms returns 0x04
T73F4 002:612.129   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:612.184    -- Read from C cache (2 bytes @ 0x2000007E)
T73F4 002:612.210   Data:  00 00
T73F4 002:612.237 - 0.117ms returns 0x02
T73F4 002:612.267   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:612.295    -- Read from C cache (2 bytes @ 0x2000007E)
T73F4 002:612.322   Data:  00 00
T73F4 002:612.347 - 0.089ms returns 0x02
T73F4 002:612.394   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:612.422    -- Read from C cache (2 bytes @ 0x2000007E)
T73F4 002:612.447   Data:  00 00
T73F4 002:612.472 - 0.086ms returns 0x02
T73F4 002:627.574   JLINK_ReadMemEx(0x20000090, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 002:627.624   CPU_ReadMem(64 bytes @ 0x20000080)
T73F4 002:628.990    -- Updating C cache (64 bytes @ 0x20000080)
T73F4 002:629.027    -- Read from C cache (4 bytes @ 0x20000090)
T73F4 002:629.049   Data:  00 00 00 00
T73F4 002:629.070 - 1.503ms returns 0x04
T73F4 002:629.101   JLINK_ReadMemEx(0x20000090, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 002:629.125    -- Read from C cache (4 bytes @ 0x20000090)
T73F4 002:629.146   Data:  00 00 00 00
T73F4 002:629.167 - 0.073ms returns 0x04
T73F4 002:629.194   JLINK_ReadMemEx(0x20000090, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 002:629.217    -- Read from C cache (4 bytes @ 0x20000090)
T73F4 002:629.238   Data:  00 00 00 00
T73F4 002:629.258 - 0.071ms returns 0x04
T73F4 002:644.756   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 002:644.807    -- Read from C cache (1 bytes @ 0x20000060)
T73F4 002:644.837   Data:  01
T73F4 002:644.866 - 0.122ms returns 0x01
T73F4 002:644.911   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 002:644.947    -- Read from C cache (1 bytes @ 0x20000060)
T73F4 002:644.989   Data:  01
T73F4 002:645.014 - 0.114ms returns 0x01
T73F4 002:645.071   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 002:645.099    -- Read from C cache (1 bytes @ 0x20000060)
T73F4 002:645.129   Data:  01
T73F4 002:645.158 - 0.096ms returns 0x01
T73F4 002:672.657   JLINK_ReadMemEx(0x20000063, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 002:672.716    -- Read from C cache (1 bytes @ 0x20000063)
T73F4 002:672.743   Data:  00
T73F4 002:672.769 - 0.122ms returns 0x01
T73F4 002:672.801   JLINK_ReadMemEx(0x20000063, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 002:672.829    -- Read from C cache (1 bytes @ 0x20000063)
T73F4 002:672.855   Data:  00
T73F4 002:672.880 - 0.088ms returns 0x01
T73F4 002:672.914   JLINK_ReadMemEx(0x20000063, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 002:672.941    -- Read from C cache (1 bytes @ 0x20000063)
T73F4 002:672.965   Data:  00
T73F4 002:672.986 - 0.079ms returns 0x01
T73F4 002:682.923   JLINK_ReadMemEx(0x20000071, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 002:682.977    -- Read from C cache (1 bytes @ 0x20000071)
T73F4 002:683.005   Data:  00
T73F4 002:683.043 - 0.130ms returns 0x01
T73F4 002:683.075   JLINK_ReadMemEx(0x20000071, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 002:683.103    -- Read from C cache (1 bytes @ 0x20000071)
T73F4 002:683.129   Data:  00
T73F4 002:683.154 - 0.088ms returns 0x01
T73F4 002:683.190   JLINK_ReadMemEx(0x20000071, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 002:683.224    -- Read from C cache (1 bytes @ 0x20000071)
T73F4 002:683.250   Data:  00
T73F4 002:683.283 - 0.104ms returns 0x01
T73F4 002:694.782   JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 002:694.826    -- Read from C cache (4 bytes @ 0x20000100)
T73F4 002:694.848   Data:  00 00 00 00
T73F4 002:694.870 - 0.096ms returns 0x04
T73F4 002:694.897   JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 002:694.922    -- Read from C cache (4 bytes @ 0x20000100)
T73F4 002:694.945   Data:  00 00 00 00
T73F4 002:694.972 - 0.082ms returns 0x04
T73F4 002:695.014   JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 002:695.048    -- Read from C cache (4 bytes @ 0x20000100)
T73F4 002:695.074   Data:  00 00 00 00
T73F4 002:695.096 - 0.089ms returns 0x04
T73F4 002:705.250   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 002:705.308    -- Read from C cache (4 bytes @ 0x2000010C)
T73F4 002:705.336   Data:  00 00 00 00
T73F4 002:705.358 - 0.116ms returns 0x04
T73F4 002:705.384   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 002:705.407    -- Read from C cache (4 bytes @ 0x2000010C)
T73F4 002:705.428   Data:  00 00 00 00
T73F4 002:705.449 - 0.072ms returns 0x04
T73F4 002:705.477   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 002:705.500    -- Read from C cache (4 bytes @ 0x2000010C)
T73F4 002:705.521   Data:  00 00 00 00
T73F4 002:705.542 - 0.071ms returns 0x04
T73F4 002:716.906   JLINK_ReadMemEx(0x200000F4, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:716.960   CPU_ReadMem(64 bytes @ 0x200000C0)
T73F4 002:718.255    -- Updating C cache (64 bytes @ 0x200000C0)
T73F4 002:718.307    -- Read from C cache (2 bytes @ 0x200000F4)
T73F4 002:718.330   Data:  00 00
T73F4 002:718.357 - 1.459ms returns 0x02
T73F4 002:719.825   JLINK_ReadMemEx(0x200000F4, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:719.865    -- Read from C cache (2 bytes @ 0x200000F4)
T73F4 002:719.892   Data:  00 00
T73F4 002:719.918 - 0.102ms returns 0x02
T73F4 002:719.952   JLINK_ReadMemEx(0x200000F4, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:719.980    -- Read from C cache (2 bytes @ 0x200000F4)
T73F4 002:720.009   Data:  00 00
T73F4 002:720.037 - 0.094ms returns 0x02
T73F4 002:720.741   JLINK_ReadMemEx(0x200000F4, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:720.771    -- Read from C cache (2 bytes @ 0x200000F4)
T73F4 002:720.792   Data:  00 00
T73F4 002:720.833 - 0.105ms returns 0x02
T73F4 002:720.862   JLINK_ReadMemEx(0x200000F4, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:720.893    -- Read from C cache (2 bytes @ 0x200000F4)
T73F4 002:720.919   Data:  00 00
T73F4 002:720.939 - 0.084ms returns 0x02
T73F4 002:720.964   JLINK_ReadMemEx(0x200000F4, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 002:720.986    -- Read from C cache (2 bytes @ 0x200000F4)
T73F4 002:721.006   Data:  00 00
T73F4 002:721.027 - 0.070ms returns 0x02
T51D4 002:761.301   JLINK_ReadMemEx(0x080000D4, 0x0002 Bytes, ..., Flags = 0x02000000)
T51D4 002:761.358    -- Read from C cache (2 bytes @ 0x080000D4)
T51D4 002:761.380   Data:  04 48
T51D4 002:761.402 - 0.109ms returns 0x02
T51D4 002:761.422   JLINK_SetBPEx(Addr = 0x0800A8C0, Type = 0xFFFFFFF2)
T51D4 002:761.448 - 0.033ms returns 0x00000001
T51D4 002:761.466 JLINK_Go()
T51D4 002:761.511   CPU_WriteMem(4 bytes @ 0xE0002000)
T51D4 002:762.258   CPU_ReadMem(4 bytes @ 0xE0001000)
T51D4 002:762.989   CPU_WriteMem(4 bytes @ 0xE0001000)
T51D4 002:763.031   CPU_WriteMem(4 bytes @ 0xE0002008)
T51D4 002:763.055   CPU_WriteMem(4 bytes @ 0xE000200C)
T51D4 002:763.082   CPU_WriteMem(4 bytes @ 0xE0002010)
T51D4 002:763.108   CPU_WriteMem(4 bytes @ 0xE0002014)
T51D4 002:765.244   CPU_WriteMem(4 bytes @ 0xE0001004)
T51D4 002:766.817 - 5.377ms
T51D4 002:867.288 JLINK_IsHalted()
T51D4 002:868.000 - 0.730ms returns FALSE
T51D4 002:968.349 JLINK_IsHalted()
T51D4 002:969.037 - 0.711ms returns FALSE
T51D4 003:070.032 JLINK_IsHalted()
T51D4 003:070.733 - 0.722ms returns FALSE
T51D4 003:171.065 JLINK_IsHalted()
T51D4 003:171.763 - 0.716ms returns FALSE
T73F4 003:272.570   JLINK_ReadMemEx(0x20000062, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 003:272.622   CPU_ReadMem(1 bytes @ 0x20000062)
T73F4 003:273.332   Data:  00
T73F4 003:273.374 - 0.811ms returns 0x01
T73F4 003:273.415   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 003:273.441   CPU_ReadMem(2 bytes @ 0x2000007E)
T73F4 003:274.111   Data:  E8 01
T73F4 003:274.145 - 0.742ms returns 0x02
T73F4 003:288.690   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 003:288.731   CPU_ReadMem(4 bytes @ 0x2000010C)
T73F4 003:289.423   Data:  00 00 00 00
T73F4 003:289.464 - 0.782ms returns 0x04
T73F4 003:289.498   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 003:289.524   CPU_ReadMem(1 bytes @ 0x20000060)
T73F4 003:290.224   Data:  01
T73F4 003:290.262 - 0.772ms returns 0x01
T73F4 003:290.291   JLINK_ReadMemEx(0x20000016, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 003:290.317   CPU_ReadMem(1 bytes @ 0x20000016)
T73F4 003:290.987   Data:  00
T73F4 003:291.027 - 0.743ms returns 0x01
T73F4 003:313.667   JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 003:313.721   CPU_ReadMem(4 bytes @ 0x20000104)
T73F4 003:314.422   Data:  00 00 00 00
T73F4 003:314.462 - 0.804ms returns 0x04
T73F4 003:314.506   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 003:314.533   CPU_ReadMem(2 bytes @ 0x2000007E)
T73F4 003:315.227   Data:  00 00
T73F4 003:315.266 - 0.767ms returns 0x02
T73F4 003:323.039   JLINK_ReadMemEx(0x20000090, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 003:323.081   CPU_ReadMem(4 bytes @ 0x20000090)
T73F4 003:323.754   Data:  00 00 00 00
T73F4 003:323.791 - 0.759ms returns 0x04
T73F4 003:338.411   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 003:338.454   CPU_ReadMem(1 bytes @ 0x20000060)
T73F4 003:339.117   Data:  01
T73F4 003:339.155 - 0.752ms returns 0x01
T73F4 003:346.337   JLINK_ReadMemEx(0x20000063, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 003:346.372   CPU_ReadMem(1 bytes @ 0x20000063)
T73F4 003:347.058   Data:  00
T73F4 003:347.081 - 0.752ms returns 0x01
T73F4 003:347.159   JLINK_ReadMemEx(0x20000071, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 003:347.241   CPU_ReadMem(1 bytes @ 0x20000071)
T73F4 003:347.914   Data:  00
T73F4 003:347.948 - 0.798ms returns 0x01
T73F4 003:348.070   JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 003:348.117   CPU_ReadMem(4 bytes @ 0x20000100)
T73F4 003:348.739   Data:  00 00 00 00
T73F4 003:348.766 - 0.704ms returns 0x04
T73F4 003:348.795   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 003:348.820   CPU_ReadMem(4 bytes @ 0x2000010C)
T73F4 003:349.507   Data:  00 00 00 00
T73F4 003:349.550 - 0.761ms returns 0x04
T51D4 003:349.707 JLINK_IsHalted()
T51D4 003:353.234 - 3.547ms returns TRUE
T51D4 003:353.269 JLINK_Halt()
T51D4 003:353.287 - 0.026ms returns 0x00
T51D4 003:353.306 JLINK_IsHalted()
T51D4 003:353.323 - 0.025ms returns TRUE
T51D4 003:353.342 JLINK_IsHalted()
T51D4 003:353.359 - 0.026ms returns TRUE
T51D4 003:353.378 JLINK_IsHalted()
T51D4 003:353.395 - 0.025ms returns TRUE
T51D4 003:353.415 JLINK_ReadReg(R15 (PC))
T51D4 003:353.435 - 0.028ms returns 0x0800A8C0
T51D4 003:353.454 JLINK_ReadReg(XPSR)
T51D4 003:353.472 - 0.026ms returns 0x61000000
T51D4 003:353.496 JLINK_ClrBPEx(BPHandle = 0x00000001)
T51D4 003:353.514 - 0.026ms returns 0x00
T51D4 003:353.535 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...)
T51D4 003:353.557   CPU_ReadMem(4 bytes @ 0xE000ED30)
T51D4 003:354.229   Data:  03 00 00 00
T51D4 003:354.270 - 0.744ms returns 1
T51D4 003:354.292 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...)
T51D4 003:354.316   CPU_ReadMem(4 bytes @ 0xE0001028)
T51D4 003:354.996   Data:  00 00 00 00
T51D4 003:355.050    - DWT_FUNC[0]
T51D4 003:355.074 - 0.791ms returns 1
T51D4 003:355.105 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...)
T51D4 003:355.126   CPU_ReadMem(4 bytes @ 0xE0001038)
T51D4 003:355.795   Data:  00 00 00 00
T51D4 003:355.834    - DWT_FUNC[1]
T51D4 003:355.855 - 0.757ms returns 1
T51D4 003:355.890 JLINK_ReadReg(R0)
T51D4 003:355.908 - 0.025ms returns 0x0800A8C1
T51D4 003:355.924 JLINK_ReadReg(R1)
T51D4 003:355.939 - 0.022ms returns 0x20001AB8
T51D4 003:355.955 JLINK_ReadReg(R2)
T51D4 003:355.969 - 0.021ms returns 0x00000000
T51D4 003:355.984 JLINK_ReadReg(R3)
T51D4 003:355.999 - 0.021ms returns 0x08009CC5
T51D4 003:356.020 JLINK_ReadReg(R4)
T51D4 003:356.035 - 0.022ms returns 0x0800AE58
T51D4 003:356.050 JLINK_ReadReg(R5)
T51D4 003:356.066 - 0.027ms returns 0x00000001
T51D4 003:356.090 JLINK_ReadReg(R6)
T51D4 003:356.104 - 0.021ms returns 0x0800AE58
T51D4 003:356.119 JLINK_ReadReg(R7)
T51D4 003:356.134 - 0.021ms returns 0xFFFFFFFF
T51D4 003:356.149 JLINK_ReadReg(R8)
T51D4 003:356.163 - 0.021ms returns 0xFFFFFFFF
T51D4 003:356.178 JLINK_ReadReg(R9)
T51D4 003:356.193 - 0.021ms returns 0xFFFFFFFF
T51D4 003:356.208 JLINK_ReadReg(R10)
T51D4 003:356.223 - 0.021ms returns 0xFFFFFFFF
T51D4 003:356.238 JLINK_ReadReg(R11)
T51D4 003:356.252 - 0.021ms returns 0xFFFFFFFF
T51D4 003:356.267 JLINK_ReadReg(R12)
T51D4 003:356.284 - 0.026ms returns 0xFFFFFFFF
T51D4 003:356.304 JLINK_ReadReg(R13 (SP))
T51D4 003:356.318 - 0.021ms returns 0x20001AB8
T51D4 003:356.333 JLINK_ReadReg(R14)
T51D4 003:356.348 - 0.021ms returns 0x080059A5
T51D4 003:356.363 JLINK_ReadReg(R15 (PC))
T51D4 003:356.377 - 0.021ms returns 0x0800A8C0
T51D4 003:356.392 JLINK_ReadReg(XPSR)
T51D4 003:356.407 - 0.021ms returns 0x61000000
T51D4 003:356.422 JLINK_ReadReg(MSP)
T51D4 003:356.436 - 0.021ms returns 0x20001AB8
T51D4 003:356.451 JLINK_ReadReg(PSP)
T51D4 003:356.466 - 0.021ms returns 0xFFFFFFFC
T51D4 003:356.481 JLINK_ReadReg(CFBP)
T51D4 003:356.495 - 0.021ms returns 0x00000000
T73F4 003:357.583   JLINK_ReadMemEx(0x20000062, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 003:357.619   CPU_ReadMem(64 bytes @ 0x20000040)
T73F4 003:358.888    -- Updating C cache (64 bytes @ 0x20000040)
T73F4 003:358.915    -- Read from C cache (1 bytes @ 0x20000062)
T73F4 003:358.941   Data:  00
T73F4 003:358.962 - 1.386ms returns 0x01
T73F4 003:358.994   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 003:359.017    -- Read from C cache (2 bytes @ 0x2000007E)
T73F4 003:359.039   Data:  00 00
T73F4 003:359.060 - 0.073ms returns 0x02
T73F4 003:382.309   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 003:382.363   CPU_ReadMem(64 bytes @ 0x20000100)
T73F4 003:383.742    -- Updating C cache (64 bytes @ 0x20000100)
T73F4 003:383.788    -- Read from C cache (4 bytes @ 0x2000010C)
T73F4 003:383.818   Data:  00 00 00 00
T73F4 003:383.845 - 1.547ms returns 0x04
T73F4 003:383.894   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 003:383.924    -- Read from C cache (1 bytes @ 0x20000060)
T73F4 003:383.949   Data:  01
T73F4 003:383.975 - 0.090ms returns 0x01
T73F4 003:384.001   JLINK_ReadMemEx(0x20000016, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 003:384.029   CPU_ReadMem(64 bytes @ 0x20000000)
T73F4 003:385.294    -- Updating C cache (64 bytes @ 0x20000000)
T73F4 003:385.329    -- Read from C cache (1 bytes @ 0x20000016)
T73F4 003:385.355   Data:  00
T73F4 003:385.380 - 1.387ms returns 0x01
T73F4 003:399.739   JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 003:399.775    -- Read from C cache (4 bytes @ 0x20000104)
T73F4 003:399.797   Data:  00 00 00 00
T73F4 003:399.819 - 0.088ms returns 0x04
T73F4 003:399.852   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 003:399.875    -- Read from C cache (2 bytes @ 0x2000007E)
T73F4 003:399.896   Data:  00 00
T73F4 003:399.917 - 0.072ms returns 0x02
T73F4 003:407.133   JLINK_ReadMemEx(0x20000090, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 003:407.172   CPU_ReadMem(64 bytes @ 0x20000080)
T73F4 003:408.459    -- Updating C cache (64 bytes @ 0x20000080)
T73F4 003:408.490    -- Read from C cache (4 bytes @ 0x20000090)
T73F4 003:408.511   Data:  00 00 00 00
T73F4 003:408.532 - 1.406ms returns 0x04
T73F4 003:416.064   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 003:416.096    -- Read from C cache (1 bytes @ 0x20000060)
T73F4 003:416.118   Data:  01
T73F4 003:416.146 - 0.093ms returns 0x01
T73F4 003:423.365   JLINK_ReadMemEx(0x20000063, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 003:423.400    -- Read from C cache (1 bytes @ 0x20000063)
T73F4 003:423.421   Data:  00
T73F4 003:423.443 - 0.086ms returns 0x01
T73F4 003:423.465   JLINK_ReadMemEx(0x20000071, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 003:423.488    -- Read from C cache (1 bytes @ 0x20000071)
T73F4 003:423.509   Data:  00
T73F4 003:423.529 - 0.071ms returns 0x01
T73F4 003:423.547   JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 003:423.569    -- Read from C cache (4 bytes @ 0x20000100)
T73F4 003:423.590   Data:  00 00 00 00
T73F4 003:423.611 - 0.070ms returns 0x04
T73F4 003:423.634   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 003:423.656    -- Read from C cache (4 bytes @ 0x2000010C)
T73F4 003:423.676   Data:  00 00 00 00
T73F4 003:423.697 - 0.072ms returns 0x04
T51D4 007:121.056   JLINK_ReadMemEx(0x0800A8C0, 0x0002 Bytes, ..., Flags = 0x02000000)
T51D4 007:121.119   CPU_ReadMem(64 bytes @ 0x0800A8C0)
T51D4 007:122.429    -- Updating C cache (64 bytes @ 0x0800A8C0)
T51D4 007:122.474    -- Read from C cache (2 bytes @ 0x0800A8C0)
T51D4 007:122.500   Data:  FC F7
T51D4 007:122.521 - 1.473ms returns 0x02
T51D4 007:122.554   JLINK_SetBPEx(Addr = 0x0800A8C8, Type = 0xFFFFFFF2)
T51D4 007:122.580 - 0.034ms returns 0x00000002
T51D4 007:122.598 JLINK_Go()
T51D4 007:123.256   CPU_WriteMem(4 bytes @ 0xE0002000)
T51D4 007:123.969   CPU_ReadMem(4 bytes @ 0xE0001000)
T51D4 007:124.649   CPU_WriteMem(4 bytes @ 0xE0001000)
T51D4 007:124.690   CPU_WriteMem(4 bytes @ 0xE0002008)
T51D4 007:126.549 - 3.978ms
T51D4 007:227.238 JLINK_IsHalted()
T51D4 007:228.027 - 0.847ms returns FALSE
T51D4 007:328.374 JLINK_IsHalted()
T51D4 007:329.269 - 0.941ms returns FALSE
T51D4 007:429.477 JLINK_IsHalted()
T51D4 007:430.209 - 0.753ms returns FALSE
T51D4 007:530.722 JLINK_IsHalted()
T51D4 007:531.639 - 0.985ms returns FALSE
T73F4 007:632.707   JLINK_ReadMemEx(0x20000062, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 007:632.753   CPU_ReadMem(1 bytes @ 0x20000062)
T73F4 007:633.519   Data:  00
T73F4 007:633.559 - 0.860ms returns 0x01
T73F4 007:633.599   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 007:633.627   CPU_ReadMem(2 bytes @ 0x2000007E)
T73F4 007:634.282   Data:  00 00
T73F4 007:634.321 - 0.729ms returns 0x02
T73F4 007:648.964   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 007:648.999   CPU_ReadMem(4 bytes @ 0x2000010C)
T73F4 007:649.665   Data:  00 00 00 00
T73F4 007:649.717 - 0.764ms returns 0x04
T73F4 007:649.752   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 007:649.778   CPU_ReadMem(1 bytes @ 0x20000060)
T73F4 007:650.513   Data:  01
T73F4 007:650.556 - 0.812ms returns 0x01
T73F4 007:650.585   JLINK_ReadMemEx(0x20000016, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 007:650.611   CPU_ReadMem(1 bytes @ 0x20000016)
T73F4 007:651.270   Data:  00
T73F4 007:651.311 - 0.734ms returns 0x01
T73F4 007:665.505   JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 007:665.540   CPU_ReadMem(4 bytes @ 0x20000104)
T73F4 007:666.294   Data:  00 00 00 00
T73F4 007:666.330 - 0.832ms returns 0x04
T73F4 007:666.368   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 007:666.395   CPU_ReadMem(2 bytes @ 0x2000007E)
T73F4 007:667.112   Data:  00 00
T73F4 007:667.145 - 0.788ms returns 0x02
T73F4 007:674.394   JLINK_ReadMemEx(0x20000090, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 007:674.435   CPU_ReadMem(4 bytes @ 0x20000090)
T73F4 007:675.113   Data:  00 00 00 00
T73F4 007:675.152 - 0.766ms returns 0x04
T73F4 007:682.872   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 007:682.921   CPU_ReadMem(1 bytes @ 0x20000060)
T73F4 007:683.533   Data:  01
T73F4 007:683.563 - 0.699ms returns 0x01
T73F4 007:690.954   JLINK_ReadMemEx(0x20000063, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 007:690.990   CPU_ReadMem(1 bytes @ 0x20000063)
T73F4 007:691.623   Data:  00
T73F4 007:691.662 - 0.721ms returns 0x01
T73F4 007:691.711   JLINK_ReadMemEx(0x20000071, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 007:691.737   CPU_ReadMem(1 bytes @ 0x20000071)
T73F4 007:692.359   Data:  00
T73F4 007:692.391 - 0.688ms returns 0x01
T73F4 007:692.419   JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 007:692.445   CPU_ReadMem(4 bytes @ 0x20000100)
T73F4 007:693.069   Data:  00 00 00 00
T73F4 007:693.101 - 0.690ms returns 0x04
T73F4 007:693.132   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 007:693.158   CPU_ReadMem(4 bytes @ 0x2000010C)
T73F4 007:693.782   Data:  00 00 00 00
T73F4 007:693.816 - 0.692ms returns 0x04
T51D4 007:693.892 JLINK_IsHalted()
T51D4 007:694.522 - 0.649ms returns FALSE
T51D4 007:795.345 JLINK_IsHalted()
T51D4 007:796.274 - 0.966ms returns FALSE
T51D4 007:896.597 JLINK_IsHalted()
T51D4 007:897.499 - 0.923ms returns FALSE
T51D4 007:998.732 JLINK_IsHalted()
T51D4 008:015.081 - 16.408ms returns FALSE
T51D4 008:116.202 JLINK_IsHalted()
T51D4 008:116.860 - 0.681ms returns FALSE
T73F4 008:217.391   JLINK_ReadMemEx(0x20000062, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 008:217.446   CPU_ReadMem(1 bytes @ 0x20000062)
T73F4 008:218.124   Data:  00
T73F4 008:218.169 - 0.789ms returns 0x01
T73F4 008:218.219   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 008:218.252   CPU_ReadMem(2 bytes @ 0x2000007E)
T73F4 008:218.883   Data:  00 00
T73F4 008:218.930 - 0.719ms returns 0x02
T73F4 008:226.555   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 008:226.612   CPU_ReadMem(4 bytes @ 0x2000010C)
T73F4 008:227.302   Data:  00 00 00 00
T73F4 008:227.347 - 0.804ms returns 0x04
T73F4 008:227.389   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 008:227.415   CPU_ReadMem(1 bytes @ 0x20000060)
T73F4 008:228.107   Data:  01
T73F4 008:228.147 - 0.765ms returns 0x01
T73F4 008:228.175   JLINK_ReadMemEx(0x20000016, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 008:228.207   CPU_ReadMem(1 bytes @ 0x20000016)
T73F4 008:228.863   Data:  00
T73F4 008:228.903 - 0.735ms returns 0x01
T73F4 008:243.646   JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 008:243.686   CPU_ReadMem(4 bytes @ 0x20000104)
T73F4 008:244.382   Data:  00 00 00 00
T73F4 008:244.426 - 0.787ms returns 0x04
T73F4 008:244.467   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 008:244.494   CPU_ReadMem(2 bytes @ 0x2000007E)
T73F4 008:245.150   Data:  00 00
T73F4 008:245.190 - 0.730ms returns 0x02
T73F4 008:252.425   JLINK_ReadMemEx(0x20000090, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 008:252.462   CPU_ReadMem(4 bytes @ 0x20000090)
T73F4 008:253.214   Data:  00 00 00 00
T73F4 008:253.252 - 0.834ms returns 0x04
T73F4 008:260.949   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 008:260.985   CPU_ReadMem(1 bytes @ 0x20000060)
T73F4 008:261.683   Data:  01
T73F4 008:261.731 - 0.791ms returns 0x01
T73F4 008:270.787   JLINK_ReadMemEx(0x20000063, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 008:270.839   CPU_ReadMem(1 bytes @ 0x20000063)
T73F4 008:271.510   Data:  00
T73F4 008:271.548 - 0.771ms returns 0x01
T73F4 008:271.584   JLINK_ReadMemEx(0x20000071, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 008:271.616   CPU_ReadMem(1 bytes @ 0x20000071)
T73F4 008:272.280   Data:  00
T73F4 008:272.310 - 0.734ms returns 0x01
T73F4 008:272.360   JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 008:272.396   CPU_ReadMem(4 bytes @ 0x20000100)
T73F4 008:273.073   Data:  00 00 00 00
T73F4 008:273.112 - 0.760ms returns 0x04
T73F4 008:273.142   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 008:273.168   CPU_ReadMem(4 bytes @ 0x2000010C)
T73F4 008:273.813   Data:  00 00 00 00
T73F4 008:273.848 - 0.713ms returns 0x04
T51D4 008:273.910 JLINK_IsHalted()
T51D4 008:274.571 - 0.677ms returns FALSE
T51D4 008:375.812 JLINK_IsHalted()
T51D4 008:376.692 - 0.935ms returns FALSE
T51D4 008:477.603 JLINK_IsHalted()
T51D4 008:478.556 - 1.014ms returns FALSE
T51D4 008:578.726 JLINK_IsHalted()
T51D4 008:579.701 - 1.035ms returns FALSE
T51D4 008:680.300 JLINK_IsHalted()
T51D4 008:681.137 - 0.886ms returns FALSE
T73F4 008:781.423   JLINK_ReadMemEx(0x20000062, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 008:781.481   CPU_ReadMem(1 bytes @ 0x20000062)
T73F4 008:782.218   Data:  00
T73F4 008:782.263 - 0.850ms returns 0x01
T73F4 008:782.313   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 008:782.353   CPU_ReadMem(2 bytes @ 0x2000007E)
T73F4 008:783.103   Data:  00 00
T73F4 008:783.191 - 0.898ms returns 0x02
T73F4 008:790.801   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 008:790.835   CPU_ReadMem(4 bytes @ 0x2000010C)
T73F4 008:791.523   Data:  00 00 00 00
T73F4 008:791.563 - 0.770ms returns 0x04
T73F4 008:791.594   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 008:791.621   CPU_ReadMem(1 bytes @ 0x20000060)
T73F4 008:792.277   Data:  01
T73F4 008:792.308 - 0.722ms returns 0x01
T73F4 008:792.340   JLINK_ReadMemEx(0x20000016, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 008:792.386   CPU_ReadMem(1 bytes @ 0x20000016)
T73F4 008:793.090   Data:  00
T73F4 008:793.125 - 0.793ms returns 0x01
T73F4 008:809.057   JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 008:809.097   CPU_ReadMem(4 bytes @ 0x20000104)
T73F4 008:809.891   Data:  00 00 00 00
T73F4 008:809.928 - 0.879ms returns 0x04
T73F4 008:809.967   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 008:809.993   CPU_ReadMem(2 bytes @ 0x2000007E)
T73F4 008:810.673   Data:  00 00
T73F4 008:810.709 - 0.749ms returns 0x02
T73F4 008:818.487   JLINK_ReadMemEx(0x20000090, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 008:818.536   CPU_ReadMem(4 bytes @ 0x20000090)
T73F4 008:819.204   Data:  00 00 00 00
T73F4 008:819.244 - 0.766ms returns 0x04
T73F4 008:826.627   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 008:826.670   CPU_ReadMem(1 bytes @ 0x20000060)
T73F4 008:827.354   Data:  01
T73F4 008:827.394 - 0.780ms returns 0x01
T73F4 008:835.860   JLINK_ReadMemEx(0x20000063, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 008:835.904   CPU_ReadMem(1 bytes @ 0x20000063)
T73F4 008:836.571   Data:  00
T73F4 008:836.604 - 0.752ms returns 0x01
T73F4 008:836.634   JLINK_ReadMemEx(0x20000071, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 008:836.660   CPU_ReadMem(1 bytes @ 0x20000071)
T73F4 008:837.324   Data:  00
T73F4 008:837.356 - 0.733ms returns 0x01
T73F4 008:837.388   JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 008:837.431   CPU_ReadMem(4 bytes @ 0x20000100)
T73F4 008:838.079   Data:  00 00 00 00
T73F4 008:838.111 - 0.730ms returns 0x04
T73F4 008:838.142   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 008:838.168   CPU_ReadMem(4 bytes @ 0x2000010C)
T73F4 008:838.837   Data:  00 00 00 00
T73F4 008:838.871 - 0.737ms returns 0x04
T51D4 008:838.945 JLINK_IsHalted()
T51D4 008:839.577 - 0.654ms returns FALSE
T51D4 008:940.360 JLINK_IsHalted()
T51D4 008:941.048 - 0.714ms returns FALSE
T51D4 009:042.037 JLINK_IsHalted()
T51D4 009:042.976 - 0.976ms returns FALSE
T51D4 009:143.305 JLINK_IsHalted()
T51D4 009:144.109 - 0.832ms returns FALSE
T51D4 009:244.666 JLINK_IsHalted()
T51D4 009:245.587 - 0.982ms returns FALSE
T73F4 009:346.336   JLINK_ReadMemEx(0x20000062, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 009:346.447   CPU_ReadMem(1 bytes @ 0x20000062)
T73F4 009:347.348   Data:  00
T73F4 009:347.461 - 1.145ms returns 0x01
T73F4 009:347.556   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 009:347.622   CPU_ReadMem(2 bytes @ 0x2000007E)
T73F4 009:348.414   Data:  00 00
T73F4 009:348.456 - 0.909ms returns 0x02
T73F4 009:355.750   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 009:355.785   CPU_ReadMem(4 bytes @ 0x2000010C)
T73F4 009:356.511   Data:  00 00 00 00
T73F4 009:356.550 - 0.808ms returns 0x04
T73F4 009:356.582   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 009:356.608   CPU_ReadMem(1 bytes @ 0x20000060)
T73F4 009:357.265   Data:  01
T73F4 009:357.301 - 0.727ms returns 0x01
T73F4 009:357.332   JLINK_ReadMemEx(0x20000016, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 009:357.358   CPU_ReadMem(1 bytes @ 0x20000016)
T73F4 009:358.024   Data:  00
T73F4 009:358.064 - 0.740ms returns 0x01
T73F4 009:373.265   JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 009:373.308   CPU_ReadMem(4 bytes @ 0x20000104)
T73F4 009:374.033   Data:  00 00 00 00
T73F4 009:374.067 - 0.810ms returns 0x04
T73F4 009:374.113   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 009:374.140   CPU_ReadMem(2 bytes @ 0x2000007E)
T73F4 009:374.840   Data:  00 00
T73F4 009:374.877 - 0.770ms returns 0x02
T73F4 009:381.987   JLINK_ReadMemEx(0x20000090, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 009:382.021   CPU_ReadMem(4 bytes @ 0x20000090)
T73F4 009:382.664   Data:  00 00 00 00
T73F4 009:382.698 - 0.719ms returns 0x04
T73F4 009:389.804   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 009:389.840   CPU_ReadMem(1 bytes @ 0x20000060)
T73F4 009:390.520   Data:  01
T73F4 009:390.556 - 0.760ms returns 0x01
T73F4 009:397.906   JLINK_ReadMemEx(0x20000063, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 009:397.941   CPU_ReadMem(1 bytes @ 0x20000063)
T73F4 009:398.623   Data:  00
T73F4 009:398.660 - 0.762ms returns 0x01
T73F4 009:398.688   JLINK_ReadMemEx(0x20000071, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 009:398.713   CPU_ReadMem(1 bytes @ 0x20000071)
T73F4 009:399.377   Data:  00
T73F4 009:399.411 - 0.731ms returns 0x01
T73F4 009:399.438   JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 009:399.465   CPU_ReadMem(4 bytes @ 0x20000100)
T73F4 009:400.126   Data:  00 00 00 00
T73F4 009:400.180 - 0.750ms returns 0x04
T73F4 009:400.236   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 009:400.271   CPU_ReadMem(4 bytes @ 0x2000010C)
T73F4 009:400.967   Data:  00 00 00 00
T73F4 009:401.003 - 0.775ms returns 0x04
T51D4 009:401.079 JLINK_IsHalted()
T51D4 009:401.721 - 0.664ms returns FALSE
T51D4 009:502.292 JLINK_IsHalted()
T51D4 009:503.274 - 1.057ms returns FALSE
T51D4 009:604.186 JLINK_IsHalted()
T51D4 009:605.054 - 0.928ms returns FALSE
T51D4 009:705.603 JLINK_IsHalted()
T51D4 009:706.548 - 0.993ms returns FALSE
T51D4 009:806.977 JLINK_IsHalted()
T51D4 009:807.676 - 0.725ms returns FALSE
T73F4 009:908.354   JLINK_ReadMemEx(0x20000062, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 009:908.457   CPU_ReadMem(1 bytes @ 0x20000062)
T73F4 009:909.323   Data:  00
T73F4 009:909.417 - 1.084ms returns 0x01
T73F4 009:909.512   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 009:909.580   CPU_ReadMem(2 bytes @ 0x2000007E)
T73F4 009:910.365   Data:  00 00
T73F4 009:910.417 - 0.916ms returns 0x02
T73F4 009:919.007   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 009:919.045   CPU_ReadMem(4 bytes @ 0x2000010C)
T73F4 009:919.698   Data:  00 00 00 00
T73F4 009:919.735 - 0.737ms returns 0x04
T73F4 009:919.769   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 009:919.796   CPU_ReadMem(1 bytes @ 0x20000060)
T73F4 009:920.512   Data:  01
T73F4 009:920.553 - 0.791ms returns 0x01
T73F4 009:920.581   JLINK_ReadMemEx(0x20000016, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 009:920.608   CPU_ReadMem(1 bytes @ 0x20000016)
T73F4 009:921.293   Data:  00
T73F4 009:921.333 - 0.760ms returns 0x01
T73F4 009:935.903   JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 009:935.944   CPU_ReadMem(4 bytes @ 0x20000104)
T73F4 009:936.645   Data:  00 00 00 00
T73F4 009:936.690 - 0.795ms returns 0x04
T73F4 009:936.731   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 009:936.758   CPU_ReadMem(2 bytes @ 0x2000007E)
T73F4 009:937.423   Data:  00 00
T73F4 009:937.462 - 0.739ms returns 0x02
T73F4 009:944.438   JLINK_ReadMemEx(0x20000090, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 009:944.472   CPU_ReadMem(4 bytes @ 0x20000090)
T73F4 009:945.132   Data:  00 00 00 00
T73F4 009:945.174 - 0.745ms returns 0x04
T73F4 009:953.074   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 009:953.111   CPU_ReadMem(1 bytes @ 0x20000060)
T73F4 009:953.798   Data:  01
T73F4 009:953.847 - 0.783ms returns 0x01
T73F4 009:961.553   JLINK_ReadMemEx(0x20000063, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 009:961.588   CPU_ReadMem(1 bytes @ 0x20000063)
T73F4 009:962.291   Data:  00
T73F4 009:962.327 - 0.782ms returns 0x01
T73F4 009:962.355   JLINK_ReadMemEx(0x20000071, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 009:962.381   CPU_ReadMem(1 bytes @ 0x20000071)
T73F4 009:963.035   Data:  00
T73F4 009:963.078 - 0.731ms returns 0x01
T73F4 009:963.105   JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 009:963.132   CPU_ReadMem(4 bytes @ 0x20000100)
T73F4 009:963.805   Data:  00 00 00 00
T73F4 009:963.844 - 0.747ms returns 0x04
T73F4 009:963.875   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 009:963.902   CPU_ReadMem(4 bytes @ 0x2000010C)
T73F4 009:964.555   Data:  00 00 00 00
T73F4 009:964.597 - 0.730ms returns 0x04
T51D4 009:964.671 JLINK_IsHalted()
T51D4 009:965.345 - 0.691ms returns FALSE
T51D4 010:065.958 JLINK_IsHalted()
T51D4 010:066.853 - 0.953ms returns FALSE
T51D4 010:167.045 JLINK_IsHalted()
T51D4 010:167.807 - 0.820ms returns FALSE
T51D4 010:268.440 JLINK_IsHalted()
T51D4 010:269.339 - 0.955ms returns FALSE
T51D4 010:369.802 JLINK_IsHalted()
T51D4 010:370.562 - 0.783ms returns FALSE
T73F4 010:471.248   JLINK_ReadMemEx(0x20000062, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 010:471.303   CPU_ReadMem(1 bytes @ 0x20000062)
T73F4 010:472.016   Data:  00
T73F4 010:472.061 - 0.823ms returns 0x01
T73F4 010:472.102   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 010:472.135   CPU_ReadMem(2 bytes @ 0x2000007E)
T73F4 010:472.819   Data:  00 00
T73F4 010:472.856 - 0.761ms returns 0x02
T73F4 010:480.426   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 010:480.461   CPU_ReadMem(4 bytes @ 0x2000010C)
T73F4 010:481.147   Data:  00 00 00 00
T73F4 010:481.184 - 0.766ms returns 0x04
T73F4 010:481.216   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 010:481.243   CPU_ReadMem(1 bytes @ 0x20000060)
T73F4 010:481.902   Data:  01
T73F4 010:481.943 - 0.734ms returns 0x01
T73F4 010:481.971   JLINK_ReadMemEx(0x20000016, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 010:481.998   CPU_ReadMem(1 bytes @ 0x20000016)
T73F4 010:482.721   Data:  00
T73F4 010:482.760 - 0.796ms returns 0x01
T73F4 010:497.292   JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 010:497.332   CPU_ReadMem(4 bytes @ 0x20000104)
T73F4 010:498.025   Data:  00 00 00 00
T73F4 010:498.088 - 0.805ms returns 0x04
T73F4 010:498.135   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 010:498.167   CPU_ReadMem(2 bytes @ 0x2000007E)
T73F4 010:498.864   Data:  00 00
T73F4 010:498.903 - 0.775ms returns 0x02
T73F4 010:506.738   JLINK_ReadMemEx(0x20000090, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 010:506.776   CPU_ReadMem(4 bytes @ 0x20000090)
T73F4 010:507.439   Data:  00 00 00 00
T73F4 010:507.476 - 0.745ms returns 0x04
T73F4 010:514.397   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 010:514.430   CPU_ReadMem(1 bytes @ 0x20000060)
T73F4 010:515.113   Data:  01
T73F4 010:515.152 - 0.762ms returns 0x01
T73F4 010:522.461   JLINK_ReadMemEx(0x20000063, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 010:522.499   CPU_ReadMem(1 bytes @ 0x20000063)
T73F4 010:523.181   Data:  00
T73F4 010:523.213 - 0.762ms returns 0x01
T73F4 010:523.244   JLINK_ReadMemEx(0x20000071, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 010:523.270   CPU_ReadMem(1 bytes @ 0x20000071)
T73F4 010:523.960   Data:  00
T73F4 010:523.994 - 0.760ms returns 0x01
T73F4 010:524.020   JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 010:524.046   CPU_ReadMem(4 bytes @ 0x20000100)
T73F4 010:524.724   Data:  00 00 00 00
T73F4 010:524.749 - 0.738ms returns 0x04
T73F4 010:524.780   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 010:524.804   CPU_ReadMem(4 bytes @ 0x2000010C)
T73F4 010:525.568   Data:  00 00 00 00
T73F4 010:525.645 - 0.882ms returns 0x04
T51D4 010:525.786 JLINK_IsHalted()
T51D4 010:526.592 - 0.832ms returns FALSE
T51D4 010:626.720 JLINK_IsHalted()
T51D4 010:627.595 - 0.930ms returns FALSE
T51D4 010:728.020 JLINK_IsHalted()
T51D4 010:740.319 - 12.318ms returns FALSE
T51D4 010:841.142 JLINK_IsHalted()
T51D4 010:842.261 - 1.174ms returns FALSE
T51D4 010:943.291 JLINK_IsHalted()
T51D4 010:944.204 - 0.927ms returns FALSE
T73F4 011:045.098   JLINK_ReadMemEx(0x20000062, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 011:045.202   CPU_ReadMem(1 bytes @ 0x20000062)
T73F4 011:046.107   Data:  00
T73F4 011:046.204 - 1.126ms returns 0x01
T73F4 011:046.296   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 011:046.362   CPU_ReadMem(2 bytes @ 0x2000007E)
T73F4 011:047.265   Data:  00 00
T73F4 011:047.347 - 1.067ms returns 0x02
T73F4 011:055.109   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 011:055.145   CPU_ReadMem(4 bytes @ 0x2000010C)
T73F4 011:055.847   Data:  00 00 00 00
T73F4 011:055.887 - 0.786ms returns 0x04
T73F4 011:055.935   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 011:055.965   CPU_ReadMem(1 bytes @ 0x20000060)
T73F4 011:056.651   Data:  01
T73F4 011:056.690 - 0.762ms returns 0x01
T73F4 011:056.718   JLINK_ReadMemEx(0x20000016, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 011:056.745   CPU_ReadMem(1 bytes @ 0x20000016)
T73F4 011:057.394   Data:  00
T73F4 011:057.432 - 0.725ms returns 0x01
T73F4 011:071.497   JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 011:071.533   CPU_ReadMem(4 bytes @ 0x20000104)
T73F4 011:072.218   Data:  00 00 00 00
T73F4 011:072.259 - 0.769ms returns 0x04
T73F4 011:072.297   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 011:072.323   CPU_ReadMem(2 bytes @ 0x2000007E)
T73F4 011:073.011   Data:  00 00
T73F4 011:073.052 - 0.762ms returns 0x02
T73F4 011:079.986   JLINK_ReadMemEx(0x20000090, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 011:080.020   CPU_ReadMem(4 bytes @ 0x20000090)
T73F4 011:080.671   Data:  00 00 00 00
T73F4 011:080.711 - 0.732ms returns 0x04
T73F4 011:088.171   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 011:088.209   CPU_ReadMem(1 bytes @ 0x20000060)
T73F4 011:088.908   Data:  01
T73F4 011:088.963 - 0.802ms returns 0x01
T73F4 011:097.083   JLINK_ReadMemEx(0x20000063, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 011:097.117   CPU_ReadMem(1 bytes @ 0x20000063)
T73F4 011:097.779   Data:  00
T73F4 011:097.825 - 0.751ms returns 0x01
T73F4 011:097.858   JLINK_ReadMemEx(0x20000071, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 011:097.891   CPU_ReadMem(1 bytes @ 0x20000071)
T73F4 011:098.567   Data:  00
T73F4 011:098.612 - 0.763ms returns 0x01
T73F4 011:098.647   JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 011:098.679   CPU_ReadMem(4 bytes @ 0x20000100)
T73F4 011:099.343   Data:  00 00 00 00
T73F4 011:099.431 - 0.803ms returns 0x04
T73F4 011:099.570   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 011:099.659   CPU_ReadMem(4 bytes @ 0x2000010C)
T73F4 011:100.495   Data:  00 00 00 00
T73F4 011:100.528 - 0.969ms returns 0x04
T51D4 011:100.614 JLINK_IsHalted()
T51D4 011:101.306 - 0.708ms returns FALSE
T51D4 011:201.987 JLINK_IsHalted()
T51D4 011:202.654 - 0.692ms returns FALSE
T51D4 011:303.140 JLINK_IsHalted()
T51D4 011:303.842 - 0.733ms returns FALSE
T51D4 011:404.155 JLINK_IsHalted()
T51D4 011:404.874 - 0.746ms returns FALSE
T51D4 011:505.177 JLINK_IsHalted()
T51D4 011:505.912 - 0.764ms returns FALSE
T73F4 011:606.955   JLINK_ReadMemEx(0x20000062, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 011:607.011   CPU_ReadMem(1 bytes @ 0x20000062)
T73F4 011:607.668   Data:  00
T73F4 011:607.712 - 0.767ms returns 0x01
T73F4 011:607.762   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 011:607.794   CPU_ReadMem(2 bytes @ 0x2000007E)
T73F4 011:608.508   Data:  00 00
T73F4 011:608.548 - 0.793ms returns 0x02
T73F4 011:616.767   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 011:616.822   CPU_ReadMem(4 bytes @ 0x2000010C)
T73F4 011:617.513   Data:  00 00 00 00
T73F4 011:617.542 - 0.783ms returns 0x04
T73F4 011:617.578   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 011:617.608   CPU_ReadMem(1 bytes @ 0x20000060)
T73F4 011:618.249   Data:  01
T73F4 011:618.283 - 0.713ms returns 0x01
T73F4 011:618.312   JLINK_ReadMemEx(0x20000016, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 011:618.338   CPU_ReadMem(1 bytes @ 0x20000016)
T73F4 011:619.019   Data:  00
T73F4 011:619.064 - 0.761ms returns 0x01
T73F4 011:634.592   JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 011:634.659   CPU_ReadMem(4 bytes @ 0x20000104)
T73F4 011:635.374   Data:  00 00 00 00
T73F4 011:635.413 - 0.829ms returns 0x04
T73F4 011:635.460   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 011:635.487   CPU_ReadMem(2 bytes @ 0x2000007E)
T73F4 011:636.210   Data:  00 00
T73F4 011:636.246 - 0.793ms returns 0x02
T73F4 011:643.435   JLINK_ReadMemEx(0x20000090, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 011:643.470   CPU_ReadMem(4 bytes @ 0x20000090)
T73F4 011:644.185   Data:  00 00 00 00
T73F4 011:644.233 - 0.805ms returns 0x04
T73F4 011:651.517   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 011:651.553   CPU_ReadMem(1 bytes @ 0x20000060)
T73F4 011:652.208   Data:  01
T73F4 011:652.307 - 0.798ms returns 0x01
T73F4 011:659.495   JLINK_ReadMemEx(0x20000063, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 011:659.530   CPU_ReadMem(1 bytes @ 0x20000063)
T73F4 011:660.224   Data:  00
T73F4 011:660.259 - 0.771ms returns 0x01
T73F4 011:660.287   JLINK_ReadMemEx(0x20000071, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 011:660.313   CPU_ReadMem(1 bytes @ 0x20000071)
T73F4 011:661.025   Data:  00
T73F4 011:661.076 - 0.802ms returns 0x01
T73F4 011:661.123   JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 011:661.167   CPU_ReadMem(4 bytes @ 0x20000100)
T73F4 011:661.843   Data:  00 00 00 00
T73F4 011:661.873 - 0.764ms returns 0x04
T73F4 011:661.920   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 011:661.956   CPU_ReadMem(4 bytes @ 0x2000010C)
T73F4 011:662.601   Data:  00 00 00 00
T73F4 011:662.641 - 0.730ms returns 0x04
T51D4 011:662.756 JLINK_IsHalted()
T51D4 011:663.387 - 0.648ms returns FALSE
T51D4 011:763.562 JLINK_IsHalted()
T51D4 011:764.551 - 1.034ms returns FALSE
T51D4 011:864.755 JLINK_IsHalted()
T51D4 011:865.622 - 0.923ms returns FALSE
T51D4 011:966.780 JLINK_IsHalted()
T51D4 011:967.593 - 0.839ms returns FALSE
T51D4 012:068.105 JLINK_IsHalted()
T51D4 012:106.024 - 37.956ms returns TRUE
T51D4 012:106.098 JLINK_Halt()
T51D4 012:106.136 - 0.055ms returns 0x00
T51D4 012:106.181 JLINK_IsHalted()
T51D4 012:106.222 - 0.062ms returns TRUE
T51D4 012:106.267 JLINK_IsHalted()
T51D4 012:106.308 - 0.063ms returns TRUE
T51D4 012:106.354 JLINK_IsHalted()
T51D4 012:106.389 - 0.052ms returns TRUE
T51D4 012:106.437 JLINK_ReadReg(R15 (PC))
T51D4 012:106.479 - 0.060ms returns 0x0800A8C8
T51D4 012:106.520 JLINK_ReadReg(XPSR)
T51D4 012:106.557 - 0.055ms returns 0x41000000
T51D4 012:106.713 JLINK_ClrBPEx(BPHandle = 0x00000002)
T51D4 012:106.802 - 0.108ms returns 0x00
T51D4 012:106.850 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...)
T51D4 012:106.904   CPU_ReadMem(4 bytes @ 0xE000ED30)
T51D4 012:107.730   Data:  03 00 00 00
T51D4 012:107.836 - 1.005ms returns 1
T51D4 012:107.881 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...)
T51D4 012:107.929   CPU_ReadMem(4 bytes @ 0xE0001028)
T51D4 012:108.761   Data:  00 00 00 00
T51D4 012:108.856    - DWT_FUNC[0]
T51D4 012:108.909 - 1.046ms returns 1
T51D4 012:108.952 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...)
T51D4 012:109.001   CPU_ReadMem(4 bytes @ 0xE0001038)
T51D4 012:109.764   Data:  00 00 00 00
T51D4 012:109.807    - DWT_FUNC[1]
T51D4 012:109.828 - 0.883ms returns 1
T51D4 012:109.862 JLINK_ReadReg(R0)
T51D4 012:109.879 - 0.024ms returns 0x00000000
T51D4 012:109.895 JLINK_ReadReg(R1)
T51D4 012:109.910 - 0.022ms returns 0x000C0000
T51D4 012:109.925 JLINK_ReadReg(R2)
T51D4 012:109.940 - 0.022ms returns 0x00000100
T51D4 012:109.955 JLINK_ReadReg(R3)
T51D4 012:109.970 - 0.021ms returns 0x00000000
T51D4 012:109.985 JLINK_ReadReg(R4)
T51D4 012:110.000 - 0.021ms returns 0x0800AE58
T51D4 012:110.015 JLINK_ReadReg(R5)
T51D4 012:110.029 - 0.021ms returns 0x00000001
T51D4 012:110.044 JLINK_ReadReg(R6)
T51D4 012:110.058 - 0.021ms returns 0x0800AE58
T51D4 012:110.074 JLINK_ReadReg(R7)
T51D4 012:110.088 - 0.021ms returns 0xFFFFFFFF
T51D4 012:110.103 JLINK_ReadReg(R8)
T51D4 012:110.118 - 0.021ms returns 0xFFFFFFFF
T51D4 012:110.133 JLINK_ReadReg(R9)
T51D4 012:110.147 - 0.021ms returns 0xFFFFFFFF
T51D4 012:110.162 JLINK_ReadReg(R10)
T51D4 012:110.177 - 0.021ms returns 0xFFFFFFFF
T51D4 012:110.192 JLINK_ReadReg(R11)
T51D4 012:110.207 - 0.023ms returns 0xFFFFFFFF
T51D4 012:110.223 JLINK_ReadReg(R12)
T51D4 012:110.237 - 0.022ms returns 0xFFFFFFFF
T51D4 012:110.256 JLINK_ReadReg(R13 (SP))
T51D4 012:110.275 - 0.027ms returns 0x20001AB8
T51D4 012:110.291 JLINK_ReadReg(R14)
T51D4 012:110.306 - 0.021ms returns 0x08009265
T51D4 012:110.321 JLINK_ReadReg(R15 (PC))
T51D4 012:110.335 - 0.021ms returns 0x0800A8C8
T51D4 012:110.350 JLINK_ReadReg(XPSR)
T51D4 012:110.365 - 0.021ms returns 0x41000000
T51D4 012:110.380 JLINK_ReadReg(MSP)
T51D4 012:110.398 - 0.028ms returns 0x20001AB8
T51D4 012:110.416 JLINK_ReadReg(PSP)
T51D4 012:110.430 - 0.021ms returns 0xFFFFFFFC
T51D4 012:110.446 JLINK_ReadReg(CFBP)
T51D4 012:110.460 - 0.021ms returns 0x00000000
T73F4 012:110.680   JLINK_ReadMemEx(0x20000062, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 012:110.724   CPU_ReadMem(64 bytes @ 0x20000040)
T73F4 012:112.015    -- Updating C cache (64 bytes @ 0x20000040)
T73F4 012:112.061    -- Read from C cache (1 bytes @ 0x20000062)
T73F4 012:112.088   Data:  00
T73F4 012:112.136 - 1.475ms returns 0x01
T73F4 012:112.226   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 012:112.303    -- Read from C cache (2 bytes @ 0x2000007E)
T73F4 012:112.373   Data:  00 00
T73F4 012:112.432 - 0.225ms returns 0x02
T73F4 012:121.032   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 012:121.077   CPU_ReadMem(64 bytes @ 0x20000100)
T73F4 012:122.380    -- Updating C cache (64 bytes @ 0x20000100)
T73F4 012:122.416    -- Read from C cache (4 bytes @ 0x2000010C)
T73F4 012:122.438   Data:  00 00 00 00
T73F4 012:122.459 - 1.434ms returns 0x04
T73F4 012:122.493   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 012:122.518    -- Read from C cache (1 bytes @ 0x20000060)
T73F4 012:122.539   Data:  01
T73F4 012:122.560 - 0.074ms returns 0x01
T73F4 012:122.582   JLINK_ReadMemEx(0x20000016, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 012:122.605   CPU_ReadMem(64 bytes @ 0x20000000)
T73F4 012:123.865    -- Updating C cache (64 bytes @ 0x20000000)
T73F4 012:123.905    -- Read from C cache (1 bytes @ 0x20000016)
T73F4 012:123.926   Data:  00
T73F4 012:123.947 - 1.373ms returns 0x01
T73F4 012:138.905   JLINK_ReadMemEx(0x20000104, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 012:138.955    -- Read from C cache (4 bytes @ 0x20000104)
T73F4 012:138.976   Data:  00 00 00 00
T73F4 012:138.998 - 0.101ms returns 0x04
T73F4 012:139.033   JLINK_ReadMemEx(0x2000007E, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 012:139.057    -- Read from C cache (2 bytes @ 0x2000007E)
T73F4 012:139.078   Data:  00 00
T73F4 012:139.098 - 0.072ms returns 0x02
T73F4 012:145.886   JLINK_ReadMemEx(0x20000090, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 012:145.919   CPU_ReadMem(64 bytes @ 0x20000080)
T73F4 012:147.245    -- Updating C cache (64 bytes @ 0x20000080)
T73F4 012:147.279    -- Read from C cache (4 bytes @ 0x20000090)
T73F4 012:147.306   Data:  00 00 00 00
T73F4 012:147.331 - 1.457ms returns 0x04
T73F4 012:155.055   JLINK_ReadMemEx(0x20000060, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 012:155.090    -- Read from C cache (1 bytes @ 0x20000060)
T73F4 012:155.112   Data:  01
T73F4 012:155.134 - 0.087ms returns 0x01
T73F4 012:162.319   JLINK_ReadMemEx(0x20000063, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 012:162.372    -- Read from C cache (1 bytes @ 0x20000063)
T73F4 012:162.393   Data:  00
T73F4 012:162.414 - 0.103ms returns 0x01
T73F4 012:162.436   JLINK_ReadMemEx(0x20000071, 0x0001 Bytes, ..., Flags = 0x02000000)
T73F4 012:162.459    -- Read from C cache (1 bytes @ 0x20000071)
T73F4 012:162.480   Data:  00
T73F4 012:162.501 - 0.071ms returns 0x01
T73F4 012:162.519   JLINK_ReadMemEx(0x20000100, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 012:162.541    -- Read from C cache (4 bytes @ 0x20000100)
T73F4 012:162.562   Data:  00 00 00 00
T73F4 012:162.583 - 0.071ms returns 0x04
T73F4 012:162.604   JLINK_ReadMemEx(0x2000010C, 0x0004 Bytes, ..., Flags = 0x02000000)
T73F4 012:162.626    -- Read from C cache (4 bytes @ 0x2000010C)
T73F4 012:162.647   Data:  00 00 00 00
T73F4 012:162.668 - 0.071ms returns 0x04
T73F4 012:171.083   JLINK_ReadMemEx(0x0800A8C8, 0x003C Bytes, ..., Flags = 0x02000000)
T73F4 012:171.129   CPU_ReadMem(128 bytes @ 0x0800A8C0)
T73F4 012:173.071    -- Updating C cache (128 bytes @ 0x0800A8C0)
T73F4 012:173.118    -- Read from C cache (60 bytes @ 0x0800A8C8)
T73F4 012:173.146   Data:  FD F7 D2 FD 41 49 42 48 00 25 22 C0 05 60 85 61 ...
T73F4 012:173.171 - 2.102ms returns 0x3C
T73F4 012:173.204   JLINK_ReadMemEx(0x0800A8C8, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 012:173.259    -- Read from C cache (2 bytes @ 0x0800A8C8)
T73F4 012:173.319   Data:  FD F7
T73F4 012:173.386 - 0.201ms returns 0x02
T73F4 012:173.427   JLINK_ReadMemEx(0x0800A8CA, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 012:173.480    -- Read from C cache (2 bytes @ 0x0800A8CA)
T73F4 012:173.533   Data:  D2 FD
T73F4 012:173.585 - 0.176ms returns 0x02
T73F4 012:173.659   JLINK_ReadMemEx(0x0800A8CC, 0x003C Bytes, ..., Flags = 0x02000000)
T73F4 012:173.714    -- Read from C cache (60 bytes @ 0x0800A8CC)
T73F4 012:173.768   Data:  41 49 42 48 00 25 22 C0 05 60 85 61 C5 61 40 49 ...
T73F4 012:173.819 - 0.178ms returns 0x3C
T73F4 012:173.858   JLINK_ReadMemEx(0x0800A8CC, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 012:173.910    -- Read from C cache (2 bytes @ 0x0800A8CC)
T73F4 012:173.963   Data:  41 49
T73F4 012:174.015 - 0.175ms returns 0x02
T73F4 012:174.054   JLINK_ReadMemEx(0x0800A8CE, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 012:174.107    -- Read from C cache (2 bytes @ 0x0800A8CE)
T73F4 012:174.158   Data:  42 48
T73F4 012:174.210 - 0.174ms returns 0x02
T73F4 012:174.259   JLINK_ReadMemEx(0x0800A8CE, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 012:174.319    -- Read from C cache (2 bytes @ 0x0800A8CE)
T73F4 012:174.381   Data:  42 48
T73F4 012:174.423 - 0.172ms returns 0x02
T73F4 012:174.439   JLINK_ReadMemEx(0x0800A8D0, 0x003C Bytes, ..., Flags = 0x02000000)
T73F4 012:174.461    -- Read from C cache (60 bytes @ 0x0800A8D0)
T73F4 012:174.482   Data:  00 25 22 C0 05 60 85 61 C5 61 40 49 05 62 C1 60 ...
T73F4 012:174.502 - 0.070ms returns 0x3C
T73F4 012:174.517   JLINK_ReadMemEx(0x0800A8D0, 0x0002 Bytes, ..., Flags = 0x02000000)
T73F4 012:174.538    -- Read from C cache (2 bytes @ 0x0800A8D0)
T73F4 012:174.559   Data:  00 25
T73F4 012:174.580 - 0.069ms returns 0x02
T73F4 021:481.178 JLINK_Close()
T73F4 021:481.766   CPU_WriteMem(4 bytes @ 0xE0002008)
T73F4 021:483.626   CPU_ReadMem(4 bytes @ 0xE0001000)
T73F4 021:485.463   CPU_WriteMem(4 bytes @ 0xE0001000)
T73F4 021:491.208   
  ***** Error: 
T73F4 021:491.257   Could not start CPU core. (ErrorCode: -1)
T73F4 021:502.475 - 21.317ms
T73F4 021:502.507   
T73F4 021:502.524   Closed