WXK
2025-03-25 4a0afa1557e0189d8d32cc59f7a246f5188bb8e6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
 
T37298 000:107 SEGGER J-Link V6.30d Log File (0000ms, 0059ms total)
T37298 000:107 DLL Compiled: Feb 16 2018 13:30:32 (0000ms, 0059ms total)
T37298 000:107 Logging started @ 2025-03-24 17:22 (0000ms, 0059ms total)
T37298 000:108 JLINK_SetWarnOutHandler(...) (0000ms, 0060ms total)
T37298 000:108 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 (0040ms, 0100ms total)
T37298 000:108 WEBSRV Webserver running on local port 19080 (0040ms, 0100ms total)
T37298 000:108   returns O.K. (0040ms, 0100ms total)
T37298 000:148 JLINK_GetEmuCaps()  returns 0x88EA5833 (0000ms, 0100ms total)
T37298 000:148 JLINK_TIF_GetAvailable(...) (0000ms, 0100ms total)
T37298 000:148 JLINK_SetErrorOutHandler(...) (0000ms, 0100ms total)
T37298 000:148 JLINK_ExecCommand("ProjectFile = "C:\git-mk8000\ChinaUWBProject - 4G\keil\JLinkSettings.ini"", ...). C:\Keil_v5\ARM\Segger\JLinkDevices.xml evaluated successfully.  returns 0x00 (0100ms, 0200ms total)
T37298 000:248 JLINK_ExecCommand("Device = MK8000", ...). Device "MK8000" selected.  returns 0x00 (0005ms, 0205ms total)
T37298 000:253 JLINK_ExecCommand("DisableConnectionTimeout", ...).   returns 0x01 (0000ms, 0205ms total)
T37298 000:253 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0205ms total)
T37298 000:253 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0205ms total)
T37298 000:253 JLINK_GetFirmwareString(...) (0000ms, 0205ms total)
T37298 000:253 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0205ms total)
T37298 000:253 JLINK_GetCompileDateTime() (0000ms, 0205ms total)
T37298 000:253 JLINK_GetFirmwareString(...) (0000ms, 0205ms total)
T37298 000:253 JLINK_GetHardwareVersion()  returns 0x11170 (0000ms, 0205ms total)
T37298 000:253 JLINK_TIF_Select(JLINKARM_TIF_SWD)  returns 0x00 (0001ms, 0206ms total)
T37298 000:254 JLINK_SetSpeed(10000) (0001ms, 0207ms total)
T37298 000:255 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x0BB11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x04770021)Iterating through AP map to find AHB-AP to use
 >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410CC200. Implementer code: 0x41 (ARM)Found Cortex-M0 r0p0, Little endian. -- CPU_ReadMem(4 bytes @ 0xE000EDF0)
 -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl[0] @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB008 SCS
 -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 000BB00B FPB >0x0D TIF> >0x21 TIF>  returns 0x0BB11477 (0133ms, 0340ms total)
T37298 000:388 JLINK_GetDLLVersion()  returns 63004 (0000ms, 0340ms total)
T37298 000:388 JLINK_CORE_GetFound()  returns 0x60000FF (0000ms, 0340ms total)
T37298 000:388 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0340ms total)
T37298 000:389 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000  returns 0x00 (0000ms, 0341ms total)
T37298 000:389 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0341ms total)
T37298 000:389 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 (0000ms, 0341ms total)
T37298 000:389 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0341ms total)
T37298 000:389 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0341ms total)
T37298 000:389 JLINK_ReadMemEx(0xE0040FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0040FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  returns 0x10 (0001ms, 0342ms total)
T37298 000:390 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000  returns 0x00 (0000ms, 0342ms total)
T37298 000:390 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000  returns 0x00 (0000ms, 0342ms total)
T37298 000:390 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000  returns 0x00 (0000ms, 0342ms total)
T37298 000:390 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000  returns 0x00 (0000ms, 0342ms total)
T37298 000:390 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0  returns 0x00 (0000ms, 0342ms total)
T37298 000:390 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000000  returns 0x00 (0000ms, 0342ms total)
T37298 000:390 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41  returns 0x01 (0001ms, 0343ms total)
T37298 000:391 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000  returns 0x00 (0000ms, 0343ms total)
T37298 000:391 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0343ms total)
T37298 000:391 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) (0069ms, 0412ms total)
T37298 000:460 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0412ms total)
T37298 000:460 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0412ms total)
T37298 000:460 JLINK_Halt()  returns 0x00 (0000ms, 0412ms total)
T37298 000:460 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00  returns 0x01 (0001ms, 0413ms total)
T37298 000:461 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0)  returns 0x00 (0001ms, 0414ms total)
T37298 000:462 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)  returns 0x00 (0000ms, 0414ms total)
T37298 000:462 JLINK_GetHWStatus(...)  returns 0x00 (0001ms, 0415ms total)
T37298 000:463 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)  returns 0x04 (0000ms, 0415ms total)
T37298 000:463 JLINK_GetNumBPUnits(Type = 0xF0)  returns 0x2000 (0000ms, 0415ms total)
T37298 000:463 JLINK_GetNumWPUnits()  returns 0x02 (0000ms, 0415ms total)
T37298 000:463 JLINK_GetSpeed()  returns 0xFA0 (0000ms, 0415ms total)
T37298 000:463 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00  returns 0x01 (0001ms, 0416ms total)
T37298 000:464 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0416ms total)
T37298 000:464 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0416ms total)
T37298 000:578 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)  returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0416ms total)
T37298 000:578 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) (0069ms, 0485ms total)
T37298 000:647 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0485ms total)
T37298 000:647 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0485ms total)
T37298 000:647 JLINK_ReadMemEx(0x03003738, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003738) - Data: 00 F0 4E F8 FC F7 C0 FC 80 B5 0D 49 08 68 00 28 ...  returns 0x3C (0002ms, 0487ms total)
T37298 000:649 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0000ms, 0487ms total)
T37298 000:649 JLINK_ReadMemEx(0x0300373A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373A) - Data: 4E F8  returns 0x02 (0001ms, 0488ms total)
T37298 000:650 JLINK_ReadMemEx(0x0300373C, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x0300373C) - Data: FC F7 C0 FC 80 B5 0D 49 08 68 00 28 00 D4 80 BD ...  returns 0x3C (0002ms, 0490ms total)
T37298 000:652 JLINK_ReadMemEx(0x0300373C, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373C) - Data: FC F7  returns 0x02 (0000ms, 0490ms total)
T37298 000:652 JLINK_ReadMemEx(0x0300373E, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300373E) - Data: C0 FC  returns 0x02 (0001ms, 0491ms total)
T37298 000:653 JLINK_ReadMemEx(0x03003740, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003740) - Data: 80 B5 0D 49 08 68 00 28 00 D4 80 BD 0B 48 02 68 ...  returns 0x3C (0001ms, 0492ms total)
T37298 000:654 JLINK_ReadMemEx(0x03003740, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003740) - Data: 80 B5  returns 0x02 (0001ms, 0493ms total)
T37298 000:655 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0001ms, 0494ms total)
T37298 000:656 JLINK_ReadMemEx(0x03003742, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003742) - Data: 0D 49  returns 0x02 (0000ms, 0494ms total)
T37298 000:656 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, 0496ms total)
T37298 000:658 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0000ms, 0496ms total)
T37298 000:658 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, 0498ms total)
T37298 000:660 JLINK_ReadMemEx(0x03003744, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003744) - Data: 08 68  returns 0x02 (0000ms, 0498ms total)
T37298 000:660 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0499ms total)
T37298 002:939 JLINK_ReadMemEx(0x03003746, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003746) - Data: 00 28  returns 0x02 (0001ms, 0500ms total)
T37298 002:940 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0501ms total)
T37298 002:941 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0502ms total)
T37298 002:942 JLINK_ReadMemEx(0x03003748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(60 bytes @ 0x03003748) - Data: 00 D4 80 BD 0B 48 02 68 03 2A 05 D1 04 22 0A 60 ...  returns 0x3C (0001ms, 0503ms total)
T37298 002:943 JLINK_ReadMemEx(0x03003748, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003748) - Data: 00 D4  returns 0x02 (0001ms, 0504ms total)
T37298 002:944 JLINK_ReadMemEx(0x0300374A, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0300374A) - Data: 80 BD  returns 0x02 (0000ms, 0504ms total)
T37298 003:305 JLINK_ReadReg(R0)  returns 0x0005D646 (0001ms, 0505ms total)
T37298 003:306 JLINK_ReadReg(R1)  returns 0x000003E8 (0000ms, 0505ms total)
T37298 003:306 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 0505ms total)
T37298 003:306 JLINK_ReadReg(R3)  returns 0x50002004 (0000ms, 0505ms total)
T37298 003:306 JLINK_ReadReg(R4)  returns 0x00000001 (0000ms, 0505ms total)
T37298 003:306 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 0505ms total)
T37298 003:306 JLINK_ReadReg(R6)  returns 0x0201D93E (0000ms, 0505ms total)
T37298 003:306 JLINK_ReadReg(R7)  returns 0x0201BB90 (0000ms, 0505ms total)
T37298 003:306 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0505ms total)
T37298 003:306 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0505ms total)
T37298 003:306 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0505ms total)
T37298 003:306 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0505ms total)
T37298 003:306 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 0505ms total)
T37298 003:306 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0505ms total)
T37298 003:306 JLINK_ReadReg(R14)  returns 0x0000D75B (0000ms, 0505ms total)
T37298 003:306 JLINK_ReadReg(R15 (PC))  returns 0x03003738 (0000ms, 0505ms total)
T37298 003:306 JLINK_ReadReg(XPSR)  returns 0xC1000000 (0000ms, 0505ms total)
T37298 003:306 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0505ms total)
T37298 003:306 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0505ms total)
T37298 003:306 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0505ms total)
T37298 003:306 JLINK_ReadMemEx(0x020289EC, 0x0460 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1120 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x460 (0012ms, 0517ms total)
T37298 003:324 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 0529ms total)
T37298 003:337 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 0541ms total)
T37298 003:732 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0542ms total)
T37298 003:733 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0543ms total)
T37298 003:734 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0000ms, 0543ms total)
T37298 003:742 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0544ms total)
T37298 003:743 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0545ms total)
T37298 003:744 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0000ms, 0545ms total)
T37298 003:750 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0546ms total)
T37298 003:752 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0547ms total)
T37298 003:753 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0547ms total)
T37298 003:753 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0548ms total)
T37298 003:762 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0549ms total)
T37298 003:793 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 0561ms total)
T37298 003:807 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 0573ms total)
T36CD8 003:853 JLINK_ReadMemEx(0x03003738, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x03003738) - Data: 00 F0  returns 0x02 (0001ms, 0574ms total)
T36CD8 003:854 JLINK_SetBPEx(Addr = 0x00010744, Type = 0xFFFFFFF2)  returns 0x00000001 (0000ms, 0574ms total)
T36CD8 003:854 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) (0006ms, 0580ms total)
T36CD8 003:960 JLINK_IsHalted()  returns TRUE (0003ms, 0583ms total)
T36CD8 003:963 JLINK_Halt()  returns 0x00 (0000ms, 0580ms total)
T36CD8 003:963 JLINK_IsHalted()  returns TRUE (0000ms, 0580ms total)
T36CD8 003:963 JLINK_IsHalted()  returns TRUE (0000ms, 0580ms total)
T36CD8 003:963 JLINK_IsHalted()  returns TRUE (0000ms, 0580ms total)
T36CD8 003:963 JLINK_ReadReg(R15 (PC))  returns 0x00010744 (0000ms, 0580ms total)
T36CD8 003:963 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0580ms total)
T36CD8 003:963 JLINK_ClrBPEx(BPHandle = 0x00000001)  returns 0x00 (0000ms, 0580ms total)
T36CD8 003:963 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 0581ms total)
T36CD8 003:964 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 0582ms total)
T36CD8 003:965 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0001ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(R0)  returns 0x00010745 (0000ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(R1)  returns 0x02029500 (0000ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(R3)  returns 0x00015649 (0000ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(R4)  returns 0x00018FE8 (0000ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(R5)  returns 0x00000001 (0000ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(R6)  returns 0x00018FE8 (0000ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(R7)  returns 0x02000000 (0000ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(R12)  returns 0x00000003 (0000ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(R13 (SP))  returns 0x0202F800 (0000ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(R14)  returns 0x00000C89 (0000ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(R15 (PC))  returns 0x00010744 (0000ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(MSP)  returns 0x0202F800 (0000ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 0583ms total)
T36CD8 003:966 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 0583ms total)
T37298 003:967 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0584ms total)
T37298 003:968 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 00 00  returns 0x02 (0001ms, 0585ms total)
T37298 003:969 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0586ms total)
T37298 003:970 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0586ms total)
T37298 003:971 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0587ms total)
T37298 003:972 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 0598ms total)
T37298 003:983 JLINK_ReadMemEx(0x00010744, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00010740) -- Updating C cache (64 bytes @ 0x00010740) -- Read from C cache (60 bytes @ 0x00010744) - Data: 84 B0 FC F7 CF FC 05 20 00 25 29 46 FF F7 3E F8 ...  returns 0x3C (0002ms, 0600ms total)
T37298 003:985 JLINK_ReadMemEx(0x00010744, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00010744) - Data: 84 B0  returns 0x02 (0000ms, 0600ms total)
T37298 003:985 JLINK_ReadMemEx(0x00010746, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00010746) - Data: FC F7  returns 0x02 (0000ms, 0600ms total)
T37298 003:985 JLINK_ReadMemEx(0x00010746, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00010746) - Data: FC F7  returns 0x02 (0000ms, 0600ms total)
T37298 003:985 JLINK_ReadMemEx(0x00010748, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00010780) -- Updating C cache (64 bytes @ 0x00010780) -- Read from C cache (60 bytes @ 0x00010748) - Data: CF FC 05 20 00 25 29 46 FF F7 3E F8 06 20 29 46 ...  returns 0x3C (0001ms, 0601ms total)
T37298 003:986 JLINK_ReadMemEx(0x00010748, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00010748) - Data: CF FC  returns 0x02 (0000ms, 0601ms total)
T36CD8 007:990 JLINK_ReadMemEx(0x00010744, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x00010744) - Data: 84 B0  returns 0x02 (0001ms, 0602ms total)
T36CD8 007:991 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0003ms, 0605ms total)
T36CD8 008:094 JLINK_IsHalted()  returns FALSE (0000ms, 0605ms total)
T36CD8 008:196 JLINK_IsHalted()  returns FALSE (0000ms, 0605ms total)
T36CD8 008:297 JLINK_IsHalted()  returns FALSE (0000ms, 0605ms total)
T36CD8 008:398 JLINK_IsHalted()  returns FALSE (0000ms, 0605ms total)
T36CD8 008:499 JLINK_IsHalted()  returns FALSE (0000ms, 0605ms total)
T37298 008:601 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 0616ms total)
T37298 008:613 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0617ms total)
T37298 008:614 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0618ms total)
T37298 008:615 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0619ms total)
T37298 008:616 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 00 00  returns 0x04 (0000ms, 0619ms total)
T37298 008:617 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0620ms total)
T36CD8 008:618 JLINK_IsHalted()  returns FALSE (0001ms, 0621ms total)
T36CD8 008:719 JLINK_IsHalted()  returns FALSE (0000ms, 0620ms total)
T36CD8 008:820 JLINK_IsHalted()  returns FALSE (0000ms, 0620ms total)
T36CD8 008:922 JLINK_IsHalted()  returns FALSE (0000ms, 0620ms total)
T36CD8 009:023 JLINK_IsHalted()  returns FALSE (0000ms, 0620ms total)
T37298 009:124 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 0631ms total)
T37298 009:136 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0632ms total)
T37298 009:137 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0633ms total)
T37298 009:138 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0634ms total)
T37298 009:139 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0635ms total)
T37298 009:140 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0636ms total)
T36CD8 009:141 JLINK_IsHalted()  returns FALSE (0000ms, 0636ms total)
T36CD8 009:242 JLINK_IsHalted()  returns FALSE (0000ms, 0636ms total)
T36CD8 009:344 JLINK_IsHalted()  returns FALSE (0000ms, 0636ms total)
T36CD8 009:445 JLINK_IsHalted()  returns FALSE (0000ms, 0636ms total)
T36CD8 009:546 JLINK_IsHalted()  returns FALSE (0000ms, 0636ms total)
T37298 009:647 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 0648ms total)
T37298 009:659 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0649ms total)
T37298 009:660 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0650ms total)
T37298 009:661 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0651ms total)
T37298 009:662 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 00 00  returns 0x04 (0001ms, 0652ms total)
T37298 009:663 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0653ms total)
T36CD8 009:664 JLINK_IsHalted()  returns FALSE (0001ms, 0654ms total)
T36CD8 009:766 JLINK_IsHalted()  returns FALSE (0000ms, 0653ms total)
T36CD8 009:867 JLINK_IsHalted()  returns FALSE (0000ms, 0653ms total)
T36CD8 009:968 JLINK_IsHalted()  returns FALSE (0000ms, 0653ms total)
T36CD8 010:070 JLINK_IsHalted()  returns FALSE (0000ms, 0653ms total)
T37298 010:171 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 0665ms total)
T37298 010:184 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0666ms total)
T37298 010:185 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0667ms total)
T37298 010:186 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0668ms total)
T37298 010:187 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 80 3F  returns 0x04 (0001ms, 0669ms total)
T37298 010:188 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0670ms total)
T36CD8 010:189 JLINK_IsHalted()  returns FALSE (0000ms, 0670ms total)
T36CD8 010:290 JLINK_IsHalted()  returns FALSE (0000ms, 0670ms total)
T36CD8 010:391 JLINK_IsHalted()  returns FALSE (0000ms, 0670ms total)
T36CD8 010:492 JLINK_IsHalted()  returns FALSE (0000ms, 0670ms total)
T36CD8 010:593 JLINK_IsHalted()  returns FALSE (0000ms, 0670ms total)
T37298 010:695 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 0682ms total)
T37298 010:708 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0683ms total)
T37298 010:709 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0684ms total)
T37298 010:710 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0685ms total)
T37298 010:711 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 80 3F  returns 0x04 (0001ms, 0686ms total)
T37298 010:712 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0687ms total)
T36CD8 010:713 JLINK_IsHalted()  returns FALSE (0001ms, 0688ms total)
T36CD8 010:815 JLINK_IsHalted()  returns FALSE (0000ms, 0687ms total)
T36CD8 010:916 JLINK_IsHalted()  returns FALSE (0000ms, 0687ms total)
T36CD8 011:018 JLINK_IsHalted()  returns FALSE (0000ms, 0687ms total)
T36CD8 011:119 JLINK_IsHalted()  returns FALSE (0000ms, 0687ms total)
T37298 011:220 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 0698ms total)
T37298 011:232 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0699ms total)
T37298 011:233 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0700ms total)
T37298 011:234 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0701ms total)
T37298 011:235 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 00 40  returns 0x04 (0001ms, 0702ms total)
T37298 011:236 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0703ms total)
T36CD8 011:237 JLINK_IsHalted()  returns FALSE (0000ms, 0703ms total)
T36CD8 011:338 JLINK_IsHalted()  returns FALSE (0000ms, 0703ms total)
T36CD8 011:440 JLINK_IsHalted()  returns FALSE (0000ms, 0703ms total)
T36CD8 011:541 JLINK_IsHalted()  returns FALSE (0000ms, 0703ms total)
T36CD8 011:642 JLINK_IsHalted()  returns FALSE (0000ms, 0703ms total)
T37298 011:743 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 0715ms total)
T37298 011:756 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0000ms, 0715ms total)
T37298 011:757 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0000ms, 0715ms total)
T37298 011:758 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0716ms total)
T37298 011:759 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 00 40  returns 0x04 (0000ms, 0716ms total)
T37298 011:759 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0717ms total)
T36CD8 011:760 JLINK_IsHalted()  returns FALSE (0001ms, 0718ms total)
T36CD8 011:863 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T36CD8 011:964 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T36CD8 012:066 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T36CD8 012:167 JLINK_IsHalted()  returns FALSE (0000ms, 0717ms total)
T37298 012:285 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 0729ms total)
T37298 012:298 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0730ms total)
T37298 012:299 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0731ms total)
T37298 012:300 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0732ms total)
T37298 012:301 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 00 40  returns 0x04 (0000ms, 0732ms total)
T37298 012:302 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 0732ms total)
T36CD8 012:302 JLINK_IsHalted()  returns FALSE (0001ms, 0733ms total)
T36CD8 012:404 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T36CD8 012:506 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T36CD8 012:607 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T36CD8 012:708 JLINK_IsHalted()  returns FALSE (0000ms, 0732ms total)
T37298 012:810 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 0743ms total)
T37298 012:822 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0744ms total)
T37298 012:823 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0745ms total)
T37298 012:824 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0746ms total)
T37298 012:825 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 00 40  returns 0x04 (0001ms, 0747ms total)
T37298 012:826 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0748ms total)
T36CD8 012:827 JLINK_IsHalted()  returns FALSE (0001ms, 0749ms total)
T36CD8 012:928 JLINK_IsHalted()  returns FALSE (0000ms, 0748ms total)
T36CD8 013:030 JLINK_IsHalted()  returns FALSE (0000ms, 0748ms total)
T36CD8 013:131 JLINK_IsHalted()  returns FALSE (0000ms, 0748ms total)
T36CD8 013:232 JLINK_IsHalted()  returns FALSE (0000ms, 0748ms total)
T37298 013:333 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 0759ms total)
T37298 013:345 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0760ms total)
T37298 013:346 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0000ms, 0760ms total)
T37298 013:347 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0761ms total)
T37298 013:348 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 00 40  returns 0x04 (0000ms, 0761ms total)
T37298 013:348 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0762ms total)
T36CD8 013:349 JLINK_IsHalted()  returns FALSE (0001ms, 0763ms total)
T36CD8 013:452 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T36CD8 013:553 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T36CD8 013:654 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T36CD8 013:756 JLINK_IsHalted()  returns FALSE (0000ms, 0762ms total)
T37298 013:857 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 0773ms total)
T37298 013:869 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0000ms, 0773ms total)
T37298 013:870 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0000ms, 0773ms total)
T37298 013:871 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0774ms total)
T37298 013:872 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 00 40  returns 0x04 (0000ms, 0774ms total)
T37298 013:872 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0775ms total)
T36CD8 013:873 JLINK_IsHalted()  returns FALSE (0001ms, 0776ms total)
T36CD8 013:975 JLINK_IsHalted()  returns FALSE (0000ms, 0775ms total)
T36CD8 014:076 JLINK_IsHalted()  returns FALSE (0000ms, 0775ms total)
T36CD8 014:178 JLINK_IsHalted()  returns FALSE (0000ms, 0775ms total)
T36CD8 014:279 JLINK_IsHalted()  returns FALSE (0000ms, 0775ms total)
T37298 014:380 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 0786ms total)
T37298 014:392 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0787ms total)
T37298 014:393 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0788ms total)
T37298 014:394 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0789ms total)
T37298 014:395 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 00 40  returns 0x04 (0000ms, 0789ms total)
T37298 014:395 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0790ms total)
T36CD8 014:396 JLINK_IsHalted()  returns FALSE (0001ms, 0791ms total)
T36CD8 014:499 JLINK_IsHalted()  returns FALSE (0000ms, 0790ms total)
T36CD8 014:600 JLINK_IsHalted()  returns FALSE (0000ms, 0790ms total)
T36CD8 014:701 JLINK_IsHalted()  returns FALSE (0000ms, 0790ms total)
T36CD8 014:802 JLINK_IsHalted()  returns FALSE (0000ms, 0790ms total)
T37298 014:903 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 0802ms total)
T37298 014:916 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0803ms total)
T37298 014:917 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0804ms total)
T37298 014:918 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0805ms total)
T37298 014:919 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 00 40  returns 0x04 (0000ms, 0805ms total)
T37298 014:919 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0806ms total)
T36CD8 014:920 JLINK_IsHalted()  returns FALSE (0001ms, 0807ms total)
T36CD8 015:022 JLINK_IsHalted()  returns FALSE (0000ms, 0806ms total)
T36CD8 015:123 JLINK_IsHalted()  returns FALSE (0000ms, 0806ms total)
T36CD8 015:224 JLINK_IsHalted()  returns FALSE (0000ms, 0806ms total)
T36CD8 015:326 JLINK_IsHalted()  returns FALSE (0000ms, 0806ms total)
T37298 015:427 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 0817ms total)
T37298 015:439 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0818ms total)
T37298 015:440 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0000ms, 0818ms total)
T37298 015:441 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0819ms total)
T37298 015:442 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 00 40  returns 0x04 (0000ms, 0819ms total)
T37298 015:442 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0820ms total)
T36CD8 015:443 JLINK_IsHalted()  returns FALSE (0001ms, 0821ms total)
T36CD8 015:545 JLINK_IsHalted()  returns FALSE (0000ms, 0820ms total)
T36CD8 015:646 JLINK_IsHalted()  returns FALSE (0001ms, 0821ms total)
T36CD8 015:749 JLINK_IsHalted()  returns FALSE (0000ms, 0820ms total)
T36CD8 015:850 JLINK_IsHalted()  returns FALSE (0000ms, 0820ms total)
T37298 015:951 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 0831ms total)
T37298 015:964 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0000ms, 0831ms total)
T37298 015:965 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0000ms, 0831ms total)
T37298 015:966 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 0831ms total)
T37298 015:966 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 00 40  returns 0x04 (0001ms, 0832ms total)
T37298 015:967 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0833ms total)
T36CD8 015:968 JLINK_IsHalted()  returns FALSE (0001ms, 0834ms total)
T36CD8 016:071 JLINK_IsHalted()  returns FALSE (0000ms, 0833ms total)
T36CD8 016:172 JLINK_IsHalted()  returns FALSE (0000ms, 0833ms total)
T36CD8 016:273 JLINK_IsHalted()  returns FALSE (0000ms, 0833ms total)
T36CD8 016:374 JLINK_IsHalted()  returns FALSE (0000ms, 0833ms total)
T37298 016:476 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 0844ms total)
T37298 016:488 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0845ms total)
T37298 016:489 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0000ms, 0845ms total)
T37298 016:490 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0846ms total)
T37298 016:491 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 40 40  returns 0x04 (0000ms, 0846ms total)
T37298 016:491 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0847ms total)
T36CD8 016:493 JLINK_IsHalted()  returns FALSE (0000ms, 0847ms total)
T36CD8 016:594 JLINK_IsHalted()  returns FALSE (0000ms, 0847ms total)
T36CD8 016:696 JLINK_IsHalted()  returns FALSE (0000ms, 0847ms total)
T36CD8 016:797 JLINK_IsHalted()  returns FALSE (0000ms, 0847ms total)
T36CD8 016:898 JLINK_IsHalted()  returns FALSE (0000ms, 0847ms total)
T37298 017:000 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 0859ms total)
T37298 017:012 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0860ms total)
T37298 017:013 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0861ms total)
T37298 017:014 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0862ms total)
T37298 017:015 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 40 40  returns 0x04 (0001ms, 0863ms total)
T37298 017:016 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0864ms total)
T36CD8 017:017 JLINK_IsHalted()  returns FALSE (0001ms, 0865ms total)
T36CD8 017:118 JLINK_IsHalted()  returns FALSE (0000ms, 0864ms total)
T36CD8 017:219 JLINK_IsHalted()  returns FALSE (0000ms, 0864ms total)
T36CD8 017:320 JLINK_IsHalted()  returns FALSE (0000ms, 0864ms total)
T36CD8 017:422 JLINK_IsHalted()  returns FALSE (0000ms, 0864ms total)
T37298 017:528 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 0876ms total)
T37298 017:541 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0877ms total)
T37298 017:542 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0878ms total)
T37298 017:543 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0879ms total)
T37298 017:544 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 80 40  returns 0x04 (0001ms, 0880ms total)
T37298 017:545 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0881ms total)
T36CD8 017:546 JLINK_IsHalted()  returns FALSE (0001ms, 0882ms total)
T36CD8 017:647 JLINK_IsHalted()  returns FALSE (0000ms, 0881ms total)
T36CD8 017:748 JLINK_IsHalted()  returns FALSE (0000ms, 0881ms total)
T36CD8 017:850 JLINK_IsHalted()  returns FALSE (0000ms, 0881ms total)
T36CD8 017:951 JLINK_IsHalted()  returns FALSE (0000ms, 0881ms total)
T37298 018:052 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 0892ms total)
T37298 018:064 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0893ms total)
T37298 018:065 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0894ms total)
T37298 018:066 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0895ms total)
T37298 018:067 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 80 40  returns 0x04 (0001ms, 0896ms total)
T37298 018:068 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0897ms total)
T36CD8 018:069 JLINK_IsHalted()  returns FALSE (0001ms, 0898ms total)
T36CD8 018:171 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T36CD8 018:272 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T36CD8 018:373 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T36CD8 018:474 JLINK_IsHalted()  returns FALSE (0000ms, 0897ms total)
T37298 018:576 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 0908ms total)
T37298 018:588 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0909ms total)
T37298 018:589 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0910ms total)
T37298 018:590 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0911ms total)
T37298 018:591 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 A0 40  returns 0x04 (0001ms, 0912ms total)
T37298 018:592 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0913ms total)
T36CD8 018:593 JLINK_IsHalted()  returns FALSE (0000ms, 0913ms total)
T36CD8 018:694 JLINK_IsHalted()  returns FALSE (0000ms, 0913ms total)
T36CD8 018:795 JLINK_IsHalted()  returns FALSE (0000ms, 0913ms total)
T36CD8 018:896 JLINK_IsHalted()  returns FALSE (0000ms, 0913ms total)
T36CD8 018:998 JLINK_IsHalted()  returns FALSE (0000ms, 0913ms total)
T37298 019:099 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 0925ms total)
T37298 019:111 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0926ms total)
T37298 019:112 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0927ms total)
T37298 019:113 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0928ms total)
T37298 019:114 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 C0 40  returns 0x04 (0001ms, 0929ms total)
T37298 019:115 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0930ms total)
T36CD8 019:116 JLINK_IsHalted()  returns FALSE (0001ms, 0931ms total)
T36CD8 019:217 JLINK_IsHalted()  returns FALSE (0000ms, 0930ms total)
T36CD8 019:319 JLINK_IsHalted()  returns FALSE (0000ms, 0930ms total)
T36CD8 019:420 JLINK_IsHalted()  returns FALSE (0000ms, 0930ms total)
T36CD8 019:521 JLINK_IsHalted()  returns FALSE (0000ms, 0930ms total)
T37298 019:622 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 0941ms total)
T37298 019:635 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0942ms total)
T37298 019:636 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0943ms total)
T37298 019:637 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0944ms total)
T37298 019:638 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 C0 40  returns 0x04 (0001ms, 0945ms total)
T37298 019:639 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0946ms total)
T36CD8 019:640 JLINK_IsHalted()  returns FALSE (0001ms, 0947ms total)
T36CD8 019:741 JLINK_IsHalted()  returns FALSE (0000ms, 0946ms total)
T36CD8 019:842 JLINK_IsHalted()  returns FALSE (0000ms, 0946ms total)
T36CD8 019:944 JLINK_IsHalted()  returns FALSE (0000ms, 0946ms total)
T36CD8 020:045 JLINK_IsHalted()  returns FALSE (0000ms, 0946ms total)
T37298 020:156 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 0958ms total)
T37298 020:168 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0959ms total)
T37298 020:169 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0960ms total)
T37298 020:170 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0961ms total)
T37298 020:171 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 E0 40  returns 0x04 (0001ms, 0962ms total)
T37298 020:172 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0963ms total)
T36CD8 020:173 JLINK_IsHalted()  returns FALSE (0001ms, 0964ms total)
T36CD8 020:275 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T36CD8 020:376 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T36CD8 020:477 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T36CD8 020:578 JLINK_IsHalted()  returns FALSE (0000ms, 0963ms total)
T37298 020:680 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 0974ms total)
T37298 020:692 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0975ms total)
T37298 020:693 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0976ms total)
T37298 020:694 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0977ms total)
T37298 020:695 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 E0 40  returns 0x04 (0001ms, 0978ms total)
T37298 020:696 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0979ms total)
T36CD8 020:697 JLINK_IsHalted()  returns FALSE (0001ms, 0980ms total)
T36CD8 020:799 JLINK_IsHalted()  returns FALSE (0000ms, 0979ms total)
T36CD8 020:900 JLINK_IsHalted()  returns FALSE (0000ms, 0979ms total)
T36CD8 021:002 JLINK_IsHalted()  returns FALSE (0000ms, 0979ms total)
T36CD8 021:103 JLINK_IsHalted()  returns FALSE (0000ms, 0979ms total)
T37298 021:204 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 0990ms total)
T37298 021:216 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 0991ms total)
T37298 021:217 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 0992ms total)
T37298 021:218 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 0993ms total)
T37298 021:219 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 00 41  returns 0x04 (0000ms, 0993ms total)
T37298 021:220 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 0993ms total)
T36CD8 021:220 JLINK_IsHalted()  returns FALSE (0001ms, 0994ms total)
T36CD8 021:322 JLINK_IsHalted()  returns FALSE (0000ms, 0993ms total)
T36CD8 021:424 JLINK_IsHalted()  returns FALSE (0000ms, 0993ms total)
T36CD8 021:525 JLINK_IsHalted()  returns FALSE (0000ms, 0993ms total)
T36CD8 021:626 JLINK_IsHalted()  returns FALSE (0000ms, 0993ms total)
T37298 021:729 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 1004ms total)
T37298 021:741 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1005ms total)
T37298 021:742 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1006ms total)
T37298 021:743 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1007ms total)
T37298 021:744 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 00 41  returns 0x04 (0001ms, 1008ms total)
T37298 021:745 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1009ms total)
T36CD8 021:746 JLINK_IsHalted()  returns FALSE (0001ms, 1010ms total)
T36CD8 021:848 JLINK_IsHalted()  returns FALSE (0000ms, 1009ms total)
T36CD8 021:949 JLINK_IsHalted()  returns FALSE (0000ms, 1009ms total)
T36CD8 022:050 JLINK_IsHalted()  returns FALSE (0000ms, 1009ms total)
T36CD8 022:151 JLINK_IsHalted()  returns FALSE (0000ms, 1009ms total)
T37298 022:252 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 1020ms total)
T37298 022:264 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1021ms total)
T37298 022:265 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1022ms total)
T37298 022:266 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1023ms total)
T37298 022:267 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 10 41  returns 0x04 (0000ms, 1023ms total)
T37298 022:268 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0000ms, 1023ms total)
T36CD8 022:269 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T36CD8 022:371 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T36CD8 022:472 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T36CD8 022:573 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T36CD8 022:674 JLINK_IsHalted()  returns FALSE (0000ms, 1024ms total)
T37298 022:775 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 1036ms total)
T37298 022:789 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1037ms total)
T37298 022:790 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0000ms, 1037ms total)
T37298 022:791 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1039ms total)
T37298 022:792 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 10 41  returns 0x04 (0000ms, 1039ms total)
T37298 022:792 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1040ms total)
T36CD8 022:793 JLINK_IsHalted()  returns FALSE (0001ms, 1041ms total)
T36CD8 022:896 JLINK_IsHalted()  returns FALSE (0000ms, 1040ms total)
T36CD8 022:997 JLINK_IsHalted()  returns FALSE (0000ms, 1040ms total)
T36CD8 023:098 JLINK_IsHalted()  returns FALSE (0000ms, 1040ms total)
T36CD8 023:199 JLINK_IsHalted()  returns FALSE (0000ms, 1040ms total)
T37298 023:301 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 1051ms total)
T37298 023:313 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1052ms total)
T37298 023:314 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1053ms total)
T37298 023:315 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1054ms total)
T37298 023:316 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 20 41  returns 0x04 (0000ms, 1054ms total)
T37298 023:317 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1055ms total)
T36CD8 023:318 JLINK_IsHalted()  returns FALSE (0000ms, 1055ms total)
T36CD8 023:419 JLINK_IsHalted()  returns FALSE (0000ms, 1055ms total)
T36CD8 023:520 JLINK_IsHalted()  returns FALSE (0000ms, 1055ms total)
T36CD8 023:621 JLINK_IsHalted()  returns FALSE (0000ms, 1055ms total)
T36CD8 023:723 JLINK_IsHalted()  returns FALSE (0000ms, 1055ms total)
T37298 023:824 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 1066ms total)
T37298 023:836 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1067ms total)
T37298 023:837 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0000ms, 1067ms total)
T37298 023:838 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1068ms total)
T37298 023:839 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 20 41  returns 0x04 (0000ms, 1068ms total)
T37298 023:839 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1069ms total)
T36CD8 023:841 JLINK_IsHalted()  returns FALSE (0001ms, 1070ms total)
T36CD8 023:942 JLINK_IsHalted()  returns FALSE (0000ms, 1070ms total)
T36CD8 024:044 JLINK_IsHalted()  returns FALSE (0000ms, 1070ms total)
T36CD8 024:145 JLINK_IsHalted()  returns FALSE (0000ms, 1070ms total)
T36CD8 024:246 JLINK_IsHalted()  returns FALSE (0000ms, 1070ms total)
T37298 024:347 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 1081ms total)
T37298 024:359 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1082ms total)
T37298 024:360 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1083ms total)
T37298 024:361 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1084ms total)
T37298 024:362 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 30 41  returns 0x04 (0000ms, 1084ms total)
T37298 024:363 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1085ms total)
T36CD8 024:364 JLINK_IsHalted()  returns FALSE (0000ms, 1085ms total)
T36CD8 024:466 JLINK_IsHalted()  returns FALSE (0000ms, 1085ms total)
T36CD8 024:567 JLINK_IsHalted()  returns FALSE (0000ms, 1085ms total)
T36CD8 024:668 JLINK_IsHalted()  returns FALSE (0000ms, 1085ms total)
T36CD8 024:769 JLINK_IsHalted()  returns FALSE (0000ms, 1085ms total)
T37298 024:870 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 1096ms total)
T37298 024:882 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1097ms total)
T37298 024:883 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1098ms total)
T37298 024:884 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1099ms total)
T37298 024:885 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 30 41  returns 0x04 (0001ms, 1100ms total)
T37298 024:886 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1101ms total)
T36CD8 024:887 JLINK_IsHalted()  returns FALSE (0001ms, 1102ms total)
T36CD8 024:990 JLINK_IsHalted()  returns FALSE (0000ms, 1101ms total)
T36CD8 025:091 JLINK_IsHalted()  returns FALSE (0000ms, 1101ms total)
T36CD8 025:192 JLINK_IsHalted()  returns FALSE (0000ms, 1101ms total)
T36CD8 025:293 JLINK_IsHalted()  returns FALSE (0000ms, 1101ms total)
T37298 025:395 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 1113ms total)
T37298 025:407 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1114ms total)
T37298 025:408 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1115ms total)
T37298 025:409 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1116ms total)
T37298 025:410 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 40 41  returns 0x04 (0001ms, 1117ms total)
T37298 025:411 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1118ms total)
T36CD8 025:412 JLINK_IsHalted()  returns FALSE (0001ms, 1119ms total)
T36CD8 025:513 JLINK_IsHalted()  returns FALSE (0000ms, 1118ms total)
T36CD8 025:615 JLINK_IsHalted()  returns FALSE (0000ms, 1118ms total)
T36CD8 025:716 JLINK_IsHalted()  returns FALSE (0000ms, 1118ms total)
T36CD8 025:817 JLINK_IsHalted()  returns FALSE (0000ms, 1118ms total)
T37298 025:918 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 1130ms total)
T37298 025:931 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1131ms total)
T37298 025:932 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1132ms total)
T37298 025:933 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1133ms total)
T37298 025:934 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 40 41  returns 0x04 (0001ms, 1134ms total)
T37298 025:935 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1135ms total)
T36CD8 025:936 JLINK_IsHalted()  returns FALSE (0001ms, 1136ms total)
T36CD8 026:037 JLINK_IsHalted()  returns FALSE (0000ms, 1135ms total)
T36CD8 026:138 JLINK_IsHalted()  returns FALSE (0000ms, 1135ms total)
T36CD8 026:239 JLINK_IsHalted()  returns FALSE (0000ms, 1135ms total)
T36CD8 026:341 JLINK_IsHalted()  returns FALSE (0000ms, 1135ms total)
T37298 026:442 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 1146ms total)
T37298 026:454 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1147ms total)
T37298 026:455 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1148ms total)
T37298 026:456 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1149ms total)
T37298 026:457 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 50 41  returns 0x04 (0001ms, 1150ms total)
T37298 026:458 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1151ms total)
T36CD8 026:459 JLINK_IsHalted()  returns FALSE (0001ms, 1152ms total)
T36CD8 026:560 JLINK_IsHalted()  returns FALSE (0000ms, 1151ms total)
T36CD8 026:661 JLINK_IsHalted()  returns FALSE (0000ms, 1151ms total)
T37298 026:706 JLINK_SetBPEx(Addr = 0x0000BDDC, Type = 0xFFFFFFF2) -- CPU is running -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008)  returns 0x00000002 (0001ms, 1152ms total)
T36CD8 026:763 JLINK_IsHalted()  returns FALSE (0000ms, 1152ms total)
T36CD8 026:864 JLINK_IsHalted()  returns FALSE (0000ms, 1152ms total)
T37298 026:965 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 1163ms total)
T37298 026:977 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1164ms total)
T37298 026:978 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1165ms total)
T37298 026:979 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1166ms total)
T37298 026:980 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 50 41  returns 0x04 (0001ms, 1167ms total)
T37298 026:981 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1168ms total)
T36CD8 026:982 JLINK_IsHalted()  returns FALSE (0001ms, 1169ms total)
T36CD8 027:084 JLINK_IsHalted()  returns FALSE (0000ms, 1168ms total)
T36CD8 027:185 JLINK_IsHalted()  returns FALSE (0000ms, 1168ms total)
T36CD8 027:286 JLINK_IsHalted()  returns FALSE (0000ms, 1168ms total)
T36CD8 027:387 JLINK_IsHalted()  returns FALSE (0000ms, 1168ms total)
T37298 027:489 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 1179ms total)
T37298 027:501 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1180ms total)
T37298 027:502 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0000ms, 1180ms total)
T37298 027:503 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1181ms total)
T37298 027:504 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 60 41  returns 0x04 (0000ms, 1181ms total)
T37298 027:504 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1182ms total)
T36CD8 027:505 JLINK_IsHalted()  returns FALSE (0001ms, 1183ms total)
T36CD8 027:607 JLINK_IsHalted()  returns FALSE (0000ms, 1182ms total)
T36CD8 027:708 JLINK_IsHalted()  returns FALSE (0000ms, 1182ms total)
T36CD8 027:809 JLINK_IsHalted()  returns FALSE (0000ms, 1182ms total)
T36CD8 027:911 JLINK_IsHalted()  returns FALSE (0000ms, 1182ms total)
T37298 028:012 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 1193ms total)
T37298 028:025 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0000ms, 1193ms total)
T37298 028:025 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1194ms total)
T37298 028:026 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1195ms total)
T37298 028:027 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 60 41  returns 0x04 (0001ms, 1196ms total)
T37298 028:028 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1197ms total)
T36CD8 028:029 JLINK_IsHalted()  returns FALSE (0001ms, 1198ms total)
T36CD8 028:130 JLINK_IsHalted()  returns FALSE (0000ms, 1197ms total)
T36CD8 028:232 JLINK_IsHalted()  returns FALSE (0000ms, 1197ms total)
T36CD8 028:333 JLINK_IsHalted()  returns FALSE (0000ms, 1197ms total)
T36CD8 028:434 JLINK_IsHalted()  returns FALSE (0000ms, 1197ms total)
T37298 028:535 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 1208ms total)
T37298 028:547 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1209ms total)
T37298 028:548 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1210ms total)
T37298 028:549 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1211ms total)
T37298 028:550 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 70 41  returns 0x04 (0001ms, 1212ms total)
T37298 028:551 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1213ms total)
T36CD8 028:552 JLINK_IsHalted()  returns FALSE (0001ms, 1214ms total)
T36CD8 028:653 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T36CD8 028:754 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T36CD8 028:856 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T36CD8 028:957 JLINK_IsHalted()  returns FALSE (0000ms, 1213ms total)
T37298 029:058 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 1224ms total)
T37298 029:070 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1225ms total)
T37298 029:071 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1226ms total)
T37298 029:073 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1227ms total)
T37298 029:074 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 70 41  returns 0x04 (0000ms, 1227ms total)
T37298 029:074 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1228ms total)
T36CD8 029:076 JLINK_IsHalted()  returns FALSE (0000ms, 1228ms total)
T36CD8 029:178 JLINK_IsHalted()  returns FALSE (0000ms, 1228ms total)
T36CD8 029:279 JLINK_IsHalted()  returns FALSE (0000ms, 1228ms total)
T36CD8 029:380 JLINK_IsHalted()  returns FALSE (0000ms, 1228ms total)
T36CD8 029:481 JLINK_IsHalted()  returns FALSE (0000ms, 1228ms total)
T37298 029:583 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 1239ms total)
T37298 029:595 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1240ms total)
T37298 029:596 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1241ms total)
T37298 029:597 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1242ms total)
T37298 029:598 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 80 41  returns 0x04 (0001ms, 1243ms total)
T37298 029:599 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1244ms total)
T36CD8 029:600 JLINK_IsHalted()  returns FALSE (0001ms, 1245ms total)
T36CD8 029:702 JLINK_IsHalted()  returns FALSE (0000ms, 1244ms total)
T36CD8 029:803 JLINK_IsHalted()  returns FALSE (0000ms, 1244ms total)
T36CD8 029:904 JLINK_IsHalted()  returns FALSE (0000ms, 1244ms total)
T36CD8 030:006 JLINK_IsHalted()  returns FALSE (0000ms, 1244ms total)
T37298 030:107 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 1255ms total)
T37298 030:119 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1256ms total)
T37298 030:120 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1257ms total)
T37298 030:121 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1258ms total)
T37298 030:122 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 88 41  returns 0x04 (0001ms, 1259ms total)
T37298 030:123 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1260ms total)
T36CD8 030:124 JLINK_IsHalted()  returns FALSE (0001ms, 1261ms total)
T36CD8 030:225 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T36CD8 030:327 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T36CD8 030:428 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T36CD8 030:529 JLINK_IsHalted()  returns FALSE (0000ms, 1260ms total)
T37298 030:630 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 1272ms total)
T37298 030:642 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1273ms total)
T37298 030:643 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1274ms total)
T37298 030:644 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1275ms total)
T37298 030:645 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 88 41  returns 0x04 (0001ms, 1276ms total)
T37298 030:646 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1277ms total)
T36CD8 030:647 JLINK_IsHalted()  returns FALSE (0000ms, 1277ms total)
T36CD8 030:749 JLINK_IsHalted()  returns FALSE (0000ms, 1277ms total)
T36CD8 030:850 JLINK_IsHalted()  returns FALSE (0000ms, 1277ms total)
T36CD8 030:951 JLINK_IsHalted()  returns FALSE (0000ms, 1277ms total)
T36CD8 031:052 JLINK_IsHalted()  returns FALSE (0000ms, 1277ms total)
T37298 031:154 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 1288ms total)
T37298 031:166 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1289ms total)
T37298 031:167 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1290ms total)
T37298 031:168 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1291ms total)
T37298 031:169 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 88 41  returns 0x04 (0000ms, 1291ms total)
T37298 031:169 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1292ms total)
T36CD8 031:170 JLINK_IsHalted()  returns FALSE (0001ms, 1293ms total)
T36CD8 031:272 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T36CD8 031:373 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T36CD8 031:475 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T36CD8 031:576 JLINK_IsHalted()  returns FALSE (0000ms, 1292ms total)
T37298 031:678 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 1304ms total)
T37298 031:690 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1305ms total)
T37298 031:691 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1306ms total)
T37298 031:692 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1307ms total)
T37298 031:693 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 88 41  returns 0x04 (0001ms, 1308ms total)
T37298 031:694 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1309ms total)
T36CD8 031:695 JLINK_IsHalted()  returns FALSE (0001ms, 1310ms total)
T36CD8 031:796 JLINK_IsHalted()  returns FALSE (0000ms, 1309ms total)
T36CD8 031:897 JLINK_IsHalted()  returns FALSE (0000ms, 1309ms total)
T36CD8 031:998 JLINK_IsHalted()  returns FALSE (0000ms, 1309ms total)
T36CD8 032:100 JLINK_IsHalted()  returns FALSE (0000ms, 1309ms total)
T37298 032:201 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0011ms, 1320ms total)
T37298 032:213 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1321ms total)
T37298 032:214 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1322ms total)
T37298 032:215 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1323ms total)
T37298 032:216 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 88 41  returns 0x04 (0000ms, 1323ms total)
T37298 032:216 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1324ms total)
T36CD8 032:218 JLINK_IsHalted()  returns FALSE (0000ms, 1324ms total)
T36CD8 032:320 JLINK_IsHalted()  returns FALSE (0000ms, 1324ms total)
T36CD8 032:421 JLINK_IsHalted()  returns FALSE (0000ms, 1324ms total)
T36CD8 032:522 JLINK_IsHalted()  returns TRUE (0003ms, 1327ms total)
T36CD8 032:525 JLINK_Halt()  returns 0x00 (0000ms, 1324ms total)
T36CD8 032:525 JLINK_IsHalted()  returns TRUE (0000ms, 1324ms total)
T36CD8 032:525 JLINK_IsHalted()  returns TRUE (0000ms, 1324ms total)
T36CD8 032:525 JLINK_IsHalted()  returns TRUE (0000ms, 1324ms total)
T36CD8 032:525 JLINK_ReadReg(R15 (PC))  returns 0x0000BDDC (0000ms, 1324ms total)
T36CD8 032:525 JLINK_ReadReg(XPSR)  returns 0xA1000000 (0000ms, 1324ms total)
T36CD8 032:525 JLINK_ClrBPEx(BPHandle = 0x00000002)  returns 0x00 (0000ms, 1324ms total)
T36CD8 032:525 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1325ms total)
T36CD8 032:526 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1326ms total)
T36CD8 032:527 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 1326ms total)
T36CD8 032:527 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 1326ms total)
T36CD8 032:527 JLINK_ReadReg(R1)  returns 0x000003E8 (0000ms, 1326ms total)
T36CD8 032:527 JLINK_ReadReg(R2)  returns 0x00000018 (0000ms, 1326ms total)
T36CD8 032:527 JLINK_ReadReg(R3)  returns 0x00000010 (0000ms, 1326ms total)
T36CD8 032:527 JLINK_ReadReg(R4)  returns 0x0000000A (0000ms, 1326ms total)
T36CD8 032:527 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 1326ms total)
T36CD8 032:527 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0001ms, 1327ms total)
T36CD8 032:528 JLINK_ReadReg(R7)  returns 0x02025166 (0000ms, 1327ms total)
T36CD8 032:528 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1327ms total)
T36CD8 032:528 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1327ms total)
T36CD8 032:528 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1327ms total)
T36CD8 032:528 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1327ms total)
T36CD8 032:528 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1327ms total)
T36CD8 032:528 JLINK_ReadReg(R13 (SP))  returns 0x0202F4E0 (0000ms, 1327ms total)
T36CD8 032:528 JLINK_ReadReg(R14)  returns 0x0000D75B (0000ms, 1327ms total)
T36CD8 032:528 JLINK_ReadReg(R15 (PC))  returns 0x0000BDDC (0000ms, 1327ms total)
T36CD8 032:528 JLINK_ReadReg(XPSR)  returns 0xA1000000 (0000ms, 1327ms total)
T36CD8 032:528 JLINK_ReadReg(MSP)  returns 0x0202F4E0 (0000ms, 1327ms total)
T36CD8 032:528 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1327ms total)
T36CD8 032:528 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1327ms total)
T37298 032:528 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1328ms total)
T37298 032:529 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1329ms total)
T37298 032:530 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1330ms total)
T37298 032:531 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 88 41  returns 0x04 (0001ms, 1331ms total)
T37298 032:532 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1332ms total)
T37298 032:533 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 1344ms total)
T36CD8 040:525 JLINK_ReadMemEx(0x0000BDDC, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0000BDC0) -- Updating C cache (128 bytes @ 0x0000BDC0) -- Read from C cache (60 bytes @ 0x0000BDDC) - Data: 00 2F 13 D0 00 2C 11 D0 00 97 0A 48 21 46 F9 F7 ...  returns 0x3C (0002ms, 1346ms total)
T36CD8 040:527 JLINK_ReadMemEx(0x0000BDDC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDDC) - Data: 00 2F  returns 0x02 (0000ms, 1346ms total)
T36CD8 040:527 JLINK_ReadMemEx(0x0000BDDE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDDE) - Data: 13 D0  returns 0x02 (0000ms, 1346ms total)
T36CD8 040:527 JLINK_ReadMemEx(0x0000BDDC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDDC) - Data: 00 2F  returns 0x02 (0000ms, 1346ms total)
T36CD8 040:527 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000BDDC) -- 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) -- Simulated  returns 0x00 (0004ms, 1350ms total)
T36CD8 040:531 JLINK_ReadReg(R15 (PC))  returns 0x0000BDDE (0000ms, 1350ms total)
T36CD8 040:531 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1350ms total)
T36CD8 040:531 JLINK_ReadMemEx(0x0000BDDE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDDE) - Data: 13 D0  returns 0x02 (0000ms, 1350ms total)
T36CD8 040:531 JLINK_ReadMemEx(0x0000BDE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BDE0) - Data: 00 2C 11 D0 00 97 0A 48 21 46 F9 F7 06 FC 00 28 ...  returns 0x3C (0000ms, 1350ms total)
T36CD8 040:531 JLINK_ReadMemEx(0x0000BDE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDE0) - Data: 00 2C  returns 0x02 (0000ms, 1350ms total)
T36CD8 040:531 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000BDDE) -- Simulated  returns 0x00 (0000ms, 1350ms total)
T36CD8 040:531 JLINK_ReadReg(R15 (PC))  returns 0x0000BDE0 (0000ms, 1350ms total)
T36CD8 040:531 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1350ms total)
T36CD8 040:531 JLINK_ReadMemEx(0x0000BDE0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BDE0) - Data: 00 2C 11 D0 00 97 0A 48 21 46 F9 F7 06 FC 00 28 ...  returns 0x3C (0000ms, 1350ms total)
T36CD8 040:531 JLINK_ReadMemEx(0x0000BDE0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDE0) - Data: 00 2C  returns 0x02 (0000ms, 1350ms total)
T36CD8 040:531 JLINK_ReadMemEx(0x0000BDE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDE2) - Data: 11 D0  returns 0x02 (0000ms, 1350ms total)
T36CD8 040:531 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000BDE0) -- Simulated  returns 0x00 (0000ms, 1350ms total)
T36CD8 040:531 JLINK_ReadReg(R15 (PC))  returns 0x0000BDE2 (0000ms, 1350ms total)
T36CD8 040:531 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1350ms total)
T36CD8 040:531 JLINK_ReadMemEx(0x0000BDE2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDE2) - Data: 11 D0  returns 0x02 (0000ms, 1350ms total)
T36CD8 040:532 JLINK_ReadMemEx(0x0000BDE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BDE4) - Data: 00 97 0A 48 21 46 F9 F7 06 FC 00 28 0A D0 07 46 ...  returns 0x3C (0000ms, 1350ms total)
T36CD8 040:532 JLINK_ReadMemEx(0x0000BDE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDE4) - Data: 00 97  returns 0x02 (0000ms, 1350ms total)
T36CD8 040:532 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000BDE2) -- Simulated  returns 0x00 (0000ms, 1350ms total)
T36CD8 040:532 JLINK_ReadReg(R15 (PC))  returns 0x0000BDE4 (0000ms, 1350ms total)
T36CD8 040:532 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1350ms total)
T36CD8 040:532 JLINK_ReadMemEx(0x0000BDE4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BDE4) - Data: 00 97 0A 48 21 46 F9 F7 06 FC 00 28 0A D0 07 46 ...  returns 0x3C (0000ms, 1350ms total)
T36CD8 040:532 JLINK_ReadMemEx(0x0000BDE4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDE4) - Data: 00 97  returns 0x02 (0000ms, 1350ms total)
T36CD8 040:532 JLINK_ReadMemEx(0x0000BDE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDE6) - Data: 0A 48  returns 0x02 (0000ms, 1350ms total)
T36CD8 040:532 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000BDE4) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE0001004)  returns 0x00 (0006ms, 1356ms total)
T36CD8 040:538 JLINK_ReadReg(R15 (PC))  returns 0x0000BDE6 (0000ms, 1356ms total)
T36CD8 040:538 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1356ms total)
T36CD8 040:538 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 1356ms total)
T36CD8 040:538 JLINK_ReadReg(R1)  returns 0x000003E8 (0000ms, 1356ms total)
T36CD8 040:538 JLINK_ReadReg(R2)  returns 0x00000018 (0000ms, 1356ms total)
T36CD8 040:538 JLINK_ReadReg(R3)  returns 0x00000010 (0000ms, 1356ms total)
T36CD8 040:538 JLINK_ReadReg(R4)  returns 0x0000000A (0000ms, 1356ms total)
T36CD8 040:538 JLINK_ReadReg(R5)  returns 0x00000000 (0001ms, 1357ms total)
T36CD8 040:539 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0000ms, 1357ms total)
T36CD8 040:539 JLINK_ReadReg(R7)  returns 0x02025166 (0000ms, 1357ms total)
T36CD8 040:539 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1357ms total)
T36CD8 040:539 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1357ms total)
T36CD8 040:539 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1357ms total)
T36CD8 040:539 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1357ms total)
T36CD8 040:539 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1357ms total)
T36CD8 040:539 JLINK_ReadReg(R13 (SP))  returns 0x0202F4E0 (0000ms, 1357ms total)
T36CD8 040:539 JLINK_ReadReg(R14)  returns 0x0000D75B (0000ms, 1357ms total)
T36CD8 040:539 JLINK_ReadReg(R15 (PC))  returns 0x0000BDE6 (0000ms, 1357ms total)
T36CD8 040:539 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1357ms total)
T36CD8 040:539 JLINK_ReadReg(MSP)  returns 0x0202F4E0 (0000ms, 1357ms total)
T36CD8 040:539 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1357ms total)
T36CD8 040:539 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1357ms total)
T37298 040:540 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1358ms total)
T37298 040:544 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1359ms total)
T37298 040:545 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1360ms total)
T37298 040:546 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 88 41  returns 0x04 (0001ms, 1361ms total)
T37298 040:547 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1362ms total)
T37298 040:548 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 1374ms total)
T37298 040:560 JLINK_ReadMemEx(0x0000BDE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000BDC0) -- Updating C cache (64 bytes @ 0x0000BDC0) -- Read from C cache (2 bytes @ 0x0000BDE6) - Data: 0A 48  returns 0x02 (0001ms, 1375ms total)
T37298 040:561 JLINK_ReadMemEx(0x0000BDE8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000BE00) -- Updating C cache (64 bytes @ 0x0000BE00) -- Read from C cache (60 bytes @ 0x0000BDE8) - Data: 21 46 F9 F7 06 FC 00 28 0A D0 07 46 00 68 00 99 ...  returns 0x3C (0001ms, 1376ms total)
T37298 040:562 JLINK_ReadMemEx(0x0000BDE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDE8) - Data: 21 46  returns 0x02 (0000ms, 1376ms total)
T37298 040:562 JLINK_ReadMemEx(0x0000BDE8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BDE8) - Data: 21 46 F9 F7 06 FC 00 28 0A D0 07 46 00 68 00 99 ...  returns 0x3C (0000ms, 1376ms total)
T37298 040:562 JLINK_ReadMemEx(0x0000BDE8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDE8) - Data: 21 46  returns 0x02 (0000ms, 1376ms total)
T37298 040:562 JLINK_ReadMemEx(0x0000BDEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDEA) - Data: F9 F7  returns 0x02 (0000ms, 1376ms total)
T37298 040:562 JLINK_ReadMemEx(0x0000BDEA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDEA) - Data: F9 F7  returns 0x02 (0000ms, 1376ms total)
T37298 040:562 JLINK_ReadMemEx(0x0000BDEC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BDEC) - Data: 06 FC 00 28 0A D0 07 46 00 68 00 99 22 46 F4 F7 ...  returns 0x3C (0000ms, 1376ms total)
T37298 040:562 JLINK_ReadMemEx(0x0000BDEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDEC) - Data: 06 FC  returns 0x02 (0000ms, 1376ms total)
T36CD8 042:194 JLINK_ReadMemEx(0x0000BDE6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDE6) - Data: 0A 48  returns 0x02 (0000ms, 1376ms total)
T36CD8 042:194 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000BDE6) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from C cache (4 bytes @ 0x0000BE10) -- Simulated  returns 0x00 (0001ms, 1377ms total)
T36CD8 042:195 JLINK_ReadReg(R15 (PC))  returns 0x0000BDE8 (0000ms, 1377ms total)
T36CD8 042:195 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1377ms total)
T36CD8 042:195 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000BDE8) -- Simulated  returns 0x00 (0000ms, 1377ms total)
T36CD8 042:195 JLINK_ReadReg(R15 (PC))  returns 0x0000BDEA (0000ms, 1377ms total)
T36CD8 042:195 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1377ms total)
T36CD8 042:195 JLINK_SetBPEx(Addr = 0x0000BDEE, Type = 0xFFFFFFF2)  returns 0x00000003 (0000ms, 1377ms total)
T36CD8 042:195 JLINK_SetBPEx(Addr = 0x0000BDDC, Type = 0xFFFFFFF2)  returns 0x00000004 (0000ms, 1377ms total)
T36CD8 042:195 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0006ms, 1383ms total)
T36CD8 042:303 JLINK_IsHalted()  returns TRUE (0003ms, 1386ms total)
T36CD8 042:306 JLINK_Halt()  returns 0x00 (0000ms, 1383ms total)
T36CD8 042:306 JLINK_IsHalted()  returns TRUE (0000ms, 1383ms total)
T36CD8 042:306 JLINK_IsHalted()  returns TRUE (0000ms, 1383ms total)
T36CD8 042:306 JLINK_IsHalted()  returns TRUE (0000ms, 1383ms total)
T36CD8 042:306 JLINK_ReadReg(R15 (PC))  returns 0x0000BDEE (0000ms, 1383ms total)
T36CD8 042:306 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 1383ms total)
T36CD8 042:306 JLINK_ClrBPEx(BPHandle = 0x00000003)  returns 0x00 (0000ms, 1383ms total)
T36CD8 042:306 JLINK_ClrBPEx(BPHandle = 0x00000004)  returns 0x00 (0000ms, 1383ms total)
T36CD8 042:306 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1384ms total)
T36CD8 042:307 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1385ms total)
T36CD8 042:308 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 1385ms total)
T36CD8 042:308 JLINK_ReadReg(R0)  returns 0x020261D4 (0000ms, 1385ms total)
T36CD8 042:308 JLINK_ReadReg(R1)  returns 0x00000000 (0000ms, 1385ms total)
T36CD8 042:308 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 1385ms total)
T36CD8 042:308 JLINK_ReadReg(R3)  returns 0x000003D0 (0000ms, 1385ms total)
T36CD8 042:308 JLINK_ReadReg(R4)  returns 0x0000000A (0000ms, 1385ms total)
T36CD8 042:308 JLINK_ReadReg(R5)  returns 0x00000000 (0001ms, 1386ms total)
T36CD8 042:309 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0000ms, 1386ms total)
T36CD8 042:309 JLINK_ReadReg(R7)  returns 0x02025166 (0000ms, 1386ms total)
T36CD8 042:309 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1386ms total)
T36CD8 042:309 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1386ms total)
T36CD8 042:309 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1386ms total)
T36CD8 042:309 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1386ms total)
T36CD8 042:309 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1386ms total)
T36CD8 042:309 JLINK_ReadReg(R13 (SP))  returns 0x0202F4E0 (0000ms, 1386ms total)
T36CD8 042:309 JLINK_ReadReg(R14)  returns 0x00005635 (0000ms, 1386ms total)
T36CD8 042:309 JLINK_ReadReg(R15 (PC))  returns 0x0000BDEE (0000ms, 1386ms total)
T36CD8 042:309 JLINK_ReadReg(XPSR)  returns 0x01000000 (0000ms, 1386ms total)
T36CD8 042:309 JLINK_ReadReg(MSP)  returns 0x0202F4E0 (0000ms, 1386ms total)
T36CD8 042:309 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1386ms total)
T36CD8 042:309 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1386ms total)
T37298 042:310 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0000ms, 1386ms total)
T37298 042:310 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1387ms total)
T37298 042:311 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1388ms total)
T37298 042:312 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 88 41  returns 0x04 (0001ms, 1389ms total)
T37298 042:313 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1390ms total)
T37298 042:314 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 1402ms total)
T36CD8 042:858 JLINK_ReadMemEx(0x0000BDEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000BDC0) -- Updating C cache (64 bytes @ 0x0000BDC0) -- Read from C cache (2 bytes @ 0x0000BDEE) - Data: 00 28  returns 0x02 (0002ms, 1404ms total)
T36CD8 042:860 JLINK_ReadMemEx(0x0000BDF0, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000BE00) -- Updating C cache (64 bytes @ 0x0000BE00) -- Read from C cache (60 bytes @ 0x0000BDF0) - Data: 0A D0 07 46 00 68 00 99 22 46 F4 F7 95 F9 04 48 ...  returns 0x3C (0001ms, 1405ms total)
T36CD8 042:861 JLINK_ReadMemEx(0x0000BDF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDF0) - Data: 0A D0  returns 0x02 (0000ms, 1405ms total)
T36CD8 042:861 JLINK_ReadMemEx(0x0000BDEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDEE) - Data: 00 28  returns 0x02 (0000ms, 1405ms total)
T36CD8 042:861 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000BDEE) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0001ms, 1406ms total)
T36CD8 042:862 JLINK_ReadReg(R15 (PC))  returns 0x0000BDF0 (0000ms, 1406ms total)
T36CD8 042:862 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1406ms total)
T36CD8 042:862 JLINK_ReadMemEx(0x0000BDF0, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BDF0) - Data: 0A D0 07 46 00 68 00 99 22 46 F4 F7 95 F9 04 48 ...  returns 0x3C (0000ms, 1406ms total)
T36CD8 042:862 JLINK_ReadMemEx(0x0000BDF0, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDF0) - Data: 0A D0  returns 0x02 (0000ms, 1406ms total)
T36CD8 042:862 JLINK_ReadMemEx(0x0000BDF2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDF2) - Data: 07 46  returns 0x02 (0000ms, 1406ms total)
T36CD8 042:862 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000BDF0) -- Simulated  returns 0x00 (0000ms, 1406ms total)
T36CD8 042:862 JLINK_ReadReg(R15 (PC))  returns 0x0000BDF2 (0000ms, 1406ms total)
T36CD8 042:862 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1406ms total)
T36CD8 042:862 JLINK_ReadMemEx(0x0000BDF2, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDF2) - Data: 07 46  returns 0x02 (0000ms, 1406ms total)
T36CD8 042:862 JLINK_ReadMemEx(0x0000BDF4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BDF4) - Data: 00 68 00 99 22 46 F4 F7 95 F9 04 48 39 46 F9 F7 ...  returns 0x3C (0000ms, 1406ms total)
T36CD8 042:862 JLINK_ReadMemEx(0x0000BDF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDF4) - Data: 00 68  returns 0x02 (0000ms, 1406ms total)
T36CD8 042:863 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000BDF2) -- Simulated  returns 0x00 (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(R15 (PC))  returns 0x0000BDF4 (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(R0)  returns 0x020261D4 (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(R1)  returns 0x00000000 (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(R2)  returns 0x00000000 (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(R3)  returns 0x000003D0 (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(R4)  returns 0x0000000A (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(R7)  returns 0x020261D4 (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(R13 (SP))  returns 0x0202F4E0 (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(R14)  returns 0x00005635 (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(R15 (PC))  returns 0x0000BDF4 (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(MSP)  returns 0x0202F4E0 (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1407ms total)
T36CD8 042:863 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1407ms total)
T37298 042:864 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0000ms, 1407ms total)
T37298 042:865 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0000ms, 1407ms total)
T37298 042:866 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1408ms total)
T37298 042:867 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 88 41  returns 0x04 (0000ms, 1408ms total)
T37298 042:867 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1409ms total)
T37298 042:868 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 1421ms total)
T37298 042:880 JLINK_ReadMemEx(0x0000BDF4, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BDF4) - Data: 00 68 00 99 22 46 F4 F7 95 F9 04 48 39 46 F9 F7 ...  returns 0x3C (0000ms, 1421ms total)
T37298 042:880 JLINK_ReadMemEx(0x0000BDF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDF4) - Data: 00 68  returns 0x02 (0000ms, 1421ms total)
T37298 042:880 JLINK_ReadMemEx(0x0000BDF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDF6) - Data: 00 99  returns 0x02 (0000ms, 1421ms total)
T37298 042:880 JLINK_ReadMemEx(0x0000BDF6, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDF6) - Data: 00 99  returns 0x02 (0000ms, 1421ms total)
T37298 042:880 JLINK_ReadMemEx(0x0000BDF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BDF8) - Data: 22 46 F4 F7 95 F9 04 48 39 46 F9 F7 CA FB 2E 46 ...  returns 0x3C (0000ms, 1421ms total)
T37298 042:880 JLINK_ReadMemEx(0x0000BDF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDF8) - Data: 22 46  returns 0x02 (0000ms, 1421ms total)
T37298 042:880 JLINK_ReadMemEx(0x0000BDF8, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BDF8) - Data: 22 46 F4 F7 95 F9 04 48 39 46 F9 F7 CA FB 2E 46 ...  returns 0x3C (0000ms, 1421ms total)
T37298 042:880 JLINK_ReadMemEx(0x0000BDF8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDF8) - Data: 22 46  returns 0x02 (0000ms, 1421ms total)
T37298 042:880 JLINK_ReadMemEx(0x0000BDFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDFA) - Data: F4 F7  returns 0x02 (0000ms, 1421ms total)
T37298 042:880 JLINK_ReadMemEx(0x0000BDFA, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDFA) - Data: F4 F7  returns 0x02 (0001ms, 1422ms total)
T37298 042:881 JLINK_ReadMemEx(0x0000BDFC, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BDFC) - Data: 95 F9 04 48 39 46 F9 F7 CA FB 2E 46 30 46 01 B0 ...  returns 0x3C (0000ms, 1422ms total)
T37298 042:881 JLINK_ReadMemEx(0x0000BDFC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDFC) - Data: 95 F9  returns 0x02 (0000ms, 1422ms total)
T36CD8 043:618 JLINK_ReadMemEx(0x0000BDF4, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDF4) - Data: 00 68  returns 0x02 (0000ms, 1422ms total)
T36CD8 043:618 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000BDF4) -- CPU_ReadMem(64 bytes @ 0x020261C0) -- Updating C cache (64 bytes @ 0x020261C0) -- Read from C cache (4 bytes @ 0x020261D4) -- Simulated  returns 0x00 (0002ms, 1424ms total)
T36CD8 043:620 JLINK_ReadReg(R15 (PC))  returns 0x0000BDF6 (0000ms, 1424ms total)
T36CD8 043:620 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1424ms total)
T36CD8 043:620 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000BDF6) -- Not simulated -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0001004)  returns 0x00 (0007ms, 1431ms total)
T36CD8 043:627 JLINK_ReadReg(R15 (PC))  returns 0x0000BDF8 (0000ms, 1431ms total)
T36CD8 043:627 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1431ms total)
T36CD8 043:627 JLINK_Step() -- CPU_ReadMem(64 bytes @ 0x0000BDC0) -- Updating C cache (64 bytes @ 0x0000BDC0) -- Read from C cache (2 bytes @ 0x0000BDF8) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0002ms, 1433ms total)
T36CD8 043:629 JLINK_ReadReg(R15 (PC))  returns 0x0000BDFA (0000ms, 1433ms total)
T36CD8 043:629 JLINK_ReadReg(XPSR)  returns 0x21000000 (0000ms, 1433ms total)
T36CD8 043:629 JLINK_SetBPEx(Addr = 0x0000BDFE, Type = 0xFFFFFFF2)  returns 0x00000005 (0000ms, 1433ms total)
T36CD8 043:629 JLINK_SetBPEx(Addr = 0x0000BDDC, Type = 0xFFFFFFF2)  returns 0x00000006 (0001ms, 1434ms total)
T36CD8 043:630 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0006ms, 1440ms total)
T36CD8 043:737 JLINK_IsHalted()  returns TRUE (0003ms, 1443ms total)
T36CD8 043:740 JLINK_Halt()  returns 0x00 (0000ms, 1440ms total)
T36CD8 043:740 JLINK_IsHalted()  returns TRUE (0000ms, 1440ms total)
T36CD8 043:740 JLINK_IsHalted()  returns TRUE (0000ms, 1440ms total)
T36CD8 043:740 JLINK_IsHalted()  returns TRUE (0000ms, 1440ms total)
T36CD8 043:740 JLINK_ReadReg(R15 (PC))  returns 0x0000BDFE (0000ms, 1440ms total)
T36CD8 043:740 JLINK_ReadReg(XPSR)  returns 0x81000000 (0000ms, 1440ms total)
T36CD8 043:740 JLINK_ClrBPEx(BPHandle = 0x00000005)  returns 0x00 (0000ms, 1440ms total)
T36CD8 043:740 JLINK_ClrBPEx(BPHandle = 0x00000006)  returns 0x00 (0000ms, 1440ms total)
T36CD8 043:740 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1441ms total)
T36CD8 043:741 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1442ms total)
T36CD8 043:742 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 1442ms total)
T36CD8 043:742 JLINK_ReadReg(R0)  returns 0x0202620E (0000ms, 1442ms total)
T36CD8 043:742 JLINK_ReadReg(R1)  returns 0x02025170 (0000ms, 1442ms total)
T36CD8 043:742 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 1442ms total)
T36CD8 043:742 JLINK_ReadReg(R3)  returns 0x000000BB (0000ms, 1442ms total)
T36CD8 043:742 JLINK_ReadReg(R4)  returns 0x0000000A (0000ms, 1442ms total)
T36CD8 043:742 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 1442ms total)
T36CD8 043:742 JLINK_ReadReg(R6)  returns 0xFFFFFFFF (0000ms, 1442ms total)
T36CD8 043:742 JLINK_ReadReg(R7)  returns 0x020261D4 (0000ms, 1442ms total)
T36CD8 043:742 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1442ms total)
T36CD8 043:742 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1442ms total)
T36CD8 043:742 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1442ms total)
T36CD8 043:742 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1442ms total)
T36CD8 043:742 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1442ms total)
T36CD8 043:742 JLINK_ReadReg(R13 (SP))  returns 0x0202F4E0 (0000ms, 1442ms total)
T36CD8 043:743 JLINK_ReadReg(R14)  returns 0x0000BDFF (0000ms, 1443ms total)
T36CD8 043:743 JLINK_ReadReg(R15 (PC))  returns 0x0000BDFE (0000ms, 1443ms total)
T36CD8 043:743 JLINK_ReadReg(XPSR)  returns 0x81000000 (0000ms, 1443ms total)
T36CD8 043:743 JLINK_ReadReg(MSP)  returns 0x0202F4E0 (0000ms, 1443ms total)
T36CD8 043:743 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1443ms total)
T36CD8 043:743 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1443ms total)
T37298 043:744 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0000ms, 1443ms total)
T37298 043:745 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0000ms, 1443ms total)
T37298 043:745 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1444ms total)
T37298 043:746 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 88 41  returns 0x04 (0001ms, 1445ms total)
T37298 043:747 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1446ms total)
T37298 043:748 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 1458ms total)
T37298 043:760 JLINK_ReadMemEx(0x0000BDFE, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000BDC0) -- Updating C cache (64 bytes @ 0x0000BDC0) -- Read from C cache (2 bytes @ 0x0000BDFE) - Data: 04 48  returns 0x02 (0001ms, 1459ms total)
T37298 043:761 JLINK_ReadMemEx(0x0000BE00, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000BE00) -- Updating C cache (64 bytes @ 0x0000BE00) -- Read from C cache (60 bytes @ 0x0000BE00) - Data: 39 46 F9 F7 CA FB 2E 46 30 46 01 B0 F0 BD C0 46 ...  returns 0x3C (0001ms, 1460ms total)
T37298 043:762 JLINK_ReadMemEx(0x0000BE00, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BE00) - Data: 39 46  returns 0x02 (0000ms, 1460ms total)
T37298 043:762 JLINK_ReadMemEx(0x0000BE00, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BE00) - Data: 39 46 F9 F7 CA FB 2E 46 30 46 01 B0 F0 BD C0 46 ...  returns 0x3C (0000ms, 1460ms total)
T37298 043:762 JLINK_ReadMemEx(0x0000BE00, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BE00) - Data: 39 46  returns 0x02 (0000ms, 1460ms total)
T37298 043:762 JLINK_ReadMemEx(0x0000BE02, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BE02) - Data: F9 F7  returns 0x02 (0000ms, 1460ms total)
T36CD8 044:192 JLINK_ReadMemEx(0x0000BDFE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BDFE) - Data: 04 48  returns 0x02 (0000ms, 1460ms total)
T36CD8 044:192 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000BDFE) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Read from C cache (4 bytes @ 0x0000BE10) -- Simulated  returns 0x00 (0001ms, 1461ms total)
T36CD8 044:193 JLINK_ReadReg(R15 (PC))  returns 0x0000BE00 (0000ms, 1461ms total)
T36CD8 044:193 JLINK_ReadReg(XPSR)  returns 0x81000000 (0000ms, 1461ms total)
T36CD8 044:193 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000BE00) -- Simulated  returns 0x00 (0000ms, 1461ms total)
T36CD8 044:193 JLINK_ReadReg(R15 (PC))  returns 0x0000BE02 (0000ms, 1461ms total)
T36CD8 044:193 JLINK_ReadReg(XPSR)  returns 0x81000000 (0000ms, 1461ms total)
T36CD8 044:193 JLINK_ReadMemEx(0x0000BE02, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BE02) - Data: F9 F7  returns 0x02 (0000ms, 1461ms total)
T36CD8 044:193 JLINK_ReadMemEx(0x0000BE04, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BE04) - Data: CA FB 2E 46 30 46 01 B0 F0 BD C0 46 84 6D 02 02 ...  returns 0x3C (0000ms, 1461ms total)
T36CD8 044:193 JLINK_ReadMemEx(0x0000BE04, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BE04) - Data: CA FB  returns 0x02 (0000ms, 1461ms total)
T36CD8 044:193 JLINK_SetBPEx(Addr = 0x0000BE06, Type = 0xFFFFFFF2)  returns 0x00000007 (0000ms, 1461ms total)
T36CD8 044:194 JLINK_SetBPEx(Addr = 0x0000BDDC, Type = 0xFFFFFFF2)  returns 0x00000008 (0000ms, 1461ms total)
T36CD8 044:194 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0005ms, 1466ms total)
T36CD8 044:301 JLINK_IsHalted()  returns TRUE (0003ms, 1469ms total)
T36CD8 044:304 JLINK_Halt()  returns 0x00 (0000ms, 1466ms total)
T36CD8 044:304 JLINK_IsHalted()  returns TRUE (0000ms, 1466ms total)
T36CD8 044:304 JLINK_IsHalted()  returns TRUE (0000ms, 1466ms total)
T36CD8 044:304 JLINK_IsHalted()  returns TRUE (0000ms, 1466ms total)
T36CD8 044:304 JLINK_ReadReg(R15 (PC))  returns 0x0000BE06 (0000ms, 1466ms total)
T36CD8 044:304 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1466ms total)
T36CD8 044:304 JLINK_ClrBPEx(BPHandle = 0x00000007)  returns 0x00 (0000ms, 1466ms total)
T36CD8 044:304 JLINK_ClrBPEx(BPHandle = 0x00000008)  returns 0x00 (0000ms, 1466ms total)
T36CD8 044:304 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 03 00 00 00  returns 0x01 (0001ms, 1467ms total)
T36CD8 044:305 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00  returns 0x01 (0001ms, 1468ms total)
T36CD8 044:306 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 00 00 00  returns 0x01 (0000ms, 1468ms total)
T36CD8 044:306 JLINK_ReadMemEx(0x0000BE04, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000BE00) -- Updating C cache (64 bytes @ 0x0000BE00) -- Read from C cache (60 bytes @ 0x0000BE04) - Data: CA FB 2E 46 30 46 01 B0 F0 BD C0 46 84 6D 02 02 ...  returns 0x3C (0002ms, 1470ms total)
T36CD8 044:308 JLINK_ReadMemEx(0x0000BE04, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BE04) - Data: CA FB  returns 0x02 (0000ms, 1470ms total)
T36CD8 044:308 JLINK_ReadMemEx(0x0000BE06, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BE06) - Data: 2E 46  returns 0x02 (0000ms, 1470ms total)
T36CD8 044:308 JLINK_ReadMemEx(0x0000BE06, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BE06) - Data: 2E 46  returns 0x02 (0000ms, 1470ms total)
T36CD8 044:308 JLINK_ReadMemEx(0x0000BE08, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0000BE40) -- Updating C cache (64 bytes @ 0x0000BE40) -- Read from C cache (60 bytes @ 0x0000BE08) - Data: 30 46 01 B0 F0 BD C0 46 84 6D 02 02 10 B5 84 B0 ...  returns 0x3C (0001ms, 1471ms total)
T36CD8 044:309 JLINK_ReadMemEx(0x0000BE08, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BE08) - Data: 30 46  returns 0x02 (0000ms, 1471ms total)
T36CD8 044:309 JLINK_Step() -- Read from C cache (2 bytes @ 0x0000BE06) -- CPU_ReadMem(4 bytes @ 0xE0001004) -- Simulated  returns 0x00 (0001ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(R15 (PC))  returns 0x0000BE08 (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(R0)  returns 0x00000000 (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(R1)  returns 0x0000000A (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(R2)  returns 0xFFFFFFFF (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(R3)  returns 0x000003D0 (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(R4)  returns 0x0000000A (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(R5)  returns 0x00000000 (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(R6)  returns 0x00000000 (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(R7)  returns 0x020261D4 (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(R8)  returns 0x00000000 (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(R9)  returns 0x0202329C (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(R10)  returns 0x00000000 (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(R11)  returns 0x00000000 (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(R12)  returns 0x00000000 (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(R13 (SP))  returns 0x0202F4E0 (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(R14)  returns 0x00003D9F (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(R15 (PC))  returns 0x0000BE08 (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(XPSR)  returns 0x61000000 (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(MSP)  returns 0x0202F4E0 (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(PSP)  returns 0x02028000 (0000ms, 1472ms total)
T36CD8 044:310 JLINK_ReadReg(CFBP)  returns 0x00000000 (0000ms, 1472ms total)
T37298 044:311 JLINK_ReadMemEx(0x0201BB1A, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x0201BB1A) - Data: 00  returns 0x01 (0001ms, 1473ms total)
T37298 044:312 JLINK_ReadMemEx(0x0201BBA4, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x0201BBA4) - Data: 34 12  returns 0x02 (0001ms, 1474ms total)
T37298 044:313 JLINK_ReadMemEx(0x0201BAB4, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x0201BAB4) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1475ms total)
T37298 044:314 JLINK_ReadMemEx(0x0201BBB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(4 bytes @ 0x0201BBB0) - Data: 00 00 88 41  returns 0x04 (0000ms, 1475ms total)
T37298 044:314 JLINK_ReadMemEx(0x020289EC, 0x0020 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(32 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x20 (0001ms, 1476ms total)
T37298 044:315 JLINK_ReadMemEx(0x020289EC, 0x0440 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1088 bytes @ 0x020289EC) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...  returns 0x440 (0012ms, 1488ms total)
T37298 044:327 JLINK_ReadMemEx(0x0000BE08, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BE08) - Data: 30 46 01 B0 F0 BD C0 46 84 6D 02 02 10 B5 84 B0 ...  returns 0x3C (0000ms, 1488ms total)
T37298 044:327 JLINK_ReadMemEx(0x0000BE08, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BE08) - Data: 30 46  returns 0x02 (0000ms, 1488ms total)
T37298 044:327 JLINK_ReadMemEx(0x0000BE0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BE0A) - Data: 01 B0  returns 0x02 (0000ms, 1488ms total)
T37298 044:327 JLINK_ReadMemEx(0x0000BE0A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BE0A) - Data: 01 B0  returns 0x02 (0000ms, 1488ms total)
T37298 044:327 JLINK_ReadMemEx(0x0000BE0C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BE0C) - Data: F0 BD C0 46 84 6D 02 02 10 B5 84 B0 0D A0 F8 F7 ...  returns 0x3C (0000ms, 1488ms total)
T37298 044:327 JLINK_ReadMemEx(0x0000BE0C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BE0C) - Data: F0 BD  returns 0x02 (0000ms, 1488ms total)
T37298 044:327 JLINK_ReadMemEx(0x0000BE0C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BE0C) - Data: F0 BD C0 46 84 6D 02 02 10 B5 84 B0 0D A0 F8 F7 ...  returns 0x3C (0000ms, 1488ms total)
T37298 044:327 JLINK_ReadMemEx(0x0000BE0C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BE0C) - Data: F0 BD  returns 0x02 (0000ms, 1488ms total)
T37298 044:328 JLINK_ReadMemEx(0x0000BE0E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BE0E) - Data: C0 46  returns 0x02 (0000ms, 1488ms total)
T37298 044:328 JLINK_ReadMemEx(0x0000BE0E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BE0E) - Data: C0 46  returns 0x02 (0000ms, 1488ms total)
T37298 044:328 JLINK_ReadMemEx(0x0000BE10, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0000BE10) - Data: 84 6D 02 02 10 B5 84 B0 0D A0 F8 F7 15 F8 12 48 ...  returns 0x3C (0000ms, 1488ms total)
T37298 044:328 JLINK_ReadMemEx(0x0000BE10, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0000BE10) - Data: 84 6D  returns 0x02 (0000ms, 1488ms total)
T37298 046:521 JLINK_ReadMemEx(0x02026D84, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026D80) -- Updating C cache (64 bytes @ 0x02026D80) -- Read from C cache (4 bytes @ 0x02026D84) - Data: D4 61 02 02  returns 0x04 (0002ms, 1490ms total)
T37298 046:523 JLINK_ReadMemEx(0x02026D88, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D88) - Data: 30 00 00 00  returns 0x04 (0000ms, 1490ms total)
T37298 046:523 JLINK_ReadMemEx(0x02026D8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D8C) - Data: 04 62 02 02  returns 0x04 (0000ms, 1490ms total)
T37298 046:523 JLINK_ReadMemEx(0x02026D90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D90) - Data: D0 03 00 00  returns 0x04 (0000ms, 1490ms total)
T37298 046:523 JLINK_ReadMemEx(0x02026D94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D94) - Data: 01 00 00 00  returns 0x04 (0001ms, 1491ms total)
T37298 046:524 JLINK_ReadMemEx(0x02026D98, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D98) - Data: 00 00 00 00  returns 0x04 (0000ms, 1491ms total)
T37298 046:524 JLINK_ReadMemEx(0x02026D9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D9C) - Data: 01 00 00 00  returns 0x04 (0000ms, 1491ms total)
T37298 046:524 JLINK_ReadMemEx(0x02026DA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA0) - Data: 04 00 00 00  returns 0x04 (0000ms, 1491ms total)
T37298 046:524 JLINK_ReadMemEx(0x02026DA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA4) - Data: 0A 00 00 00  returns 0x04 (0000ms, 1491ms total)
T37298 046:524 JLINK_ReadMemEx(0x02026DA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1491ms total)
T37298 046:524 JLINK_ReadMemEx(0x02026DAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DAC) - Data: 0A 00 00 00  returns 0x04 (0000ms, 1491ms total)
T37298 046:524 JLINK_ReadMemEx(0x02026DB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DB0) - Data: D0 03 00 00  returns 0x04 (0000ms, 1491ms total)
T37298 050:634 JLINK_ReadMemEx(0x00000000, 0x0004 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x00000000) -- Updating C cache (64 bytes @ 0x00000000) -- Read from C cache (4 bytes @ 0x00000000) - Data: 00 F8 02 02  returns 0x04 (0002ms, 1493ms total)
T37298 052:006 JLINK_ReadMemEx(0x02026D84, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D84) - Data: D4 61 02 02  returns 0x04 (0000ms, 1493ms total)
T37298 052:006 JLINK_ReadMemEx(0x02026D88, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D88) - Data: 30 00 00 00  returns 0x04 (0000ms, 1493ms total)
T37298 052:006 JLINK_ReadMemEx(0x02026D8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D8C) - Data: 04 62 02 02  returns 0x04 (0000ms, 1493ms total)
T37298 052:006 JLINK_ReadMemEx(0x02026D90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D90) - Data: D0 03 00 00  returns 0x04 (0001ms, 1494ms total)
T37298 052:007 JLINK_ReadMemEx(0x02026D94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D94) - Data: 01 00 00 00  returns 0x04 (0000ms, 1494ms total)
T37298 052:007 JLINK_ReadMemEx(0x02026D98, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D98) - Data: 00 00 00 00  returns 0x04 (0000ms, 1494ms total)
T37298 052:007 JLINK_ReadMemEx(0x02026D9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D9C) - Data: 01 00 00 00  returns 0x04 (0000ms, 1494ms total)
T37298 052:007 JLINK_ReadMemEx(0x02026DA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA0) - Data: 04 00 00 00  returns 0x04 (0000ms, 1494ms total)
T37298 052:007 JLINK_ReadMemEx(0x02026DA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA4) - Data: 0A 00 00 00  returns 0x04 (0000ms, 1494ms total)
T37298 052:007 JLINK_ReadMemEx(0x02026DA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1494ms total)
T37298 052:007 JLINK_ReadMemEx(0x02026DAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DAC) - Data: 0A 00 00 00  returns 0x04 (0000ms, 1494ms total)
T37298 052:007 JLINK_ReadMemEx(0x02026DB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DB0) - Data: D0 03 00 00  returns 0x04 (0000ms, 1494ms total)
T37298 052:728 JLINK_ReadMemEx(0x02026D84, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D84) - Data: D4 61 02 02  returns 0x04 (0000ms, 1494ms total)
T37298 052:728 JLINK_ReadMemEx(0x02026D88, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D88) - Data: 30 00 00 00  returns 0x04 (0000ms, 1494ms total)
T37298 052:728 JLINK_ReadMemEx(0x02026D8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D8C) - Data: 04 62 02 02  returns 0x04 (0000ms, 1494ms total)
T37298 052:728 JLINK_ReadMemEx(0x02026D90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D90) - Data: D0 03 00 00  returns 0x04 (0000ms, 1494ms total)
T37298 052:728 JLINK_ReadMemEx(0x02026D94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D94) - Data: 01 00 00 00  returns 0x04 (0000ms, 1494ms total)
T37298 052:728 JLINK_ReadMemEx(0x02026D98, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D98) - Data: 00 00 00 00  returns 0x04 (0000ms, 1494ms total)
T37298 052:728 JLINK_ReadMemEx(0x02026D9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D9C) - Data: 01 00 00 00  returns 0x04 (0000ms, 1494ms total)
T37298 052:728 JLINK_ReadMemEx(0x02026DA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA0) - Data: 04 00 00 00  returns 0x04 (0000ms, 1494ms total)
T37298 052:728 JLINK_ReadMemEx(0x02026DA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA4) - Data: 0A 00 00 00  returns 0x04 (0000ms, 1494ms total)
T37298 052:728 JLINK_ReadMemEx(0x02026DA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1494ms total)
T37298 052:728 JLINK_ReadMemEx(0x02026DAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DAC) - Data: 0A 00 00 00  returns 0x04 (0000ms, 1494ms total)
T37298 052:728 JLINK_ReadMemEx(0x02026DB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DB0) - Data: D0 03 00 00  returns 0x04 (0001ms, 1495ms total)
T37298 059:205 JLINK_ReadMemEx(0x02026D84, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D84) - Data: D4 61 02 02  returns 0x04 (0000ms, 1495ms total)
T37298 059:205 JLINK_ReadMemEx(0x02026D88, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D88) - Data: 30 00 00 00  returns 0x04 (0000ms, 1495ms total)
T37298 059:205 JLINK_ReadMemEx(0x02026D84, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D84) - Data: D4 61 02 02  returns 0x04 (0000ms, 1495ms total)
T37298 059:205 JLINK_ReadMemEx(0x02026D88, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D88) - Data: 30 00 00 00  returns 0x04 (0000ms, 1495ms total)
T37298 059:218 JLINK_ReadMemEx(0x02026D84, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D84) - Data: D4 61 02 02  returns 0x04 (0000ms, 1495ms total)
T37298 059:218 JLINK_ReadMemEx(0x02026D88, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D88) - Data: 30 00 00 00  returns 0x04 (0000ms, 1495ms total)
T37298 060:185 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1495ms total)
T37298 060:185 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1495ms total)
T37298 060:185 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1495ms total)
T37298 060:185 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1495ms total)
T37298 060:185 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1495ms total)
T37298 060:185 JLINK_ReadMemEx(0x020261D4, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x020261C0) -- Updating C cache (64 bytes @ 0x020261C0) -- Read from C cache (1 bytes @ 0x020261D4) - Data: 04  returns 0x01 (0001ms, 1496ms total)
T37298 060:186 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 060:186 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 060:186 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 060:186 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 060:186 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 060:186 JLINK_ReadMemEx(0x020261D4, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x020261D4) - Data: 04  returns 0x01 (0000ms, 1496ms total)
T37298 060:199 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 060:199 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 060:199 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 060:199 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 060:199 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 060:199 JLINK_ReadMemEx(0x020261D4, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x020261D4) - Data: 04  returns 0x01 (0000ms, 1496ms total)
T37298 060:999 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 060:999 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 060:999 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 060:999 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 060:999 JLINK_ReadMemEx(0x020261D4, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 060:999 JLINK_ReadMemEx(0x020261D4, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x020261D4) - Data: 04  returns 0x01 (0000ms, 1496ms total)
T37298 061:890 JLINK_ReadMemEx(0x02026D8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D8C) - Data: 04 62 02 02  returns 0x04 (0000ms, 1496ms total)
T37298 061:890 JLINK_ReadMemEx(0x02026D90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D90) - Data: D0 03 00 00  returns 0x04 (0000ms, 1496ms total)
T37298 061:890 JLINK_ReadMemEx(0x02026D8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D8C) - Data: 04 62 02 02  returns 0x04 (0000ms, 1496ms total)
T37298 061:890 JLINK_ReadMemEx(0x02026D90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D90) - Data: D0 03 00 00  returns 0x04 (0000ms, 1496ms total)
T37298 061:904 JLINK_ReadMemEx(0x02026D8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D8C) - Data: 04 62 02 02  returns 0x04 (0000ms, 1496ms total)
T37298 061:904 JLINK_ReadMemEx(0x02026D90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D90) - Data: D0 03 00 00  returns 0x04 (0000ms, 1496ms total)
T37298 064:271 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 064:271 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 064:271 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 064:271 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 064:271 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1496ms total)
T37298 064:271 JLINK_ReadMemEx(0x02026204, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x02026200) -- Updating C cache (64 bytes @ 0x02026200) -- Read from C cache (1 bytes @ 0x02026204) - Data: C4  returns 0x01 (0001ms, 1497ms total)
T37298 064:272 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1497ms total)
T37298 064:272 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1497ms total)
T37298 064:272 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1497ms total)
T37298 064:272 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1497ms total)
T37298 064:272 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1497ms total)
T37298 064:272 JLINK_ReadMemEx(0x02026204, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x02026204) - Data: C4  returns 0x01 (0000ms, 1497ms total)
T37298 064:284 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1497ms total)
T37298 064:284 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1497ms total)
T37298 064:284 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1497ms total)
T37298 064:284 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1497ms total)
T37298 064:284 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1497ms total)
T37298 064:284 JLINK_ReadMemEx(0x02026204, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x02026204) - Data: C4  returns 0x01 (0000ms, 1497ms total)
T37298 064:965 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1497ms total)
T37298 064:965 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1497ms total)
T37298 064:965 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1497ms total)
T37298 064:965 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1497ms total)
T37298 064:965 JLINK_ReadMemEx(0x02026204, 0x0000 Bytes, ..., Flags = 0x02000000)  returns 0xFFFFFFFF (0000ms, 1497ms total)
T37298 064:965 JLINK_ReadMemEx(0x02026204, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x02026204) - Data: C4  returns 0x01 (0000ms, 1497ms total)
T37298 066:135 JLINK_ReadMemEx(0x02026D94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D94) - Data: 01 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 066:135 JLINK_ReadMemEx(0x02026D98, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D98) - Data: 00 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 066:135 JLINK_ReadMemEx(0x02026D9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D9C) - Data: 01 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 066:135 JLINK_ReadMemEx(0x02026DA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA0) - Data: 04 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 066:136 JLINK_ReadMemEx(0x02026D94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D94) - Data: 01 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 066:136 JLINK_ReadMemEx(0x02026D98, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D98) - Data: 00 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 066:136 JLINK_ReadMemEx(0x02026D9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D9C) - Data: 01 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 066:136 JLINK_ReadMemEx(0x02026DA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA0) - Data: 04 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 066:149 JLINK_ReadMemEx(0x02026D94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D94) - Data: 01 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 066:149 JLINK_ReadMemEx(0x02026D98, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D98) - Data: 00 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 066:149 JLINK_ReadMemEx(0x02026D9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D9C) - Data: 01 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 066:149 JLINK_ReadMemEx(0x02026DA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA0) - Data: 04 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 068:626 JLINK_ReadMemEx(0x02026DA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA4) - Data: 0A 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 068:626 JLINK_ReadMemEx(0x02026DA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 068:626 JLINK_ReadMemEx(0x02026DAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DAC) - Data: 0A 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 068:626 JLINK_ReadMemEx(0x02026DB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DB0) - Data: D0 03 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 068:626 JLINK_ReadMemEx(0x02026DA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA4) - Data: 0A 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 068:626 JLINK_ReadMemEx(0x02026DA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 068:626 JLINK_ReadMemEx(0x02026DAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DAC) - Data: 0A 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 068:626 JLINK_ReadMemEx(0x02026DB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DB0) - Data: D0 03 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 068:638 JLINK_ReadMemEx(0x02026DA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA4) - Data: 0A 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 068:638 JLINK_ReadMemEx(0x02026DA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 068:638 JLINK_ReadMemEx(0x02026DAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DAC) - Data: 0A 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 068:638 JLINK_ReadMemEx(0x02026DB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DB0) - Data: D0 03 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 071:680 JLINK_ReadMemEx(0x02026D84, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D84) - Data: D4 61 02 02  returns 0x04 (0000ms, 1497ms total)
T37298 071:680 JLINK_ReadMemEx(0x02026D88, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D88) - Data: 30 00 00 00  returns 0x04 (0000ms, 1497ms total)
T37298 071:680 JLINK_ReadMemEx(0x02026D8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D8C) - Data: 04 62 02 02  returns 0x04 (0000ms, 1497ms total)
T37298 071:680 JLINK_ReadMemEx(0x02026D90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D90) - Data: D0 03 00 00  returns 0x04 (0001ms, 1498ms total)
T37298 071:681 JLINK_ReadMemEx(0x02026D94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D94) - Data: 01 00 00 00  returns 0x04 (0000ms, 1498ms total)
T37298 071:681 JLINK_ReadMemEx(0x02026D98, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D98) - Data: 00 00 00 00  returns 0x04 (0000ms, 1498ms total)
T37298 071:681 JLINK_ReadMemEx(0x02026D9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D9C) - Data: 01 00 00 00  returns 0x04 (0000ms, 1498ms total)
T37298 071:681 JLINK_ReadMemEx(0x02026DA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA0) - Data: 04 00 00 00  returns 0x04 (0000ms, 1498ms total)
T37298 071:681 JLINK_ReadMemEx(0x02026DA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA4) - Data: 0A 00 00 00  returns 0x04 (0000ms, 1498ms total)
T37298 071:681 JLINK_ReadMemEx(0x02026DA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1498ms total)
T37298 071:681 JLINK_ReadMemEx(0x02026DAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DAC) - Data: 0A 00 00 00  returns 0x04 (0000ms, 1498ms total)
T37298 071:681 JLINK_ReadMemEx(0x02026DB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DB0) - Data: D0 03 00 00  returns 0x04 (0000ms, 1498ms total)
T37298 082:568 JLINK_ReadMemEx(0x02026D84, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D84) - Data: D4 61 02 02  returns 0x04 (0000ms, 1498ms total)
T37298 082:568 JLINK_ReadMemEx(0x02026D88, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D88) - Data: 30 00 00 00  returns 0x04 (0000ms, 1498ms total)
T37298 082:568 JLINK_ReadMemEx(0x02026D8C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D8C) - Data: 04 62 02 02  returns 0x04 (0000ms, 1498ms total)
T37298 082:568 JLINK_ReadMemEx(0x02026D90, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D90) - Data: D0 03 00 00  returns 0x04 (0000ms, 1498ms total)
T37298 082:569 JLINK_ReadMemEx(0x02026D94, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D94) - Data: 01 00 00 00  returns 0x04 (0000ms, 1498ms total)
T37298 082:569 JLINK_ReadMemEx(0x02026D98, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D98) - Data: 00 00 00 00  returns 0x04 (0000ms, 1498ms total)
T37298 082:569 JLINK_ReadMemEx(0x02026D9C, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026D9C) - Data: 01 00 00 00  returns 0x04 (0000ms, 1498ms total)
T37298 082:569 JLINK_ReadMemEx(0x02026DA0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA0) - Data: 04 00 00 00  returns 0x04 (0000ms, 1498ms total)
T37298 082:569 JLINK_ReadMemEx(0x02026DA4, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA4) - Data: 0A 00 00 00  returns 0x04 (0000ms, 1498ms total)
T37298 082:569 JLINK_ReadMemEx(0x02026DA8, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DA8) - Data: 00 00 00 00  returns 0x04 (0000ms, 1498ms total)
T37298 082:569 JLINK_ReadMemEx(0x02026DAC, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DAC) - Data: 0A 00 00 00  returns 0x04 (0000ms, 1498ms total)
T37298 082:569 JLINK_ReadMemEx(0x02026DB0, 0x0004 Bytes, ..., Flags = 0x02000000) -- Read from C cache (4 bytes @ 0x02026DB0) - Data: D0 03 00 00  returns 0x04 (0000ms, 1498ms total)
T37298 098:903 JLINK_Close() -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> (0022ms, 1520ms total)
T37298 098:903  (0022ms, 1520ms total)
T37298 098:903 Closed (0022ms, 1520ms total)