Commit 81c981e6e88ea5ce22a9df14e17559f53ab365fd
1 parent
d791c667
V1.0.3
1、增加功能 键盘固件升级适配多种键盘; 2、广播包数量上限由原来的128扩充到255,解决测验题答案129条下发假死机问题;
Showing
4 changed files
with
1547 additions
and
926 deletions
Base_core/func_src/TransparentUpgrade.c
@@ -30,6 +30,7 @@ struct update_STR | @@ -30,6 +30,7 @@ struct update_STR | ||
30 | unsigned char Sver[3]; | 30 | unsigned char Sver[3]; |
31 | unsigned char crc[2]; | 31 | unsigned char crc[2]; |
32 | unsigned char file_len[4]; | 32 | unsigned char file_len[4]; |
33 | + unsigned char br; | ||
33 | //sequence limit over | 34 | //sequence limit over |
34 | 35 | ||
35 | unsigned int timer_cnt; //100ms timer | 36 | unsigned int timer_cnt; //100ms timer |
@@ -83,12 +84,14 @@ void updat__exit(void) | @@ -83,12 +84,14 @@ void updat__exit(void) | ||
83 | } | 84 | } |
84 | 85 | ||
85 | //-------------------------------------------------------- | 86 | //-------------------------------------------------------- |
86 | -enum DOWN_step | ||
87 | -{ | ||
88 | - Down_Start = 1, | ||
89 | - Down_Stop, | ||
90 | - Down_ASK, | ||
91 | -}; | 87 | +//enum DOWN_step |
88 | +//{ | ||
89 | +// Down_Start = 1, | ||
90 | +// Down_Stop, | ||
91 | +// Down_ASK, | ||
92 | +//}; | ||
93 | +unsigned char Down_Start = 1; | ||
94 | +unsigned char Down_Stop =2; | ||
92 | 95 | ||
93 | typedef union | 96 | typedef union |
94 | { | 97 | { |
@@ -310,7 +313,10 @@ void Upgrade_SendBeacon(uint8_t mode, uint8_t Count) | @@ -310,7 +313,10 @@ void Upgrade_SendBeacon(uint8_t mode, uint8_t Count) | ||
310 | buf[19] = DownLoad.ALLCRC.u8[1]; | 313 | buf[19] = DownLoad.ALLCRC.u8[1]; |
311 | 314 | ||
312 | buf[20] = DownLoad.ASK_POS; | 315 | buf[20] = DownLoad.ASK_POS; |
313 | - | 316 | + buf[21] =update.Hver ; |
317 | + memcpy(buf+22,update.Sver,3); | ||
318 | + buf[25] = update.br; | ||
319 | + | ||
314 | Crc = Upgrade_CRC(0, buf + 4, 27) & 0xFF; | 320 | Crc = Upgrade_CRC(0, buf + 4, 27) & 0xFF; |
315 | buf[31] = Crc; | 321 | buf[31] = Crc; |
316 | 322 | ||
@@ -387,7 +393,11 @@ void Upgrade_SendPassThroughPack(uint8_t count) | @@ -387,7 +393,11 @@ void Upgrade_SendPassThroughPack(uint8_t count) | ||
387 | buf[11] = DownLoad.Pack.CRC.u8[1]; | 393 | buf[11] = DownLoad.Pack.CRC.u8[1]; |
388 | buf[12] = DownLoad.TranSportPos; //该次传输序号 | 394 | buf[12] = DownLoad.TranSportPos; //该次传输序号 |
389 | buf[13] = count; //当前包序号 | 395 | buf[13] = count; //当前包序号 |
390 | - | 396 | + |
397 | + buf[14] =update.Hver ; | ||
398 | + //memcpy(buf+22,update.Sver,3); | ||
399 | + buf[15] = update.br; | ||
400 | + | ||
391 | Upgrade_TxPayload(buf, 32); | 401 | Upgrade_TxPayload(buf, 32); |
392 | Upgrade_WaitRfSendOK(); | 402 | Upgrade_WaitRfSendOK(); |
393 | Upgrade_DelayUs(200); | 403 | Upgrade_DelayUs(200); |
@@ -776,7 +786,7 @@ void update_kp_enter(const unsigned char *rx_pc) | @@ -776,7 +786,7 @@ void update_kp_enter(const unsigned char *rx_pc) | ||
776 | update.step =_STEP_NOTICE_ABORT;//停止命令 | 786 | update.step =_STEP_NOTICE_ABORT;//停止命令 |
777 | } | 787 | } |
778 | #else | 788 | #else |
779 | - memcpy(&update.Hver, rx_pc + 8, 10); | 789 | + memcpy(&update.Hver, rx_pc + 8, 10+1); |
780 | 790 | ||
781 | if (rx_pc[7] == 1) //开始 | 791 | if (rx_pc[7] == 1) //开始 |
782 | { //start | 792 | { //start |
@@ -791,6 +801,15 @@ void update_kp_enter(const unsigned char *rx_pc) | @@ -791,6 +801,15 @@ void update_kp_enter(const unsigned char *rx_pc) | ||
791 | // core__mon_sdk_intf.switch_onoff(0); | 801 | // core__mon_sdk_intf.switch_onoff(0); |
792 | update.start_end_flag = 1; | 802 | update.start_end_flag = 1; |
793 | base_core.switch_send_beacon(0);// base_core.switch_send_beacon(0); | 803 | base_core.switch_send_beacon(0);// base_core.switch_send_beacon(0); |
804 | + | ||
805 | + if( update.br != 0){ | ||
806 | + Down_Start = 11; | ||
807 | + Down_Stop =12; | ||
808 | + } | ||
809 | + else{ | ||
810 | + Down_Start = 1; | ||
811 | + Down_Stop =2; | ||
812 | + } | ||
794 | //#if _RTT_VIEW_ | 813 | //#if _RTT_VIEW_ |
795 | // view_print(0, "pc->base: start keypad update", rx_pc + 4); | 814 | // view_print(0, "pc->base: start keypad update", rx_pc + 4); |
796 | //#endif | 815 | //#endif |
Base_core/func_src/function_broadcast.c
@@ -8,7 +8,7 @@ | @@ -8,7 +8,7 @@ | ||
8 | #include "function.h" | 8 | #include "function.h" |
9 | #include "function_interface.h" | 9 | #include "function_interface.h" |
10 | 10 | ||
11 | -#define SLOT_MAX 128//128 //Max is 0xff from protocol!! | 11 | +#define SLOT_MAX 255//128 //Max is 0xff from protocol!! |
12 | 12 | ||
13 | struct content_STR{ | 13 | struct content_STR{ |
14 | //2.3.2发送的内容 | 14 | //2.3.2发送的内容 |
Inc/base_config.h
@@ -1150,9 +1150,9 @@ void operation_debug_io(unsigned char nbr);//debug only | @@ -1150,9 +1150,9 @@ void operation_debug_io(unsigned char nbr);//debug only | ||
1150 | #if (VER_TEST==1) | 1150 | #if (VER_TEST==1) |
1151 | #define SW1 100 | 1151 | #define SW1 100 |
1152 | // <o> SW2 | 1152 | // <o> SW2 |
1153 | - #define SW2 0 | 1153 | + #define SW2 13 |
1154 | // <o> SW3 | 1154 | // <o> SW3 |
1155 | - #define SW3 24 | 1155 | + #define SW3 1 |
1156 | // #define DEBUG_IO 1//逻辑分析仪IO启用 | 1156 | // #define DEBUG_IO 1//逻辑分析仪IO启用 |
1157 | #endif | 1157 | #endif |
1158 | // </e> | 1158 | // </e> |
@@ -1166,7 +1166,7 @@ void operation_debug_io(unsigned char nbr);//debug only | @@ -1166,7 +1166,7 @@ void operation_debug_io(unsigned char nbr);//debug only | ||
1166 | // <o> SW2 | 1166 | // <o> SW2 |
1167 | #define SW2 1 | 1167 | #define SW2 1 |
1168 | // <o> SW3 | 1168 | // <o> SW3 |
1169 | - #define SW3 2 | 1169 | + #define SW3 3 |
1170 | #endif | 1170 | #endif |
1171 | // </e> | 1171 | // </e> |
1172 | #endif | 1172 | #endif |
Proj/JLinkLog.txt
1 | -T1E14 20241:275 SEGGER J-Link V6.46 Log File (0000ms, 6173ms total) | ||
2 | -T1E14 20241:275 DLL Compiled: May 23 2019 17:49:56 (0000ms, 6173ms total) | ||
3 | -T1E14 20241:275 Logging started @ 2023-03-30 16:10 (0000ms, 6173ms total) | ||
4 | -T1E14 20241:275 JLINK_SetWarnOutHandler(...) (0000ms, 6173ms total) | ||
5 | -T1E14 20241:275 JLINK_OpenEx(...) | 1 | +T0C04 3281:050 SEGGER J-Link V6.46 Log File (0000ms, 39525ms total) |
2 | +T0C04 3281:050 DLL Compiled: May 23 2019 17:49:56 (0000ms, 39525ms total) | ||
3 | +T0C04 3281:050 Logging started @ 2023-05-04 16:59 (0000ms, 39525ms total) | ||
4 | +T0C04 3281:050 JLINK_SetWarnOutHandler(...) (0000ms, 39525ms total) | ||
5 | +T0C04 3281:050 JLINK_OpenEx(...) | ||
6 | Firmware: J-Link V9 compiled May 7 2021 16:26:12 | 6 | Firmware: J-Link V9 compiled May 7 2021 16:26:12 |
7 | Hardware: V9.40 | 7 | Hardware: V9.40 |
8 | S/N: 59425868 | 8 | S/N: 59425868 |
9 | Feature(s): RDI, GDB, FlashDL, FlashBP, JFlash, RDDI | 9 | Feature(s): RDI, GDB, FlashDL, FlashBP, JFlash, RDDI |
10 | TELNET listener socket opened on port 19021WEBSRV | 10 | TELNET listener socket opened on port 19021WEBSRV |
11 | -Starting webserver (0033ms, 6206ms total) | ||
12 | -T1E14 20241:275 WEBSRV Webserver running on local port 19080 (0033ms, 6206ms total) | ||
13 | -T1E14 20241:275 returns O.K. (0033ms, 6206ms total) | ||
14 | -T1E14 20241:308 JLINK_GetEmuCaps() returns 0xB9FF7BBF (0000ms, 6206ms total) | ||
15 | -T1E14 20241:308 JLINK_TIF_GetAvailable(...) (0001ms, 6207ms total) | ||
16 | -T1E14 20241:309 JLINK_SetErrorOutHandler(...) (0000ms, 6207ms total) | ||
17 | -T1E14 20241:309 JLINK_ExecCommand("ProjectFile = "E:\C100B_S6\C100B_GD\Proj\JLinkSettings.ini"", ...). returns 0x00 (0001ms, 6208ms total) | ||
18 | -T1E14 20241:310 JLINK_ExecCommand("Device = GD32F305RE", ...). Device "GD32F305RE" selected. returns 0x00 (0001ms, 6209ms total) | ||
19 | -T1E14 20241:311 JLINK_ExecCommand("DisableConnectionTimeout", ...). returns 0x01 (0000ms, 6209ms total) | ||
20 | -T1E14 20241:311 JLINK_GetHardwareVersion() returns 0x16F30 (0000ms, 6209ms total) | ||
21 | -T1E14 20241:311 JLINK_GetDLLVersion() returns 64600 (0000ms, 6209ms total) | ||
22 | -T1E14 20241:311 JLINK_GetFirmwareString(...) (0000ms, 6209ms total) | ||
23 | -T1E14 20241:311 JLINK_GetDLLVersion() returns 64600 (0000ms, 6209ms total) | ||
24 | -T1E14 20241:311 JLINK_GetCompileDateTime() (0000ms, 6209ms total) | ||
25 | -T1E14 20241:311 JLINK_GetFirmwareString(...) (0000ms, 6209ms total) | ||
26 | -T1E14 20241:311 JLINK_GetHardwareVersion() returns 0x16F30 (0000ms, 6209ms total) | ||
27 | -T1E14 20241:311 JLINK_TIF_Select(JLINKARM_TIF_SWD) returns 0x00 (0001ms, 6210ms total) | ||
28 | -T1E14 20241:312 JLINK_SetSpeed(5000) (0000ms, 6210ms total) | ||
29 | -T1E14 20241:312 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x2BA01477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x24770011)Iterating through AP map to find AHB-AP to use | 11 | +Starting webserver (0032ms, 39557ms total) |
12 | +T0C04 3281:050 WEBSRV Webserver running on local port 19080 (0032ms, 39557ms total) | ||
13 | +T0C04 3281:050 returns O.K. (0032ms, 39557ms total) | ||
14 | +T0C04 3281:082 JLINK_GetEmuCaps() returns 0xB9FF7BBF (0000ms, 39557ms total) | ||
15 | +T0C04 3281:082 JLINK_TIF_GetAvailable(...) (0001ms, 39558ms total) | ||
16 | +T0C04 3281:083 JLINK_SetErrorOutHandler(...) (0000ms, 39558ms total) | ||
17 | +T0C04 3281:083 JLINK_ExecCommand("ProjectFile = "E:\C100B_S6\C100B_GD\Proj\JLinkSettings.ini"", ...). returns 0x00 (0001ms, 39559ms total) | ||
18 | +T0C04 3281:084 JLINK_ExecCommand("Device = GD32F305RE", ...). Device "GD32F305RE" selected. returns 0x00 (0001ms, 39560ms total) | ||
19 | +T0C04 3281:085 JLINK_ExecCommand("DisableConnectionTimeout", ...). returns 0x01 (0000ms, 39560ms total) | ||
20 | +T0C04 3281:085 JLINK_GetHardwareVersion() returns 0x16F30 (0000ms, 39560ms total) | ||
21 | +T0C04 3281:085 JLINK_GetDLLVersion() returns 64600 (0000ms, 39560ms total) | ||
22 | +T0C04 3281:085 JLINK_GetFirmwareString(...) (0000ms, 39560ms total) | ||
23 | +T0C04 3281:085 JLINK_GetDLLVersion() returns 64600 (0000ms, 39560ms total) | ||
24 | +T0C04 3281:085 JLINK_GetCompileDateTime() (0000ms, 39560ms total) | ||
25 | +T0C04 3281:085 JLINK_GetFirmwareString(...) (0000ms, 39560ms total) | ||
26 | +T0C04 3281:085 JLINK_GetHardwareVersion() returns 0x16F30 (0000ms, 39560ms total) | ||
27 | +T0C04 3281:085 JLINK_TIF_Select(JLINKARM_TIF_SWD) returns 0x00 (0001ms, 39561ms total) | ||
28 | +T0C04 3281:086 JLINK_SetSpeed(5000) (0000ms, 39561ms total) | ||
29 | +T0C04 3281:086 JLINK_GetId() >0x10B TIF>Found SW-DP with ID 0x2BA01477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF>Scanning AP map to find all available APs >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[1]: Stopped AP scan as end of AP map has been reachedAP[0]: AHB-AP (IDR: 0x24770011)Iterating through AP map to find AHB-AP to use | ||
30 | >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410FC241. Implementer code: 0x41 (ARM)Found Cortex-M4 r0p1, Little endian. -- Max. mem block: 0x00011028 | 30 | >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x42 TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP[0]: Core foundAP[0]: AHB-AP ROM base: 0xE00FF000 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>CPUID register: 0x410FC241. Implementer code: 0x41 (ARM)Found Cortex-M4 r0p1, Little endian. -- Max. mem block: 0x00011028 |
31 | -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 6 code (BP) slots and 2 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_ReadMem(4 bytes @ 0xE000ED88) -- CPU_WriteMem(4 bytes @ 0xE000ED88) -- CPU_ReadMem(4 bytes @ 0xE000ED88) -- CPU_WriteMem(4 bytes @ 0xE000ED88)CoreSight components:ROMTbl[0] @ E00FF000 | 31 | -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 6 code (BP) slots and 2 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_ReadMem(4 bytes @ 0xE000ED88) -- CPU_WriteMem(4 bytes @ 0xE000ED88) -- CPU_ReadMem(4 bytes @ 0xE000ED88) -- CPU_WriteMem(4 bytes @ 0xE000ED88)CoreSight components:ROMTbl[0] @ E00FF000 |
32 | -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB00C SCS-M7 -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 003BB002 DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 002BB003 FPB -- CPU_ReadMem(16 bytes @ 0xE0000FF0) | 32 | -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB00C SCS-M7 -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 003BB002 DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 002BB003 FPB -- CPU_ReadMem(16 bytes @ 0xE0000FF0) |
33 | - -- CPU_ReadMem(16 bytes @ 0xE0000FE0)ROMTbl[0][3]: E0000000, CID: B105E00D, PID: 003BB001 ITM -- CPU_ReadMem(16 bytes @ 0xE00FF010) -- CPU_ReadMem(16 bytes @ 0xE0040FF0) -- CPU_ReadMem(16 bytes @ 0xE0040FE0)ROMTbl[0][4]: E0040000, CID: B105900D, PID: 000BB9A1 TPIU -- CPU_ReadMem(16 bytes @ 0xE0041FF0) -- CPU_ReadMem(16 bytes @ 0xE0041FE0)ROMTbl[0][5]: E0041000, CID: 00000000, PID: 00000000 ??? >0x0D TIF> >0x21 TIF> returns 0x2BA01477 (0121ms, 6331ms total) | ||
34 | -T1E14 20241:433 JLINK_GetDLLVersion() returns 64600 (0000ms, 6331ms total) | ||
35 | -T1E14 20241:433 JLINK_CORE_GetFound() returns 0xE0000FF (0000ms, 6331ms total) | ||
36 | -T1E14 20241:433 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000 returns 0x00 (0000ms, 6331ms total) | ||
37 | -T1E14 20241:433 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000 returns 0x00 (0000ms, 6331ms total) | ||
38 | -T1E14 20241:433 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000 returns 0x00 (0000ms, 6331ms total) | ||
39 | -T1E14 20241:433 JLINK_ReadMemEx(0xE0041FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0041FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x10 (0001ms, 6332ms total) | ||
40 | -T1E14 20241:434 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000 returns 0x00 (0000ms, 6332ms total) | ||
41 | -T1E14 20241:434 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0xE0040000 returns 0x00 (0000ms, 6332ms total) | ||
42 | -T1E14 20241:434 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000 returns 0x00 (0000ms, 6332ms total) | ||
43 | -T1E14 20241:434 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000 returns 0x00 (0000ms, 6332ms total) | ||
44 | -T1E14 20241:434 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000 returns 0x00 (0000ms, 6332ms total) | ||
45 | -T1E14 20241:434 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000 returns 0x00 (0000ms, 6332ms total) | ||
46 | -T1E14 20241:434 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0 returns 0x00 (0000ms, 6332ms total) | ||
47 | -T1E14 20241:434 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000001 returns 0x00 (0000ms, 6332ms total) | ||
48 | -T1E14 20241:434 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 41 C2 0F 41 returns 1 (0000ms, 6332ms total) | ||
49 | -T1E14 20241:434 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000 returns 0x00 (0000ms, 6332ms total) | ||
50 | -T1E14 20241:434 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 6332ms total) | ||
51 | -T1E14 20241:434 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 | ||
52 | - -- 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) (0066ms, 6398ms total) | ||
53 | -T1E14 20241:500 JLINK_ReadReg(R15 (PC)) returns 0x08000168 (0000ms, 6398ms total) | ||
54 | -T1E14 20241:500 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 6398ms total) | ||
55 | -T1E14 20241:500 JLINK_Halt() returns 0x00 (0000ms, 6398ms total) | ||
56 | -T1E14 20241:500 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00 returns 1 (0000ms, 6398ms total) | ||
57 | -T1E14 20241:500 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) returns 0 (0001ms, 6399ms total) | ||
58 | -T1E14 20241:501 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) returns 0 (0000ms, 6399ms total) | ||
59 | -T1E14 20241:501 JLINK_GetHWStatus(...) returns 0x00 (0001ms, 6400ms total) | ||
60 | -T1E14 20241:502 JLINK_GetNumBPUnits(Type = 0xFFFFFF00) returns 0x06 (0000ms, 6400ms total) | ||
61 | -T1E14 20241:502 JLINK_GetNumBPUnits(Type = 0xF0) returns 0x2000 (0000ms, 6400ms total) | ||
62 | -T1E14 20241:502 JLINK_GetNumWPUnits() returns 0x04 (0000ms, 6400ms total) | ||
63 | -T1E14 20241:502 JLINK_GetSpeed() returns 0xFA0 (0000ms, 6400ms total) | ||
64 | -T1E14 20241:502 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 02 00 00 00 returns 1 (0001ms, 6401ms total) | ||
65 | -T1E14 20241:503 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 02 00 00 00 returns 1 (0000ms, 6401ms total) | ||
66 | -T1E14 20241:503 JLINK_WriteMemEx(0xE0001000, 0x001C Bytes, ..., Flags = 0x02000004) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... -- CPU_WriteMem(28 bytes @ 0xE0001000) returns 0x1C (0000ms, 6401ms total) | ||
67 | -T1E14 20241:503 JLINK_ReadReg(R15 (PC)) returns 0x08000168 (0000ms, 6401ms total) | ||
68 | -T1E14 20241:503 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 6401ms total) | ||
69 | -T1E14 20241:506 JLINK_ReadMemEx(0xE0001004, 0x0004 Bytes, ..., Flags = 0x02000000) - Data: 00 00 00 00 returns 0x04 (0000ms, 6401ms total) | ||
70 | -T1E14 20241:593 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 6401ms total) | ||
71 | -T1E14 20241:593 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) | ||
72 | - -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) (0066ms, 6467ms total) | ||
73 | -T1E14 20241:659 JLINK_ReadReg(R15 (PC)) returns 0x08000168 (0000ms, 6467ms total) | ||
74 | -T1E14 20241:659 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 6467ms total) | ||
75 | -T1E14 20241:659 JLINK_ReadMemEx(0x08000168, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08000140) -- Updating C cache (128 bytes @ 0x08000140) -- Read from C cache (60 bytes @ 0x08000168) - Data: 06 48 80 47 06 48 00 47 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0001ms, 6468ms total) | ||
76 | -T1E14 20241:660 JLINK_ReadMemEx(0x08000168, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000168) - Data: 06 48 returns 0x02 (0000ms, 6468ms total) | ||
77 | -T1E14 20241:660 JLINK_ReadMemEx(0x0800016A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016A) - Data: 80 47 returns 0x02 (0000ms, 6468ms total) | ||
78 | -T1E14 20241:660 JLINK_ReadMemEx(0x0800016A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016A) - Data: 80 47 returns 0x02 (0000ms, 6468ms total) | ||
79 | -T1E14 20241:660 JLINK_ReadMemEx(0x0800016C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800016C) - Data: 06 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 6468ms total) | ||
80 | -T1E14 20241:660 JLINK_ReadMemEx(0x0800016C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016C) - Data: 06 48 returns 0x02 (0000ms, 6468ms total) | ||
81 | -T1E14 20241:777 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 44 44 44 44 44 44 84 88 00 87 00 00 returns 0x0C (0000ms, 6468ms total) | ||
82 | -T1E14 20241:777 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 00 A0 00 00 returns 0x04 (0001ms, 6469ms total) | ||
83 | -T1E14 20241:778 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0000ms, 6469ms total) | ||
84 | -T1E14 20241:778 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: 00 00 00 00 returns 0x04 (0000ms, 6469ms total) | ||
85 | -T1E14 20241:831 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 00 00 returns 0x04 (0001ms, 6470ms total) | ||
86 | -T1E14 20241:832 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 00 00 returns 0x04 (0000ms, 6470ms total) | ||
87 | -T1E14 20241:832 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0000ms, 6470ms total) | ||
88 | -T1E14 20241:832 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0001ms, 6471ms total) | ||
89 | -T1E14 20241:833 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0000ms, 6471ms total) | ||
90 | -T1E14 20241:833 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0001ms, 6472ms total) | ||
91 | -T1E14 20241:834 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 00 returns 0x01 (0001ms, 6473ms total) | ||
92 | -T1E14 20241:886 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x10 (0001ms, 6474ms total) | ||
93 | -T1E14 20241:887 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 00 00 00 00 returns 0x04 (0000ms, 6474ms total) | ||
94 | -T1E14 20241:887 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x14 (0000ms, 6474ms total) | ||
95 | -T1E14 20241:887 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: 00 00 00 00 returns 0x04 (0001ms, 6475ms total) | ||
96 | -T1E14 20241:888 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0000ms, 6475ms total) | ||
97 | -T1E14 20241:888 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0000ms, 6475ms total) | ||
98 | -T1E14 20241:888 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0001ms, 6476ms total) | ||
99 | -T1E14 20241:889 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 00 00 00 00 returns 0x04 (0000ms, 6476ms total) | ||
100 | -T1E14 20241:889 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0000ms, 6476ms total) | ||
101 | -T1E14 20243:883 JLINK_ReadMemEx(0x08000168, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08000168) - Data: 06 48 80 47 06 48 00 47 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 6476ms total) | ||
102 | -T1E14 20243:883 JLINK_ReadMemEx(0x08000168, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000168) - Data: 06 48 returns 0x02 (0000ms, 6476ms total) | ||
103 | -T1E14 20243:883 JLINK_ReadMemEx(0x0800016A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016A) - Data: 80 47 returns 0x02 (0000ms, 6476ms total) | ||
104 | -T1E14 20243:883 JLINK_ReadMemEx(0x0800016A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016A) - Data: 80 47 returns 0x02 (0000ms, 6476ms total) | ||
105 | -T1E14 20243:883 JLINK_ReadMemEx(0x0800016C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800016C) - Data: 06 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 6476ms total) | ||
106 | -T1E14 20243:883 JLINK_ReadMemEx(0x0800016C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016C) - Data: 06 48 returns 0x02 (0000ms, 6476ms total) | ||
107 | -T1E14 20243:883 JLINK_ReadMemEx(0x0800016C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800016C) - Data: 06 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 6476ms total) | ||
108 | -T1E14 20243:883 JLINK_ReadMemEx(0x0800016C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016C) - Data: 06 48 returns 0x02 (0000ms, 6476ms total) | ||
109 | -T1E14 20243:883 JLINK_ReadMemEx(0x0800016E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016E) - Data: 00 47 returns 0x02 (0000ms, 6476ms total) | ||
110 | -T1E14 20243:883 JLINK_ReadMemEx(0x0800016E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016E) - Data: 00 47 returns 0x02 (0000ms, 6476ms total) | ||
111 | -T1E14 20243:883 JLINK_ReadMemEx(0x08000170, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08000170) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 6476ms total) | ||
112 | -T1E14 20243:883 JLINK_ReadMemEx(0x08000170, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000170) - Data: FE E7 returns 0x02 (0000ms, 6476ms total) | ||
113 | -T1E14 20244:470 JLINK_ReadReg(R0) returns 0x0800C8B5 (0000ms, 6476ms total) | ||
114 | -T1E14 20244:470 JLINK_ReadReg(R1) returns 0x200001C4 (0000ms, 6476ms total) | ||
115 | -T1E14 20244:470 JLINK_ReadReg(R2) returns 0x0000000A (0001ms, 6477ms total) | ||
116 | -T1E14 20244:471 JLINK_ReadReg(R3) returns 0x00000040 (0000ms, 6477ms total) | ||
117 | -T1E14 20244:471 JLINK_ReadReg(R4) returns 0x00000000 (0000ms, 6477ms total) | ||
118 | -T1E14 20244:471 JLINK_ReadReg(R5) returns 0x08016B6C (0000ms, 6477ms total) | ||
119 | -T1E14 20244:471 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 6477ms total) | ||
120 | -T1E14 20244:471 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 6477ms total) | ||
121 | -T1E14 20244:471 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 6477ms total) | ||
122 | -T1E14 20244:471 JLINK_ReadReg(R9) returns 0x200001E0 (0000ms, 6477ms total) | ||
123 | -T1E14 20244:471 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 6477ms total) | ||
124 | -T1E14 20244:471 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 6477ms total) | ||
125 | -T1E14 20244:471 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 6477ms total) | ||
126 | -T1E14 20244:471 JLINK_ReadReg(R13 (SP)) returns 0x20000E30 (0000ms, 6477ms total) | ||
127 | -T1E14 20244:471 JLINK_ReadReg(R14) returns 0xFFFFFFFF (0000ms, 6477ms total) | ||
128 | -T1E14 20244:471 JLINK_ReadReg(R15 (PC)) returns 0x08000168 (0000ms, 6477ms total) | ||
129 | -T1E14 20244:471 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 6477ms total) | ||
130 | -T1E14 20244:471 JLINK_ReadReg(MSP) returns 0x20000E30 (0000ms, 6477ms total) | ||
131 | -T1E14 20244:471 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 6477ms total) | ||
132 | -T1E14 20244:471 JLINK_ReadReg(CFBP) returns 0x00000000 (0000ms, 6477ms total) | ||
133 | -T1E14 20244:471 JLINK_ReadReg(FPSCR) returns 0x00000000 (0003ms, 6480ms total) | ||
134 | -T1E14 20244:474 JLINK_ReadReg(FPS0) returns 0x2128505C (0000ms, 6480ms total) | ||
135 | -T1E14 20244:474 JLINK_ReadReg(FPS1) returns 0x355D1313 (0000ms, 6480ms total) | ||
136 | -T1E14 20244:474 JLINK_ReadReg(FPS2) returns 0x408B3960 (0000ms, 6480ms total) | ||
137 | -T1E14 20244:474 JLINK_ReadReg(FPS3) returns 0x39BC5180 (0000ms, 6480ms total) | ||
138 | -T1E14 20244:474 JLINK_ReadReg(FPS4) returns 0x750C82B0 (0000ms, 6480ms total) | ||
139 | -T1E14 20244:474 JLINK_ReadReg(FPS5) returns 0xD04248C9 (0000ms, 6480ms total) | ||
140 | -T1E14 20244:474 JLINK_ReadReg(FPS6) returns 0xC486016C (0000ms, 6480ms total) | ||
141 | -T1E14 20244:474 JLINK_ReadReg(FPS7) returns 0xD192C904 (0000ms, 6480ms total) | ||
142 | -T1E14 20244:474 JLINK_ReadReg(FPS8) returns 0x89142488 (0000ms, 6480ms total) | ||
143 | -T1E14 20244:474 JLINK_ReadReg(FPS9) returns 0x004226A1 (0000ms, 6480ms total) | ||
144 | -T1E14 20244:474 JLINK_ReadReg(FPS10) returns 0x6639B98C (0000ms, 6480ms total) | ||
145 | -T1E14 20244:474 JLINK_ReadReg(FPS11) returns 0x438619CE (0000ms, 6480ms total) | ||
146 | -T1E14 20244:474 JLINK_ReadReg(FPS12) returns 0x91124AA9 (0000ms, 6480ms total) | ||
147 | -T1E14 20244:474 JLINK_ReadReg(FPS13) returns 0xA0022E21 (0000ms, 6480ms total) | ||
148 | -T1E14 20244:474 JLINK_ReadReg(FPS14) returns 0x81480606 (0000ms, 6480ms total) | ||
149 | -T1E14 20244:474 JLINK_ReadReg(FPS15) returns 0x1B0892C5 (0000ms, 6480ms total) | ||
150 | -T1E14 20244:474 JLINK_ReadReg(FPS16) returns 0xD3321002 (0000ms, 6480ms total) | ||
151 | -T1E14 20244:474 JLINK_ReadReg(FPS17) returns 0x90700740 (0000ms, 6480ms total) | ||
152 | -T1E14 20244:474 JLINK_ReadReg(FPS18) returns 0xAE700274 (0000ms, 6480ms total) | ||
153 | -T1E14 20244:474 JLINK_ReadReg(FPS19) returns 0x099900E6 (0000ms, 6480ms total) | ||
154 | -T1E14 20244:474 JLINK_ReadReg(FPS20) returns 0xC5006363 (0000ms, 6480ms total) | ||
155 | -T1E14 20244:474 JLINK_ReadReg(FPS21) returns 0x21040444 (0000ms, 6480ms total) | ||
156 | -T1E14 20244:474 JLINK_ReadReg(FPS22) returns 0x08001800 (0000ms, 6480ms total) | ||
157 | -T1E14 20244:474 JLINK_ReadReg(FPS23) returns 0x60A14080 (0000ms, 6480ms total) | ||
158 | -T1E14 20244:474 JLINK_ReadReg(FPS24) returns 0x03118089 (0000ms, 6480ms total) | ||
159 | -T1E14 20244:474 JLINK_ReadReg(FPS25) returns 0x006CA201 (0000ms, 6480ms total) | ||
160 | -T1E14 20244:474 JLINK_ReadReg(FPS26) returns 0x5818C9B5 (0000ms, 6480ms total) | ||
161 | -T1E14 20244:474 JLINK_ReadReg(FPS27) returns 0x42C02103 (0000ms, 6480ms total) | ||
162 | -T1E14 20244:474 JLINK_ReadReg(FPS28) returns 0x63480024 (0000ms, 6480ms total) | ||
163 | -T1E14 20244:474 JLINK_ReadReg(FPS29) returns 0x884C0C86 (0000ms, 6480ms total) | ||
164 | -T1E14 20244:474 JLINK_ReadReg(FPS30) returns 0x29C0821F (0000ms, 6480ms total) | ||
165 | -T1E14 20244:474 JLINK_ReadReg(FPS31) returns 0xB16402C4 (0000ms, 6480ms total) | ||
166 | -T1E14 20244:527 JLINK_ReadMemEx(0x20000960, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000940) -- Updating C cache (64 bytes @ 0x20000940) -- Read from C cache (2 bytes @ 0x20000960) - Data: 00 00 returns 0x02 (0001ms, 6481ms total) | ||
167 | -T1E14 20244:529 JLINK_ReadMemEx(0x20000960, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000960) - Data: 00 00 returns 0x02 (0000ms, 6481ms total) | ||
168 | -T1E14 20244:530 JLINK_ReadMemEx(0x20000960, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000960) - Data: 00 00 returns 0x02 (0000ms, 6481ms total) | ||
169 | -T1648 20244:604 JLINK_ReadMemEx(0x08000168, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000168) - Data: 06 48 returns 0x02 (0000ms, 6481ms total) | ||
170 | -T1648 20244:604 JLINK_SetBPEx(Addr = 0x0800FF34, Type = 0xFFFFFFF2) returns 0x00000001 (0000ms, 6481ms total) | ||
171 | -T1648 20244:604 JLINK_SetBPEx(Addr = 0x0800FF54, Type = 0xFFFFFFF2) returns 0x00000002 (0001ms, 6482ms total) | ||
172 | -T1648 20244:605 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0002018) -- CPU_WriteMem(4 bytes @ 0xE000201C) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0002ms, 6484ms total) | ||
173 | -T1648 20244:708 JLINK_IsHalted() returns TRUE (0002ms, 6486ms total) | ||
174 | -T1648 20244:710 JLINK_Halt() returns 0x00 (0000ms, 6484ms total) | ||
175 | -T1648 20244:710 JLINK_IsHalted() returns TRUE (0000ms, 6484ms total) | ||
176 | -T1648 20244:710 JLINK_IsHalted() returns TRUE (0000ms, 6484ms total) | ||
177 | -T1648 20244:710 JLINK_IsHalted() returns TRUE (0000ms, 6484ms total) | ||
178 | -T1648 20244:710 JLINK_ReadReg(R15 (PC)) returns 0x0800FF34 (0000ms, 6484ms total) | ||
179 | -T1648 20244:710 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 6484ms total) | ||
180 | -T1648 20244:710 JLINK_ClrBPEx(BPHandle = 0x00000001) returns 0x00 (0000ms, 6484ms total) | ||
181 | -T1648 20244:710 JLINK_ClrBPEx(BPHandle = 0x00000002) returns 0x00 (0000ms, 6484ms total) | ||
182 | -T1648 20244:710 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0000ms, 6484ms total) | ||
183 | -T1648 20244:710 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0001ms, 6485ms total) | ||
184 | -T1648 20244:711 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0000ms, 6485ms total) | ||
185 | -T1648 20244:711 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0000ms, 6485ms total) | ||
186 | -T1648 20244:711 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0001ms, 6486ms total) | ||
187 | -T1648 20244:712 JLINK_ReadReg(R0) returns 0x0800FF35 (0000ms, 6486ms total) | ||
188 | -T1648 20244:712 JLINK_ReadReg(R1) returns 0x20011E00 (0000ms, 6486ms total) | ||
189 | -T1648 20244:712 JLINK_ReadReg(R2) returns 0x00000000 (0000ms, 6486ms total) | ||
190 | -T1648 20244:712 JLINK_ReadReg(R3) returns 0x0800B85D (0000ms, 6486ms total) | ||
191 | -T1648 20244:712 JLINK_ReadReg(R4) returns 0x08016B6C (0000ms, 6486ms total) | ||
192 | -T1648 20244:712 JLINK_ReadReg(R5) returns 0x08016B6C (0000ms, 6486ms total) | ||
193 | -T1648 20244:712 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 6486ms total) | ||
194 | -T1648 20244:712 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 6486ms total) | ||
195 | -T1648 20244:712 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 6486ms total) | ||
196 | -T1648 20244:712 JLINK_ReadReg(R9) returns 0x200001E0 (0000ms, 6486ms total) | ||
197 | -T1648 20244:712 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 6486ms total) | ||
198 | -T1648 20244:712 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 6486ms total) | ||
199 | -T1648 20244:712 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 6486ms total) | ||
200 | -T1648 20244:712 JLINK_ReadReg(R13 (SP)) returns 0x20011E00 (0000ms, 6486ms total) | ||
201 | -T1648 20244:712 JLINK_ReadReg(R14) returns 0x0800825D (0000ms, 6486ms total) | ||
202 | -T1648 20244:712 JLINK_ReadReg(R15 (PC)) returns 0x0800FF34 (0000ms, 6486ms total) | ||
203 | -T1648 20244:712 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 6486ms total) | ||
204 | -T1648 20244:712 JLINK_ReadReg(MSP) returns 0x20011E00 (0000ms, 6486ms total) | ||
205 | -T1648 20244:712 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 6486ms total) | ||
206 | -T1648 20244:712 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 6486ms total) | ||
207 | -T1648 20244:712 JLINK_ReadReg(FPSCR) returns 0x00000000 (0003ms, 6489ms total) | ||
208 | -T1648 20244:715 JLINK_ReadReg(FPS0) returns 0x2128505C (0000ms, 6489ms total) | ||
209 | -T1648 20244:715 JLINK_ReadReg(FPS1) returns 0x355D1313 (0000ms, 6489ms total) | ||
210 | -T1648 20244:715 JLINK_ReadReg(FPS2) returns 0x408B3960 (0000ms, 6489ms total) | ||
211 | -T1648 20244:715 JLINK_ReadReg(FPS3) returns 0x39BC5180 (0000ms, 6489ms total) | ||
212 | -T1648 20244:715 JLINK_ReadReg(FPS4) returns 0x750C82B0 (0000ms, 6489ms total) | ||
213 | -T1648 20244:715 JLINK_ReadReg(FPS5) returns 0xD04248C9 (0000ms, 6489ms total) | ||
214 | -T1648 20244:715 JLINK_ReadReg(FPS6) returns 0xC486016C (0000ms, 6489ms total) | ||
215 | -T1648 20244:715 JLINK_ReadReg(FPS7) returns 0xD192C904 (0000ms, 6489ms total) | ||
216 | -T1648 20244:715 JLINK_ReadReg(FPS8) returns 0x89142488 (0000ms, 6489ms total) | ||
217 | -T1648 20244:715 JLINK_ReadReg(FPS9) returns 0x004226A1 (0000ms, 6489ms total) | ||
218 | -T1648 20244:715 JLINK_ReadReg(FPS10) returns 0x6639B98C (0000ms, 6489ms total) | ||
219 | -T1648 20244:715 JLINK_ReadReg(FPS11) returns 0x438619CE (0001ms, 6490ms total) | ||
220 | -T1648 20244:716 JLINK_ReadReg(FPS12) returns 0x91124AA9 (0000ms, 6490ms total) | ||
221 | -T1648 20244:716 JLINK_ReadReg(FPS13) returns 0xA0022E21 (0000ms, 6490ms total) | ||
222 | -T1648 20244:716 JLINK_ReadReg(FPS14) returns 0x81480606 (0000ms, 6490ms total) | ||
223 | -T1648 20244:716 JLINK_ReadReg(FPS15) returns 0x1B0892C5 (0000ms, 6490ms total) | ||
224 | -T1648 20244:716 JLINK_ReadReg(FPS16) returns 0xD3321002 (0000ms, 6490ms total) | ||
225 | -T1648 20244:716 JLINK_ReadReg(FPS17) returns 0x90700740 (0000ms, 6490ms total) | ||
226 | -T1648 20244:716 JLINK_ReadReg(FPS18) returns 0xAE700274 (0000ms, 6490ms total) | ||
227 | -T1648 20244:716 JLINK_ReadReg(FPS19) returns 0x099900E6 (0000ms, 6490ms total) | ||
228 | -T1648 20244:716 JLINK_ReadReg(FPS20) returns 0xC5006363 (0000ms, 6490ms total) | ||
229 | -T1648 20244:716 JLINK_ReadReg(FPS21) returns 0x21040444 (0000ms, 6490ms total) | ||
230 | -T1648 20244:716 JLINK_ReadReg(FPS22) returns 0x08001800 (0000ms, 6490ms total) | ||
231 | -T1648 20244:716 JLINK_ReadReg(FPS23) returns 0x60A14080 (0000ms, 6490ms total) | ||
232 | -T1648 20244:716 JLINK_ReadReg(FPS24) returns 0x03118089 (0000ms, 6490ms total) | ||
233 | -T1648 20244:716 JLINK_ReadReg(FPS25) returns 0x006CA201 (0000ms, 6490ms total) | ||
234 | -T1648 20244:716 JLINK_ReadReg(FPS26) returns 0x5818C9B5 (0000ms, 6490ms total) | ||
235 | -T1648 20244:716 JLINK_ReadReg(FPS27) returns 0x42C02103 (0000ms, 6490ms total) | ||
236 | -T1648 20244:716 JLINK_ReadReg(FPS28) returns 0x63480024 (0000ms, 6490ms total) | ||
237 | -T1648 20244:716 JLINK_ReadReg(FPS29) returns 0x884C0C86 (0000ms, 6490ms total) | ||
238 | -T1648 20244:716 JLINK_ReadReg(FPS30) returns 0x29C0821F (0000ms, 6490ms total) | ||
239 | -T1648 20244:716 JLINK_ReadReg(FPS31) returns 0xB16402C4 (0000ms, 6490ms total) | ||
240 | -T1E14 20244:716 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: E9 A6 09 00 returns 1 (0000ms, 6490ms total) | ||
241 | -T1E14 20244:717 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 00 00 returns 0x04 (0000ms, 6490ms total) | ||
242 | -T1E14 20244:717 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 00 00 returns 0x04 (0000ms, 6490ms total) | ||
243 | -T1E14 20244:717 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0001ms, 6491ms total) | ||
244 | -T1E14 20244:718 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0000ms, 6491ms total) | ||
245 | -T1E14 20244:718 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0000ms, 6491ms total) | ||
246 | -T1E14 20244:718 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0002ms, 6493ms total) | ||
247 | -T1E14 20244:720 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 00 returns 0x01 (0000ms, 6493ms total) | ||
248 | -T1E14 20244:720 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x10 (0001ms, 6494ms total) | ||
249 | -T1E14 20244:721 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 00 00 00 00 returns 0x04 (0000ms, 6494ms total) | ||
250 | -T1E14 20244:721 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x14 (0001ms, 6495ms total) | ||
251 | -T1E14 20244:722 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: 00 00 00 00 returns 0x04 (0000ms, 6495ms total) | ||
252 | -T1E14 20244:722 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0000ms, 6495ms total) | ||
253 | -T1E14 20244:722 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0001ms, 6496ms total) | ||
254 | -T1E14 20244:723 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0000ms, 6496ms total) | ||
255 | -T1E14 20244:723 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 00 00 00 00 returns 0x04 (0000ms, 6496ms total) | ||
256 | -T1E14 20244:723 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0000ms, 6496ms total) | ||
257 | -T1E14 20244:724 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 44 44 33 43 84 88 00 86 00 00 returns 0x0C (0000ms, 6496ms total) | ||
258 | -T1E14 20244:724 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 00 A6 00 00 returns 0x04 (0000ms, 6496ms total) | ||
259 | -T1E14 20244:724 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0001ms, 6497ms total) | ||
260 | -T1E14 20244:725 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: 07 07 00 00 returns 0x04 (0000ms, 6497ms total) | ||
261 | -T1E14 20244:726 JLINK_ReadMemEx(0x0800FF34, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0800FF00) -- Updating C cache (128 bytes @ 0x0800FF00) -- Read from C cache (60 bytes @ 0x0800FF34) - Data: 4F F4 00 41 08 03 01 F0 B7 F8 62 B6 00 BF EF F3 ... returns 0x3C (0001ms, 6498ms total) | ||
262 | -T1E14 20244:727 JLINK_ReadMemEx(0x0800FF34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF34) - Data: 4F F4 returns 0x02 (0000ms, 6498ms total) | ||
263 | -T1E14 20244:727 JLINK_ReadMemEx(0x0800FF36, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF36) - Data: 00 41 returns 0x02 (0000ms, 6498ms total) | ||
264 | -T1648 20247:517 JLINK_ReadMemEx(0x0800FF34, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FF34) - Data: 4F F4 returns 0x02 (0000ms, 6498ms total) | ||
265 | -T1648 20247:517 JLINK_SetBPEx(Addr = 0x0800FF54, Type = 0xFFFFFFF2) returns 0x00000003 (0000ms, 6498ms total) | ||
266 | -T1648 20247:517 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) (0002ms, 6500ms total) | ||
267 | -T1648 20247:620 JLINK_IsHalted() returns TRUE (0002ms, 6502ms total) | ||
268 | -T1648 20247:622 JLINK_Halt() returns 0x00 (0000ms, 6500ms total) | ||
269 | -T1648 20247:622 JLINK_IsHalted() returns TRUE (0000ms, 6500ms total) | ||
270 | -T1648 20247:622 JLINK_IsHalted() returns TRUE (0000ms, 6500ms total) | ||
271 | -T1648 20247:622 JLINK_IsHalted() returns TRUE (0000ms, 6500ms total) | ||
272 | -T1648 20247:622 JLINK_ReadReg(R15 (PC)) returns 0x0800FF54 (0000ms, 6500ms total) | ||
273 | -T1648 20247:622 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 6500ms total) | ||
274 | -T1648 20247:622 JLINK_ClrBPEx(BPHandle = 0x00000003) returns 0x00 (0000ms, 6500ms total) | ||
275 | -T1648 20247:622 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0000ms, 6500ms total) | ||
276 | -T1648 20247:622 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0000ms, 6500ms total) | ||
277 | -T1648 20247:622 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0000ms, 6500ms total) | ||
278 | -T1648 20247:622 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0002ms, 6502ms total) | ||
279 | -T1648 20247:624 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0000ms, 6502ms total) | ||
280 | -T1648 20247:624 JLINK_ReadReg(R0) returns 0x0000070F (0000ms, 6502ms total) | ||
281 | -T1648 20247:624 JLINK_ReadReg(R1) returns 0x10008007 (0000ms, 6502ms total) | ||
282 | -T1648 20247:624 JLINK_ReadReg(R2) returns 0x4002101C (0000ms, 6502ms total) | ||
283 | -T1648 20247:624 JLINK_ReadReg(R3) returns 0x40021000 (0000ms, 6502ms total) | ||
284 | -T1648 20247:624 JLINK_ReadReg(R4) returns 0x00000000 (0000ms, 6502ms total) | ||
285 | -T1648 20247:624 JLINK_ReadReg(R5) returns 0x08016B6C (0000ms, 6502ms total) | ||
286 | -T1648 20247:624 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 6502ms total) | ||
287 | -T1648 20247:624 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 6502ms total) | ||
288 | -T1648 20247:624 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 6502ms total) | ||
289 | -T1648 20247:624 JLINK_ReadReg(R9) returns 0x200001E0 (0000ms, 6502ms total) | ||
290 | -T1648 20247:624 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 6502ms total) | ||
291 | -T1648 20247:624 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 6502ms total) | ||
292 | -T1648 20247:624 JLINK_ReadReg(R12) returns 0x00000000 (0000ms, 6502ms total) | ||
293 | -T1648 20247:624 JLINK_ReadReg(R13 (SP)) returns 0x20011E00 (0000ms, 6502ms total) | ||
294 | -T1648 20247:624 JLINK_ReadReg(R14) returns 0x08011CE3 (0000ms, 6502ms total) | ||
295 | -T1648 20247:624 JLINK_ReadReg(R15 (PC)) returns 0x0800FF54 (0000ms, 6502ms total) | ||
296 | -T1648 20247:624 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 6502ms total) | ||
297 | -T1648 20247:624 JLINK_ReadReg(MSP) returns 0x20011E00 (0000ms, 6502ms total) | ||
298 | -T1648 20247:625 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 6503ms total) | ||
299 | -T1648 20247:625 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 6503ms total) | ||
300 | -T1648 20247:625 JLINK_ReadReg(FPSCR) returns 0x00000000 (0002ms, 6505ms total) | ||
301 | -T1648 20247:627 JLINK_ReadReg(FPS0) returns 0x2128505C (0000ms, 6505ms total) | ||
302 | -T1648 20247:627 JLINK_ReadReg(FPS1) returns 0x355D1313 (0000ms, 6505ms total) | ||
303 | -T1648 20247:627 JLINK_ReadReg(FPS2) returns 0x408B3960 (0000ms, 6505ms total) | ||
304 | -T1648 20247:627 JLINK_ReadReg(FPS3) returns 0x39BC5180 (0000ms, 6505ms total) | ||
305 | -T1648 20247:627 JLINK_ReadReg(FPS4) returns 0x750C82B0 (0000ms, 6505ms total) | ||
306 | -T1648 20247:627 JLINK_ReadReg(FPS5) returns 0xD04248C9 (0000ms, 6505ms total) | ||
307 | -T1648 20247:627 JLINK_ReadReg(FPS6) returns 0xC486016C (0000ms, 6505ms total) | ||
308 | -T1648 20247:627 JLINK_ReadReg(FPS7) returns 0xD192C904 (0000ms, 6505ms total) | ||
309 | -T1648 20247:627 JLINK_ReadReg(FPS8) returns 0x89142488 (0000ms, 6505ms total) | ||
310 | -T1648 20247:627 JLINK_ReadReg(FPS9) returns 0x004226A1 (0000ms, 6505ms total) | ||
311 | -T1648 20247:627 JLINK_ReadReg(FPS10) returns 0x6639B98C (0000ms, 6505ms total) | ||
312 | -T1648 20247:627 JLINK_ReadReg(FPS11) returns 0x438619CE (0000ms, 6505ms total) | ||
313 | -T1648 20247:627 JLINK_ReadReg(FPS12) returns 0x91124AA9 (0000ms, 6505ms total) | ||
314 | -T1648 20247:627 JLINK_ReadReg(FPS13) returns 0xA0022E21 (0000ms, 6505ms total) | ||
315 | -T1648 20247:627 JLINK_ReadReg(FPS14) returns 0x81480606 (0000ms, 6505ms total) | ||
316 | -T1648 20247:627 JLINK_ReadReg(FPS15) returns 0x1B0892C5 (0000ms, 6505ms total) | ||
317 | -T1648 20247:627 JLINK_ReadReg(FPS16) returns 0xD3321002 (0000ms, 6505ms total) | ||
318 | -T1648 20247:627 JLINK_ReadReg(FPS17) returns 0x90700740 (0000ms, 6505ms total) | ||
319 | -T1648 20247:627 JLINK_ReadReg(FPS18) returns 0xAE700274 (0000ms, 6505ms total) | ||
320 | -T1648 20247:627 JLINK_ReadReg(FPS19) returns 0x099900E6 (0000ms, 6505ms total) | ||
321 | -T1648 20247:627 JLINK_ReadReg(FPS20) returns 0xC5006363 (0000ms, 6505ms total) | ||
322 | -T1648 20247:627 JLINK_ReadReg(FPS21) returns 0x21040444 (0000ms, 6505ms total) | ||
323 | -T1648 20247:627 JLINK_ReadReg(FPS22) returns 0x08001800 (0000ms, 6505ms total) | ||
324 | -T1648 20247:627 JLINK_ReadReg(FPS23) returns 0x60A14080 (0000ms, 6505ms total) | ||
325 | -T1648 20247:627 JLINK_ReadReg(FPS24) returns 0x03118089 (0000ms, 6505ms total) | ||
326 | -T1648 20247:627 JLINK_ReadReg(FPS25) returns 0x006CA201 (0000ms, 6505ms total) | ||
327 | -T1648 20247:627 JLINK_ReadReg(FPS26) returns 0x5818C9B5 (0000ms, 6505ms total) | ||
328 | -T1648 20247:627 JLINK_ReadReg(FPS27) returns 0x42C02103 (0000ms, 6505ms total) | ||
329 | -T1648 20247:627 JLINK_ReadReg(FPS28) returns 0x63480024 (0000ms, 6505ms total) | ||
330 | -T1648 20247:627 JLINK_ReadReg(FPS29) returns 0x884C0C86 (0000ms, 6505ms total) | ||
331 | -T1648 20247:627 JLINK_ReadReg(FPS30) returns 0x29C0821F (0000ms, 6505ms total) | ||
332 | -T1648 20247:627 JLINK_ReadReg(FPS31) returns 0xB16402C4 (0000ms, 6505ms total) | ||
333 | -T1E14 20247:628 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: 8F AA 09 00 returns 1 (0000ms, 6505ms total) | ||
334 | -T1E14 20247:628 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 00 00 returns 0x04 (0001ms, 6506ms total) | ||
335 | -T1E14 20247:629 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 00 00 returns 0x04 (0000ms, 6506ms total) | ||
336 | -T1E14 20247:629 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0000ms, 6506ms total) | ||
337 | -T1E14 20247:629 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0001ms, 6507ms total) | ||
338 | -T1E14 20247:630 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0000ms, 6507ms total) | ||
339 | -T1E14 20247:630 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0001ms, 6508ms total) | ||
340 | -T1E14 20247:631 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 00 returns 0x01 (0001ms, 6509ms total) | ||
341 | -T1E14 20247:632 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x10 (0000ms, 6509ms total) | ||
342 | -T1E14 20247:632 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 00 00 00 00 returns 0x04 (0001ms, 6510ms total) | ||
343 | -T1E14 20247:633 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x14 (0000ms, 6510ms total) | ||
344 | -T1E14 20247:633 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: 00 00 00 00 returns 0x04 (0000ms, 6510ms total) | ||
345 | -T1E14 20247:633 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0001ms, 6511ms total) | ||
346 | -T1E14 20247:634 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0000ms, 6511ms total) | ||
347 | -T1E14 20247:634 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0000ms, 6511ms total) | ||
348 | -T1E14 20247:634 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 00 00 00 00 returns 0x04 (0001ms, 6512ms total) | ||
349 | -T1E14 20247:635 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0000ms, 6512ms total) | ||
350 | -T1E14 20247:635 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 44 44 33 43 84 88 00 86 00 00 returns 0x0C (0001ms, 6513ms total) | ||
351 | -T1E14 20247:636 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 00 A6 00 00 returns 0x04 (0000ms, 6513ms total) | ||
352 | -T1E14 20247:636 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0000ms, 6513ms total) | ||
353 | -T1E14 20247:636 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: 07 07 00 00 returns 0x04 (0001ms, 6514ms total) | ||
354 | -T1648 20248:325 JLINK_ReadMemEx(0x0800FF54, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800FF40) -- Updating C cache (64 bytes @ 0x0800FF40) -- Read from C cache (2 bytes @ 0x0800FF54) - Data: 03 F0 returns 0x02 (0000ms, 6514ms total) | ||
355 | -T1648 20248:325 JLINK_Step() -- Read from C cache (2 bytes @ 0x0800FF54) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- CPU_ReadMem(4 bytes @ 0xE000ED18) -- CPU_WriteMem(4 bytes @ 0xE000ED18) -- Read from C cache (2 bytes @ 0x0800FF56) -- Simulated returns 0x00 (0002ms, 6516ms total) | ||
356 | -T1648 20248:327 JLINK_ReadReg(R15 (PC)) returns 0x08013310 (0000ms, 6516ms total) | ||
357 | -T1648 20248:327 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 6516ms total) | ||
358 | -T1648 20248:327 JLINK_SetBPEx(Addr = 0x0800FF54, Type = 0xFFFFFFF2) returns 0x00000004 (0000ms, 6516ms total) | ||
359 | -T1648 20248:327 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0002ms, 6518ms total) | ||
360 | -T1648 20248:430 JLINK_IsHalted() returns FALSE (0001ms, 6519ms total) | ||
361 | -T1648 20248:531 JLINK_IsHalted() returns FALSE (0001ms, 6519ms total) | ||
362 | -T1648 20248:633 JLINK_IsHalted() returns FALSE (0000ms, 6518ms total) | ||
363 | -T1648 20248:733 JLINK_IsHalted() returns FALSE (0001ms, 6519ms total) | ||
364 | -T1648 20248:835 JLINK_IsHalted() returns FALSE (0000ms, 6518ms total) | ||
365 | -T1648 20248:936 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: 3B C7 5F 04 returns 1 (0000ms, 6518ms total) | ||
366 | -T1E14 20248:936 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 80 70 returns 0x04 (0001ms, 6519ms total) | ||
367 | -T1E14 20248:937 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 80 70 returns 0x04 (0000ms, 6519ms total) | ||
368 | -T1E14 20248:937 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0001ms, 6520ms total) | ||
369 | -T1E14 20248:938 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0000ms, 6520ms total) | ||
370 | -T1E14 20248:938 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0000ms, 6520ms total) | ||
371 | -T1E14 20248:938 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0002ms, 6522ms total) | ||
372 | -T1E14 20248:940 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 50 returns 0x01 (0000ms, 6522ms total) | ||
373 | -T1E14 20248:940 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 returns 0x10 (0001ms, 6523ms total) | ||
374 | -T1E14 20248:941 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 1E 00 00 00 returns 0x04 (0000ms, 6523ms total) | ||
375 | -T1E14 20248:941 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 EA 00 00 00 ... returns 0x14 (0001ms, 6524ms total) | ||
376 | -T1E14 20248:942 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: F9 00 00 00 returns 0x04 (0000ms, 6524ms total) | ||
377 | -T1E14 20248:942 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0000ms, 6524ms total) | ||
378 | -T1E14 20248:942 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0001ms, 6525ms total) | ||
379 | -T1E14 20248:943 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0000ms, 6525ms total) | ||
380 | -T1E14 20248:943 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 01 00 00 00 returns 0x04 (0000ms, 6525ms total) | ||
381 | -T1E14 20248:943 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0001ms, 6526ms total) | ||
382 | -T1E14 20248:966 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 B4 B4 33 43 84 88 01 87 00 00 returns 0x0C (0001ms, 6527ms total) | ||
383 | -T1E14 20248:967 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 01 A7 00 00 returns 0x04 (0000ms, 6527ms total) | ||
384 | -T1E14 20248:967 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0001ms, 6528ms total) | ||
385 | -T1E14 20248:968 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: A7 07 00 00 returns 0x04 (0000ms, 6528ms total) | ||
386 | -T1648 20248:969 JLINK_IsHalted() returns FALSE (0000ms, 6528ms total) | ||
387 | -T1648 20249:069 JLINK_IsHalted() returns FALSE (0000ms, 6528ms total) | ||
388 | -T1648 20249:170 JLINK_IsHalted() returns FALSE (0001ms, 6529ms total) | ||
389 | -T1648 20249:272 JLINK_IsHalted() returns FALSE (0000ms, 6528ms total) | ||
390 | -T1648 20249:373 JLINK_IsHalted() returns FALSE (0000ms, 6528ms total) | ||
391 | -T1648 20249:474 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 3B C7 5F 04 returns 1 (0000ms, 6528ms total) | ||
392 | -T1E14 20249:474 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 80 70 returns 0x04 (0000ms, 6528ms total) | ||
393 | -T1E14 20249:474 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 80 70 returns 0x04 (0000ms, 6528ms total) | ||
394 | -T1E14 20249:474 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0001ms, 6529ms total) | ||
395 | -T1E14 20249:475 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0000ms, 6529ms total) | ||
396 | -T1E14 20249:475 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0000ms, 6529ms total) | ||
397 | -T1E14 20249:475 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0002ms, 6531ms total) | ||
398 | -T1E14 20249:477 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 50 returns 0x01 (0000ms, 6531ms total) | ||
399 | -T1E14 20249:477 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 returns 0x10 (0001ms, 6532ms total) | ||
400 | -T1E14 20249:478 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 1E 00 00 00 returns 0x04 (0000ms, 6532ms total) | ||
401 | -T1E14 20249:478 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00 00 ... returns 0x14 (0001ms, 6533ms total) | ||
402 | -T1E14 20249:479 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: F9 00 00 00 returns 0x04 (0000ms, 6533ms total) | ||
403 | -T1E14 20249:479 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0000ms, 6533ms total) | ||
404 | -T1E14 20249:479 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0000ms, 6533ms total) | ||
405 | -T1E14 20249:479 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0001ms, 6534ms total) | ||
406 | -T1E14 20249:480 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 01 00 00 00 returns 0x04 (0000ms, 6534ms total) | ||
407 | -T1E14 20249:480 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0000ms, 6534ms total) | ||
408 | -T1E14 20249:484 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 B4 B4 33 43 84 88 05 87 00 00 returns 0x0C (0000ms, 6534ms total) | ||
409 | -T1E14 20249:484 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 05 A7 00 00 returns 0x04 (0001ms, 6535ms total) | ||
410 | -T1E14 20249:485 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0000ms, 6535ms total) | ||
411 | -T1E14 20249:485 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: A7 07 00 00 returns 0x04 (0000ms, 6535ms total) | ||
412 | -T1648 20249:486 JLINK_IsHalted() returns FALSE (0000ms, 6535ms total) | ||
413 | -T1648 20249:588 JLINK_IsHalted() returns FALSE (0000ms, 6535ms total) | ||
414 | -T1648 20249:689 JLINK_IsHalted() returns FALSE (0000ms, 6535ms total) | ||
415 | -T1648 20249:790 JLINK_IsHalted() returns FALSE (0000ms, 6535ms total) | ||
416 | -T1648 20249:891 JLINK_IsHalted() returns FALSE (0000ms, 6535ms total) | ||
417 | -T1648 20249:992 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 3B C7 5F 04 returns 1 (0000ms, 6535ms total) | ||
418 | -T1E14 20249:992 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 80 70 returns 0x04 (0000ms, 6535ms total) | ||
419 | -T1E14 20249:992 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 80 70 returns 0x04 (0001ms, 6536ms total) | ||
420 | -T1E14 20249:993 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0000ms, 6536ms total) | ||
421 | -T1E14 20249:993 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0000ms, 6536ms total) | ||
422 | -T1E14 20249:993 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0001ms, 6537ms total) | ||
423 | -T1E14 20249:994 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0001ms, 6538ms total) | ||
424 | -T1E14 20249:995 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 50 returns 0x01 (0000ms, 6538ms total) | ||
425 | -T1E14 20249:996 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 returns 0x10 (0000ms, 6538ms total) | ||
426 | -T1E14 20249:996 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 1E 00 00 00 returns 0x04 (0000ms, 6538ms total) | ||
427 | -T1E14 20249:996 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 14 00 00 00 ... returns 0x14 (0001ms, 6539ms total) | ||
428 | -T1E14 20249:997 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: F9 00 00 00 returns 0x04 (0000ms, 6539ms total) | ||
429 | -T1E14 20249:997 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0001ms, 6540ms total) | ||
430 | -T1E14 20249:998 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0000ms, 6540ms total) | ||
431 | -T1E14 20249:998 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0000ms, 6540ms total) | ||
432 | -T1E14 20249:998 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 01 00 00 00 returns 0x04 (0000ms, 6540ms total) | ||
433 | -T1E14 20249:998 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0001ms, 6541ms total) | ||
434 | -T1E14 20250:002 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 B4 B4 33 43 84 88 00 87 00 00 returns 0x0C (0001ms, 6542ms total) | ||
435 | -T1E14 20250:003 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 00 A7 00 00 returns 0x04 (0000ms, 6542ms total) | ||
436 | -T1E14 20250:003 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0000ms, 6542ms total) | ||
437 | -T1E14 20250:003 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: A7 07 00 00 returns 0x04 (0001ms, 6543ms total) | ||
438 | -T1648 20250:004 JLINK_IsHalted() returns FALSE (0001ms, 6544ms total) | ||
439 | -T1648 20250:106 JLINK_IsHalted() returns FALSE (0000ms, 6543ms total) | ||
440 | -T1648 20250:207 JLINK_IsHalted() returns FALSE (0000ms, 6543ms total) | ||
441 | -T1648 20250:308 JLINK_IsHalted() returns FALSE (0000ms, 6543ms total) | ||
442 | -T1648 20250:409 JLINK_IsHalted() returns FALSE (0000ms, 6543ms total) | ||
443 | -T1648 20250:510 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 3B C7 5F 04 returns 1 (0000ms, 6543ms total) | ||
444 | -T1E14 20250:510 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 80 70 returns 0x04 (0000ms, 6543ms total) | ||
445 | -T1E14 20250:510 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 80 70 returns 0x04 (0000ms, 6543ms total) | ||
446 | -T1E14 20250:510 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0001ms, 6544ms total) | ||
447 | -T1E14 20250:511 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0000ms, 6544ms total) | ||
448 | -T1E14 20250:511 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0000ms, 6544ms total) | ||
449 | -T1E14 20250:511 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0002ms, 6546ms total) | ||
450 | -T1E14 20250:513 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 50 returns 0x01 (0000ms, 6546ms total) | ||
451 | -T1E14 20250:513 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 returns 0x10 (0000ms, 6546ms total) | ||
452 | -T1E14 20250:513 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 1E 00 00 00 returns 0x04 (0001ms, 6547ms total) | ||
453 | -T1E14 20250:514 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 0B 00 00 00 ... returns 0x14 (0000ms, 6547ms total) | ||
454 | -T1E14 20250:514 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: F9 00 00 00 returns 0x04 (0001ms, 6548ms total) | ||
455 | -T1E14 20250:515 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0000ms, 6548ms total) | ||
456 | -T1E14 20250:515 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0000ms, 6548ms total) | ||
457 | -T1E14 20250:515 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0001ms, 6549ms total) | ||
458 | -T1E14 20250:516 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 01 00 00 00 returns 0x04 (0000ms, 6549ms total) | ||
459 | -T1E14 20250:516 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0000ms, 6549ms total) | ||
460 | -T1E14 20250:520 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 B4 B4 33 43 84 88 05 87 00 00 returns 0x0C (0000ms, 6549ms total) | ||
461 | -T1E14 20250:520 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 05 A7 00 00 returns 0x04 (0000ms, 6549ms total) | ||
462 | -T1E14 20250:520 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0001ms, 6550ms total) | ||
463 | -T1E14 20250:521 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: A7 07 00 00 returns 0x04 (0000ms, 6550ms total) | ||
464 | -T1648 20250:522 JLINK_IsHalted() returns FALSE (0000ms, 6550ms total) | ||
465 | -T1648 20250:623 JLINK_IsHalted() returns FALSE (0000ms, 6550ms total) | ||
466 | -T1648 20250:724 JLINK_IsHalted() returns FALSE (0000ms, 6550ms total) | ||
467 | -T1648 20250:825 JLINK_IsHalted() returns FALSE (0000ms, 6550ms total) | ||
468 | -T1648 20250:926 JLINK_IsHalted() returns FALSE (0000ms, 6550ms total) | ||
469 | -T1648 20251:028 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 3B C7 5F 04 returns 1 (0000ms, 6550ms total) | ||
470 | -T1E14 20251:028 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 80 70 returns 0x04 (0000ms, 6550ms total) | ||
471 | -T1E14 20251:028 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 80 70 returns 0x04 (0001ms, 6551ms total) | ||
472 | -T1E14 20251:029 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0000ms, 6551ms total) | ||
473 | -T1E14 20251:029 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0001ms, 6552ms total) | ||
474 | -T1E14 20251:030 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0000ms, 6552ms total) | ||
475 | -T1E14 20251:030 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0001ms, 6553ms total) | ||
476 | -T1E14 20251:031 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 50 returns 0x01 (0001ms, 6554ms total) | ||
477 | -T1E14 20251:032 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 returns 0x10 (0000ms, 6554ms total) | ||
478 | -T1E14 20251:032 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 1E 00 00 00 returns 0x04 (0001ms, 6555ms total) | ||
479 | -T1E14 20251:033 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 90 00 00 00 ... returns 0x14 (0000ms, 6555ms total) | ||
480 | -T1E14 20251:033 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: F9 00 00 00 returns 0x04 (0000ms, 6555ms total) | ||
481 | -T1E14 20251:033 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0001ms, 6556ms total) | ||
482 | -T1E14 20251:034 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0000ms, 6556ms total) | ||
483 | -T1E14 20251:034 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0000ms, 6556ms total) | ||
484 | -T1E14 20251:034 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 01 00 00 00 returns 0x04 (0001ms, 6557ms total) | ||
485 | -T1E14 20251:035 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0000ms, 6557ms total) | ||
486 | -T1E14 20251:039 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 B4 B4 33 43 84 88 01 87 00 00 returns 0x0C (0001ms, 6558ms total) | ||
487 | -T1E14 20251:040 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 01 A7 00 00 returns 0x04 (0000ms, 6558ms total) | ||
488 | -T1E14 20251:040 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0000ms, 6558ms total) | ||
489 | -T1E14 20251:040 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: A7 07 00 00 returns 0x04 (0001ms, 6559ms total) | ||
490 | -T1648 20251:041 JLINK_IsHalted() returns FALSE (0001ms, 6560ms total) | ||
491 | -T1648 20251:143 JLINK_IsHalted() returns FALSE (0000ms, 6559ms total) | ||
492 | -T1648 20251:243 JLINK_IsHalted() returns FALSE (0000ms, 6559ms total) | ||
493 | -T1648 20251:344 JLINK_IsHalted() returns FALSE (0000ms, 6559ms total) | ||
494 | -T1648 20251:445 JLINK_IsHalted() returns FALSE (0000ms, 6559ms total) | ||
495 | -T1648 20251:545 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 3B C7 5F 04 returns 1 (0000ms, 6559ms total) | ||
496 | -T1E14 20251:545 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 80 70 returns 0x04 (0000ms, 6559ms total) | ||
497 | -T1E14 20251:545 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 80 70 returns 0x04 (0001ms, 6560ms total) | ||
498 | -T1E14 20251:546 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0000ms, 6560ms total) | ||
499 | -T1E14 20251:546 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0001ms, 6561ms total) | ||
500 | -T1E14 20251:547 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0000ms, 6561ms total) | ||
501 | -T1E14 20251:547 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0002ms, 6563ms total) | ||
502 | -T1E14 20251:549 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 50 returns 0x01 (0000ms, 6563ms total) | ||
503 | -T1E14 20251:549 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 returns 0x10 (0001ms, 6564ms total) | ||
504 | -T1E14 20251:550 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 1E 00 00 00 returns 0x04 (0000ms, 6564ms total) | ||
505 | -T1E14 20251:550 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 DA 00 00 00 ... returns 0x14 (0001ms, 6565ms total) | ||
506 | -T1E14 20251:551 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: F9 00 00 00 returns 0x04 (0000ms, 6565ms total) | ||
507 | -T1E14 20251:551 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0000ms, 6565ms total) | ||
508 | -T1E14 20251:551 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0001ms, 6566ms total) | ||
509 | -T1E14 20251:552 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0000ms, 6566ms total) | ||
510 | -T1E14 20251:552 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 01 00 00 00 returns 0x04 (0000ms, 6566ms total) | ||
511 | -T1E14 20251:552 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0001ms, 6567ms total) | ||
512 | -T1E14 20251:556 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 B4 B4 33 43 84 88 01 87 00 00 returns 0x0C (0001ms, 6568ms total) | ||
513 | -T1E14 20251:557 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 01 A7 00 00 returns 0x04 (0000ms, 6568ms total) | ||
514 | -T1E14 20251:557 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0000ms, 6568ms total) | ||
515 | -T1E14 20251:557 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: A7 07 00 00 returns 0x04 (0001ms, 6569ms total) | ||
516 | -T1648 20251:558 JLINK_IsHalted() returns FALSE (0001ms, 6570ms total) | ||
517 | -T1648 20251:660 JLINK_IsHalted() returns FALSE (0000ms, 6569ms total) | ||
518 | -T1648 20251:761 JLINK_IsHalted() returns FALSE (0000ms, 6569ms total) | ||
519 | -T1648 20251:862 JLINK_IsHalted() returns FALSE (0000ms, 6569ms total) | ||
520 | -T1648 20251:964 JLINK_IsHalted() returns FALSE (0000ms, 6569ms total) | ||
521 | -T1648 20252:065 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 3B C7 5F 04 returns 1 (0000ms, 6569ms total) | ||
522 | -T1E14 20252:065 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 80 70 returns 0x04 (0000ms, 6569ms total) | ||
523 | -T1E14 20252:065 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 80 70 returns 0x04 (0001ms, 6570ms total) | ||
524 | -T1E14 20252:066 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0000ms, 6570ms total) | ||
525 | -T1E14 20252:066 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0000ms, 6570ms total) | ||
526 | -T1E14 20252:066 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 10 returns 0x04 (0001ms, 6571ms total) | ||
527 | -T1E14 20252:067 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0001ms, 6572ms total) | ||
528 | -T1E14 20252:068 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 50 returns 0x01 (0000ms, 6572ms total) | ||
529 | -T1E14 20252:068 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 returns 0x10 (0001ms, 6573ms total) | ||
530 | -T1E14 20252:069 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 1E 00 00 00 returns 0x04 (0000ms, 6573ms total) | ||
531 | -T1E14 20252:069 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 30 00 00 00 ... returns 0x14 (0001ms, 6574ms total) | ||
532 | -T1E14 20252:070 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: F9 00 00 00 returns 0x04 (0000ms, 6574ms total) | ||
533 | -T1E14 20252:070 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0000ms, 6574ms total) | ||
534 | -T1E14 20252:070 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0001ms, 6575ms total) | ||
535 | -T1E14 20252:071 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0000ms, 6575ms total) | ||
536 | -T1E14 20252:071 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 01 00 00 00 returns 0x04 (0000ms, 6575ms total) | ||
537 | -T1E14 20252:071 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0000ms, 6575ms total) | ||
538 | -T1E14 20252:075 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 B4 B4 33 43 84 88 00 87 00 00 returns 0x0C (0000ms, 6575ms total) | ||
539 | -T1E14 20252:075 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 00 A7 00 00 returns 0x04 (0001ms, 6576ms total) | ||
540 | -T1E14 20252:076 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0000ms, 6576ms total) | ||
541 | -T1E14 20252:076 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: A7 07 00 00 returns 0x04 (0001ms, 6577ms total) | ||
542 | -T1648 20252:079 JLINK_IsHalted() returns FALSE (0000ms, 6577ms total) | ||
543 | -T1648 20252:180 JLINK_IsHalted() returns FALSE (0000ms, 6577ms total) | ||
544 | -T1648 20252:281 JLINK_IsHalted() returns FALSE (0000ms, 6577ms total) | ||
545 | -T1648 20252:383 JLINK_IsHalted() returns FALSE (0000ms, 6577ms total) | ||
546 | -T1648 20252:484 JLINK_IsHalted() returns FALSE (0000ms, 6577ms total) | ||
547 | -T1648 20252:584 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 3B C7 5F 04 returns 1 (0000ms, 6577ms total) | ||
548 | -T1E14 20252:584 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 80 70 returns 0x04 (0000ms, 6577ms total) | ||
549 | -T1E14 20252:584 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 80 70 returns 0x04 (0001ms, 6578ms total) | ||
550 | -T1E14 20252:585 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0000ms, 6578ms total) | ||
551 | -T1E14 20252:585 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0000ms, 6578ms total) | ||
552 | -T1E14 20252:585 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0001ms, 6579ms total) | ||
553 | -T1E14 20252:586 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0001ms, 6580ms total) | ||
554 | -T1E14 20252:587 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 50 returns 0x01 (0001ms, 6581ms total) | ||
555 | -T1E14 20252:588 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 returns 0x10 (0000ms, 6581ms total) | ||
556 | -T1E14 20252:588 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 1E 00 00 00 returns 0x04 (0001ms, 6582ms total) | ||
557 | -T1E14 20252:589 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 32 00 00 00 ... returns 0x14 (0000ms, 6582ms total) | ||
558 | -T1E14 20252:589 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: F9 00 00 00 returns 0x04 (0000ms, 6582ms total) | ||
559 | -T1E14 20252:589 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0001ms, 6583ms total) | ||
560 | -T1E14 20252:590 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0000ms, 6583ms total) | ||
561 | -T1E14 20252:590 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0001ms, 6584ms total) | ||
562 | -T1E14 20252:591 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 01 00 00 00 returns 0x04 (0000ms, 6584ms total) | ||
563 | -T1E14 20252:591 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0000ms, 6584ms total) | ||
564 | -T1E14 20252:595 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 B4 B4 33 43 84 88 01 87 00 00 returns 0x0C (0000ms, 6584ms total) | ||
565 | -T1E14 20252:595 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 01 A7 00 00 returns 0x04 (0001ms, 6585ms total) | ||
566 | -T1E14 20252:596 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0000ms, 6585ms total) | ||
567 | -T1E14 20252:596 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: A7 07 00 00 returns 0x04 (0000ms, 6585ms total) | ||
568 | -T1648 20252:597 JLINK_IsHalted() returns FALSE (0000ms, 6585ms total) | ||
569 | -T1648 20252:699 JLINK_IsHalted() returns FALSE (0000ms, 6585ms total) | ||
570 | -T1648 20252:800 JLINK_IsHalted() returns FALSE (0000ms, 6585ms total) | ||
571 | -T1648 20252:901 JLINK_IsHalted() returns FALSE (0000ms, 6585ms total) | ||
572 | -T1648 20253:002 JLINK_IsHalted() returns FALSE (0000ms, 6585ms total) | ||
573 | -T1648 20253:103 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 3B C7 5F 04 returns 1 (0000ms, 6585ms total) | ||
574 | -T1E14 20253:103 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 80 70 returns 0x04 (0000ms, 6585ms total) | ||
575 | -T1E14 20253:103 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 80 70 returns 0x04 (0001ms, 6586ms total) | ||
576 | -T1E14 20253:104 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0000ms, 6586ms total) | ||
577 | -T1E14 20253:104 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0000ms, 6586ms total) | ||
578 | -T1E14 20253:104 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0001ms, 6587ms total) | ||
579 | -T1E14 20253:105 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0001ms, 6588ms total) | ||
580 | -T1E14 20253:106 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 50 returns 0x01 (0000ms, 6588ms total) | ||
581 | -T1E14 20253:106 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 returns 0x10 (0000ms, 6588ms total) | ||
582 | -T1E14 20253:106 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 1E 00 00 00 returns 0x04 (0001ms, 6589ms total) | ||
583 | -T1E14 20253:107 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 8E 00 00 00 ... returns 0x14 (0000ms, 6589ms total) | ||
584 | -T1E14 20253:107 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: F9 00 00 00 returns 0x04 (0001ms, 6590ms total) | ||
585 | -T1E14 20253:108 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0000ms, 6590ms total) | ||
586 | -T1E14 20253:108 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0000ms, 6590ms total) | ||
587 | -T1E14 20253:108 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0001ms, 6591ms total) | ||
588 | -T1E14 20253:109 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 01 00 00 00 returns 0x04 (0000ms, 6591ms total) | ||
589 | -T1E14 20253:109 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0000ms, 6591ms total) | ||
590 | -T1E14 20253:113 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 B4 B4 33 43 84 88 01 87 00 00 returns 0x0C (0000ms, 6591ms total) | ||
591 | -T1E14 20253:113 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 01 A7 00 00 returns 0x04 (0001ms, 6592ms total) | ||
592 | -T1E14 20253:114 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0000ms, 6592ms total) | ||
593 | -T1E14 20253:114 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: A7 07 00 00 returns 0x04 (0001ms, 6593ms total) | ||
594 | -T1648 20253:115 JLINK_IsHalted() returns FALSE (0000ms, 6593ms total) | ||
595 | -T1648 20253:217 JLINK_IsHalted() returns FALSE (0000ms, 6593ms total) | ||
596 | -T1648 20253:318 JLINK_IsHalted() returns FALSE (0000ms, 6593ms total) | ||
597 | -T1648 20253:419 JLINK_IsHalted() returns FALSE (0000ms, 6593ms total) | ||
598 | -T1648 20253:520 JLINK_IsHalted() returns FALSE (0000ms, 6593ms total) | ||
599 | -T1648 20253:621 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 3B C7 5F 04 returns 1 (0000ms, 6593ms total) | ||
600 | -T1E14 20253:621 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 80 70 returns 0x04 (0000ms, 6593ms total) | ||
601 | -T1E14 20253:621 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 80 70 returns 0x04 (0001ms, 6594ms total) | ||
602 | -T1E14 20253:622 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0000ms, 6594ms total) | ||
603 | -T1E14 20253:622 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0000ms, 6594ms total) | ||
604 | -T1E14 20253:622 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0001ms, 6595ms total) | ||
605 | -T1E14 20253:623 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0001ms, 6596ms total) | ||
606 | -T1E14 20253:624 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 50 returns 0x01 (0000ms, 6596ms total) | ||
607 | -T1E14 20253:624 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 returns 0x10 (0001ms, 6597ms total) | ||
608 | -T1E14 20253:625 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 1E 00 00 00 returns 0x04 (0000ms, 6597ms total) | ||
609 | -T1E14 20253:625 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 8F 00 00 00 ... returns 0x14 (0001ms, 6598ms total) | ||
610 | -T1E14 20253:626 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: F9 00 00 00 returns 0x04 (0000ms, 6598ms total) | ||
611 | -T1E14 20253:626 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0000ms, 6598ms total) | ||
612 | -T1E14 20253:626 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0001ms, 6599ms total) | ||
613 | -T1E14 20253:627 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0000ms, 6599ms total) | ||
614 | -T1E14 20253:627 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 01 00 00 00 returns 0x04 (0000ms, 6599ms total) | ||
615 | -T1E14 20253:627 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0001ms, 6600ms total) | ||
616 | -T1E14 20253:632 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 B4 B4 33 43 84 88 01 87 00 00 returns 0x0C (0000ms, 6600ms total) | ||
617 | -T1E14 20253:632 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 01 A7 00 00 returns 0x04 (0000ms, 6600ms total) | ||
618 | -T1E14 20253:632 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0000ms, 6600ms total) | ||
619 | -T1E14 20253:632 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: A7 07 00 00 returns 0x04 (0000ms, 6600ms total) | ||
620 | -T1648 20253:633 JLINK_IsHalted() returns FALSE (0000ms, 6600ms total) | ||
621 | -T1648 20253:734 JLINK_IsHalted() returns FALSE (0000ms, 6600ms total) | ||
622 | -T1648 20253:835 JLINK_IsHalted() returns FALSE (0000ms, 6600ms total) | ||
623 | -T1648 20253:937 JLINK_IsHalted() returns FALSE (0000ms, 6600ms total) | ||
624 | -T1648 20254:038 JLINK_IsHalted() returns FALSE (0000ms, 6600ms total) | ||
625 | -T1648 20254:139 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 3B C7 5F 04 returns 1 (0000ms, 6600ms total) | ||
626 | -T1E14 20254:139 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 80 70 returns 0x04 (0000ms, 6600ms total) | ||
627 | -T1E14 20254:139 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 80 70 returns 0x04 (0001ms, 6601ms total) | ||
628 | -T1E14 20254:140 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0000ms, 6601ms total) | ||
629 | -T1E14 20254:140 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0001ms, 6602ms total) | ||
630 | -T1E14 20254:141 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0000ms, 6602ms total) | ||
631 | -T1E14 20254:141 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0001ms, 6603ms total) | ||
632 | -T1E14 20254:142 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 50 returns 0x01 (0001ms, 6604ms total) | ||
633 | -T1E14 20254:144 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 returns 0x10 (0000ms, 6604ms total) | ||
634 | -T1E14 20254:144 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 1E 00 00 00 returns 0x04 (0000ms, 6604ms total) | ||
635 | -T1E14 20254:144 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 60 00 00 00 ... returns 0x14 (0001ms, 6605ms total) | ||
636 | -T1E14 20254:145 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: F9 00 00 00 returns 0x04 (0000ms, 6605ms total) | ||
637 | -T1E14 20254:145 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0000ms, 6605ms total) | ||
638 | -T1E14 20254:145 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0001ms, 6606ms total) | ||
639 | -T1E14 20254:146 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0000ms, 6606ms total) | ||
640 | -T1E14 20254:146 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 01 00 00 00 returns 0x04 (0000ms, 6606ms total) | ||
641 | -T1E14 20254:146 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0001ms, 6607ms total) | ||
642 | -T1E14 20254:150 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 B4 B4 33 43 84 88 01 87 00 00 returns 0x0C (0001ms, 6608ms total) | ||
643 | -T1E14 20254:151 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 01 A7 00 00 returns 0x04 (0000ms, 6608ms total) | ||
644 | -T1E14 20254:151 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0001ms, 6609ms total) | ||
645 | -T1E14 20254:152 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: A7 07 00 00 returns 0x04 (0000ms, 6609ms total) | ||
646 | -T1648 20254:152 JLINK_IsHalted() returns FALSE (0001ms, 6610ms total) | ||
647 | -T1648 20254:253 JLINK_IsHalted() returns FALSE (0000ms, 6609ms total) | ||
648 | -T1648 20254:354 JLINK_IsHalted() returns FALSE (0000ms, 6609ms total) | ||
649 | -T1648 20254:456 JLINK_IsHalted() returns FALSE (0000ms, 6609ms total) | ||
650 | -T1648 20254:556 JLINK_IsHalted() returns FALSE (0001ms, 6610ms total) | ||
651 | -T1648 20254:658 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 3B C7 5F 04 returns 1 (0000ms, 6609ms total) | ||
652 | -T1E14 20254:658 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 80 70 returns 0x04 (0000ms, 6609ms total) | ||
653 | -T1E14 20254:658 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 80 70 returns 0x04 (0001ms, 6610ms total) | ||
654 | -T1E14 20254:659 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0000ms, 6610ms total) | ||
655 | -T1E14 20254:659 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0000ms, 6610ms total) | ||
656 | -T1E14 20254:659 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0001ms, 6611ms total) | ||
657 | -T1E14 20254:660 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0001ms, 6612ms total) | ||
658 | -T1E14 20254:661 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 50 returns 0x01 (0000ms, 6612ms total) | ||
659 | -T1E14 20254:662 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 returns 0x10 (0000ms, 6612ms total) | ||
660 | -T1E14 20254:662 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 1E 00 00 00 returns 0x04 (0000ms, 6612ms total) | ||
661 | -T1E14 20254:662 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 6A 00 00 00 ... returns 0x14 (0001ms, 6613ms total) | ||
662 | -T1E14 20254:663 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: F9 00 00 00 returns 0x04 (0000ms, 6613ms total) | ||
663 | -T1E14 20254:663 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0000ms, 6613ms total) | ||
664 | -T1E14 20254:663 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0001ms, 6614ms total) | ||
665 | -T1E14 20254:664 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0000ms, 6614ms total) | ||
666 | -T1E14 20254:664 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 01 00 00 00 returns 0x04 (0000ms, 6614ms total) | ||
667 | -T1E14 20254:664 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0001ms, 6615ms total) | ||
668 | -T1E14 20254:668 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 B4 B4 33 43 84 88 00 87 00 00 returns 0x0C (0001ms, 6616ms total) | ||
669 | -T1E14 20254:669 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 00 A7 00 00 returns 0x04 (0000ms, 6616ms total) | ||
670 | -T1E14 20254:669 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0001ms, 6617ms total) | ||
671 | -T1E14 20254:670 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: A7 07 00 00 returns 0x04 (0000ms, 6617ms total) | ||
672 | -T1648 20254:671 JLINK_IsHalted() returns FALSE (0000ms, 6617ms total) | ||
673 | -T1648 20254:772 JLINK_IsHalted() returns FALSE (0000ms, 6617ms total) | ||
674 | -T1648 20254:872 JLINK_IsHalted() returns FALSE (0000ms, 6617ms total) | ||
675 | -T1648 20254:973 JLINK_IsHalted() returns FALSE (0000ms, 6617ms total) | ||
676 | -T1648 20255:074 JLINK_IsHalted() returns FALSE (0000ms, 6617ms total) | ||
677 | -T1648 20255:174 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 3B C7 5F 04 returns 1 (0000ms, 6617ms total) | ||
678 | -T1E14 20255:174 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 80 70 returns 0x04 (0000ms, 6617ms total) | ||
679 | -T1E14 20255:174 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 80 70 returns 0x04 (0001ms, 6618ms total) | ||
680 | -T1E14 20255:175 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0000ms, 6618ms total) | ||
681 | -T1E14 20255:175 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0001ms, 6619ms total) | ||
682 | -T1E14 20255:176 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0000ms, 6619ms total) | ||
683 | -T1E14 20255:176 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0001ms, 6620ms total) | ||
684 | -T1E14 20255:177 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 50 returns 0x01 (0001ms, 6621ms total) | ||
685 | -T1E14 20255:178 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 returns 0x10 (0000ms, 6621ms total) | ||
686 | -T1E14 20255:178 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 1E 00 00 00 returns 0x04 (0001ms, 6622ms total) | ||
687 | -T1E14 20255:179 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 2B 00 00 00 ... returns 0x14 (0000ms, 6622ms total) | ||
688 | -T1E14 20255:179 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: F9 00 00 00 returns 0x04 (0000ms, 6622ms total) | ||
689 | -T1E14 20255:179 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0001ms, 6623ms total) | ||
690 | -T1E14 20255:180 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0000ms, 6623ms total) | ||
691 | -T1E14 20255:180 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0000ms, 6623ms total) | ||
692 | -T1E14 20255:180 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 01 00 00 00 returns 0x04 (0001ms, 6624ms total) | ||
693 | -T1E14 20255:181 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0000ms, 6624ms total) | ||
694 | -T1E14 20255:184 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 B4 B4 33 43 84 88 01 87 00 00 returns 0x0C (0001ms, 6625ms total) | ||
695 | -T1E14 20255:185 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 01 A7 00 00 returns 0x04 (0000ms, 6625ms total) | ||
696 | -T1E14 20255:185 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0001ms, 6626ms total) | ||
697 | -T1E14 20255:186 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: A7 07 00 00 returns 0x04 (0000ms, 6626ms total) | ||
698 | -T1648 20255:187 JLINK_IsHalted() returns FALSE (0000ms, 6626ms total) | ||
699 | -T1648 20255:288 JLINK_IsHalted() returns FALSE (0000ms, 6626ms total) | ||
700 | -T1648 20255:389 JLINK_IsHalted() returns FALSE (0000ms, 6626ms total) | ||
701 | -T1648 20255:490 JLINK_IsHalted() returns FALSE (0000ms, 6626ms total) | ||
702 | -T1648 20255:591 JLINK_IsHalted() returns FALSE (0000ms, 6626ms total) | ||
703 | -T1648 20255:691 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 3B C7 5F 04 returns 1 (0000ms, 6626ms total) | ||
704 | -T1E14 20255:691 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 80 70 returns 0x04 (0000ms, 6626ms total) | ||
705 | -T1E14 20255:691 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 80 70 returns 0x04 (0001ms, 6627ms total) | ||
706 | -T1E14 20255:692 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0000ms, 6627ms total) | ||
707 | -T1E14 20255:692 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0001ms, 6628ms total) | ||
708 | -T1E14 20255:693 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0000ms, 6628ms total) | ||
709 | -T1E14 20255:693 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0002ms, 6630ms total) | ||
710 | -T1E14 20255:695 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 50 returns 0x01 (0000ms, 6630ms total) | ||
711 | -T1E14 20255:695 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 returns 0x10 (0001ms, 6631ms total) | ||
712 | -T1E14 20255:696 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 1E 00 00 00 returns 0x04 (0000ms, 6631ms total) | ||
713 | -T1E14 20255:696 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 18 00 00 00 ... returns 0x14 (0000ms, 6631ms total) | ||
714 | -T1E14 20255:696 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: F9 00 00 00 returns 0x04 (0001ms, 6632ms total) | ||
715 | -T1E14 20255:697 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0000ms, 6632ms total) | ||
716 | -T1E14 20255:697 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0000ms, 6632ms total) | ||
717 | -T1E14 20255:697 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0001ms, 6633ms total) | ||
718 | -T1E14 20255:698 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 01 00 00 00 returns 0x04 (0000ms, 6633ms total) | ||
719 | -T1E14 20255:698 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0000ms, 6633ms total) | ||
720 | -T1E14 20255:701 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 B4 B4 33 43 84 88 01 87 00 00 returns 0x0C (0001ms, 6634ms total) | ||
721 | -T1E14 20255:702 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 01 A7 00 00 returns 0x04 (0000ms, 6634ms total) | ||
722 | -T1E14 20255:702 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0001ms, 6635ms total) | ||
723 | -T1E14 20255:703 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: A7 07 00 00 returns 0x04 (0000ms, 6635ms total) | ||
724 | -T1648 20255:703 JLINK_IsHalted() returns FALSE (0001ms, 6636ms total) | ||
725 | -T1648 20255:806 JLINK_IsHalted() returns FALSE (0000ms, 6635ms total) | ||
726 | -T1648 20255:906 JLINK_IsHalted() returns FALSE (0000ms, 6635ms total) | ||
727 | -T1648 20256:007 JLINK_IsHalted() returns FALSE (0000ms, 6635ms total) | ||
728 | -T1648 20256:108 JLINK_IsHalted() returns FALSE (0000ms, 6635ms total) | ||
729 | -T1648 20256:209 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 3B C7 5F 04 returns 1 (0000ms, 6635ms total) | ||
730 | -T1E14 20256:209 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 80 70 returns 0x04 (0000ms, 6635ms total) | ||
731 | -T1E14 20256:209 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 80 70 returns 0x04 (0001ms, 6636ms total) | ||
732 | -T1E14 20256:210 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0000ms, 6636ms total) | ||
733 | -T1E14 20256:210 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0000ms, 6636ms total) | ||
734 | -T1E14 20256:210 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0001ms, 6637ms total) | ||
735 | -T1E14 20256:211 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0001ms, 6638ms total) | ||
736 | -T1E14 20256:212 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 50 returns 0x01 (0000ms, 6638ms total) | ||
737 | -T1E14 20256:213 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 returns 0x10 (0000ms, 6638ms total) | ||
738 | -T1E14 20256:213 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 1E 00 00 00 returns 0x04 (0000ms, 6638ms total) | ||
739 | -T1E14 20256:213 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 D3 00 00 00 ... returns 0x14 (0001ms, 6639ms total) | ||
740 | -T1E14 20256:214 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: F9 00 00 00 returns 0x04 (0000ms, 6639ms total) | ||
741 | -T1E14 20256:214 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0001ms, 6640ms total) | ||
742 | -T1E14 20256:215 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0000ms, 6640ms total) | ||
743 | -T1E14 20256:215 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0000ms, 6640ms total) | ||
744 | -T1E14 20256:215 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 01 00 00 00 returns 0x04 (0000ms, 6640ms total) | ||
745 | -T1E14 20256:215 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0001ms, 6641ms total) | ||
746 | -T1E14 20256:219 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 B4 B4 33 43 84 88 01 87 00 00 returns 0x0C (0001ms, 6642ms total) | ||
747 | -T1E14 20256:220 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 01 A7 00 00 returns 0x04 (0000ms, 6642ms total) | ||
748 | -T1E14 20256:220 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0000ms, 6642ms total) | ||
749 | -T1E14 20256:220 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: A7 07 00 00 returns 0x04 (0001ms, 6643ms total) | ||
750 | -T1648 20256:221 JLINK_IsHalted() returns FALSE (0000ms, 6643ms total) | ||
751 | -T1648 20256:322 JLINK_IsHalted() returns FALSE (0000ms, 6643ms total) | ||
752 | -T1648 20256:423 JLINK_IsHalted() returns FALSE (0000ms, 6643ms total) | ||
753 | -T1648 20256:524 JLINK_IsHalted() returns FALSE (0000ms, 6643ms total) | ||
754 | -T1648 20256:625 JLINK_IsHalted() returns FALSE (0000ms, 6643ms total) | ||
755 | -T1648 20256:727 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 3B C7 5F 04 returns 1 (0000ms, 6643ms total) | ||
756 | -T1E14 20256:727 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 80 70 returns 0x04 (0000ms, 6643ms total) | ||
757 | -T1E14 20256:727 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 80 70 returns 0x04 (0001ms, 6644ms total) | ||
758 | -T1E14 20256:728 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0000ms, 6644ms total) | ||
759 | -T1E14 20256:728 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0001ms, 6645ms total) | ||
760 | -T1E14 20256:729 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0000ms, 6645ms total) | ||
761 | -T1E14 20256:729 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0001ms, 6646ms total) | ||
762 | -T1E14 20256:730 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 50 returns 0x01 (0001ms, 6647ms total) | ||
763 | -T1E14 20256:731 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 returns 0x10 (0000ms, 6647ms total) | ||
764 | -T1E14 20256:731 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 1E 00 00 00 returns 0x04 (0000ms, 6647ms total) | ||
765 | -T1E14 20256:731 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 0B 00 00 00 ... returns 0x14 (0001ms, 6648ms total) | ||
766 | -T1E14 20256:732 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: F9 00 00 00 returns 0x04 (0000ms, 6648ms total) | ||
767 | -T1E14 20256:732 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0000ms, 6648ms total) | ||
768 | -T1E14 20256:732 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0001ms, 6649ms total) | ||
769 | -T1E14 20256:733 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0000ms, 6649ms total) | ||
770 | -T1E14 20256:733 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 01 00 00 00 returns 0x04 (0000ms, 6649ms total) | ||
771 | -T1E14 20256:733 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0001ms, 6650ms total) | ||
772 | -T1E14 20256:738 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 B4 B4 33 43 84 88 00 87 00 00 returns 0x0C (0000ms, 6650ms total) | ||
773 | -T1E14 20256:738 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 00 A7 00 00 returns 0x04 (0000ms, 6650ms total) | ||
774 | -T1E14 20256:738 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0001ms, 6651ms total) | ||
775 | -T1E14 20256:739 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: A7 07 00 00 returns 0x04 (0000ms, 6651ms total) | ||
776 | -T1648 20256:740 JLINK_IsHalted() returns FALSE (0000ms, 6651ms total) | ||
777 | -T1648 20256:841 JLINK_IsHalted() returns FALSE (0000ms, 6651ms total) | ||
778 | -T1648 20256:942 JLINK_IsHalted() returns FALSE (0000ms, 6651ms total) | ||
779 | -T1648 20257:044 JLINK_IsHalted() returns FALSE (0000ms, 6651ms total) | ||
780 | -T1648 20257:144 JLINK_IsHalted() returns FALSE (0000ms, 6651ms total) | ||
781 | -T1648 20257:246 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 3B C7 5F 04 returns 1 (0000ms, 6651ms total) | ||
782 | -T1E14 20257:246 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 80 70 returns 0x04 (0000ms, 6651ms total) | ||
783 | -T1E14 20257:246 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 80 70 returns 0x04 (0000ms, 6651ms total) | ||
784 | -T1E14 20257:246 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0001ms, 6652ms total) | ||
785 | -T1E14 20257:247 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0000ms, 6652ms total) | ||
786 | -T1E14 20257:247 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0001ms, 6653ms total) | ||
787 | -T1E14 20257:248 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0001ms, 6654ms total) | ||
788 | -T1E14 20257:249 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 50 returns 0x01 (0000ms, 6654ms total) | ||
789 | -T1E14 20257:250 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 returns 0x10 (0000ms, 6654ms total) | ||
790 | -T1E14 20257:250 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 1E 00 00 00 returns 0x04 (0000ms, 6654ms total) | ||
791 | -T1E14 20257:250 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 CB 00 00 00 ... returns 0x14 (0001ms, 6655ms total) | ||
792 | -T1E14 20257:251 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: F9 00 00 00 returns 0x04 (0000ms, 6655ms total) | ||
793 | -T1E14 20257:251 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0000ms, 6655ms total) | ||
794 | -T1E14 20257:251 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0001ms, 6656ms total) | ||
795 | -T1E14 20257:252 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0000ms, 6656ms total) | ||
796 | -T1E14 20257:252 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 01 00 00 00 returns 0x04 (0000ms, 6656ms total) | ||
797 | -T1E14 20257:252 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0001ms, 6657ms total) | ||
798 | -T1E14 20257:256 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 B4 B4 33 43 84 88 01 87 00 00 returns 0x0C (0000ms, 6657ms total) | ||
799 | -T1E14 20257:256 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 01 A7 00 00 returns 0x04 (0001ms, 6658ms total) | ||
800 | -T1E14 20257:257 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0000ms, 6658ms total) | ||
801 | -T1E14 20257:257 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: A7 07 00 00 returns 0x04 (0001ms, 6659ms total) | ||
802 | -T1648 20257:258 JLINK_IsHalted() returns FALSE (0000ms, 6659ms total) | ||
803 | -T1648 20257:360 JLINK_IsHalted() returns FALSE (0000ms, 6659ms total) | ||
804 | -T1648 20257:461 JLINK_IsHalted() returns FALSE (0000ms, 6659ms total) | ||
805 | -T1648 20257:562 JLINK_IsHalted() returns FALSE (0000ms, 6659ms total) | ||
806 | -T1648 20257:663 JLINK_IsHalted() returns FALSE (0000ms, 6659ms total) | ||
807 | -T1648 20257:764 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: 3B C7 5F 04 returns 1 (0000ms, 6659ms total) | ||
808 | -T1E14 20257:764 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 80 70 returns 0x04 (0002ms, 6661ms total) | ||
809 | -T1E14 20257:766 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 80 70 returns 0x04 (0000ms, 6661ms total) | ||
810 | -T1E14 20257:766 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 00 returns 0x04 (0000ms, 6661ms total) | ||
811 | -T1E14 20257:766 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 00 returns 0x04 (0001ms, 6662ms total) | ||
812 | -T1E14 20257:767 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0000ms, 6662ms total) | ||
813 | -T1E14 20257:767 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0001ms, 6663ms total) | ||
814 | -T1E14 20257:768 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 50 returns 0x01 (0001ms, 6664ms total) | ||
815 | -T1E14 20257:769 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 returns 0x10 (0000ms, 6664ms total) | ||
816 | -T1E14 20257:769 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 1E 00 00 00 returns 0x04 (0001ms, 6665ms total) | ||
817 | -T1E14 20257:770 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 52 00 00 00 ... returns 0x14 (0000ms, 6665ms total) | ||
818 | -T1E14 20257:770 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: F9 00 00 00 returns 0x04 (0000ms, 6665ms total) | ||
819 | -T1E14 20257:770 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0001ms, 6666ms total) | ||
820 | -T1E14 20257:771 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0000ms, 6666ms total) | ||
821 | -T1E14 20257:771 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0000ms, 6666ms total) | ||
822 | -T1E14 20257:771 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 01 00 00 00 returns 0x04 (0001ms, 6667ms total) | ||
823 | -T1E14 20257:772 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0000ms, 6667ms total) | ||
824 | -T1E14 20257:775 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 B4 B4 33 43 84 88 01 87 00 00 returns 0x0C (0001ms, 6668ms total) | ||
825 | -T1E14 20257:776 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 01 A7 00 00 returns 0x04 (0000ms, 6668ms total) | ||
826 | -T1E14 20257:776 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0001ms, 6669ms total) | ||
827 | -T1E14 20257:777 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: A7 07 00 00 returns 0x04 (0000ms, 6669ms total) | ||
828 | -T1648 20257:778 JLINK_IsHalted() returns FALSE (0000ms, 6669ms total) | ||
829 | -T1648 20257:879 JLINK_IsHalted() returns FALSE (0000ms, 6669ms total) | ||
830 | -T1648 20257:980 JLINK_Halt() returns 0x00 (0002ms, 6671ms total) | ||
831 | -T1648 20257:982 JLINK_IsHalted() returns TRUE (0000ms, 6671ms total) | ||
832 | -T1648 20257:982 JLINK_IsHalted() returns TRUE (0000ms, 6671ms total) | ||
833 | -T1648 20257:982 JLINK_IsHalted() returns TRUE (0000ms, 6671ms total) | ||
834 | -T1648 20257:982 JLINK_ReadReg(R15 (PC)) returns 0x0800EDD6 (0000ms, 6671ms total) | ||
835 | -T1648 20257:982 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 6671ms total) | ||
836 | -T1648 20257:982 JLINK_ClrBPEx(BPHandle = 0x00000004) returns 0x00 (0000ms, 6671ms total) | ||
837 | -T1648 20257:982 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00 returns 1 (0001ms, 6672ms total) | ||
838 | -T1648 20257:983 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0000ms, 6672ms total) | ||
839 | -T1648 20257:983 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0000ms, 6672ms total) | ||
840 | -T1648 20257:983 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 6673ms total) | ||
841 | -T1648 20257:984 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0000ms, 6673ms total) | ||
842 | -T1648 20257:984 JLINK_ReadReg(R0) returns 0x0000AAAA (0000ms, 6673ms total) | ||
843 | -T1648 20257:984 JLINK_ReadReg(R1) returns 0x40003000 (0000ms, 6673ms total) | ||
844 | -T1648 20257:984 JLINK_ReadReg(R2) returns 0x0000000A (0000ms, 6673ms total) | ||
845 | -T1648 20257:984 JLINK_ReadReg(R3) returns 0x00000040 (0000ms, 6673ms total) | ||
846 | -T1648 20257:984 JLINK_ReadReg(R4) returns 0x00000000 (0000ms, 6673ms total) | ||
847 | -T1648 20257:984 JLINK_ReadReg(R5) returns 0x08016B6C (0000ms, 6673ms total) | ||
848 | -T1648 20257:984 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 6673ms total) | ||
849 | -T1648 20257:984 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 6673ms total) | ||
850 | -T1648 20257:984 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 6673ms total) | ||
851 | -T1648 20257:984 JLINK_ReadReg(R9) returns 0x200001E0 (0000ms, 6673ms total) | ||
852 | -T1648 20257:984 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 6673ms total) | ||
853 | -T1648 20257:984 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 6673ms total) | ||
854 | -T1648 20257:984 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 6673ms total) | ||
855 | -T1648 20257:984 JLINK_ReadReg(R13 (SP)) returns 0x20011E00 (0000ms, 6673ms total) | ||
856 | -T1648 20257:984 JLINK_ReadReg(R14) returns 0x0800FFAF (0000ms, 6673ms total) | ||
857 | -T1648 20257:984 JLINK_ReadReg(R15 (PC)) returns 0x0800EDD6 (0000ms, 6673ms total) | ||
858 | -T1648 20257:984 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 6673ms total) | ||
859 | -T1648 20257:984 JLINK_ReadReg(MSP) returns 0x20011E00 (0000ms, 6673ms total) | ||
860 | -T1648 20257:984 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 6673ms total) | ||
861 | -T1648 20257:984 JLINK_ReadReg(CFBP) returns 0x00000000 (0000ms, 6673ms total) | ||
862 | -T1648 20257:984 JLINK_ReadReg(FPSCR) returns 0x00000000 (0004ms, 6677ms total) | ||
863 | -T1648 20257:988 JLINK_ReadReg(FPS0) returns 0x2128505C (0000ms, 6677ms total) | ||
864 | -T1648 20257:988 JLINK_ReadReg(FPS1) returns 0x355D1313 (0000ms, 6677ms total) | ||
865 | -T1648 20257:988 JLINK_ReadReg(FPS2) returns 0x408B3960 (0000ms, 6677ms total) | ||
866 | -T1648 20257:988 JLINK_ReadReg(FPS3) returns 0x39BC5180 (0000ms, 6677ms total) | ||
867 | -T1648 20257:988 JLINK_ReadReg(FPS4) returns 0x750C82B0 (0000ms, 6677ms total) | ||
868 | -T1648 20257:988 JLINK_ReadReg(FPS5) returns 0xD04248C9 (0000ms, 6677ms total) | ||
869 | -T1648 20257:988 JLINK_ReadReg(FPS6) returns 0xC486016C (0000ms, 6677ms total) | ||
870 | -T1648 20257:988 JLINK_ReadReg(FPS7) returns 0xD192C904 (0000ms, 6677ms total) | ||
871 | -T1648 20257:988 JLINK_ReadReg(FPS8) returns 0x89142488 (0000ms, 6677ms total) | ||
872 | -T1648 20257:988 JLINK_ReadReg(FPS9) returns 0x004226A1 (0000ms, 6677ms total) | ||
873 | -T1648 20257:988 JLINK_ReadReg(FPS10) returns 0x6639B98C (0000ms, 6677ms total) | ||
874 | -T1648 20257:988 JLINK_ReadReg(FPS11) returns 0x438619CE (0000ms, 6677ms total) | ||
875 | -T1648 20257:988 JLINK_ReadReg(FPS12) returns 0x91124AA9 (0000ms, 6677ms total) | ||
876 | -T1648 20257:988 JLINK_ReadReg(FPS13) returns 0xA0022E21 (0000ms, 6677ms total) | ||
877 | -T1648 20257:988 JLINK_ReadReg(FPS14) returns 0x81480606 (0000ms, 6677ms total) | ||
878 | -T1648 20257:988 JLINK_ReadReg(FPS15) returns 0x1B0892C5 (0000ms, 6677ms total) | ||
879 | -T1648 20257:988 JLINK_ReadReg(FPS16) returns 0xD3321002 (0000ms, 6677ms total) | ||
880 | -T1648 20257:988 JLINK_ReadReg(FPS17) returns 0x90700740 (0000ms, 6677ms total) | ||
881 | -T1648 20257:988 JLINK_ReadReg(FPS18) returns 0xAE700274 (0000ms, 6677ms total) | ||
882 | -T1648 20257:988 JLINK_ReadReg(FPS19) returns 0x099900E6 (0000ms, 6677ms total) | ||
883 | -T1648 20257:988 JLINK_ReadReg(FPS20) returns 0xC5006363 (0000ms, 6677ms total) | ||
884 | -T1648 20257:988 JLINK_ReadReg(FPS21) returns 0x21040444 (0000ms, 6677ms total) | ||
885 | -T1648 20257:988 JLINK_ReadReg(FPS22) returns 0x08001800 (0000ms, 6677ms total) | ||
886 | -T1648 20257:988 JLINK_ReadReg(FPS23) returns 0x60A14080 (0000ms, 6677ms total) | ||
887 | -T1648 20257:988 JLINK_ReadReg(FPS24) returns 0x03118089 (0000ms, 6677ms total) | ||
888 | -T1648 20257:988 JLINK_ReadReg(FPS25) returns 0x006CA201 (0000ms, 6677ms total) | ||
889 | -T1648 20257:988 JLINK_ReadReg(FPS26) returns 0x5818C9B5 (0000ms, 6677ms total) | ||
890 | -T1648 20257:988 JLINK_ReadReg(FPS27) returns 0x42C02103 (0000ms, 6677ms total) | ||
891 | -T1648 20257:988 JLINK_ReadReg(FPS28) returns 0x63480024 (0000ms, 6677ms total) | ||
892 | -T1648 20257:988 JLINK_ReadReg(FPS29) returns 0x884C0C86 (0000ms, 6677ms total) | ||
893 | -T1648 20257:988 JLINK_ReadReg(FPS30) returns 0x29C0821F (0000ms, 6677ms total) | ||
894 | -T1648 20257:988 JLINK_ReadReg(FPS31) returns 0xB16402C4 (0000ms, 6677ms total) | ||
895 | -T1E14 20257:989 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: 67 31 10 45 returns 1 (0000ms, 6677ms total) | ||
896 | -T1E14 20257:989 JLINK_ReadMemEx(0xE000E100, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E100) - Data: 00 00 80 70 returns 0x04 (0000ms, 6677ms total) | ||
897 | -T1E14 20257:989 JLINK_ReadMemEx(0xE000E180, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E180) - Data: 00 00 80 70 returns 0x04 (0001ms, 6678ms total) | ||
898 | -T1E14 20257:990 JLINK_ReadMemEx(0xE000E200, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E200) - Data: 00 00 00 10 returns 0x04 (0000ms, 6678ms total) | ||
899 | -T1E14 20257:990 JLINK_ReadMemEx(0xE000E280, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E280) - Data: 00 00 00 10 returns 0x04 (0001ms, 6679ms total) | ||
900 | -T1E14 20257:991 JLINK_ReadMemEx(0xE000E300, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0xE000E300) - Data: 00 00 00 00 returns 0x04 (0000ms, 6679ms total) | ||
901 | -T1E14 20257:991 JLINK_ReadMemEx(0xE000E400, 0x0043 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(67 bytes @ 0xE000E400) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x43 (0001ms, 6680ms total) | ||
902 | -T1E14 20257:992 JLINK_ReadMemEx(0xE000E443, 0x0001 Bytes, ..., Flags = 0x02000001) -- CPU_ReadMem(1 bytes @ 0xE000E443) - Data: 50 returns 0x01 (0001ms, 6681ms total) | ||
903 | -T1E14 20257:993 JLINK_ReadMemEx(0x40000000, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0x40000000) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 01 00 00 00 returns 0x10 (0000ms, 6681ms total) | ||
904 | -T1E14 20257:993 JLINK_ReadMemEx(0x40000010, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000010) - Data: 1F 00 00 00 returns 0x04 (0001ms, 6682ms total) | ||
905 | -T1E14 20257:994 JLINK_ReadMemEx(0x40000018, 0x0014 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(20 bytes @ 0x40000018) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 F0 00 00 00 ... returns 0x14 (0000ms, 6682ms total) | ||
906 | -T1E14 20257:994 JLINK_ReadMemEx(0x4000002C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000002C) - Data: F9 00 00 00 returns 0x04 (0000ms, 6682ms total) | ||
907 | -T1E14 20257:994 JLINK_ReadMemEx(0x40000034, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40000034) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x0C (0001ms, 6683ms total) | ||
908 | -T1E14 20257:995 JLINK_ReadMemEx(0x40000040, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000040) - Data: 00 00 00 00 returns 0x04 (0000ms, 6683ms total) | ||
909 | -T1E14 20257:995 JLINK_ReadMemEx(0x40000048, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40000048) - Data: 00 00 00 00 returns 0x04 (0000ms, 6683ms total) | ||
910 | -T1E14 20257:995 JLINK_ReadMemEx(0x4000004C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4000004C) - Data: 01 00 00 00 returns 0x04 (0000ms, 6683ms total) | ||
911 | -T1E14 20257:995 JLINK_ReadMemEx(0x400000FC, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x400000FC) - Data: 00 00 00 00 returns 0x04 (0001ms, 6684ms total) | ||
912 | -T1E14 20258:002 JLINK_ReadMemEx(0x40010800, 0x000C Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(12 bytes @ 0x40010800) - Data: 33 43 B4 B4 33 43 84 88 01 87 00 00 returns 0x0C (0001ms, 6685ms total) | ||
913 | -T1E14 20258:003 JLINK_ReadMemEx(0x4001080C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001080C) - Data: 01 A7 00 00 returns 0x04 (0000ms, 6685ms total) | ||
914 | -T1E14 20258:003 JLINK_ReadMemEx(0x40010818, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x40010818) - Data: 00 00 00 00 returns 0x04 (0000ms, 6685ms total) | ||
915 | -T1E14 20258:003 JLINK_ReadMemEx(0x4001083C, 0x0004 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(4 bytes @ 0x4001083C) - Data: A7 07 00 00 returns 0x04 (0001ms, 6686ms total) | ||
916 | -T1E14 20258:004 JLINK_ReadMemEx(0x0800EDD6, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800EDC0) -- Updating C cache (64 bytes @ 0x0800EDC0) -- Read from C cache (2 bytes @ 0x0800EDD6) - Data: 08 60 returns 0x02 (0001ms, 6687ms total) | ||
917 | -T1E14 20258:005 JLINK_ReadMemEx(0x0800EDD8, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x0800EE00) -- Updating C cache (64 bytes @ 0x0800EE00) -- Read from C cache (60 bytes @ 0x0800EDD8) - Data: 70 47 00 00 00 30 00 40 4C F6 CC 40 01 49 08 60 ... returns 0x3C (0000ms, 6687ms total) | ||
918 | -T1E14 20258:005 JLINK_ReadMemEx(0x0800EDD8, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800EDD8) - Data: 70 47 returns 0x02 (0000ms, 6687ms total) | ||
919 | -T1E14 20260:299 JLINK_Close() -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_ReadMem(4 bytes @ 0xE0001000) >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> (0018ms, 6705ms total) | ||
920 | -T1E14 20260:299 (0018ms, 6705ms total) | ||
921 | -T1E14 20260:299 Closed (0018ms, 6705ms total) | 33 | + -- CPU_ReadMem(16 bytes @ 0xE0000FE0)ROMTbl[0][3]: E0000000, CID: B105E00D, PID: 003BB001 ITM -- CPU_ReadMem(16 bytes @ 0xE00FF010) -- CPU_ReadMem(16 bytes @ 0xE0040FF0) -- CPU_ReadMem(16 bytes @ 0xE0040FE0)ROMTbl[0][4]: E0040000, CID: B105900D, PID: 000BB9A1 TPIU -- CPU_ReadMem(16 bytes @ 0xE0041FF0) -- CPU_ReadMem(16 bytes @ 0xE0041FE0)ROMTbl[0][5]: E0041000, CID: 00000000, PID: 00000000 ??? >0x0D TIF> >0x21 TIF> returns 0x2BA01477 (0122ms, 39683ms total) |
34 | +T0C04 3281:208 JLINK_GetDLLVersion() returns 64600 (0000ms, 39683ms total) | ||
35 | +T0C04 3281:208 JLINK_CORE_GetFound() returns 0xE0000FF (0000ms, 39683ms total) | ||
36 | +T0C04 3281:208 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000 returns 0x00 (0000ms, 39683ms total) | ||
37 | +T0C04 3281:208 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX) -- Value=0xE00FF000 returns 0x00 (0000ms, 39683ms total) | ||
38 | +T0C04 3281:208 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX) -- Value=0x00000000 returns 0x00 (0000ms, 39683ms total) | ||
39 | +T0C04 3281:208 JLINK_ReadMemEx(0xE0041FF0, 0x0010 Bytes, ..., Flags = 0x02000004) -- CPU_ReadMem(16 bytes @ 0xE0041FF0) - Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 returns 0x10 (0001ms, 39684ms total) | ||
40 | +T0C04 3281:209 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX) -- Value=0x00000000 returns 0x00 (0000ms, 39684ms total) | ||
41 | +T0C04 3281:209 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX) -- Value=0xE0040000 returns 0x00 (0000ms, 39684ms total) | ||
42 | +T0C04 3281:209 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX) -- Value=0xE0000000 returns 0x00 (0000ms, 39684ms total) | ||
43 | +T0C04 3281:209 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX) -- Value=0xE0001000 returns 0x00 (0000ms, 39684ms total) | ||
44 | +T0C04 3281:209 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX) -- Value=0xE0002000 returns 0x00 (0000ms, 39684ms total) | ||
45 | +T0C04 3281:209 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX) -- Value=0xE000E000 returns 0x00 (0000ms, 39684ms total) | ||
46 | +T0C04 3281:209 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX) -- Value=0xE000EDF0 returns 0x00 (0000ms, 39684ms total) | ||
47 | +T0C04 3281:209 JLINK_GetDebugInfo(0x01 = Unknown) -- Value=0x00000001 returns 0x00 (0000ms, 39684ms total) | ||
48 | +T0C04 3281:209 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 41 C2 0F 41 returns 1 (0000ms, 39684ms total) | ||
49 | +T0C04 3281:209 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX) -- Value=0x00000000 returns 0x00 (0000ms, 39684ms total) | ||
50 | +T0C04 3281:209 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 39684ms total) | ||
51 | +T0C04 3281:209 JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC) | ||
52 | + -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) (0067ms, 39751ms total) | ||
53 | +T0C04 3281:276 JLINK_ReadReg(R15 (PC)) returns 0x08000168 (0000ms, 39751ms total) | ||
54 | +T0C04 3281:276 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 39751ms total) | ||
55 | +T0C04 3281:276 JLINK_Halt() returns 0x00 (0000ms, 39751ms total) | ||
56 | +T0C04 3281:276 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00 returns 1 (0000ms, 39751ms total) | ||
57 | +T0C04 3281:276 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) returns 0 (0000ms, 39751ms total) | ||
58 | +T0C04 3281:276 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) returns 0 (0001ms, 39752ms total) | ||
59 | +T0C04 3281:277 JLINK_GetHWStatus(...) returns 0x00 (0000ms, 39752ms total) | ||
60 | +T0C04 3281:277 JLINK_GetNumBPUnits(Type = 0xFFFFFF00) returns 0x06 (0000ms, 39752ms total) | ||
61 | +T0C04 3281:277 JLINK_GetNumBPUnits(Type = 0xF0) returns 0x2000 (0000ms, 39752ms total) | ||
62 | +T0C04 3281:277 JLINK_GetNumWPUnits() returns 0x04 (0000ms, 39752ms total) | ||
63 | +T0C04 3281:277 JLINK_GetSpeed() returns 0xFA0 (0000ms, 39752ms total) | ||
64 | +T0C04 3281:277 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 02 00 00 00 returns 1 (0001ms, 39753ms total) | ||
65 | +T0C04 3281:278 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 02 00 00 00 returns 1 (0000ms, 39753ms total) | ||
66 | +T0C04 3281:278 JLINK_WriteMemEx(0xE0001000, 0x001C Bytes, ..., Flags = 0x02000004) - Data: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... -- CPU_WriteMem(28 bytes @ 0xE0001000) returns 0x1C (0001ms, 39754ms total) | ||
67 | +T0C04 3281:279 JLINK_ReadReg(R15 (PC)) returns 0x08000168 (0000ms, 39754ms total) | ||
68 | +T0C04 3281:279 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 39754ms total) | ||
69 | +T0C04 3281:281 JLINK_ReadMemEx(0xE0001004, 0x0004 Bytes, ..., Flags = 0x02000000) - Data: 00 00 00 00 returns 0x04 (0000ms, 39754ms total) | ||
70 | +T0C04 3281:361 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 39754ms total) | ||
71 | +T0C04 3281:361 JLINK_Reset() -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC)Reset: Halt core after reset via DEMCR.VC_CORERESET. >0x35 TIF>Reset: Reset device via AIRCR.SYSRESETREQ. -- CPU_WriteMem(4 bytes @ 0xE000ED0C) >0x0D TIF> >0x28 TIF> -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) | ||
72 | + -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) (0067ms, 39821ms total) | ||
73 | +T0C04 3281:428 JLINK_ReadReg(R15 (PC)) returns 0x08000168 (0000ms, 39821ms total) | ||
74 | +T0C04 3281:428 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 39821ms total) | ||
75 | +T0C04 3281:428 JLINK_ReadMemEx(0x08000168, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x08000140) -- Updating C cache (128 bytes @ 0x08000140) -- Read from C cache (60 bytes @ 0x08000168) - Data: 06 48 80 47 06 48 00 47 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0001ms, 39822ms total) | ||
76 | +T0C04 3281:429 JLINK_ReadMemEx(0x08000168, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000168) - Data: 06 48 returns 0x02 (0000ms, 39822ms total) | ||
77 | +T0C04 3281:429 JLINK_ReadMemEx(0x0800016A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016A) - Data: 80 47 returns 0x02 (0000ms, 39822ms total) | ||
78 | +T0C04 3281:429 JLINK_ReadMemEx(0x0800016A, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016A) - Data: 80 47 returns 0x02 (0000ms, 39822ms total) | ||
79 | +T0C04 3281:429 JLINK_ReadMemEx(0x0800016C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800016C) - Data: 06 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 39822ms total) | ||
80 | +T0C04 3281:429 JLINK_ReadMemEx(0x0800016C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016C) - Data: 06 48 returns 0x02 (0000ms, 39822ms total) | ||
81 | +T0C04 3282:897 JLINK_ReadMemEx(0x0800016C, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x0800016C) - Data: 06 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 39822ms total) | ||
82 | +T0C04 3282:897 JLINK_ReadMemEx(0x0800016C, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016C) - Data: 06 48 returns 0x02 (0000ms, 39822ms total) | ||
83 | +T0C04 3282:898 JLINK_ReadMemEx(0x0800016E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016E) - Data: 00 47 returns 0x02 (0000ms, 39823ms total) | ||
84 | +T0C04 3282:898 JLINK_ReadMemEx(0x0800016E, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800016E) - Data: 00 47 returns 0x02 (0000ms, 39823ms total) | ||
85 | +T0C04 3282:898 JLINK_ReadMemEx(0x08000170, 0x003C Bytes, ..., Flags = 0x02000000) -- Read from C cache (60 bytes @ 0x08000170) - Data: FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ... returns 0x3C (0000ms, 39823ms total) | ||
86 | +T0C04 3282:898 JLINK_ReadMemEx(0x08000170, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000170) - Data: FE E7 returns 0x02 (0000ms, 39823ms total) | ||
87 | +T0C04 3283:302 JLINK_ReadReg(R0) returns 0x20000A18 (0000ms, 39823ms total) | ||
88 | +T0C04 3283:302 JLINK_ReadReg(R1) returns 0x20012520 (0000ms, 39823ms total) | ||
89 | +T0C04 3283:302 JLINK_ReadReg(R2) returns 0x00000011 (0000ms, 39823ms total) | ||
90 | +T0C04 3283:302 JLINK_ReadReg(R3) returns 0x00000040 (0000ms, 39823ms total) | ||
91 | +T0C04 3283:302 JLINK_ReadReg(R4) returns 0x20012520 (0000ms, 39823ms total) | ||
92 | +T0C04 3283:302 JLINK_ReadReg(R5) returns 0x080167E4 (0000ms, 39823ms total) | ||
93 | +T0C04 3283:302 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 39823ms total) | ||
94 | +T0C04 3283:302 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 39823ms total) | ||
95 | +T0C04 3283:302 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 39823ms total) | ||
96 | +T0C04 3283:302 JLINK_ReadReg(R9) returns 0x200001E0 (0000ms, 39823ms total) | ||
97 | +T0C04 3283:302 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 39823ms total) | ||
98 | +T0C04 3283:302 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 39823ms total) | ||
99 | +T0C04 3283:302 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 39823ms total) | ||
100 | +T0C04 3283:302 JLINK_ReadReg(R13 (SP)) returns 0x20000E30 (0000ms, 39823ms total) | ||
101 | +T0C04 3283:302 JLINK_ReadReg(R14) returns 0xFFFFFFFF (0000ms, 39823ms total) | ||
102 | +T0C04 3283:302 JLINK_ReadReg(R15 (PC)) returns 0x08000168 (0000ms, 39823ms total) | ||
103 | +T0C04 3283:302 JLINK_ReadReg(XPSR) returns 0x01000000 (0000ms, 39823ms total) | ||
104 | +T0C04 3283:302 JLINK_ReadReg(MSP) returns 0x20000E30 (0000ms, 39823ms total) | ||
105 | +T0C04 3283:302 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 39823ms total) | ||
106 | +T0C04 3283:302 JLINK_ReadReg(CFBP) returns 0x00000000 (0000ms, 39823ms total) | ||
107 | +T0C04 3283:302 JLINK_ReadReg(FPSCR) returns 0x00000000 (0003ms, 39826ms total) | ||
108 | +T0C04 3283:305 JLINK_ReadReg(FPS0) returns 0xF188D809 (0000ms, 39826ms total) | ||
109 | +T0C04 3283:305 JLINK_ReadReg(FPS1) returns 0xC0040010 (0000ms, 39826ms total) | ||
110 | +T0C04 3283:305 JLINK_ReadReg(FPS2) returns 0x11C80E21 (0000ms, 39826ms total) | ||
111 | +T0C04 3283:305 JLINK_ReadReg(FPS3) returns 0xD1822967 (0000ms, 39826ms total) | ||
112 | +T0C04 3283:305 JLINK_ReadReg(FPS4) returns 0x0C141C00 (0000ms, 39826ms total) | ||
113 | +T0C04 3283:305 JLINK_ReadReg(FPS5) returns 0x90208200 (0001ms, 39827ms total) | ||
114 | +T0C04 3283:306 JLINK_ReadReg(FPS6) returns 0x04834000 (0000ms, 39827ms total) | ||
115 | +T0C04 3283:306 JLINK_ReadReg(FPS7) returns 0x262A6851 (0000ms, 39827ms total) | ||
116 | +T0C04 3283:306 JLINK_ReadReg(FPS8) returns 0x510D4121 (0000ms, 39827ms total) | ||
117 | +T0C04 3283:306 JLINK_ReadReg(FPS9) returns 0x00C24926 (0000ms, 39827ms total) | ||
118 | +T0C04 3283:306 JLINK_ReadReg(FPS10) returns 0x24019E50 (0000ms, 39827ms total) | ||
119 | +T0C04 3283:306 JLINK_ReadReg(FPS11) returns 0x00640008 (0000ms, 39827ms total) | ||
120 | +T0C04 3283:306 JLINK_ReadReg(FPS12) returns 0x308851C8 (0000ms, 39827ms total) | ||
121 | +T0C04 3283:306 JLINK_ReadReg(FPS13) returns 0x0344C110 (0000ms, 39827ms total) | ||
122 | +T0C04 3283:306 JLINK_ReadReg(FPS14) returns 0xD0C1CC24 (0000ms, 39827ms total) | ||
123 | +T0C04 3283:306 JLINK_ReadReg(FPS15) returns 0xF45ADB43 (0000ms, 39827ms total) | ||
124 | +T0C04 3283:306 JLINK_ReadReg(FPS16) returns 0x11384B00 (0000ms, 39827ms total) | ||
125 | +T0C04 3283:306 JLINK_ReadReg(FPS17) returns 0x9E0015DC (0000ms, 39827ms total) | ||
126 | +T0C04 3283:306 JLINK_ReadReg(FPS18) returns 0x02052D09 (0000ms, 39827ms total) | ||
127 | +T0C04 3283:306 JLINK_ReadReg(FPS19) returns 0x02040D9B (0000ms, 39827ms total) | ||
128 | +T0C04 3283:306 JLINK_ReadReg(FPS20) returns 0xDC01510E (0000ms, 39827ms total) | ||
129 | +T0C04 3283:306 JLINK_ReadReg(FPS21) returns 0x4D624E00 (0000ms, 39827ms total) | ||
130 | +T0C04 3283:306 JLINK_ReadReg(FPS22) returns 0x019040D3 (0000ms, 39827ms total) | ||
131 | +T0C04 3283:306 JLINK_ReadReg(FPS23) returns 0x80221693 (0000ms, 39827ms total) | ||
132 | +T0C04 3283:306 JLINK_ReadReg(FPS24) returns 0x6094DE14 (0000ms, 39827ms total) | ||
133 | +T0C04 3283:306 JLINK_ReadReg(FPS25) returns 0xA0689A4E (0000ms, 39827ms total) | ||
134 | +T0C04 3283:306 JLINK_ReadReg(FPS26) returns 0x8738ED17 (0000ms, 39827ms total) | ||
135 | +T0C04 3283:306 JLINK_ReadReg(FPS27) returns 0x0A840200 (0000ms, 39827ms total) | ||
136 | +T0C04 3283:306 JLINK_ReadReg(FPS28) returns 0x4E0C8003 (0000ms, 39827ms total) | ||
137 | +T0C04 3283:306 JLINK_ReadReg(FPS29) returns 0x95A2106C (0000ms, 39827ms total) | ||
138 | +T0C04 3283:306 JLINK_ReadReg(FPS30) returns 0x3910141D (0000ms, 39827ms total) | ||
139 | +T0C04 3283:306 JLINK_ReadReg(FPS31) returns 0x60503631 (0000ms, 39827ms total) | ||
140 | +T0C04 3283:306 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000940) -- Updating C cache (64 bytes @ 0x20000940) -- Read from C cache (2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39828ms total) | ||
141 | +T0C04 3283:314 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39828ms total) | ||
142 | +T0C04 3283:314 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39828ms total) | ||
143 | +T0C04 3283:320 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001280) -- Updating C cache (64 bytes @ 0x20001280) -- Read from C cache (1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39829ms total) | ||
144 | +T0C04 3283:321 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39829ms total) | ||
145 | +T0C04 3283:321 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39829ms total) | ||
146 | +T0C04 3283:324 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200058C0) -- Updating C cache (64 bytes @ 0x200058C0) -- Read from C cache (1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39830ms total) | ||
147 | +T0C04 3283:325 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39830ms total) | ||
148 | +T0C04 3283:325 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- Read from C cache (1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39830ms total) | ||
149 | +T0990 3283:380 JLINK_ReadMemEx(0x08000168, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x08000168) - Data: 06 48 returns 0x02 (0000ms, 39830ms total) | ||
150 | +T0990 3283:380 JLINK_SetBPEx(Addr = 0x0800FEEC, Type = 0xFFFFFFF2) returns 0x00000001 (0000ms, 39830ms total) | ||
151 | +T0990 3283:380 JLINK_Go() -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0002018) -- CPU_WriteMem(4 bytes @ 0xE000201C) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0003ms, 39833ms total) | ||
152 | +T0990 3283:483 JLINK_IsHalted() returns TRUE (0002ms, 39835ms total) | ||
153 | +T0990 3283:485 JLINK_Halt() returns 0x00 (0000ms, 39833ms total) | ||
154 | +T0990 3283:485 JLINK_IsHalted() returns TRUE (0000ms, 39833ms total) | ||
155 | +T0990 3283:485 JLINK_IsHalted() returns TRUE (0000ms, 39833ms total) | ||
156 | +T0990 3283:485 JLINK_IsHalted() returns TRUE (0000ms, 39833ms total) | ||
157 | +T0990 3283:485 JLINK_ReadReg(R15 (PC)) returns 0x0800FEEC (0000ms, 39833ms total) | ||
158 | +T0990 3283:485 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 39833ms total) | ||
159 | +T0990 3283:485 JLINK_ClrBPEx(BPHandle = 0x00000001) returns 0x00 (0000ms, 39833ms total) | ||
160 | +T0990 3283:485 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 02 00 00 00 returns 1 (0000ms, 39833ms total) | ||
161 | +T0990 3283:485 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0001ms, 39834ms total) | ||
162 | +T0990 3283:486 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0000ms, 39834ms total) | ||
163 | +T0990 3283:486 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0001ms, 39835ms total) | ||
164 | +T0990 3283:487 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0000ms, 39835ms total) | ||
165 | +T0990 3283:488 JLINK_ReadReg(R0) returns 0x0800FEED (0000ms, 39835ms total) | ||
166 | +T0990 3283:488 JLINK_ReadReg(R1) returns 0x20012570 (0000ms, 39835ms total) | ||
167 | +T0990 3283:488 JLINK_ReadReg(R2) returns 0x00000000 (0000ms, 39835ms total) | ||
168 | +T0990 3283:488 JLINK_ReadReg(R3) returns 0x0800B871 (0000ms, 39835ms total) | ||
169 | +T0990 3283:488 JLINK_ReadReg(R4) returns 0x080167E4 (0000ms, 39835ms total) | ||
170 | +T0990 3283:488 JLINK_ReadReg(R5) returns 0x080167E4 (0000ms, 39835ms total) | ||
171 | +T0990 3283:488 JLINK_ReadReg(R6) returns 0x00000000 (0000ms, 39835ms total) | ||
172 | +T0990 3283:488 JLINK_ReadReg(R7) returns 0x00000000 (0000ms, 39835ms total) | ||
173 | +T0990 3283:488 JLINK_ReadReg(R8) returns 0x00000000 (0000ms, 39835ms total) | ||
174 | +T0990 3283:488 JLINK_ReadReg(R9) returns 0x200001E0 (0000ms, 39835ms total) | ||
175 | +T0990 3283:488 JLINK_ReadReg(R10) returns 0x00000000 (0000ms, 39835ms total) | ||
176 | +T0990 3283:488 JLINK_ReadReg(R11) returns 0x00000000 (0000ms, 39835ms total) | ||
177 | +T0990 3283:488 JLINK_ReadReg(R12) returns 0x00000004 (0000ms, 39835ms total) | ||
178 | +T0990 3283:488 JLINK_ReadReg(R13 (SP)) returns 0x20012570 (0000ms, 39835ms total) | ||
179 | +T0990 3283:488 JLINK_ReadReg(R14) returns 0x0800825D (0000ms, 39835ms total) | ||
180 | +T0990 3283:488 JLINK_ReadReg(R15 (PC)) returns 0x0800FEEC (0000ms, 39835ms total) | ||
181 | +T0990 3283:488 JLINK_ReadReg(XPSR) returns 0x61000000 (0000ms, 39835ms total) | ||
182 | +T0990 3283:488 JLINK_ReadReg(MSP) returns 0x20012570 (0000ms, 39835ms total) | ||
183 | +T0990 3283:488 JLINK_ReadReg(PSP) returns 0x20001000 (0000ms, 39835ms total) | ||
184 | +T0990 3283:488 JLINK_ReadReg(CFBP) returns 0x00000001 (0000ms, 39835ms total) | ||
185 | +T0990 3283:488 JLINK_ReadReg(FPSCR) returns 0x00000000 (0003ms, 39838ms total) | ||
186 | +T0990 3283:491 JLINK_ReadReg(FPS0) returns 0xF188D809 (0000ms, 39838ms total) | ||
187 | +T0990 3283:491 JLINK_ReadReg(FPS1) returns 0xC0040010 (0000ms, 39838ms total) | ||
188 | +T0990 3283:491 JLINK_ReadReg(FPS2) returns 0x11C80E21 (0000ms, 39838ms total) | ||
189 | +T0990 3283:491 JLINK_ReadReg(FPS3) returns 0xD1822967 (0000ms, 39838ms total) | ||
190 | +T0990 3283:491 JLINK_ReadReg(FPS4) returns 0x0C141C00 (0000ms, 39838ms total) | ||
191 | +T0990 3283:491 JLINK_ReadReg(FPS5) returns 0x90208200 (0000ms, 39838ms total) | ||
192 | +T0990 3283:491 JLINK_ReadReg(FPS6) returns 0x04834000 (0000ms, 39838ms total) | ||
193 | +T0990 3283:491 JLINK_ReadReg(FPS7) returns 0x262A6851 (0000ms, 39838ms total) | ||
194 | +T0990 3283:491 JLINK_ReadReg(FPS8) returns 0x510D4121 (0000ms, 39838ms total) | ||
195 | +T0990 3283:491 JLINK_ReadReg(FPS9) returns 0x00C24926 (0000ms, 39838ms total) | ||
196 | +T0990 3283:491 JLINK_ReadReg(FPS10) returns 0x24019E50 (0000ms, 39838ms total) | ||
197 | +T0990 3283:491 JLINK_ReadReg(FPS11) returns 0x00640008 (0000ms, 39838ms total) | ||
198 | +T0990 3283:491 JLINK_ReadReg(FPS12) returns 0x308851C8 (0000ms, 39838ms total) | ||
199 | +T0990 3283:491 JLINK_ReadReg(FPS13) returns 0x0344C110 (0000ms, 39838ms total) | ||
200 | +T0990 3283:491 JLINK_ReadReg(FPS14) returns 0xD0C1CC24 (0000ms, 39838ms total) | ||
201 | +T0990 3283:492 JLINK_ReadReg(FPS15) returns 0xF45ADB43 (0000ms, 39839ms total) | ||
202 | +T0990 3283:492 JLINK_ReadReg(FPS16) returns 0x11384B00 (0000ms, 39839ms total) | ||
203 | +T0990 3283:492 JLINK_ReadReg(FPS17) returns 0x9E0015DC (0000ms, 39839ms total) | ||
204 | +T0990 3283:492 JLINK_ReadReg(FPS18) returns 0x02052D09 (0000ms, 39839ms total) | ||
205 | +T0990 3283:492 JLINK_ReadReg(FPS19) returns 0x02040D9B (0000ms, 39839ms total) | ||
206 | +T0990 3283:492 JLINK_ReadReg(FPS20) returns 0xDC01510E (0000ms, 39839ms total) | ||
207 | +T0990 3283:492 JLINK_ReadReg(FPS21) returns 0x4D624E00 (0000ms, 39839ms total) | ||
208 | +T0990 3283:492 JLINK_ReadReg(FPS22) returns 0x019040D3 (0000ms, 39839ms total) | ||
209 | +T0990 3283:492 JLINK_ReadReg(FPS23) returns 0x80221693 (0000ms, 39839ms total) | ||
210 | +T0990 3283:492 JLINK_ReadReg(FPS24) returns 0x6094DE14 (0000ms, 39839ms total) | ||
211 | +T0990 3283:492 JLINK_ReadReg(FPS25) returns 0xA0689A4E (0000ms, 39839ms total) | ||
212 | +T0990 3283:492 JLINK_ReadReg(FPS26) returns 0x8738ED17 (0000ms, 39839ms total) | ||
213 | +T0990 3283:492 JLINK_ReadReg(FPS27) returns 0x0A840200 (0000ms, 39839ms total) | ||
214 | +T0990 3283:492 JLINK_ReadReg(FPS28) returns 0x4E0C8003 (0000ms, 39839ms total) | ||
215 | +T0990 3283:492 JLINK_ReadReg(FPS29) returns 0x95A2106C (0000ms, 39839ms total) | ||
216 | +T0990 3283:492 JLINK_ReadReg(FPS30) returns 0x3910141D (0000ms, 39839ms total) | ||
217 | +T0990 3283:492 JLINK_ReadReg(FPS31) returns 0x60503631 (0000ms, 39839ms total) | ||
218 | +T0C04 3283:494 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20000940) -- Updating C cache (64 bytes @ 0x20000940) -- Read from C cache (2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39840ms total) | ||
219 | +T0C04 3283:495 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x20001280) -- Updating C cache (64 bytes @ 0x20001280) -- Read from C cache (1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0001ms, 39841ms total) | ||
220 | +T0C04 3283:496 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(64 bytes @ 0x200058C0) -- Updating C cache (64 bytes @ 0x200058C0) -- Read from C cache (1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39842ms total) | ||
221 | +T0C04 3283:497 JLINK_ReadMemEx(0x0800FEEC, 0x003C Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(128 bytes @ 0x0800FEC0) -- Updating C cache (128 bytes @ 0x0800FEC0) -- Read from C cache (60 bytes @ 0x0800FEEC) - Data: 4F F4 00 41 08 03 00 F0 FD FE 62 B6 00 BF EF F3 ... returns 0x3C (0001ms, 39843ms total) | ||
222 | +T0C04 3283:498 JLINK_ReadMemEx(0x0800FEEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FEEC) - Data: 4F F4 returns 0x02 (0000ms, 39843ms total) | ||
223 | +T0C04 3283:498 JLINK_ReadMemEx(0x0800FEEE, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FEEE) - Data: 00 41 returns 0x02 (0000ms, 39843ms total) | ||
224 | +T0990 3284:971 JLINK_ReadMemEx(0x0800FEEC, 0x0002 Bytes, ..., Flags = 0x02000000) -- Read from C cache (2 bytes @ 0x0800FEEC) - Data: 4F F4 returns 0x02 (0000ms, 39843ms total) | ||
225 | +T0990 3284:971 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) (0002ms, 39845ms total) | ||
226 | +T0990 3285:074 JLINK_IsHalted() returns FALSE (0000ms, 39845ms total) | ||
227 | +T0990 3285:176 JLINK_IsHalted() returns FALSE (0000ms, 39845ms total) | ||
228 | +T0990 3285:277 JLINK_IsHalted() returns FALSE (0000ms, 39845ms total) | ||
229 | +T0990 3285:378 JLINK_IsHalted() returns FALSE (0000ms, 39845ms total) | ||
230 | +T0990 3285:479 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001004) - Data: F9 2F A8 03 returns 1 (0000ms, 39845ms total) | ||
231 | +T0C04 3285:479 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39846ms total) | ||
232 | +T0C04 3285:480 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39846ms total) | ||
233 | +T0C04 3285:480 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39847ms total) | ||
234 | +T0990 3285:481 JLINK_IsHalted() returns FALSE (0000ms, 39847ms total) | ||
235 | +T0990 3285:583 JLINK_IsHalted() returns FALSE (0000ms, 39847ms total) | ||
236 | +T0990 3285:683 JLINK_IsHalted() returns FALSE (0000ms, 39847ms total) | ||
237 | +T0990 3285:785 JLINK_IsHalted() returns FALSE (0000ms, 39847ms total) | ||
238 | +T0990 3285:886 JLINK_IsHalted() returns FALSE (0000ms, 39847ms total) | ||
239 | +T0990 3285:987 JLINK_IsHalted() returns FALSE (0000ms, 39847ms total) | ||
240 | +T0990 3286:088 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39847ms total) | ||
241 | +T0C04 3286:088 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39848ms total) | ||
242 | +T0C04 3286:089 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39848ms total) | ||
243 | +T0C04 3286:090 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39848ms total) | ||
244 | +T0990 3286:090 JLINK_IsHalted() returns FALSE (0001ms, 39849ms total) | ||
245 | +T0990 3286:191 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total) | ||
246 | +T0990 3286:293 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total) | ||
247 | +T0990 3286:394 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total) | ||
248 | +T0990 3286:495 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total) | ||
249 | +T0990 3286:596 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total) | ||
250 | +T0990 3286:697 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39848ms total) | ||
251 | +T0C04 3286:697 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39848ms total) | ||
252 | +T0C04 3286:698 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39848ms total) | ||
253 | +T0C04 3286:698 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39848ms total) | ||
254 | +T0990 3286:698 JLINK_IsHalted() returns FALSE (0001ms, 39849ms total) | ||
255 | +T0990 3286:800 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total) | ||
256 | +T0990 3286:901 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total) | ||
257 | +T0990 3287:002 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total) | ||
258 | +T0990 3287:103 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total) | ||
259 | +T0990 3287:204 JLINK_IsHalted() returns FALSE (0000ms, 39848ms total) | ||
260 | +T0990 3287:305 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39848ms total) | ||
261 | +T0C04 3287:305 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39848ms total) | ||
262 | +T0C04 3287:305 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0001ms, 39849ms total) | ||
263 | +T0C04 3287:306 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39849ms total) | ||
264 | +T0990 3287:306 JLINK_IsHalted() returns FALSE (0001ms, 39850ms total) | ||
265 | +T0990 3287:408 JLINK_IsHalted() returns FALSE (0000ms, 39849ms total) | ||
266 | +T0990 3287:508 JLINK_IsHalted() returns FALSE (0000ms, 39849ms total) | ||
267 | +T0990 3287:610 JLINK_IsHalted() returns FALSE (0000ms, 39849ms total) | ||
268 | +T0990 3287:711 JLINK_IsHalted() returns FALSE (0000ms, 39849ms total) | ||
269 | +T0990 3287:811 JLINK_IsHalted() returns FALSE (0001ms, 39850ms total) | ||
270 | +T0990 3287:913 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39849ms total) | ||
271 | +T0C04 3287:913 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39849ms total) | ||
272 | +T0C04 3287:913 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39850ms total) | ||
273 | +T0C04 3287:914 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39851ms total) | ||
274 | +T0990 3287:915 JLINK_IsHalted() returns FALSE (0000ms, 39851ms total) | ||
275 | +T0990 3288:016 JLINK_IsHalted() returns FALSE (0000ms, 39851ms total) | ||
276 | +T0990 3288:117 JLINK_IsHalted() returns FALSE (0000ms, 39851ms total) | ||
277 | +T0990 3288:218 JLINK_IsHalted() returns FALSE (0000ms, 39851ms total) | ||
278 | +T0990 3288:318 JLINK_IsHalted() returns FALSE (0000ms, 39851ms total) | ||
279 | +T0990 3288:419 JLINK_IsHalted() returns FALSE (0000ms, 39851ms total) | ||
280 | +T0990 3288:520 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39851ms total) | ||
281 | +T0C04 3288:520 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39851ms total) | ||
282 | +T0C04 3288:521 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39851ms total) | ||
283 | +T0C04 3288:521 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39852ms total) | ||
284 | +T0990 3288:522 JLINK_IsHalted() returns FALSE (0000ms, 39852ms total) | ||
285 | +T0990 3288:623 JLINK_IsHalted() returns FALSE (0001ms, 39853ms total) | ||
286 | +T0990 3288:724 JLINK_IsHalted() returns FALSE (0000ms, 39852ms total) | ||
287 | +T0990 3288:826 JLINK_IsHalted() returns FALSE (0000ms, 39852ms total) | ||
288 | +T0990 3288:927 JLINK_IsHalted() returns FALSE (0000ms, 39852ms total) | ||
289 | +T0990 3289:027 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39852ms total) | ||
290 | +T0C04 3289:027 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39852ms total) | ||
291 | +T0C04 3289:028 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0000ms, 39852ms total) | ||
292 | +T0C04 3289:028 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39853ms total) | ||
293 | +T0990 3289:029 JLINK_IsHalted() returns FALSE (0000ms, 39853ms total) | ||
294 | +T0990 3289:130 JLINK_IsHalted() returns FALSE (0000ms, 39853ms total) | ||
295 | +T0990 3289:232 JLINK_IsHalted() returns FALSE (0000ms, 39853ms total) | ||
296 | +T0990 3289:333 JLINK_IsHalted() returns FALSE (0000ms, 39853ms total) | ||
297 | +T0990 3289:433 JLINK_IsHalted() returns FALSE (0000ms, 39853ms total) | ||
298 | +T0990 3289:534 JLINK_IsHalted() returns FALSE (0000ms, 39853ms total) | ||
299 | +T0990 3289:635 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39853ms total) | ||
300 | +T0C04 3289:635 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39853ms total) | ||
301 | +T0C04 3289:635 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39854ms total) | ||
302 | +T0C04 3289:636 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39855ms total) | ||
303 | +T0990 3289:637 JLINK_IsHalted() returns FALSE (0000ms, 39855ms total) | ||
304 | +T0990 3289:738 JLINK_IsHalted() returns FALSE (0000ms, 39855ms total) | ||
305 | +T0990 3289:839 JLINK_IsHalted() returns FALSE (0000ms, 39855ms total) | ||
306 | +T0990 3289:940 JLINK_IsHalted() returns FALSE (0000ms, 39855ms total) | ||
307 | +T0990 3290:040 JLINK_IsHalted() returns FALSE (0001ms, 39856ms total) | ||
308 | +T0990 3290:141 JLINK_IsHalted() returns FALSE (0000ms, 39855ms total) | ||
309 | +T0990 3290:242 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39855ms total) | ||
310 | +T0C04 3290:242 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39855ms total) | ||
311 | +T0C04 3290:242 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39856ms total) | ||
312 | +T0C04 3290:243 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39856ms total) | ||
313 | +T0990 3290:243 JLINK_IsHalted() returns FALSE (0001ms, 39857ms total) | ||
314 | +T0990 3290:345 JLINK_IsHalted() returns FALSE (0000ms, 39856ms total) | ||
315 | +T0990 3290:445 JLINK_IsHalted() returns FALSE (0000ms, 39856ms total) | ||
316 | +T0990 3290:547 JLINK_IsHalted() returns FALSE (0000ms, 39856ms total) | ||
317 | +T0990 3290:648 JLINK_IsHalted() returns FALSE (0000ms, 39856ms total) | ||
318 | +T0990 3290:749 JLINK_IsHalted() returns FALSE (0000ms, 39856ms total) | ||
319 | +T0990 3290:849 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39856ms total) | ||
320 | +T0C04 3290:849 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39856ms total) | ||
321 | +T0C04 3290:849 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 05 returns 0x01 (0001ms, 39857ms total) | ||
322 | +T0C04 3290:850 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39858ms total) | ||
323 | +T0990 3290:851 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total) | ||
324 | +T0990 3290:953 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total) | ||
325 | +T0990 3291:054 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total) | ||
326 | +T0990 3291:155 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total) | ||
327 | +T0990 3291:255 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total) | ||
328 | +T0990 3291:356 JLINK_IsHalted() returns FALSE (0001ms, 39859ms total) | ||
329 | +T0990 3291:458 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39858ms total) | ||
330 | +T0C04 3291:458 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39858ms total) | ||
331 | +T0C04 3291:459 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39858ms total) | ||
332 | +T0C04 3291:460 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39858ms total) | ||
333 | +T0990 3291:460 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total) | ||
334 | +T0990 3291:561 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total) | ||
335 | +T0990 3291:662 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total) | ||
336 | +T0990 3291:762 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total) | ||
337 | +T0990 3291:863 JLINK_IsHalted() returns FALSE (0000ms, 39858ms total) | ||
338 | +T0990 3291:964 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39858ms total) | ||
339 | +T0C04 3291:964 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39858ms total) | ||
340 | +T0C04 3291:965 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39858ms total) | ||
341 | +T0C04 3291:965 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39859ms total) | ||
342 | +T0990 3291:966 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total) | ||
343 | +T0990 3292:067 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total) | ||
344 | +T0990 3292:168 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total) | ||
345 | +T0990 3292:270 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total) | ||
346 | +T0990 3292:371 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total) | ||
347 | +T0990 3292:472 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total) | ||
348 | +T0990 3292:572 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39859ms total) | ||
349 | +T0C04 3292:572 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39859ms total) | ||
350 | +T0C04 3292:573 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 05 returns 0x01 (0000ms, 39859ms total) | ||
351 | +T0C04 3292:575 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39859ms total) | ||
352 | +T0990 3292:575 JLINK_IsHalted() returns FALSE (0001ms, 39860ms total) | ||
353 | +T0990 3292:676 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total) | ||
354 | +T0990 3292:777 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total) | ||
355 | +T0990 3292:878 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total) | ||
356 | +T0990 3292:980 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total) | ||
357 | +T0990 3293:081 JLINK_IsHalted() returns FALSE (0000ms, 39859ms total) | ||
358 | +T0990 3293:182 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39859ms total) | ||
359 | +T0C04 3293:182 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39859ms total) | ||
360 | +T0C04 3293:183 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39859ms total) | ||
361 | +T0C04 3293:183 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39860ms total) | ||
362 | +T0990 3293:184 JLINK_IsHalted() returns FALSE (0000ms, 39860ms total) | ||
363 | +T0990 3293:285 JLINK_IsHalted() returns FALSE (0000ms, 39860ms total) | ||
364 | +T0990 3293:385 JLINK_IsHalted() returns FALSE (0000ms, 39860ms total) | ||
365 | +T0990 3293:486 JLINK_IsHalted() returns FALSE (0000ms, 39860ms total) | ||
366 | +T0990 3293:587 JLINK_IsHalted() returns FALSE (0000ms, 39860ms total) | ||
367 | +T0990 3293:687 JLINK_IsHalted() returns FALSE (0000ms, 39860ms total) | ||
368 | +T0990 3293:789 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39860ms total) | ||
369 | +T0C04 3293:789 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39860ms total) | ||
370 | +T0C04 3293:790 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39860ms total) | ||
371 | +T0C04 3293:790 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39861ms total) | ||
372 | +T0990 3293:791 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total) | ||
373 | +T0990 3293:892 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total) | ||
374 | +T0990 3293:993 JLINK_IsHalted() returns FALSE (0001ms, 39862ms total) | ||
375 | +T0990 3294:095 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total) | ||
376 | +T0990 3294:196 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total) | ||
377 | +T0990 3294:297 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total) | ||
378 | +T0990 3294:398 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39861ms total) | ||
379 | +T0C04 3294:398 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39861ms total) | ||
380 | +T0C04 3294:399 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39861ms total) | ||
381 | +T0C04 3294:399 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39861ms total) | ||
382 | +T0990 3294:400 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total) | ||
383 | +T0990 3294:501 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total) | ||
384 | +T0990 3294:602 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total) | ||
385 | +T0990 3294:703 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total) | ||
386 | +T0990 3294:804 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total) | ||
387 | +T0990 3294:905 JLINK_IsHalted() returns FALSE (0000ms, 39861ms total) | ||
388 | +T0990 3295:006 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39861ms total) | ||
389 | +T0C04 3295:006 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39861ms total) | ||
390 | +T0C04 3295:006 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39862ms total) | ||
391 | +T0C04 3295:007 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39862ms total) | ||
392 | +T0990 3295:008 JLINK_IsHalted() returns FALSE (0000ms, 39862ms total) | ||
393 | +T0990 3295:109 JLINK_IsHalted() returns FALSE (0000ms, 39862ms total) | ||
394 | +T0990 3295:210 JLINK_IsHalted() returns FALSE (0000ms, 39862ms total) | ||
395 | +T0990 3295:311 JLINK_IsHalted() returns FALSE (0000ms, 39862ms total) | ||
396 | +T0990 3295:412 JLINK_IsHalted() returns FALSE (0000ms, 39862ms total) | ||
397 | +T0990 3295:512 JLINK_IsHalted() returns FALSE (0000ms, 39862ms total) | ||
398 | +T0990 3295:613 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39862ms total) | ||
399 | +T0C04 3295:613 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39862ms total) | ||
400 | +T0C04 3295:614 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39862ms total) | ||
401 | +T0C04 3295:614 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39863ms total) | ||
402 | +T0990 3295:615 JLINK_IsHalted() returns FALSE (0000ms, 39863ms total) | ||
403 | +T0990 3295:716 JLINK_IsHalted() returns FALSE (0000ms, 39863ms total) | ||
404 | +T0990 3295:817 JLINK_IsHalted() returns FALSE (0000ms, 39863ms total) | ||
405 | +T0990 3295:918 JLINK_IsHalted() returns FALSE (0000ms, 39863ms total) | ||
406 | +T0990 3296:019 JLINK_IsHalted() returns FALSE (0000ms, 39863ms total) | ||
407 | +T0990 3296:120 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39863ms total) | ||
408 | +T0C04 3296:120 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39863ms total) | ||
409 | +T0C04 3296:121 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39864ms total) | ||
410 | +T0C04 3296:122 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39864ms total) | ||
411 | +T0990 3296:122 JLINK_IsHalted() returns FALSE (0001ms, 39865ms total) | ||
412 | +T0990 3296:223 JLINK_IsHalted() returns FALSE (0000ms, 39864ms total) | ||
413 | +T0990 3296:324 JLINK_IsHalted() returns FALSE (0000ms, 39864ms total) | ||
414 | +T0990 3296:426 JLINK_IsHalted() returns FALSE (0000ms, 39864ms total) | ||
415 | +T0990 3296:526 JLINK_IsHalted() returns FALSE (0000ms, 39864ms total) | ||
416 | +T0990 3296:627 JLINK_IsHalted() returns FALSE (0000ms, 39864ms total) | ||
417 | +T0990 3296:728 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39864ms total) | ||
418 | +T0C04 3296:728 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39864ms total) | ||
419 | +T0C04 3296:729 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39864ms total) | ||
420 | +T0C04 3296:729 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39865ms total) | ||
421 | +T0990 3296:730 JLINK_IsHalted() returns FALSE (0000ms, 39865ms total) | ||
422 | +T0990 3296:832 JLINK_IsHalted() returns FALSE (0000ms, 39865ms total) | ||
423 | +T0990 3296:933 JLINK_IsHalted() returns FALSE (0000ms, 39865ms total) | ||
424 | +T0990 3297:033 JLINK_IsHalted() returns FALSE (0000ms, 39865ms total) | ||
425 | +T0990 3297:134 JLINK_IsHalted() returns FALSE (0000ms, 39865ms total) | ||
426 | +T0990 3297:235 JLINK_IsHalted() returns FALSE (0000ms, 39865ms total) | ||
427 | +T0990 3297:335 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39865ms total) | ||
428 | +T0C04 3297:335 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39865ms total) | ||
429 | +T0C04 3297:336 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39865ms total) | ||
430 | +T0C04 3297:336 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39866ms total) | ||
431 | +T0990 3297:337 JLINK_IsHalted() returns FALSE (0000ms, 39866ms total) | ||
432 | +T0990 3297:438 JLINK_IsHalted() returns FALSE (0000ms, 39866ms total) | ||
433 | +T0990 3297:539 JLINK_IsHalted() returns FALSE (0000ms, 39866ms total) | ||
434 | +T0990 3297:640 JLINK_IsHalted() returns FALSE (0000ms, 39866ms total) | ||
435 | +T0990 3297:742 JLINK_IsHalted() returns FALSE (0000ms, 39866ms total) | ||
436 | +T0990 3297:843 JLINK_IsHalted() returns FALSE (0000ms, 39866ms total) | ||
437 | +T0990 3297:944 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39866ms total) | ||
438 | +T0C04 3297:944 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39866ms total) | ||
439 | +T0C04 3297:944 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39866ms total) | ||
440 | +T0C04 3297:944 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39867ms total) | ||
441 | +T0990 3297:945 JLINK_IsHalted() returns FALSE (0000ms, 39867ms total) | ||
442 | +T0990 3298:047 JLINK_IsHalted() returns FALSE (0000ms, 39867ms total) | ||
443 | +T0990 3298:148 JLINK_IsHalted() returns FALSE (0000ms, 39867ms total) | ||
444 | +T0990 3298:249 JLINK_IsHalted() returns FALSE (0000ms, 39867ms total) | ||
445 | +T0990 3298:350 JLINK_IsHalted() returns FALSE (0000ms, 39867ms total) | ||
446 | +T0990 3298:451 JLINK_IsHalted() returns FALSE (0000ms, 39867ms total) | ||
447 | +T0990 3298:552 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39867ms total) | ||
448 | +T0C04 3298:552 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39867ms total) | ||
449 | +T0C04 3298:553 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 05 returns 0x01 (0000ms, 39867ms total) | ||
450 | +T0C04 3298:553 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39868ms total) | ||
451 | +T0990 3298:554 JLINK_IsHalted() returns FALSE (0001ms, 39869ms total) | ||
452 | +T0990 3298:655 JLINK_IsHalted() returns FALSE (0000ms, 39868ms total) | ||
453 | +T0990 3298:756 JLINK_IsHalted() returns FALSE (0000ms, 39868ms total) | ||
454 | +T0990 3298:857 JLINK_IsHalted() returns FALSE (0000ms, 39868ms total) | ||
455 | +T0990 3298:958 JLINK_IsHalted() returns FALSE (0000ms, 39868ms total) | ||
456 | +T0990 3299:058 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39868ms total) | ||
457 | +T0C04 3299:058 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39868ms total) | ||
458 | +T0C04 3299:059 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39868ms total) | ||
459 | +T0C04 3299:059 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39869ms total) | ||
460 | +T0990 3299:060 JLINK_IsHalted() returns FALSE (0000ms, 39869ms total) | ||
461 | +T0990 3299:162 JLINK_IsHalted() returns FALSE (0000ms, 39869ms total) | ||
462 | +T0990 3299:262 JLINK_IsHalted() returns FALSE (0000ms, 39869ms total) | ||
463 | +T0990 3299:363 JLINK_IsHalted() returns FALSE (0000ms, 39869ms total) | ||
464 | +T0990 3299:464 JLINK_IsHalted() returns FALSE (0000ms, 39869ms total) | ||
465 | +T0990 3299:565 JLINK_IsHalted() returns FALSE (0000ms, 39869ms total) | ||
466 | +T0990 3299:666 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39869ms total) | ||
467 | +T0C04 3299:666 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39869ms total) | ||
468 | +T0C04 3299:667 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39869ms total) | ||
469 | +T0C04 3299:667 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39870ms total) | ||
470 | +T0990 3299:668 JLINK_IsHalted() returns FALSE (0000ms, 39870ms total) | ||
471 | +T0990 3299:769 JLINK_IsHalted() returns FALSE (0000ms, 39870ms total) | ||
472 | +T0990 3299:870 JLINK_IsHalted() returns FALSE (0000ms, 39870ms total) | ||
473 | +T0990 3299:971 JLINK_IsHalted() returns FALSE (0000ms, 39870ms total) | ||
474 | +T0990 3300:072 JLINK_IsHalted() returns FALSE (0000ms, 39870ms total) | ||
475 | +T0990 3300:172 JLINK_IsHalted() returns FALSE (0000ms, 39870ms total) | ||
476 | +T0990 3300:273 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39870ms total) | ||
477 | +T0C04 3300:273 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39870ms total) | ||
478 | +T0C04 3300:273 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0001ms, 39871ms total) | ||
479 | +T0C04 3300:274 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39871ms total) | ||
480 | +T0990 3300:275 JLINK_IsHalted() returns FALSE (0000ms, 39871ms total) | ||
481 | +T0990 3300:377 JLINK_IsHalted() returns FALSE (0000ms, 39871ms total) | ||
482 | +T0990 3300:478 JLINK_IsHalted() returns FALSE (0000ms, 39871ms total) | ||
483 | +T0990 3300:579 JLINK_IsHalted() returns FALSE (0000ms, 39871ms total) | ||
484 | +T0990 3300:680 JLINK_IsHalted() returns FALSE (0000ms, 39871ms total) | ||
485 | +T0990 3300:781 JLINK_IsHalted() returns FALSE (0000ms, 39871ms total) | ||
486 | +T0990 3300:882 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39871ms total) | ||
487 | +T0C04 3300:882 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39871ms total) | ||
488 | +T0C04 3300:882 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39872ms total) | ||
489 | +T0C04 3300:883 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39873ms total) | ||
490 | +T0990 3300:884 JLINK_IsHalted() returns FALSE (0000ms, 39873ms total) | ||
491 | +T0990 3300:985 JLINK_IsHalted() returns FALSE (0000ms, 39873ms total) | ||
492 | +T0990 3301:086 JLINK_IsHalted() returns FALSE (0000ms, 39873ms total) | ||
493 | +T0990 3301:187 JLINK_IsHalted() returns FALSE (0000ms, 39873ms total) | ||
494 | +T0990 3301:289 JLINK_IsHalted() returns FALSE (0000ms, 39873ms total) | ||
495 | +T0990 3301:389 JLINK_IsHalted() returns FALSE (0001ms, 39874ms total) | ||
496 | +T0990 3301:490 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39873ms total) | ||
497 | +T0C04 3301:490 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39873ms total) | ||
498 | +T0C04 3301:491 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39873ms total) | ||
499 | +T0C04 3301:491 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39874ms total) | ||
500 | +T0990 3301:492 JLINK_IsHalted() returns FALSE (0000ms, 39874ms total) | ||
501 | +T0990 3301:593 JLINK_IsHalted() returns FALSE (0000ms, 39874ms total) | ||
502 | +T0990 3301:695 JLINK_IsHalted() returns FALSE (0000ms, 39874ms total) | ||
503 | +T0990 3301:796 JLINK_IsHalted() returns FALSE (0000ms, 39874ms total) | ||
504 | +T0990 3301:896 JLINK_IsHalted() returns FALSE (0000ms, 39874ms total) | ||
505 | +T0990 3301:997 JLINK_IsHalted() returns FALSE (0000ms, 39874ms total) | ||
506 | +T0990 3302:098 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39874ms total) | ||
507 | +T0C04 3302:098 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39874ms total) | ||
508 | +T0C04 3302:099 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 06 returns 0x01 (0000ms, 39874ms total) | ||
509 | +T0C04 3302:099 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39875ms total) | ||
510 | +T0990 3302:100 JLINK_IsHalted() returns FALSE (0000ms, 39875ms total) | ||
511 | +T0990 3302:201 JLINK_IsHalted() returns FALSE (0000ms, 39875ms total) | ||
512 | +T0990 3302:302 JLINK_IsHalted() returns FALSE (0000ms, 39875ms total) | ||
513 | +T0990 3302:403 JLINK_IsHalted() returns FALSE (0000ms, 39875ms total) | ||
514 | +T0990 3302:504 JLINK_IsHalted() returns FALSE (0000ms, 39875ms total) | ||
515 | +T0990 3302:606 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39875ms total) | ||
516 | +T0C04 3302:606 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39875ms total) | ||
517 | +T0C04 3302:606 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39876ms total) | ||
518 | +T0C04 3302:607 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39877ms total) | ||
519 | +T0990 3302:608 JLINK_IsHalted() returns FALSE (0000ms, 39877ms total) | ||
520 | +T0990 3302:708 JLINK_IsHalted() returns FALSE (0000ms, 39877ms total) | ||
521 | +T0990 3302:810 JLINK_IsHalted() returns FALSE (0000ms, 39877ms total) | ||
522 | +T0990 3302:910 JLINK_IsHalted() returns FALSE (0000ms, 39877ms total) | ||
523 | +T0990 3303:012 JLINK_IsHalted() returns FALSE (0000ms, 39877ms total) | ||
524 | +T0990 3303:113 JLINK_IsHalted() returns FALSE (0000ms, 39877ms total) | ||
525 | +T0990 3303:214 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39877ms total) | ||
526 | +T0C04 3303:214 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39877ms total) | ||
527 | +T0C04 3303:215 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39877ms total) | ||
528 | +T0C04 3303:215 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39878ms total) | ||
529 | +T0990 3303:216 JLINK_IsHalted() returns FALSE (0000ms, 39878ms total) | ||
530 | +T0990 3303:318 JLINK_IsHalted() returns FALSE (0000ms, 39878ms total) | ||
531 | +T0990 3303:418 JLINK_IsHalted() returns FALSE (0000ms, 39878ms total) | ||
532 | +T0990 3303:519 JLINK_IsHalted() returns FALSE (0000ms, 39878ms total) | ||
533 | +T0990 3303:621 JLINK_IsHalted() returns FALSE (0000ms, 39878ms total) | ||
534 | +T0990 3303:722 JLINK_IsHalted() returns FALSE (0000ms, 39878ms total) | ||
535 | +T0990 3303:823 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39878ms total) | ||
536 | +T0C04 3303:823 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39879ms total) | ||
537 | +T0C04 3303:824 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39880ms total) | ||
538 | +T0C04 3303:825 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39880ms total) | ||
539 | +T0990 3303:825 JLINK_IsHalted() returns FALSE (0001ms, 39881ms total) | ||
540 | +T0990 3303:927 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total) | ||
541 | +T0990 3304:027 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total) | ||
542 | +T0990 3304:128 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total) | ||
543 | +T0990 3304:229 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total) | ||
544 | +T0990 3304:330 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total) | ||
545 | +T0990 3304:431 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39880ms total) | ||
546 | +T0C04 3304:431 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39880ms total) | ||
547 | +T0C04 3304:432 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39880ms total) | ||
548 | +T0C04 3304:432 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39880ms total) | ||
549 | +T0990 3304:432 JLINK_IsHalted() returns FALSE (0001ms, 39881ms total) | ||
550 | +T0990 3304:534 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total) | ||
551 | +T0990 3304:635 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total) | ||
552 | +T0990 3304:736 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total) | ||
553 | +T0990 3304:837 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total) | ||
554 | +T0990 3304:937 JLINK_IsHalted() returns FALSE (0000ms, 39880ms total) | ||
555 | +T0990 3305:038 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39880ms total) | ||
556 | +T0C04 3305:038 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39880ms total) | ||
557 | +T0C04 3305:038 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39881ms total) | ||
558 | +T0C04 3305:039 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39881ms total) | ||
559 | +T0990 3305:039 JLINK_IsHalted() returns FALSE (0001ms, 39882ms total) | ||
560 | +T0990 3305:141 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total) | ||
561 | +T0990 3305:242 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total) | ||
562 | +T0990 3305:343 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total) | ||
563 | +T0990 3305:444 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total) | ||
564 | +T0990 3305:545 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total) | ||
565 | +T0990 3305:646 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39881ms total) | ||
566 | +T0C04 3305:646 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39881ms total) | ||
567 | +T0C04 3305:647 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39881ms total) | ||
568 | +T0C04 3305:647 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39881ms total) | ||
569 | +T0990 3305:648 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total) | ||
570 | +T0990 3305:749 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total) | ||
571 | +T0990 3305:850 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total) | ||
572 | +T0990 3305:952 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total) | ||
573 | +T0990 3306:053 JLINK_IsHalted() returns FALSE (0000ms, 39881ms total) | ||
574 | +T0990 3306:155 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39881ms total) | ||
575 | +T0C04 3306:155 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39881ms total) | ||
576 | +T0C04 3306:155 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0000ms, 39881ms total) | ||
577 | +T0C04 3306:155 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0002ms, 39883ms total) | ||
578 | +T0990 3306:157 JLINK_IsHalted() returns FALSE (0000ms, 39883ms total) | ||
579 | +T0990 3306:258 JLINK_IsHalted() returns FALSE (0001ms, 39884ms total) | ||
580 | +T0990 3306:359 JLINK_IsHalted() returns FALSE (0000ms, 39883ms total) | ||
581 | +T0990 3306:460 JLINK_IsHalted() returns FALSE (0000ms, 39883ms total) | ||
582 | +T0990 3306:560 JLINK_IsHalted() returns FALSE (0000ms, 39883ms total) | ||
583 | +T0990 3306:661 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39883ms total) | ||
584 | +T0C04 3306:661 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39883ms total) | ||
585 | +T0C04 3306:662 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39883ms total) | ||
586 | +T0C04 3306:662 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39884ms total) | ||
587 | +T0990 3306:663 JLINK_IsHalted() returns FALSE (0001ms, 39885ms total) | ||
588 | +T0990 3306:764 JLINK_IsHalted() returns FALSE (0000ms, 39884ms total) | ||
589 | +T0990 3306:865 JLINK_IsHalted() returns FALSE (0000ms, 39884ms total) | ||
590 | +T0990 3306:966 JLINK_IsHalted() returns FALSE (0000ms, 39884ms total) | ||
591 | +T0990 3307:067 JLINK_IsHalted() returns FALSE (0000ms, 39884ms total) | ||
592 | +T0990 3307:168 JLINK_IsHalted() returns FALSE (0000ms, 39884ms total) | ||
593 | +T0990 3307:269 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39884ms total) | ||
594 | +T0C04 3307:269 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39884ms total) | ||
595 | +T0C04 3307:270 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39884ms total) | ||
596 | +T0C04 3307:270 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39885ms total) | ||
597 | +T0990 3307:271 JLINK_IsHalted() returns FALSE (0000ms, 39885ms total) | ||
598 | +T0990 3307:373 JLINK_IsHalted() returns FALSE (0000ms, 39885ms total) | ||
599 | +T0990 3307:474 JLINK_IsHalted() returns FALSE (0000ms, 39885ms total) | ||
600 | +T0990 3307:576 JLINK_IsHalted() returns FALSE (0000ms, 39885ms total) | ||
601 | +T0990 3307:677 JLINK_IsHalted() returns FALSE (0000ms, 39885ms total) | ||
602 | +T0990 3307:777 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39885ms total) | ||
603 | +T0C04 3307:777 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39885ms total) | ||
604 | +T0C04 3307:777 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39886ms total) | ||
605 | +T0C04 3307:778 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39886ms total) | ||
606 | +T0990 3307:779 JLINK_IsHalted() returns FALSE (0000ms, 39886ms total) | ||
607 | +T0990 3307:880 JLINK_IsHalted() returns FALSE (0000ms, 39886ms total) | ||
608 | +T0990 3307:982 JLINK_IsHalted() returns FALSE (0000ms, 39886ms total) | ||
609 | +T0990 3308:083 JLINK_IsHalted() returns FALSE (0000ms, 39886ms total) | ||
610 | +T0990 3308:184 JLINK_IsHalted() returns FALSE (0000ms, 39886ms total) | ||
611 | +T0990 3308:285 JLINK_IsHalted() returns FALSE (0000ms, 39886ms total) | ||
612 | +T0990 3308:385 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39886ms total) | ||
613 | +T0C04 3308:385 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39886ms total) | ||
614 | +T0C04 3308:386 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39886ms total) | ||
615 | +T0C04 3308:386 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39887ms total) | ||
616 | +T0990 3308:387 JLINK_IsHalted() returns FALSE (0000ms, 39887ms total) | ||
617 | +T0990 3308:489 JLINK_IsHalted() returns FALSE (0000ms, 39887ms total) | ||
618 | +T0990 3308:590 JLINK_IsHalted() returns FALSE (0000ms, 39887ms total) | ||
619 | +T0990 3308:691 JLINK_IsHalted() returns FALSE (0000ms, 39887ms total) | ||
620 | +T0990 3308:792 JLINK_IsHalted() returns FALSE (0000ms, 39887ms total) | ||
621 | +T0990 3308:893 JLINK_IsHalted() returns FALSE (0000ms, 39887ms total) | ||
622 | +T0990 3308:993 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39887ms total) | ||
623 | +T0C04 3308:993 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39887ms total) | ||
624 | +T0C04 3308:993 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39888ms total) | ||
625 | +T0C04 3308:994 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39888ms total) | ||
626 | +T0990 3308:994 JLINK_IsHalted() returns FALSE (0001ms, 39889ms total) | ||
627 | +T0990 3309:096 JLINK_IsHalted() returns FALSE (0000ms, 39888ms total) | ||
628 | +T0990 3309:197 JLINK_IsHalted() returns FALSE (0000ms, 39888ms total) | ||
629 | +T0990 3309:298 JLINK_IsHalted() returns FALSE (0000ms, 39888ms total) | ||
630 | +T0990 3309:399 JLINK_IsHalted() returns FALSE (0000ms, 39888ms total) | ||
631 | +T0990 3309:501 JLINK_IsHalted() returns FALSE (0000ms, 39888ms total) | ||
632 | +T0990 3309:601 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39888ms total) | ||
633 | +T0C04 3309:601 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39888ms total) | ||
634 | +T0C04 3309:601 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0001ms, 39889ms total) | ||
635 | +T0C04 3309:602 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0002ms, 39891ms total) | ||
636 | +T0990 3309:604 JLINK_IsHalted() returns FALSE (0000ms, 39891ms total) | ||
637 | +T0990 3309:704 JLINK_IsHalted() returns FALSE (0000ms, 39891ms total) | ||
638 | +T0990 3309:806 JLINK_IsHalted() returns FALSE (0000ms, 39891ms total) | ||
639 | +T0990 3309:907 JLINK_IsHalted() returns FALSE (0000ms, 39891ms total) | ||
640 | +T0990 3310:008 JLINK_IsHalted() returns FALSE (0000ms, 39891ms total) | ||
641 | +T0990 3310:109 JLINK_IsHalted() returns FALSE (0000ms, 39891ms total) | ||
642 | +T0990 3310:209 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39891ms total) | ||
643 | +T0C04 3310:209 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39891ms total) | ||
644 | +T0C04 3310:209 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39892ms total) | ||
645 | +T0C04 3310:210 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39893ms total) | ||
646 | +T0990 3310:211 JLINK_IsHalted() returns FALSE (0000ms, 39893ms total) | ||
647 | +T0990 3310:312 JLINK_IsHalted() returns FALSE (0000ms, 39893ms total) | ||
648 | +T0990 3310:414 JLINK_IsHalted() returns FALSE (0000ms, 39893ms total) | ||
649 | +T0990 3310:515 JLINK_IsHalted() returns FALSE (0000ms, 39893ms total) | ||
650 | +T0990 3310:616 JLINK_IsHalted() returns FALSE (0000ms, 39893ms total) | ||
651 | +T0990 3310:717 JLINK_IsHalted() returns FALSE (0000ms, 39893ms total) | ||
652 | +T0990 3310:818 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39893ms total) | ||
653 | +T0C04 3310:818 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39893ms total) | ||
654 | +T0C04 3310:819 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39893ms total) | ||
655 | +T0C04 3310:819 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39894ms total) | ||
656 | +T0990 3310:820 JLINK_IsHalted() returns FALSE (0000ms, 39894ms total) | ||
657 | +T0990 3310:921 JLINK_IsHalted() returns FALSE (0000ms, 39894ms total) | ||
658 | +T0990 3311:022 JLINK_IsHalted() returns FALSE (0000ms, 39894ms total) | ||
659 | +T0990 3311:123 JLINK_IsHalted() returns FALSE (0000ms, 39894ms total) | ||
660 | +T0990 3311:224 JLINK_IsHalted() returns FALSE (0000ms, 39894ms total) | ||
661 | +T0990 3311:325 JLINK_IsHalted() returns FALSE (0000ms, 39894ms total) | ||
662 | +T0990 3311:426 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39894ms total) | ||
663 | +T0C04 3311:426 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39894ms total) | ||
664 | +T0C04 3311:426 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 06 returns 0x01 (0001ms, 39895ms total) | ||
665 | +T0C04 3311:427 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39895ms total) | ||
666 | +T0990 3311:428 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total) | ||
667 | +T0990 3311:528 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total) | ||
668 | +T0990 3311:630 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total) | ||
669 | +T0990 3311:731 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total) | ||
670 | +T0990 3311:832 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total) | ||
671 | +T0990 3311:933 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39895ms total) | ||
672 | +T0C04 3311:933 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39895ms total) | ||
673 | +T0C04 3311:934 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39895ms total) | ||
674 | +T0C04 3311:935 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39895ms total) | ||
675 | +T0990 3311:936 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total) | ||
676 | +T0990 3312:037 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total) | ||
677 | +T0990 3312:139 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total) | ||
678 | +T0990 3312:239 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total) | ||
679 | +T0990 3312:340 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total) | ||
680 | +T0990 3312:441 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total) | ||
681 | +T0990 3312:542 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39895ms total) | ||
682 | +T0C04 3312:542 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39895ms total) | ||
683 | +T0C04 3312:543 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39895ms total) | ||
684 | +T0C04 3312:543 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39895ms total) | ||
685 | +T0990 3312:543 JLINK_IsHalted() returns FALSE (0001ms, 39896ms total) | ||
686 | +T0990 3312:645 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total) | ||
687 | +T0990 3312:745 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total) | ||
688 | +T0990 3312:847 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total) | ||
689 | +T0990 3312:947 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total) | ||
690 | +T0990 3313:049 JLINK_IsHalted() returns FALSE (0000ms, 39895ms total) | ||
691 | +T0990 3313:150 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39895ms total) | ||
692 | +T0C04 3313:150 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39895ms total) | ||
693 | +T0C04 3313:151 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39895ms total) | ||
694 | +T0C04 3313:151 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39896ms total) | ||
695 | +T0990 3313:152 JLINK_IsHalted() returns FALSE (0000ms, 39896ms total) | ||
696 | +T0990 3313:253 JLINK_IsHalted() returns FALSE (0000ms, 39896ms total) | ||
697 | +T0990 3313:354 JLINK_IsHalted() returns FALSE (0000ms, 39896ms total) | ||
698 | +T0990 3313:454 JLINK_IsHalted() returns FALSE (0000ms, 39896ms total) | ||
699 | +T0990 3313:556 JLINK_IsHalted() returns FALSE (0000ms, 39896ms total) | ||
700 | +T0990 3313:657 JLINK_IsHalted() returns FALSE (0000ms, 39896ms total) | ||
701 | +T0990 3313:758 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39896ms total) | ||
702 | +T0C04 3313:758 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39896ms total) | ||
703 | +T0C04 3313:759 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39897ms total) | ||
704 | +T0C04 3313:760 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39897ms total) | ||
705 | +T0990 3313:760 JLINK_IsHalted() returns FALSE (0001ms, 39898ms total) | ||
706 | +T0990 3313:862 JLINK_IsHalted() returns FALSE (0000ms, 39897ms total) | ||
707 | +T0990 3313:963 JLINK_IsHalted() returns FALSE (0000ms, 39897ms total) | ||
708 | +T0990 3314:064 JLINK_IsHalted() returns FALSE (0000ms, 39897ms total) | ||
709 | +T0990 3314:165 JLINK_IsHalted() returns FALSE (0000ms, 39897ms total) | ||
710 | +T0990 3314:266 JLINK_IsHalted() returns FALSE (0000ms, 39897ms total) | ||
711 | +T0990 3314:367 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39897ms total) | ||
712 | +T0C04 3314:367 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39897ms total) | ||
713 | +T0C04 3314:367 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39898ms total) | ||
714 | +T0C04 3314:368 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39898ms total) | ||
715 | +T0990 3314:368 JLINK_IsHalted() returns FALSE (0001ms, 39899ms total) | ||
716 | +T0990 3314:470 JLINK_IsHalted() returns FALSE (0000ms, 39898ms total) | ||
717 | +T0990 3314:571 JLINK_IsHalted() returns FALSE (0000ms, 39898ms total) | ||
718 | +T0990 3314:671 JLINK_IsHalted() returns FALSE (0000ms, 39898ms total) | ||
719 | +T0990 3314:773 JLINK_IsHalted() returns FALSE (0000ms, 39898ms total) | ||
720 | +T0990 3314:873 JLINK_IsHalted() returns FALSE (0000ms, 39898ms total) | ||
721 | +T0990 3314:974 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39898ms total) | ||
722 | +T0C04 3314:974 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39898ms total) | ||
723 | +T0C04 3314:974 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39899ms total) | ||
724 | +T0C04 3314:975 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39899ms total) | ||
725 | +T0990 3314:976 JLINK_IsHalted() returns FALSE (0000ms, 39899ms total) | ||
726 | +T0990 3315:077 JLINK_IsHalted() returns FALSE (0000ms, 39899ms total) | ||
727 | +T0990 3315:179 JLINK_IsHalted() returns FALSE (0000ms, 39899ms total) | ||
728 | +T0990 3315:279 JLINK_IsHalted() returns FALSE (0000ms, 39899ms total) | ||
729 | +T0990 3315:381 JLINK_IsHalted() returns FALSE (0000ms, 39899ms total) | ||
730 | +T0990 3315:482 JLINK_IsHalted() returns FALSE (0000ms, 39899ms total) | ||
731 | +T0990 3315:583 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39899ms total) | ||
732 | +T0C04 3315:583 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39900ms total) | ||
733 | +T0C04 3315:584 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 05 returns 0x01 (0000ms, 39900ms total) | ||
734 | +T0C04 3315:585 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39900ms total) | ||
735 | +T0990 3315:585 JLINK_IsHalted() returns FALSE (0001ms, 39901ms total) | ||
736 | +T0990 3315:687 JLINK_IsHalted() returns FALSE (0000ms, 39900ms total) | ||
737 | +T0990 3315:787 JLINK_IsHalted() returns FALSE (0000ms, 39900ms total) | ||
738 | +T0990 3315:889 JLINK_IsHalted() returns FALSE (0000ms, 39900ms total) | ||
739 | +T0990 3315:990 JLINK_IsHalted() returns FALSE (0000ms, 39900ms total) | ||
740 | +T0990 3316:091 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39900ms total) | ||
741 | +T0C04 3316:091 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39900ms total) | ||
742 | +T0C04 3316:092 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39900ms total) | ||
743 | +T0C04 3316:093 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39900ms total) | ||
744 | +T0990 3316:093 JLINK_IsHalted() returns FALSE (0001ms, 39901ms total) | ||
745 | +T0990 3316:194 JLINK_IsHalted() returns FALSE (0001ms, 39901ms total) | ||
746 | +T0990 3316:295 JLINK_IsHalted() returns FALSE (0000ms, 39900ms total) | ||
747 | +T0990 3316:396 JLINK_IsHalted() returns FALSE (0000ms, 39900ms total) | ||
748 | +T0990 3316:497 JLINK_IsHalted() returns FALSE (0000ms, 39900ms total) | ||
749 | +T0990 3316:598 JLINK_IsHalted() returns FALSE (0000ms, 39900ms total) | ||
750 | +T0990 3316:698 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39900ms total) | ||
751 | +T0C04 3316:699 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39900ms total) | ||
752 | +T0C04 3316:700 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39900ms total) | ||
753 | +T0C04 3316:700 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39901ms total) | ||
754 | +T0990 3316:701 JLINK_IsHalted() returns FALSE (0000ms, 39901ms total) | ||
755 | +T0990 3316:802 JLINK_IsHalted() returns FALSE (0000ms, 39901ms total) | ||
756 | +T0990 3316:903 JLINK_IsHalted() returns FALSE (0000ms, 39901ms total) | ||
757 | +T0990 3317:003 JLINK_IsHalted() returns FALSE (0000ms, 39901ms total) | ||
758 | +T0990 3317:104 JLINK_IsHalted() returns FALSE (0000ms, 39901ms total) | ||
759 | +T0990 3317:205 JLINK_IsHalted() returns FALSE (0000ms, 39901ms total) | ||
760 | +T0990 3317:306 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39901ms total) | ||
761 | +T0C04 3317:306 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39901ms total) | ||
762 | +T0C04 3317:307 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0000ms, 39901ms total) | ||
763 | +T0C04 3317:307 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 01 returns 0x01 (0001ms, 39902ms total) | ||
764 | +T0990 3317:308 JLINK_IsHalted() returns FALSE (0001ms, 39903ms total) | ||
765 | +T0990 3317:409 JLINK_IsHalted() returns FALSE (0000ms, 39902ms total) | ||
766 | +T0990 3317:510 JLINK_IsHalted() returns FALSE (0000ms, 39902ms total) | ||
767 | +T0990 3317:612 JLINK_IsHalted() returns FALSE (0000ms, 39902ms total) | ||
768 | +T0990 3317:712 JLINK_IsHalted() returns FALSE (0000ms, 39902ms total) | ||
769 | +T0990 3317:814 JLINK_IsHalted() returns FALSE (0000ms, 39902ms total) | ||
770 | +T0990 3317:914 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39902ms total) | ||
771 | +T0C04 3317:914 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39902ms total) | ||
772 | +T0C04 3317:914 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39903ms total) | ||
773 | +T0C04 3317:915 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39904ms total) | ||
774 | +T0990 3317:916 JLINK_IsHalted() returns FALSE (0000ms, 39904ms total) | ||
775 | +T0990 3318:017 JLINK_IsHalted() returns FALSE (0000ms, 39904ms total) | ||
776 | +T0990 3318:118 JLINK_IsHalted() returns FALSE (0000ms, 39904ms total) | ||
777 | +T0990 3318:219 JLINK_IsHalted() returns FALSE (0000ms, 39904ms total) | ||
778 | +T0990 3318:320 JLINK_IsHalted() returns FALSE (0000ms, 39904ms total) | ||
779 | +T0990 3318:421 JLINK_IsHalted() returns FALSE (0000ms, 39904ms total) | ||
780 | +T0990 3318:523 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39904ms total) | ||
781 | +T0C04 3318:523 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39904ms total) | ||
782 | +T0C04 3318:524 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39905ms total) | ||
783 | +T0C04 3318:525 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39905ms total) | ||
784 | +T0990 3318:526 JLINK_IsHalted() returns FALSE (0000ms, 39905ms total) | ||
785 | +T0990 3318:627 JLINK_IsHalted() returns FALSE (0000ms, 39905ms total) | ||
786 | +T0990 3318:728 JLINK_IsHalted() returns FALSE (0000ms, 39905ms total) | ||
787 | +T0990 3318:829 JLINK_IsHalted() returns FALSE (0000ms, 39905ms total) | ||
788 | +T0990 3318:930 JLINK_IsHalted() returns FALSE (0000ms, 39905ms total) | ||
789 | +T0990 3319:031 JLINK_IsHalted() returns FALSE (0000ms, 39905ms total) | ||
790 | +T0990 3319:132 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39905ms total) | ||
791 | +T0C04 3319:132 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39905ms total) | ||
792 | +T0C04 3319:132 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39906ms total) | ||
793 | +T0C04 3319:133 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39907ms total) | ||
794 | +T0990 3319:134 JLINK_IsHalted() returns FALSE (0000ms, 39907ms total) | ||
795 | +T0990 3319:236 JLINK_IsHalted() returns FALSE (0000ms, 39907ms total) | ||
796 | +T0990 3319:337 JLINK_IsHalted() returns FALSE (0000ms, 39907ms total) | ||
797 | +T0990 3319:438 JLINK_IsHalted() returns FALSE (0000ms, 39907ms total) | ||
798 | +T0990 3319:539 JLINK_IsHalted() returns FALSE (0000ms, 39907ms total) | ||
799 | +T0990 3319:641 JLINK_IsHalted() returns FALSE (0000ms, 39907ms total) | ||
800 | +T0990 3319:741 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39907ms total) | ||
801 | +T0C04 3319:741 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39907ms total) | ||
802 | +T0C04 3319:741 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39908ms total) | ||
803 | +T0C04 3319:742 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39909ms total) | ||
804 | +T0990 3319:743 JLINK_IsHalted() returns FALSE (0001ms, 39910ms total) | ||
805 | +T0990 3319:845 JLINK_IsHalted() returns FALSE (0000ms, 39909ms total) | ||
806 | +T0990 3319:947 JLINK_IsHalted() returns FALSE (0000ms, 39909ms total) | ||
807 | +T0990 3320:048 JLINK_IsHalted() returns FALSE (0000ms, 39909ms total) | ||
808 | +T0990 3320:148 JLINK_IsHalted() returns FALSE (0001ms, 39910ms total) | ||
809 | +T0990 3320:249 JLINK_IsHalted() returns FALSE (0000ms, 39909ms total) | ||
810 | +T0990 3320:350 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39909ms total) | ||
811 | +T0C04 3320:350 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39910ms total) | ||
812 | +T0C04 3320:351 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 06 returns 0x01 (0000ms, 39910ms total) | ||
813 | +T0C04 3320:352 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39910ms total) | ||
814 | +T0990 3320:352 JLINK_IsHalted() returns FALSE (0000ms, 39910ms total) | ||
815 | +T0990 3320:453 JLINK_IsHalted() returns FALSE (0000ms, 39910ms total) | ||
816 | +T0990 3320:554 JLINK_IsHalted() returns FALSE (0000ms, 39910ms total) | ||
817 | +T0990 3320:656 JLINK_IsHalted() returns FALSE (0000ms, 39910ms total) | ||
818 | +T0990 3320:756 JLINK_IsHalted() returns FALSE (0000ms, 39910ms total) | ||
819 | +T0990 3320:858 JLINK_IsHalted() returns FALSE (0000ms, 39910ms total) | ||
820 | +T0990 3320:959 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39910ms total) | ||
821 | +T0C04 3320:959 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39910ms total) | ||
822 | +T0C04 3320:960 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39910ms total) | ||
823 | +T0C04 3320:960 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39911ms total) | ||
824 | +T0990 3320:961 JLINK_IsHalted() returns FALSE (0001ms, 39912ms total) | ||
825 | +T0990 3321:062 JLINK_IsHalted() returns FALSE (0000ms, 39911ms total) | ||
826 | +T0990 3321:164 JLINK_IsHalted() returns FALSE (0000ms, 39911ms total) | ||
827 | +T0990 3321:265 JLINK_IsHalted() returns FALSE (0000ms, 39911ms total) | ||
828 | +T0990 3321:366 JLINK_IsHalted() returns FALSE (0000ms, 39911ms total) | ||
829 | +T0990 3321:467 JLINK_IsHalted() returns FALSE (0000ms, 39911ms total) | ||
830 | +T0990 3321:567 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39911ms total) | ||
831 | +T0C04 3321:568 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39911ms total) | ||
832 | +T0C04 3321:569 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39911ms total) | ||
833 | +T0C04 3321:569 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39912ms total) | ||
834 | +T0990 3321:570 JLINK_IsHalted() returns FALSE (0000ms, 39912ms total) | ||
835 | +T0990 3321:671 JLINK_IsHalted() returns FALSE (0000ms, 39912ms total) | ||
836 | +T0990 3321:772 JLINK_IsHalted() returns FALSE (0000ms, 39912ms total) | ||
837 | +T0990 3321:873 JLINK_IsHalted() returns FALSE (0000ms, 39912ms total) | ||
838 | +T0990 3321:974 JLINK_IsHalted() returns FALSE (0000ms, 39912ms total) | ||
839 | +T0990 3322:074 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39912ms total) | ||
840 | +T0C04 3322:075 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39912ms total) | ||
841 | +T0C04 3322:075 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39913ms total) | ||
842 | +T0C04 3322:076 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39913ms total) | ||
843 | +T0990 3322:076 JLINK_IsHalted() returns FALSE (0001ms, 39914ms total) | ||
844 | +T0990 3322:177 JLINK_IsHalted() returns FALSE (0000ms, 39913ms total) | ||
845 | +T0990 3322:278 JLINK_IsHalted() returns FALSE (0000ms, 39913ms total) | ||
846 | +T0990 3322:379 JLINK_IsHalted() returns FALSE (0000ms, 39913ms total) | ||
847 | +T0990 3322:480 JLINK_IsHalted() returns FALSE (0000ms, 39913ms total) | ||
848 | +T0990 3322:581 JLINK_IsHalted() returns FALSE (0000ms, 39913ms total) | ||
849 | +T0990 3322:682 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39913ms total) | ||
850 | +T0C04 3322:682 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39913ms total) | ||
851 | +T0C04 3322:682 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39914ms total) | ||
852 | +T0C04 3322:683 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39914ms total) | ||
853 | +T0990 3322:683 JLINK_IsHalted() returns FALSE (0001ms, 39915ms total) | ||
854 | +T0990 3322:785 JLINK_IsHalted() returns FALSE (0000ms, 39914ms total) | ||
855 | +T0990 3322:885 JLINK_IsHalted() returns FALSE (0000ms, 39914ms total) | ||
856 | +T0990 3322:986 JLINK_IsHalted() returns FALSE (0000ms, 39914ms total) | ||
857 | +T0990 3323:088 JLINK_IsHalted() returns FALSE (0000ms, 39914ms total) | ||
858 | +T0990 3323:188 JLINK_IsHalted() returns FALSE (0001ms, 39915ms total) | ||
859 | +T0990 3323:290 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39914ms total) | ||
860 | +T0C04 3323:290 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39914ms total) | ||
861 | +T0C04 3323:290 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39915ms total) | ||
862 | +T0C04 3323:291 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39916ms total) | ||
863 | +T0990 3323:292 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total) | ||
864 | +T0990 3323:393 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total) | ||
865 | +T0990 3323:493 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total) | ||
866 | +T0990 3323:595 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total) | ||
867 | +T0990 3323:695 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total) | ||
868 | +T0990 3323:796 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total) | ||
869 | +T0990 3323:898 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39916ms total) | ||
870 | +T0C04 3323:898 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39916ms total) | ||
871 | +T0C04 3323:899 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0000ms, 39916ms total) | ||
872 | +T0C04 3323:899 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 26 returns 0x01 (0000ms, 39916ms total) | ||
873 | +T0990 3323:900 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total) | ||
874 | +T0990 3324:001 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total) | ||
875 | +T0990 3324:102 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total) | ||
876 | +T0990 3324:202 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total) | ||
877 | +T0990 3324:303 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total) | ||
878 | +T0990 3324:404 JLINK_IsHalted() returns FALSE (0000ms, 39916ms total) | ||
879 | +T0990 3324:505 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39916ms total) | ||
880 | +T0C04 3324:505 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39916ms total) | ||
881 | +T0C04 3324:505 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0001ms, 39917ms total) | ||
882 | +T0C04 3324:506 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 17 returns 0x01 (0000ms, 39917ms total) | ||
883 | +T0990 3324:507 JLINK_IsHalted() returns FALSE (0000ms, 39917ms total) | ||
884 | +T0990 3324:608 JLINK_IsHalted() returns FALSE (0000ms, 39917ms total) | ||
885 | +T0990 3324:709 JLINK_IsHalted() returns FALSE (0000ms, 39917ms total) | ||
886 | +T0990 3324:811 JLINK_IsHalted() returns FALSE (0000ms, 39917ms total) | ||
887 | +T0990 3324:912 JLINK_IsHalted() returns FALSE (0000ms, 39917ms total) | ||
888 | +T0990 3325:013 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39917ms total) | ||
889 | +T0C04 3325:013 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39917ms total) | ||
890 | +T0C04 3325:014 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0000ms, 39917ms total) | ||
891 | +T0C04 3325:014 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 61 returns 0x01 (0001ms, 39918ms total) | ||
892 | +T0990 3325:015 JLINK_IsHalted() returns FALSE (0001ms, 39919ms total) | ||
893 | +T0990 3325:116 JLINK_IsHalted() returns FALSE (0000ms, 39918ms total) | ||
894 | +T0990 3325:218 JLINK_IsHalted() returns FALSE (0000ms, 39918ms total) | ||
895 | +T0990 3325:318 JLINK_IsHalted() returns FALSE (0000ms, 39918ms total) | ||
896 | +T0990 3325:419 JLINK_IsHalted() returns FALSE (0000ms, 39918ms total) | ||
897 | +T0990 3325:520 JLINK_IsHalted() returns FALSE (0000ms, 39918ms total) | ||
898 | +T0990 3325:621 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39918ms total) | ||
899 | +T0C04 3325:621 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39918ms total) | ||
900 | +T0C04 3325:622 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0000ms, 39918ms total) | ||
901 | +T0C04 3325:622 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 53 returns 0x01 (0001ms, 39919ms total) | ||
902 | +T0990 3325:623 JLINK_IsHalted() returns FALSE (0000ms, 39919ms total) | ||
903 | +T0990 3325:724 JLINK_IsHalted() returns FALSE (0000ms, 39919ms total) | ||
904 | +T0990 3325:825 JLINK_IsHalted() returns FALSE (0000ms, 39919ms total) | ||
905 | +T0990 3325:926 JLINK_IsHalted() returns FALSE (0000ms, 39919ms total) | ||
906 | +T0990 3326:027 JLINK_IsHalted() returns FALSE (0000ms, 39919ms total) | ||
907 | +T0990 3326:128 JLINK_IsHalted() returns FALSE (0000ms, 39919ms total) | ||
908 | +T0990 3326:229 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39919ms total) | ||
909 | +T0C04 3326:229 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39919ms total) | ||
910 | +T0C04 3326:229 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0001ms, 39920ms total) | ||
911 | +T0C04 3326:230 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 44 returns 0x01 (0000ms, 39920ms total) | ||
912 | +T0990 3326:231 JLINK_IsHalted() returns FALSE (0000ms, 39920ms total) | ||
913 | +T0990 3326:332 JLINK_IsHalted() returns FALSE (0000ms, 39920ms total) | ||
914 | +T0990 3326:433 JLINK_IsHalted() returns FALSE (0000ms, 39920ms total) | ||
915 | +T0990 3326:534 JLINK_IsHalted() returns FALSE (0000ms, 39920ms total) | ||
916 | +T0990 3326:635 JLINK_IsHalted() returns FALSE (0000ms, 39920ms total) | ||
917 | +T0990 3326:736 JLINK_IsHalted() returns FALSE (0000ms, 39920ms total) | ||
918 | +T0990 3326:838 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39920ms total) | ||
919 | +T0C04 3326:838 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39920ms total) | ||
920 | +T0C04 3326:838 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0001ms, 39921ms total) | ||
921 | +T0C04 3326:839 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 35 returns 0x01 (0000ms, 39921ms total) | ||
922 | +T0990 3326:840 JLINK_IsHalted() returns FALSE (0000ms, 39921ms total) | ||
923 | +T0990 3326:940 JLINK_IsHalted() returns FALSE (0000ms, 39921ms total) | ||
924 | +T0990 3327:041 JLINK_IsHalted() returns FALSE (0000ms, 39921ms total) | ||
925 | +T0990 3327:142 JLINK_IsHalted() returns FALSE (0000ms, 39921ms total) | ||
926 | +T0990 3327:244 JLINK_IsHalted() returns FALSE (0000ms, 39921ms total) | ||
927 | +T0990 3327:345 JLINK_IsHalted() returns FALSE (0000ms, 39921ms total) | ||
928 | +T0990 3327:445 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39921ms total) | ||
929 | +T0C04 3327:445 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39922ms total) | ||
930 | +T0C04 3327:446 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0001ms, 39923ms total) | ||
931 | +T0C04 3327:447 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39923ms total) | ||
932 | +T0990 3327:448 JLINK_IsHalted() returns FALSE (0000ms, 39923ms total) | ||
933 | +T0990 3327:549 JLINK_IsHalted() returns FALSE (0000ms, 39923ms total) | ||
934 | +T0990 3327:650 JLINK_IsHalted() returns FALSE (0000ms, 39923ms total) | ||
935 | +T0990 3327:751 JLINK_IsHalted() returns FALSE (0000ms, 39923ms total) | ||
936 | +T0990 3327:852 JLINK_IsHalted() returns FALSE (0000ms, 39923ms total) | ||
937 | +T0990 3327:953 JLINK_IsHalted() returns FALSE (0000ms, 39923ms total) | ||
938 | +T0990 3328:054 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39923ms total) | ||
939 | +T0C04 3328:054 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39923ms total) | ||
940 | +T0C04 3328:054 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39924ms total) | ||
941 | +T0C04 3328:055 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39925ms total) | ||
942 | +T0990 3328:056 JLINK_IsHalted() returns FALSE (0000ms, 39925ms total) | ||
943 | +T0990 3328:157 JLINK_IsHalted() returns FALSE (0000ms, 39925ms total) | ||
944 | +T0990 3328:258 JLINK_IsHalted() returns FALSE (0000ms, 39925ms total) | ||
945 | +T0990 3328:359 JLINK_IsHalted() returns FALSE (0001ms, 39926ms total) | ||
946 | +T0990 3328:460 JLINK_IsHalted() returns FALSE (0000ms, 39925ms total) | ||
947 | +T0990 3328:561 JLINK_IsHalted() returns FALSE (0000ms, 39925ms total) | ||
948 | +T0990 3328:662 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39925ms total) | ||
949 | +T0C04 3328:662 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39925ms total) | ||
950 | +T0C04 3328:663 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39925ms total) | ||
951 | +T0C04 3328:663 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39926ms total) | ||
952 | +T0990 3328:664 JLINK_IsHalted() returns FALSE (0000ms, 39926ms total) | ||
953 | +T0990 3328:765 JLINK_IsHalted() returns FALSE (0000ms, 39926ms total) | ||
954 | +T0990 3328:866 JLINK_IsHalted() returns FALSE (0000ms, 39926ms total) | ||
955 | +T0990 3328:967 JLINK_IsHalted() returns FALSE (0000ms, 39926ms total) | ||
956 | +T0990 3329:067 JLINK_IsHalted() returns FALSE (0001ms, 39927ms total) | ||
957 | +T0990 3329:169 JLINK_IsHalted() returns FALSE (0000ms, 39926ms total) | ||
958 | +T0990 3329:270 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39926ms total) | ||
959 | +T0C04 3329:270 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39926ms total) | ||
960 | +T0C04 3329:271 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0000ms, 39926ms total) | ||
961 | +T0C04 3329:271 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 1B returns 0x01 (0001ms, 39927ms total) | ||
962 | +T0990 3329:272 JLINK_IsHalted() returns FALSE (0000ms, 39927ms total) | ||
963 | +T0990 3329:373 JLINK_IsHalted() returns FALSE (0000ms, 39927ms total) | ||
964 | +T0990 3329:474 JLINK_IsHalted() returns FALSE (0000ms, 39927ms total) | ||
965 | +T0990 3329:576 JLINK_IsHalted() returns FALSE (0000ms, 39927ms total) | ||
966 | +T0990 3329:676 JLINK_IsHalted() returns FALSE (0000ms, 39927ms total) | ||
967 | +T0990 3329:778 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39927ms total) | ||
968 | +T0C04 3329:778 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39927ms total) | ||
969 | +T0C04 3329:778 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0001ms, 39928ms total) | ||
970 | +T0C04 3329:779 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 65 returns 0x01 (0000ms, 39928ms total) | ||
971 | +T0990 3329:780 JLINK_IsHalted() returns FALSE (0000ms, 39928ms total) | ||
972 | +T0990 3329:881 JLINK_IsHalted() returns FALSE (0000ms, 39928ms total) | ||
973 | +T0990 3329:982 JLINK_IsHalted() returns FALSE (0000ms, 39928ms total) | ||
974 | +T0990 3330:083 JLINK_IsHalted() returns FALSE (0000ms, 39928ms total) | ||
975 | +T0990 3330:184 JLINK_IsHalted() returns FALSE (0000ms, 39928ms total) | ||
976 | +T0990 3330:285 JLINK_IsHalted() returns FALSE (0000ms, 39928ms total) | ||
977 | +T0990 3330:386 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39928ms total) | ||
978 | +T0C04 3330:386 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39928ms total) | ||
979 | +T0C04 3330:386 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0001ms, 39929ms total) | ||
980 | +T0C04 3330:387 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 56 returns 0x01 (0000ms, 39929ms total) | ||
981 | +T0990 3330:388 JLINK_IsHalted() returns FALSE (0000ms, 39929ms total) | ||
982 | +T0990 3330:489 JLINK_IsHalted() returns FALSE (0000ms, 39929ms total) | ||
983 | +T0990 3330:590 JLINK_IsHalted() returns FALSE (0000ms, 39929ms total) | ||
984 | +T0990 3330:692 JLINK_IsHalted() returns FALSE (0000ms, 39929ms total) | ||
985 | +T0990 3330:793 JLINK_IsHalted() returns FALSE (0000ms, 39929ms total) | ||
986 | +T0990 3330:894 JLINK_IsHalted() returns FALSE (0000ms, 39929ms total) | ||
987 | +T0990 3330:994 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39929ms total) | ||
988 | +T0C04 3330:994 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39929ms total) | ||
989 | +T0C04 3330:994 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0002ms, 39931ms total) | ||
990 | +T0C04 3330:996 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 48 returns 0x01 (0000ms, 39931ms total) | ||
991 | +T0990 3330:997 JLINK_IsHalted() returns FALSE (0000ms, 39931ms total) | ||
992 | +T0990 3331:099 JLINK_IsHalted() returns FALSE (0000ms, 39931ms total) | ||
993 | +T0990 3331:199 JLINK_IsHalted() returns FALSE (0000ms, 39931ms total) | ||
994 | +T0990 3331:300 JLINK_IsHalted() returns FALSE (0000ms, 39931ms total) | ||
995 | +T0990 3331:401 JLINK_IsHalted() returns FALSE (0000ms, 39931ms total) | ||
996 | +T0990 3331:502 JLINK_IsHalted() returns FALSE (0000ms, 39931ms total) | ||
997 | +T0990 3331:602 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39931ms total) | ||
998 | +T0C04 3331:602 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39931ms total) | ||
999 | +T0C04 3331:602 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 00 returns 0x01 (0001ms, 39932ms total) | ||
1000 | +T0C04 3331:603 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 39 returns 0x01 (0000ms, 39932ms total) | ||
1001 | +T0990 3331:604 JLINK_IsHalted() returns FALSE (0000ms, 39932ms total) | ||
1002 | +T0990 3331:706 JLINK_IsHalted() returns FALSE (0000ms, 39932ms total) | ||
1003 | +T0990 3331:807 JLINK_IsHalted() returns FALSE (0000ms, 39932ms total) | ||
1004 | +T0990 3331:908 JLINK_IsHalted() returns FALSE (0001ms, 39933ms total) | ||
1005 | +T0990 3332:009 JLINK_IsHalted() returns FALSE (0000ms, 39932ms total) | ||
1006 | +T0990 3332:110 JLINK_IsHalted() returns FALSE (0000ms, 39932ms total) | ||
1007 | +T0990 3332:211 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39932ms total) | ||
1008 | +T0C04 3332:211 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39932ms total) | ||
1009 | +T0C04 3332:212 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39932ms total) | ||
1010 | +T0C04 3332:212 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39933ms total) | ||
1011 | +T0990 3332:213 JLINK_IsHalted() returns FALSE (0001ms, 39934ms total) | ||
1012 | +T0990 3332:314 JLINK_IsHalted() returns FALSE (0000ms, 39933ms total) | ||
1013 | +T0990 3332:415 JLINK_IsHalted() returns FALSE (0000ms, 39933ms total) | ||
1014 | +T0990 3332:516 JLINK_IsHalted() returns FALSE (0000ms, 39933ms total) | ||
1015 | +T0990 3332:618 JLINK_IsHalted() returns FALSE (0000ms, 39933ms total) | ||
1016 | +T0990 3332:718 JLINK_IsHalted() returns FALSE (0000ms, 39933ms total) | ||
1017 | +T0990 3332:820 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39933ms total) | ||
1018 | +T0C04 3332:820 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39933ms total) | ||
1019 | +T0C04 3332:820 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 06 returns 0x01 (0001ms, 39934ms total) | ||
1020 | +T0C04 3332:821 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39934ms total) | ||
1021 | +T0990 3332:822 JLINK_IsHalted() returns FALSE (0000ms, 39934ms total) | ||
1022 | +T0990 3332:923 JLINK_IsHalted() returns FALSE (0000ms, 39934ms total) | ||
1023 | +T0990 3333:024 JLINK_IsHalted() returns FALSE (0000ms, 39934ms total) | ||
1024 | +T0990 3333:125 JLINK_IsHalted() returns FALSE (0000ms, 39934ms total) | ||
1025 | +T0990 3333:226 JLINK_IsHalted() returns FALSE (0000ms, 39934ms total) | ||
1026 | +T0990 3333:327 JLINK_IsHalted() returns FALSE (0000ms, 39934ms total) | ||
1027 | +T0990 3333:428 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39934ms total) | ||
1028 | +T0C04 3333:428 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39934ms total) | ||
1029 | +T0C04 3333:428 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39935ms total) | ||
1030 | +T0C04 3333:429 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39936ms total) | ||
1031 | +T0990 3333:430 JLINK_IsHalted() returns FALSE (0000ms, 39936ms total) | ||
1032 | +T0990 3333:531 JLINK_IsHalted() returns FALSE (0000ms, 39936ms total) | ||
1033 | +T0990 3333:631 JLINK_IsHalted() returns FALSE (0001ms, 39937ms total) | ||
1034 | +T0990 3333:733 JLINK_IsHalted() returns FALSE (0000ms, 39936ms total) | ||
1035 | +T0990 3333:834 JLINK_IsHalted() returns FALSE (0000ms, 39936ms total) | ||
1036 | +T0990 3333:934 JLINK_IsHalted() returns FALSE (0000ms, 39936ms total) | ||
1037 | +T0990 3334:035 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39936ms total) | ||
1038 | +T0C04 3334:035 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39936ms total) | ||
1039 | +T0C04 3334:036 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39936ms total) | ||
1040 | +T0C04 3334:036 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39937ms total) | ||
1041 | +T0990 3334:037 JLINK_IsHalted() returns FALSE (0001ms, 39938ms total) | ||
1042 | +T0990 3334:139 JLINK_IsHalted() returns FALSE (0000ms, 39937ms total) | ||
1043 | +T0990 3334:240 JLINK_IsHalted() returns FALSE (0001ms, 39938ms total) | ||
1044 | +T0990 3334:341 JLINK_IsHalted() returns FALSE (0000ms, 39937ms total) | ||
1045 | +T0990 3334:442 JLINK_IsHalted() returns FALSE (0000ms, 39937ms total) | ||
1046 | +T0990 3334:542 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39937ms total) | ||
1047 | +T0C04 3334:542 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39937ms total) | ||
1048 | +T0C04 3334:543 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 06 returns 0x01 (0000ms, 39937ms total) | ||
1049 | +T0C04 3334:544 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39937ms total) | ||
1050 | +T0990 3334:544 JLINK_IsHalted() returns FALSE (0001ms, 39938ms total) | ||
1051 | +T0990 3334:646 JLINK_IsHalted() returns FALSE (0000ms, 39937ms total) | ||
1052 | +T0990 3334:747 JLINK_IsHalted() returns FALSE (0000ms, 39937ms total) | ||
1053 | +T0990 3334:849 JLINK_IsHalted() returns FALSE (0000ms, 39937ms total) | ||
1054 | +T0990 3334:949 JLINK_IsHalted() returns FALSE (0000ms, 39937ms total) | ||
1055 | +T0990 3335:051 JLINK_IsHalted() returns FALSE (0000ms, 39937ms total) | ||
1056 | +T0990 3335:152 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39937ms total) | ||
1057 | +T0C04 3335:152 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39937ms total) | ||
1058 | +T0C04 3335:153 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39938ms total) | ||
1059 | +T0C04 3335:154 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39939ms total) | ||
1060 | +T0990 3335:155 JLINK_IsHalted() returns FALSE (0000ms, 39939ms total) | ||
1061 | +T0990 3335:257 JLINK_IsHalted() returns FALSE (0000ms, 39939ms total) | ||
1062 | +T0990 3335:358 JLINK_IsHalted() returns FALSE (0000ms, 39939ms total) | ||
1063 | +T0990 3335:459 JLINK_IsHalted() returns FALSE (0000ms, 39939ms total) | ||
1064 | +T0990 3335:560 JLINK_IsHalted() returns FALSE (0000ms, 39939ms total) | ||
1065 | +T0990 3335:660 JLINK_IsHalted() returns FALSE (0000ms, 39939ms total) | ||
1066 | +T0990 3335:761 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39939ms total) | ||
1067 | +T0C04 3335:761 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39939ms total) | ||
1068 | +T0C04 3335:762 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39940ms total) | ||
1069 | +T0C04 3335:764 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39940ms total) | ||
1070 | +T0990 3335:764 JLINK_IsHalted() returns FALSE (0001ms, 39941ms total) | ||
1071 | +T0990 3335:866 JLINK_IsHalted() returns FALSE (0000ms, 39940ms total) | ||
1072 | +T0990 3335:966 JLINK_IsHalted() returns FALSE (0000ms, 39940ms total) | ||
1073 | +T0990 3336:067 JLINK_IsHalted() returns FALSE (0000ms, 39940ms total) | ||
1074 | +T0990 3336:168 JLINK_IsHalted() returns FALSE (0000ms, 39940ms total) | ||
1075 | +T0990 3336:270 JLINK_IsHalted() returns FALSE (0000ms, 39940ms total) | ||
1076 | +T0990 3336:371 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39940ms total) | ||
1077 | +T0C04 3336:372 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39940ms total) | ||
1078 | +T0C04 3336:373 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39940ms total) | ||
1079 | +T0C04 3336:373 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39940ms total) | ||
1080 | +T0990 3336:373 JLINK_IsHalted() returns FALSE (0001ms, 39941ms total) | ||
1081 | +T0990 3336:474 JLINK_IsHalted() returns FALSE (0000ms, 39940ms total) | ||
1082 | +T0990 3336:575 JLINK_IsHalted() returns FALSE (0000ms, 39940ms total) | ||
1083 | +T0990 3336:676 JLINK_IsHalted() returns FALSE (0000ms, 39940ms total) | ||
1084 | +T0990 3336:776 JLINK_IsHalted() returns FALSE (0001ms, 39941ms total) | ||
1085 | +T0990 3336:877 JLINK_IsHalted() returns FALSE (0000ms, 39940ms total) | ||
1086 | +T0990 3336:979 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39940ms total) | ||
1087 | +T0C04 3336:979 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39940ms total) | ||
1088 | +T0C04 3336:980 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 05 returns 0x01 (0000ms, 39940ms total) | ||
1089 | +T0C04 3336:980 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39941ms total) | ||
1090 | +T0990 3336:981 JLINK_IsHalted() returns FALSE (0000ms, 39941ms total) | ||
1091 | +T0990 3337:083 JLINK_IsHalted() returns FALSE (0000ms, 39941ms total) | ||
1092 | +T0990 3337:183 JLINK_IsHalted() returns FALSE (0000ms, 39941ms total) | ||
1093 | +T0990 3337:284 JLINK_IsHalted() returns FALSE (0000ms, 39941ms total) | ||
1094 | +T0990 3337:385 JLINK_IsHalted() returns FALSE (0000ms, 39941ms total) | ||
1095 | +T0990 3337:486 JLINK_IsHalted() returns FALSE (0000ms, 39941ms total) | ||
1096 | +T0990 3337:588 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39941ms total) | ||
1097 | +T0C04 3337:588 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39941ms total) | ||
1098 | +T0C04 3337:589 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39941ms total) | ||
1099 | +T0C04 3337:589 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39942ms total) | ||
1100 | +T0990 3337:590 JLINK_IsHalted() returns FALSE (0000ms, 39942ms total) | ||
1101 | +T0990 3337:691 JLINK_IsHalted() returns FALSE (0000ms, 39942ms total) | ||
1102 | +T0990 3337:792 JLINK_IsHalted() returns FALSE (0000ms, 39942ms total) | ||
1103 | +T0990 3337:893 JLINK_IsHalted() returns FALSE (0000ms, 39942ms total) | ||
1104 | +T0990 3337:994 JLINK_IsHalted() returns FALSE (0000ms, 39942ms total) | ||
1105 | +T0990 3338:095 JLINK_IsHalted() returns FALSE (0000ms, 39942ms total) | ||
1106 | +T0990 3338:196 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39942ms total) | ||
1107 | +T0C04 3338:196 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39942ms total) | ||
1108 | +T0C04 3338:197 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39942ms total) | ||
1109 | +T0C04 3338:197 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39943ms total) | ||
1110 | +T0990 3338:198 JLINK_IsHalted() returns FALSE (0000ms, 39943ms total) | ||
1111 | +T0990 3338:299 JLINK_IsHalted() returns FALSE (0000ms, 39943ms total) | ||
1112 | +T0990 3338:401 JLINK_IsHalted() returns FALSE (0000ms, 39943ms total) | ||
1113 | +T0990 3338:502 JLINK_IsHalted() returns FALSE (0000ms, 39943ms total) | ||
1114 | +T0990 3338:603 JLINK_IsHalted() returns FALSE (0000ms, 39943ms total) | ||
1115 | +T0990 3338:704 JLINK_IsHalted() returns FALSE (0000ms, 39943ms total) | ||
1116 | +T0990 3338:804 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39943ms total) | ||
1117 | +T0C04 3338:805 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39943ms total) | ||
1118 | +T0C04 3338:805 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39944ms total) | ||
1119 | +T0C04 3338:806 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39944ms total) | ||
1120 | +T0990 3338:806 JLINK_IsHalted() returns FALSE (0001ms, 39945ms total) | ||
1121 | +T0990 3338:907 JLINK_IsHalted() returns FALSE (0000ms, 39944ms total) | ||
1122 | +T0990 3339:009 JLINK_IsHalted() returns FALSE (0000ms, 39944ms total) | ||
1123 | +T0990 3339:110 JLINK_IsHalted() returns FALSE (0000ms, 39944ms total) | ||
1124 | +T0990 3339:211 JLINK_IsHalted() returns FALSE (0000ms, 39944ms total) | ||
1125 | +T0990 3339:312 JLINK_IsHalted() returns FALSE (0000ms, 39944ms total) | ||
1126 | +T0990 3339:414 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39944ms total) | ||
1127 | +T0C04 3339:414 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39944ms total) | ||
1128 | +T0C04 3339:415 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0000ms, 39944ms total) | ||
1129 | +T0C04 3339:415 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39945ms total) | ||
1130 | +T0990 3339:416 JLINK_IsHalted() returns FALSE (0000ms, 39945ms total) | ||
1131 | +T0990 3339:517 JLINK_IsHalted() returns FALSE (0000ms, 39945ms total) | ||
1132 | +T0990 3339:618 JLINK_IsHalted() returns FALSE (0000ms, 39945ms total) | ||
1133 | +T0990 3339:718 JLINK_IsHalted() returns FALSE (0000ms, 39945ms total) | ||
1134 | +T0990 3339:819 JLINK_IsHalted() returns FALSE (0000ms, 39945ms total) | ||
1135 | +T0990 3339:921 JLINK_IsHalted() returns FALSE (0000ms, 39945ms total) | ||
1136 | +T0990 3340:021 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39945ms total) | ||
1137 | +T0C04 3340:021 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39945ms total) | ||
1138 | +T0C04 3340:022 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39945ms total) | ||
1139 | +T0C04 3340:022 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39946ms total) | ||
1140 | +T0990 3340:023 JLINK_IsHalted() returns FALSE (0000ms, 39946ms total) | ||
1141 | +T0990 3340:125 JLINK_IsHalted() returns FALSE (0000ms, 39946ms total) | ||
1142 | +T0990 3340:226 JLINK_IsHalted() returns FALSE (0000ms, 39946ms total) | ||
1143 | +T0990 3340:327 JLINK_IsHalted() returns FALSE (0000ms, 39946ms total) | ||
1144 | +T0990 3340:428 JLINK_IsHalted() returns FALSE (0000ms, 39946ms total) | ||
1145 | +T0990 3340:529 JLINK_IsHalted() returns FALSE (0000ms, 39946ms total) | ||
1146 | +T0990 3340:629 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39946ms total) | ||
1147 | +T0C04 3340:629 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39947ms total) | ||
1148 | +T0C04 3340:630 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39948ms total) | ||
1149 | +T0C04 3340:631 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39948ms total) | ||
1150 | +T0990 3340:632 JLINK_IsHalted() returns FALSE (0000ms, 39948ms total) | ||
1151 | +T0990 3340:732 JLINK_IsHalted() returns FALSE (0000ms, 39948ms total) | ||
1152 | +T0990 3340:833 JLINK_IsHalted() returns FALSE (0000ms, 39948ms total) | ||
1153 | +T0990 3340:934 JLINK_IsHalted() returns FALSE (0000ms, 39948ms total) | ||
1154 | +T0990 3341:035 JLINK_IsHalted() returns FALSE (0000ms, 39948ms total) | ||
1155 | +T0990 3341:136 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39948ms total) | ||
1156 | +T0C04 3341:136 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39948ms total) | ||
1157 | +T0C04 3341:137 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0000ms, 39948ms total) | ||
1158 | +T0C04 3341:137 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39949ms total) | ||
1159 | +T0990 3341:138 JLINK_IsHalted() returns FALSE (0000ms, 39949ms total) | ||
1160 | +T0990 3341:238 JLINK_IsHalted() returns FALSE (0000ms, 39949ms total) | ||
1161 | +T0990 3341:339 JLINK_IsHalted() returns FALSE (0000ms, 39949ms total) | ||
1162 | +T0990 3341:440 JLINK_IsHalted() returns FALSE (0000ms, 39949ms total) | ||
1163 | +T0990 3341:542 JLINK_IsHalted() returns FALSE (0000ms, 39949ms total) | ||
1164 | +T0990 3341:642 JLINK_IsHalted() returns FALSE (0000ms, 39949ms total) | ||
1165 | +T0990 3341:743 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39949ms total) | ||
1166 | +T0C04 3341:743 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39949ms total) | ||
1167 | +T0C04 3341:743 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0002ms, 39951ms total) | ||
1168 | +T0C04 3341:745 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39951ms total) | ||
1169 | +T0990 3341:745 JLINK_IsHalted() returns FALSE (0001ms, 39952ms total) | ||
1170 | +T0990 3341:846 JLINK_IsHalted() returns FALSE (0000ms, 39951ms total) | ||
1171 | +T0990 3341:947 JLINK_IsHalted() returns FALSE (0000ms, 39951ms total) | ||
1172 | +T0990 3342:048 JLINK_IsHalted() returns FALSE (0000ms, 39951ms total) | ||
1173 | +T0990 3342:149 JLINK_IsHalted() returns FALSE (0000ms, 39951ms total) | ||
1174 | +T0990 3342:250 JLINK_IsHalted() returns FALSE (0000ms, 39951ms total) | ||
1175 | +T0990 3342:350 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39951ms total) | ||
1176 | +T0C04 3342:350 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39952ms total) | ||
1177 | +T0C04 3342:351 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39953ms total) | ||
1178 | +T0C04 3342:352 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39953ms total) | ||
1179 | +T0990 3342:353 JLINK_IsHalted() returns FALSE (0000ms, 39953ms total) | ||
1180 | +T0990 3342:453 JLINK_IsHalted() returns FALSE (0000ms, 39953ms total) | ||
1181 | +T0990 3342:555 JLINK_IsHalted() returns FALSE (0000ms, 39953ms total) | ||
1182 | +T0990 3342:656 JLINK_IsHalted() returns FALSE (0000ms, 39953ms total) | ||
1183 | +T0990 3342:757 JLINK_IsHalted() returns FALSE (0000ms, 39953ms total) | ||
1184 | +T0990 3342:858 JLINK_IsHalted() returns FALSE (0000ms, 39953ms total) | ||
1185 | +T0990 3342:958 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39953ms total) | ||
1186 | +T0C04 3342:958 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39953ms total) | ||
1187 | +T0C04 3342:959 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 05 returns 0x01 (0001ms, 39954ms total) | ||
1188 | +T0C04 3342:960 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39954ms total) | ||
1189 | +T0990 3342:960 JLINK_IsHalted() returns FALSE (0001ms, 39955ms total) | ||
1190 | +T0990 3343:061 JLINK_IsHalted() returns FALSE (0000ms, 39954ms total) | ||
1191 | +T0990 3343:162 JLINK_IsHalted() returns FALSE (0000ms, 39954ms total) | ||
1192 | +T0990 3343:263 JLINK_IsHalted() returns FALSE (0000ms, 39954ms total) | ||
1193 | +T0990 3343:365 JLINK_IsHalted() returns FALSE (0000ms, 39954ms total) | ||
1194 | +T0990 3343:466 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39954ms total) | ||
1195 | +T0C04 3343:466 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39954ms total) | ||
1196 | +T0C04 3343:466 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39955ms total) | ||
1197 | +T0C04 3343:467 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39956ms total) | ||
1198 | +T0990 3343:468 JLINK_IsHalted() returns FALSE (0000ms, 39956ms total) | ||
1199 | +T0990 3343:569 JLINK_IsHalted() returns FALSE (0000ms, 39956ms total) | ||
1200 | +T0990 3343:670 JLINK_IsHalted() returns FALSE (0000ms, 39956ms total) | ||
1201 | +T0990 3343:772 JLINK_IsHalted() returns FALSE (0000ms, 39956ms total) | ||
1202 | +T0990 3343:872 JLINK_IsHalted() returns FALSE (0000ms, 39956ms total) | ||
1203 | +T0990 3343:974 JLINK_IsHalted() returns FALSE (0000ms, 39956ms total) | ||
1204 | +T0990 3344:074 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39956ms total) | ||
1205 | +T0C04 3344:074 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39957ms total) | ||
1206 | +T0C04 3344:075 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39958ms total) | ||
1207 | +T0C04 3344:076 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39959ms total) | ||
1208 | +T0990 3344:077 JLINK_IsHalted() returns FALSE (0000ms, 39959ms total) | ||
1209 | +T0990 3344:177 JLINK_IsHalted() returns FALSE (0000ms, 39959ms total) | ||
1210 | +T0990 3344:279 JLINK_IsHalted() returns FALSE (0000ms, 39959ms total) | ||
1211 | +T0990 3344:380 JLINK_IsHalted() returns FALSE (0000ms, 39959ms total) | ||
1212 | +T0990 3344:480 JLINK_IsHalted() returns FALSE (0001ms, 39960ms total) | ||
1213 | +T0990 3344:581 JLINK_IsHalted() returns FALSE (0000ms, 39959ms total) | ||
1214 | +T0990 3344:683 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39959ms total) | ||
1215 | +T0C04 3344:683 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39959ms total) | ||
1216 | +T0C04 3344:684 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 06 returns 0x01 (0000ms, 39959ms total) | ||
1217 | +T0C04 3344:684 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39960ms total) | ||
1218 | +T0990 3344:685 JLINK_IsHalted() returns FALSE (0000ms, 39960ms total) | ||
1219 | +T0990 3344:786 JLINK_IsHalted() returns FALSE (0000ms, 39960ms total) | ||
1220 | +T0990 3344:887 JLINK_IsHalted() returns FALSE (0000ms, 39960ms total) | ||
1221 | +T0990 3344:988 JLINK_IsHalted() returns FALSE (0000ms, 39960ms total) | ||
1222 | +T0990 3345:089 JLINK_IsHalted() returns FALSE (0000ms, 39960ms total) | ||
1223 | +T0990 3345:190 JLINK_IsHalted() returns FALSE (0000ms, 39960ms total) | ||
1224 | +T0990 3345:291 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39960ms total) | ||
1225 | +T0C04 3345:291 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39960ms total) | ||
1226 | +T0C04 3345:292 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39960ms total) | ||
1227 | +T0C04 3345:292 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39961ms total) | ||
1228 | +T0990 3345:293 JLINK_IsHalted() returns FALSE (0001ms, 39962ms total) | ||
1229 | +T0990 3345:394 JLINK_IsHalted() returns FALSE (0000ms, 39961ms total) | ||
1230 | +T0990 3345:495 JLINK_IsHalted() returns FALSE (0000ms, 39961ms total) | ||
1231 | +T0990 3345:596 JLINK_IsHalted() returns FALSE (0000ms, 39961ms total) | ||
1232 | +T0990 3345:696 JLINK_IsHalted() returns FALSE (0000ms, 39961ms total) | ||
1233 | +T0990 3345:797 JLINK_IsHalted() returns FALSE (0000ms, 39961ms total) | ||
1234 | +T0990 3345:898 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39961ms total) | ||
1235 | +T0C04 3345:898 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39961ms total) | ||
1236 | +T0C04 3345:898 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39962ms total) | ||
1237 | +T0C04 3345:899 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39962ms total) | ||
1238 | +T0990 3345:900 JLINK_IsHalted() returns FALSE (0000ms, 39962ms total) | ||
1239 | +T0990 3346:001 JLINK_IsHalted() returns FALSE (0000ms, 39962ms total) | ||
1240 | +T0990 3346:103 JLINK_IsHalted() returns FALSE (0000ms, 39962ms total) | ||
1241 | +T0990 3346:204 JLINK_IsHalted() returns FALSE (0000ms, 39962ms total) | ||
1242 | +T0990 3346:305 JLINK_IsHalted() returns FALSE (0000ms, 39962ms total) | ||
1243 | +T0990 3346:405 JLINK_IsHalted() returns FALSE (0000ms, 39962ms total) | ||
1244 | +T0990 3346:506 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39962ms total) | ||
1245 | +T0C04 3346:506 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39962ms total) | ||
1246 | +T0C04 3346:507 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39962ms total) | ||
1247 | +T0C04 3346:507 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39963ms total) | ||
1248 | +T0990 3346:508 JLINK_IsHalted() returns FALSE (0000ms, 39963ms total) | ||
1249 | +T0990 3346:609 JLINK_IsHalted() returns FALSE (0000ms, 39963ms total) | ||
1250 | +T0990 3346:711 JLINK_IsHalted() returns FALSE (0000ms, 39963ms total) | ||
1251 | +T0990 3346:812 JLINK_IsHalted() returns FALSE (0000ms, 39963ms total) | ||
1252 | +T0990 3346:912 JLINK_IsHalted() returns FALSE (0001ms, 39964ms total) | ||
1253 | +T0990 3347:014 JLINK_IsHalted() returns FALSE (0000ms, 39963ms total) | ||
1254 | +T0990 3347:114 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39963ms total) | ||
1255 | +T0C04 3347:114 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39964ms total) | ||
1256 | +T0C04 3347:116 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0000ms, 39964ms total) | ||
1257 | +T0C04 3347:116 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39965ms total) | ||
1258 | +T0990 3347:117 JLINK_IsHalted() returns FALSE (0000ms, 39965ms total) | ||
1259 | +T0990 3347:218 JLINK_IsHalted() returns FALSE (0000ms, 39965ms total) | ||
1260 | +T0990 3347:319 JLINK_IsHalted() returns FALSE (0000ms, 39965ms total) | ||
1261 | +T0990 3347:420 JLINK_IsHalted() returns FALSE (0000ms, 39965ms total) | ||
1262 | +T0990 3347:521 JLINK_IsHalted() returns FALSE (0000ms, 39965ms total) | ||
1263 | +T0990 3347:622 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39965ms total) | ||
1264 | +T0C04 3347:622 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39965ms total) | ||
1265 | +T0C04 3347:622 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39966ms total) | ||
1266 | +T0C04 3347:623 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39967ms total) | ||
1267 | +T0990 3347:624 JLINK_IsHalted() returns FALSE (0000ms, 39967ms total) | ||
1268 | +T0990 3347:725 JLINK_IsHalted() returns FALSE (0000ms, 39967ms total) | ||
1269 | +T0990 3347:826 JLINK_IsHalted() returns FALSE (0000ms, 39967ms total) | ||
1270 | +T0990 3347:927 JLINK_IsHalted() returns FALSE (0000ms, 39967ms total) | ||
1271 | +T0990 3348:028 JLINK_IsHalted() returns FALSE (0000ms, 39967ms total) | ||
1272 | +T0990 3348:129 JLINK_IsHalted() returns FALSE (0000ms, 39967ms total) | ||
1273 | +T0990 3348:230 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39967ms total) | ||
1274 | +T0C04 3348:230 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39967ms total) | ||
1275 | +T0C04 3348:231 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39967ms total) | ||
1276 | +T0C04 3348:231 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39968ms total) | ||
1277 | +T0990 3348:232 JLINK_IsHalted() returns FALSE (0001ms, 39969ms total) | ||
1278 | +T0990 3348:334 JLINK_IsHalted() returns FALSE (0000ms, 39968ms total) | ||
1279 | +T0990 3348:435 JLINK_IsHalted() returns FALSE (0000ms, 39968ms total) | ||
1280 | +T0990 3348:537 JLINK_IsHalted() returns FALSE (0000ms, 39968ms total) | ||
1281 | +T0990 3348:638 JLINK_IsHalted() returns FALSE (0000ms, 39968ms total) | ||
1282 | +T0990 3348:739 JLINK_IsHalted() returns FALSE (0000ms, 39968ms total) | ||
1283 | +T0990 3348:840 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39968ms total) | ||
1284 | +T0C04 3348:840 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39969ms total) | ||
1285 | +T0C04 3348:841 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 05 returns 0x01 (0001ms, 39970ms total) | ||
1286 | +T0C04 3348:842 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39970ms total) | ||
1287 | +T0990 3348:842 JLINK_IsHalted() returns FALSE (0001ms, 39971ms total) | ||
1288 | +T0990 3348:944 JLINK_IsHalted() returns FALSE (0000ms, 39970ms total) | ||
1289 | +T0990 3349:045 JLINK_IsHalted() returns FALSE (0000ms, 39970ms total) | ||
1290 | +T0990 3349:146 JLINK_IsHalted() returns FALSE (0000ms, 39970ms total) | ||
1291 | +T0990 3349:247 JLINK_IsHalted() returns FALSE (0001ms, 39971ms total) | ||
1292 | +T0990 3349:348 JLINK_IsHalted() returns FALSE (0001ms, 39971ms total) | ||
1293 | +T0990 3349:450 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39970ms total) | ||
1294 | +T0C04 3349:450 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39970ms total) | ||
1295 | +T0C04 3349:451 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39970ms total) | ||
1296 | +T0C04 3349:451 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39971ms total) | ||
1297 | +T0990 3349:452 JLINK_IsHalted() returns FALSE (0001ms, 39972ms total) | ||
1298 | +T0990 3349:553 JLINK_IsHalted() returns FALSE (0000ms, 39971ms total) | ||
1299 | +T0990 3349:654 JLINK_IsHalted() returns FALSE (0000ms, 39971ms total) | ||
1300 | +T0990 3349:755 JLINK_IsHalted() returns FALSE (0000ms, 39971ms total) | ||
1301 | +T0990 3349:856 JLINK_IsHalted() returns FALSE (0000ms, 39971ms total) | ||
1302 | +T0990 3349:957 JLINK_IsHalted() returns FALSE (0000ms, 39971ms total) | ||
1303 | +T0990 3350:058 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39971ms total) | ||
1304 | +T0C04 3350:058 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39971ms total) | ||
1305 | +T0C04 3350:059 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39971ms total) | ||
1306 | +T0C04 3350:059 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39972ms total) | ||
1307 | +T0990 3350:060 JLINK_IsHalted() returns FALSE (0000ms, 39972ms total) | ||
1308 | +T0990 3350:162 JLINK_IsHalted() returns FALSE (0000ms, 39972ms total) | ||
1309 | +T0990 3350:262 JLINK_IsHalted() returns FALSE (0000ms, 39972ms total) | ||
1310 | +T0990 3350:363 JLINK_IsHalted() returns FALSE (0000ms, 39972ms total) | ||
1311 | +T0990 3350:464 JLINK_IsHalted() returns FALSE (0000ms, 39972ms total) | ||
1312 | +T0990 3350:565 JLINK_IsHalted() returns FALSE (0000ms, 39972ms total) | ||
1313 | +T0990 3350:666 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39972ms total) | ||
1314 | +T0C04 3350:666 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39972ms total) | ||
1315 | +T0C04 3350:667 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39972ms total) | ||
1316 | +T0C04 3350:667 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39973ms total) | ||
1317 | +T0990 3350:668 JLINK_IsHalted() returns FALSE (0000ms, 39973ms total) | ||
1318 | +T0990 3350:770 JLINK_IsHalted() returns FALSE (0000ms, 39973ms total) | ||
1319 | +T0990 3350:872 JLINK_IsHalted() returns FALSE (0000ms, 39973ms total) | ||
1320 | +T0990 3350:973 JLINK_IsHalted() returns FALSE (0000ms, 39973ms total) | ||
1321 | +T0990 3351:075 JLINK_IsHalted() returns FALSE (0000ms, 39973ms total) | ||
1322 | +T0990 3351:175 JLINK_IsHalted() returns FALSE (0000ms, 39973ms total) | ||
1323 | +T0990 3351:276 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39973ms total) | ||
1324 | +T0C04 3351:276 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39973ms total) | ||
1325 | +T0C04 3351:277 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0000ms, 39973ms total) | ||
1326 | +T0C04 3351:277 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39974ms total) | ||
1327 | +T0990 3351:278 JLINK_IsHalted() returns FALSE (0000ms, 39974ms total) | ||
1328 | +T0990 3351:379 JLINK_IsHalted() returns FALSE (0000ms, 39974ms total) | ||
1329 | +T0990 3351:480 JLINK_IsHalted() returns FALSE (0000ms, 39974ms total) | ||
1330 | +T0990 3351:580 JLINK_IsHalted() returns FALSE (0000ms, 39974ms total) | ||
1331 | +T0990 3351:681 JLINK_IsHalted() returns FALSE (0000ms, 39974ms total) | ||
1332 | +T0990 3351:782 JLINK_IsHalted() returns FALSE (0000ms, 39974ms total) | ||
1333 | +T0990 3351:883 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39974ms total) | ||
1334 | +T0C04 3351:883 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39974ms total) | ||
1335 | +T0C04 3351:884 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39974ms total) | ||
1336 | +T0C04 3351:884 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0002ms, 39976ms total) | ||
1337 | +T0990 3351:886 JLINK_IsHalted() returns FALSE (0000ms, 39976ms total) | ||
1338 | +T0990 3351:987 JLINK_IsHalted() returns FALSE (0000ms, 39976ms total) | ||
1339 | +T0990 3352:088 JLINK_IsHalted() returns FALSE (0000ms, 39976ms total) | ||
1340 | +T0990 3352:189 JLINK_IsHalted() returns FALSE (0000ms, 39976ms total) | ||
1341 | +T0990 3352:290 JLINK_IsHalted() returns FALSE (0000ms, 39976ms total) | ||
1342 | +T0990 3352:391 JLINK_IsHalted() returns FALSE (0000ms, 39976ms total) | ||
1343 | +T0990 3352:492 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39976ms total) | ||
1344 | +T0C04 3352:492 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39976ms total) | ||
1345 | +T0C04 3352:493 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39976ms total) | ||
1346 | +T0C04 3352:493 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39977ms total) | ||
1347 | +T0990 3352:494 JLINK_IsHalted() returns FALSE (0000ms, 39977ms total) | ||
1348 | +T0990 3352:595 JLINK_IsHalted() returns FALSE (0000ms, 39977ms total) | ||
1349 | +T0990 3352:696 JLINK_IsHalted() returns FALSE (0000ms, 39977ms total) | ||
1350 | +T0990 3352:797 JLINK_IsHalted() returns FALSE (0000ms, 39977ms total) | ||
1351 | +T0990 3352:898 JLINK_IsHalted() returns FALSE (0000ms, 39977ms total) | ||
1352 | +T0990 3352:999 JLINK_IsHalted() returns FALSE (0000ms, 39977ms total) | ||
1353 | +T0990 3353:100 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39977ms total) | ||
1354 | +T0C04 3353:100 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39977ms total) | ||
1355 | +T0C04 3353:101 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 06 returns 0x01 (0000ms, 39977ms total) | ||
1356 | +T0C04 3353:101 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39978ms total) | ||
1357 | +T0990 3353:102 JLINK_IsHalted() returns FALSE (0000ms, 39978ms total) | ||
1358 | +T0990 3353:204 JLINK_IsHalted() returns FALSE (0000ms, 39978ms total) | ||
1359 | +T0990 3353:305 JLINK_IsHalted() returns FALSE (0000ms, 39978ms total) | ||
1360 | +T0990 3353:406 JLINK_IsHalted() returns FALSE (0000ms, 39978ms total) | ||
1361 | +T0990 3353:506 JLINK_IsHalted() returns FALSE (0000ms, 39978ms total) | ||
1362 | +T0990 3353:607 JLINK_IsHalted() returns FALSE (0001ms, 39979ms total) | ||
1363 | +T0990 3353:708 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39978ms total) | ||
1364 | +T0C04 3353:708 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39979ms total) | ||
1365 | +T0C04 3353:709 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39980ms total) | ||
1366 | +T0C04 3353:710 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39980ms total) | ||
1367 | +T0990 3353:711 JLINK_IsHalted() returns FALSE (0000ms, 39980ms total) | ||
1368 | +T0990 3353:812 JLINK_IsHalted() returns FALSE (0000ms, 39980ms total) | ||
1369 | +T0990 3353:913 JLINK_IsHalted() returns FALSE (0000ms, 39980ms total) | ||
1370 | +T0990 3354:014 JLINK_IsHalted() returns FALSE (0000ms, 39980ms total) | ||
1371 | +T0990 3354:116 JLINK_IsHalted() returns FALSE (0000ms, 39980ms total) | ||
1372 | +T0990 3354:217 JLINK_IsHalted() returns FALSE (0000ms, 39980ms total) | ||
1373 | +T0990 3354:318 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39980ms total) | ||
1374 | +T0C04 3354:318 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39980ms total) | ||
1375 | +T0C04 3354:318 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39981ms total) | ||
1376 | +T0C04 3354:319 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39981ms total) | ||
1377 | +T0990 3354:320 JLINK_IsHalted() returns FALSE (0000ms, 39981ms total) | ||
1378 | +T0990 3354:421 JLINK_IsHalted() returns FALSE (0000ms, 39981ms total) | ||
1379 | +T0990 3354:522 JLINK_IsHalted() returns FALSE (0000ms, 39981ms total) | ||
1380 | +T0990 3354:623 JLINK_IsHalted() returns FALSE (0000ms, 39981ms total) | ||
1381 | +T0990 3354:724 JLINK_IsHalted() returns FALSE (0000ms, 39981ms total) | ||
1382 | +T0990 3354:825 JLINK_IsHalted() returns FALSE (0000ms, 39981ms total) | ||
1383 | +T0990 3354:926 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39981ms total) | ||
1384 | +T0C04 3354:926 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39981ms total) | ||
1385 | +T0C04 3354:927 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39981ms total) | ||
1386 | +T0C04 3354:927 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39982ms total) | ||
1387 | +T0990 3354:928 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total) | ||
1388 | +T0990 3355:029 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total) | ||
1389 | +T0990 3355:130 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total) | ||
1390 | +T0990 3355:231 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total) | ||
1391 | +T0990 3355:332 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total) | ||
1392 | +T0990 3355:433 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39982ms total) | ||
1393 | +T0C04 3355:433 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39982ms total) | ||
1394 | +T0C04 3355:434 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39982ms total) | ||
1395 | +T0C04 3355:434 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39982ms total) | ||
1396 | +T0990 3355:434 JLINK_IsHalted() returns FALSE (0001ms, 39983ms total) | ||
1397 | +T0990 3355:536 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total) | ||
1398 | +T0990 3355:637 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total) | ||
1399 | +T0990 3355:738 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total) | ||
1400 | +T0990 3355:839 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total) | ||
1401 | +T0990 3355:941 JLINK_IsHalted() returns FALSE (0000ms, 39982ms total) | ||
1402 | +T0990 3356:042 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39982ms total) | ||
1403 | +T0C04 3356:042 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39982ms total) | ||
1404 | +T0C04 3356:042 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39983ms total) | ||
1405 | +T0C04 3356:043 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39984ms total) | ||
1406 | +T0990 3356:044 JLINK_IsHalted() returns FALSE (0000ms, 39984ms total) | ||
1407 | +T0990 3356:145 JLINK_IsHalted() returns FALSE (0000ms, 39984ms total) | ||
1408 | +T0990 3356:246 JLINK_IsHalted() returns FALSE (0000ms, 39984ms total) | ||
1409 | +T0990 3356:347 JLINK_IsHalted() returns FALSE (0000ms, 39984ms total) | ||
1410 | +T0990 3356:447 JLINK_IsHalted() returns FALSE (0000ms, 39984ms total) | ||
1411 | +T0990 3356:548 JLINK_IsHalted() returns FALSE (0000ms, 39984ms total) | ||
1412 | +T0990 3356:649 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39984ms total) | ||
1413 | +T0C04 3356:649 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39984ms total) | ||
1414 | +T0C04 3356:650 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39984ms total) | ||
1415 | +T0C04 3356:650 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39985ms total) | ||
1416 | +T0990 3356:651 JLINK_IsHalted() returns FALSE (0000ms, 39985ms total) | ||
1417 | +T0990 3356:752 JLINK_IsHalted() returns FALSE (0000ms, 39985ms total) | ||
1418 | +T0990 3356:852 JLINK_IsHalted() returns FALSE (0001ms, 39986ms total) | ||
1419 | +T0990 3356:953 JLINK_IsHalted() returns FALSE (0000ms, 39985ms total) | ||
1420 | +T0990 3357:054 JLINK_IsHalted() returns FALSE (0000ms, 39985ms total) | ||
1421 | +T0990 3357:155 JLINK_IsHalted() returns FALSE (0000ms, 39985ms total) | ||
1422 | +T0990 3357:256 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39985ms total) | ||
1423 | +T0C04 3357:256 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0001ms, 39986ms total) | ||
1424 | +T0C04 3357:257 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 04 returns 0x01 (0001ms, 39987ms total) | ||
1425 | +T0C04 3357:258 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39987ms total) | ||
1426 | +T0990 3357:259 JLINK_IsHalted() returns FALSE (0000ms, 39987ms total) | ||
1427 | +T0990 3357:360 JLINK_IsHalted() returns FALSE (0000ms, 39987ms total) | ||
1428 | +T0990 3357:461 JLINK_IsHalted() returns FALSE (0000ms, 39987ms total) | ||
1429 | +T0990 3357:561 JLINK_IsHalted() returns FALSE (0000ms, 39987ms total) | ||
1430 | +T0990 3357:662 JLINK_IsHalted() returns FALSE (0000ms, 39987ms total) | ||
1431 | +T0990 3357:764 JLINK_IsHalted() returns FALSE (0000ms, 39987ms total) | ||
1432 | +T0990 3357:865 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39987ms total) | ||
1433 | +T0C04 3357:865 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39987ms total) | ||
1434 | +T0C04 3357:866 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39988ms total) | ||
1435 | +T0C04 3357:867 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39988ms total) | ||
1436 | +T0990 3357:867 JLINK_IsHalted() returns FALSE (0001ms, 39989ms total) | ||
1437 | +T0990 3357:968 JLINK_IsHalted() returns FALSE (0000ms, 39988ms total) | ||
1438 | +T0990 3358:069 JLINK_IsHalted() returns FALSE (0000ms, 39988ms total) | ||
1439 | +T0990 3358:170 JLINK_IsHalted() returns FALSE (0000ms, 39988ms total) | ||
1440 | +T0990 3358:271 JLINK_IsHalted() returns FALSE (0000ms, 39988ms total) | ||
1441 | +T0990 3358:372 JLINK_IsHalted() returns FALSE (0000ms, 39988ms total) | ||
1442 | +T0990 3358:474 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39988ms total) | ||
1443 | +T0C04 3358:474 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39988ms total) | ||
1444 | +T0C04 3358:474 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0001ms, 39989ms total) | ||
1445 | +T0C04 3358:475 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39990ms total) | ||
1446 | +T0990 3358:476 JLINK_IsHalted() returns FALSE (0000ms, 39990ms total) | ||
1447 | +T0990 3358:577 JLINK_IsHalted() returns FALSE (0000ms, 39990ms total) | ||
1448 | +T0990 3358:678 JLINK_IsHalted() returns FALSE (0000ms, 39990ms total) | ||
1449 | +T0990 3358:779 JLINK_IsHalted() returns FALSE (0000ms, 39990ms total) | ||
1450 | +T0990 3358:880 JLINK_IsHalted() returns FALSE (0000ms, 39990ms total) | ||
1451 | +T0990 3358:981 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39990ms total) | ||
1452 | +T0C04 3358:981 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39990ms total) | ||
1453 | +T0C04 3358:981 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 05 returns 0x01 (0001ms, 39991ms total) | ||
1454 | +T0C04 3358:982 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39992ms total) | ||
1455 | +T0990 3358:983 JLINK_IsHalted() returns FALSE (0000ms, 39992ms total) | ||
1456 | +T0990 3359:083 JLINK_IsHalted() returns FALSE (0000ms, 39992ms total) | ||
1457 | +T0990 3359:184 JLINK_IsHalted() returns FALSE (0000ms, 39992ms total) | ||
1458 | +T0990 3359:285 JLINK_IsHalted() returns FALSE (0000ms, 39992ms total) | ||
1459 | +T0990 3359:386 JLINK_IsHalted() returns FALSE (0000ms, 39992ms total) | ||
1460 | +T0990 3359:487 JLINK_IsHalted() returns FALSE (0000ms, 39992ms total) | ||
1461 | +T0990 3359:589 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39992ms total) | ||
1462 | +T0C04 3359:589 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39992ms total) | ||
1463 | +T0C04 3359:589 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39992ms total) | ||
1464 | +T0C04 3359:590 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0000ms, 39993ms total) | ||
1465 | +T0990 3359:590 JLINK_IsHalted() returns FALSE (0001ms, 39994ms total) | ||
1466 | +T0990 3359:692 JLINK_IsHalted() returns FALSE (0000ms, 39993ms total) | ||
1467 | +T0990 3359:793 JLINK_IsHalted() returns FALSE (0000ms, 39993ms total) | ||
1468 | +T0990 3359:894 JLINK_IsHalted() returns FALSE (0000ms, 39993ms total) | ||
1469 | +T0990 3359:994 JLINK_IsHalted() returns FALSE (0001ms, 39994ms total) | ||
1470 | +T0990 3360:095 JLINK_IsHalted() returns FALSE (0000ms, 39993ms total) | ||
1471 | +T0990 3360:196 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39993ms total) | ||
1472 | +T0C04 3360:196 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39993ms total) | ||
1473 | +T0C04 3360:197 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39993ms total) | ||
1474 | +T0C04 3360:197 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39994ms total) | ||
1475 | +T0990 3360:198 JLINK_IsHalted() returns FALSE (0000ms, 39994ms total) | ||
1476 | +T0990 3360:300 JLINK_IsHalted() returns FALSE (0000ms, 39994ms total) | ||
1477 | +T0990 3360:401 JLINK_IsHalted() returns FALSE (0000ms, 39994ms total) | ||
1478 | +T0990 3360:502 JLINK_IsHalted() returns FALSE (0000ms, 39994ms total) | ||
1479 | +T0990 3360:602 JLINK_IsHalted() returns FALSE (0000ms, 39994ms total) | ||
1480 | +T0990 3360:703 JLINK_IsHalted() returns FALSE (0000ms, 39994ms total) | ||
1481 | +T0990 3360:804 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39994ms total) | ||
1482 | +T0C04 3360:804 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39994ms total) | ||
1483 | +T0C04 3360:805 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 06 returns 0x01 (0000ms, 39994ms total) | ||
1484 | +T0C04 3360:805 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39995ms total) | ||
1485 | +T0990 3360:806 JLINK_IsHalted() returns FALSE (0000ms, 39995ms total) | ||
1486 | +T0990 3360:907 JLINK_IsHalted() returns FALSE (0000ms, 39995ms total) | ||
1487 | +T0990 3361:008 JLINK_IsHalted() returns FALSE (0000ms, 39995ms total) | ||
1488 | +T0990 3361:109 JLINK_IsHalted() returns FALSE (0000ms, 39995ms total) | ||
1489 | +T0990 3361:210 JLINK_IsHalted() returns FALSE (0000ms, 39995ms total) | ||
1490 | +T0990 3361:311 JLINK_IsHalted() returns FALSE (0000ms, 39995ms total) | ||
1491 | +T0990 3361:412 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39995ms total) | ||
1492 | +T0C04 3361:412 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39995ms total) | ||
1493 | +T0C04 3361:413 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39995ms total) | ||
1494 | +T0C04 3361:413 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39996ms total) | ||
1495 | +T0990 3361:414 JLINK_IsHalted() returns FALSE (0001ms, 39997ms total) | ||
1496 | +T0990 3361:515 JLINK_IsHalted() returns FALSE (0000ms, 39996ms total) | ||
1497 | +T0990 3361:616 JLINK_IsHalted() returns FALSE (0000ms, 39996ms total) | ||
1498 | +T0990 3361:717 JLINK_IsHalted() returns FALSE (0000ms, 39996ms total) | ||
1499 | +T0990 3361:818 JLINK_IsHalted() returns FALSE (0000ms, 39996ms total) | ||
1500 | +T0990 3361:919 JLINK_IsHalted() returns FALSE (0000ms, 39996ms total) | ||
1501 | +T0990 3362:020 JLINK_ReadMemU32(0xE0001004, 0x0001 Items, ...) - Data: F9 2F A8 03 returns 1 (0000ms, 39996ms total) | ||
1502 | +T0C04 3362:020 JLINK_ReadMemEx(0x20000954, 0x0002 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(2 bytes @ 0x20000954) - Data: 00 00 returns 0x02 (0000ms, 39996ms total) | ||
1503 | +T0C04 3362:021 JLINK_ReadMemEx(0x20001280, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x20001280) - Data: 03 returns 0x01 (0000ms, 39996ms total) | ||
1504 | +T0C04 3362:021 JLINK_ReadMemEx(0x200058F2, 0x0001 Bytes, ..., Flags = 0x02000000) -- CPU_ReadMem(1 bytes @ 0x200058F2) - Data: 00 returns 0x01 (0001ms, 39997ms total) | ||
1505 | +T0990 3362:022 JLINK_IsHalted() returns FALSE (0000ms, 39997ms total) | ||
1506 | +T0990 3362:123 JLINK_IsHalted() returns FALSE (0000ms, 39997ms total) | ||
1507 | +T0990 3362:225 JLINK_IsHalted() returns FALSE (0000ms, 39997ms total) | ||
1508 | +T0990 3362:325 JLINK_IsHalted() returns FALSE (0000ms, 39997ms total) | ||
1509 | +T0990 3362:426 JLINK_IsHalted() returns FALSE (0000ms, 39997ms total) | ||
1510 | +T0990 3362:527 JLINK_Halt() returns 0x00 (0002ms, 39999ms total) | ||
1511 | +T0990 3362:529 JLINK_IsHalted() returns TRUE (0000ms, 39999ms total) | ||
1512 | +T0990 3362:529 JLINK_IsHalted() returns TRUE (0000ms, 39999ms total) | ||
1513 | +T0990 3362:529 JLINK_IsHalted() returns TRUE (0000ms, 39999ms total) | ||
1514 | +T0990 3362:529 JLINK_ReadReg(R15 (PC)) returns 0x0800B85A (0000ms, 39999ms total) | ||
1515 | +T0990 3362:529 JLINK_ReadReg(XPSR) returns 0x21000000 (0000ms, 39999ms total) | ||
1516 | +T0990 3362:529 JLINK_ReadMemU32(0xE000ED30, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000ED30) - Data: 01 00 00 00 returns 1 (0001ms, 40000ms total) | ||
1517 | +T0990 3362:530 JLINK_ReadMemU32(0xE0001028, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001028) - Data: 00 00 00 00 returns 1 (0000ms, 40000ms total) | ||
1518 | +T0990 3362:530 JLINK_ReadMemU32(0xE0001038, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001038) - Data: 00 02 00 00 returns 1 (0001ms, 40001ms total) | ||
1519 | +T0990 3362:531 JLINK_ReadMemU32(0xE0001048, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001048) - Data: 00 00 00 00 returns 1 (0000ms, 40001ms total) | ||
1520 | +T0990 3362:531 JLINK_ReadMemU32(0xE0001058, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE0001058) - Data: 00 00 00 00 returns 1 (0001ms, 40002ms total) | ||
1521 | +T0C04 3363:116 JLINK_Close() -- CPU_ReadMem(4 bytes @ 0xE0001000) >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> (0011ms, 40013ms total) | ||
1522 | +T0C04 3363:116 (0011ms, 40013ms total) | ||
1523 | +T0C04 3363:116 Closed (0011ms, 40013ms total) |