chen
2 天以前 7dd60a33d20a2d287ed5088cd1b888cf34b9e1dd
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
 
T6F00 000:199 SEGGER J-Link V6.30d Log File (0001ms, 0032ms total)
T6F00 000:199 DLL Compiled: Feb 16 2018 13:30:32 (0001ms, 0032ms total)
T6F00 000:199 Logging started @ 2025-07-25 16:16 (0001ms, 0032ms total)
T6F00 000:200 JLINK_SetWarnOutHandler(...) (0000ms, 0032ms total)
T6F00 000:200 JLINK_OpenEx(...)
Firmware: J-Link ARM-OB STM32 compiled Aug 22 2012 19:52:04
Hardware: V7.00
S/N: 20090928
Feature(s): RDI,FlashDL,FlashBP,JFlash,GDB
TELNET listener socket opened on port 19021WEBSRV 
Starting webserver (0017ms, 0049ms total)
T6F00 000:200 WEBSRV Webserver running on local port 19080 (0017ms, 0049ms total)
T6F00 000:200   returns O.K. (0017ms, 0049ms total)
T6F00 000:217 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0049ms total)
T6F00 000:217 JLINK_TIF_GetAvailable(...) (0001ms, 0050ms total)
T6F00 000:218 JLINK_SetErrorOutHandler(...) (0000ms, 0050ms total)
T6F00 000:218 JLINK_ExecCommand("ProjectFile = "D:\project_chen\host\0.6.2_uci_project\keil\JLinkSettings.ini"", ...). d:\Keil_v5\ARM\Segger\JLinkDevices.xml evaluated successfully.Device "CORTEX-M0" selected.  returns 0x00 (0308ms, 0358ms total)
T6F00 000:526 JLINK_ExecCommand("Device = MK8000", ...). Device "MK8000" selected.  returns 0x00 (0011ms, 0369ms total)
T6F00 000:537 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0369ms total)
T6F00 000:537 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0369ms total)
T6F00 000:537 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0369ms total)
T6F00 000:537 JLINK_GetFirmwareString(...) (0000ms, 0369ms total)
T6F00 000:537 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0369ms total)
T6F00 000:537 JLINK_GetCompileDateTime() (0000ms, 0369ms total)
T6F00 000:537 JLINK_GetFirmwareString(...) (0000ms, 0369ms total)
T6F00 000:537 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0369ms total)
T6F00 000:537 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0000ms, 0369ms total)
T6F00 000:537 JLINK_SetSpeed(50000) (0000ms, 0369ms total)
T6F00 000:537 JLINK_GetId() >0x10B TIF> >0x10F TIF> >0x10B TIF> >0x10F TIF> >0x10B TIF> >0x10F TIF> >0x10B TIF> >0x10F TIF> >0x10B TIF> >0x10F TIF> >0x10B TIF> >0x10F TIF> >0x10B TIF> >0x10F TIF> >0x10B TIF> >0x10F TIF> >0x10B TIF> >0x10F TIF> >0x10B TIF> >0x10F TIF> >0x10B TIF>Found SW-DP with ID 0x0BB11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF>SWD speed too high. Reduced from 4000 kHz to 853 kHz for stability >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>
Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x04770021)Iterating through AP map to find AHB-AP to use >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>
AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC200. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p0, Little endian. -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)
 -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)
ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB >0x0D TIF> >0x21 TIF>  returns 0x0BB11477 (0656ms, 1025ms total)
T6F00 001:193 JLINK_GetDLLVersion()  returns 63004 (0000ms, 1025ms total)
T6F00 001:193 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 1025ms total)
T6F00 001:193 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0001ms, 1026ms total)
T6F00 001:194 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 1026ms total)
T6F00 001:194 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 1026ms total)
T6F00 001:194 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, 1027ms total)
T6F00 001:195 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 1027ms total)
T6F00 001:195 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 1027ms total)
T6F00 001:195 JLINK_ReadMemEx(0xE0040FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0040FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0002ms, 1029ms total)
T6F00 001:197 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 1029ms total)
T6F00 001:197 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 1029ms total)
T6F00 001:197 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 1029ms total)
T6F00 001:197 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 1029ms total)
T6F00 001:197 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 1029ms total)
T6F00 001:197 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 1029ms total)
T6F00 001:197 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41  returns 0x01 (0001ms, 1030ms total)
T6F00 001:199 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 1031ms total)
T6F00 001:199 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 1031ms total)
T6F00 001:199 JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)
 -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0081ms, 1112ms total)
T6F00 001:281 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 1112ms total)
T6F00 001:281 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 1112ms total)
T6F00 001:281 JLINK_Halt()  returns 0x00 (0000ms, 1112ms total)
T6F00 001:281 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 0x01 (0001ms, 1113ms total)
T6F00 001:282 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0000ms, 1113ms total)
T6F00 001:282 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0002ms, 1115ms total)
T6F00 001:284 JLINK_GetHWStatus(...)  returns 0x00 (0001ms, 1116ms total)
T6F00 001:285 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 1116ms total)
T6F00 001:285 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 1116ms total)
T6F00 001:285 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 1116ms total)
T6F00 001:285 JLINK_GetSpeed()  returns 0x34B (0000ms, 1116ms total)
T6F00 001:285 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0001ms, 1117ms total)
T6F00 001:286 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 1117ms total)
T6F00 001:286 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 1117ms total)
T6F00 001:483 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 1117ms total)
T6F00 001:483 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0081ms, 1198ms total)
T6F00 001:565 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 1198ms total)
T6F00 001:565 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 1198ms total)
T6F00 001:565 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0003ms, 1201ms total)
T6F00 001:568 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 1202ms total)
T6F00 001:569 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0002ms, 1204ms total)
T6F00 001:571 JLINK_ReadMemEx(0x0300373C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0300373C) - Data: FC F7 C0 FC 80 B5 0D 49 08 68 00 28 00 D4 80 BD ...  returns 0x3C (0003ms, 1207ms total)
T6F00 001:574 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 1208ms total)
T6F00 001:575 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0000ms, 1208ms total)
T6F00 001:575 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0004ms, 1212ms total)
T6F00 001:579 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 1213ms total)
T6F00 001:580 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 1214ms total)
T6F00 001:581 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 1215ms total)
T6F00 001:582 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0003ms, 1218ms total)
T6F00 001:585 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 1219ms total)
T6F00 001:586 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0002ms, 1221ms total)
T6F00 001:588 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0002ms, 1223ms total)
T6F00 001:590 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 1224ms total)
T6F00 007:345 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0002ms, 1226ms total)
T6F00 007:347 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0003ms, 1229ms total)
T6F00 007:350 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 1230ms total)
T6F00 007:351 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0002ms, 1232ms total)
T6F00 007:353 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0002ms, 1234ms total)
T6F00 007:355 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0001ms, 1235ms total)
T6F00 007:488 JLINK_ReadMemEx(0x0000FEBC, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0000FE80) -- Updating C cache (128 bytes @ 0x0000FE80) -- Read from C cache (60 bytes @ 0x0000FEBC) - Data: EF F3 10 81 72 B6 39 69 30 29 24 D8 79 44 09 79 ...  returns 0x3C (0005ms, 1240ms total)
T6F00 007:493 JLINK_ReadMemEx(0x0000FEBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FEBC) - Data: EF F3  returns 0x02 (0000ms, 1240ms total)
T6F00 007:493 JLINK_ReadMemEx(0x0000FEBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FEBE) - Data: 10 81  returns 0x02 (0000ms, 1240ms total)
T6F00 007:493 JLINK_ReadMemEx(0x0000FEC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FEC0) - Data: 72 B6 39 69 30 29 24 D8 79 44 09 79 49 00 8F 44 ...  returns 0x3C (0000ms, 1240ms total)
T6F00 007:493 JLINK_ReadMemEx(0x0000FEC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FEC0) - Data: 72 B6  returns 0x02 (0000ms, 1240ms total)
T6F00 007:493 JLINK_ReadMemEx(0x0000FEC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FEC2) - Data: 39 69  returns 0x02 (0000ms, 1240ms total)
T6F00 007:493 JLINK_ReadMemEx(0x0000FEC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FEC2) - Data: 39 69  returns 0x02 (0001ms, 1241ms total)
T6F00 007:494 JLINK_ReadMemEx(0x0000FEC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FEC4) - Data: 30 29 24 D8 79 44 09 79 49 00 8F 44 24 2C 30 30 ...  returns 0x3C (0000ms, 1241ms total)
T6F00 007:494 JLINK_ReadMemEx(0x0000FEC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FEC4) - Data: 30 29  returns 0x02 (0000ms, 1241ms total)
T6F00 008:359 JLINK_ReadReg(R0)  returns 0x000425BF (0002ms, 1243ms total)
T6F00 008:361 JLINK_ReadReg(R1)  returns 0x000003E8 (0000ms, 1243ms total)
T6F00 008:361 JLINK_ReadReg(R2)  returns 0x00000408 (0000ms, 1243ms total)
T6F00 008:361 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 1243ms total)
T6F00 008:361 JLINK_ReadReg(R4)  returns 0x00000001 (0000ms, 1243ms total)
T6F00 008:361 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 1243ms total)
T6F00 008:361 JLINK_ReadReg(R6)  returns 0x0013D000 (0000ms, 1243ms total)
T6F00 008:361 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 1243ms total)
T6F00 008:361 JLINK_ReadReg(R8)  returns 0x04001000 (0000ms, 1243ms total)
T6F00 008:361 JLINK_ReadReg(R9)  returns 0x010A028A (0000ms, 1243ms total)
T6F00 008:361 JLINK_ReadReg(R10)  returns 0x00100081 (0000ms, 1243ms total)
T6F00 008:361 JLINK_ReadReg(R11)  returns 0x08008000 (0000ms, 1243ms total)
T6F00 008:361 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1243ms total)
T6F00 008:361 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 1243ms total)
T6F00 008:361 JLINK_ReadReg(R14)  returns 0x000096C7 (0000ms, 1243ms total)
T6F00 008:361 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 1243ms total)
T6F00 008:362 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 1244ms total)
T6F00 008:362 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 1244ms total)
T6F00 008:362 JLINK_ReadReg(PSP)  returns 0x02028800 (0000ms, 1244ms total)
T6F00 008:362 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1244ms total)
T6F00 008:362 JLINK_ReadMemEx(0x0202A2F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A2F2) - Data: 00  returns 0x01 (0001ms, 1245ms total)
T6F00 008:363 JLINK_ReadMemEx(0x0202A2F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A2F2) - Data: 00  returns 0x01 (0001ms, 1246ms total)
T6F00 008:364 JLINK_ReadMemEx(0x0202A2F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A2F2) - Data: 00  returns 0x01 (0001ms, 1247ms total)
T6F00 008:395 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x020266C0) -- Updating C cache (128 bytes @ 0x020266C0) -- Read from C cache (32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0005ms, 1252ms total)
T6F00 008:435 JLINK_ReadMemEx(0x020280F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020280F2) - Data: 00 00  returns 0x02 (0002ms, 1254ms total)
T6F00 008:437 JLINK_ReadMemEx(0x020280F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020280F2) - Data: 00 00  returns 0x02 (0001ms, 1255ms total)
T6F00 008:438 JLINK_ReadMemEx(0x020280F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020280F2) - Data: 00 00  returns 0x02 (0001ms, 1256ms total)
T6F00 008:481 JLINK_ReadMemEx(0x0202A4C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A4C8) - Data: 00  returns 0x01 (0002ms, 1258ms total)
T6F00 008:483 JLINK_ReadMemEx(0x0202A4C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A4C8) - Data: 00  returns 0x01 (0000ms, 1258ms total)
T6F00 008:483 JLINK_ReadMemEx(0x0202A4C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A4C8) - Data: 00  returns 0x01 (0002ms, 1260ms total)
T6F00 008:499 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1261ms total)
T6F00 008:500 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1262ms total)
T6F00 008:501 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1263ms total)
T6F00 008:529 JLINK_ReadMemEx(0x02028498, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02028498) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0003ms, 1266ms total)
T6F00 008:552 JLINK_ReadMemEx(0x020274E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020274C0) -- Updating C cache (64 bytes @ 0x020274C0) -- Read from C cache (4 bytes @ 0x020274E8) - Data: 34 12 00 00  returns 0x04 (0002ms, 1268ms total)
T6F00 008:554 JLINK_ReadMemEx(0x020274E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x020274E8) - Data: 34 12 00 00  returns 0x04 (0000ms, 1268ms total)
T6F00 008:554 JLINK_ReadMemEx(0x020274E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x020274E8) - Data: 34 12 00 00  returns 0x04 (0000ms, 1268ms total)
T6F00 008:569 JLINK_ReadMemEx(0x0202B6F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B6F4) - Data: 00  returns 0x01 (0001ms, 1269ms total)
T6F00 008:570 JLINK_ReadMemEx(0x0202B6F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B6F4) - Data: 00  returns 0x01 (0001ms, 1270ms total)
T6F00 008:571 JLINK_ReadMemEx(0x0202B6F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B6F4) - Data: 00  returns 0x01 (0001ms, 1271ms total)
T6F00 008:588 JLINK_ReadMemEx(0x0202A61E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A61E) - Data: 00  returns 0x01 (0001ms, 1272ms total)
T6F00 008:589 JLINK_ReadMemEx(0x0202A61E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A61E) - Data: 00  returns 0x01 (0001ms, 1273ms total)
T6F00 008:590 JLINK_ReadMemEx(0x0202A61E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A61E) - Data: 00  returns 0x01 (0001ms, 1274ms total)
T6F00 008:613 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1274ms total)
T6F00 008:629 JLINK_ReadMemEx(0x0202A5A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A5A0) - Data: 00  returns 0x01 (0001ms, 1275ms total)
T6F00 008:630 JLINK_ReadMemEx(0x0202A5A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A5A0) - Data: 00  returns 0x01 (0001ms, 1276ms total)
T6F00 008:631 JLINK_ReadMemEx(0x0202A5A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A5A0) - Data: 00  returns 0x01 (0000ms, 1276ms total)
T6F00 008:647 JLINK_ReadMemEx(0x0202BC1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202BC1E) - Data: 00 00  returns 0x02 (0001ms, 1277ms total)
T6F00 008:648 JLINK_ReadMemEx(0x0202BC1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202BC1E) - Data: 00 00  returns 0x02 (0002ms, 1279ms total)
T6F00 008:650 JLINK_ReadMemEx(0x0202BC1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202BC1E) - Data: 00 00  returns 0x02 (0000ms, 1279ms total)
T6F00 008:665 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1280ms total)
T6F00 008:666 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1281ms total)
T6F00 008:667 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1282ms total)
T6F00 008:688 JLINK_ReadMemEx(0x020280C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020280C1) - Data: 00  returns 0x01 (0001ms, 1283ms total)
T6F00 008:689 JLINK_ReadMemEx(0x020280C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020280C1) - Data: 00  returns 0x01 (0001ms, 1284ms total)
T6F00 008:690 JLINK_ReadMemEx(0x020280C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020280C1) - Data: 00  returns 0x01 (0002ms, 1286ms total)
T5620 008:849 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 1287ms total)
T5620 008:850 JLINK_SetBPEx(Addr = 0x0000FBCC, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 1287ms total)
T5620 008:850 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0008ms, 1295ms total)
T5620 008:960 JLINK_IsHalted()  returns FALSE (0001ms, 1296ms total)
T5620 009:062 JLINK_IsHalted()  returns TRUE (0008ms, 1303ms total)
T5620 009:070 JLINK_Halt()  returns 0x00 (0001ms, 1296ms total)
T5620 009:071 JLINK_IsHalted()  returns TRUE (0000ms, 1296ms total)
T5620 009:071 JLINK_IsHalted()  returns TRUE (0000ms, 1296ms total)
T5620 009:071 JLINK_IsHalted()  returns TRUE (0000ms, 1296ms total)
T5620 009:071 JLINK_ReadReg(R15 (PC))  returns 0x0000FBCC (0000ms, 1296ms total)
T5620 009:071 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1296ms total)
T5620 009:071 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 1296ms total)
T5620 009:071 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1297ms total)
T5620 009:072 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1298ms total)
T5620 009:073 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 1299ms total)
T5620 009:074 JLINK_ReadReg(R0)  returns 0x0000FBCD (0000ms, 1299ms total)
T5620 009:074 JLINK_ReadReg(R1)  returns 0x0202BCC4 (0000ms, 1299ms total)
T5620 009:074 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 1299ms total)
T5620 009:074 JLINK_ReadReg(R3)  returns 0x0001C68B (0000ms, 1299ms total)
T5620 009:074 JLINK_ReadReg(R4)  returns 0x00021E9C (0000ms, 1299ms total)
T5620 009:074 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 1299ms total)
T5620 009:074 JLINK_ReadReg(R6)  returns 0x00021E9C (0000ms, 1299ms total)
T5620 009:074 JLINK_ReadReg(R7)  returns 0x02000000 (0001ms, 1300ms total)
T5620 009:075 JLINK_ReadReg(R8)  returns 0x04001000 (0000ms, 1300ms total)
T5620 009:075 JLINK_ReadReg(R9)  returns 0x010A028A (0000ms, 1300ms total)
T5620 009:075 JLINK_ReadReg(R10)  returns 0x00100081 (0000ms, 1300ms total)
T5620 009:075 JLINK_ReadReg(R11)  returns 0x08008000 (0000ms, 1300ms total)
T5620 009:075 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1300ms total)
T5620 009:075 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 1300ms total)
T5620 009:075 JLINK_ReadReg(R14)  returns 0x00000BD9 (0000ms, 1300ms total)
T5620 009:075 JLINK_ReadReg(R15 (PC))  returns 0x0000FBCC (0000ms, 1300ms total)
T5620 009:075 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1300ms total)
T5620 009:075 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 1300ms total)
T5620 009:075 JLINK_ReadReg(PSP)  returns 0x02028800 (0000ms, 1300ms total)
T5620 009:075 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1300ms total)
T6F00 009:089 JLINK_ReadMemEx(0x0202A2F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A2F2) - Data: 00  returns 0x01 (0001ms, 1301ms total)
T6F00 009:091 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x020266C0) -- Updating C cache (128 bytes @ 0x020266C0) -- Read from C cache (32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0005ms, 1306ms total)
T6F00 009:102 JLINK_ReadMemEx(0x020280F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020280F2) - Data: 00 00  returns 0x02 (0001ms, 1307ms total)
T6F00 009:106 JLINK_ReadMemEx(0x0202A4C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A4C8) - Data: 00  returns 0x01 (0001ms, 1308ms total)
T6F00 009:107 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1309ms total)
T6F00 009:109 JLINK_ReadMemEx(0x02028498, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02028498) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1311ms total)
T6F00 009:111 JLINK_ReadMemEx(0x020274E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020274C0) -- Updating C cache (64 bytes @ 0x020274C0) -- Read from C cache (4 bytes @ 0x020274E8) - Data: 00 00 00 00  returns 0x04 (0003ms, 1314ms total)
T6F00 009:114 JLINK_ReadMemEx(0x0202B6F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B6F4) - Data: 00  returns 0x01 (0002ms, 1316ms total)
T6F00 009:116 JLINK_ReadMemEx(0x0202A61E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A61E) - Data: 00  returns 0x01 (0001ms, 1317ms total)
T6F00 009:117 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1317ms total)
T6F00 009:117 JLINK_ReadMemEx(0x0202A5A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A5A0) - Data: 00  returns 0x01 (0001ms, 1318ms total)
T6F00 009:118 JLINK_ReadMemEx(0x0202BC1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202BC1E) - Data: 00 00  returns 0x02 (0001ms, 1319ms total)
T6F00 009:119 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1320ms total)
T6F00 009:120 JLINK_ReadMemEx(0x020280C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020280C1) - Data: 00  returns 0x01 (0002ms, 1322ms total)
T6F00 009:124 JLINK_ReadMemEx(0x0000FACC, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0000FAC0) -- Updating C cache (128 bytes @ 0x0000FAC0) -- Read from C cache (60 bytes @ 0x0000FACC) - Data: 80 B2 C0 00 00 29 00 D1 80 1E 02 9F A5 21 49 00 ...  returns 0x3C (0005ms, 1327ms total)
T6F00 009:129 JLINK_ReadMemEx(0x0000FACC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FACC) - Data: 80 B2  returns 0x02 (0000ms, 1327ms total)
T6F00 009:129 JLINK_ReadMemEx(0x0000FACE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FACE) - Data: C0 00  returns 0x02 (0000ms, 1327ms total)
T6F00 009:129 JLINK_ReadMemEx(0x0000FACE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FACE) - Data: C0 00  returns 0x02 (0000ms, 1327ms total)
T6F00 009:129 JLINK_ReadMemEx(0x0000FAD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAD0) - Data: 00 29 00 D1 80 1E 02 9F A5 21 49 00 F0 F7 FA FA ...  returns 0x3C (0000ms, 1327ms total)
T6F00 009:129 JLINK_ReadMemEx(0x0000FAD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAD0) - Data: 00 29  returns 0x02 (0000ms, 1327ms total)
T6F00 009:129 JLINK_ReadMemEx(0x0000FAD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAD0) - Data: 00 29 00 D1 80 1E 02 9F A5 21 49 00 F0 F7 FA FA ...  returns 0x3C (0000ms, 1327ms total)
T6F00 009:129 JLINK_ReadMemEx(0x0000FAD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAD0) - Data: 00 29  returns 0x02 (0000ms, 1327ms total)
T6F00 009:129 JLINK_ReadMemEx(0x0000FAD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAD2) - Data: 00 D1  returns 0x02 (0000ms, 1327ms total)
T6F00 009:129 JLINK_ReadMemEx(0x0000FAD2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAD2) - Data: 00 D1  returns 0x02 (0000ms, 1327ms total)
T6F00 009:129 JLINK_ReadMemEx(0x0000FAD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAD4) - Data: 80 1E 02 9F A5 21 49 00 F0 F7 FA FA 1F 21 01 40 ...  returns 0x3C (0000ms, 1327ms total)
T6F00 009:129 JLINK_ReadMemEx(0x0000FAD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAD4) - Data: 80 1E  returns 0x02 (0001ms, 1328ms total)
T6F00 009:130 JLINK_ReadMemEx(0x0000FAD4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAD4) - Data: 80 1E 02 9F A5 21 49 00 F0 F7 FA FA 1F 21 01 40 ...  returns 0x3C (0000ms, 1328ms total)
T6F00 009:130 JLINK_ReadMemEx(0x0000FAD4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAD4) - Data: 80 1E  returns 0x02 (0000ms, 1328ms total)
T6F00 009:130 JLINK_ReadMemEx(0x0000FAD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAD6) - Data: 02 9F  returns 0x02 (0000ms, 1328ms total)
T6F00 009:130 JLINK_ReadMemEx(0x0000FAD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAD6) - Data: 02 9F  returns 0x02 (0000ms, 1328ms total)
T6F00 009:130 JLINK_ReadMemEx(0x0000FAD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAD8) - Data: A5 21 49 00 F0 F7 FA FA 1F 21 01 40 01 E0 00 21 ...  returns 0x3C (0000ms, 1328ms total)
T6F00 009:130 JLINK_ReadMemEx(0x0000FAD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAD8) - Data: A5 21  returns 0x02 (0000ms, 1328ms total)
T6F00 009:130 JLINK_ReadMemEx(0x0000FAD8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAD8) - Data: A5 21 49 00 F0 F7 FA FA 1F 21 01 40 01 E0 00 21 ...  returns 0x3C (0000ms, 1328ms total)
T6F00 009:130 JLINK_ReadMemEx(0x0000FAD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAD8) - Data: A5 21  returns 0x02 (0000ms, 1328ms total)
T6F00 009:130 JLINK_ReadMemEx(0x0000FADA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FADA) - Data: 49 00  returns 0x02 (0000ms, 1328ms total)
T6F00 009:130 JLINK_ReadMemEx(0x0000FADA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FADA) - Data: 49 00  returns 0x02 (0000ms, 1328ms total)
T6F00 009:130 JLINK_ReadMemEx(0x0000FADC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FADC) - Data: F0 F7 FA FA 1F 21 01 40 01 E0 00 21 02 9F 38 01 ...  returns 0x3C (0000ms, 1328ms total)
T6F00 009:130 JLINK_ReadMemEx(0x0000FADC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FADC) - Data: F0 F7  returns 0x02 (0000ms, 1328ms total)
T6F00 009:130 JLINK_ReadMemEx(0x0000FADC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FADC) - Data: F0 F7 FA FA 1F 21 01 40 01 E0 00 21 02 9F 38 01 ...  returns 0x3C (0000ms, 1328ms total)
T6F00 009:130 JLINK_ReadMemEx(0x0000FADC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FADC) - Data: F0 F7  returns 0x02 (0000ms, 1328ms total)
T6F00 009:130 JLINK_ReadMemEx(0x0000FADE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FADE) - Data: FA FA  returns 0x02 (0000ms, 1328ms total)
T6F00 009:130 JLINK_ReadMemEx(0x0000FAE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAE0) - Data: 1F 21 01 40 01 E0 00 21 02 9F 38 01 28 18 42 79 ...  returns 0x3C (0000ms, 1328ms total)
T6F00 009:130 JLINK_ReadMemEx(0x0000FAE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAE0) - Data: 1F 21  returns 0x02 (0000ms, 1328ms total)
T6F00 009:130 JLINK_ReadMemEx(0x0000FAE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAE2) - Data: 01 40  returns 0x02 (0000ms, 1328ms total)
T6F00 009:131 JLINK_ReadMemEx(0x0000FAE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAE2) - Data: 01 40  returns 0x02 (0000ms, 1329ms total)
T6F00 009:131 JLINK_ReadMemEx(0x0000FAE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAE4) - Data: 01 E0 00 21 02 9F 38 01 28 18 42 79 83 79 1B 02 ...  returns 0x3C (0000ms, 1329ms total)
T6F00 009:131 JLINK_ReadMemEx(0x0000FAE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAE4) - Data: 01 E0  returns 0x02 (0000ms, 1329ms total)
T6F00 009:131 JLINK_ReadMemEx(0x0000FAE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAE4) - Data: 01 E0 00 21 02 9F 38 01 28 18 42 79 83 79 1B 02 ...  returns 0x3C (0000ms, 1329ms total)
T6F00 009:131 JLINK_ReadMemEx(0x0000FAE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAE4) - Data: 01 E0  returns 0x02 (0000ms, 1329ms total)
T6F00 009:131 JLINK_ReadMemEx(0x0000FAE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAE6) - Data: 00 21  returns 0x02 (0000ms, 1329ms total)
T6F00 009:131 JLINK_ReadMemEx(0x0000FAE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAE6) - Data: 00 21  returns 0x02 (0000ms, 1329ms total)
T6F00 009:131 JLINK_ReadMemEx(0x0000FAE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAE8) - Data: 02 9F 38 01 28 18 42 79 83 79 1B 02 9A 18 C3 79 ...  returns 0x3C (0000ms, 1329ms total)
T6F00 009:131 JLINK_ReadMemEx(0x0000FAE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAE8) - Data: 02 9F  returns 0x02 (0000ms, 1329ms total)
T6F00 009:131 JLINK_ReadMemEx(0x0000FAE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAE8) - Data: 02 9F 38 01 28 18 42 79 83 79 1B 02 9A 18 C3 79 ...  returns 0x3C (0000ms, 1329ms total)
T6F00 009:131 JLINK_ReadMemEx(0x0000FAE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAE8) - Data: 02 9F  returns 0x02 (0000ms, 1329ms total)
T6F00 009:131 JLINK_ReadMemEx(0x0000FAEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAEA) - Data: 38 01  returns 0x02 (0000ms, 1329ms total)
T6F00 009:131 JLINK_ReadMemEx(0x0000FAEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAEA) - Data: 38 01  returns 0x02 (0000ms, 1329ms total)
T6F00 009:131 JLINK_ReadMemEx(0x0000FAEC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAEC) - Data: 28 18 42 79 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 ...  returns 0x3C (0000ms, 1329ms total)
T6F00 009:131 JLINK_ReadMemEx(0x0000FAEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAEC) - Data: 28 18  returns 0x02 (0000ms, 1329ms total)
T6F00 009:131 JLINK_ReadMemEx(0x0000FAEC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAEC) - Data: 28 18 42 79 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 ...  returns 0x3C (0000ms, 1329ms total)
T6F00 009:131 JLINK_ReadMemEx(0x0000FAEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAEC) - Data: 28 18  returns 0x02 (0000ms, 1329ms total)
T6F00 009:131 JLINK_ReadMemEx(0x0000FAEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAEE) - Data: 42 79  returns 0x02 (0000ms, 1329ms total)
T6F00 009:131 JLINK_ReadMemEx(0x0000FAEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAEE) - Data: 42 79  returns 0x02 (0000ms, 1329ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAF0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAF0) - Data: 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 ...  returns 0x3C (0000ms, 1330ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAF0) - Data: 83 79  returns 0x02 (0000ms, 1330ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAF0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAF0) - Data: 83 79 1B 02 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 ...  returns 0x3C (0000ms, 1330ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAF0) - Data: 83 79  returns 0x02 (0000ms, 1330ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAF2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAF2) - Data: 1B 02  returns 0x02 (0000ms, 1330ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAF2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAF2) - Data: 1B 02  returns 0x02 (0000ms, 1330ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAF4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAF4) - Data: 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 43 71 09 04 ...  returns 0x3C (0000ms, 1330ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAF4) - Data: 9A 18  returns 0x02 (0000ms, 1330ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAF4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAF4) - Data: 9A 18 C3 79 1B 04 D2 18 2C 4B 13 40 43 71 09 04 ...  returns 0x3C (0000ms, 1330ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAF4) - Data: 9A 18  returns 0x02 (0000ms, 1330ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAF6) - Data: C3 79  returns 0x02 (0000ms, 1330ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAF6) - Data: C3 79  returns 0x02 (0000ms, 1330ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAF8) - Data: 1B 04 D2 18 2C 4B 13 40 43 71 09 04 59 18 09 0C ...  returns 0x3C (0000ms, 1330ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAF8) - Data: 1B 04  returns 0x02 (0000ms, 1330ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAF8) - Data: 1B 04 D2 18 2C 4B 13 40 43 71 09 04 59 18 09 0C ...  returns 0x3C (0000ms, 1330ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAF8) - Data: 1B 04  returns 0x02 (0000ms, 1330ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAFA) - Data: D2 18  returns 0x02 (0000ms, 1330ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAFA) - Data: D2 18  returns 0x02 (0000ms, 1330ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAFC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAFC) - Data: 2C 4B 13 40 43 71 09 04 59 18 09 0C C1 71 00 2C ...  returns 0x3C (0000ms, 1330ms total)
T6F00 009:132 JLINK_ReadMemEx(0x0000FAFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAFC) - Data: 2C 4B  returns 0x02 (0001ms, 1331ms total)
T6F00 009:133 JLINK_ReadMemEx(0x0000FAFC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FAFC) - Data: 2C 4B 13 40 43 71 09 04 59 18 09 0C C1 71 00 2C ...  returns 0x3C (0000ms, 1331ms total)
T6F00 009:133 JLINK_ReadMemEx(0x0000FAFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAFC) - Data: 2C 4B  returns 0x02 (0000ms, 1331ms total)
T6F00 009:133 JLINK_ReadMemEx(0x0000FAFE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAFE) - Data: 13 40  returns 0x02 (0000ms, 1331ms total)
T6F00 009:133 JLINK_ReadMemEx(0x0000FAFE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FAFE) - Data: 13 40  returns 0x02 (0000ms, 1331ms total)
T6F00 009:133 JLINK_ReadMemEx(0x0000FB00, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB00) - Data: 43 71 09 04 59 18 09 0C C1 71 00 2C 20 D0 15 48 ...  returns 0x3C (0000ms, 1331ms total)
T6F00 009:133 JLINK_ReadMemEx(0x0000FB00, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB00) - Data: 43 71  returns 0x02 (0000ms, 1331ms total)
T6F00 009:133 JLINK_ReadMemEx(0x0000FB00, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB00) - Data: 43 71 09 04 59 18 09 0C C1 71 00 2C 20 D0 15 48 ...  returns 0x3C (0000ms, 1331ms total)
T6F00 009:133 JLINK_ReadMemEx(0x0000FB00, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB00) - Data: 43 71  returns 0x02 (0000ms, 1331ms total)
T6F00 009:133 JLINK_ReadMemEx(0x0000FB02, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB02) - Data: 09 04  returns 0x02 (0000ms, 1331ms total)
T6F00 009:133 JLINK_ReadMemEx(0x0000FB02, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB02) - Data: 09 04  returns 0x02 (0000ms, 1331ms total)
T6F00 009:133 JLINK_ReadMemEx(0x0000FB04, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB04) - Data: 59 18 09 0C C1 71 00 2C 20 D0 15 48 35 46 06 46 ...  returns 0x3C (0000ms, 1331ms total)
T6F00 009:133 JLINK_ReadMemEx(0x0000FB04, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB04) - Data: 59 18  returns 0x02 (0000ms, 1331ms total)
T6F00 009:133 JLINK_ReadMemEx(0x0000FB04, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB04) - Data: 59 18 09 0C C1 71 00 2C 20 D0 15 48 35 46 06 46 ...  returns 0x3C (0000ms, 1331ms total)
T6F00 009:133 JLINK_ReadMemEx(0x0000FB04, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB04) - Data: 59 18  returns 0x02 (0000ms, 1331ms total)
T6F00 009:133 JLINK_ReadMemEx(0x0000FB06, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB06) - Data: 09 0C  returns 0x02 (0000ms, 1331ms total)
T6F00 009:133 JLINK_ReadMemEx(0x0000FB06, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB06) - Data: 09 0C  returns 0x02 (0000ms, 1331ms total)
T6F00 009:133 JLINK_ReadMemEx(0x0000FB08, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000FB40) -- Updating C cache (64 bytes @ 0x0000FB40) -- Read from C cache (60 bytes @ 0x0000FB08) - Data: C1 71 00 2C 20 D0 15 48 35 46 06 46 00 7B 00 9B ...  returns 0x3C (0003ms, 1334ms total)
T6F00 009:136 JLINK_ReadMemEx(0x0000FB08, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB08) - Data: C1 71  returns 0x02 (0000ms, 1334ms total)
T6F00 009:136 JLINK_ReadMemEx(0x0000FB08, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB08) - Data: C1 71 00 2C 20 D0 15 48 35 46 06 46 00 7B 00 9B ...  returns 0x3C (0000ms, 1334ms total)
T6F00 009:136 JLINK_ReadMemEx(0x0000FB08, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB08) - Data: C1 71  returns 0x02 (0000ms, 1334ms total)
T6F00 009:136 JLINK_ReadMemEx(0x0000FB0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB0A) - Data: 00 2C  returns 0x02 (0000ms, 1334ms total)
T6F00 009:136 JLINK_ReadMemEx(0x0000FB0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB0A) - Data: 00 2C  returns 0x02 (0000ms, 1334ms total)
T6F00 009:136 JLINK_ReadMemEx(0x0000FB0C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB0C) - Data: 20 D0 15 48 35 46 06 46 00 7B 00 9B 43 43 F1 7A ...  returns 0x3C (0000ms, 1334ms total)
T6F00 009:136 JLINK_ReadMemEx(0x0000FB0C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB0C) - Data: 20 D0  returns 0x02 (0000ms, 1334ms total)
T6F00 009:136 JLINK_ReadMemEx(0x0000FB0C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB0C) - Data: 20 D0 15 48 35 46 06 46 00 7B 00 9B 43 43 F1 7A ...  returns 0x3C (0000ms, 1334ms total)
T6F00 009:136 JLINK_ReadMemEx(0x0000FB0C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB0C) - Data: 20 D0  returns 0x02 (0000ms, 1334ms total)
T6F00 009:136 JLINK_ReadMemEx(0x0000FB0E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB0E) - Data: 15 48  returns 0x02 (0001ms, 1335ms total)
T6F00 009:137 JLINK_ReadMemEx(0x0000FB0E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB0E) - Data: 15 48  returns 0x02 (0000ms, 1335ms total)
T6F00 009:137 JLINK_ReadMemEx(0x0000FB10, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB10) - Data: 35 46 06 46 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F ...  returns 0x3C (0000ms, 1335ms total)
T6F00 009:137 JLINK_ReadMemEx(0x0000FB10, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB10) - Data: 35 46  returns 0x02 (0000ms, 1335ms total)
T6F00 009:137 JLINK_ReadMemEx(0x0000FB10, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB10) - Data: 35 46 06 46 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F ...  returns 0x3C (0000ms, 1335ms total)
T6F00 009:137 JLINK_ReadMemEx(0x0000FB10, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB10) - Data: 35 46  returns 0x02 (0000ms, 1335ms total)
T6F00 009:137 JLINK_ReadMemEx(0x0000FB12, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB12) - Data: 06 46  returns 0x02 (0000ms, 1335ms total)
T6F00 009:137 JLINK_ReadMemEx(0x0000FB12, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB12) - Data: 06 46  returns 0x02 (0000ms, 1335ms total)
T6F00 009:137 JLINK_ReadMemEx(0x0000FB14, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB14) - Data: 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 ...  returns 0x3C (0000ms, 1335ms total)
T6F00 009:137 JLINK_ReadMemEx(0x0000FB14, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB14) - Data: 00 7B  returns 0x02 (0000ms, 1335ms total)
T6F00 009:137 JLINK_ReadMemEx(0x0000FB14, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB14) - Data: 00 7B 00 9B 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 ...  returns 0x3C (0000ms, 1335ms total)
T6F00 009:137 JLINK_ReadMemEx(0x0000FB14, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB14) - Data: 00 7B  returns 0x02 (0000ms, 1335ms total)
T6F00 009:137 JLINK_ReadMemEx(0x0000FB16, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB16) - Data: 00 9B  returns 0x02 (0001ms, 1336ms total)
T6F00 009:138 JLINK_ReadMemEx(0x0000FB16, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB16) - Data: 00 9B  returns 0x02 (0000ms, 1336ms total)
T6F00 009:138 JLINK_ReadMemEx(0x0000FB18, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB18) - Data: 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 ...  returns 0x3C (0000ms, 1336ms total)
T6F00 009:138 JLINK_ReadMemEx(0x0000FB18, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB18) - Data: 43 43  returns 0x02 (0000ms, 1336ms total)
T6F00 009:138 JLINK_ReadMemEx(0x0000FB18, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB18) - Data: 43 43 F1 7A 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 ...  returns 0x3C (0000ms, 1336ms total)
T6F00 009:138 JLINK_ReadMemEx(0x0000FB18, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB18) - Data: 43 43  returns 0x02 (0000ms, 1336ms total)
T6F00 009:138 JLINK_ReadMemEx(0x0000FB1A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB1A) - Data: F1 7A  returns 0x02 (0000ms, 1336ms total)
T6F00 009:138 JLINK_ReadMemEx(0x0000FB1A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB1A) - Data: F1 7A  returns 0x02 (0000ms, 1336ms total)
T6F00 009:138 JLINK_ReadMemEx(0x0000FB1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB1C) - Data: 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 D2 18 05 9B ...  returns 0x3C (0000ms, 1336ms total)
T6F00 009:138 JLINK_ReadMemEx(0x0000FB1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB1C) - Data: 0A 01  returns 0x02 (0000ms, 1336ms total)
T6F00 009:138 JLINK_ReadMemEx(0x0000FB1C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB1C) - Data: 0A 01 06 9F 3A 43 D2 18 41 18 8B 00 D2 18 05 9B ...  returns 0x3C (0000ms, 1336ms total)
T6F00 009:138 JLINK_ReadMemEx(0x0000FB1C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB1C) - Data: 0A 01  returns 0x02 (0000ms, 1336ms total)
T6F00 009:138 JLINK_ReadMemEx(0x0000FB1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB1E) - Data: 06 9F  returns 0x02 (0000ms, 1336ms total)
T6F00 009:138 JLINK_ReadMemEx(0x0000FB1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB1E) - Data: 06 9F  returns 0x02 (0000ms, 1336ms total)
T6F00 009:138 JLINK_ReadMemEx(0x0000FB20, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB20) - Data: 3A 43 D2 18 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 ...  returns 0x3C (0000ms, 1336ms total)
T6F00 009:138 JLINK_ReadMemEx(0x0000FB20, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB20) - Data: 3A 43  returns 0x02 (0000ms, 1336ms total)
T6F00 009:138 JLINK_ReadMemEx(0x0000FB20, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB20) - Data: 3A 43 D2 18 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 ...  returns 0x3C (0000ms, 1336ms total)
T6F00 009:138 JLINK_ReadMemEx(0x0000FB20, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB20) - Data: 3A 43  returns 0x02 (0000ms, 1336ms total)
T6F00 009:138 JLINK_ReadMemEx(0x0000FB22, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB22) - Data: D2 18  returns 0x02 (0000ms, 1336ms total)
T6F00 009:138 JLINK_ReadMemEx(0x0000FB22, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB22) - Data: D2 18  returns 0x02 (0000ms, 1336ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB24, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB24) - Data: 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 72 7B 07 9B ...  returns 0x3C (0000ms, 1337ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB24, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB24) - Data: 41 18  returns 0x02 (0000ms, 1337ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB24, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB24) - Data: 41 18 8B 00 D2 18 05 9B 4B 43 D1 18 72 7B 07 9B ...  returns 0x3C (0000ms, 1337ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB24, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB24) - Data: 41 18  returns 0x02 (0000ms, 1337ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB26, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB26) - Data: 8B 00  returns 0x02 (0000ms, 1337ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB26, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB26) - Data: 8B 00  returns 0x02 (0000ms, 1337ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB28, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB28) - Data: D2 18 05 9B 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 ...  returns 0x3C (0000ms, 1337ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB28, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB28) - Data: D2 18  returns 0x02 (0000ms, 1337ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB28, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB28) - Data: D2 18 05 9B 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 ...  returns 0x3C (0000ms, 1337ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB28, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB28) - Data: D2 18  returns 0x02 (0000ms, 1337ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB2A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB2A) - Data: 05 9B  returns 0x02 (0000ms, 1337ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB2A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB2A) - Data: 05 9B  returns 0x02 (0000ms, 1337ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB2C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB2C) - Data: 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 40 19 1C 4A ...  returns 0x3C (0000ms, 1337ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB2C) - Data: 4B 43  returns 0x02 (0000ms, 1337ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB2C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB2C) - Data: 4B 43 D1 18 72 7B 07 9B 53 43 C9 18 40 19 1C 4A ...  returns 0x3C (0000ms, 1337ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB2C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB2C) - Data: 4B 43  returns 0x02 (0000ms, 1337ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB2E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB2E) - Data: D1 18  returns 0x02 (0000ms, 1337ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB2E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB2E) - Data: D1 18  returns 0x02 (0000ms, 1337ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB30, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB30) - Data: 72 7B 07 9B 53 43 C9 18 40 19 1C 4A 12 88 42 43 ...  returns 0x3C (0000ms, 1337ms total)
T6F00 009:139 JLINK_ReadMemEx(0x0000FB30, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB30) - Data: 72 7B  returns 0x02 (0001ms, 1338ms total)
T6F00 009:140 JLINK_ReadMemEx(0x0000FB30, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB30) - Data: 72 7B 07 9B 53 43 C9 18 40 19 1C 4A 12 88 42 43 ...  returns 0x3C (0000ms, 1338ms total)
T6F00 009:140 JLINK_ReadMemEx(0x0000FB30, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB30) - Data: 72 7B  returns 0x02 (0000ms, 1338ms total)
T6F00 009:140 JLINK_ReadMemEx(0x0000FB32, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB32) - Data: 07 9B  returns 0x02 (0000ms, 1338ms total)
T6F00 009:140 JLINK_ReadMemEx(0x0000FB32, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB32) - Data: 07 9B  returns 0x02 (0000ms, 1338ms total)
T6F00 009:140 JLINK_ReadMemEx(0x0000FB34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB34) - Data: 53 43 C9 18 40 19 1C 4A 12 88 42 43 88 18 01 99 ...  returns 0x3C (0000ms, 1338ms total)
T6F00 009:140 JLINK_ReadMemEx(0x0000FB34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB34) - Data: 53 43  returns 0x02 (0000ms, 1338ms total)
T6F00 009:140 JLINK_ReadMemEx(0x0000FB34, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB34) - Data: 53 43 C9 18 40 19 1C 4A 12 88 42 43 88 18 01 99 ...  returns 0x3C (0000ms, 1338ms total)
T6F00 009:140 JLINK_ReadMemEx(0x0000FB34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB34) - Data: 53 43  returns 0x02 (0000ms, 1338ms total)
T6F00 009:140 JLINK_ReadMemEx(0x0000FB36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB36) - Data: C9 18  returns 0x02 (0000ms, 1338ms total)
T6F00 009:140 JLINK_ReadMemEx(0x0000FB36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB36) - Data: C9 18  returns 0x02 (0000ms, 1338ms total)
T6F00 009:140 JLINK_ReadMemEx(0x0000FB38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB38) - Data: 40 19 1C 4A 12 88 42 43 88 18 01 99 88 42 03 D0 ...  returns 0x3C (0000ms, 1338ms total)
T6F00 009:140 JLINK_ReadMemEx(0x0000FB38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB38) - Data: 40 19  returns 0x02 (0000ms, 1338ms total)
T6F00 009:140 JLINK_ReadMemEx(0x0000FB38, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB38) - Data: 40 19 1C 4A 12 88 42 43 88 18 01 99 88 42 03 D0 ...  returns 0x3C (0000ms, 1338ms total)
T6F00 009:140 JLINK_ReadMemEx(0x0000FB38, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB38) - Data: 40 19  returns 0x02 (0000ms, 1338ms total)
T6F00 009:140 JLINK_ReadMemEx(0x0000FB3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB3A) - Data: 1C 4A  returns 0x02 (0000ms, 1338ms total)
T6F00 009:140 JLINK_ReadMemEx(0x0000FB3A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB3A) - Data: 1C 4A  returns 0x02 (0000ms, 1338ms total)
T6F00 009:140 JLINK_ReadMemEx(0x0000FB3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB3C) - Data: 12 88 42 43 88 18 01 99 88 42 03 D0 01 99 22 46 ...  returns 0x3C (0000ms, 1338ms total)
T6F00 009:140 JLINK_ReadMemEx(0x0000FB3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB3C) - Data: 12 88  returns 0x02 (0000ms, 1338ms total)
T6F00 009:140 JLINK_ReadMemEx(0x0000FB3C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB3C) - Data: 12 88 42 43 88 18 01 99 88 42 03 D0 01 99 22 46 ...  returns 0x3C (0001ms, 1339ms total)
T6F00 009:141 JLINK_ReadMemEx(0x0000FB3C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB3C) - Data: 12 88  returns 0x02 (0000ms, 1339ms total)
T6F00 009:141 JLINK_ReadMemEx(0x0000FB3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB3E) - Data: 42 43  returns 0x02 (0000ms, 1339ms total)
T6F00 009:141 JLINK_ReadMemEx(0x0000FB3E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB3E) - Data: 42 43  returns 0x02 (0000ms, 1339ms total)
T6F00 009:141 JLINK_ReadMemEx(0x0000FB40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB40) - Data: 88 18 01 99 88 42 03 D0 01 99 22 46 F0 F7 4F FB ...  returns 0x3C (0000ms, 1339ms total)
T6F00 009:141 JLINK_ReadMemEx(0x0000FB40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB40) - Data: 88 18  returns 0x02 (0000ms, 1339ms total)
T6F00 009:141 JLINK_ReadMemEx(0x0000FB40, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB40) - Data: 88 18 01 99 88 42 03 D0 01 99 22 46 F0 F7 4F FB ...  returns 0x3C (0000ms, 1339ms total)
T6F00 009:141 JLINK_ReadMemEx(0x0000FB40, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB40) - Data: 88 18  returns 0x02 (0000ms, 1339ms total)
T6F00 009:141 JLINK_ReadMemEx(0x0000FB42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB42) - Data: 01 99  returns 0x02 (0000ms, 1339ms total)
T6F00 009:141 JLINK_ReadMemEx(0x0000FB42, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB42) - Data: 01 99  returns 0x02 (0000ms, 1339ms total)
T6F00 009:141 JLINK_ReadMemEx(0x0000FB44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB44) - Data: 88 42 03 D0 01 99 22 46 F0 F7 4F FB 09 B0 F0 BD ...  returns 0x3C (0000ms, 1339ms total)
T6F00 009:141 JLINK_ReadMemEx(0x0000FB44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB44) - Data: 88 42  returns 0x02 (0000ms, 1339ms total)
T6F00 009:141 JLINK_ReadMemEx(0x0000FB44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB44) - Data: 88 42 03 D0 01 99 22 46 F0 F7 4F FB 09 B0 F0 BD ...  returns 0x3C (0000ms, 1339ms total)
T6F00 009:141 JLINK_ReadMemEx(0x0000FB44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB44) - Data: 88 42  returns 0x02 (0000ms, 1339ms total)
T6F00 009:141 JLINK_ReadMemEx(0x0000FB46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB46) - Data: 03 D0  returns 0x02 (0000ms, 1339ms total)
T6F00 009:141 JLINK_ReadMemEx(0x0000FB46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB46) - Data: 03 D0  returns 0x02 (0001ms, 1340ms total)
T6F00 009:142 JLINK_ReadMemEx(0x0000FB48, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000FB80) -- Updating C cache (64 bytes @ 0x0000FB80) -- Read from C cache (60 bytes @ 0x0000FB48) - Data: 01 99 22 46 F0 F7 4F FB 09 B0 F0 BD FF 22 5C 32 ...  returns 0x3C (0002ms, 1342ms total)
T6F00 009:144 JLINK_ReadMemEx(0x0000FB48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB48) - Data: 01 99  returns 0x02 (0000ms, 1342ms total)
T6F00 009:144 JLINK_ReadMemEx(0x0000FB48, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB48) - Data: 01 99 22 46 F0 F7 4F FB 09 B0 F0 BD FF 22 5C 32 ...  returns 0x3C (0001ms, 1343ms total)
T6F00 009:145 JLINK_ReadMemEx(0x0000FB48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB48) - Data: 01 99  returns 0x02 (0000ms, 1343ms total)
T6F00 009:145 JLINK_ReadMemEx(0x0000FB4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB4A) - Data: 22 46  returns 0x02 (0000ms, 1343ms total)
T6F00 009:145 JLINK_ReadMemEx(0x0000FB4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB4A) - Data: 22 46  returns 0x02 (0000ms, 1343ms total)
T6F00 009:145 JLINK_ReadMemEx(0x0000FB4C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB4C) - Data: F0 F7 4F FB 09 B0 F0 BD FF 22 5C 32 03 48 04 A1 ...  returns 0x3C (0000ms, 1343ms total)
T6F00 009:145 JLINK_ReadMemEx(0x0000FB4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB4C) - Data: F0 F7  returns 0x02 (0000ms, 1343ms total)
T6F00 009:145 JLINK_ReadMemEx(0x0000FB4C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB4C) - Data: F0 F7 4F FB 09 B0 F0 BD FF 22 5C 32 03 48 04 A1 ...  returns 0x3C (0000ms, 1343ms total)
T6F00 009:145 JLINK_ReadMemEx(0x0000FB4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB4C) - Data: F0 F7  returns 0x02 (0000ms, 1343ms total)
T6F00 009:145 JLINK_ReadMemEx(0x0000FB4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB4E) - Data: 4F FB  returns 0x02 (0000ms, 1343ms total)
T6F00 009:145 JLINK_ReadMemEx(0x0000FB50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB50) - Data: 09 B0 F0 BD FF 22 5C 32 03 48 04 A1 09 A3 05 F0 ...  returns 0x3C (0000ms, 1343ms total)
T6F00 009:145 JLINK_ReadMemEx(0x0000FB50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB50) - Data: 09 B0  returns 0x02 (0000ms, 1343ms total)
T6F00 009:145 JLINK_ReadMemEx(0x0000FB52, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB52) - Data: F0 BD  returns 0x02 (0001ms, 1344ms total)
T6F00 009:146 JLINK_ReadMemEx(0x0000FB52, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB52) - Data: F0 BD  returns 0x02 (0000ms, 1344ms total)
T6F00 009:146 JLINK_ReadMemEx(0x0000FB54, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB54) - Data: FF 22 5C 32 03 48 04 A1 09 A3 05 F0 59 FD C0 46 ...  returns 0x3C (0000ms, 1344ms total)
T6F00 009:146 JLINK_ReadMemEx(0x0000FB54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB54) - Data: FF 22  returns 0x02 (0000ms, 1344ms total)
T6F00 009:146 JLINK_ReadMemEx(0x0000FB54, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB54) - Data: FF 22 5C 32 03 48 04 A1 09 A3 05 F0 59 FD C0 46 ...  returns 0x3C (0000ms, 1344ms total)
T6F00 009:146 JLINK_ReadMemEx(0x0000FB54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB54) - Data: FF 22  returns 0x02 (0000ms, 1344ms total)
T6F00 009:146 JLINK_ReadMemEx(0x0000FB56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB56) - Data: 5C 32  returns 0x02 (0000ms, 1344ms total)
T6F00 009:146 JLINK_ReadMemEx(0x0000FB56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB56) - Data: 5C 32  returns 0x02 (0000ms, 1344ms total)
T6F00 009:146 JLINK_ReadMemEx(0x0000FB58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB58) - Data: 03 48 04 A1 09 A3 05 F0 59 FD C0 46 A4 86 02 02 ...  returns 0x3C (0000ms, 1344ms total)
T6F00 009:146 JLINK_ReadMemEx(0x0000FB58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB58) - Data: 03 48  returns 0x02 (0000ms, 1344ms total)
T6F00 009:146 JLINK_ReadMemEx(0x0000FB58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB58) - Data: 03 48 04 A1 09 A3 05 F0 59 FD C0 46 A4 86 02 02 ...  returns 0x3C (0000ms, 1344ms total)
T6F00 009:146 JLINK_ReadMemEx(0x0000FB58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB58) - Data: 03 48  returns 0x02 (0000ms, 1344ms total)
T6F00 009:146 JLINK_ReadMemEx(0x0000FB5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB5A) - Data: 04 A1  returns 0x02 (0000ms, 1344ms total)
T6F00 009:146 JLINK_ReadMemEx(0x0000FB5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB5A) - Data: 04 A1  returns 0x02 (0000ms, 1344ms total)
T6F00 009:146 JLINK_ReadMemEx(0x0000FB5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB5C) - Data: 09 A3 05 F0 59 FD C0 46 A4 86 02 02 3A DF 01 00 ...  returns 0x3C (0000ms, 1344ms total)
T6F00 009:146 JLINK_ReadMemEx(0x0000FB5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB5C) - Data: 09 A3  returns 0x02 (0000ms, 1344ms total)
T6F00 009:146 JLINK_ReadMemEx(0x0000FB5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB5C) - Data: 09 A3 05 F0 59 FD C0 46 A4 86 02 02 3A DF 01 00 ...  returns 0x3C (0000ms, 1344ms total)
T6F00 009:146 JLINK_ReadMemEx(0x0000FB5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB5C) - Data: 09 A3  returns 0x02 (0000ms, 1344ms total)
T6F00 009:146 JLINK_ReadMemEx(0x0000FB5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB5E) - Data: 05 F0  returns 0x02 (0000ms, 1344ms total)
T6F00 009:146 JLINK_ReadMemEx(0x0000FB5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB5E) - Data: 05 F0  returns 0x02 (0001ms, 1345ms total)
T6F00 009:147 JLINK_ReadMemEx(0x0000FB60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB60) - Data: 59 FD C0 46 A4 86 02 02 3A DF 01 00 6D 61 63 5F ...  returns 0x3C (0000ms, 1345ms total)
T6F00 009:147 JLINK_ReadMemEx(0x0000FB60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB60) - Data: 59 FD  returns 0x02 (0000ms, 1345ms total)
T6F00 009:147 JLINK_ReadMemEx(0x0000FB62, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB62) - Data: C0 46  returns 0x02 (0000ms, 1345ms total)
T6F00 009:147 JLINK_ReadMemEx(0x0000FB64, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FB64) - Data: A4 86 02 02 3A DF 01 00 6D 61 63 5F 74 78 5F 64 ...  returns 0x3C (0000ms, 1345ms total)
T6F00 009:147 JLINK_ReadMemEx(0x0000FB64, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FB64) - Data: A4 86  returns 0x02 (0000ms, 1345ms total)
T6F00 009:147 JLINK_ReadMemEx(0x0000FBB4, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000FBC0) -- Updating C cache (64 bytes @ 0x0000FBC0) -- Read from C cache (60 bytes @ 0x0000FBB4) - Data: 01 68 04 4A 11 60 41 68 51 60 81 68 91 60 C0 68 ...  returns 0x3C (0003ms, 1348ms total)
T6F00 009:150 JLINK_ReadMemEx(0x0000FBB4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBB4) - Data: 01 68  returns 0x02 (0000ms, 1348ms total)
T6F00 009:150 JLINK_ReadMemEx(0x0000FBB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBB6) - Data: 04 4A  returns 0x02 (0000ms, 1348ms total)
T6F00 009:150 JLINK_ReadMemEx(0x0000FBB6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBB6) - Data: 04 4A  returns 0x02 (0000ms, 1348ms total)
T6F00 009:150 JLINK_ReadMemEx(0x0000FBB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FBB8) - Data: 11 60 41 68 51 60 81 68 91 60 C0 68 D0 60 70 47 ...  returns 0x3C (0000ms, 1348ms total)
T6F00 009:150 JLINK_ReadMemEx(0x0000FBB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBB8) - Data: 11 60  returns 0x02 (0000ms, 1348ms total)
T6F00 009:150 JLINK_ReadMemEx(0x0000FBB8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FBB8) - Data: 11 60 41 68 51 60 81 68 91 60 C0 68 D0 60 70 47 ...  returns 0x3C (0000ms, 1348ms total)
T6F00 009:150 JLINK_ReadMemEx(0x0000FBB8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBB8) - Data: 11 60  returns 0x02 (0000ms, 1348ms total)
T6F00 009:150 JLINK_ReadMemEx(0x0000FBBA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBBA) - Data: 41 68  returns 0x02 (0000ms, 1348ms total)
T6F00 009:150 JLINK_ReadMemEx(0x0000FBBA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBBA) - Data: 41 68  returns 0x02 (0000ms, 1348ms total)
T6F00 009:150 JLINK_ReadMemEx(0x0000FBBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FBBC) - Data: 51 60 81 68 91 60 C0 68 D0 60 70 47 80 A0 00 50 ...  returns 0x3C (0000ms, 1348ms total)
T6F00 009:151 JLINK_ReadMemEx(0x0000FBBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBBC) - Data: 51 60  returns 0x02 (0000ms, 1349ms total)
T6F00 009:151 JLINK_ReadMemEx(0x0000FBBC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FBBC) - Data: 51 60 81 68 91 60 C0 68 D0 60 70 47 80 A0 00 50 ...  returns 0x3C (0000ms, 1349ms total)
T6F00 009:151 JLINK_ReadMemEx(0x0000FBBC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBBC) - Data: 51 60  returns 0x02 (0000ms, 1349ms total)
T6F00 009:151 JLINK_ReadMemEx(0x0000FBBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBBE) - Data: 81 68  returns 0x02 (0000ms, 1349ms total)
T6F00 009:151 JLINK_ReadMemEx(0x0000FBBE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBBE) - Data: 81 68  returns 0x02 (0000ms, 1349ms total)
T6F00 009:151 JLINK_ReadMemEx(0x0000FBC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FBC0) - Data: 91 60 C0 68 D0 60 70 47 80 A0 00 50 F0 B5 89 B0 ...  returns 0x3C (0000ms, 1349ms total)
T6F00 009:151 JLINK_ReadMemEx(0x0000FBC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBC0) - Data: 91 60  returns 0x02 (0000ms, 1349ms total)
T6F00 009:151 JLINK_ReadMemEx(0x0000FBC0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FBC0) - Data: 91 60 C0 68 D0 60 70 47 80 A0 00 50 F0 B5 89 B0 ...  returns 0x3C (0000ms, 1349ms total)
T6F00 009:151 JLINK_ReadMemEx(0x0000FBC0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBC0) - Data: 91 60  returns 0x02 (0000ms, 1349ms total)
T6F00 009:151 JLINK_ReadMemEx(0x0000FBC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBC2) - Data: C0 68  returns 0x02 (0000ms, 1349ms total)
T6F00 009:151 JLINK_ReadMemEx(0x0000FBC2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBC2) - Data: C0 68  returns 0x02 (0000ms, 1349ms total)
T6F00 009:151 JLINK_ReadMemEx(0x0000FBC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FBC4) - Data: D0 60 70 47 80 A0 00 50 F0 B5 89 B0 CE 48 06 68 ...  returns 0x3C (0000ms, 1349ms total)
T6F00 009:151 JLINK_ReadMemEx(0x0000FBC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBC4) - Data: D0 60  returns 0x02 (0000ms, 1349ms total)
T6F00 009:151 JLINK_ReadMemEx(0x0000FBC4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FBC4) - Data: D0 60 70 47 80 A0 00 50 F0 B5 89 B0 CE 48 06 68 ...  returns 0x3C (0001ms, 1350ms total)
T6F00 009:152 JLINK_ReadMemEx(0x0000FBC4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBC4) - Data: D0 60  returns 0x02 (0000ms, 1350ms total)
T6F00 009:152 JLINK_ReadMemEx(0x0000FBC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBC6) - Data: 70 47  returns 0x02 (0000ms, 1350ms total)
T6F00 009:152 JLINK_ReadMemEx(0x0000FBC6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBC6) - Data: 70 47  returns 0x02 (0000ms, 1350ms total)
T6F00 009:152 JLINK_ReadMemEx(0x0000FBC8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000FC00) -- Updating C cache (64 bytes @ 0x0000FC00) -- Read from C cache (60 bytes @ 0x0000FBC8) - Data: 80 A0 00 50 F0 B5 89 B0 CE 48 06 68 CE 48 05 68 ...  returns 0x3C (0003ms, 1353ms total)
T6F00 009:155 JLINK_ReadMemEx(0x0000FBC8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBC8) - Data: 80 A0  returns 0x02 (0000ms, 1353ms total)
T6F00 009:155 JLINK_ReadMemEx(0x0000FBCA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBCA) - Data: 00 50  returns 0x02 (0000ms, 1353ms total)
T6F00 009:155 JLINK_ReadMemEx(0x0000FBCC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FBCC) - Data: F0 B5 89 B0 CE 48 06 68 CE 48 05 68 F8 F7 7A FD ...  returns 0x3C (0000ms, 1353ms total)
T6F00 009:155 JLINK_ReadMemEx(0x0000FBCC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBCC) - Data: F0 B5  returns 0x02 (0000ms, 1353ms total)
T6F00 009:155 JLINK_ReadMemEx(0x0000FBCC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FBCC) - Data: F0 B5 89 B0 CE 48 06 68 CE 48 05 68 F8 F7 7A FD ...  returns 0x3C (0001ms, 1354ms total)
T6F00 009:156 JLINK_ReadMemEx(0x0000FBCC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBCC) - Data: F0 B5  returns 0x02 (0000ms, 1354ms total)
T6F00 009:156 JLINK_ReadMemEx(0x0000FBCE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBCE) - Data: 89 B0  returns 0x02 (0000ms, 1354ms total)
T6F00 009:156 JLINK_ReadMemEx(0x0000FBCE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBCE) - Data: 89 B0  returns 0x02 (0000ms, 1354ms total)
T6F00 009:156 JLINK_ReadMemEx(0x0000FBD0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FBD0) - Data: CE 48 06 68 CE 48 05 68 F8 F7 7A FD F8 F7 A4 FE ...  returns 0x3C (0000ms, 1354ms total)
T6F00 009:156 JLINK_ReadMemEx(0x0000FBD0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FBD0) - Data: CE 48  returns 0x02 (0001ms, 1355ms total)
T6F00 011:589 JLINK_ReadMemEx(0x0000FC4C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0000FC40) -- Updating C cache (128 bytes @ 0x0000FC40) -- Read from C cache (60 bytes @ 0x0000FC4C) - Data: B3 A2 01 46 06 F0 12 FD 11 20 FE F7 73 FC 00 28 ...  returns 0x3C (0006ms, 1361ms total)
T6F00 011:595 JLINK_ReadMemEx(0x0000FC4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC4C) - Data: B3 A2  returns 0x02 (0000ms, 1361ms total)
T6F00 011:595 JLINK_ReadMemEx(0x0000FC4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC4E) - Data: 01 46  returns 0x02 (0000ms, 1361ms total)
T6F00 011:595 JLINK_ReadMemEx(0x0000FC4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC4E) - Data: 01 46  returns 0x02 (0000ms, 1361ms total)
T6F00 011:595 JLINK_ReadMemEx(0x0000FC50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FC50) - Data: 06 F0 12 FD 11 20 FE F7 73 FC 00 28 00 D1 9C E0 ...  returns 0x3C (0000ms, 1361ms total)
T6F00 011:595 JLINK_ReadMemEx(0x0000FC50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC50) - Data: 06 F0  returns 0x02 (0000ms, 1361ms total)
T6F00 013:351 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 1361ms total)
T6F00 013:351 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000)
 -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0081ms, 1442ms total)
T6F00 013:432 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 1442ms total)
T6F00 013:433 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 1443ms total)
T6F00 013:439 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0003ms, 1446ms total)
T6F00 013:442 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 1447ms total)
T6F00 013:443 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 1448ms total)
T6F00 013:444 JLINK_ReadMemEx(0x0300373C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0300373C) - Data: FC F7 C0 FC 80 B5 0D 49 08 68 00 28 00 D4 80 BD ...  returns 0x3C (0003ms, 1451ms total)
T6F00 013:447 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0001ms, 1452ms total)
T6F00 013:448 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 1453ms total)
T6F00 013:449 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0002ms, 1455ms total)
T6F00 013:451 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0002ms, 1457ms total)
T6F00 013:453 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0002ms, 1459ms total)
T6F00 013:455 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 1460ms total)
T6F00 013:456 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0002ms, 1462ms total)
T6F00 013:458 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0002ms, 1464ms total)
T6F00 013:460 JLINK_ReadMemEx(0x03003744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003744) - Data: 08 68 00 28 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 ...  returns 0x3C (0002ms, 1466ms total)
T6F00 013:462 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0001ms, 1467ms total)
T6F00 013:463 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 1468ms total)
T6F00 013:464 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 1469ms total)
T6F00 013:465 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0003ms, 1472ms total)
T6F00 013:468 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 1473ms total)
T6F00 013:469 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0002ms, 1475ms total)
T6F00 013:471 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0002ms, 1477ms total)
T6F00 013:473 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0000ms, 1477ms total)
T6F00 013:477 JLINK_ReadMemEx(0x0000FC56, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000FC40) -- Updating C cache (64 bytes @ 0x0000FC40) -- Read from C cache (2 bytes @ 0x0000FC56) - Data: 12 79  returns 0x02 (0003ms, 1480ms total)
T6F00 013:480 JLINK_ReadMemEx(0x0000FC58, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000FC80) -- Updating C cache (64 bytes @ 0x0000FC80) -- Read from C cache (60 bytes @ 0x0000FC58) - Data: 52 00 97 44 24 2E 31 31 31 31 31 31 31 31 31 31 ...  returns 0x3C (0003ms, 1483ms total)
T6F00 013:483 JLINK_ReadMemEx(0x0000FC58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC58) - Data: 52 00  returns 0x02 (0001ms, 1484ms total)
T6F00 013:484 JLINK_ReadMemEx(0x0000FC58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FC58) - Data: 52 00 97 44 24 2E 31 31 31 31 31 31 31 31 31 31 ...  returns 0x3C (0000ms, 1484ms total)
T6F00 013:484 JLINK_ReadMemEx(0x0000FC58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC58) - Data: 52 00  returns 0x02 (0000ms, 1484ms total)
T6F00 013:484 JLINK_ReadMemEx(0x0000FC5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC5A) - Data: 97 44  returns 0x02 (0000ms, 1484ms total)
T6F00 013:484 JLINK_ReadMemEx(0x0000FC5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC5A) - Data: 97 44  returns 0x02 (0000ms, 1484ms total)
T6F00 013:484 JLINK_ReadMemEx(0x0000FC5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FC5C) - Data: 24 2E 31 31 31 31 31 31 31 31 31 31 31 31 31 31 ...  returns 0x3C (0000ms, 1484ms total)
T6F00 013:484 JLINK_ReadMemEx(0x0000FC5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC5C) - Data: 24 2E  returns 0x02 (0001ms, 1485ms total)
T6F00 013:485 JLINK_ReadMemEx(0x0000FC5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FC5C) - Data: 24 2E 31 31 31 31 31 31 31 31 31 31 31 31 31 31 ...  returns 0x3C (0000ms, 1485ms total)
T6F00 013:485 JLINK_ReadMemEx(0x0000FC5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC5C) - Data: 24 2E  returns 0x02 (0000ms, 1485ms total)
T6F00 013:485 JLINK_ReadMemEx(0x0000FC5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC5E) - Data: 31 31  returns 0x02 (0000ms, 1485ms total)
T6F00 013:485 JLINK_ReadMemEx(0x0000FC5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC5E) - Data: 31 31  returns 0x02 (0000ms, 1485ms total)
T6F00 013:485 JLINK_ReadMemEx(0x0000FC60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FC60) - Data: 31 31 31 31 31 31 31 31 31 31 31 31 18 31 31 31 ...  returns 0x3C (0000ms, 1485ms total)
T6F00 013:485 JLINK_ReadMemEx(0x0000FC60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC60) - Data: 31 31  returns 0x02 (0000ms, 1485ms total)
T6F00 013:632 JLINK_ReadReg(R0)  returns 0x0000FBCD (0000ms, 1485ms total)
T6F00 013:632 JLINK_ReadReg(R1)  returns 0x0202BCC4 (0000ms, 1485ms total)
T6F00 013:632 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 1485ms total)
T6F00 013:632 JLINK_ReadReg(R3)  returns 0x0001C68B (0000ms, 1485ms total)
T6F00 013:632 JLINK_ReadReg(R4)  returns 0x00021E9C (0000ms, 1485ms total)
T6F00 013:632 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 1485ms total)
T6F00 013:632 JLINK_ReadReg(R6)  returns 0x00021E9C (0000ms, 1485ms total)
T6F00 013:632 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 1485ms total)
T6F00 013:632 JLINK_ReadReg(R8)  returns 0x04001000 (0000ms, 1485ms total)
T6F00 013:632 JLINK_ReadReg(R9)  returns 0x010A028A (0000ms, 1485ms total)
T6F00 013:632 JLINK_ReadReg(R10)  returns 0x00100081 (0000ms, 1485ms total)
T6F00 013:632 JLINK_ReadReg(R11)  returns 0x08008000 (0001ms, 1486ms total)
T6F00 013:633 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1486ms total)
T6F00 013:633 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 1486ms total)
T6F00 013:633 JLINK_ReadReg(R14)  returns 0x00000BD9 (0000ms, 1486ms total)
T6F00 013:633 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 1486ms total)
T6F00 013:633 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 1486ms total)
T6F00 013:633 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 1486ms total)
T6F00 013:633 JLINK_ReadReg(PSP)  returns 0x02028800 (0000ms, 1486ms total)
T6F00 013:633 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1486ms total)
T6F00 013:633 JLINK_ReadMemEx(0x0202A2F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A2F2) - Data: 00  returns 0x01 (0001ms, 1487ms total)
T6F00 013:634 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x020266C0) -- Updating C cache (128 bytes @ 0x020266C0) -- Read from C cache (32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0005ms, 1492ms total)
T6F00 013:643 JLINK_ReadMemEx(0x020280F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020280F2) - Data: 00 00  returns 0x02 (0001ms, 1493ms total)
T6F00 013:649 JLINK_ReadMemEx(0x0202A4C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A4C8) - Data: 00  returns 0x01 (0001ms, 1494ms total)
T6F00 013:650 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1495ms total)
T6F00 013:651 JLINK_ReadMemEx(0x02028498, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02028498) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0003ms, 1498ms total)
T6F00 013:654 JLINK_ReadMemEx(0x020274E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020274C0) -- Updating C cache (64 bytes @ 0x020274C0) -- Read from C cache (4 bytes @ 0x020274E8) - Data: 00 00 00 00  returns 0x04 (0002ms, 1500ms total)
T6F00 013:658 JLINK_ReadMemEx(0x0202B6F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B6F4) - Data: 00  returns 0x01 (0001ms, 1502ms total)
T6F00 013:659 JLINK_ReadMemEx(0x0202A61E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A61E) - Data: 00  returns 0x01 (0001ms, 1503ms total)
T6F00 013:660 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1503ms total)
T6F00 013:660 JLINK_ReadMemEx(0x0202A5A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A5A0) - Data: 00  returns 0x01 (0001ms, 1504ms total)
T6F00 013:661 JLINK_ReadMemEx(0x0202BC1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202BC1E) - Data: 00 00  returns 0x02 (0001ms, 1505ms total)
T6F00 013:662 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1506ms total)
T6F00 013:663 JLINK_ReadMemEx(0x020280C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020280C1) - Data: 00  returns 0x01 (0002ms, 1508ms total)
T5620 013:962 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0000ms, 1508ms total)
T5620 013:962 JLINK_SetBPEx(Addr = 0x0000FC56, Type = 0xFFFFFFF2)  returns 0x00000002 (0000ms, 1508ms total)
T5620 013:962 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0011ms, 1519ms total)
T5620 014:074 JLINK_IsHalted()  returns FALSE (0001ms, 1520ms total)
T5620 014:176 JLINK_IsHalted()  returns TRUE (0008ms, 1527ms total)
T5620 014:184 JLINK_Halt()  returns 0x00 (0000ms, 1519ms total)
T5620 014:184 JLINK_IsHalted()  returns TRUE (0000ms, 1519ms total)
T5620 014:184 JLINK_IsHalted()  returns TRUE (0000ms, 1519ms total)
T5620 014:184 JLINK_IsHalted()  returns TRUE (0000ms, 1519ms total)
T5620 014:184 JLINK_ReadReg(R15 (PC))  returns 0x0000FC56 (0000ms, 1519ms total)
T5620 014:184 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1519ms total)
T5620 014:184 JLINK_ClrBPEx(BPHandle = 0x00000002)  returns 0x00 (0000ms, 1519ms total)
T5620 014:184 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0002ms, 1521ms total)
T5620 014:186 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1522ms total)
T5620 014:187 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 1523ms total)
T5620 014:188 JLINK_ReadReg(R0)  returns 0x00000011 (0000ms, 1523ms total)
T5620 014:188 JLINK_ReadReg(R1)  returns 0x0000FC55 (0000ms, 1523ms total)
T5620 014:188 JLINK_ReadReg(R2)  returns 0x00000408 (0000ms, 1523ms total)
T5620 014:188 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 1523ms total)
T5620 014:188 JLINK_ReadReg(R4)  returns 0x00000001 (0000ms, 1523ms total)
T5620 014:188 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 1523ms total)
T5620 014:188 JLINK_ReadReg(R6)  returns 0x0013D000 (0000ms, 1523ms total)
T5620 014:188 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 1523ms total)
T5620 014:188 JLINK_ReadReg(R8)  returns 0x04001000 (0000ms, 1523ms total)
T5620 014:188 JLINK_ReadReg(R9)  returns 0x010A028A (0000ms, 1523ms total)
T5620 014:188 JLINK_ReadReg(R10)  returns 0x00100081 (0001ms, 1524ms total)
T5620 014:189 JLINK_ReadReg(R11)  returns 0x08008000 (0000ms, 1524ms total)
T5620 014:189 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1524ms total)
T5620 014:189 JLINK_ReadReg(R13 (SP))  returns 0x0202F7C8 (0000ms, 1524ms total)
T5620 014:189 JLINK_ReadReg(R14)  returns 0x00016455 (0000ms, 1524ms total)
T5620 014:189 JLINK_ReadReg(R15 (PC))  returns 0x0000FC56 (0000ms, 1524ms total)
T5620 014:189 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1524ms total)
T5620 014:189 JLINK_ReadReg(MSP)  returns 0x0202F7C8 (0000ms, 1524ms total)
T5620 014:189 JLINK_ReadReg(PSP)  returns 0x02028800 (0000ms, 1524ms total)
T5620 014:189 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1524ms total)
T6F00 014:190 JLINK_ReadMemEx(0x0202F7FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7FC) - Data: D9 0B 00 00  returns 0x04 (0001ms, 1525ms total)
T6F00 014:210 JLINK_ReadMemEx(0x0202A2F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A2F2) - Data: 00  returns 0x01 (0003ms, 1528ms total)
T6F00 014:213 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x020266C0) -- Updating C cache (128 bytes @ 0x020266C0) -- Read from C cache (32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0005ms, 1533ms total)
T6F00 014:223 JLINK_ReadMemEx(0x020280F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020280F2) - Data: 00 00  returns 0x02 (0002ms, 1535ms total)
T6F00 014:228 JLINK_ReadMemEx(0x0202A4C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A4C8) - Data: 00  returns 0x01 (0001ms, 1536ms total)
T6F00 014:229 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1537ms total)
T6F00 014:232 JLINK_ReadMemEx(0x02028498, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02028498) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1539ms total)
T6F00 014:234 JLINK_ReadMemEx(0x020274E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020274C0) -- Updating C cache (64 bytes @ 0x020274C0) -- Read from C cache (4 bytes @ 0x020274E8) - Data: 34 12 00 00  returns 0x04 (0003ms, 1542ms total)
T6F00 014:238 JLINK_ReadMemEx(0x0202B6F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B6F4) - Data: 00  returns 0x01 (0001ms, 1543ms total)
T6F00 014:239 JLINK_ReadMemEx(0x0202A61E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A61E) - Data: 00  returns 0x01 (0000ms, 1543ms total)
T6F00 014:239 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1543ms total)
T6F00 014:239 JLINK_ReadMemEx(0x0202A5A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A5A0) - Data: 00  returns 0x01 (0002ms, 1545ms total)
T6F00 014:241 JLINK_ReadMemEx(0x0202BC1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202BC1E) - Data: 00 00  returns 0x02 (0001ms, 1546ms total)
T6F00 014:242 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1547ms total)
T6F00 014:243 JLINK_ReadMemEx(0x020280C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020280C1) - Data: 00  returns 0x01 (0002ms, 1549ms total)
T6F00 018:839 JLINK_ReadMemEx(0x0000FC4C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0000FC40) -- Updating C cache (128 bytes @ 0x0000FC40) -- Read from C cache (60 bytes @ 0x0000FC4C) - Data: B3 A2 01 46 06 F0 12 FD 11 20 FE F7 73 FC 00 28 ...  returns 0x3C (0006ms, 1555ms total)
T6F00 018:845 JLINK_ReadMemEx(0x0000FC4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC4C) - Data: B3 A2  returns 0x02 (0000ms, 1555ms total)
T6F00 018:845 JLINK_ReadMemEx(0x0000FC4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC4E) - Data: 01 46  returns 0x02 (0000ms, 1555ms total)
T6F00 018:845 JLINK_ReadMemEx(0x0000FC4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC4E) - Data: 01 46  returns 0x02 (0000ms, 1555ms total)
T6F00 018:845 JLINK_ReadMemEx(0x0000FC50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FC50) - Data: 06 F0 12 FD 11 20 FE F7 73 FC 00 28 00 D1 9C E0 ...  returns 0x3C (0000ms, 1555ms total)
T6F00 018:845 JLINK_ReadMemEx(0x0000FC50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC50) - Data: 06 F0  returns 0x02 (0000ms, 1555ms total)
T5620 021:798 JLINK_ReadMemEx(0x0000FC56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC56) - Data: FE F7  returns 0x02 (0000ms, 1555ms total)
T5620 021:798 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000FC56) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from C cache (2 bytes @ 0x0000FC58) -- Simulated  returns 0x00 (0006ms, 1561ms total)
T5620 021:804 JLINK_ReadReg(R15 (PC))  returns 0x0000E540 (0000ms, 1561ms total)
T5620 021:804 JLINK_ReadReg(XPSR)  returns 0x21000000 (0001ms, 1562ms total)
T5620 021:805 JLINK_SetBPEx(Addr = 0x0000FC56, Type = 0xFFFFFFF2)  returns 0x00000003 (0000ms, 1562ms total)
T5620 021:805 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0006ms, 1568ms total)
T5620 021:913 JLINK_IsHalted()  returns FALSE (0000ms, 1568ms total)
T5620 022:014 JLINK_IsHalted()  returns FALSE (0001ms, 1569ms total)
T5620 022:115 JLINK_IsHalted()  returns FALSE (0001ms, 1569ms total)
T5620 022:217 JLINK_IsHalted()  returns FALSE (0001ms, 1569ms total)
T6F00 022:357 JLINK_ReadMemEx(0x0202A2F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A2F2) - Data: 00  returns 0x01 (0001ms, 1569ms total)
T6F00 022:358 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1571ms total)
T6F00 022:361 JLINK_ReadMemEx(0x020280F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020280F2) - Data: 00 00  returns 0x02 (0001ms, 1572ms total)
T6F00 022:363 JLINK_ReadMemEx(0x0202A4C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A4C8) - Data: 00  returns 0x01 (0002ms, 1574ms total)
T6F00 022:365 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1575ms total)
T6F00 022:367 JLINK_ReadMemEx(0x02028498, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02028498) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1576ms total)
T6F00 022:368 JLINK_ReadMemEx(0x020274E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020274E8) - Data: 34 12 00 00  returns 0x04 (0000ms, 1576ms total)
T6F00 022:370 JLINK_ReadMemEx(0x0202B6F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B6F4) - Data: 00  returns 0x01 (0001ms, 1577ms total)
T6F00 022:371 JLINK_ReadMemEx(0x0202A61E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A61E) - Data: 00  returns 0x01 (0001ms, 1578ms total)
T6F00 022:372 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1580ms total)
T6F00 022:374 JLINK_ReadMemEx(0x0202A5A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A5A0) - Data: 00  returns 0x01 (0001ms, 1581ms total)
T6F00 022:375 JLINK_ReadMemEx(0x0202BC1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202BC1E) - Data: 00 00  returns 0x02 (0001ms, 1582ms total)
T6F00 022:376 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1583ms total)
T6F00 022:377 JLINK_ReadMemEx(0x020280C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020280C1) - Data: 00  returns 0x01 (0002ms, 1585ms total)
T5620 022:380 JLINK_IsHalted()  returns FALSE (0002ms, 1587ms total)
T5620 022:483 JLINK_IsHalted()  returns FALSE (0001ms, 1586ms total)
T5620 022:585 JLINK_IsHalted()  returns FALSE (0001ms, 1586ms total)
T5620 022:687 JLINK_IsHalted()  returns FALSE (0001ms, 1586ms total)
T5620 022:789 JLINK_IsHalted()  returns FALSE (0001ms, 1586ms total)
T6F00 022:928 JLINK_ReadMemEx(0x0202A2F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A2F2) - Data: 00  returns 0x01 (0001ms, 1586ms total)
T6F00 022:929 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1588ms total)
T6F00 022:931 JLINK_ReadMemEx(0x020280F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020280F2) - Data: 00 00  returns 0x02 (0002ms, 1590ms total)
T6F00 022:934 JLINK_ReadMemEx(0x0202A4C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A4C8) - Data: 00  returns 0x01 (0001ms, 1591ms total)
T6F00 022:935 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1592ms total)
T6F00 022:939 JLINK_ReadMemEx(0x02028498, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02028498) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1594ms total)
T6F00 022:941 JLINK_ReadMemEx(0x020274E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020274E8) - Data: 34 12 00 00  returns 0x04 (0001ms, 1595ms total)
T6F00 022:942 JLINK_ReadMemEx(0x0202B6F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B6F4) - Data: 00  returns 0x01 (0001ms, 1596ms total)
T6F00 022:943 JLINK_ReadMemEx(0x0202A61E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A61E) - Data: 00  returns 0x01 (0001ms, 1597ms total)
T6F00 022:944 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1599ms total)
T6F00 022:946 JLINK_ReadMemEx(0x0202A5A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A5A0) - Data: 00  returns 0x01 (0001ms, 1600ms total)
T6F00 022:947 JLINK_ReadMemEx(0x0202BC1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202BC1E) - Data: 00 00  returns 0x02 (0002ms, 1602ms total)
T6F00 022:949 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1603ms total)
T6F00 022:950 JLINK_ReadMemEx(0x020280C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020280C1) - Data: 00  returns 0x01 (0001ms, 1604ms total)
T5620 022:952 JLINK_IsHalted()  returns FALSE (0001ms, 1605ms total)
T5620 023:054 JLINK_IsHalted()  returns FALSE (0001ms, 1605ms total)
T5620 023:156 JLINK_IsHalted()  returns FALSE (0000ms, 1604ms total)
T5620 023:258 JLINK_IsHalted()  returns FALSE (0001ms, 1605ms total)
T5620 023:360 JLINK_IsHalted()  returns FALSE (0001ms, 1605ms total)
T6F00 023:509 JLINK_ReadMemEx(0x0202A2F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A2F2) - Data: 00  returns 0x01 (0002ms, 1606ms total)
T6F00 023:511 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1608ms total)
T6F00 023:515 JLINK_ReadMemEx(0x020280F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020280F2) - Data: 00 00  returns 0x02 (0002ms, 1610ms total)
T6F00 023:519 JLINK_ReadMemEx(0x0202A4C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A4C8) - Data: 00  returns 0x01 (0001ms, 1611ms total)
T6F00 023:520 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1612ms total)
T6F00 023:522 JLINK_ReadMemEx(0x02028498, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02028498) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1613ms total)
T6F00 023:523 JLINK_ReadMemEx(0x020274E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020274E8) - Data: 34 12 00 00  returns 0x04 (0002ms, 1615ms total)
T6F00 023:525 JLINK_ReadMemEx(0x0202B6F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B6F4) - Data: 00  returns 0x01 (0000ms, 1615ms total)
T6F00 023:525 JLINK_ReadMemEx(0x0202A61E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A61E) - Data: 00  returns 0x01 (0001ms, 1616ms total)
T6F00 023:526 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1618ms total)
T6F00 023:528 JLINK_ReadMemEx(0x0202A5A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A5A0) - Data: 00  returns 0x01 (0002ms, 1620ms total)
T6F00 023:530 JLINK_ReadMemEx(0x0202BC1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202BC1E) - Data: 00 00  returns 0x02 (0001ms, 1621ms total)
T6F00 023:531 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1622ms total)
T6F00 023:532 JLINK_ReadMemEx(0x020280C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020280C1) - Data: 00  returns 0x01 (0001ms, 1623ms total)
T5620 023:534 JLINK_IsHalted()  returns FALSE (0001ms, 1624ms total)
T5620 023:636 JLINK_IsHalted()  returns FALSE (0000ms, 1623ms total)
T5620 023:738 JLINK_IsHalted()  returns FALSE (0001ms, 1624ms total)
T5620 023:839 JLINK_IsHalted()  returns FALSE (0001ms, 1624ms total)
T5620 023:941 JLINK_IsHalted()  returns FALSE (0001ms, 1624ms total)
T6F00 024:082 JLINK_ReadMemEx(0x0202A2F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A2F2) - Data: 00  returns 0x01 (0001ms, 1624ms total)
T6F00 024:084 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1626ms total)
T6F00 024:087 JLINK_ReadMemEx(0x020280F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020280F2) - Data: 00 00  returns 0x02 (0001ms, 1627ms total)
T6F00 024:090 JLINK_ReadMemEx(0x0202A4C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A4C8) - Data: 00  returns 0x01 (0001ms, 1628ms total)
T6F00 024:091 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1629ms total)
T6F00 024:094 JLINK_ReadMemEx(0x02028498, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02028498) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1631ms total)
T6F00 024:096 JLINK_ReadMemEx(0x020274E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020274E8) - Data: 34 12 00 00  returns 0x04 (0001ms, 1632ms total)
T6F00 024:097 JLINK_ReadMemEx(0x0202B6F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B6F4) - Data: 00  returns 0x01 (0001ms, 1633ms total)
T6F00 024:098 JLINK_ReadMemEx(0x0202A61E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A61E) - Data: 00  returns 0x01 (0001ms, 1634ms total)
T6F00 024:099 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1636ms total)
T6F00 024:101 JLINK_ReadMemEx(0x0202A5A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A5A0) - Data: 00  returns 0x01 (0001ms, 1637ms total)
T6F00 024:102 JLINK_ReadMemEx(0x0202BC1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202BC1E) - Data: 00 00  returns 0x02 (0001ms, 1638ms total)
T6F00 024:103 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1639ms total)
T6F00 024:104 JLINK_ReadMemEx(0x020280C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020280C1) - Data: 00  returns 0x01 (0001ms, 1640ms total)
T5620 024:108 JLINK_IsHalted()  returns FALSE (0001ms, 1641ms total)
T5620 024:210 JLINK_IsHalted()  returns FALSE (0001ms, 1641ms total)
T5620 024:313 JLINK_IsHalted()  returns FALSE (0000ms, 1640ms total)
T5620 024:414 JLINK_IsHalted()  returns FALSE (0001ms, 1641ms total)
T5620 024:517 JLINK_IsHalted()  returns FALSE (0001ms, 1641ms total)
T6F00 024:652 JLINK_ReadMemEx(0x0202A2F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A2F2) - Data: 00  returns 0x01 (0001ms, 1641ms total)
T6F00 024:653 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1643ms total)
T6F00 024:656 JLINK_ReadMemEx(0x020280F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020280F2) - Data: 00 00  returns 0x02 (0001ms, 1644ms total)
T6F00 024:658 JLINK_ReadMemEx(0x0202A4C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A4C8) - Data: 00  returns 0x01 (0001ms, 1645ms total)
T6F00 024:659 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1646ms total)
T6F00 024:662 JLINK_ReadMemEx(0x02028498, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02028498) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1647ms total)
T6F00 024:663 JLINK_ReadMemEx(0x020274E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020274E8) - Data: 34 12 00 00  returns 0x04 (0002ms, 1649ms total)
T6F00 024:665 JLINK_ReadMemEx(0x0202B6F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B6F4) - Data: 00  returns 0x01 (0001ms, 1650ms total)
T6F00 024:666 JLINK_ReadMemEx(0x0202A61E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A61E) - Data: 00  returns 0x01 (0000ms, 1650ms total)
T6F00 024:666 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1652ms total)
T6F00 024:668 JLINK_ReadMemEx(0x0202A5A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A5A0) - Data: 00  returns 0x01 (0001ms, 1653ms total)
T6F00 024:669 JLINK_ReadMemEx(0x0202BC1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202BC1E) - Data: 00 00  returns 0x02 (0001ms, 1654ms total)
T6F00 024:670 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1655ms total)
T6F00 024:671 JLINK_ReadMemEx(0x020280C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020280C1) - Data: 00  returns 0x01 (0001ms, 1656ms total)
T5620 024:673 JLINK_IsHalted()  returns FALSE (0001ms, 1657ms total)
T5620 024:775 JLINK_IsHalted()  returns FALSE (0001ms, 1657ms total)
T5620 024:877 JLINK_IsHalted()  returns FALSE (0000ms, 1656ms total)
T5620 024:979 JLINK_IsHalted()  returns FALSE (0001ms, 1657ms total)
T5620 025:081 JLINK_IsHalted()  returns FALSE (0001ms, 1657ms total)
T6F00 025:214 JLINK_ReadMemEx(0x0202A2F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A2F2) - Data: 00  returns 0x01 (0002ms, 1658ms total)
T6F00 025:216 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1660ms total)
T6F00 025:219 JLINK_ReadMemEx(0x020280F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020280F2) - Data: 00 00  returns 0x02 (0001ms, 1661ms total)
T6F00 025:221 JLINK_ReadMemEx(0x0202A4C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A4C8) - Data: 00  returns 0x01 (0001ms, 1662ms total)
T6F00 025:223 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1663ms total)
T6F00 025:224 JLINK_ReadMemEx(0x02028498, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02028498) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1665ms total)
T6F00 025:226 JLINK_ReadMemEx(0x020274E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020274E8) - Data: 34 12 00 00  returns 0x04 (0002ms, 1667ms total)
T6F00 025:228 JLINK_ReadMemEx(0x0202B6F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B6F4) - Data: 00  returns 0x01 (0001ms, 1668ms total)
T6F00 025:229 JLINK_ReadMemEx(0x0202A61E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A61E) - Data: 00  returns 0x01 (0001ms, 1669ms total)
T6F00 025:230 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1671ms total)
T6F00 025:232 JLINK_ReadMemEx(0x0202A5A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A5A0) - Data: 00  returns 0x01 (0001ms, 1672ms total)
T6F00 025:233 JLINK_ReadMemEx(0x0202BC1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202BC1E) - Data: 00 00  returns 0x02 (0001ms, 1673ms total)
T6F00 025:234 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1674ms total)
T6F00 025:235 JLINK_ReadMemEx(0x020280C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020280C1) - Data: 00  returns 0x01 (0001ms, 1675ms total)
T5620 025:238 JLINK_IsHalted()  returns FALSE (0001ms, 1676ms total)
T5620 025:340 JLINK_IsHalted()  returns FALSE (0000ms, 1675ms total)
T5620 025:442 JLINK_IsHalted()  returns FALSE (0000ms, 1675ms total)
T5620 025:544 JLINK_IsHalted()  returns FALSE (0001ms, 1676ms total)
T5620 025:645 JLINK_IsHalted()  returns FALSE (0001ms, 1676ms total)
T6F00 025:779 JLINK_ReadMemEx(0x0202A2F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A2F2) - Data: 00  returns 0x01 (0001ms, 1676ms total)
T6F00 025:780 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1678ms total)
T6F00 025:784 JLINK_ReadMemEx(0x020280F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020280F2) - Data: 00 00  returns 0x02 (0001ms, 1679ms total)
T6F00 025:787 JLINK_ReadMemEx(0x0202A4C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A4C8) - Data: 00  returns 0x01 (0002ms, 1681ms total)
T6F00 025:789 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1682ms total)
T6F00 025:790 JLINK_ReadMemEx(0x02028498, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02028498) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1684ms total)
T6F00 025:792 JLINK_ReadMemEx(0x020274E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020274E8) - Data: 34 12 00 00  returns 0x04 (0002ms, 1686ms total)
T6F00 025:794 JLINK_ReadMemEx(0x0202B6F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B6F4) - Data: 00  returns 0x01 (0001ms, 1687ms total)
T6F00 025:795 JLINK_ReadMemEx(0x0202A61E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A61E) - Data: 00  returns 0x01 (0001ms, 1688ms total)
T6F00 025:796 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1689ms total)
T6F00 025:797 JLINK_ReadMemEx(0x0202A5A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A5A0) - Data: 00  returns 0x01 (0001ms, 1690ms total)
T6F00 025:798 JLINK_ReadMemEx(0x0202BC1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202BC1E) - Data: 00 00  returns 0x02 (0001ms, 1691ms total)
T6F00 025:799 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0002ms, 1693ms total)
T6F00 025:801 JLINK_ReadMemEx(0x020280C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020280C1) - Data: 00  returns 0x01 (0001ms, 1694ms total)
T5620 025:802 JLINK_IsHalted()  returns FALSE (0001ms, 1695ms total)
T5620 025:904 JLINK_IsHalted()  returns FALSE (0000ms, 1694ms total)
T5620 026:006 JLINK_IsHalted()  returns FALSE (0001ms, 1695ms total)
T5620 026:107 JLINK_IsHalted()  returns FALSE (0001ms, 1695ms total)
T5620 026:209 JLINK_IsHalted()  returns FALSE (0002ms, 1696ms total)
T6F00 026:381 JLINK_ReadMemEx(0x0202A2F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A2F2) - Data: 00  returns 0x01 (0000ms, 1694ms total)
T6F00 026:381 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1696ms total)
T6F00 026:384 JLINK_ReadMemEx(0x020280F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020280F2) - Data: 00 00  returns 0x02 (0001ms, 1697ms total)
T6F00 026:386 JLINK_ReadMemEx(0x0202A4C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A4C8) - Data: 00  returns 0x01 (0001ms, 1698ms total)
T6F00 026:387 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1699ms total)
T6F00 026:389 JLINK_ReadMemEx(0x02028498, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02028498) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0003ms, 1702ms total)
T6F00 026:392 JLINK_ReadMemEx(0x020274E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020274E8) - Data: 34 12 00 00  returns 0x04 (0001ms, 1703ms total)
T6F00 026:393 JLINK_ReadMemEx(0x0202B6F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B6F4) - Data: 00  returns 0x01 (0001ms, 1704ms total)
T6F00 026:394 JLINK_ReadMemEx(0x0202A61E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A61E) - Data: 00  returns 0x01 (0001ms, 1705ms total)
T6F00 026:395 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1707ms total)
T6F00 026:397 JLINK_ReadMemEx(0x0202A5A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A5A0) - Data: 00  returns 0x01 (0001ms, 1708ms total)
T6F00 026:398 JLINK_ReadMemEx(0x0202BC1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202BC1E) - Data: 00 00  returns 0x02 (0001ms, 1709ms total)
T6F00 026:400 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1711ms total)
T6F00 026:401 JLINK_ReadMemEx(0x020280C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020280C1) - Data: 00  returns 0x01 (0001ms, 1712ms total)
T5620 026:402 JLINK_IsHalted()  returns FALSE (0001ms, 1713ms total)
T5620 026:504 JLINK_IsHalted()  returns FALSE (0001ms, 1713ms total)
T5620 026:606 JLINK_IsHalted()  returns FALSE (0001ms, 1713ms total)
T5620 026:708 JLINK_IsHalted()  returns FALSE (0000ms, 1712ms total)
T5620 026:809 JLINK_IsHalted()  returns FALSE (0001ms, 1713ms total)
T6F00 026:944 JLINK_ReadMemEx(0x0202A2F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A2F2) - Data: 00  returns 0x01 (0001ms, 1713ms total)
T6F00 026:945 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1715ms total)
T6F00 026:948 JLINK_ReadMemEx(0x020280F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020280F2) - Data: 00 00  returns 0x02 (0001ms, 1716ms total)
T6F00 026:951 JLINK_ReadMemEx(0x0202A4C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A4C8) - Data: 00  returns 0x01 (0001ms, 1717ms total)
T6F00 026:952 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1718ms total)
T6F00 026:953 JLINK_ReadMemEx(0x02028498, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02028498) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1720ms total)
T6F00 026:955 JLINK_ReadMemEx(0x020274E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020274E8) - Data: 34 12 00 00  returns 0x04 (0001ms, 1721ms total)
T6F00 026:956 JLINK_ReadMemEx(0x0202B6F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B6F4) - Data: 00  returns 0x01 (0001ms, 1722ms total)
T6F00 026:957 JLINK_ReadMemEx(0x0202A61E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A61E) - Data: 00  returns 0x01 (0001ms, 1723ms total)
T6F00 026:959 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1725ms total)
T6F00 026:961 JLINK_ReadMemEx(0x0202A5A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A5A0) - Data: 00  returns 0x01 (0001ms, 1726ms total)
T6F00 026:962 JLINK_ReadMemEx(0x0202BC1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202BC1E) - Data: 00 00  returns 0x02 (0001ms, 1727ms total)
T6F00 026:963 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1728ms total)
T6F00 026:964 JLINK_ReadMemEx(0x020280C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020280C1) - Data: 00  returns 0x01 (0001ms, 1729ms total)
T5620 026:966 JLINK_IsHalted()  returns FALSE (0001ms, 1730ms total)
T5620 027:068 JLINK_IsHalted()  returns FALSE (0001ms, 1730ms total)
T5620 027:170 JLINK_IsHalted()  returns FALSE (0001ms, 1730ms total)
T5620 027:271 JLINK_IsHalted()  returns FALSE (0001ms, 1730ms total)
T6F00 027:361 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 1729ms total)
T6F00 027:361 JLINK_ResetNoHalt() >0x10B TIF>Found SW-DP with ID 0x0BB11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>AP map detection skipped. Manually configured AP map found.AP[0]: AHB-AP (IDR: Not set) >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 found
AP[0]: AHB-AP ROM base: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC200. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p0, Little endian. -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ E00FF000
 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB
                JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running
 -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0081ms, 0081ms total)
                JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0009ms, 0090ms total)
               (0218ms, 1947ms total)
T6F00 027:612 JLINK_ReadMemEx(0x0202A2F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A2F2) - Data: 00  returns 0x01 (0001ms, 1948ms total)
T6F00 027:613 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1950ms total)
T6F00 027:616 JLINK_ReadMemEx(0x020280F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020280F2) - Data: 00 00  returns 0x02 (0001ms, 1951ms total)
T6F00 027:618 JLINK_ReadMemEx(0x0202A4C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A4C8) - Data: 00  returns 0x01 (0001ms, 1952ms total)
T6F00 027:619 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1953ms total)
T6F00 027:623 JLINK_ReadMemEx(0x02028498, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02028498) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1955ms total)
T6F00 027:625 JLINK_ReadMemEx(0x020274E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x020274E8) - Data: 34 12 00 00  returns 0x04 (0000ms, 1955ms total)
T6F00 027:625 JLINK_ReadMemEx(0x0202B6F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B6F4) - Data: 00  returns 0x01 (0002ms, 1957ms total)
T6F00 027:627 JLINK_ReadMemEx(0x0202A61E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A61E) - Data: 00  returns 0x01 (0001ms, 1958ms total)
T6F00 027:628 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0002ms, 1960ms total)
T6F00 027:630 JLINK_ReadMemEx(0x0202A5A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A5A0) - Data: 00  returns 0x01 (0001ms, 1961ms total)
T6F00 027:631 JLINK_ReadMemEx(0x0202BC1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202BC1E) - Data: 00 00  returns 0x02 (0002ms, 1963ms total)
T6F00 027:633 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1964ms total)
T6F00 027:634 JLINK_ReadMemEx(0x020280C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020280C1) - Data: 00  returns 0x01 (0001ms, 1965ms total)
T5620 027:637 JLINK_IsHalted()  returns FALSE (0001ms, 1966ms total)
T5620 027:739 JLINK_IsHalted()  returns TRUE (0009ms, 1974ms total)
T5620 027:748 JLINK_Halt()  returns 0x00 (0000ms, 1965ms total)
T5620 027:748 JLINK_IsHalted()  returns TRUE (0000ms, 1965ms total)
T5620 027:748 JLINK_IsHalted()  returns TRUE (0001ms, 1966ms total)
T5620 027:749 JLINK_IsHalted()  returns TRUE (0000ms, 1965ms total)
T5620 027:749 JLINK_ReadReg(R15 (PC))  returns 0x0000FC56 (0000ms, 1965ms total)
T5620 027:749 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1965ms total)
T5620 027:749 JLINK_ClrBPEx(BPHandle = 0x00000003)  returns 0x00 (0000ms, 1965ms total)
T5620 027:749 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1966ms total)
T5620 027:750 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1967ms total)
T5620 027:751 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 1968ms total)
T5620 027:752 JLINK_ReadReg(R0)  returns 0x00000011 (0000ms, 1968ms total)
T5620 027:752 JLINK_ReadReg(R1)  returns 0x0000FC55 (0000ms, 1968ms total)
T5620 027:752 JLINK_ReadReg(R2)  returns 0x00000408 (0000ms, 1968ms total)
T5620 027:752 JLINK_ReadReg(R3)  returns 0x00000000 (0000ms, 1968ms total)
T5620 027:752 JLINK_ReadReg(R4)  returns 0x00000001 (0000ms, 1968ms total)
T5620 027:752 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 1968ms total)
T5620 027:752 JLINK_ReadReg(R6)  returns 0x0013D000 (0000ms, 1968ms total)
T5620 027:753 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 1969ms total)
T5620 027:753 JLINK_ReadReg(R8)  returns 0x04001000 (0000ms, 1969ms total)
T5620 027:753 JLINK_ReadReg(R9)  returns 0x010A028A (0000ms, 1969ms total)
T5620 027:753 JLINK_ReadReg(R10)  returns 0x00100081 (0000ms, 1969ms total)
T5620 027:753 JLINK_ReadReg(R11)  returns 0x08008000 (0000ms, 1969ms total)
T5620 027:753 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1969ms total)
T5620 027:753 JLINK_ReadReg(R13 (SP))  returns 0x0202F7C8 (0000ms, 1969ms total)
T5620 027:753 JLINK_ReadReg(R14)  returns 0x00016455 (0000ms, 1969ms total)
T5620 027:753 JLINK_ReadReg(R15 (PC))  returns 0x0000FC56 (0000ms, 1969ms total)
T5620 027:753 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1969ms total)
T5620 027:753 JLINK_ReadReg(MSP)  returns 0x0202F7C8 (0000ms, 1969ms total)
T5620 027:753 JLINK_ReadReg(PSP)  returns 0x02028800 (0000ms, 1969ms total)
T5620 027:753 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1969ms total)
T6F00 027:754 JLINK_ReadMemEx(0x0202F7FC, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0202F7FC) - Data: D9 0B 00 00  returns 0x04 (0001ms, 1970ms total)
T6F00 027:790 JLINK_ReadMemEx(0x0202A2F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A2F2) - Data: 00  returns 0x01 (0002ms, 1972ms total)
T6F00 027:792 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x020266C0) -- Updating C cache (128 bytes @ 0x020266C0) -- Read from C cache (32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0005ms, 1977ms total)
T6F00 027:797 JLINK_ReadMemEx(0x020280F2, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x020280F2) - Data: 00 00  returns 0x02 (0002ms, 1979ms total)
T6F00 027:800 JLINK_ReadMemEx(0x0202A4C8, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A4C8) - Data: 00  returns 0x01 (0001ms, 1980ms total)
T6F00 027:801 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1981ms total)
T6F00 027:806 JLINK_ReadMemEx(0x02028498, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x02028498) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1982ms total)
T6F00 027:807 JLINK_ReadMemEx(0x020274E8, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020274C0) -- Updating C cache (64 bytes @ 0x020274C0) -- Read from C cache (4 bytes @ 0x020274E8) - Data: 34 12 00 00  returns 0x04 (0004ms, 1986ms total)
T6F00 027:811 JLINK_ReadMemEx(0x0202B6F4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B6F4) - Data: 00  returns 0x01 (0001ms, 1987ms total)
T6F00 027:812 JLINK_ReadMemEx(0x0202A61E, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A61E) - Data: 00  returns 0x01 (0001ms, 1988ms total)
T6F00 027:813 JLINK_ReadMemEx(0x020266E8, 0x0020 Bytes, ..., Flags = 0x02000000) -- Read from C cache (32 bytes @ 0x020266E8) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1988ms total)
T6F00 027:813 JLINK_ReadMemEx(0x0202A5A0, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202A5A0) - Data: 00  returns 0x01 (0000ms, 1988ms total)
T6F00 027:813 JLINK_ReadMemEx(0x0202BC1E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0202BC1E) - Data: 00 00  returns 0x02 (0001ms, 1989ms total)
T6F00 027:814 JLINK_ReadMemEx(0x0202B276, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0202B276) - Data: 00  returns 0x01 (0001ms, 1990ms total)
T6F00 027:815 JLINK_ReadMemEx(0x020280C1, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x020280C1) - Data: 00  returns 0x01 (0002ms, 1992ms total)
T6F00 027:819 JLINK_ReadMemEx(0x0000FC4C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0000FC40) -- Updating C cache (128 bytes @ 0x0000FC40) -- Read from C cache (60 bytes @ 0x0000FC4C) - Data: B3 A2 01 46 06 F0 12 FD 11 20 FE F7 73 FC 00 28 ...  returns 0x3C (0005ms, 1997ms total)
T6F00 027:824 JLINK_ReadMemEx(0x0000FC4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC4C) - Data: B3 A2  returns 0x02 (0000ms, 1997ms total)
T6F00 027:824 JLINK_ReadMemEx(0x0000FC4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC4E) - Data: 01 46  returns 0x02 (0001ms, 1998ms total)
T6F00 027:825 JLINK_ReadMemEx(0x0000FC4E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC4E) - Data: 01 46  returns 0x02 (0000ms, 1998ms total)
T6F00 027:825 JLINK_ReadMemEx(0x0000FC50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FC50) - Data: 06 F0 12 FD 11 20 FE F7 73 FC 00 28 00 D1 9C E0 ...  returns 0x3C (0000ms, 1998ms total)
T6F00 027:825 JLINK_ReadMemEx(0x0000FC50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC50) - Data: 06 F0  returns 0x02 (0000ms, 1998ms total)
T6F00 027:825 JLINK_ReadMemEx(0x0000FC50, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FC50) - Data: 06 F0 12 FD 11 20 FE F7 73 FC 00 28 00 D1 9C E0 ...  returns 0x3C (0000ms, 1998ms total)
T6F00 027:825 JLINK_ReadMemEx(0x0000FC50, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC50) - Data: 06 F0  returns 0x02 (0000ms, 1998ms total)
T6F00 027:825 JLINK_ReadMemEx(0x0000FC52, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC52) - Data: 12 FD  returns 0x02 (0000ms, 1998ms total)
T6F00 027:825 JLINK_ReadMemEx(0x0000FC54, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FC54) - Data: 11 20 FE F7 73 FC 00 28 00 D1 9C E0 00 26 30 46 ...  returns 0x3C (0000ms, 1998ms total)
T6F00 027:825 JLINK_ReadMemEx(0x0000FC54, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC54) - Data: 11 20  returns 0x02 (0000ms, 1998ms total)
T6F00 027:825 JLINK_ReadMemEx(0x0000FC56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC56) - Data: FE F7  returns 0x02 (0000ms, 1998ms total)
T6F00 027:825 JLINK_ReadMemEx(0x0000FC56, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC56) - Data: FE F7  returns 0x02 (0000ms, 1998ms total)
T6F00 027:825 JLINK_ReadMemEx(0x0000FC58, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FC58) - Data: 73 FC 00 28 00 D1 9C E0 00 26 30 46 FE F7 6C FC ...  returns 0x3C (0000ms, 1998ms total)
T6F00 027:825 JLINK_ReadMemEx(0x0000FC58, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC58) - Data: 73 FC  returns 0x02 (0000ms, 1998ms total)
T6F00 027:826 JLINK_ReadMemEx(0x0000FC5A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC5A) - Data: 00 28  returns 0x02 (0000ms, 1999ms total)
T6F00 027:826 JLINK_ReadMemEx(0x0000FC5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FC5C) - Data: 00 D1 9C E0 00 26 30 46 FE F7 6C FC B1 4D 6A 88 ...  returns 0x3C (0000ms, 1999ms total)
T6F00 027:826 JLINK_ReadMemEx(0x0000FC5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC5C) - Data: 00 D1  returns 0x02 (0000ms, 1999ms total)
T6F00 027:826 JLINK_ReadMemEx(0x0000FC5C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FC5C) - Data: 00 D1 9C E0 00 26 30 46 FE F7 6C FC B1 4D 6A 88 ...  returns 0x3C (0000ms, 1999ms total)
T6F00 027:826 JLINK_ReadMemEx(0x0000FC5C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC5C) - Data: 00 D1  returns 0x02 (0000ms, 1999ms total)
T6F00 027:826 JLINK_ReadMemEx(0x0000FC5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC5E) - Data: 9C E0  returns 0x02 (0000ms, 1999ms total)
T6F00 027:826 JLINK_ReadMemEx(0x0000FC5E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC5E) - Data: 9C E0  returns 0x02 (0000ms, 1999ms total)
T6F00 027:826 JLINK_ReadMemEx(0x0000FC60, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FC60) - Data: 00 26 30 46 FE F7 6C FC B1 4D 6A 88 D1 B2 13 0A ...  returns 0x3C (0000ms, 1999ms total)
T6F00 027:826 JLINK_ReadMemEx(0x0000FC60, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC60) - Data: 00 26  returns 0x02 (0000ms, 1999ms total)
T6F00 039:612 JLINK_ReadMemEx(0x0000FC44, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FC44) - Data: 28 46 0C F0 67 FC 03 20 B3 A2 01 46 06 F0 12 FD ...  returns 0x3C (0000ms, 1999ms total)
T6F00 039:612 JLINK_ReadMemEx(0x0000FC44, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC44) - Data: 28 46  returns 0x02 (0000ms, 1999ms total)
T6F00 039:612 JLINK_ReadMemEx(0x0000FC46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC46) - Data: 0C F0  returns 0x02 (0000ms, 1999ms total)
T6F00 039:612 JLINK_ReadMemEx(0x0000FC46, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC46) - Data: 0C F0  returns 0x02 (0000ms, 1999ms total)
T6F00 039:612 JLINK_ReadMemEx(0x0000FC48, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FC48) - Data: 67 FC 03 20 B3 A2 01 46 06 F0 12 FD 11 20 FE F7 ...  returns 0x3C (0001ms, 2000ms total)
T6F00 039:613 JLINK_ReadMemEx(0x0000FC48, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC48) - Data: 67 FC  returns 0x02 (0000ms, 2000ms total)
T6F00 039:613 JLINK_ReadMemEx(0x0000FC4A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC4A) - Data: 03 20  returns 0x02 (0000ms, 2000ms total)
T6F00 039:613 JLINK_ReadMemEx(0x0000FC4C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000FC4C) - Data: B3 A2 01 46 06 F0 12 FD 11 20 FE F7 73 FC 00 28 ...  returns 0x3C (0000ms, 2000ms total)
T6F00 039:613 JLINK_ReadMemEx(0x0000FC4C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000FC4C) - Data: B3 A2  returns 0x02 (0000ms, 2000ms total)
T5D38 039:613 
  ***** Error: Connection to emulator lost! (325311ms, 327311ms total)
T5D38 039:613 
  ***** Error: Connection to emulator lost! (492027ms, 494027ms total)
T5D38 039:613 
  ***** Error: Connection to emulator lost! (492664ms, 494664ms total)
T5D38 039:613 
  ***** Error: Connection to emulator lost! (496856ms, 498856ms total)
T5D38 039:613 
  ***** Error: Connection to emulator lost! (497681ms, 499681ms total)
T5D38 039:613 
  ***** Error: Connection to emulator lost! (568121ms, 570121ms total)
T5D38 039:613 
  ***** Error: Connection to emulator lost! (584534ms, 586534ms total)
T5D38 039:613 
  ***** Error: Connection to emulator lost! (612762ms, 614762ms total)
T6F00 959:051 JLINK_ReadMemEx(0x0000FBCC, 0x003C Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2000ms total)
T6F00 959:051 JLINK_ReadMemEx(0x0000FBCC, 0x0034 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2000ms total)
T6F00 959:051 JLINK_ReadMemEx(0x0000FBCC, 0x0004 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2000ms total)
T6F00 959:051 JLINK_ReadMemEx(0x0000FBCC, 0x0004 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2000ms total)
T6F00 959:051 JLINK_ReadMemEx(0x0000FBCC, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0002ms, 2002ms total)
T6F00 959:053 JLINK_ReadMemEx(0x0000FBCC, 0x0001 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2002ms total)
T6F00 959:053 JLINK_ReadMemEx(0x0000FBCC, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2002ms total)
T6F00 959:053 JLINK_ReadMemEx(0x0000FBCC, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2002ms total)
T6F00 959:053 JLINK_ReadMemEx(0x0000FBCC, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2002ms total)
T6F00 959:053 JLINK_ReadMemEx(0x0000FBCC, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2002ms total)
T6F00 959:053 JLINK_ReadMemEx(0x0000FBCC, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2002ms total)
T6F00 959:053 JLINK_ReadMemEx(0x0000FBCC, 0x0001 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2002ms total)
T6F00 959:053 JLINK_ReadMemEx(0x0000FBCE, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2002ms total)
T6F00 959:053 JLINK_ReadMemEx(0x0000FBCE, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2002ms total)
T6F00 959:053 JLINK_ReadMemEx(0x0000FBCE, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2002ms total)
T6F00 959:053 JLINK_ReadMemEx(0x0000FBCE, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2002ms total)
T6F00 959:053 JLINK_ReadMemEx(0x0000FBCE, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2002ms total)
T6F00 959:053 JLINK_ReadMemEx(0x0000FBCE, 0x0001 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2002ms total)
T6F00 959:053 JLINK_ReadMemEx(0x0000FBCE, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2002ms total)
T6F00 959:053 JLINK_ReadMemEx(0x0000FBCE, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2002ms total)
T6F00 959:053 JLINK_ReadMemEx(0x0000FBCE, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2002ms total)
T6F00 959:053 JLINK_ReadMemEx(0x0000FBCE, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2002ms total)
T6F00 959:053 JLINK_ReadMemEx(0x0000FBCE, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2002ms total)
T6F00 959:053 JLINK_ReadMemEx(0x0000FBCE, 0x0001 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0001ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x003C Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0030 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0010 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0004 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0001 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0001 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x003C Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0030 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0010 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0004 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0001 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:054 JLINK_ReadMemEx(0x0000FBD0, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2003ms total)
T6F00 959:055 JLINK_ReadMemEx(0x0000FBD0, 0x0001 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2004ms total)
T6F00 959:055 JLINK_ReadMemEx(0x0000FBD2, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2004ms total)
T6F00 959:055 JLINK_ReadMemEx(0x0000FBD2, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2004ms total)
T6F00 959:055 JLINK_ReadMemEx(0x0000FBD2, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2004ms total)
T6F00 959:055 JLINK_ReadMemEx(0x0000FBD2, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2004ms total)
T6F00 959:055 JLINK_ReadMemEx(0x0000FBD2, 0x0002 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2004ms total)
T6F00 959:055 JLINK_ReadMemEx(0x0000FBD2, 0x0001 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 2004ms total)
T6F00 961:118 JLINK_Close() (0033ms, 2037ms total)
T6F00 961:118  (0033ms, 2037ms total)
T6F00 961:118 Closed (0033ms, 2037ms total)