diff --git a/.vscode/settings.json b/.vscode/settings.json
index 4f727209..12f11a58 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -28,5 +28,6 @@
"timer.h": "c",
"lv_span.h": "c"
},
- "C_Cpp.errorSquiggles": "disabled"
+ "C_Cpp.errorSquiggles": "disabled",
+ "idf.pythonInstallPath": "F:\\Espressif\\tools\\idf-python\\3.11.2\\python.exe"
}
\ No newline at end of file
diff --git a/App/APP_WU/Inc/apps_gather.h b/App/APP_WU/Inc/apps_gather.h
index ea5fd9c6..99eff247 100644
--- a/App/APP_WU/Inc/apps_gather.h
+++ b/App/APP_WU/Inc/apps_gather.h
@@ -233,7 +233,7 @@ typedef struct
typedef struct
{
uint8_t tab_cursor; //选项卡游标,后续根据实际需求进行宏定义
- uint8_t tab_cursor_prv; //前一时刻的选项卡游标
+ uint8_t tab_cursor_prv; //前一时刻的选项卡游标
uint8_t tab_cursor_inner; //选项内部的游标, 99代表未选中。
uint8_t tab_cursor_inner_prv; //前一时刻的内部游标
diff --git a/App/APP_WU/Src/apps_gather.c b/App/APP_WU/Src/apps_gather.c
index 90a80290..495effa8 100644
--- a/App/APP_WU/Src/apps_gather.c
+++ b/App/APP_WU/Src/apps_gather.c
@@ -2,7 +2,7 @@
* @Author: wujunchao wujunchao@wuxismart.com
* @Date: 2024-12-27 11:50:56
* @LastEditors: wujunchao wujunchao@wuxismart.com
- * @LastEditTime: 2025-02-25 10:41:55
+ * @LastEditTime: 2025-03-03 14:08:51
* @FilePath: \signal_generator\App\APP_WU\Src\apps_gather.c
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/
@@ -1203,7 +1203,7 @@ void key_functions_setting(void) //按键功能,详细设置菜单界面
if(tabdata.tab_cursor_inner == 99)
{
tabdata.tab_cursor_prv = tabdata.tab_cursor;
- tabdata.tab_cursor = (tabdata.tab_cursor <= 0)?(2):(tabdata.tab_cursor - 1);
+ tabdata.tab_cursor = (tabdata.tab_cursor <= 0)?(3):(tabdata.tab_cursor - 1);
setting_items_check(tabdata.tab_cursor, tabdata.tab_cursor_prv, 0);
}
@@ -1240,7 +1240,7 @@ void key_functions_setting(void) //按键功能,详细设置菜单界面
if(tabdata.tab_cursor_inner == 99)
{
tabdata.tab_cursor_prv = tabdata.tab_cursor;
- tabdata.tab_cursor = (tabdata.tab_cursor >= 2)?(0):(tabdata.tab_cursor + 1);
+ tabdata.tab_cursor = (tabdata.tab_cursor >= 3)?(0):(tabdata.tab_cursor + 1);
setting_items_check(tabdata.tab_cursor, tabdata.tab_cursor_prv, 0);
}
@@ -1391,19 +1391,19 @@ void setting_items_check(uint8_t cursor, uint8_t cursor_prv, uint8_t tab_cont)
{
case 0:
{
-
+ lv_obj_set_style_text_color(guider_ui.screen_setting_label_01, lv_color_hex(0xcbefff), LV_PART_MAIN|LV_STATE_DEFAULT);
}
break;
case 1:
{
-
+ lv_obj_set_style_text_color(guider_ui.screen_setting_label_03, lv_color_hex(0xcbefff), LV_PART_MAIN|LV_STATE_DEFAULT);
}
break;
case 2:
{
-
+ lv_obj_set_style_text_color(guider_ui.screen_setting_label_05, lv_color_hex(0xcbefff), LV_PART_MAIN|LV_STATE_DEFAULT);
}
break;
@@ -1415,19 +1415,19 @@ void setting_items_check(uint8_t cursor, uint8_t cursor_prv, uint8_t tab_cont)
{
case 0:
{
-
+ lv_obj_set_style_text_color(guider_ui.screen_setting_label_01, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
}
break;
case 1:
{
-
+ lv_obj_set_style_text_color(guider_ui.screen_setting_label_03, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
}
break;
case 2:
{
-
+ lv_obj_set_style_text_color(guider_ui.screen_setting_label_05, lv_color_hex(0x000000), LV_PART_MAIN|LV_STATE_DEFAULT);
}
break;
@@ -1450,7 +1450,67 @@ void setting_items_check(uint8_t cursor, uint8_t cursor_prv, uint8_t tab_cont)
}
}
else //标签点亮和熄灭
- {}
+ {
+ switch (cursor) //点亮当前选中目标
+ {
+ case 0:
+ {
+ lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s0, lv_color_hex(0xcbefff), LV_PART_MAIN|LV_STATE_DEFAULT);
+ }
+ break;
+
+ case 1:
+ {
+ lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s1, lv_color_hex(0xcbefff), LV_PART_MAIN|LV_STATE_DEFAULT);
+ }
+ break;
+
+ case 2:
+ {
+ lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s2, lv_color_hex(0xcbefff), LV_PART_MAIN|LV_STATE_DEFAULT);
+ }
+ break;
+
+ case 3:
+ {
+ lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s3, lv_color_hex(0xcbefff), LV_PART_MAIN|LV_STATE_DEFAULT);
+ }
+ break;
+
+ default:
+ break;
+ }
+
+ switch (cursor_prv) //熄灭前一时刻的目标
+ {
+ case 0:
+ {
+ lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s0, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
+ }
+ break;
+
+ case 1:
+ {
+ lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s1, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
+ }
+ break;
+
+ case 2:
+ {
+ lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s2, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
+ }
+ break;
+
+ case 3:
+ {
+ lv_obj_set_style_bg_color(guider_ui.screen_setting_label_s3, lv_color_hex(0xffffff), LV_PART_MAIN|LV_STATE_DEFAULT);
+ }
+ break;
+
+ default:
+ break;
+ }
+ }
}
diff --git a/MDK-ARM/JLinkLog.txt b/MDK-ARM/JLinkLog.txt
index 9f9698d7..fdba4127 100644
--- a/MDK-ARM/JLinkLog.txt
+++ b/MDK-ARM/JLinkLog.txt
@@ -1,5738 +1,11355 @@
-T39B8 000:012.683 SEGGER J-Link V7.00 Log File
-T39B8 000:012.785 DLL Compiled: Apr 8 2021 14:30:05
-T39B8 000:012.790 Logging started @ 2025-02-25 02:13
-T39B8 000:012.794 - 12.796ms
-T39B8 000:012.802 JLINK_SetWarnOutHandler(...)
-T39B8 000:012.807 - 0.006ms
-T39B8 000:012.812 JLINK_OpenEx(...)
-T39B8 000:014.227 Firmware: J-Link V9 compiled May 7 2021 16:26:12
-T39B8 000:014.549 Firmware: J-Link V9 compiled May 7 2021 16:26:12
-T39B8 000:014.703 Decompressing FW timestamp took 114 us
-T39B8 000:022.962 Hardware: V9.40
-T39B8 000:022.985 S/N: 69404082
-T39B8 000:022.992 OEM: SEGGER
-T39B8 000:022.997 Feature(s): RDI, GDB, FlashDL, FlashBP, JFlash
-T39B8 000:023.990 TELNET listener socket opened on port 19021
-T39B8 000:024.056 WEBSRV Starting webserver
-T39B8 000:024.147 WEBSRV Webserver running on local port 19080
-T39B8 000:024.153 - 11.343ms returns "O.K."
-T39B8 000:024.281 JLINK_GetEmuCaps()
-T39B8 000:024.285 - 0.007ms returns 0xB9FF7BBF
-T39B8 000:024.292 JLINK_TIF_GetAvailable(...)
-T39B8 000:024.412 - 0.127ms
-T39B8 000:024.426 JLINK_SetErrorOutHandler(...)
-T39B8 000:024.430 - 0.006ms
-T39B8 000:024.450 JLINK_ExecCommand("ProjectFile = "F:\Desktop\Work\00_Projects\04_Signal_Generator\00_Code\00_New\signal_generator\MDK-ARM\JLinkSettings.ini"", ...).
-T39B8 000:030.497 Ref file found at: E:\Softwares\Keil_v5\ARM\Segger\JLinkDevices.ref
-T39B8 000:030.613 XML referenced by ref file: C:\Program Files (x86)\SEGGER\JLink_V700\JLinkDevices.xml
-T39B8 000:031.031 C:\Program Files (x86)\SEGGER\JLink_V700\JLinkDevices.xml evaluated successfully.
-T39B8 000:074.909 - 50.466ms returns 0x00
-T39B8 000:074.951 JLINK_ExecCommand("Device = STM32F407VGTx", ...).
-T39B8 000:075.275 Device "STM32F407VG" selected.
-T39B8 000:075.498 - 0.545ms returns 0x00
-T39B8 000:075.510 JLINK_GetHardwareVersion()
-T39B8 000:075.514 - 0.005ms returns 94000
-T39B8 000:075.520 JLINK_GetDLLVersion()
-T39B8 000:075.524 - 0.005ms returns 70000
-T39B8 000:075.528 JLINK_GetOEMString(...)
-T39B8 000:075.533 JLINK_GetFirmwareString(...)
-T39B8 000:075.536 - 0.005ms
-T39B8 000:075.550 JLINK_GetDLLVersion()
-T39B8 000:075.553 - 0.005ms returns 70000
-T39B8 000:075.558 JLINK_GetCompileDateTime()
-T39B8 000:075.561 - 0.005ms
-T39B8 000:075.571 JLINK_GetFirmwareString(...)
-T39B8 000:075.575 - 0.005ms
-T39B8 000:075.581 JLINK_GetHardwareVersion()
-T39B8 000:075.585 - 0.005ms returns 94000
-T39B8 000:075.592 JLINK_GetSN()
-T39B8 000:075.596 - 0.005ms returns 69404082
-T39B8 000:075.602 JLINK_GetOEMString(...)
-T39B8 000:075.610 JLINK_TIF_Select(JLINKARM_TIF_SWD)
-T39B8 000:076.103 - 0.498ms returns 0x00
-T39B8 000:076.112 JLINK_HasError()
-T39B8 000:076.124 JLINK_SetSpeed(10000)
-T39B8 000:076.230 - 0.108ms
-T39B8 000:076.236 JLINK_GetId()
-T39B8 000:076.486 InitTarget() start
-T39B8 000:076.498 J-Link Script File: Executing InitTarget()
-T39B8 000:083.293 InitTarget() end
-T39B8 000:083.975 Found SW-DP with ID 0x2BA01477
-T39B8 000:086.374 DPIDR: 0x2BA01477
-T39B8 000:086.404 Scanning AP map to find all available APs
-T39B8 000:087.019 AP[1]: Stopped AP scan as end of AP map has been reached
-T39B8 000:087.030 AP[0]: AHB-AP (IDR: 0x24770011)
-T39B8 000:087.037 Iterating through AP map to find AHB-AP to use
-T39B8 000:087.985 AP[0]: Core found
-T39B8 000:087.993 AP[0]: AHB-AP ROM base: 0xE00FF000
-T39B8 000:088.391 CPUID register: 0x410FC241. Implementer code: 0x41 (ARM)
-T39B8 000:088.399 Found Cortex-M4 r0p1, Little endian.
-T39B8 000:189.780 -- Max. mem block: 0x00010E60
-T39B8 000:190.026 CPU_ReadMem(4 bytes @ 0xE000EDF0)
-T39B8 000:190.404 CPU_ReadMem(4 bytes @ 0xE0002000)
-T39B8 000:190.791 FPUnit: 6 code (BP) slots and 2 literal slots
-T39B8 000:190.825 CPU_ReadMem(4 bytes @ 0xE000EDFC)
-T39B8 000:191.279 CPU_WriteMem(4 bytes @ 0xE000EDFC)
-T39B8 000:191.745 CPU_ReadMem(4 bytes @ 0xE0001000)
-T39B8 000:192.093 CPU_WriteMem(4 bytes @ 0xE0001000)
-T39B8 000:192.456 CPU_ReadMem(4 bytes @ 0xE000ED88)
-T39B8 000:192.833 CPU_WriteMem(4 bytes @ 0xE000ED88)
-T39B8 000:193.189 CPU_ReadMem(4 bytes @ 0xE000ED88)
-T39B8 000:193.613 CPU_WriteMem(4 bytes @ 0xE000ED88)
-T39B8 000:193.997 CoreSight components:
-T39B8 000:194.057 ROMTbl[0] @ E00FF000
-T39B8 000:194.088 CPU_ReadMem(64 bytes @ 0xE00FF000)
-T39B8 000:194.773 CPU_ReadMem(32 bytes @ 0xE000EFE0)
-T39B8 000:195.313 ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB00C SCS-M7
-T39B8 000:195.350 CPU_ReadMem(32 bytes @ 0xE0001FE0)
-T39B8 000:195.870 ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 003BB002 DWT
-T39B8 000:195.903 CPU_ReadMem(32 bytes @ 0xE0002FE0)
-T39B8 000:196.447 ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 002BB003 FPB
-T39B8 000:196.489 CPU_ReadMem(32 bytes @ 0xE0000FE0)
-T39B8 000:197.053 ROMTbl[0][3]: E0000000, CID: B105E00D, PID: 003BB001 ITM
-T39B8 000:197.099 CPU_ReadMem(32 bytes @ 0xE0040FE0)
-T39B8 000:197.655 ROMTbl[0][4]: E0040000, CID: B105900D, PID: 000BB9A1 TPIU
-T39B8 000:197.689 CPU_ReadMem(32 bytes @ 0xE0041FE0)
-T39B8 000:198.220 ROMTbl[0][5]: E0041000, CID: B105900D, PID: 000BB925 ETM
-T39B8 000:198.628 - 122.406ms returns 0x2BA01477
-T39B8 000:198.679 JLINK_GetDLLVersion()
-T39B8 000:198.699 - 0.030ms returns 70000
-T39B8 000:198.839 JLINK_CORE_GetFound()
-T39B8 000:198.859 - 0.030ms returns 0xE0000FF
-T39B8 000:198.884 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX)
-T39B8 000:198.907 Value=0xE00FF000
-T39B8 000:198.935 - 0.061ms returns 0
-T39B8 000:198.975 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX)
-T39B8 000:198.996 Value=0xE00FF000
-T39B8 000:199.024 - 0.058ms returns 0
-T39B8 000:199.047 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX)
-T39B8 000:199.067 Value=0xE0041000
-T39B8 000:199.095 - 0.057ms returns 0
-T39B8 000:199.119 JLINK_ReadMemEx(0xE0041FD0, 0x20 Bytes, Flags = 0x02000004)
-T39B8 000:199.204 CPU_ReadMem(32 bytes @ 0xE0041FD0)
-T39B8 000:199.740 Data: 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
-T39B8 000:199.771 - 0.662ms returns 32 (0x20)
-T39B8 000:199.798 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX)
-T39B8 000:199.819 Value=0x00000000
-T39B8 000:199.847 - 0.058ms returns 0
-T39B8 000:199.870 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX)
-T39B8 000:199.890 Value=0xE0040000
-T39B8 000:199.918 - 0.057ms returns 0
-T39B8 000:199.941 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX)
-T39B8 000:199.960 Value=0xE0000000
-T39B8 000:199.988 - 0.056ms returns 0
-T39B8 000:200.010 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX)
-T39B8 000:200.029 Value=0xE0001000
-T39B8 000:200.054 - 0.052ms returns 0
-T39B8 000:200.074 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX)
-T39B8 000:200.103 Value=0xE0002000
-T39B8 000:200.136 - 0.070ms returns 0
-T39B8 000:200.157 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX)
-T39B8 000:200.174 Value=0xE000E000
-T39B8 000:200.199 - 0.051ms returns 0
-T39B8 000:200.220 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX)
-T39B8 000:200.237 Value=0xE000EDF0
-T39B8 000:200.262 - 0.050ms returns 0
-T39B8 000:200.282 JLINK_GetDebugInfo(0x01 = Unknown)
-T39B8 000:200.300 Value=0x00000001
-T39B8 000:200.325 - 0.051ms returns 0
-T39B8 000:200.346 JLINK_ReadMemU32(0xE000ED00, 0x1 Items)
-T39B8 000:200.370 CPU_ReadMem(4 bytes @ 0xE000ED00)
-T39B8 000:200.702 Data: 41 C2 0F 41
-T39B8 000:200.732 Debug reg: CPUID
-T39B8 000:200.757 - 0.420ms returns 1 (0x1)
-T39B8 000:200.781 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX)
-T39B8 000:200.800 Value=0x00000000
-T39B8 000:200.825 - 0.052ms returns 0
-T39B8 000:200.847 JLINK_HasError()
-T39B8 000:200.869 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)
-T39B8 000:200.887 - 0.026ms returns JLINKARM_CM3_RESET_TYPE_NORMAL
-T39B8 000:200.908 JLINK_Reset()
-T39B8 000:200.950 CPU is running
-T39B8 000:200.976 CPU_WriteMem(4 bytes @ 0xE000EDF0)
-T39B8 000:201.327 CPU is running
-T39B8 000:201.365 CPU_WriteMem(4 bytes @ 0xE000EDFC)
-T39B8 000:201.757 Reset: Halt core after reset via DEMCR.VC_CORERESET.
-T39B8 000:202.157 Reset: Reset device via AIRCR.SYSRESETREQ.
-T39B8 000:202.186 CPU is running
-T39B8 000:202.210 CPU_WriteMem(4 bytes @ 0xE000ED0C)
-T39B8 000:254.085 CPU_ReadMem(4 bytes @ 0xE000EDF0)
-T39B8 000:254.478 CPU_ReadMem(4 bytes @ 0xE000EDF0)
-T39B8 000:254.828 CPU is running
-T39B8 000:254.863 CPU_WriteMem(4 bytes @ 0xE000EDF0)
-T39B8 000:255.223 CPU is running
-T39B8 000:255.255 CPU_WriteMem(4 bytes @ 0xE000EDFC)
-T39B8 000:261.431 CPU_ReadMem(4 bytes @ 0xE000EDF0)
-T39B8 000:264.485 CPU_WriteMem(4 bytes @ 0xE0002000)
-T39B8 000:264.857 CPU_ReadMem(4 bytes @ 0xE000EDFC)
-T39B8 000:265.190 CPU_ReadMem(4 bytes @ 0xE0001000)
-T39B8 000:265.535 - 64.644ms
-T39B8 000:265.588 JLINK_HasError()
-T39B8 000:265.743 JLINK_ReadReg(R15 (PC))
-T39B8 000:265.794 - 0.061ms returns 0x08000260
-T39B8 000:265.819 JLINK_ReadReg(XPSR)
-T39B8 000:265.840 - 0.030ms returns 0x01000000
-T39B8 000:265.866 JLINK_Halt()
-T39B8 000:265.885 - 0.029ms returns 0x00
-T39B8 000:265.909 JLINK_ReadMemU32(0xE000EDF0, 0x1 Items)
-T39B8 000:265.940 CPU_ReadMem(4 bytes @ 0xE000EDF0)
-T39B8 000:266.268 Data: 03 00 03 00
-T39B8 000:266.302 Debug reg: DHCSR
-T39B8 000:266.330 - 0.430ms returns 1 (0x1)
-T39B8 000:266.356 JLINK_WriteU32_64(0xE000EDF0, 0xA05F0003)
-T39B8 000:266.378 Debug reg: DHCSR
-T39B8 000:267.553 CPU_WriteMem(4 bytes @ 0xE000EDF0)
-T39B8 000:267.953 - 1.612ms returns 0 (0x00000000)
-T39B8 000:267.986 JLINK_WriteU32_64(0xE000EDFC, 0x01000000)
-T39B8 000:268.008 Debug reg: DEMCR
-T39B8 000:268.046 CPU_WriteMem(4 bytes @ 0xE000EDFC)
-T39B8 000:268.399 - 0.425ms returns 0 (0x00000000)
-T39B8 000:268.517 JLINK_GetHWStatus(...)
-T39B8 000:268.726 - 0.221ms returns 0
-T39B8 000:268.792 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)
-T39B8 000:268.814 - 0.032ms returns 0x06
-T39B8 000:268.839 JLINK_GetNumBPUnits(Type = 0xF0)
-T39B8 000:268.927 - 0.097ms returns 0x2000
-T39B8 000:268.949 JLINK_GetNumWPUnits()
-T39B8 000:268.967 - 0.026ms returns 4
-T39B8 000:269.011 JLINK_GetSpeed()
-T39B8 000:269.029 - 0.026ms returns 6000
-T39B8 000:269.064 JLINK_ReadMemU32(0xE000E004, 0x1 Items)
-T39B8 000:269.090 CPU_ReadMem(4 bytes @ 0xE000E004)
-T39B8 000:269.444 Data: 02 00 00 00
-T39B8 000:269.473 - 0.417ms returns 1 (0x1)
-T39B8 000:269.497 JLINK_ReadMemU32(0xE000E004, 0x1 Items)
-T39B8 000:269.519 CPU_ReadMem(4 bytes @ 0xE000E004)
-T39B8 000:269.864 Data: 02 00 00 00
-T39B8 000:269.892 - 0.404ms returns 1 (0x1)
-T39B8 000:269.916 JLINK_WriteMemEx(0xE0001000, 0x0000001C Bytes, Flags = 0x02000004)
-T39B8 000:269.934 Data: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
-T39B8 000:269.965 CPU_WriteMem(28 bytes @ 0xE0001000)
-T39B8 000:270.445 - 0.539ms returns 0x1C
-T39B8 000:270.471 JLINK_HasError()
-T39B8 000:270.490 JLINK_ReadReg(R15 (PC))
-T39B8 000:270.509 - 0.026ms returns 0x08000260
-T39B8 000:270.529 JLINK_ReadReg(XPSR)
-T39B8 000:270.545 - 0.024ms returns 0x01000000
-T39B8 000:277.483 JLINK_ReadMemEx(0xE0001004, 0x4 Bytes, Flags = 0x02000000)
-T39B8 000:277.498 Data: 00 00 00 00
-T39B8 000:277.504 Debug reg: DWT_CYCCNT
-T39B8 000:277.509 - 0.028ms returns 4 (0x4)
-T39B8 000:526.829 JLINK_HasError()
-T39B8 000:526.861 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)
-T39B8 000:526.871 - 0.013ms returns JLINKARM_CM3_RESET_TYPE_NORMAL
-T39B8 000:526.881 JLINK_Reset()
-T39B8 000:526.904 CPU_WriteMem(4 bytes @ 0xE000EDF0)
-T39B8 000:527.230 CPU_WriteMem(4 bytes @ 0xE000EDFC)
-T39B8 000:527.541 Reset: Halt core after reset via DEMCR.VC_CORERESET.
-T39B8 000:527.871 Reset: Reset device via AIRCR.SYSRESETREQ.
-T39B8 000:527.884 CPU_WriteMem(4 bytes @ 0xE000ED0C)
-T39B8 000:580.057 CPU_ReadMem(4 bytes @ 0xE000EDF0)
-T39B8 000:580.509 CPU_ReadMem(4 bytes @ 0xE000EDF0)
-T39B8 000:580.973 CPU_WriteMem(4 bytes @ 0xE000EDF0)
-T39B8 000:581.363 CPU_WriteMem(4 bytes @ 0xE000EDFC)
-T39B8 000:586.898 CPU_ReadMem(4 bytes @ 0xE000EDF0)
-T39B8 000:590.016 CPU_WriteMem(4 bytes @ 0xE0002000)
-T39B8 000:590.470 CPU_ReadMem(4 bytes @ 0xE000EDFC)
-T39B8 000:590.884 CPU_ReadMem(4 bytes @ 0xE0001000)
-T39B8 000:591.253 - 64.390ms
-T39B8 000:591.514 JLINK_HasError()
-T39B8 000:591.543 JLINK_ReadReg(R15 (PC))
-T39B8 000:591.573 - 0.040ms returns 0x08000260
-T39B8 000:591.597 JLINK_ReadReg(XPSR)
-T39B8 000:591.619 - 0.031ms returns 0x01000000
-T39B8 000:592.924 JLINK_ReadMemEx(0x08000260, 0x3C Bytes, Flags = 0x02000000)
-T39B8 000:592.977 CPU_ReadMem(128 bytes @ 0x08000240)
-T39B8 000:594.125 -- Updating C cache (128 bytes @ 0x08000240)
-T39B8 000:594.171 -- Read from C cache (60 bytes @ 0x08000260)
-T39B8 000:594.206 Data: 06 48 80 47 06 48 00 47 FE E7 FE E7 FE E7 FE E7 ...
-T39B8 000:594.235 - 1.321ms returns 60 (0x3C)
-T39B8 000:594.267 JLINK_ReadMemEx(0x08000260, 0x2 Bytes, Flags = 0x02000000)
-T39B8 000:594.295 -- Read from C cache (2 bytes @ 0x08000260)
-T39B8 000:594.324 Data: 06 48
-T39B8 000:594.354 - 0.096ms returns 2 (0x2)
-T39B8 000:594.551 JLINK_ReadMemEx(0x08000262, 0x2 Bytes, Flags = 0x02000000)
-T39B8 000:594.574 -- Read from C cache (2 bytes @ 0x08000262)
-T39B8 000:594.602 Data: 80 47
-T39B8 000:594.630 - 0.088ms returns 2 (0x2)
-T39B8 000:594.688 JLINK_ReadMemEx(0x08000262, 0x2 Bytes, Flags = 0x02000000)
-T39B8 000:594.710 -- Read from C cache (2 bytes @ 0x08000262)
-T39B8 000:594.738 Data: 80 47
-T39B8 000:594.767 - 0.088ms returns 2 (0x2)
-T39B8 000:594.790 JLINK_ReadMemEx(0x08000264, 0x3C Bytes, Flags = 0x02000000)
-T39B8 000:594.813 -- Read from C cache (60 bytes @ 0x08000264)
-T39B8 000:594.843 Data: 06 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...
-T39B8 000:594.871 - 0.090ms returns 60 (0x3C)
-T39B8 000:594.894 JLINK_ReadMemEx(0x08000264, 0x2 Bytes, Flags = 0x02000000)
-T39B8 000:594.915 -- Read from C cache (2 bytes @ 0x08000264)
-T39B8 000:594.944 Data: 06 48
-T39B8 000:594.972 - 0.087ms returns 2 (0x2)
-T39B8 001:246.680 JLINK_ReadMemEx(0x08000264, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:246.704 -- Read from C cache (60 bytes @ 0x08000264)
-T39B8 001:246.711 Data: 06 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...
-T39B8 001:246.717 - 0.038ms returns 60 (0x3C)
-T39B8 001:246.722 JLINK_ReadMemEx(0x08000264, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:246.727 -- Read from C cache (2 bytes @ 0x08000264)
-T39B8 001:246.732 Data: 06 48
-T39B8 001:246.738 - 0.017ms returns 2 (0x2)
-T39B8 001:246.743 JLINK_ReadMemEx(0x08000266, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:246.747 -- Read from C cache (2 bytes @ 0x08000266)
-T39B8 001:246.752 Data: 00 47
-T39B8 001:246.758 - 0.016ms returns 2 (0x2)
-T39B8 001:402.457 JLINK_HasError()
-T39B8 001:402.482 JLINK_ReadReg(R0)
-T39B8 001:402.808 - 0.328ms returns 0x00000000
-T39B8 001:402.814 JLINK_ReadReg(R1)
-T39B8 001:402.818 - 0.006ms returns 0x00000000
-T39B8 001:402.823 JLINK_ReadReg(R2)
-T39B8 001:402.826 - 0.005ms returns 0x00000000
-T39B8 001:402.831 JLINK_ReadReg(R3)
-T39B8 001:402.835 - 0.005ms returns 0x00000000
-T39B8 001:402.839 JLINK_ReadReg(R4)
-T39B8 001:402.843 - 0.005ms returns 0x00000000
-T39B8 001:402.847 JLINK_ReadReg(R5)
-T39B8 001:402.851 - 0.005ms returns 0x00000000
-T39B8 001:402.855 JLINK_ReadReg(R6)
-T39B8 001:402.859 - 0.005ms returns 0x00000000
-T39B8 001:402.863 JLINK_ReadReg(R7)
-T39B8 001:402.867 - 0.005ms returns 0x00000000
-T39B8 001:402.871 JLINK_ReadReg(R8)
-T39B8 001:402.883 - 0.013ms returns 0x00000000
-T39B8 001:402.887 JLINK_ReadReg(R9)
-T39B8 001:402.891 - 0.005ms returns 0x00000000
-T39B8 001:402.895 JLINK_ReadReg(R10)
-T39B8 001:402.899 - 0.005ms returns 0x00000000
-T39B8 001:402.903 JLINK_ReadReg(R11)
-T39B8 001:402.907 - 0.005ms returns 0x00000000
-T39B8 001:402.911 JLINK_ReadReg(R12)
-T39B8 001:402.915 - 0.005ms returns 0x00000000
-T39B8 001:402.919 JLINK_ReadReg(R13 (SP))
-T39B8 001:402.923 - 0.005ms returns 0x200175A8
-T39B8 001:402.927 JLINK_ReadReg(R14)
-T39B8 001:402.931 - 0.005ms returns 0xFFFFFFFF
-T39B8 001:402.936 JLINK_ReadReg(R15 (PC))
-T39B8 001:402.940 - 0.005ms returns 0x08000260
-T39B8 001:402.944 JLINK_ReadReg(XPSR)
-T39B8 001:402.948 - 0.005ms returns 0x01000000
-T39B8 001:402.952 JLINK_ReadReg(MSP)
-T39B8 001:402.987 - 0.037ms returns 0x200175A8
-T39B8 001:402.992 JLINK_ReadReg(PSP)
-T39B8 001:402.996 - 0.005ms returns 0x00000000
-T39B8 001:403.000 JLINK_ReadReg(CFBP)
-T39B8 001:403.004 - 0.005ms returns 0x00000000
-T39B8 001:403.008 JLINK_ReadReg(FPSCR)
-T39B8 001:406.953 - 3.955ms returns 0x00000000
-T39B8 001:406.987 JLINK_ReadReg(FPS0)
-T39B8 001:407.011 - 0.026ms returns 0x00000000
-T39B8 001:407.015 JLINK_ReadReg(FPS1)
-T39B8 001:407.019 - 0.005ms returns 0x00000000
-T39B8 001:407.056 JLINK_ReadReg(FPS2)
-T39B8 001:407.060 - 0.006ms returns 0x00000000
-T39B8 001:407.065 JLINK_ReadReg(FPS3)
-T39B8 001:407.069 - 0.005ms returns 0x00000000
-T39B8 001:407.073 JLINK_ReadReg(FPS4)
-T39B8 001:407.077 - 0.005ms returns 0x00000000
-T39B8 001:407.081 JLINK_ReadReg(FPS5)
-T39B8 001:407.085 - 0.005ms returns 0x00000000
-T39B8 001:407.089 JLINK_ReadReg(FPS6)
-T39B8 001:407.093 - 0.005ms returns 0x00000000
-T39B8 001:407.097 JLINK_ReadReg(FPS7)
-T39B8 001:407.101 - 0.005ms returns 0x00000000
-T39B8 001:407.105 JLINK_ReadReg(FPS8)
-T39B8 001:407.109 - 0.005ms returns 0x00000000
-T39B8 001:407.113 JLINK_ReadReg(FPS9)
-T39B8 001:407.117 - 0.005ms returns 0x00000000
-T39B8 001:407.121 JLINK_ReadReg(FPS10)
-T39B8 001:407.125 - 0.005ms returns 0x00000000
-T39B8 001:407.129 JLINK_ReadReg(FPS11)
-T39B8 001:407.133 - 0.005ms returns 0x00000000
-T39B8 001:407.137 JLINK_ReadReg(FPS12)
-T39B8 001:407.141 - 0.005ms returns 0x00000000
-T39B8 001:407.146 JLINK_ReadReg(FPS13)
-T39B8 001:407.149 - 0.005ms returns 0x00000000
-T39B8 001:407.154 JLINK_ReadReg(FPS14)
-T39B8 001:407.157 - 0.005ms returns 0x00000000
-T39B8 001:407.162 JLINK_ReadReg(FPS15)
-T39B8 001:407.165 - 0.005ms returns 0x00000000
-T39B8 001:407.170 JLINK_ReadReg(FPS16)
-T39B8 001:407.173 - 0.005ms returns 0x00000000
-T39B8 001:407.178 JLINK_ReadReg(FPS17)
-T39B8 001:407.181 - 0.005ms returns 0x00000000
-T39B8 001:407.186 JLINK_ReadReg(FPS18)
-T39B8 001:407.189 - 0.005ms returns 0x00000000
-T39B8 001:407.194 JLINK_ReadReg(FPS19)
-T39B8 001:407.197 - 0.005ms returns 0x00000000
-T39B8 001:407.202 JLINK_ReadReg(FPS20)
-T39B8 001:407.206 - 0.005ms returns 0x00000000
-T39B8 001:407.210 JLINK_ReadReg(FPS21)
-T39B8 001:407.214 - 0.005ms returns 0x00000000
-T39B8 001:407.218 JLINK_ReadReg(FPS22)
-T39B8 001:407.222 - 0.005ms returns 0x00000000
-T39B8 001:407.226 JLINK_ReadReg(FPS23)
-T39B8 001:407.230 - 0.005ms returns 0x00000000
-T39B8 001:407.234 JLINK_ReadReg(FPS24)
-T39B8 001:407.238 - 0.005ms returns 0x00000000
-T39B8 001:407.242 JLINK_ReadReg(FPS25)
-T39B8 001:407.246 - 0.005ms returns 0x00000000
-T39B8 001:407.250 JLINK_ReadReg(FPS26)
-T39B8 001:407.254 - 0.005ms returns 0x00000000
-T39B8 001:407.258 JLINK_ReadReg(FPS27)
-T39B8 001:407.262 - 0.005ms returns 0x00000000
-T39B8 001:407.266 JLINK_ReadReg(FPS28)
-T39B8 001:407.270 - 0.005ms returns 0x00000000
-T39B8 001:407.274 JLINK_ReadReg(FPS29)
-T39B8 001:407.278 - 0.005ms returns 0x00000000
-T39B8 001:407.282 JLINK_ReadReg(FPS30)
-T39B8 001:407.286 - 0.005ms returns 0x00000000
-T39B8 001:407.290 JLINK_ReadReg(FPS31)
-T39B8 001:407.294 - 0.005ms returns 0x00000000
-T39B8 001:457.272 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 001:457.305 CPU_ReadMem(64 bytes @ 0x20000080)
-T39B8 001:458.086 -- Updating C cache (64 bytes @ 0x20000080)
-T39B8 001:458.101 -- Read from C cache (1 bytes @ 0x2000008A)
-T39B8 001:458.107 Data: 00
-T39B8 001:458.113 - 0.842ms returns 1 (0x1)
-T39B8 001:460.358 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 001:460.370 -- Read from C cache (1 bytes @ 0x2000008A)
-T39B8 001:460.376 Data: 00
-T39B8 001:460.382 - 0.026ms returns 1 (0x1)
-T39B8 001:460.399 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 001:460.404 -- Read from C cache (1 bytes @ 0x2000008A)
-T39B8 001:460.409 Data: 00
-T39B8 001:460.414 - 0.017ms returns 1 (0x1)
-T39B8 001:471.589 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 001:471.606 CPU_ReadMem(64 bytes @ 0x20000040)
-T39B8 001:472.300 -- Updating C cache (64 bytes @ 0x20000040)
-T39B8 001:472.349 -- Read from C cache (1 bytes @ 0x2000006C)
-T39B8 001:472.383 Data: 32
-T39B8 001:472.389 - 0.802ms returns 1 (0x1)
-T39B8 001:474.797 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 001:474.811 -- Read from C cache (1 bytes @ 0x2000006C)
-T39B8 001:474.817 Data: 32
-T39B8 001:474.823 - 0.028ms returns 1 (0x1)
-T39B8 001:474.840 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 001:474.845 -- Read from C cache (1 bytes @ 0x2000006C)
-T39B8 001:474.850 Data: 32
-T39B8 001:474.855 - 0.017ms returns 1 (0x1)
-T39B8 001:505.344 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:505.369 CPU_ReadMem(64 bytes @ 0x20000100)
-T39B8 001:506.320 -- Updating C cache (64 bytes @ 0x20000100)
-T39B8 001:506.332 -- Read from C cache (4 bytes @ 0x2000011C)
-T39B8 001:506.338 Data: 88 00 00 00
-T39B8 001:506.344 - 1.001ms returns 4 (0x4)
-T39B8 001:508.671 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:508.688 -- Read from C cache (4 bytes @ 0x2000011C)
-T39B8 001:508.694 Data: 88 00 00 00
-T39B8 001:508.700 - 0.030ms returns 4 (0x4)
-T39B8 001:508.717 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:508.722 -- Read from C cache (4 bytes @ 0x2000011C)
-T39B8 001:508.727 Data: 88 00 00 00
-T39B8 001:508.732 - 0.017ms returns 4 (0x4)
-T39B8 001:520.264 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:520.284 -- Read from C cache (4 bytes @ 0x20000120)
-T39B8 001:520.291 Data: 00 00 00 00
-T39B8 001:520.298 - 0.036ms returns 4 (0x4)
-T39B8 001:522.373 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:522.383 -- Read from C cache (4 bytes @ 0x20000120)
-T39B8 001:522.388 Data: 00 00 00 00
-T39B8 001:522.394 - 0.022ms returns 4 (0x4)
-T39B8 001:522.409 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:522.414 -- Read from C cache (4 bytes @ 0x20000120)
-T39B8 001:522.419 Data: 00 00 00 00
-T39B8 001:522.425 - 0.017ms returns 4 (0x4)
-T39B8 001:534.568 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:534.586 -- Read from C cache (4 bytes @ 0x20000124)
-T39B8 001:534.592 Data: 8F 00 00 00
-T39B8 001:534.598 - 0.032ms returns 4 (0x4)
-T39B8 001:536.606 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:536.613 -- Read from C cache (4 bytes @ 0x20000124)
-T39B8 001:536.619 Data: 8F 00 00 00
-T39B8 001:536.625 - 0.020ms returns 4 (0x4)
-T39B8 001:536.638 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:536.643 -- Read from C cache (4 bytes @ 0x20000124)
-T39B8 001:536.649 Data: 8F 00 00 00
-T39B8 001:536.654 - 0.017ms returns 4 (0x4)
-T39B8 001:550.274 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:550.292 -- Read from C cache (4 bytes @ 0x20000128)
-T39B8 001:550.298 Data: 3F 01 00 00
-T39B8 001:550.304 - 0.032ms returns 4 (0x4)
-T39B8 001:552.469 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:552.478 -- Read from C cache (4 bytes @ 0x20000128)
-T39B8 001:552.484 Data: 3F 01 00 00
-T39B8 001:552.489 - 0.021ms returns 4 (0x4)
-T39B8 001:552.504 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:552.508 -- Read from C cache (4 bytes @ 0x20000128)
-T39B8 001:552.514 Data: 3F 01 00 00
-T39B8 001:552.519 - 0.017ms returns 4 (0x4)
-T39B8 001:563.982 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:564.003 -- Read from C cache (4 bytes @ 0x2000012C)
-T39B8 001:564.010 Data: 00 0A 00 00
-T39B8 001:564.017 - 0.037ms returns 4 (0x4)
-T39B8 001:566.006 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:566.015 -- Read from C cache (4 bytes @ 0x2000012C)
-T39B8 001:566.020 Data: 00 0A 00 00
-T39B8 001:566.026 - 0.021ms returns 4 (0x4)
-T39B8 001:566.040 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:566.045 -- Read from C cache (4 bytes @ 0x2000012C)
-T39B8 001:566.050 Data: 00 0A 00 00
-T39B8 001:566.058 - 0.021ms returns 4 (0x4)
-T39B8 001:605.540 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:605.566 CPU_ReadMem(64 bytes @ 0x200002C0)
-T39B8 001:606.158 -- Updating C cache (64 bytes @ 0x200002C0)
-T39B8 001:606.174 -- Read from C cache (4 bytes @ 0x200002F0)
-T39B8 001:606.180 Data: 00 00 00 00
-T39B8 001:606.186 - 0.647ms returns 4 (0x4)
-T39B8 001:608.346 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:608.361 -- Read from C cache (4 bytes @ 0x200002F0)
-T39B8 001:608.367 Data: 00 00 00 00
-T39B8 001:608.372 - 0.028ms returns 4 (0x4)
-T39B8 001:608.388 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:608.393 -- Read from C cache (4 bytes @ 0x200002F0)
-T39B8 001:608.399 Data: 00 00 00 00
-T39B8 001:608.404 - 0.017ms returns 4 (0x4)
-T3DFC 001:665.277 JLINK_ReadMemEx(0x08000260, 0x2 Bytes, Flags = 0x02000000)
-T3DFC 001:665.301 -- Read from C cache (2 bytes @ 0x08000260)
-T3DFC 001:665.308 Data: 06 48
-T3DFC 001:665.314 - 0.039ms returns 2 (0x2)
-T3DFC 001:665.320 JLINK_HasError()
-T3DFC 001:665.326 JLINK_SetBPEx(Addr = 0x080299D0, Type = 0xFFFFFFF2)
-T3DFC 001:665.341 - 0.017ms returns 0x00000001
-T3DFC 001:665.346 JLINK_HasError()
-T3DFC 001:665.350 JLINK_HasError()
-T3DFC 001:665.355 JLINK_Go()
-T3DFC 001:665.384 CPU_WriteMem(4 bytes @ 0xE0002000)
-T3DFC 001:665.732 CPU_ReadMem(4 bytes @ 0xE0001000)
-T3DFC 001:665.993 CPU_WriteMem(4 bytes @ 0xE0002008)
-T3DFC 001:666.003 CPU_WriteMem(4 bytes @ 0xE000200C)
-T3DFC 001:666.012 CPU_WriteMem(4 bytes @ 0xE0002010)
-T3DFC 001:666.018 CPU_WriteMem(4 bytes @ 0xE0002014)
-T3DFC 001:666.023 CPU_WriteMem(4 bytes @ 0xE0002018)
-T3DFC 001:666.029 CPU_WriteMem(4 bytes @ 0xE000201C)
-T3DFC 001:667.304 CPU_WriteMem(4 bytes @ 0xE0001004)
-T3DFC 001:667.960 - 2.612ms
-T3DFC 001:768.663 JLINK_HasError()
-T3DFC 001:768.681 JLINK_IsHalted()
-T3DFC 001:771.273 - 2.604ms returns TRUE
-T3DFC 001:771.291 JLINK_HasError()
-T3DFC 001:771.298 JLINK_Halt()
-T3DFC 001:771.302 - 0.008ms returns 0x00
-T3DFC 001:771.310 JLINK_IsHalted()
-T3DFC 001:771.315 - 0.007ms returns TRUE
-T3DFC 001:771.320 JLINK_IsHalted()
-T3DFC 001:771.325 - 0.007ms returns TRUE
-T3DFC 001:771.331 JLINK_IsHalted()
-T3DFC 001:771.335 - 0.007ms returns TRUE
-T3DFC 001:771.342 JLINK_HasError()
-T3DFC 001:771.348 JLINK_ReadReg(R15 (PC))
-T3DFC 001:771.355 - 0.009ms returns 0x080299D0
-T3DFC 001:771.361 JLINK_ReadReg(XPSR)
-T3DFC 001:771.371 - 0.012ms returns 0x61000000
-T3DFC 001:771.381 JLINK_HasError()
-T3DFC 001:771.386 JLINK_ClrBPEx(BPHandle = 0x00000001)
-T3DFC 001:771.391 - 0.008ms returns 0x00
-T3DFC 001:771.397 JLINK_HasError()
-T3DFC 001:771.402 JLINK_HasError()
-T3DFC 001:771.407 JLINK_ReadMemU32(0xE000ED30, 0x1 Items)
-T3DFC 001:771.416 CPU_ReadMem(4 bytes @ 0xE000ED30)
-T3DFC 001:771.714 Data: 02 00 00 00
-T3DFC 001:771.721 - 0.316ms returns 1 (0x1)
-T3DFC 001:771.727 JLINK_ReadMemU32(0xE0001028, 0x1 Items)
-T3DFC 001:771.732 CPU_ReadMem(4 bytes @ 0xE0001028)
-T3DFC 001:771.985 Data: 00 00 00 00
-T3DFC 001:771.999 Debug reg: DWT_FUNC[0]
-T3DFC 001:772.005 - 0.280ms returns 1 (0x1)
-T3DFC 001:772.010 JLINK_ReadMemU32(0xE0001038, 0x1 Items)
-T3DFC 001:772.015 CPU_ReadMem(4 bytes @ 0xE0001038)
-T3DFC 001:772.259 Data: 00 02 00 00
-T3DFC 001:772.266 Debug reg: DWT_FUNC[1]
-T3DFC 001:772.271 - 0.263ms returns 1 (0x1)
-T3DFC 001:772.276 JLINK_ReadMemU32(0xE0001048, 0x1 Items)
-T3DFC 001:772.281 CPU_ReadMem(4 bytes @ 0xE0001048)
-T3DFC 001:772.587 Data: 00 00 00 00
-T3DFC 001:772.594 Debug reg: DWT_FUNC[2]
-T3DFC 001:772.599 - 0.324ms returns 1 (0x1)
-T3DFC 001:772.604 JLINK_ReadMemU32(0xE0001058, 0x1 Items)
-T3DFC 001:772.609 CPU_ReadMem(4 bytes @ 0xE0001058)
-T3DFC 001:772.910 Data: 00 00 00 00
-T3DFC 001:772.917 Debug reg: DWT_FUNC[3]
-T3DFC 001:772.936 - 0.342ms returns 1 (0x1)
-T3DFC 001:773.018 JLINK_HasError()
-T3DFC 001:773.024 JLINK_ReadReg(R0)
-T3DFC 001:773.029 - 0.006ms returns 0x080299D1
-T3DFC 001:773.033 JLINK_ReadReg(R1)
-T3DFC 001:773.038 - 0.006ms returns 0x200175A8
-T3DFC 001:773.045 JLINK_ReadReg(R2)
-T3DFC 001:773.050 - 0.007ms returns 0x00000000
-T3DFC 001:773.054 JLINK_ReadReg(R3)
-T3DFC 001:773.058 - 0.005ms returns 0x08005911
-T3DFC 001:773.063 JLINK_ReadReg(R4)
-T3DFC 001:773.067 - 0.005ms returns 0x08058E70
-T3DFC 001:773.071 JLINK_ReadReg(R5)
-T3DFC 001:773.075 - 0.006ms returns 0x08058E70
-T3DFC 001:773.081 JLINK_ReadReg(R6)
-T3DFC 001:773.084 - 0.005ms returns 0x00000000
-T3DFC 001:773.089 JLINK_ReadReg(R7)
-T3DFC 001:773.093 - 0.005ms returns 0x00000000
-T3DFC 001:773.098 JLINK_ReadReg(R8)
-T3DFC 001:773.102 - 0.006ms returns 0x00000000
-T3DFC 001:773.107 JLINK_ReadReg(R9)
-T3DFC 001:773.110 - 0.006ms returns 0x00000000
-T3DFC 001:773.115 JLINK_ReadReg(R10)
-T3DFC 001:773.119 - 0.006ms returns 0x00000000
-T3DFC 001:773.124 JLINK_ReadReg(R11)
-T3DFC 001:773.128 - 0.006ms returns 0x00000000
-T3DFC 001:773.132 JLINK_ReadReg(R12)
-T3DFC 001:773.137 - 0.006ms returns 0x00000000
-T3DFC 001:773.141 JLINK_ReadReg(R13 (SP))
-T3DFC 001:773.146 - 0.006ms returns 0x200175A8
-T3DFC 001:773.150 JLINK_ReadReg(R14)
-T3DFC 001:773.154 - 0.006ms returns 0x080009A5
-T3DFC 001:773.159 JLINK_ReadReg(R15 (PC))
-T3DFC 001:773.163 - 0.006ms returns 0x080299D0
-T3DFC 001:773.168 JLINK_ReadReg(XPSR)
-T3DFC 001:773.172 - 0.006ms returns 0x61000000
-T3DFC 001:773.176 JLINK_ReadReg(MSP)
-T3DFC 001:773.180 - 0.005ms returns 0x200175A8
-T3DFC 001:773.185 JLINK_ReadReg(PSP)
-T3DFC 001:773.189 - 0.006ms returns 0x00000000
-T3DFC 001:773.194 JLINK_ReadReg(CFBP)
-T3DFC 001:773.198 - 0.006ms returns 0x00000000
-T3DFC 001:773.203 JLINK_ReadReg(FPSCR)
-T3DFC 001:777.127 - 3.932ms returns 0x00000000
-T3DFC 001:777.140 JLINK_ReadReg(FPS0)
-T3DFC 001:777.147 - 0.008ms returns 0x00000000
-T3DFC 001:777.152 JLINK_ReadReg(FPS1)
-T3DFC 001:777.156 - 0.006ms returns 0x00000000
-T3DFC 001:777.161 JLINK_ReadReg(FPS2)
-T3DFC 001:777.165 - 0.006ms returns 0x00000000
-T3DFC 001:777.170 JLINK_ReadReg(FPS3)
-T3DFC 001:777.174 - 0.006ms returns 0x00000000
-T3DFC 001:777.178 JLINK_ReadReg(FPS4)
-T3DFC 001:777.183 - 0.006ms returns 0x00000000
-T3DFC 001:777.187 JLINK_ReadReg(FPS5)
-T3DFC 001:777.191 - 0.005ms returns 0x00000000
-T3DFC 001:777.196 JLINK_ReadReg(FPS6)
-T3DFC 001:777.200 - 0.007ms returns 0x00000000
-T3DFC 001:777.206 JLINK_ReadReg(FPS7)
-T3DFC 001:777.210 - 0.006ms returns 0x00000000
-T3DFC 001:777.214 JLINK_ReadReg(FPS8)
-T3DFC 001:777.220 - 0.007ms returns 0x00000000
-T3DFC 001:777.224 JLINK_ReadReg(FPS9)
-T3DFC 001:777.228 - 0.006ms returns 0x00000000
-T3DFC 001:777.233 JLINK_ReadReg(FPS10)
-T3DFC 001:777.237 - 0.006ms returns 0x00000000
-T3DFC 001:777.242 JLINK_ReadReg(FPS11)
-T3DFC 001:777.246 - 0.005ms returns 0x00000000
-T3DFC 001:777.251 JLINK_ReadReg(FPS12)
-T3DFC 001:777.255 - 0.006ms returns 0x00000000
-T3DFC 001:777.259 JLINK_ReadReg(FPS13)
-T3DFC 001:777.263 - 0.005ms returns 0x00000000
-T3DFC 001:777.268 JLINK_ReadReg(FPS14)
-T3DFC 001:777.272 - 0.005ms returns 0x00000000
-T3DFC 001:777.276 JLINK_ReadReg(FPS15)
-T3DFC 001:777.280 - 0.005ms returns 0x00000000
-T3DFC 001:777.285 JLINK_ReadReg(FPS16)
-T3DFC 001:777.288 - 0.005ms returns 0x00000000
-T3DFC 001:777.293 JLINK_ReadReg(FPS17)
-T3DFC 001:777.297 - 0.005ms returns 0x00000000
-T3DFC 001:777.302 JLINK_ReadReg(FPS18)
-T3DFC 001:777.306 - 0.006ms returns 0x00000000
-T3DFC 001:777.310 JLINK_ReadReg(FPS19)
-T3DFC 001:777.314 - 0.005ms returns 0x00000000
-T3DFC 001:777.319 JLINK_ReadReg(FPS20)
-T3DFC 001:777.322 - 0.005ms returns 0x00000000
-T3DFC 001:777.327 JLINK_ReadReg(FPS21)
-T3DFC 001:777.331 - 0.006ms returns 0x00000000
-T3DFC 001:777.336 JLINK_ReadReg(FPS22)
-T3DFC 001:777.340 - 0.006ms returns 0x00000000
-T3DFC 001:777.345 JLINK_ReadReg(FPS23)
-T3DFC 001:777.349 - 0.005ms returns 0x00000000
-T3DFC 001:777.353 JLINK_ReadReg(FPS24)
-T3DFC 001:777.357 - 0.006ms returns 0x00000000
-T3DFC 001:777.362 JLINK_ReadReg(FPS25)
-T3DFC 001:777.366 - 0.005ms returns 0x00000000
-T3DFC 001:777.370 JLINK_ReadReg(FPS26)
-T3DFC 001:777.375 - 0.006ms returns 0x00000000
-T3DFC 001:777.379 JLINK_ReadReg(FPS27)
-T3DFC 001:777.383 - 0.005ms returns 0x00000000
-T3DFC 001:777.416 JLINK_ReadReg(FPS28)
-T3DFC 001:777.421 - 0.006ms returns 0x00000000
-T3DFC 001:777.426 JLINK_ReadReg(FPS29)
-T3DFC 001:777.430 - 0.006ms returns 0x00000000
-T3DFC 001:777.435 JLINK_ReadReg(FPS30)
-T3DFC 001:777.439 - 0.006ms returns 0x00000000
-T3DFC 001:777.444 JLINK_ReadReg(FPS31)
-T3DFC 001:777.448 - 0.006ms returns 0x00000000
-T3DFC 001:777.456 JLINK_ReadMemEx(0x200000B8, 0x4 Bytes, Flags = 0x02000000)
-T3DFC 001:777.465 CPU_ReadMem(64 bytes @ 0x20000080)
-T3DFC 001:778.160 -- Updating C cache (64 bytes @ 0x20000080)
-T3DFC 001:778.195 -- Read from C cache (4 bytes @ 0x200000B8)
-T3DFC 001:778.201 Data: 00 00 00 00
-T3DFC 001:778.207 - 0.753ms returns 4 (0x4)
-T39B8 001:778.828 JLINK_ReadMemEx(0xE000ED28, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:778.837 CPU_ReadMem(4 bytes @ 0xE000ED28)
-T39B8 001:779.097 Data: 00 00 00 00
-T39B8 001:779.105 - 0.279ms returns 4 (0x4)
-T39B8 001:779.606 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 001:779.618 -- Read from C cache (1 bytes @ 0x2000008A)
-T39B8 001:779.624 Data: 00
-T39B8 001:779.630 - 0.025ms returns 1 (0x1)
-T39B8 001:779.823 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 001:779.833 CPU_ReadMem(64 bytes @ 0x20000040)
-T39B8 001:780.468 -- Updating C cache (64 bytes @ 0x20000040)
-T39B8 001:780.475 -- Read from C cache (1 bytes @ 0x2000006C)
-T39B8 001:780.481 Data: 32
-T39B8 001:780.486 - 0.665ms returns 1 (0x1)
-T39B8 001:780.648 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:780.657 CPU_ReadMem(64 bytes @ 0x20000100)
-T39B8 001:781.263 -- Updating C cache (64 bytes @ 0x20000100)
-T39B8 001:781.271 -- Read from C cache (4 bytes @ 0x2000011C)
-T39B8 001:781.276 Data: 00 00 00 00
-T39B8 001:781.282 - 0.637ms returns 4 (0x4)
-T39B8 001:781.420 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:781.428 -- Read from C cache (4 bytes @ 0x20000120)
-T39B8 001:781.434 Data: 00 00 00 00
-T39B8 001:781.440 - 0.022ms returns 4 (0x4)
-T39B8 001:781.536 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:781.542 -- Read from C cache (4 bytes @ 0x20000124)
-T39B8 001:781.548 Data: 00 00 00 00
-T39B8 001:781.553 - 0.019ms returns 4 (0x4)
-T39B8 001:781.643 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:781.649 -- Read from C cache (4 bytes @ 0x20000128)
-T39B8 001:781.655 Data: 00 00 00 00
-T39B8 001:781.661 - 0.019ms returns 4 (0x4)
-T39B8 001:781.751 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:781.757 -- Read from C cache (4 bytes @ 0x2000012C)
-T39B8 001:781.762 Data: 00 00 00 00
-T39B8 001:781.768 - 0.019ms returns 4 (0x4)
-T39B8 001:781.894 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 001:781.903 CPU_ReadMem(64 bytes @ 0x200002C0)
-T39B8 001:782.509 -- Updating C cache (64 bytes @ 0x200002C0)
-T39B8 001:782.530 -- Read from C cache (4 bytes @ 0x200002F0)
-T39B8 001:782.536 Data: 00 00 00 00
-T39B8 001:782.541 - 0.648ms returns 4 (0x4)
-T39B8 001:789.508 JLINK_ReadMemEx(0x080298D0, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:789.525 CPU_ReadMem(128 bytes @ 0x080298C0)
-T39B8 001:790.498 -- Updating C cache (128 bytes @ 0x080298C0)
-T39B8 001:790.511 -- Read from C cache (60 bytes @ 0x080298D0)
-T39B8 001:790.518 Data: 01 E0 04 2D 15 D2 20 68 39 68 30 44 88 47 50 B1 ...
-T39B8 001:790.523 - 1.017ms returns 60 (0x3C)
-T39B8 001:790.530 JLINK_ReadMemEx(0x080298D0, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:790.536 -- Read from C cache (2 bytes @ 0x080298D0)
-T39B8 001:790.541 Data: 01 E0
-T39B8 001:790.547 - 0.019ms returns 2 (0x2)
-T39B8 001:790.591 JLINK_ReadMemEx(0x080298D2, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:790.596 -- Read from C cache (2 bytes @ 0x080298D2)
-T39B8 001:790.602 Data: 04 2D
-T39B8 001:790.607 - 0.018ms returns 2 (0x2)
-T39B8 001:790.613 JLINK_ReadMemEx(0x080298D2, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:790.617 -- Read from C cache (2 bytes @ 0x080298D2)
-T39B8 001:790.625 Data: 04 2D
-T39B8 001:790.630 - 0.019ms returns 2 (0x2)
-T39B8 001:790.635 JLINK_ReadMemEx(0x080298D4, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:790.639 -- Read from C cache (60 bytes @ 0x080298D4)
-T39B8 001:790.645 Data: 15 D2 20 68 39 68 30 44 88 47 50 B1 69 1C CD B2 ...
-T39B8 001:790.651 - 0.017ms returns 60 (0x3C)
-T39B8 001:790.655 JLINK_ReadMemEx(0x080298D4, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:790.660 -- Read from C cache (2 bytes @ 0x080298D4)
-T39B8 001:790.665 Data: 15 D2
-T39B8 001:790.671 - 0.017ms returns 2 (0x2)
-T39B8 001:790.675 JLINK_ReadMemEx(0x080298D4, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:790.680 -- Read from C cache (60 bytes @ 0x080298D4)
-T39B8 001:790.685 Data: 15 D2 20 68 39 68 30 44 88 47 50 B1 69 1C CD B2 ...
-T39B8 001:790.691 - 0.017ms returns 60 (0x3C)
-T39B8 001:790.696 JLINK_ReadMemEx(0x080298D4, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:790.700 -- Read from C cache (2 bytes @ 0x080298D4)
-T39B8 001:790.705 Data: 15 D2
-T39B8 001:790.711 - 0.017ms returns 2 (0x2)
-T39B8 001:790.715 JLINK_ReadMemEx(0x080298D6, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:790.719 -- Read from C cache (2 bytes @ 0x080298D6)
-T39B8 001:790.725 Data: 20 68
-T39B8 001:790.730 - 0.017ms returns 2 (0x2)
-T39B8 001:790.735 JLINK_ReadMemEx(0x080298D6, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:790.739 -- Read from C cache (2 bytes @ 0x080298D6)
-T39B8 001:790.745 Data: 20 68
-T39B8 001:790.750 - 0.017ms returns 2 (0x2)
-T39B8 001:790.755 JLINK_ReadMemEx(0x080298D8, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:790.759 -- Read from C cache (60 bytes @ 0x080298D8)
-T39B8 001:790.765 Data: 39 68 30 44 88 47 50 B1 69 1C CD B2 00 28 F4 D0 ...
-T39B8 001:790.770 - 0.017ms returns 60 (0x3C)
-T39B8 001:790.775 JLINK_ReadMemEx(0x080298D8, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:790.779 -- Read from C cache (2 bytes @ 0x080298D8)
-T39B8 001:790.785 Data: 39 68
-T39B8 001:790.791 - 0.017ms returns 2 (0x2)
-T39B8 001:790.795 JLINK_ReadMemEx(0x080298D8, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:790.800 -- Read from C cache (60 bytes @ 0x080298D8)
-T39B8 001:790.805 Data: 39 68 30 44 88 47 50 B1 69 1C CD B2 00 28 F4 D0 ...
-T39B8 001:790.811 - 0.017ms returns 60 (0x3C)
-T39B8 001:790.816 JLINK_ReadMemEx(0x080298D8, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:790.820 -- Read from C cache (2 bytes @ 0x080298D8)
-T39B8 001:790.825 Data: 39 68
-T39B8 001:790.831 - 0.017ms returns 2 (0x2)
-T39B8 001:790.835 JLINK_ReadMemEx(0x080298DA, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:790.839 -- Read from C cache (2 bytes @ 0x080298DA)
-T39B8 001:790.845 Data: 30 44
-T39B8 001:790.850 - 0.017ms returns 2 (0x2)
-T39B8 001:790.855 JLINK_ReadMemEx(0x080298DA, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:790.859 -- Read from C cache (2 bytes @ 0x080298DA)
-T39B8 001:790.865 Data: 30 44
-T39B8 001:790.870 - 0.017ms returns 2 (0x2)
-T39B8 001:790.875 JLINK_ReadMemEx(0x080298DC, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:790.879 -- Read from C cache (60 bytes @ 0x080298DC)
-T39B8 001:790.885 Data: 88 47 50 B1 69 1C CD B2 00 28 F4 D0 20 68 00 90 ...
-T39B8 001:790.890 - 0.017ms returns 60 (0x3C)
-T39B8 001:790.895 JLINK_ReadMemEx(0x080298DC, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:790.899 -- Read from C cache (2 bytes @ 0x080298DC)
-T39B8 001:790.904 Data: 88 47
-T39B8 001:790.910 - 0.017ms returns 2 (0x2)
-T39B8 001:790.915 JLINK_ReadMemEx(0x080298DC, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:790.919 -- Read from C cache (60 bytes @ 0x080298DC)
-T39B8 001:790.925 Data: 88 47 50 B1 69 1C CD B2 00 28 F4 D0 20 68 00 90 ...
-T39B8 001:790.930 - 0.017ms returns 60 (0x3C)
-T39B8 001:790.935 JLINK_ReadMemEx(0x080298DC, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:790.939 -- Read from C cache (2 bytes @ 0x080298DC)
-T39B8 001:790.944 Data: 88 47
-T39B8 001:790.950 - 0.016ms returns 2 (0x2)
-T39B8 001:790.955 JLINK_ReadMemEx(0x080298DE, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:790.959 -- Read from C cache (2 bytes @ 0x080298DE)
-T39B8 001:790.965 Data: 50 B1
-T39B8 001:790.971 - 0.018ms returns 2 (0x2)
-T39B8 001:790.976 JLINK_ReadMemEx(0x080298DE, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:790.980 -- Read from C cache (2 bytes @ 0x080298DE)
-T39B8 001:790.986 Data: 50 B1
-T39B8 001:790.991 - 0.017ms returns 2 (0x2)
-T39B8 001:790.996 JLINK_ReadMemEx(0x080298E0, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:791.000 -- Read from C cache (60 bytes @ 0x080298E0)
-T39B8 001:791.006 Data: 69 1C CD B2 00 28 F4 D0 20 68 00 90 7A 68 69 46 ...
-T39B8 001:791.012 - 0.017ms returns 60 (0x3C)
-T39B8 001:791.016 JLINK_ReadMemEx(0x080298E0, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.021 -- Read from C cache (2 bytes @ 0x080298E0)
-T39B8 001:791.026 Data: 69 1C
-T39B8 001:791.032 - 0.017ms returns 2 (0x2)
-T39B8 001:791.036 JLINK_ReadMemEx(0x080298E0, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:791.041 -- Read from C cache (60 bytes @ 0x080298E0)
-T39B8 001:791.047 Data: 69 1C CD B2 00 28 F4 D0 20 68 00 90 7A 68 69 46 ...
-T39B8 001:791.052 - 0.017ms returns 60 (0x3C)
-T39B8 001:791.057 JLINK_ReadMemEx(0x080298E0, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.061 -- Read from C cache (2 bytes @ 0x080298E0)
-T39B8 001:791.067 Data: 69 1C
-T39B8 001:791.072 - 0.017ms returns 2 (0x2)
-T39B8 001:791.077 JLINK_ReadMemEx(0x080298E2, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.081 -- Read from C cache (2 bytes @ 0x080298E2)
-T39B8 001:791.087 Data: CD B2
-T39B8 001:791.092 - 0.017ms returns 2 (0x2)
-T39B8 001:791.097 JLINK_ReadMemEx(0x080298E2, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.101 -- Read from C cache (2 bytes @ 0x080298E2)
-T39B8 001:791.107 Data: CD B2
-T39B8 001:791.112 - 0.017ms returns 2 (0x2)
-T39B8 001:791.117 JLINK_ReadMemEx(0x080298E4, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:791.121 -- Read from C cache (60 bytes @ 0x080298E4)
-T39B8 001:791.127 Data: 00 28 F4 D0 20 68 00 90 7A 68 69 46 30 46 90 47 ...
-T39B8 001:791.132 - 0.017ms returns 60 (0x3C)
-T39B8 001:791.137 JLINK_ReadMemEx(0x080298E4, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.141 -- Read from C cache (2 bytes @ 0x080298E4)
-T39B8 001:791.147 Data: 00 28
-T39B8 001:791.152 - 0.017ms returns 2 (0x2)
-T39B8 001:791.157 JLINK_ReadMemEx(0x080298E4, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:791.161 -- Read from C cache (60 bytes @ 0x080298E4)
-T39B8 001:791.168 Data: 00 28 F4 D0 20 68 00 90 7A 68 69 46 30 46 90 47 ...
-T39B8 001:791.173 - 0.018ms returns 60 (0x3C)
-T39B8 001:791.177 JLINK_ReadMemEx(0x080298E4, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.182 -- Read from C cache (2 bytes @ 0x080298E4)
-T39B8 001:791.187 Data: 00 28
-T39B8 001:791.193 - 0.017ms returns 2 (0x2)
-T39B8 001:791.198 JLINK_ReadMemEx(0x080298E6, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.202 -- Read from C cache (2 bytes @ 0x080298E6)
-T39B8 001:791.209 Data: F4 D0
-T39B8 001:791.215 - 0.018ms returns 2 (0x2)
-T39B8 001:791.219 JLINK_ReadMemEx(0x080298E6, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.224 -- Read from C cache (2 bytes @ 0x080298E6)
-T39B8 001:791.229 Data: F4 D0
-T39B8 001:791.235 - 0.017ms returns 2 (0x2)
-T39B8 001:791.239 JLINK_ReadMemEx(0x080298E8, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:791.244 -- Read from C cache (60 bytes @ 0x080298E8)
-T39B8 001:791.249 Data: 20 68 00 90 7A 68 69 46 30 46 90 47 F8 BD 21 68 ...
-T39B8 001:791.255 - 0.017ms returns 60 (0x3C)
-T39B8 001:791.260 JLINK_ReadMemEx(0x080298E8, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.264 -- Read from C cache (2 bytes @ 0x080298E8)
-T39B8 001:791.270 Data: 20 68
-T39B8 001:791.276 - 0.018ms returns 2 (0x2)
-T39B8 001:791.281 JLINK_ReadMemEx(0x080298E8, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:791.285 -- Read from C cache (60 bytes @ 0x080298E8)
-T39B8 001:791.291 Data: 20 68 00 90 7A 68 69 46 30 46 90 47 F8 BD 21 68 ...
-T39B8 001:791.296 - 0.017ms returns 60 (0x3C)
-T39B8 001:791.301 JLINK_ReadMemEx(0x080298E8, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.305 -- Read from C cache (2 bytes @ 0x080298E8)
-T39B8 001:791.311 Data: 20 68
-T39B8 001:791.317 - 0.018ms returns 2 (0x2)
-T39B8 001:791.321 JLINK_ReadMemEx(0x080298EA, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.325 -- Read from C cache (2 bytes @ 0x080298EA)
-T39B8 001:791.331 Data: 00 90
-T39B8 001:791.337 - 0.017ms returns 2 (0x2)
-T39B8 001:791.341 JLINK_ReadMemEx(0x080298EA, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.345 -- Read from C cache (2 bytes @ 0x080298EA)
-T39B8 001:791.351 Data: 00 90
-T39B8 001:791.356 - 0.017ms returns 2 (0x2)
-T39B8 001:791.361 JLINK_ReadMemEx(0x080298EC, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:791.365 -- Read from C cache (60 bytes @ 0x080298EC)
-T39B8 001:791.371 Data: 7A 68 69 46 30 46 90 47 F8 BD 21 68 00 29 1C BF ...
-T39B8 001:791.377 - 0.018ms returns 60 (0x3C)
-T39B8 001:791.382 JLINK_ReadMemEx(0x080298EC, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.386 -- Read from C cache (2 bytes @ 0x080298EC)
-T39B8 001:791.392 Data: 7A 68
-T39B8 001:791.397 - 0.017ms returns 2 (0x2)
-T39B8 001:791.402 JLINK_ReadMemEx(0x080298EC, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:791.407 -- Read from C cache (60 bytes @ 0x080298EC)
-T39B8 001:791.413 Data: 7A 68 69 46 30 46 90 47 F8 BD 21 68 00 29 1C BF ...
-T39B8 001:791.418 - 0.017ms returns 60 (0x3C)
-T39B8 001:791.423 JLINK_ReadMemEx(0x080298EC, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.427 -- Read from C cache (2 bytes @ 0x080298EC)
-T39B8 001:791.433 Data: 7A 68
-T39B8 001:791.438 - 0.017ms returns 2 (0x2)
-T39B8 001:791.444 JLINK_ReadMemEx(0x080298EE, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.448 -- Read from C cache (2 bytes @ 0x080298EE)
-T39B8 001:791.453 Data: 69 46
-T39B8 001:791.459 - 0.017ms returns 2 (0x2)
-T39B8 001:791.464 JLINK_ReadMemEx(0x080298EE, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.468 -- Read from C cache (2 bytes @ 0x080298EE)
-T39B8 001:791.474 Data: 69 46
-T39B8 001:791.479 - 0.017ms returns 2 (0x2)
-T39B8 001:791.484 JLINK_ReadMemEx(0x080298F0, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:791.488 -- Read from C cache (60 bytes @ 0x080298F0)
-T39B8 001:791.494 Data: 30 46 90 47 F8 BD 21 68 00 29 1C BF 49 1E 21 60 ...
-T39B8 001:791.499 - 0.017ms returns 60 (0x3C)
-T39B8 001:791.504 JLINK_ReadMemEx(0x080298F0, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.508 -- Read from C cache (2 bytes @ 0x080298F0)
-T39B8 001:791.513 Data: 30 46
-T39B8 001:791.519 - 0.016ms returns 2 (0x2)
-T39B8 001:791.523 JLINK_ReadMemEx(0x080298F0, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:791.528 -- Read from C cache (60 bytes @ 0x080298F0)
-T39B8 001:791.533 Data: 30 46 90 47 F8 BD 21 68 00 29 1C BF 49 1E 21 60 ...
-T39B8 001:791.539 - 0.017ms returns 60 (0x3C)
-T39B8 001:791.543 JLINK_ReadMemEx(0x080298F0, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.547 -- Read from C cache (2 bytes @ 0x080298F0)
-T39B8 001:791.553 Data: 30 46
-T39B8 001:791.559 - 0.017ms returns 2 (0x2)
-T39B8 001:791.564 JLINK_ReadMemEx(0x080298F2, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.568 -- Read from C cache (2 bytes @ 0x080298F2)
-T39B8 001:791.574 Data: 90 47
-T39B8 001:791.579 - 0.017ms returns 2 (0x2)
-T39B8 001:791.584 JLINK_ReadMemEx(0x080298F2, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.588 -- Read from C cache (2 bytes @ 0x080298F2)
-T39B8 001:791.594 Data: 90 47
-T39B8 001:791.599 - 0.017ms returns 2 (0x2)
-T39B8 001:791.604 JLINK_ReadMemEx(0x080298F4, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:791.608 -- Read from C cache (60 bytes @ 0x080298F4)
-T39B8 001:791.615 Data: F8 BD 21 68 00 29 1C BF 49 1E 21 60 EE D1 00 20 ...
-T39B8 001:791.620 - 0.018ms returns 60 (0x3C)
-T39B8 001:791.625 JLINK_ReadMemEx(0x080298F4, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:791.629 -- Read from C cache (2 bytes @ 0x080298F4)
-T39B8 001:791.635 Data: F8 BD
-T39B8 001:791.641 - 0.017ms returns 2 (0x2)
-T39B8 001:791.645 JLINK_ReadMemEx(0x080298F4, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:792.186 -- Read from C cache (60 bytes @ 0x080298F4)
-T39B8 001:792.192 Data: F8 BD 21 68 00 29 1C BF 49 1E 21 60 EE D1 00 20 ...
-T39B8 001:792.199 - 0.555ms returns 60 (0x3C)
-T39B8 001:792.203 JLINK_ReadMemEx(0x080298F4, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:792.207 -- Read from C cache (2 bytes @ 0x080298F4)
-T39B8 001:792.213 Data: F8 BD
-T39B8 001:792.219 - 0.017ms returns 2 (0x2)
-T39B8 001:792.223 JLINK_ReadMemEx(0x080298F6, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:792.228 -- Read from C cache (2 bytes @ 0x080298F6)
-T39B8 001:792.233 Data: 21 68
-T39B8 001:792.239 - 0.017ms returns 2 (0x2)
-T39B8 001:792.243 JLINK_ReadMemEx(0x080298F6, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:792.248 -- Read from C cache (2 bytes @ 0x080298F6)
-T39B8 001:792.253 Data: 21 68
-T39B8 001:792.258 - 0.017ms returns 2 (0x2)
-T39B8 001:792.263 JLINK_ReadMemEx(0x080298F8, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:792.267 -- Read from C cache (60 bytes @ 0x080298F8)
-T39B8 001:792.273 Data: 00 29 1C BF 49 1E 21 60 EE D1 00 20 F8 BD 00 00 ...
-T39B8 001:792.279 - 0.017ms returns 60 (0x3C)
-T39B8 001:792.283 JLINK_ReadMemEx(0x080298F8, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:792.287 -- Read from C cache (2 bytes @ 0x080298F8)
-T39B8 001:792.293 Data: 00 29
-T39B8 001:792.299 - 0.017ms returns 2 (0x2)
-T39B8 001:792.303 JLINK_ReadMemEx(0x080298F8, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:792.307 -- Read from C cache (60 bytes @ 0x080298F8)
-T39B8 001:792.313 Data: 00 29 1C BF 49 1E 21 60 EE D1 00 20 F8 BD 00 00 ...
-T39B8 001:792.318 - 0.017ms returns 60 (0x3C)
-T39B8 001:792.323 JLINK_ReadMemEx(0x080298F8, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:792.327 -- Read from C cache (2 bytes @ 0x080298F8)
-T39B8 001:792.333 Data: 00 29
-T39B8 001:792.338 - 0.017ms returns 2 (0x2)
-T39B8 001:792.343 JLINK_ReadMemEx(0x080298FA, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:792.347 -- Read from C cache (2 bytes @ 0x080298FA)
-T39B8 001:792.352 Data: 1C BF
-T39B8 001:792.358 - 0.017ms returns 2 (0x2)
-T39B8 001:792.363 JLINK_ReadMemEx(0x080298FA, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:792.367 -- Read from C cache (2 bytes @ 0x080298FA)
-T39B8 001:792.372 Data: 1C BF
-T39B8 001:792.378 - 0.017ms returns 2 (0x2)
-T39B8 001:792.383 JLINK_ReadMemEx(0x080298FC, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:792.387 -- Read from C cache (60 bytes @ 0x080298FC)
-T39B8 001:792.485 Data: 49 1E 21 60 EE D1 00 20 F8 BD 00 00 AC 02 00 20 ...
-T39B8 001:792.490 - 0.109ms returns 60 (0x3C)
-T39B8 001:792.495 JLINK_ReadMemEx(0x080298FC, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:792.499 -- Read from C cache (2 bytes @ 0x080298FC)
-T39B8 001:792.505 Data: 49 1E
-T39B8 001:792.510 - 0.017ms returns 2 (0x2)
-T39B8 001:792.515 JLINK_ReadMemEx(0x08029900, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:792.519 -- Read from C cache (60 bytes @ 0x08029900)
-T39B8 001:792.525 Data: EE D1 00 20 F8 BD 00 00 AC 02 00 20 00 78 10 F0 ...
-T39B8 001:792.531 - 0.017ms returns 60 (0x3C)
-T39B8 001:792.535 JLINK_ReadMemEx(0x08029900, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:792.539 -- Read from C cache (2 bytes @ 0x08029900)
-T39B8 001:792.545 Data: EE D1
-T39B8 001:792.551 - 0.017ms returns 2 (0x2)
-T39B8 001:792.555 JLINK_ReadMemEx(0x08029902, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:792.559 -- Read from C cache (2 bytes @ 0x08029902)
-T39B8 001:792.565 Data: 00 20
-T39B8 001:792.571 - 0.017ms returns 2 (0x2)
-T39B8 001:792.575 JLINK_ReadMemEx(0x08029902, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:792.579 -- Read from C cache (2 bytes @ 0x08029902)
-T39B8 001:792.585 Data: 00 20
-T39B8 001:792.591 - 0.017ms returns 2 (0x2)
-T39B8 001:792.595 JLINK_ReadMemEx(0x08029904, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:792.599 -- Read from C cache (60 bytes @ 0x08029904)
-T39B8 001:792.605 Data: F8 BD 00 00 AC 02 00 20 00 78 10 F0 80 0F 04 BF ...
-T39B8 001:792.611 - 0.017ms returns 60 (0x3C)
-T39B8 001:792.615 JLINK_ReadMemEx(0x08029904, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:792.619 -- Read from C cache (2 bytes @ 0x08029904)
-T39B8 001:792.625 Data: F8 BD
-T39B8 001:792.631 - 0.017ms returns 2 (0x2)
-T39B8 001:792.636 JLINK_ReadMemEx(0x08029904, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:792.641 -- Read from C cache (60 bytes @ 0x08029904)
-T39B8 001:792.647 Data: F8 BD 00 00 AC 02 00 20 00 78 10 F0 80 0F 04 BF ...
-T39B8 001:792.652 - 0.017ms returns 60 (0x3C)
-T39B8 001:792.657 JLINK_ReadMemEx(0x08029904, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:792.661 -- Read from C cache (2 bytes @ 0x08029904)
-T39B8 001:792.666 Data: F8 BD
-T39B8 001:792.672 - 0.017ms returns 2 (0x2)
-T39B8 001:792.676 JLINK_ReadMemEx(0x08029906, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:792.681 -- Read from C cache (2 bytes @ 0x08029906)
-T39B8 001:792.686 Data: 00 00
-T39B8 001:792.692 - 0.017ms returns 2 (0x2)
-T39B8 001:792.696 JLINK_ReadMemEx(0x0802990C, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:792.702 CPU_ReadMem(64 bytes @ 0x08029940)
-T39B8 001:793.362 -- Updating C cache (64 bytes @ 0x08029940)
-T39B8 001:793.370 -- Read from C cache (60 bytes @ 0x0802990C)
-T39B8 001:793.376 Data: 00 78 10 F0 80 0F 04 BF 01 20 70 47 00 F0 E0 01 ...
-T39B8 001:793.383 - 0.688ms returns 60 (0x3C)
-T39B8 001:793.389 JLINK_ReadMemEx(0x0802990C, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.393 -- Read from C cache (2 bytes @ 0x0802990C)
-T39B8 001:793.399 Data: 00 78
-T39B8 001:793.404 - 0.017ms returns 2 (0x2)
-T39B8 001:793.409 JLINK_ReadMemEx(0x0802990E, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.413 -- Read from C cache (2 bytes @ 0x0802990E)
-T39B8 001:793.419 Data: 10 F0
-T39B8 001:793.424 - 0.017ms returns 2 (0x2)
-T39B8 001:793.429 JLINK_ReadMemEx(0x0802990E, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.434 -- Read from C cache (2 bytes @ 0x0802990E)
-T39B8 001:793.439 Data: 10 F0
-T39B8 001:793.445 - 0.017ms returns 2 (0x2)
-T39B8 001:793.450 JLINK_ReadMemEx(0x08029910, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:793.454 -- Read from C cache (60 bytes @ 0x08029910)
-T39B8 001:793.460 Data: 80 0F 04 BF 01 20 70 47 00 F0 E0 01 C0 29 04 BF ...
-T39B8 001:793.465 - 0.017ms returns 60 (0x3C)
-T39B8 001:793.470 JLINK_ReadMemEx(0x08029910, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.474 -- Read from C cache (2 bytes @ 0x08029910)
-T39B8 001:793.479 Data: 80 0F
-T39B8 001:793.485 - 0.017ms returns 2 (0x2)
-T39B8 001:793.490 JLINK_ReadMemEx(0x08029912, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.494 -- Read from C cache (2 bytes @ 0x08029912)
-T39B8 001:793.500 Data: 04 BF
-T39B8 001:793.506 - 0.017ms returns 2 (0x2)
-T39B8 001:793.511 JLINK_ReadMemEx(0x08029914, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:793.515 -- Read from C cache (60 bytes @ 0x08029914)
-T39B8 001:793.521 Data: 01 20 70 47 00 F0 E0 01 C0 29 04 BF 02 20 70 47 ...
-T39B8 001:793.526 - 0.017ms returns 60 (0x3C)
-T39B8 001:793.531 JLINK_ReadMemEx(0x08029914, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.535 -- Read from C cache (2 bytes @ 0x08029914)
-T39B8 001:793.540 Data: 01 20
-T39B8 001:793.546 - 0.017ms returns 2 (0x2)
-T39B8 001:793.551 JLINK_ReadMemEx(0x08029918, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:793.555 -- Read from C cache (60 bytes @ 0x08029918)
-T39B8 001:793.561 Data: 00 F0 E0 01 C0 29 04 BF 02 20 70 47 00 F0 F0 01 ...
-T39B8 001:793.566 - 0.017ms returns 60 (0x3C)
-T39B8 001:793.571 JLINK_ReadMemEx(0x08029918, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.575 -- Read from C cache (2 bytes @ 0x08029918)
-T39B8 001:793.580 Data: 00 F0
-T39B8 001:793.586 - 0.016ms returns 2 (0x2)
-T39B8 001:793.590 JLINK_ReadMemEx(0x0802991A, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.594 -- Read from C cache (2 bytes @ 0x0802991A)
-T39B8 001:793.600 Data: E0 01
-T39B8 001:793.605 - 0.017ms returns 2 (0x2)
-T39B8 001:793.610 JLINK_ReadMemEx(0x0802991C, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:793.615 -- Read from C cache (60 bytes @ 0x0802991C)
-T39B8 001:793.620 Data: C0 29 04 BF 02 20 70 47 00 F0 F0 01 E0 29 04 BF ...
-T39B8 001:793.626 - 0.017ms returns 60 (0x3C)
-T39B8 001:793.631 JLINK_ReadMemEx(0x0802991C, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.635 -- Read from C cache (2 bytes @ 0x0802991C)
-T39B8 001:793.642 Data: C0 29
-T39B8 001:793.648 - 0.019ms returns 2 (0x2)
-T39B8 001:793.652 JLINK_ReadMemEx(0x0802991E, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.656 -- Read from C cache (2 bytes @ 0x0802991E)
-T39B8 001:793.663 Data: 04 BF
-T39B8 001:793.669 - 0.018ms returns 2 (0x2)
-T39B8 001:793.674 JLINK_ReadMemEx(0x0802991E, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.678 -- Read from C cache (2 bytes @ 0x0802991E)
-T39B8 001:793.684 Data: 04 BF
-T39B8 001:793.690 - 0.017ms returns 2 (0x2)
-T39B8 001:793.694 JLINK_ReadMemEx(0x08029920, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:793.698 -- Read from C cache (60 bytes @ 0x08029920)
-T39B8 001:793.704 Data: 02 20 70 47 00 F0 F0 01 E0 29 04 BF 03 20 70 47 ...
-T39B8 001:793.710 - 0.017ms returns 60 (0x3C)
-T39B8 001:793.715 JLINK_ReadMemEx(0x08029920, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.719 -- Read from C cache (2 bytes @ 0x08029920)
-T39B8 001:793.724 Data: 02 20
-T39B8 001:793.730 - 0.017ms returns 2 (0x2)
-T39B8 001:793.735 JLINK_ReadMemEx(0x08029924, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:793.739 -- Read from C cache (60 bytes @ 0x08029924)
-T39B8 001:793.746 Data: 00 F0 F0 01 E0 29 04 BF 03 20 70 47 00 F0 F8 00 ...
-T39B8 001:793.751 - 0.018ms returns 60 (0x3C)
-T39B8 001:793.756 JLINK_ReadMemEx(0x08029924, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.760 -- Read from C cache (2 bytes @ 0x08029924)
-T39B8 001:793.765 Data: 00 F0
-T39B8 001:793.771 - 0.017ms returns 2 (0x2)
-T39B8 001:793.775 JLINK_ReadMemEx(0x08029926, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.779 -- Read from C cache (2 bytes @ 0x08029926)
-T39B8 001:793.785 Data: F0 01
-T39B8 001:793.790 - 0.016ms returns 2 (0x2)
-T39B8 001:793.796 JLINK_ReadMemEx(0x08029928, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:793.801 -- Read from C cache (60 bytes @ 0x08029928)
-T39B8 001:793.806 Data: E0 29 04 BF 03 20 70 47 00 F0 F8 00 F0 28 0C BF ...
-T39B8 001:793.812 - 0.017ms returns 60 (0x3C)
-T39B8 001:793.816 JLINK_ReadMemEx(0x08029928, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.820 -- Read from C cache (2 bytes @ 0x08029928)
-T39B8 001:793.826 Data: E0 29
-T39B8 001:793.832 - 0.018ms returns 2 (0x2)
-T39B8 001:793.837 JLINK_ReadMemEx(0x0802992A, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.841 -- Read from C cache (2 bytes @ 0x0802992A)
-T39B8 001:793.847 Data: 04 BF
-T39B8 001:793.853 - 0.017ms returns 2 (0x2)
-T39B8 001:793.857 JLINK_ReadMemEx(0x0802992A, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.862 -- Read from C cache (2 bytes @ 0x0802992A)
-T39B8 001:793.867 Data: 04 BF
-T39B8 001:793.873 - 0.017ms returns 2 (0x2)
-T39B8 001:793.878 JLINK_ReadMemEx(0x0802992C, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:793.882 -- Read from C cache (60 bytes @ 0x0802992C)
-T39B8 001:793.889 Data: 03 20 70 47 00 F0 F8 00 F0 28 0C BF 04 20 00 20 ...
-T39B8 001:793.895 - 0.018ms returns 60 (0x3C)
-T39B8 001:793.899 JLINK_ReadMemEx(0x0802992C, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.904 -- Read from C cache (2 bytes @ 0x0802992C)
-T39B8 001:793.909 Data: 03 20
-T39B8 001:793.915 - 0.018ms returns 2 (0x2)
-T39B8 001:793.920 JLINK_ReadMemEx(0x08029930, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:793.925 -- Read from C cache (60 bytes @ 0x08029930)
-T39B8 001:793.931 Data: 00 F0 F8 00 F0 28 0C BF 04 20 00 20 70 47 00 00 ...
-T39B8 001:793.937 - 0.018ms returns 60 (0x3C)
-T39B8 001:793.942 JLINK_ReadMemEx(0x08029930, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.946 -- Read from C cache (2 bytes @ 0x08029930)
-T39B8 001:793.951 Data: 00 F0
-T39B8 001:793.957 - 0.017ms returns 2 (0x2)
-T39B8 001:793.961 JLINK_ReadMemEx(0x08029932, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:793.965 -- Read from C cache (2 bytes @ 0x08029932)
-T39B8 001:793.971 Data: F8 00
-T39B8 001:793.976 - 0.016ms returns 2 (0x2)
-T39B8 001:793.981 JLINK_ReadMemEx(0x08029934, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:793.985 -- Read from C cache (60 bytes @ 0x08029934)
-T39B8 001:793.992 Data: F0 28 0C BF 04 20 00 20 70 47 00 00 08 B5 00 93 ...
-T39B8 001:793.997 - 0.018ms returns 60 (0x3C)
-T39B8 001:794.002 JLINK_ReadMemEx(0x08029934, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:794.006 -- Read from C cache (2 bytes @ 0x08029934)
-T39B8 001:794.012 Data: F0 28
-T39B8 001:794.018 - 0.017ms returns 2 (0x2)
-T39B8 001:794.022 JLINK_ReadMemEx(0x08029936, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:794.026 -- Read from C cache (2 bytes @ 0x08029936)
-T39B8 001:794.032 Data: 0C BF
-T39B8 001:794.038 - 0.017ms returns 2 (0x2)
-T39B8 001:794.043 JLINK_ReadMemEx(0x08029936, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:794.047 -- Read from C cache (2 bytes @ 0x08029936)
-T39B8 001:794.053 Data: 0C BF
-T39B8 001:794.059 - 0.018ms returns 2 (0x2)
-T39B8 001:794.064 JLINK_ReadMemEx(0x08029938, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:794.068 -- Read from C cache (60 bytes @ 0x08029938)
-T39B8 001:794.074 Data: 04 20 00 20 70 47 00 00 08 B5 00 93 13 46 0A 46 ...
-T39B8 001:794.080 - 0.018ms returns 60 (0x3C)
-T39B8 001:794.085 JLINK_ReadMemEx(0x08029938, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:794.089 -- Read from C cache (2 bytes @ 0x08029938)
-T39B8 001:794.095 Data: 04 20
-T39B8 001:794.102 - 0.019ms returns 2 (0x2)
-T39B8 001:794.107 JLINK_ReadMemEx(0x0802993C, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:794.112 -- Read from C cache (60 bytes @ 0x0802993C)
-T39B8 001:794.118 Data: 70 47 00 00 08 B5 00 93 13 46 0A 46 01 46 02 48 ...
-T39B8 001:794.123 - 0.017ms returns 60 (0x3C)
-T39B8 001:794.128 JLINK_ReadMemEx(0x0802993C, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:794.132 -- Read from C cache (2 bytes @ 0x0802993C)
-T39B8 001:794.137 Data: 70 47
-T39B8 001:794.143 - 0.017ms returns 2 (0x2)
-T39B8 001:794.149 JLINK_ReadMemEx(0x0802993E, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:794.153 -- Read from C cache (2 bytes @ 0x0802993E)
-T39B8 001:794.159 Data: 00 00
-T39B8 001:794.164 - 0.017ms returns 2 (0x2)
-T39B8 001:794.169 JLINK_ReadMemEx(0x0802993E, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:794.173 -- Read from C cache (2 bytes @ 0x0802993E)
-T39B8 001:794.178 Data: 00 00
-T39B8 001:794.184 - 0.017ms returns 2 (0x2)
-T39B8 001:794.188 JLINK_ReadMemEx(0x08029940, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:794.193 -- Read from C cache (60 bytes @ 0x08029940)
-T39B8 001:794.198 Data: 08 B5 00 93 13 46 0A 46 01 46 02 48 DE F7 EE F9 ...
-T39B8 001:794.204 - 0.017ms returns 60 (0x3C)
-T39B8 001:794.208 JLINK_ReadMemEx(0x08029940, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:794.213 -- Read from C cache (2 bytes @ 0x08029940)
-T39B8 001:794.219 Data: 08 B5
-T39B8 001:794.224 - 0.017ms returns 2 (0x2)
-T39B8 001:794.229 JLINK_ReadMemEx(0x08029940, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:794.233 -- Read from C cache (60 bytes @ 0x08029940)
-T39B8 001:794.239 Data: 08 B5 00 93 13 46 0A 46 01 46 02 48 DE F7 EE F9 ...
-T39B8 001:794.245 - 0.018ms returns 60 (0x3C)
-T39B8 001:794.249 JLINK_ReadMemEx(0x08029940, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:794.254 -- Read from C cache (2 bytes @ 0x08029940)
-T39B8 001:794.259 Data: 08 B5
-T39B8 001:794.265 - 0.017ms returns 2 (0x2)
-T39B8 001:794.270 JLINK_ReadMemEx(0x08029942, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:794.274 -- Read from C cache (2 bytes @ 0x08029942)
-T39B8 001:794.280 Data: 00 93
-T39B8 001:794.285 - 0.017ms returns 2 (0x2)
-T39B8 001:794.290 JLINK_ReadMemEx(0x08029942, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:794.294 -- Read from C cache (2 bytes @ 0x08029942)
-T39B8 001:794.300 Data: 00 93
-T39B8 001:794.306 - 0.017ms returns 2 (0x2)
-T39B8 001:794.311 JLINK_ReadMemEx(0x08029944, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:794.315 -- Read from C cache (60 bytes @ 0x08029944)
-T39B8 001:794.321 Data: 13 46 0A 46 01 46 02 48 DE F7 EE F9 08 BD 00 00 ...
-T39B8 001:794.326 - 0.017ms returns 60 (0x3C)
-T39B8 001:794.330 JLINK_ReadMemEx(0x08029944, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:794.335 -- Read from C cache (2 bytes @ 0x08029944)
-T39B8 001:794.365 Data: 13 46
-T39B8 001:794.371 - 0.042ms returns 2 (0x2)
-T39B8 001:794.375 JLINK_ReadMemEx(0x08029944, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:794.379 -- Read from C cache (60 bytes @ 0x08029944)
-T39B8 001:794.385 Data: 13 46 0A 46 01 46 02 48 DE F7 EE F9 08 BD 00 00 ...
-T39B8 001:794.391 - 0.017ms returns 60 (0x3C)
-T39B8 001:794.395 JLINK_ReadMemEx(0x08029944, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:794.400 -- Read from C cache (2 bytes @ 0x08029944)
-T39B8 001:794.405 Data: 13 46
-T39B8 001:794.411 - 0.017ms returns 2 (0x2)
-T39B8 001:794.416 JLINK_ReadMemEx(0x08029946, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:794.420 -- Read from C cache (2 bytes @ 0x08029946)
-T39B8 001:794.425 Data: 0A 46
-T39B8 001:794.431 - 0.016ms returns 2 (0x2)
-T39B8 001:794.435 JLINK_ReadMemEx(0x08029946, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:794.439 -- Read from C cache (2 bytes @ 0x08029946)
-T39B8 001:794.445 Data: 0A 46
-T39B8 001:794.450 - 0.017ms returns 2 (0x2)
-T39B8 001:794.455 JLINK_ReadMemEx(0x08029948, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:794.460 CPU_ReadMem(64 bytes @ 0x08029980)
-T39B8 001:795.113 -- Updating C cache (64 bytes @ 0x08029980)
-T39B8 001:795.140 -- Read from C cache (60 bytes @ 0x08029948)
-T39B8 001:795.146 Data: 01 46 02 48 DE F7 EE F9 08 BD 00 00 11 76 00 08 ...
-T39B8 001:795.152 - 0.698ms returns 60 (0x3C)
-T39B8 001:795.157 JLINK_ReadMemEx(0x08029948, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.161 -- Read from C cache (2 bytes @ 0x08029948)
-T39B8 001:795.167 Data: 01 46
-T39B8 001:795.172 - 0.017ms returns 2 (0x2)
-T39B8 001:795.177 JLINK_ReadMemEx(0x08029948, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:795.182 -- Read from C cache (60 bytes @ 0x08029948)
-T39B8 001:795.188 Data: 01 46 02 48 DE F7 EE F9 08 BD 00 00 11 76 00 08 ...
-T39B8 001:795.194 - 0.018ms returns 60 (0x3C)
-T39B8 001:795.198 JLINK_ReadMemEx(0x08029948, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.202 -- Read from C cache (2 bytes @ 0x08029948)
-T39B8 001:795.208 Data: 01 46
-T39B8 001:795.214 - 0.017ms returns 2 (0x2)
-T39B8 001:795.218 JLINK_ReadMemEx(0x0802994A, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.222 -- Read from C cache (2 bytes @ 0x0802994A)
-T39B8 001:795.228 Data: 02 48
-T39B8 001:795.233 - 0.017ms returns 2 (0x2)
-T39B8 001:795.238 JLINK_ReadMemEx(0x0802994A, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.242 -- Read from C cache (2 bytes @ 0x0802994A)
-T39B8 001:795.248 Data: 02 48
-T39B8 001:795.253 - 0.017ms returns 2 (0x2)
-T39B8 001:795.258 JLINK_ReadMemEx(0x0802994C, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:795.262 -- Read from C cache (60 bytes @ 0x0802994C)
-T39B8 001:795.268 Data: DE F7 EE F9 08 BD 00 00 11 76 00 08 70 B5 0C 46 ...
-T39B8 001:795.273 - 0.017ms returns 60 (0x3C)
-T39B8 001:795.278 JLINK_ReadMemEx(0x0802994C, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.282 -- Read from C cache (2 bytes @ 0x0802994C)
-T39B8 001:795.287 Data: DE F7
-T39B8 001:795.293 - 0.017ms returns 2 (0x2)
-T39B8 001:795.298 JLINK_ReadMemEx(0x0802994C, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:795.302 -- Read from C cache (60 bytes @ 0x0802994C)
-T39B8 001:795.308 Data: DE F7 EE F9 08 BD 00 00 11 76 00 08 70 B5 0C 46 ...
-T39B8 001:795.313 - 0.017ms returns 60 (0x3C)
-T39B8 001:795.318 JLINK_ReadMemEx(0x0802994C, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.322 -- Read from C cache (2 bytes @ 0x0802994C)
-T39B8 001:795.327 Data: DE F7
-T39B8 001:795.333 - 0.017ms returns 2 (0x2)
-T39B8 001:795.337 JLINK_ReadMemEx(0x0802994E, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.341 -- Read from C cache (2 bytes @ 0x0802994E)
-T39B8 001:795.347 Data: EE F9
-T39B8 001:795.353 - 0.017ms returns 2 (0x2)
-T39B8 001:795.357 JLINK_ReadMemEx(0x08029950, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:795.362 -- Read from C cache (60 bytes @ 0x08029950)
-T39B8 001:795.368 Data: 08 BD 00 00 11 76 00 08 70 B5 0C 46 08 46 F8 F7 ...
-T39B8 001:795.373 - 0.017ms returns 60 (0x3C)
-T39B8 001:795.378 JLINK_ReadMemEx(0x08029950, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.383 -- Read from C cache (2 bytes @ 0x08029950)
-T39B8 001:795.388 Data: 08 BD
-T39B8 001:795.394 - 0.018ms returns 2 (0x2)
-T39B8 001:795.399 JLINK_ReadMemEx(0x08029952, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.403 -- Read from C cache (2 bytes @ 0x08029952)
-T39B8 001:795.408 Data: 00 00
-T39B8 001:795.414 - 0.017ms returns 2 (0x2)
-T39B8 001:795.418 JLINK_ReadMemEx(0x08029958, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:795.423 -- Read from C cache (60 bytes @ 0x08029958)
-T39B8 001:795.429 Data: 70 B5 0C 46 08 46 F8 F7 C7 F9 06 46 F8 F7 6B F9 ...
-T39B8 001:795.434 - 0.017ms returns 60 (0x3C)
-T39B8 001:795.439 JLINK_ReadMemEx(0x08029958, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.443 -- Read from C cache (2 bytes @ 0x08029958)
-T39B8 001:795.448 Data: 70 B5
-T39B8 001:795.454 - 0.017ms returns 2 (0x2)
-T39B8 001:795.458 JLINK_ReadMemEx(0x0802995A, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.463 -- Read from C cache (2 bytes @ 0x0802995A)
-T39B8 001:795.468 Data: 0C 46
-T39B8 001:795.474 - 0.017ms returns 2 (0x2)
-T39B8 001:795.478 JLINK_ReadMemEx(0x0802995A, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.482 -- Read from C cache (2 bytes @ 0x0802995A)
-T39B8 001:795.488 Data: 0C 46
-T39B8 001:795.493 - 0.017ms returns 2 (0x2)
-T39B8 001:795.498 JLINK_ReadMemEx(0x0802995C, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:795.502 -- Read from C cache (60 bytes @ 0x0802995C)
-T39B8 001:795.508 Data: 08 46 F8 F7 C7 F9 06 46 F8 F7 6B F9 05 46 30 46 ...
-T39B8 001:795.513 - 0.018ms returns 60 (0x3C)
-T39B8 001:795.519 JLINK_ReadMemEx(0x0802995C, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.523 -- Read from C cache (2 bytes @ 0x0802995C)
-T39B8 001:795.529 Data: 08 46
-T39B8 001:795.535 - 0.017ms returns 2 (0x2)
-T39B8 001:795.539 JLINK_ReadMemEx(0x0802995C, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:795.543 -- Read from C cache (60 bytes @ 0x0802995C)
-T39B8 001:795.549 Data: 08 46 F8 F7 C7 F9 06 46 F8 F7 6B F9 05 46 30 46 ...
-T39B8 001:795.555 - 0.017ms returns 60 (0x3C)
-T39B8 001:795.559 JLINK_ReadMemEx(0x0802995C, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.563 -- Read from C cache (2 bytes @ 0x0802995C)
-T39B8 001:795.569 Data: 08 46
-T39B8 001:795.574 - 0.016ms returns 2 (0x2)
-T39B8 001:795.579 JLINK_ReadMemEx(0x0802995E, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.583 -- Read from C cache (2 bytes @ 0x0802995E)
-T39B8 001:795.588 Data: F8 F7
-T39B8 001:795.594 - 0.017ms returns 2 (0x2)
-T39B8 001:795.599 JLINK_ReadMemEx(0x0802995E, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.603 -- Read from C cache (2 bytes @ 0x0802995E)
-T39B8 001:795.608 Data: F8 F7
-T39B8 001:795.614 - 0.017ms returns 2 (0x2)
-T39B8 001:795.619 JLINK_ReadMemEx(0x08029960, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:795.623 -- Read from C cache (60 bytes @ 0x08029960)
-T39B8 001:795.629 Data: C7 F9 06 46 F8 F7 6B F9 05 46 30 46 F9 F7 DC F8 ...
-T39B8 001:795.635 - 0.017ms returns 60 (0x3C)
-T39B8 001:795.640 JLINK_ReadMemEx(0x08029960, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.644 -- Read from C cache (2 bytes @ 0x08029960)
-T39B8 001:795.649 Data: C7 F9
-T39B8 001:795.655 - 0.017ms returns 2 (0x2)
-T39B8 001:795.659 JLINK_ReadMemEx(0x08029962, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.664 -- Read from C cache (2 bytes @ 0x08029962)
-T39B8 001:795.669 Data: 06 46
-T39B8 001:795.675 - 0.017ms returns 2 (0x2)
-T39B8 001:795.680 JLINK_ReadMemEx(0x08029964, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:795.684 -- Read from C cache (60 bytes @ 0x08029964)
-T39B8 001:795.690 Data: F8 F7 6B F9 05 46 30 46 F9 F7 DC F8 01 46 2A 46 ...
-T39B8 001:795.696 - 0.018ms returns 60 (0x3C)
-T39B8 001:795.700 JLINK_ReadMemEx(0x08029964, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.704 -- Read from C cache (2 bytes @ 0x08029964)
-T39B8 001:795.710 Data: F8 F7
-T39B8 001:795.716 - 0.017ms returns 2 (0x2)
-T39B8 001:795.720 JLINK_ReadMemEx(0x08029964, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:795.724 -- Read from C cache (60 bytes @ 0x08029964)
-T39B8 001:795.731 Data: F8 F7 6B F9 05 46 30 46 F9 F7 DC F8 01 46 2A 46 ...
-T39B8 001:795.737 - 0.018ms returns 60 (0x3C)
-T39B8 001:795.741 JLINK_ReadMemEx(0x08029964, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.746 -- Read from C cache (2 bytes @ 0x08029964)
-T39B8 001:795.752 Data: F8 F7
-T39B8 001:795.757 - 0.018ms returns 2 (0x2)
-T39B8 001:795.762 JLINK_ReadMemEx(0x08029966, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.766 -- Read from C cache (2 bytes @ 0x08029966)
-T39B8 001:795.772 Data: 6B F9
-T39B8 001:795.778 - 0.017ms returns 2 (0x2)
-T39B8 001:795.782 JLINK_ReadMemEx(0x08029968, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:795.787 -- Read from C cache (60 bytes @ 0x08029968)
-T39B8 001:795.793 Data: 05 46 30 46 F9 F7 DC F8 01 46 2A 46 20 46 FA F7 ...
-T39B8 001:795.798 - 0.017ms returns 60 (0x3C)
-T39B8 001:795.803 JLINK_ReadMemEx(0x08029968, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.807 -- Read from C cache (2 bytes @ 0x08029968)
-T39B8 001:795.813 Data: 05 46
-T39B8 001:795.819 - 0.017ms returns 2 (0x2)
-T39B8 001:795.823 JLINK_ReadMemEx(0x0802996A, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.828 -- Read from C cache (2 bytes @ 0x0802996A)
-T39B8 001:795.834 Data: 30 46
-T39B8 001:795.840 - 0.018ms returns 2 (0x2)
-T39B8 001:795.845 JLINK_ReadMemEx(0x0802996A, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.849 -- Read from C cache (2 bytes @ 0x0802996A)
-T39B8 001:795.854 Data: 30 46
-T39B8 001:795.861 - 0.018ms returns 2 (0x2)
-T39B8 001:795.865 JLINK_ReadMemEx(0x0802996C, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:795.870 -- Read from C cache (60 bytes @ 0x0802996C)
-T39B8 001:795.875 Data: F9 F7 DC F8 01 46 2A 46 20 46 FA F7 D3 FF 01 21 ...
-T39B8 001:795.881 - 0.017ms returns 60 (0x3C)
-T39B8 001:795.885 JLINK_ReadMemEx(0x0802996C, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.890 -- Read from C cache (2 bytes @ 0x0802996C)
-T39B8 001:795.895 Data: F9 F7
-T39B8 001:795.901 - 0.017ms returns 2 (0x2)
-T39B8 001:795.905 JLINK_ReadMemEx(0x0802996C, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:795.909 -- Read from C cache (60 bytes @ 0x0802996C)
-T39B8 001:795.915 Data: F9 F7 DC F8 01 46 2A 46 20 46 FA F7 D3 FF 01 21 ...
-T39B8 001:795.921 - 0.017ms returns 60 (0x3C)
-T39B8 001:795.925 JLINK_ReadMemEx(0x0802996C, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.929 -- Read from C cache (2 bytes @ 0x0802996C)
-T39B8 001:795.935 Data: F9 F7
-T39B8 001:795.940 - 0.017ms returns 2 (0x2)
-T39B8 001:795.945 JLINK_ReadMemEx(0x0802996E, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.949 -- Read from C cache (2 bytes @ 0x0802996E)
-T39B8 001:795.955 Data: DC F8
-T39B8 001:795.960 - 0.017ms returns 2 (0x2)
-T39B8 001:795.965 JLINK_ReadMemEx(0x08029970, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:795.969 -- Read from C cache (60 bytes @ 0x08029970)
-T39B8 001:795.975 Data: 01 46 2A 46 20 46 FA F7 D3 FF 01 21 20 46 FA F7 ...
-T39B8 001:795.981 - 0.018ms returns 60 (0x3C)
-T39B8 001:795.986 JLINK_ReadMemEx(0x08029970, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:795.990 -- Read from C cache (2 bytes @ 0x08029970)
-T39B8 001:795.996 Data: 01 46
-T39B8 001:796.001 - 0.017ms returns 2 (0x2)
-T39B8 001:796.006 JLINK_ReadMemEx(0x08029972, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:796.010 -- Read from C cache (2 bytes @ 0x08029972)
-T39B8 001:796.016 Data: 2A 46
-T39B8 001:796.022 - 0.017ms returns 2 (0x2)
-T39B8 001:796.026 JLINK_ReadMemEx(0x08029972, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:796.031 -- Read from C cache (2 bytes @ 0x08029972)
-T39B8 001:796.036 Data: 2A 46
-T39B8 001:796.042 - 0.017ms returns 2 (0x2)
-T39B8 001:796.047 JLINK_ReadMemEx(0x08029974, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:796.051 -- Read from C cache (60 bytes @ 0x08029974)
-T39B8 001:796.057 Data: 20 46 FA F7 D3 FF 01 21 20 46 FA F7 8D FE 20 46 ...
-T39B8 001:796.063 - 0.018ms returns 60 (0x3C)
-T39B8 001:796.067 JLINK_ReadMemEx(0x08029974, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:796.071 -- Read from C cache (2 bytes @ 0x08029974)
-T39B8 001:796.079 Data: 20 46
-T39B8 001:796.085 - 0.019ms returns 2 (0x2)
-T39B8 001:796.090 JLINK_ReadMemEx(0x08029974, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:796.094 -- Read from C cache (60 bytes @ 0x08029974)
-T39B8 001:796.100 Data: 20 46 FA F7 D3 FF 01 21 20 46 FA F7 8D FE 20 46 ...
-T39B8 001:796.105 - 0.017ms returns 60 (0x3C)
-T39B8 001:796.110 JLINK_ReadMemEx(0x08029974, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:796.114 -- Read from C cache (2 bytes @ 0x08029974)
-T39B8 001:796.119 Data: 20 46
-T39B8 001:796.125 - 0.017ms returns 2 (0x2)
-T39B8 001:796.129 JLINK_ReadMemEx(0x08029976, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:796.134 -- Read from C cache (2 bytes @ 0x08029976)
-T39B8 001:796.139 Data: FA F7
-T39B8 001:796.145 - 0.017ms returns 2 (0x2)
-T39B8 001:796.149 JLINK_ReadMemEx(0x08029976, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:796.154 -- Read from C cache (2 bytes @ 0x08029976)
-T39B8 001:796.159 Data: FA F7
-T39B8 001:796.165 - 0.017ms returns 2 (0x2)
-T39B8 001:796.169 JLINK_ReadMemEx(0x08029978, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:796.174 -- Read from C cache (60 bytes @ 0x08029978)
-T39B8 001:796.180 Data: D3 FF 01 21 20 46 FA F7 8D FE 20 46 F7 F7 78 FB ...
-T39B8 001:796.185 - 0.017ms returns 60 (0x3C)
-T39B8 001:796.190 JLINK_ReadMemEx(0x08029978, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:796.194 -- Read from C cache (2 bytes @ 0x08029978)
-T39B8 001:796.199 Data: D3 FF
-T39B8 001:796.205 - 0.017ms returns 2 (0x2)
-T39B8 001:796.210 JLINK_ReadMemEx(0x0802997A, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:796.214 -- Read from C cache (2 bytes @ 0x0802997A)
-T39B8 001:796.220 Data: 01 21
-T39B8 001:796.226 - 0.017ms returns 2 (0x2)
-T39B8 001:796.230 JLINK_ReadMemEx(0x0802997C, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:796.234 -- Read from C cache (60 bytes @ 0x0802997C)
-T39B8 001:796.240 Data: 20 46 FA F7 8D FE 20 46 F7 F7 78 FB 05 46 10 48 ...
-T39B8 001:796.246 - 0.017ms returns 60 (0x3C)
-T39B8 001:796.250 JLINK_ReadMemEx(0x0802997C, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:796.254 -- Read from C cache (2 bytes @ 0x0802997C)
-T39B8 001:796.260 Data: 20 46
-T39B8 001:796.266 - 0.018ms returns 2 (0x2)
-T39B8 001:796.271 JLINK_ReadMemEx(0x0802997C, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:796.276 -- Read from C cache (60 bytes @ 0x0802997C)
-T39B8 001:796.281 Data: 20 46 FA F7 8D FE 20 46 F7 F7 78 FB 05 46 10 48 ...
-T39B8 001:796.287 - 0.017ms returns 60 (0x3C)
-T39B8 001:796.292 JLINK_ReadMemEx(0x0802997C, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:796.297 -- Read from C cache (2 bytes @ 0x0802997C)
-T39B8 001:796.303 Data: 20 46
-T39B8 001:796.309 - 0.019ms returns 2 (0x2)
-T39B8 001:796.313 JLINK_ReadMemEx(0x0802997E, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:796.318 -- Read from C cache (2 bytes @ 0x0802997E)
-T39B8 001:796.323 Data: FA F7
-T39B8 001:796.329 - 0.017ms returns 2 (0x2)
-T39B8 001:796.333 JLINK_ReadMemEx(0x0802997E, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:796.338 -- Read from C cache (2 bytes @ 0x0802997E)
-T39B8 001:796.343 Data: FA F7
-T39B8 001:796.349 - 0.017ms returns 2 (0x2)
-T39B8 001:796.353 JLINK_ReadMemEx(0x08029980, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:796.358 -- Read from C cache (60 bytes @ 0x08029980)
-T39B8 001:796.364 Data: 8D FE 20 46 F7 F7 78 FB 05 46 10 48 42 F2 64 01 ...
-T39B8 001:796.369 - 0.017ms returns 60 (0x3C)
-T39B8 001:796.373 JLINK_ReadMemEx(0x08029980, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:796.378 -- Read from C cache (2 bytes @ 0x08029980)
-T39B8 001:796.383 Data: 8D FE
-T39B8 001:796.389 - 0.017ms returns 2 (0x2)
-T39B8 001:796.393 JLINK_ReadMemEx(0x08029982, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:796.398 -- Read from C cache (2 bytes @ 0x08029982)
-T39B8 001:796.403 Data: 20 46
-T39B8 001:796.408 - 0.017ms returns 2 (0x2)
-T39B8 001:796.413 JLINK_ReadMemEx(0x08029984, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:796.417 -- Read from C cache (60 bytes @ 0x08029984)
-T39B8 001:796.424 Data: F7 F7 78 FB 05 46 10 48 42 F2 64 01 B0 F9 00 20 ...
-T39B8 001:796.430 - 0.018ms returns 60 (0x3C)
-T39B8 001:796.434 JLINK_ReadMemEx(0x08029984, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:796.438 -- Read from C cache (2 bytes @ 0x08029984)
-T39B8 001:796.444 Data: F7 F7
-T39B8 001:796.450 - 0.017ms returns 2 (0x2)
-T39B8 001:796.454 JLINK_ReadMemEx(0x08029984, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:796.458 -- Read from C cache (60 bytes @ 0x08029984)
-T39B8 001:796.464 Data: F7 F7 78 FB 05 46 10 48 42 F2 64 01 B0 F9 00 20 ...
-T39B8 001:796.470 - 0.017ms returns 60 (0x3C)
-T39B8 001:796.474 JLINK_ReadMemEx(0x08029984, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:796.478 -- Read from C cache (2 bytes @ 0x08029984)
-T39B8 001:796.484 Data: F7 F7
-T39B8 001:796.489 - 0.017ms returns 2 (0x2)
-T39B8 001:796.494 JLINK_ReadMemEx(0x08029986, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:796.498 -- Read from C cache (2 bytes @ 0x08029986)
-T39B8 001:796.504 Data: 78 FB
-T39B8 001:796.509 - 0.017ms returns 2 (0x2)
-T39B8 001:796.514 JLINK_ReadMemEx(0x08029988, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:796.519 CPU_ReadMem(64 bytes @ 0x080299C0)
-T39B8 001:797.165 -- Updating C cache (64 bytes @ 0x080299C0)
-T39B8 001:797.177 -- Read from C cache (60 bytes @ 0x08029988)
-T39B8 001:797.184 Data: 05 46 10 48 42 F2 64 01 B0 F9 00 20 28 46 FA F7 ...
-T39B8 001:797.190 - 0.678ms returns 60 (0x3C)
-T39B8 001:797.197 JLINK_ReadMemEx(0x08029988, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.202 -- Read from C cache (2 bytes @ 0x08029988)
-T39B8 001:797.208 Data: 05 46
-T39B8 001:797.214 - 0.019ms returns 2 (0x2)
-T39B8 001:797.219 JLINK_ReadMemEx(0x0802998A, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.224 -- Read from C cache (2 bytes @ 0x0802998A)
-T39B8 001:797.229 Data: 10 48
-T39B8 001:797.235 - 0.017ms returns 2 (0x2)
-T39B8 001:797.240 JLINK_ReadMemEx(0x0802998A, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.245 -- Read from C cache (2 bytes @ 0x0802998A)
-T39B8 001:797.250 Data: 10 48
-T39B8 001:797.256 - 0.017ms returns 2 (0x2)
-T39B8 001:797.260 JLINK_ReadMemEx(0x0802998C, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:797.265 -- Read from C cache (60 bytes @ 0x0802998C)
-T39B8 001:797.271 Data: 42 F2 64 01 B0 F9 00 20 28 46 FA F7 C3 FF 00 21 ...
-T39B8 001:797.277 - 0.018ms returns 60 (0x3C)
-T39B8 001:797.281 JLINK_ReadMemEx(0x0802998C, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.286 -- Read from C cache (2 bytes @ 0x0802998C)
-T39B8 001:797.291 Data: 42 F2
-T39B8 001:797.296 - 0.017ms returns 2 (0x2)
-T39B8 001:797.301 JLINK_ReadMemEx(0x0802998C, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:797.305 -- Read from C cache (60 bytes @ 0x0802998C)
-T39B8 001:797.311 Data: 42 F2 64 01 B0 F9 00 20 28 46 FA F7 C3 FF 00 21 ...
-T39B8 001:797.317 - 0.017ms returns 60 (0x3C)
-T39B8 001:797.322 JLINK_ReadMemEx(0x0802998C, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.326 -- Read from C cache (2 bytes @ 0x0802998C)
-T39B8 001:797.331 Data: 42 F2
-T39B8 001:797.337 - 0.017ms returns 2 (0x2)
-T39B8 001:797.341 JLINK_ReadMemEx(0x0802998E, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.345 -- Read from C cache (2 bytes @ 0x0802998E)
-T39B8 001:797.351 Data: 64 01
-T39B8 001:797.356 - 0.017ms returns 2 (0x2)
-T39B8 001:797.361 JLINK_ReadMemEx(0x08029990, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:797.365 -- Read from C cache (60 bytes @ 0x08029990)
-T39B8 001:797.371 Data: B0 F9 00 20 28 46 FA F7 C3 FF 00 21 28 46 FA F7 ...
-T39B8 001:797.377 - 0.017ms returns 60 (0x3C)
-T39B8 001:797.381 JLINK_ReadMemEx(0x08029990, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.386 -- Read from C cache (2 bytes @ 0x08029990)
-T39B8 001:797.392 Data: B0 F9
-T39B8 001:797.398 - 0.018ms returns 2 (0x2)
-T39B8 001:797.402 JLINK_ReadMemEx(0x08029992, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.406 -- Read from C cache (2 bytes @ 0x08029992)
-T39B8 001:797.412 Data: 00 20
-T39B8 001:797.417 - 0.017ms returns 2 (0x2)
-T39B8 001:797.422 JLINK_ReadMemEx(0x08029994, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:797.428 -- Read from C cache (60 bytes @ 0x08029994)
-T39B8 001:797.434 Data: 28 46 FA F7 C3 FF 00 21 28 46 FA F7 7D FE 02 23 ...
-T39B8 001:797.440 - 0.019ms returns 60 (0x3C)
-T39B8 001:797.444 JLINK_ReadMemEx(0x08029994, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.449 -- Read from C cache (2 bytes @ 0x08029994)
-T39B8 001:797.454 Data: 28 46
-T39B8 001:797.460 - 0.017ms returns 2 (0x2)
-T39B8 001:797.465 JLINK_ReadMemEx(0x08029996, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.470 -- Read from C cache (2 bytes @ 0x08029996)
-T39B8 001:797.475 Data: FA F7
-T39B8 001:797.481 - 0.018ms returns 2 (0x2)
-T39B8 001:797.486 JLINK_ReadMemEx(0x08029996, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.490 -- Read from C cache (2 bytes @ 0x08029996)
-T39B8 001:797.496 Data: FA F7
-T39B8 001:797.501 - 0.017ms returns 2 (0x2)
-T39B8 001:797.506 JLINK_ReadMemEx(0x08029998, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:797.510 -- Read from C cache (60 bytes @ 0x08029998)
-T39B8 001:797.515 Data: C3 FF 00 21 28 46 FA F7 7D FE 02 23 1A 46 00 21 ...
-T39B8 001:797.521 - 0.017ms returns 60 (0x3C)
-T39B8 001:797.525 JLINK_ReadMemEx(0x08029998, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.529 -- Read from C cache (2 bytes @ 0x08029998)
-T39B8 001:797.535 Data: C3 FF
-T39B8 001:797.540 - 0.016ms returns 2 (0x2)
-T39B8 001:797.545 JLINK_ReadMemEx(0x0802999A, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.549 -- Read from C cache (2 bytes @ 0x0802999A)
-T39B8 001:797.555 Data: 00 21
-T39B8 001:797.560 - 0.017ms returns 2 (0x2)
-T39B8 001:797.565 JLINK_ReadMemEx(0x0802999C, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:797.569 -- Read from C cache (60 bytes @ 0x0802999C)
-T39B8 001:797.575 Data: 28 46 FA F7 7D FE 02 23 1A 46 00 21 28 46 FA F7 ...
-T39B8 001:797.580 - 0.017ms returns 60 (0x3C)
-T39B8 001:797.584 JLINK_ReadMemEx(0x0802999C, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.588 -- Read from C cache (2 bytes @ 0x0802999C)
-T39B8 001:797.594 Data: 28 46
-T39B8 001:797.600 - 0.017ms returns 2 (0x2)
-T39B8 001:797.605 JLINK_ReadMemEx(0x0802999C, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:797.609 -- Read from C cache (60 bytes @ 0x0802999C)
-T39B8 001:797.615 Data: 28 46 FA F7 7D FE 02 23 1A 46 00 21 28 46 FA F7 ...
-T39B8 001:797.620 - 0.017ms returns 60 (0x3C)
-T39B8 001:797.625 JLINK_ReadMemEx(0x0802999C, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.629 -- Read from C cache (2 bytes @ 0x0802999C)
-T39B8 001:797.635 Data: 28 46
-T39B8 001:797.641 - 0.017ms returns 2 (0x2)
-T39B8 001:797.645 JLINK_ReadMemEx(0x0802999E, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.650 -- Read from C cache (2 bytes @ 0x0802999E)
-T39B8 001:797.655 Data: FA F7
-T39B8 001:797.661 - 0.017ms returns 2 (0x2)
-T39B8 001:797.666 JLINK_ReadMemEx(0x0802999E, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.670 -- Read from C cache (2 bytes @ 0x0802999E)
-T39B8 001:797.675 Data: FA F7
-T39B8 001:797.681 - 0.017ms returns 2 (0x2)
-T39B8 001:797.685 JLINK_ReadMemEx(0x080299A0, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:797.690 -- Read from C cache (60 bytes @ 0x080299A0)
-T39B8 001:797.696 Data: 7D FE 02 23 1A 46 00 21 28 46 FA F7 57 FE 20 46 ...
-T39B8 001:797.701 - 0.018ms returns 60 (0x3C)
-T39B8 001:797.706 JLINK_ReadMemEx(0x080299A0, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.710 -- Read from C cache (2 bytes @ 0x080299A0)
-T39B8 001:797.716 Data: 7D FE
-T39B8 001:797.721 - 0.017ms returns 2 (0x2)
-T39B8 001:797.726 JLINK_ReadMemEx(0x080299A2, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.730 -- Read from C cache (2 bytes @ 0x080299A2)
-T39B8 001:797.736 Data: 02 23
-T39B8 001:797.741 - 0.017ms returns 2 (0x2)
-T39B8 001:797.746 JLINK_ReadMemEx(0x080299A4, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:797.750 -- Read from C cache (60 bytes @ 0x080299A4)
-T39B8 001:797.756 Data: 1A 46 00 21 28 46 FA F7 57 FE 20 46 F7 F7 62 FB ...
-T39B8 001:797.761 - 0.017ms returns 60 (0x3C)
-T39B8 001:797.766 JLINK_ReadMemEx(0x080299A4, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.771 -- Read from C cache (2 bytes @ 0x080299A4)
-T39B8 001:797.777 Data: 1A 46
-T39B8 001:797.782 - 0.018ms returns 2 (0x2)
-T39B8 001:797.787 JLINK_ReadMemEx(0x080299A4, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:797.791 -- Read from C cache (60 bytes @ 0x080299A4)
-T39B8 001:797.797 Data: 1A 46 00 21 28 46 FA F7 57 FE 20 46 F7 F7 62 FB ...
-T39B8 001:797.803 - 0.018ms returns 60 (0x3C)
-T39B8 001:797.808 JLINK_ReadMemEx(0x080299A4, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.812 -- Read from C cache (2 bytes @ 0x080299A4)
-T39B8 001:797.818 Data: 1A 46
-T39B8 001:797.823 - 0.017ms returns 2 (0x2)
-T39B8 001:797.828 JLINK_ReadMemEx(0x080299A6, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.833 -- Read from C cache (2 bytes @ 0x080299A6)
-T39B8 001:797.840 Data: 00 21
-T39B8 001:797.846 - 0.019ms returns 2 (0x2)
-T39B8 001:797.851 JLINK_ReadMemEx(0x080299A6, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.855 -- Read from C cache (2 bytes @ 0x080299A6)
-T39B8 001:797.861 Data: 00 21
-T39B8 001:797.867 - 0.018ms returns 2 (0x2)
-T39B8 001:797.871 JLINK_ReadMemEx(0x080299A8, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:797.876 -- Read from C cache (60 bytes @ 0x080299A8)
-T39B8 001:797.882 Data: 28 46 FA F7 57 FE 20 46 F7 F7 62 FB 04 46 01 21 ...
-T39B8 001:797.888 - 0.018ms returns 60 (0x3C)
-T39B8 001:797.892 JLINK_ReadMemEx(0x080299A8, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.896 -- Read from C cache (2 bytes @ 0x080299A8)
-T39B8 001:797.902 Data: 28 46
-T39B8 001:797.907 - 0.017ms returns 2 (0x2)
-T39B8 001:797.912 JLINK_ReadMemEx(0x080299A8, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:797.916 -- Read from C cache (60 bytes @ 0x080299A8)
-T39B8 001:797.922 Data: 28 46 FA F7 57 FE 20 46 F7 F7 62 FB 04 46 01 21 ...
-T39B8 001:797.928 - 0.017ms returns 60 (0x3C)
-T39B8 001:797.932 JLINK_ReadMemEx(0x080299A8, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.936 -- Read from C cache (2 bytes @ 0x080299A8)
-T39B8 001:797.942 Data: 28 46
-T39B8 001:797.947 - 0.017ms returns 2 (0x2)
-T39B8 001:797.952 JLINK_ReadMemEx(0x080299AA, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.956 -- Read from C cache (2 bytes @ 0x080299AA)
-T39B8 001:797.961 Data: FA F7
-T39B8 001:797.967 - 0.017ms returns 2 (0x2)
-T39B8 001:797.972 JLINK_ReadMemEx(0x080299AA, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:797.976 -- Read from C cache (2 bytes @ 0x080299AA)
-T39B8 001:797.981 Data: FA F7
-T39B8 001:797.987 - 0.017ms returns 2 (0x2)
-T39B8 001:797.991 JLINK_ReadMemEx(0x080299AC, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:797.996 -- Read from C cache (60 bytes @ 0x080299AC)
-T39B8 001:798.001 Data: 57 FE 20 46 F7 F7 62 FB 04 46 01 21 FA F7 82 FE ...
-T39B8 001:798.007 - 0.017ms returns 60 (0x3C)
-T39B8 001:798.011 JLINK_ReadMemEx(0x080299AC, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:798.016 -- Read from C cache (2 bytes @ 0x080299AC)
-T39B8 001:798.022 Data: 57 FE
-T39B8 001:798.027 - 0.017ms returns 2 (0x2)
-T39B8 001:798.032 JLINK_ReadMemEx(0x080299AE, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:798.036 -- Read from C cache (2 bytes @ 0x080299AE)
-T39B8 001:798.042 Data: 20 46
-T39B8 001:798.048 - 0.017ms returns 2 (0x2)
-T39B8 001:798.052 JLINK_ReadMemEx(0x080299B0, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:798.057 -- Read from C cache (60 bytes @ 0x080299B0)
-T39B8 001:798.062 Data: F7 F7 62 FB 04 46 01 21 FA F7 82 FE 20 46 BD E8 ...
-T39B8 001:798.068 - 0.018ms returns 60 (0x3C)
-T39B8 001:798.073 JLINK_ReadMemEx(0x080299B0, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:798.077 -- Read from C cache (2 bytes @ 0x080299B0)
-T39B8 001:798.083 Data: F7 F7
-T39B8 001:798.089 - 0.017ms returns 2 (0x2)
-T39B8 001:798.093 JLINK_ReadMemEx(0x080299B0, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:798.098 -- Read from C cache (60 bytes @ 0x080299B0)
-T39B8 001:798.104 Data: F7 F7 62 FB 04 46 01 21 FA F7 82 FE 20 46 BD E8 ...
-T39B8 001:798.110 - 0.018ms returns 60 (0x3C)
-T39B8 001:798.114 JLINK_ReadMemEx(0x080299B0, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:798.119 -- Read from C cache (2 bytes @ 0x080299B0)
-T39B8 001:798.125 Data: F7 F7
-T39B8 001:798.130 - 0.018ms returns 2 (0x2)
-T39B8 001:798.135 JLINK_ReadMemEx(0x080299B2, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:798.139 -- Read from C cache (2 bytes @ 0x080299B2)
-T39B8 001:798.145 Data: 62 FB
-T39B8 001:798.150 - 0.017ms returns 2 (0x2)
-T39B8 001:798.155 JLINK_ReadMemEx(0x080299B4, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:798.159 -- Read from C cache (60 bytes @ 0x080299B4)
-T39B8 001:798.165 Data: 04 46 01 21 FA F7 82 FE 20 46 BD E8 70 40 42 F2 ...
-T39B8 001:798.171 - 0.017ms returns 60 (0x3C)
-T39B8 001:798.175 JLINK_ReadMemEx(0x080299B4, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:798.179 -- Read from C cache (2 bytes @ 0x080299B4)
-T39B8 001:798.185 Data: 04 46
-T39B8 001:798.190 - 0.017ms returns 2 (0x2)
-T39B8 001:798.195 JLINK_ReadMemEx(0x080299B6, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:798.199 -- Read from C cache (2 bytes @ 0x080299B6)
-T39B8 001:798.205 Data: 01 21
-T39B8 001:798.210 - 0.017ms returns 2 (0x2)
-T39B8 001:798.215 JLINK_ReadMemEx(0x080299B6, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:798.219 -- Read from C cache (2 bytes @ 0x080299B6)
-T39B8 001:798.224 Data: 01 21
-T39B8 001:798.230 - 0.017ms returns 2 (0x2)
-T39B8 001:798.234 JLINK_ReadMemEx(0x080299B8, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:798.239 -- Read from C cache (60 bytes @ 0x080299B8)
-T39B8 001:798.245 Data: FA F7 82 FE 20 46 BD E8 70 40 42 F2 64 01 FB F7 ...
-T39B8 001:798.250 - 0.017ms returns 60 (0x3C)
-T39B8 001:798.255 JLINK_ReadMemEx(0x080299B8, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:798.259 -- Read from C cache (2 bytes @ 0x080299B8)
-T39B8 001:798.264 Data: FA F7
-T39B8 001:798.270 - 0.017ms returns 2 (0x2)
-T39B8 001:798.274 JLINK_ReadMemEx(0x080299B8, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:798.278 -- Read from C cache (60 bytes @ 0x080299B8)
-T39B8 001:798.284 Data: FA F7 82 FE 20 46 BD E8 70 40 42 F2 64 01 FB F7 ...
-T39B8 001:798.290 - 0.017ms returns 60 (0x3C)
-T39B8 001:798.294 JLINK_ReadMemEx(0x080299B8, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:798.299 -- Read from C cache (2 bytes @ 0x080299B8)
-T39B8 001:798.304 Data: FA F7
-T39B8 001:798.310 - 0.017ms returns 2 (0x2)
-T39B8 001:798.314 JLINK_ReadMemEx(0x080299BA, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:798.318 -- Read from C cache (2 bytes @ 0x080299BA)
-T39B8 001:798.324 Data: 82 FE
-T39B8 001:798.329 - 0.017ms returns 2 (0x2)
-T39B8 001:798.334 JLINK_ReadMemEx(0x080299BC, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:798.338 -- Read from C cache (60 bytes @ 0x080299BC)
-T39B8 001:798.344 Data: 20 46 BD E8 70 40 42 F2 64 01 FB F7 CF B9 00 00 ...
-T39B8 001:798.349 - 0.017ms returns 60 (0x3C)
-T39B8 001:798.354 JLINK_ReadMemEx(0x080299BC, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:798.358 -- Read from C cache (2 bytes @ 0x080299BC)
-T39B8 001:798.364 Data: 20 46
-T39B8 001:798.369 - 0.017ms returns 2 (0x2)
-T39B8 001:798.374 JLINK_ReadMemEx(0x080299BE, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:798.378 -- Read from C cache (2 bytes @ 0x080299BE)
-T39B8 001:798.383 Data: BD E8
-T39B8 001:798.389 - 0.017ms returns 2 (0x2)
-T39B8 001:798.394 JLINK_ReadMemEx(0x080299BE, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:798.398 -- Read from C cache (2 bytes @ 0x080299BE)
-T39B8 001:798.404 Data: BD E8
-T39B8 001:798.410 - 0.017ms returns 2 (0x2)
-T39B8 001:798.415 JLINK_ReadMemEx(0x080299C0, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:798.419 -- Read from C cache (60 bytes @ 0x080299C0)
-T39B8 001:798.425 Data: 70 40 42 F2 64 01 FB F7 CF B9 00 00 2C 02 00 20 ...
-T39B8 001:798.431 - 0.017ms returns 60 (0x3C)
-T39B8 001:798.435 JLINK_ReadMemEx(0x080299C0, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:798.439 -- Read from C cache (2 bytes @ 0x080299C0)
-T39B8 001:798.445 Data: 70 40
-T39B8 001:798.450 - 0.017ms returns 2 (0x2)
-T39B8 001:798.455 JLINK_ReadMemEx(0x080299C2, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:798.459 -- Read from C cache (2 bytes @ 0x080299C2)
-T39B8 001:798.466 Data: 42 F2
-T39B8 001:798.471 - 0.018ms returns 2 (0x2)
-T39B8 001:798.476 JLINK_ReadMemEx(0x080299C4, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:798.480 -- Read from C cache (60 bytes @ 0x080299C4)
-T39B8 001:798.486 Data: 64 01 FB F7 CF B9 00 00 2C 02 00 20 D8 F7 56 FB ...
-T39B8 001:798.492 - 0.017ms returns 60 (0x3C)
-T39B8 001:798.496 JLINK_ReadMemEx(0x080299C4, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:798.500 -- Read from C cache (2 bytes @ 0x080299C4)
-T39B8 001:798.506 Data: 64 01
-T39B8 001:798.511 - 0.017ms returns 2 (0x2)
-T39B8 001:798.516 JLINK_ReadMemEx(0x080299C6, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:798.520 -- Read from C cache (2 bytes @ 0x080299C6)
-T39B8 001:798.525 Data: FB F7
-T39B8 001:798.531 - 0.017ms returns 2 (0x2)
-T39B8 001:798.536 JLINK_ReadMemEx(0x080299C8, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:798.542 CPU_ReadMem(64 bytes @ 0x08029A00)
-T39B8 001:799.183 -- Updating C cache (64 bytes @ 0x08029A00)
-T39B8 001:799.199 -- Read from C cache (60 bytes @ 0x080299C8)
-T39B8 001:799.205 Data: CF B9 00 00 2C 02 00 20 D8 F7 56 FB DB F7 C8 FB ...
-T39B8 001:799.211 - 0.677ms returns 60 (0x3C)
-T39B8 001:799.217 JLINK_ReadMemEx(0x080299C8, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:799.223 -- Read from C cache (2 bytes @ 0x080299C8)
-T39B8 001:799.228 Data: CF B9
-T39B8 001:799.234 - 0.019ms returns 2 (0x2)
-T39B8 001:799.251 JLINK_ReadMemEx(0x080299CE, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:799.255 -- Read from C cache (2 bytes @ 0x080299CE)
-T39B8 001:799.261 Data: 00 20
-T39B8 001:799.267 - 0.017ms returns 2 (0x2)
-T39B8 001:799.271 JLINK_ReadMemEx(0x080299D0, 0x3C Bytes, Flags = 0x02000000)
-T39B8 001:799.276 -- Read from C cache (60 bytes @ 0x080299D0)
-T39B8 001:799.282 Data: D8 F7 56 FB DB F7 C8 FB DA F7 42 FE DA F7 B8 FD ...
-T39B8 001:799.287 - 0.017ms returns 60 (0x3C)
-T39B8 001:799.292 JLINK_ReadMemEx(0x080299D0, 0x2 Bytes, Flags = 0x02000000)
-T39B8 001:799.296 -- Read from C cache (2 bytes @ 0x080299D0)
-T39B8 001:799.302 Data: D8 F7
-T39B8 001:799.307 - 0.017ms returns 2 (0x2)
-T3DFC 005:041.716 JLINK_ReadMemEx(0x080299D0, 0x2 Bytes, Flags = 0x02000000)
-T3DFC 005:041.757 -- Read from C cache (2 bytes @ 0x080299D0)
-T3DFC 005:041.772 Data: D8 F7
-T3DFC 005:041.786 - 0.074ms returns 2 (0x2)
-T3DFC 005:041.799 JLINK_HasError()
-T3DFC 005:041.812 JLINK_HasError()
-T3DFC 005:041.823 JLINK_Go()
-T3DFC 005:042.233 CPU_ReadMem(4 bytes @ 0xE0001000)
-T3DFC 005:042.594 CPU_WriteMem(4 bytes @ 0xE0002008)
-T3DFC 005:043.444 - 1.637ms
-T3DFC 005:144.265 JLINK_HasError()
-T3DFC 005:144.401 JLINK_IsHalted()
-T3DFC 005:144.857 - 0.470ms returns FALSE
-T3DFC 005:245.302 JLINK_HasError()
-T3DFC 005:245.348 JLINK_IsHalted()
-T3DFC 005:245.674 - 0.331ms returns FALSE
-T3DFC 005:345.751 JLINK_HasError()
-T3DFC 005:345.786 JLINK_IsHalted()
-T3DFC 005:346.084 - 0.303ms returns FALSE
-T3DFC 005:446.144 JLINK_HasError()
-T3DFC 005:446.212 JLINK_IsHalted()
-T3DFC 005:446.604 - 0.406ms returns FALSE
-T3DFC 005:546.689 JLINK_HasError()
-T3DFC 005:546.734 JLINK_IsHalted()
-T3DFC 005:547.080 - 0.354ms returns FALSE
-T3DFC 005:647.587 JLINK_HasError()
-T3DFC 005:648.154 JLINK_HasError()
-T3DFC 005:648.179 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 005:648.227 CPU_ReadMem(4 bytes @ 0xE0001004)
-T3DFC 005:648.735 Data: 5E 91 FF 02
-T3DFC 005:648.770 Debug reg: DWT_CYCCNT
-T3DFC 005:648.798 - 0.629ms returns 1 (0x1)
-T39B8 005:649.107 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 005:649.145 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 005:649.519 Data: 00
-T39B8 005:649.553 - 0.455ms returns 1 (0x1)
-T39B8 005:649.595 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 005:649.623 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 005:649.980 Data: 32
-T39B8 005:650.012 - 0.427ms returns 1 (0x1)
-T39B8 005:650.106 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 005:650.132 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 005:650.512 Data: D0 00 00 00
-T39B8 005:650.548 - 0.451ms returns 4 (0x4)
-T39B8 005:652.345 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 005:652.402 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 005:652.816 Data: 00 00 00 00
-T39B8 005:652.844 - 0.506ms returns 4 (0x4)
-T39B8 005:652.886 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 005:652.908 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 005:653.263 Data: D7 00 00 00
-T39B8 005:653.291 - 0.413ms returns 4 (0x4)
-T39B8 005:654.112 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 005:654.140 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 005:654.702 Data: 3F 01 00 00
-T39B8 005:654.746 - 0.641ms returns 4 (0x4)
-T39B8 005:656.761 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 005:656.815 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 005:657.227 Data: 00 0A 00 00
-T39B8 005:657.275 - 0.521ms returns 4 (0x4)
-T39B8 005:658.586 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 005:658.641 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 005:659.099 Data: 00 00 00 00
-T39B8 005:659.148 - 0.570ms returns 4 (0x4)
-T3DFC 005:660.191 JLINK_IsHalted()
-T3DFC 005:660.708 - 0.524ms returns FALSE
-T3DFC 005:761.044 JLINK_HasError()
-T3DFC 005:761.109 JLINK_IsHalted()
-T3DFC 005:761.622 - 0.527ms returns FALSE
-T3DFC 005:863.165 JLINK_HasError()
-T3DFC 005:863.203 JLINK_IsHalted()
-T3DFC 005:863.589 - 0.393ms returns FALSE
-T3DFC 005:963.674 JLINK_HasError()
-T3DFC 005:963.709 JLINK_IsHalted()
-T3DFC 005:964.013 - 0.310ms returns FALSE
-T3DFC 006:064.089 JLINK_HasError()
-T3DFC 006:064.151 JLINK_IsHalted()
-T3DFC 006:064.541 - 0.435ms returns FALSE
-T3DFC 006:164.657 JLINK_HasError()
-T3DFC 006:164.824 JLINK_HasError()
-T3DFC 006:164.848 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 006:164.895 Data: 5E 91 FF 02
-T3DFC 006:164.927 Debug reg: DWT_CYCCNT
-T3DFC 006:164.956 - 0.117ms returns 1 (0x1)
-T39B8 006:165.291 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 006:165.382 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 006:165.836 Data: 00
-T39B8 006:165.874 - 0.593ms returns 1 (0x1)
-T39B8 006:165.946 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 006:165.981 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 006:166.359 Data: 32
-T39B8 006:166.402 - 0.466ms returns 1 (0x1)
-T39B8 006:166.532 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 006:166.565 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 006:166.995 Data: E5 00 00 00
-T39B8 006:167.027 - 0.505ms returns 4 (0x4)
-T39B8 006:168.389 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 006:168.444 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 006:168.833 Data: B2 00 00 00
-T39B8 006:168.868 - 0.488ms returns 4 (0x4)
-T39B8 006:169.464 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 006:169.503 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 006:169.852 Data: EF 00 00 00
-T39B8 006:169.885 - 0.431ms returns 4 (0x4)
-T39B8 006:170.836 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 006:170.870 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 006:171.290 Data: 3F 01 00 00
-T39B8 006:171.321 - 0.493ms returns 4 (0x4)
-T39B8 006:171.905 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 006:171.947 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 006:172.273 Data: 1A 06 00 00
-T39B8 006:172.296 - 0.397ms returns 4 (0x4)
-T39B8 006:173.770 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 006:173.818 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 006:174.139 Data: 00 00 00 00
-T39B8 006:174.166 - 0.401ms returns 4 (0x4)
-T3DFC 006:174.297 JLINK_IsHalted()
-T3DFC 006:174.619 - 0.330ms returns FALSE
-T3DFC 006:274.761 JLINK_HasError()
-T3DFC 006:274.824 JLINK_IsHalted()
-T3DFC 006:275.290 - 0.481ms returns FALSE
-T3DFC 006:375.704 JLINK_HasError()
-T3DFC 006:375.740 JLINK_IsHalted()
-T3DFC 006:376.028 - 0.293ms returns FALSE
-T3DFC 006:477.003 JLINK_HasError()
-T3DFC 006:477.067 JLINK_IsHalted()
-T3DFC 006:477.490 - 0.442ms returns FALSE
-T3DFC 006:578.099 JLINK_HasError()
-T3DFC 006:578.156 JLINK_IsHalted()
-T3DFC 006:578.615 - 0.473ms returns FALSE
-T3DFC 006:679.182 JLINK_HasError()
-T3DFC 006:679.245 JLINK_HasError()
-T3DFC 006:679.269 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 006:679.314 Data: 5E 91 FF 02
-T3DFC 006:679.346 Debug reg: DWT_CYCCNT
-T3DFC 006:679.373 - 0.114ms returns 1 (0x1)
-T39B8 006:679.708 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 006:679.799 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 006:680.224 Data: 00
-T39B8 006:680.263 - 0.565ms returns 1 (0x1)
-T39B8 006:680.331 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 006:680.366 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 006:680.755 Data: 32
-T39B8 006:680.793 - 0.472ms returns 1 (0x1)
-T39B8 006:680.913 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 006:680.944 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 006:681.323 Data: C1 00 00 00
-T39B8 006:681.400 - 0.497ms returns 4 (0x4)
-T39B8 006:682.776 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 006:682.833 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 006:683.222 Data: 00 00 00 00
-T39B8 006:683.256 - 0.490ms returns 4 (0x4)
-T39B8 006:684.278 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 006:684.323 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 006:684.676 Data: EF 00 00 00
-T39B8 006:684.710 - 0.441ms returns 4 (0x4)
-T39B8 006:685.248 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 006:685.284 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 006:685.629 Data: 4E 00 00 00
-T39B8 006:685.659 - 0.419ms returns 4 (0x4)
-T39B8 006:686.128 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 006:686.156 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 006:686.473 Data: 81 0E 00 00
-T39B8 006:686.498 - 0.377ms returns 4 (0x4)
-T39B8 006:687.308 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 006:687.337 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 006:687.689 Data: 00 00 00 00
-T39B8 006:687.716 - 0.415ms returns 4 (0x4)
-T3DFC 006:687.873 JLINK_IsHalted()
-T3DFC 006:688.214 - 0.352ms returns FALSE
-T3DFC 006:788.793 JLINK_HasError()
-T3DFC 006:788.864 JLINK_IsHalted()
-T3DFC 006:789.826 - 0.977ms returns FALSE
-T3DFC 006:890.331 JLINK_HasError()
-T3DFC 006:890.398 JLINK_IsHalted()
-T3DFC 006:890.833 - 0.449ms returns FALSE
-T3DFC 006:991.239 JLINK_HasError()
-T3DFC 006:991.266 JLINK_IsHalted()
-T3DFC 006:991.615 - 0.352ms returns FALSE
-T3DFC 007:091.671 JLINK_HasError()
-T3DFC 007:091.737 JLINK_IsHalted()
-T3DFC 007:092.155 - 0.432ms returns FALSE
-T3DFC 007:192.232 JLINK_HasError()
-T3DFC 007:192.292 JLINK_HasError()
-T3DFC 007:192.315 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 007:192.361 Data: 5E 91 FF 02
-T3DFC 007:192.393 Debug reg: DWT_CYCCNT
-T3DFC 007:192.421 - 0.115ms returns 1 (0x1)
-T39B8 007:192.767 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 007:192.860 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 007:193.252 Data: 00
-T39B8 007:193.285 - 0.528ms returns 1 (0x1)
-T39B8 007:193.333 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 007:193.363 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 007:193.727 Data: 32
-T39B8 007:193.759 - 0.436ms returns 1 (0x1)
-T39B8 007:193.862 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 007:193.888 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 007:194.214 Data: E5 00 00 00
-T39B8 007:194.248 - 0.396ms returns 4 (0x4)
-T39B8 007:195.609 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 007:195.663 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 007:196.010 Data: B2 00 00 00
-T39B8 007:196.044 - 0.444ms returns 4 (0x4)
-T39B8 007:197.064 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 007:197.107 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 007:197.758 Data: EF 00 00 00
-T39B8 007:197.823 - 0.768ms returns 4 (0x4)
-T39B8 007:197.902 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 007:197.944 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 007:198.349 Data: 3F 01 00 00
-T39B8 007:198.389 - 0.497ms returns 4 (0x4)
-T39B8 007:199.563 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 007:199.609 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 007:199.965 Data: 1A 06 00 00
-T39B8 007:199.995 - 0.441ms returns 4 (0x4)
-T39B8 007:200.940 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 007:200.975 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 007:201.300 Data: 00 00 00 00
-T39B8 007:201.350 - 0.418ms returns 4 (0x4)
-T3DFC 007:201.505 JLINK_IsHalted()
-T3DFC 007:201.837 - 0.341ms returns FALSE
-T3DFC 007:301.989 JLINK_HasError()
-T3DFC 007:302.051 JLINK_IsHalted()
-T3DFC 007:302.450 - 0.413ms returns FALSE
-T3DFC 007:402.547 JLINK_HasError()
-T3DFC 007:402.610 JLINK_IsHalted()
-T3DFC 007:403.029 - 0.433ms returns FALSE
-T3DFC 007:503.117 JLINK_HasError()
-T3DFC 007:503.176 JLINK_IsHalted()
-T3DFC 007:503.608 - 0.446ms returns FALSE
-T3DFC 007:604.486 JLINK_HasError()
-T3DFC 007:604.549 JLINK_IsHalted()
-T3DFC 007:604.986 - 0.450ms returns FALSE
-T3DFC 007:705.394 JLINK_HasError()
-T3DFC 007:705.458 JLINK_IsHalted()
-T3DFC 007:705.864 - 0.449ms returns FALSE
-T3DFC 007:806.144 JLINK_HasError()
-T3DFC 007:806.206 JLINK_HasError()
-T3DFC 007:806.230 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 007:806.276 Data: 5E 91 FF 02
-T3DFC 007:806.308 Debug reg: DWT_CYCCNT
-T3DFC 007:806.336 - 0.116ms returns 1 (0x1)
-T39B8 007:806.679 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 007:806.766 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 007:807.178 Data: 00
-T39B8 007:807.217 - 0.549ms returns 1 (0x1)
-T39B8 007:807.291 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 007:807.326 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 007:807.723 Data: 32
-T39B8 007:807.761 - 0.480ms returns 1 (0x1)
-T39B8 007:807.882 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 007:807.916 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 007:808.291 Data: E5 00 00 00
-T39B8 007:808.324 - 0.451ms returns 4 (0x4)
-T39B8 007:809.638 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 007:809.686 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 007:810.141 Data: B2 00 00 00
-T39B8 007:810.175 - 0.547ms returns 4 (0x4)
-T39B8 007:811.788 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 007:811.868 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 007:812.247 Data: EF 00 00 00
-T39B8 007:812.281 - 0.504ms returns 4 (0x4)
-T39B8 007:812.335 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 007:812.366 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 007:812.726 Data: 3F 01 00 00
-T39B8 007:812.758 - 0.433ms returns 4 (0x4)
-T39B8 007:813.475 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 007:813.518 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 007:813.893 Data: 1A 06 00 00
-T39B8 007:813.921 - 0.454ms returns 4 (0x4)
-T39B8 007:814.527 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 007:814.563 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 007:814.886 Data: 00 00 00 00
-T39B8 007:814.914 - 0.394ms returns 4 (0x4)
-T3DFC 007:815.038 JLINK_IsHalted()
-T3DFC 007:815.481 - 0.458ms returns FALSE
-T3DFC 007:916.242 JLINK_HasError()
-T3DFC 007:916.304 JLINK_IsHalted()
-T3DFC 007:916.812 - 0.526ms returns FALSE
-T3DFC 008:016.896 JLINK_HasError()
-T3DFC 008:016.958 JLINK_IsHalted()
-T3DFC 008:017.355 - 0.411ms returns FALSE
-T3DFC 008:117.439 JLINK_HasError()
-T3DFC 008:117.503 JLINK_IsHalted()
-T3DFC 008:117.925 - 0.437ms returns FALSE
-T3DFC 008:218.288 JLINK_HasError()
-T3DFC 008:218.352 JLINK_IsHalted()
-T3DFC 008:218.844 - 0.506ms returns FALSE
-T3DFC 008:318.933 JLINK_HasError()
-T3DFC 008:318.998 JLINK_HasError()
-T3DFC 008:319.022 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 008:319.069 Data: 5E 91 FF 02
-T3DFC 008:319.100 Debug reg: DWT_CYCCNT
-T3DFC 008:319.129 - 0.116ms returns 1 (0x1)
-T39B8 008:319.467 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 008:319.560 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 008:319.983 Data: 00
-T39B8 008:320.017 - 0.560ms returns 1 (0x1)
-T39B8 008:320.064 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 008:320.096 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 008:320.467 Data: 32
-T39B8 008:320.505 - 0.452ms returns 1 (0x1)
-T39B8 008:320.625 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 008:320.654 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 008:321.003 Data: E5 00 00 00
-T39B8 008:321.111 - 0.495ms returns 4 (0x4)
-T39B8 008:321.150 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 008:321.177 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 008:321.597 Data: B2 00 00 00
-T39B8 008:321.630 - 0.489ms returns 4 (0x4)
-T39B8 008:321.667 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 008:321.693 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 008:322.048 Data: EF 00 00 00
-T39B8 008:322.080 - 0.422ms returns 4 (0x4)
-T39B8 008:322.116 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 008:322.141 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 008:322.461 Data: 3F 01 00 00
-T39B8 008:322.493 - 0.386ms returns 4 (0x4)
-T39B8 008:322.529 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 008:322.554 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 008:322.915 Data: 1A 06 00 00
-T39B8 008:322.947 - 0.427ms returns 4 (0x4)
-T39B8 008:323.051 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 008:323.076 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 008:323.397 Data: 00 00 00 00
-T39B8 008:323.428 - 0.387ms returns 4 (0x4)
-T3DFC 008:323.592 JLINK_IsHalted()
-T3DFC 008:323.952 - 0.373ms returns FALSE
-T3DFC 008:424.657 JLINK_HasError()
-T3DFC 008:424.702 JLINK_IsHalted()
-T3DFC 008:425.071 - 0.379ms returns FALSE
-T3DFC 008:525.226 JLINK_HasError()
-T3DFC 008:525.289 JLINK_IsHalted()
-T3DFC 008:525.694 - 0.419ms returns FALSE
-T3DFC 008:626.130 JLINK_HasError()
-T3DFC 008:626.193 JLINK_IsHalted()
-T3DFC 008:626.757 - 0.616ms returns FALSE
-T3DFC 008:726.890 JLINK_HasError()
-T3DFC 008:726.969 JLINK_IsHalted()
-T3DFC 008:727.402 - 0.447ms returns FALSE
-T3DFC 008:827.560 JLINK_HasError()
-T3DFC 008:827.772 JLINK_IsHalted()
-T3DFC 008:828.225 - 0.505ms returns FALSE
-T3DFC 008:928.525 JLINK_HasError()
-T3DFC 008:928.590 JLINK_HasError()
-T3DFC 008:928.614 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 008:928.662 Data: 5E 91 FF 02
-T3DFC 008:928.695 Debug reg: DWT_CYCCNT
-T3DFC 008:928.723 - 0.119ms returns 1 (0x1)
-T39B8 008:929.149 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 008:929.244 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 008:929.778 Data: 00
-T39B8 008:929.846 - 0.708ms returns 1 (0x1)
-T39B8 008:929.924 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 008:929.967 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 008:930.331 Data: 32
-T39B8 008:930.365 - 0.451ms returns 1 (0x1)
-T39B8 008:930.511 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 008:930.540 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 008:930.872 Data: E5 00 00 00
-T39B8 008:930.904 - 0.402ms returns 4 (0x4)
-T39B8 008:930.942 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 008:930.968 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 008:931.352 Data: B2 00 00 00
-T39B8 008:931.410 - 0.480ms returns 4 (0x4)
-T39B8 008:931.495 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 008:931.534 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 008:931.891 Data: EF 00 00 00
-T39B8 008:931.927 - 0.441ms returns 4 (0x4)
-T39B8 008:931.965 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 008:931.991 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 008:932.329 Data: 3F 01 00 00
-T39B8 008:932.361 - 0.406ms returns 4 (0x4)
-T39B8 008:932.397 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 008:932.422 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 008:932.817 Data: 1A 06 00 00
-T39B8 008:932.850 - 0.462ms returns 4 (0x4)
-T39B8 008:932.949 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 008:932.981 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 008:933.347 Data: 00 00 00 00
-T39B8 008:933.379 - 0.440ms returns 4 (0x4)
-T3DFC 008:933.547 JLINK_IsHalted()
-T3DFC 008:933.924 - 0.394ms returns FALSE
-T3DFC 009:034.100 JLINK_HasError()
-T3DFC 009:034.162 JLINK_IsHalted()
-T3DFC 009:034.616 - 0.469ms returns FALSE
-T3DFC 009:134.805 JLINK_HasError()
-T3DFC 009:134.867 JLINK_IsHalted()
-T3DFC 009:135.264 - 0.411ms returns FALSE
-T3DFC 009:236.272 JLINK_HasError()
-T3DFC 009:236.327 JLINK_IsHalted()
-T3DFC 009:236.898 - 0.620ms returns FALSE
-T3DFC 009:337.102 JLINK_HasError()
-T3DFC 009:337.178 JLINK_IsHalted()
-T3DFC 009:337.690 - 0.558ms returns FALSE
-T3DFC 009:437.816 JLINK_HasError()
-T3DFC 009:437.880 JLINK_IsHalted()
-T3DFC 009:438.268 - 0.403ms returns FALSE
-T3DFC 009:539.680 JLINK_HasError()
-T3DFC 009:539.742 JLINK_HasError()
-T3DFC 009:539.766 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 009:539.813 Data: 5E 91 FF 02
-T3DFC 009:539.844 Debug reg: DWT_CYCCNT
-T3DFC 009:539.873 - 0.116ms returns 1 (0x1)
-T39B8 009:540.371 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 009:540.414 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 009:540.834 Data: 00
-T39B8 009:540.907 - 0.547ms returns 1 (0x1)
-T39B8 009:540.991 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 009:541.113 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 009:541.467 Data: 32
-T39B8 009:541.501 - 0.521ms returns 1 (0x1)
-T39B8 009:541.663 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 009:541.693 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 009:542.101 Data: E5 00 00 00
-T39B8 009:542.133 - 0.480ms returns 4 (0x4)
-T39B8 009:542.172 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 009:542.198 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 009:542.593 Data: B2 00 00 00
-T39B8 009:542.625 - 0.463ms returns 4 (0x4)
-T39B8 009:542.662 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 009:542.686 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 009:543.015 Data: EF 00 00 00
-T39B8 009:543.046 - 0.394ms returns 4 (0x4)
-T39B8 009:543.082 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 009:543.107 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 009:543.461 Data: 3F 01 00 00
-T39B8 009:543.493 - 0.420ms returns 4 (0x4)
-T39B8 009:543.529 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 009:543.554 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 009:543.926 Data: 1A 06 00 00
-T39B8 009:543.958 - 0.439ms returns 4 (0x4)
-T39B8 009:544.054 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 009:544.079 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 009:544.455 Data: 00 00 00 00
-T39B8 009:544.487 - 0.442ms returns 4 (0x4)
-T3DFC 009:544.645 JLINK_IsHalted()
-T3DFC 009:544.998 - 0.368ms returns FALSE
-T3DFC 009:645.319 JLINK_HasError()
-T3DFC 009:645.381 JLINK_IsHalted()
-T3DFC 009:645.815 - 0.447ms returns FALSE
-T3DFC 009:746.403 JLINK_HasError()
-T3DFC 009:746.460 JLINK_IsHalted()
-T3DFC 009:746.854 - 0.407ms returns FALSE
-T3DFC 009:847.610 JLINK_HasError()
-T3DFC 009:847.664 JLINK_IsHalted()
-T3DFC 009:848.032 - 0.376ms returns FALSE
-T3DFC 009:948.307 JLINK_HasError()
-T3DFC 009:948.364 JLINK_IsHalted()
-T3DFC 009:948.815 - 0.464ms returns FALSE
-T3DFC 010:048.903 JLINK_HasError()
-T3DFC 010:048.968 JLINK_IsHalted()
-T3DFC 010:049.382 - 0.427ms returns FALSE
-T3DFC 010:149.986 JLINK_HasError()
-T3DFC 010:150.051 JLINK_HasError()
-T3DFC 010:150.076 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 010:150.121 Data: 5E 91 FF 02
-T3DFC 010:150.152 Debug reg: DWT_CYCCNT
-T3DFC 010:150.180 - 0.114ms returns 1 (0x1)
-T39B8 010:150.503 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 010:150.592 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 010:150.979 Data: 00
-T39B8 010:151.086 - 0.593ms returns 1 (0x1)
-T39B8 010:151.134 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 010:151.166 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 010:151.596 Data: 32
-T39B8 010:151.630 - 0.510ms returns 1 (0x1)
-T39B8 010:151.752 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 010:151.779 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 010:152.136 Data: E5 00 00 00
-T39B8 010:152.168 - 0.425ms returns 4 (0x4)
-T39B8 010:152.206 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 010:152.231 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 010:152.592 Data: B2 00 00 00
-T39B8 010:152.623 - 0.427ms returns 4 (0x4)
-T39B8 010:152.660 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 010:152.685 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 010:153.038 Data: EF 00 00 00
-T39B8 010:153.070 - 0.420ms returns 4 (0x4)
-T39B8 010:153.106 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 010:153.131 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 010:153.452 Data: 3F 01 00 00
-T39B8 010:153.484 - 0.387ms returns 4 (0x4)
-T39B8 010:153.625 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 010:153.650 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 010:153.984 Data: 1A 06 00 00
-T39B8 010:154.016 - 0.400ms returns 4 (0x4)
-T39B8 010:154.110 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 010:154.134 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 010:154.498 Data: 00 00 00 00
-T39B8 010:154.531 - 0.431ms returns 4 (0x4)
-T3DFC 010:154.685 JLINK_IsHalted()
-T3DFC 010:155.086 - 0.415ms returns FALSE
-T3DFC 010:255.783 JLINK_HasError()
-T3DFC 010:255.869 JLINK_IsHalted()
-T3DFC 010:256.386 - 0.542ms returns FALSE
-T3DFC 010:356.904 JLINK_HasError()
-T3DFC 010:356.965 JLINK_IsHalted()
-T3DFC 010:357.353 - 0.398ms returns FALSE
-T3DFC 010:458.102 JLINK_HasError()
-T3DFC 010:458.161 JLINK_IsHalted()
-T3DFC 010:458.606 - 0.458ms returns FALSE
-T3DFC 010:559.298 JLINK_HasError()
-T3DFC 010:559.360 JLINK_IsHalted()
-T3DFC 010:559.812 - 0.466ms returns FALSE
-T3DFC 010:660.046 JLINK_HasError()
-T3DFC 010:660.107 JLINK_IsHalted()
-T3DFC 010:660.510 - 0.417ms returns FALSE
-T3DFC 010:761.062 JLINK_HasError()
-T3DFC 010:761.283 JLINK_HasError()
-T3DFC 010:761.311 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 010:761.358 Data: 5E 91 FF 02
-T3DFC 010:761.391 Debug reg: DWT_CYCCNT
-T3DFC 010:761.420 - 0.118ms returns 1 (0x1)
-T39B8 010:761.755 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 010:761.821 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 010:762.235 Data: 00
-T39B8 010:762.270 - 0.524ms returns 1 (0x1)
-T39B8 010:762.317 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 010:762.348 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 010:762.715 Data: 32
-T39B8 010:762.747 - 0.440ms returns 1 (0x1)
-T39B8 010:762.850 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 010:762.876 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 010:763.256 Data: E5 00 00 00
-T39B8 010:763.288 - 0.448ms returns 4 (0x4)
-T39B8 010:763.326 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 010:763.351 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 010:763.733 Data: B2 00 00 00
-T39B8 010:763.765 - 0.448ms returns 4 (0x4)
-T39B8 010:763.801 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 010:763.826 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 010:764.199 Data: EF 00 00 00
-T39B8 010:764.237 - 0.445ms returns 4 (0x4)
-T39B8 010:764.280 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 010:764.307 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 010:764.685 Data: 3F 01 00 00
-T39B8 010:764.716 - 0.446ms returns 4 (0x4)
-T39B8 010:764.755 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 010:764.781 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 010:765.186 Data: 1A 06 00 00
-T39B8 010:765.226 - 0.481ms returns 4 (0x4)
-T39B8 010:765.331 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 010:765.359 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 010:765.728 Data: 00 00 00 00
-T39B8 010:765.761 - 0.439ms returns 4 (0x4)
-T3DFC 010:765.901 JLINK_IsHalted()
-T3DFC 010:766.266 - 0.377ms returns FALSE
-T3DFC 010:866.429 JLINK_HasError()
-T3DFC 010:866.499 JLINK_IsHalted()
-T3DFC 010:866.904 - 0.419ms returns FALSE
-T3DFC 010:967.776 JLINK_HasError()
-T3DFC 010:967.838 JLINK_IsHalted()
-T3DFC 010:968.232 - 0.408ms returns FALSE
-T3DFC 011:069.285 JLINK_HasError()
-T3DFC 011:069.358 JLINK_IsHalted()
-T3DFC 011:069.824 - 0.488ms returns FALSE
-T3DFC 011:170.387 JLINK_HasError()
-T3DFC 011:170.448 JLINK_IsHalted()
-T3DFC 011:170.948 - 0.514ms returns FALSE
-T3DFC 011:271.598 JLINK_HasError()
-T3DFC 011:271.675 JLINK_HasError()
-T3DFC 011:271.709 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 011:271.759 Data: 5E 91 FF 02
-T3DFC 011:271.791 Debug reg: DWT_CYCCNT
-T3DFC 011:271.821 - 0.122ms returns 1 (0x1)
-T39B8 011:272.203 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 011:272.225 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 011:272.586 Data: 00
-T39B8 011:272.620 - 0.422ms returns 1 (0x1)
-T39B8 011:272.660 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 011:272.680 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 011:273.021 Data: 32
-T39B8 011:273.036 - 0.380ms returns 1 (0x1)
-T39B8 011:273.109 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 011:273.123 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 011:273.447 Data: C1 00 00 00
-T39B8 011:273.464 - 0.358ms returns 4 (0x4)
-T39B8 011:273.904 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 011:273.930 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 011:274.230 Data: 00 00 00 00
-T39B8 011:274.253 - 0.353ms returns 4 (0x4)
-T39B8 011:274.637 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 011:274.660 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 011:274.941 Data: EF 00 00 00
-T39B8 011:274.955 - 0.323ms returns 4 (0x4)
-T39B8 011:274.977 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 011:274.989 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 011:275.252 Data: 4F 00 00 00
-T39B8 011:275.267 - 0.294ms returns 4 (0x4)
-T39B8 011:275.555 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 011:275.573 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 011:275.867 Data: B0 0E 00 00
-T39B8 011:275.882 - 0.331ms returns 4 (0x4)
-T39B8 011:276.202 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 011:276.221 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 011:276.578 Data: 00 00 00 00
-T39B8 011:276.594 - 0.396ms returns 4 (0x4)
-T3DFC 011:276.682 JLINK_IsHalted()
-T3DFC 011:276.976 - 0.299ms returns FALSE
-T3DFC 011:377.452 JLINK_HasError()
-T3DFC 011:377.513 JLINK_IsHalted()
-T3DFC 011:377.914 - 0.415ms returns FALSE
-T3DFC 011:478.249 JLINK_HasError()
-T3DFC 011:478.310 JLINK_IsHalted()
-T3DFC 011:478.692 - 0.395ms returns FALSE
-T3DFC 011:578.780 JLINK_HasError()
-T3DFC 011:578.841 JLINK_IsHalted()
-T3DFC 011:579.274 - 0.447ms returns FALSE
-T3DFC 011:679.434 JLINK_HasError()
-T3DFC 011:679.514 JLINK_IsHalted()
-T3DFC 011:680.101 - 0.649ms returns FALSE
-T3DFC 011:781.250 JLINK_HasError()
-T3DFC 011:781.316 JLINK_IsHalted()
-T3DFC 011:781.739 - 0.462ms returns FALSE
-T3DFC 011:881.854 JLINK_HasError()
-T3DFC 011:881.920 JLINK_HasError()
-T3DFC 011:881.942 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 011:881.987 Data: 5E 91 FF 02
-T3DFC 011:882.016 Debug reg: DWT_CYCCNT
-T3DFC 011:882.042 - 0.109ms returns 1 (0x1)
-T39B8 011:882.378 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 011:882.474 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 011:882.928 Data: 00
-T39B8 011:882.960 - 0.590ms returns 1 (0x1)
-T39B8 011:883.024 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 011:883.052 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 011:883.443 Data: 32
-T39B8 011:883.478 - 0.463ms returns 1 (0x1)
-T39B8 011:883.591 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 011:883.621 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 011:883.992 Data: C1 00 00 00
-T39B8 011:884.019 - 0.436ms returns 4 (0x4)
-T39B8 011:884.731 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 011:884.770 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 011:885.217 Data: 00 00 00 00
-T39B8 011:885.248 - 0.523ms returns 4 (0x4)
-T39B8 011:885.696 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 011:885.727 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 011:886.111 Data: EF 00 00 00
-T39B8 011:886.132 - 0.441ms returns 4 (0x4)
-T39B8 011:886.165 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 011:886.181 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 011:886.500 Data: 4D 00 00 00
-T39B8 011:886.518 - 0.359ms returns 4 (0x4)
-T39B8 011:887.098 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 011:887.120 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 011:887.415 Data: 52 0E 00 00
-T39B8 011:887.432 - 0.339ms returns 4 (0x4)
-T39B8 011:887.970 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 011:887.993 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 011:888.315 Data: 00 00 00 00
-T39B8 011:888.329 - 0.363ms returns 4 (0x4)
-T3DFC 011:888.398 JLINK_IsHalted()
-T3DFC 011:888.701 - 0.308ms returns FALSE
-T3DFC 011:988.856 JLINK_HasError()
-T3DFC 011:988.919 JLINK_IsHalted()
-T3DFC 011:989.807 - 0.940ms returns FALSE
-T3DFC 012:090.020 JLINK_HasError()
-T3DFC 012:090.084 JLINK_IsHalted()
-T3DFC 012:090.489 - 0.446ms returns FALSE
-T3DFC 012:191.192 JLINK_HasError()
-T3DFC 012:191.292 JLINK_IsHalted()
-T3DFC 012:191.782 - 0.511ms returns FALSE
-T3DFC 012:292.274 JLINK_HasError()
-T3DFC 012:292.341 JLINK_IsHalted()
-T3DFC 012:292.837 - 0.542ms returns FALSE
-T3DFC 012:393.212 JLINK_HasError()
-T3DFC 012:393.277 JLINK_IsHalted()
-T3DFC 012:393.677 - 0.415ms returns FALSE
-T3DFC 012:493.756 JLINK_HasError()
-T3DFC 012:493.815 JLINK_HasError()
-T3DFC 012:493.840 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 012:493.885 Data: 5E 91 FF 02
-T3DFC 012:493.916 Debug reg: DWT_CYCCNT
-T3DFC 012:493.944 - 0.114ms returns 1 (0x1)
-T39B8 012:494.292 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 012:494.379 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 012:494.842 Data: 00
-T39B8 012:494.884 - 0.603ms returns 1 (0x1)
-T39B8 012:494.956 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 012:494.993 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 012:495.396 Data: 32
-T39B8 012:495.440 - 0.495ms returns 1 (0x1)
-T39B8 012:495.588 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 012:495.623 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 012:495.997 Data: C0 00 00 00
-T39B8 012:496.030 - 0.451ms returns 4 (0x4)
-T39B8 012:496.901 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 012:496.952 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 012:497.308 Data: 00 00 00 00
-T39B8 012:497.341 - 0.450ms returns 4 (0x4)
-T39B8 012:497.389 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 012:497.417 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 012:497.807 Data: CF 00 00 00
-T39B8 012:497.838 - 0.458ms returns 4 (0x4)
-T39B8 012:498.496 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 012:498.536 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 012:498.864 Data: 3F 01 00 00
-T39B8 012:498.914 - 0.427ms returns 4 (0x4)
-T39B8 012:499.852 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 012:499.886 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 012:500.228 Data: 00 14 00 00
-T39B8 012:500.256 - 0.412ms returns 4 (0x4)
-T39B8 012:501.196 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 012:501.234 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 012:501.581 Data: 00 00 00 00
-T39B8 012:501.603 - 0.413ms returns 4 (0x4)
-T3DFC 012:501.721 JLINK_IsHalted()
-T3DFC 012:502.073 - 0.364ms returns FALSE
-T3DFC 012:602.218 JLINK_HasError()
-T3DFC 012:602.281 JLINK_IsHalted()
-T3DFC 012:602.777 - 0.509ms returns FALSE
-T3DFC 012:703.625 JLINK_HasError()
-T3DFC 012:703.687 JLINK_IsHalted()
-T3DFC 012:704.088 - 0.444ms returns FALSE
-T3DFC 012:804.967 JLINK_HasError()
-T3DFC 012:805.029 JLINK_IsHalted()
-T3DFC 012:805.423 - 0.414ms returns FALSE
-T3DFC 012:905.577 JLINK_HasError()
-T3DFC 012:905.641 JLINK_IsHalted()
-T3DFC 012:906.491 - 1.043ms returns FALSE
-T3DFC 013:006.814 JLINK_HasError()
-T3DFC 013:006.880 JLINK_HasError()
-T3DFC 013:006.904 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 013:006.951 Data: 5E 91 FF 02
-T3DFC 013:006.983 Debug reg: DWT_CYCCNT
-T3DFC 013:007.011 - 0.117ms returns 1 (0x1)
-T39B8 013:007.340 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 013:007.430 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 013:007.863 Data: 00
-T39B8 013:007.901 - 0.571ms returns 1 (0x1)
-T39B8 013:007.977 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 013:008.013 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 013:008.378 Data: 32
-T39B8 013:008.410 - 0.443ms returns 1 (0x1)
-T39B8 013:008.565 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 013:008.593 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 013:008.932 Data: 60 00 00 00
-T39B8 013:008.969 - 0.413ms returns 4 (0x4)
-T39B8 013:010.340 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 013:010.397 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 013:010.810 Data: 00 00 00 00
-T39B8 013:010.845 - 0.514ms returns 4 (0x4)
-T39B8 013:010.894 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 013:010.924 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 013:011.305 Data: 6F 00 00 00
-T39B8 013:011.351 - 0.467ms returns 4 (0x4)
-T39B8 013:012.687 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 013:012.746 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 013:013.147 Data: 3F 01 00 00
-T39B8 013:013.182 - 0.505ms returns 4 (0x4)
-T39B8 013:013.848 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 013:013.891 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 013:014.283 Data: 00 14 00 00
-T39B8 013:014.314 - 0.474ms returns 4 (0x4)
-T39B8 013:014.921 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 013:014.958 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 013:015.280 Data: 00 00 00 00
-T39B8 013:015.308 - 0.395ms returns 4 (0x4)
-T3DFC 013:015.440 JLINK_IsHalted()
-T3DFC 013:015.807 - 0.378ms returns FALSE
-T3DFC 013:115.964 JLINK_HasError()
-T3DFC 013:116.029 JLINK_IsHalted()
-T3DFC 013:116.478 - 0.463ms returns FALSE
-T3DFC 013:217.372 JLINK_HasError()
-T3DFC 013:217.436 JLINK_IsHalted()
-T3DFC 013:217.855 - 0.432ms returns FALSE
-T3DFC 013:317.963 JLINK_HasError()
-T3DFC 013:318.026 JLINK_IsHalted()
-T3DFC 013:318.522 - 0.510ms returns FALSE
-T3DFC 013:419.147 JLINK_HasError()
-T3DFC 013:419.213 JLINK_IsHalted()
-T3DFC 013:419.625 - 0.426ms returns FALSE
-T3DFC 013:520.345 JLINK_HasError()
-T3DFC 013:520.410 JLINK_HasError()
-T3DFC 013:520.435 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 013:520.482 Data: 5E 91 FF 02
-T3DFC 013:520.514 Debug reg: DWT_CYCCNT
-T3DFC 013:520.542 - 0.117ms returns 1 (0x1)
-T39B8 013:520.886 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 013:521.052 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 013:521.480 Data: 00
-T39B8 013:521.516 - 0.640ms returns 1 (0x1)
-T39B8 013:521.565 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 013:521.599 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 013:521.969 Data: 32
-T39B8 013:522.001 - 0.445ms returns 1 (0x1)
-T39B8 013:522.111 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 013:522.138 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 013:523.178 Data: C1 00 00 00
-T39B8 013:523.251 - 1.150ms returns 4 (0x4)
-T39B8 013:524.614 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 013:524.674 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 013:525.036 Data: AD 00 00 00
-T39B8 013:525.074 - 0.470ms returns 4 (0x4)
-T39B8 013:525.895 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 013:526.033 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 013:526.421 Data: E2 00 00 00
-T39B8 013:526.455 - 0.570ms returns 4 (0x4)
-T39B8 013:527.454 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 013:527.492 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 013:527.834 Data: 3F 01 00 00
-T39B8 013:527.862 - 0.415ms returns 4 (0x4)
-T39B8 013:527.983 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 013:528.011 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 013:528.325 Data: 86 13 00 00
-T39B8 013:528.349 - 0.373ms returns 4 (0x4)
-T39B8 013:528.923 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 013:528.956 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 013:529.269 Data: 00 00 00 00
-T39B8 013:529.291 - 0.373ms returns 4 (0x4)
-T3DFC 013:529.400 JLINK_IsHalted()
-T3DFC 013:529.795 - 0.404ms returns FALSE
-T3DFC 013:630.321 JLINK_HasError()
-T3DFC 013:630.379 JLINK_IsHalted()
-T3DFC 013:630.813 - 0.447ms returns FALSE
-T3DFC 013:731.079 JLINK_HasError()
-T3DFC 013:731.145 JLINK_IsHalted()
-T3DFC 013:731.665 - 0.534ms returns FALSE
-T3DFC 013:831.760 JLINK_HasError()
-T3DFC 013:832.430 JLINK_IsHalted()
-T3DFC 013:832.719 - 0.292ms returns FALSE
-T3DFC 013:932.796 JLINK_HasError()
-T3DFC 013:932.854 JLINK_IsHalted()
-T3DFC 013:933.257 - 0.418ms returns FALSE
-T3DFC 014:033.549 JLINK_HasError()
-T3DFC 014:033.602 JLINK_IsHalted()
-T3DFC 014:033.963 - 0.371ms returns FALSE
-T3DFC 014:134.016 JLINK_HasError()
-T3DFC 014:134.048 JLINK_HasError()
-T3DFC 014:134.059 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 014:134.082 Data: 5E 91 FF 02
-T3DFC 014:134.096 Debug reg: DWT_CYCCNT
-T3DFC 014:134.108 - 0.053ms returns 1 (0x1)
-T39B8 014:135.130 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 014:135.164 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 014:135.484 Data: 00
-T39B8 014:135.497 - 0.370ms returns 1 (0x1)
-T39B8 014:135.514 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 014:135.526 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 014:135.785 Data: 32
-T39B8 014:135.795 - 0.284ms returns 1 (0x1)
-T39B8 014:135.837 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 014:135.845 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 014:136.105 Data: C1 00 00 00
-T39B8 014:136.116 - 0.282ms returns 4 (0x4)
-T39B8 014:136.405 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 014:136.421 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 014:136.776 Data: AD 00 00 00
-T39B8 014:136.787 - 0.384ms returns 4 (0x4)
-T39B8 014:136.997 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 014:137.009 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 014:137.323 Data: E2 00 00 00
-T39B8 014:137.333 - 0.339ms returns 4 (0x4)
-T39B8 014:137.509 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 014:137.519 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 014:137.786 Data: 3F 01 00 00
-T39B8 014:137.796 - 0.289ms returns 4 (0x4)
-T39B8 014:137.808 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 014:137.816 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 014:138.067 Data: 86 13 00 00
-T39B8 014:138.076 - 0.270ms returns 4 (0x4)
-T39B8 014:138.286 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 014:138.297 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 014:138.590 Data: 00 00 00 00
-T39B8 014:138.600 - 0.317ms returns 4 (0x4)
-T3DFC 014:138.641 JLINK_IsHalted()
-T3DFC 014:138.903 - 0.266ms returns FALSE
-T3DFC 014:240.187 JLINK_HasError()
-T3DFC 014:240.225 JLINK_IsHalted()
-T3DFC 014:240.578 - 0.359ms returns FALSE
-T3DFC 014:341.151 JLINK_HasError()
-T3DFC 014:341.219 JLINK_IsHalted()
-T3DFC 014:341.669 - 0.464ms returns FALSE
-T3DFC 014:442.221 JLINK_HasError()
-T3DFC 014:442.295 JLINK_IsHalted()
-T3DFC 014:442.750 - 0.502ms returns FALSE
-T3DFC 014:544.480 JLINK_HasError()
-T3DFC 014:544.554 JLINK_IsHalted()
-T3DFC 014:545.012 - 0.489ms returns FALSE
-T39B8 014:638.801 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 014:638.855 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 014:639.126 Data: 00
-T39B8 014:639.133 - 0.334ms returns 1 (0x1)
-T39B8 014:639.144 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 014:639.149 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 014:639.558 Data: 63
-T39B8 014:639.566 - 0.424ms returns 1 (0x1)
-T39B8 014:639.574 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 014:639.581 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 014:639.880 Data: 63
-T39B8 014:639.886 - 0.314ms returns 1 (0x1)
-T39B8 014:639.921 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 014:639.926 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 014:640.165 Data: 00
-T39B8 014:640.171 - 0.252ms returns 1 (0x1)
-T39B8 014:640.177 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 014:640.182 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 014:640.435 Data: 63
-T39B8 014:640.449 - 0.274ms returns 1 (0x1)
-T39B8 014:640.459 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 014:640.468 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 014:640.788 Data: 63
-T39B8 014:640.799 - 0.342ms returns 1 (0x1)
-T39B8 014:645.216 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 014:645.232 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 014:645.559 Data: 00
-T39B8 014:645.566 - 0.351ms returns 1 (0x1)
-T39B8 014:645.573 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 014:645.579 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 014:645.876 Data: 63
-T39B8 014:645.883 - 0.311ms returns 1 (0x1)
-T39B8 014:645.890 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 014:645.895 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 014:646.142 Data: 63
-T39B8 014:646.148 - 0.260ms returns 1 (0x1)
-T3DFC 014:646.158 JLINK_HasError()
-T3DFC 014:646.171 JLINK_HasError()
-T3DFC 014:646.193 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 014:646.201 Data: 5E 91 FF 02
-T3DFC 014:646.207 Debug reg: DWT_CYCCNT
-T3DFC 014:646.213 - 0.022ms returns 1 (0x1)
-T39B8 014:646.801 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 014:646.815 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 014:647.115 Data: 00
-T39B8 014:647.127 - 0.327ms returns 1 (0x1)
-T39B8 014:647.142 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 014:647.159 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 014:647.459 Data: 32
-T39B8 014:647.470 - 0.330ms returns 1 (0x1)
-T39B8 014:647.595 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 014:647.626 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 014:647.948 Data: 90 00 00 00
-T39B8 014:647.959 - 0.365ms returns 4 (0x4)
-T39B8 014:648.125 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 014:648.138 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 014:648.385 Data: 00 00 00 00
-T39B8 014:648.392 - 0.268ms returns 4 (0x4)
-T39B8 014:648.515 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 014:648.523 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 014:648.806 Data: 9F 00 00 00
-T39B8 014:648.813 - 0.299ms returns 4 (0x4)
-T39B8 014:648.925 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 014:648.933 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 014:649.230 Data: 3F 01 00 00
-T39B8 014:649.239 - 0.315ms returns 4 (0x4)
-T39B8 014:649.272 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 014:649.293 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 014:649.650 Data: 00 14 00 00
-T39B8 014:649.658 - 0.388ms returns 4 (0x4)
-T39B8 014:649.835 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 014:649.845 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 014:650.094 Data: 00 00 00 00
-T39B8 014:650.102 - 0.268ms returns 4 (0x4)
-T39B8 014:650.117 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 014:650.123 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 014:650.370 Data: 00
-T39B8 014:650.377 - 0.261ms returns 1 (0x1)
-T39B8 014:650.383 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 014:650.388 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 014:650.634 Data: 63
-T39B8 014:650.641 - 0.259ms returns 1 (0x1)
-T39B8 014:650.647 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 014:650.652 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 014:650.905 Data: 63
-T39B8 014:650.916 - 0.271ms returns 1 (0x1)
-T3DFC 014:651.261 JLINK_IsHalted()
-T3DFC 014:651.854 - 0.611ms returns FALSE
-T3DFC 014:752.009 JLINK_HasError()
-T3DFC 014:752.047 JLINK_IsHalted()
-T3DFC 014:752.409 - 0.368ms returns FALSE
-T3DFC 014:852.549 JLINK_HasError()
-T3DFC 014:852.617 JLINK_IsHalted()
-T3DFC 014:853.052 - 0.448ms returns FALSE
-T3DFC 014:953.571 JLINK_HasError()
-T3DFC 014:953.639 JLINK_IsHalted()
-T3DFC 014:954.089 - 0.465ms returns FALSE
-T3DFC 015:054.160 JLINK_HasError()
-T3DFC 015:054.208 JLINK_IsHalted()
-T3DFC 015:054.629 - 0.433ms returns FALSE
-T3DFC 015:154.907 JLINK_HasError()
-T3DFC 015:154.949 JLINK_IsHalted()
-T3DFC 015:155.267 - 0.325ms returns FALSE
-T3DFC 015:255.446 JLINK_HasError()
-T3DFC 015:255.514 JLINK_HasError()
-T3DFC 015:255.539 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 015:255.587 Data: 5E 91 FF 02
-T3DFC 015:255.619 Debug reg: DWT_CYCCNT
-T3DFC 015:255.647 - 0.118ms returns 1 (0x1)
-T39B8 015:256.836 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 015:256.928 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 015:257.335 Data: 00
-T39B8 015:257.374 - 0.548ms returns 1 (0x1)
-T39B8 015:257.443 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 015:257.480 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 015:257.857 Data: 32
-T39B8 015:257.889 - 0.456ms returns 1 (0x1)
-T39B8 015:258.048 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 015:258.076 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 015:258.403 Data: 93 00 00 00
-T39B8 015:258.435 - 0.396ms returns 4 (0x4)
-T39B8 015:259.715 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 015:259.768 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 015:260.112 Data: 00 00 00 00
-T39B8 015:260.141 - 0.434ms returns 4 (0x4)
-T39B8 015:260.608 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 015:260.640 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 015:261.022 Data: BF 00 00 00
-T39B8 015:261.046 - 0.444ms returns 4 (0x4)
-T39B8 015:261.731 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 015:261.756 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 015:262.132 Data: 5A 00 00 00
-T39B8 015:262.173 - 0.448ms returns 4 (0x4)
-T39B8 015:262.624 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 015:262.656 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 015:262.957 Data: FF 0F 00 00
-T39B8 015:262.974 - 0.355ms returns 4 (0x4)
-T39B8 015:263.544 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 015:263.567 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 015:263.998 Data: 00 00 00 00
-T39B8 015:264.029 - 0.489ms returns 4 (0x4)
-T39B8 015:264.088 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 015:264.108 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 015:264.402 Data: 00
-T39B8 015:264.417 - 0.333ms returns 1 (0x1)
-T39B8 015:264.433 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 015:264.446 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 015:264.787 Data: 63
-T39B8 015:264.801 - 0.372ms returns 1 (0x1)
-T39B8 015:264.814 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 015:264.825 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 015:265.095 Data: 63
-T39B8 015:265.109 - 0.298ms returns 1 (0x1)
-T3DFC 015:265.160 JLINK_IsHalted()
-T3DFC 015:265.446 - 0.293ms returns FALSE
-T3DFC 015:365.600 JLINK_HasError()
-T3DFC 015:365.658 JLINK_IsHalted()
-T3DFC 015:366.106 - 0.454ms returns FALSE
-T3DFC 015:467.134 JLINK_HasError()
-T3DFC 015:467.199 JLINK_IsHalted()
-T3DFC 015:467.602 - 0.417ms returns FALSE
-T3DFC 015:567.701 JLINK_HasError()
-T3DFC 015:567.768 JLINK_IsHalted()
-T3DFC 015:568.170 - 0.416ms returns FALSE
-T3DFC 015:669.030 JLINK_HasError()
-T3DFC 015:669.091 JLINK_IsHalted()
-T3DFC 015:669.463 - 0.386ms returns FALSE
-T3DFC 015:770.109 JLINK_HasError()
-T3DFC 015:770.168 JLINK_HasError()
-T3DFC 015:770.192 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 015:770.239 Data: 5E 91 FF 02
-T3DFC 015:770.271 Debug reg: DWT_CYCCNT
-T3DFC 015:770.299 - 0.117ms returns 1 (0x1)
-T39B8 015:770.611 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 015:770.646 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 015:771.277 Data: 00
-T39B8 015:771.321 - 0.721ms returns 1 (0x1)
-T39B8 015:771.380 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 015:771.414 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 015:771.794 Data: 32
-T39B8 015:771.827 - 0.456ms returns 1 (0x1)
-T39B8 015:771.958 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 015:771.986 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 015:772.365 Data: 18 00 00 00
-T39B8 015:772.396 - 0.448ms returns 4 (0x4)
-T39B8 015:774.076 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 015:774.136 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 015:774.588 Data: 00 00 00 00
-T39B8 015:774.623 - 0.557ms returns 4 (0x4)
-T39B8 015:774.676 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 015:774.706 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 015:775.066 Data: 27 00 00 00
-T39B8 015:775.096 - 0.430ms returns 4 (0x4)
-T39B8 015:776.237 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 015:776.286 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 015:776.709 Data: 3F 01 00 00
-T39B8 015:776.743 - 0.516ms returns 4 (0x4)
-T39B8 015:778.191 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 015:778.260 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 015:778.622 Data: 00 14 00 00
-T39B8 015:778.665 - 0.481ms returns 4 (0x4)
-T39B8 015:779.571 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 015:779.607 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 015:779.979 Data: 00 00 00 00
-T39B8 015:780.001 - 0.436ms returns 4 (0x4)
-T39B8 015:780.116 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 015:780.135 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 015:780.411 Data: 00
-T39B8 015:780.429 - 0.318ms returns 1 (0x1)
-T39B8 015:780.447 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 015:780.462 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 015:780.788 Data: 63
-T39B8 015:780.806 - 0.364ms returns 1 (0x1)
-T39B8 015:780.824 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 015:780.837 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 015:781.145 Data: 63
-T39B8 015:781.184 - 0.366ms returns 1 (0x1)
-T3DFC 015:781.273 JLINK_IsHalted()
-T3DFC 015:781.593 - 0.327ms returns FALSE
-T3DFC 015:881.656 JLINK_HasError()
-T3DFC 015:881.722 JLINK_IsHalted()
-T3DFC 015:882.107 - 0.399ms returns FALSE
-T3DFC 015:982.545 JLINK_HasError()
-T3DFC 015:982.608 JLINK_IsHalted()
-T3DFC 015:983.001 - 0.435ms returns FALSE
-T3DFC 016:083.116 JLINK_HasError()
-T3DFC 016:083.180 JLINK_IsHalted()
-T3DFC 016:083.599 - 0.433ms returns FALSE
-T3DFC 016:184.640 JLINK_HasError()
-T3DFC 016:184.798 JLINK_IsHalted()
-T3DFC 016:185.284 - 0.500ms returns FALSE
-T3DFC 016:286.282 JLINK_HasError()
-T3DFC 016:286.344 JLINK_HasError()
-T3DFC 016:286.368 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 016:286.414 Data: 5E 91 FF 02
-T3DFC 016:286.445 Debug reg: DWT_CYCCNT
-T3DFC 016:286.474 - 0.116ms returns 1 (0x1)
-T39B8 016:286.783 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 016:286.818 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 016:287.267 Data: 00
-T39B8 016:287.302 - 0.528ms returns 1 (0x1)
-T39B8 016:287.347 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 016:287.376 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 016:287.797 Data: 32
-T39B8 016:287.830 - 0.492ms returns 1 (0x1)
-T39B8 016:287.936 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 016:287.962 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 016:288.335 Data: 93 00 00 00
-T39B8 016:288.367 - 0.441ms returns 4 (0x4)
-T39B8 016:290.246 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 016:290.331 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 016:290.970 Data: 00 00 00 00
-T39B8 016:291.006 - 0.770ms returns 4 (0x4)
-T39B8 016:291.062 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 016:291.101 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 016:291.734 Data: BF 00 00 00
-T39B8 016:291.806 - 0.753ms returns 4 (0x4)
-T39B8 016:293.190 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 016:293.249 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 016:294.005 Data: 5A 00 00 00
-T39B8 016:294.060 - 0.879ms returns 4 (0x4)
-T39B8 016:295.242 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 016:295.286 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 016:295.896 Data: FF 0F 00 00
-T39B8 016:295.915 - 0.678ms returns 4 (0x4)
-T39B8 016:296.567 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 016:296.592 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 016:296.927 Data: 00 00 00 00
-T39B8 016:296.941 - 0.377ms returns 4 (0x4)
-T39B8 016:296.975 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 016:296.988 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 016:297.448 Data: 00
-T39B8 016:297.469 - 0.498ms returns 1 (0x1)
-T39B8 016:297.486 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 016:297.499 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 016:297.780 Data: 63
-T39B8 016:297.794 - 0.312ms returns 1 (0x1)
-T39B8 016:297.811 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 016:297.822 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 016:298.088 Data: 63
-T39B8 016:298.099 - 0.291ms returns 1 (0x1)
-T3DFC 016:298.141 JLINK_IsHalted()
-T3DFC 016:298.399 - 0.262ms returns FALSE
-T3DFC 016:398.474 JLINK_HasError()
-T3DFC 016:398.541 JLINK_IsHalted()
-T3DFC 016:398.957 - 0.462ms returns FALSE
-T3DFC 016:499.976 JLINK_HasError()
-T3DFC 016:500.039 JLINK_IsHalted()
-T3DFC 016:500.442 - 0.444ms returns FALSE
-T3DFC 016:601.157 JLINK_HasError()
-T3DFC 016:601.218 JLINK_IsHalted()
-T3DFC 016:601.601 - 0.424ms returns FALSE
-T3DFC 016:701.710 JLINK_HasError()
-T3DFC 016:701.773 JLINK_IsHalted()
-T3DFC 016:702.150 - 0.391ms returns FALSE
-T3DFC 016:802.780 JLINK_HasError()
-T3DFC 016:802.847 JLINK_HasError()
-T3DFC 016:802.871 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 016:802.919 Data: 5E 91 FF 02
-T3DFC 016:802.951 Debug reg: DWT_CYCCNT
-T3DFC 016:802.979 - 0.118ms returns 1 (0x1)
-T39B8 016:803.434 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 016:803.536 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 016:804.042 Data: 00
-T39B8 016:804.108 - 0.685ms returns 1 (0x1)
-T39B8 016:804.186 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 016:804.231 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 016:804.661 Data: 32
-T39B8 016:804.728 - 0.553ms returns 1 (0x1)
-T39B8 016:804.894 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 016:804.938 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 016:805.391 Data: E3 00 00 00
-T39B8 016:805.457 - 0.574ms returns 4 (0x4)
-T39B8 016:806.783 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 016:806.834 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 016:807.269 Data: AD 00 00 00
-T39B8 016:807.323 - 0.548ms returns 4 (0x4)
-T39B8 016:807.979 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 016:808.018 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 016:808.477 Data: EF 00 00 00
-T39B8 016:808.530 - 0.558ms returns 4 (0x4)
-T39B8 016:810.219 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 016:810.264 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 016:810.597 Data: 3F 01 00 00
-T39B8 016:810.621 - 0.407ms returns 4 (0x4)
-T39B8 016:811.280 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 016:811.306 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 016:811.613 Data: 77 07 00 00
-T39B8 016:811.626 - 0.349ms returns 4 (0x4)
-T39B8 016:812.050 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 016:812.066 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 016:812.390 Data: 00 00 00 00
-T39B8 016:812.409 - 0.362ms returns 4 (0x4)
-T39B8 016:812.452 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 016:812.464 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 016:812.777 Data: 00
-T39B8 016:812.787 - 0.337ms returns 1 (0x1)
-T39B8 016:812.797 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 016:812.807 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 016:813.089 Data: 63
-T39B8 016:813.100 - 0.306ms returns 1 (0x1)
-T39B8 016:813.110 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 016:813.118 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 016:813.400 Data: 63
-T39B8 016:813.409 - 0.301ms returns 1 (0x1)
-T3DFC 016:813.451 JLINK_IsHalted()
-T3DFC 016:814.301 - 0.870ms returns FALSE
-T3DFC 016:915.016 JLINK_HasError()
-T3DFC 016:915.088 JLINK_IsHalted()
-T3DFC 016:915.507 - 0.460ms returns FALSE
-T3DFC 017:016.238 JLINK_HasError()
-T3DFC 017:016.295 JLINK_IsHalted()
-T3DFC 017:016.711 - 0.457ms returns FALSE
-T3DFC 017:117.114 JLINK_HasError()
-T3DFC 017:117.179 JLINK_IsHalted()
-T3DFC 017:117.590 - 0.425ms returns FALSE
-T3DFC 017:217.853 JLINK_HasError()
-T3DFC 017:217.948 JLINK_IsHalted()
-T3DFC 017:218.423 - 0.494ms returns FALSE
-T3DFC 017:318.513 JLINK_HasError()
-T3DFC 017:318.565 JLINK_HasError()
-T3DFC 017:318.579 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 017:318.608 Data: 5E 91 FF 02
-T3DFC 017:318.626 Debug reg: DWT_CYCCNT
-T3DFC 017:318.642 - 0.068ms returns 1 (0x1)
-T39B8 017:318.892 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 017:318.955 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 017:319.329 Data: 00
-T39B8 017:319.356 - 0.469ms returns 1 (0x1)
-T39B8 017:319.383 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 017:319.400 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 017:319.699 Data: 32
-T39B8 017:319.717 - 0.339ms returns 1 (0x1)
-T39B8 017:319.772 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 017:319.787 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 017:320.070 Data: 30 00 00 00
-T39B8 017:320.089 - 0.322ms returns 4 (0x4)
-T39B8 017:320.946 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 017:320.978 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 017:321.330 Data: 00 00 00 00
-T39B8 017:321.351 - 0.411ms returns 4 (0x4)
-T39B8 017:321.993 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 017:322.019 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 017:322.374 Data: 3F 00 00 00
-T39B8 017:323.113 - 1.126ms returns 4 (0x4)
-T39B8 017:323.894 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 017:323.926 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 017:324.237 Data: 3F 01 00 00
-T39B8 017:324.261 - 0.371ms returns 4 (0x4)
-T39B8 017:324.672 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 017:324.693 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 017:325.052 Data: 00 14 00 00
-T39B8 017:325.069 - 0.401ms returns 4 (0x4)
-T39B8 017:325.592 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 017:325.612 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 017:326.021 Data: 00 00 00 00
-T39B8 017:326.085 - 0.503ms returns 4 (0x4)
-T39B8 017:326.217 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 017:326.260 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 017:326.606 Data: 00
-T39B8 017:326.627 - 0.414ms returns 1 (0x1)
-T39B8 017:326.645 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 017:326.659 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 017:326.922 Data: 63
-T39B8 017:326.935 - 0.294ms returns 1 (0x1)
-T39B8 017:326.949 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 017:326.960 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 017:327.301 Data: 63
-T39B8 017:327.322 - 0.377ms returns 1 (0x1)
-T3DFC 017:327.380 JLINK_IsHalted()
-T3DFC 017:327.656 - 0.282ms returns FALSE
-T3DFC 017:427.810 JLINK_HasError()
-T3DFC 017:427.875 JLINK_IsHalted()
-T3DFC 017:428.284 - 0.423ms returns FALSE
-T3DFC 017:529.132 JLINK_HasError()
-T3DFC 017:529.196 JLINK_IsHalted()
-T3DFC 017:529.590 - 0.408ms returns FALSE
-T3DFC 017:630.354 JLINK_HasError()
-T3DFC 017:630.405 JLINK_IsHalted()
-T3DFC 017:630.805 - 0.434ms returns FALSE
-T3DFC 017:731.037 JLINK_HasError()
-T3DFC 017:731.104 JLINK_IsHalted()
-T3DFC 017:731.630 - 0.570ms returns FALSE
-T3DFC 017:832.395 JLINK_HasError()
-T3DFC 017:832.425 JLINK_HasError()
-T3DFC 017:832.441 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 017:832.465 Data: 5E 91 FF 02
-T3DFC 017:832.481 Debug reg: DWT_CYCCNT
-T3DFC 017:832.494 - 0.057ms returns 1 (0x1)
-T39B8 017:832.706 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 017:832.792 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 017:833.160 Data: 00
-T39B8 017:833.176 - 0.475ms returns 1 (0x1)
-T39B8 017:833.200 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 017:833.213 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 017:833.493 Data: 32
-T39B8 017:833.511 - 0.315ms returns 1 (0x1)
-T39B8 017:833.602 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 017:833.618 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 017:833.908 Data: 18 00 00 00
-T39B8 017:833.927 - 0.329ms returns 4 (0x4)
-T39B8 017:834.562 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 017:834.587 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 017:834.921 Data: 00 00 00 00
-T39B8 017:834.935 - 0.376ms returns 4 (0x4)
-T39B8 017:835.178 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 017:835.193 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 017:835.560 Data: 27 00 00 00
-T39B8 017:835.573 - 0.398ms returns 4 (0x4)
-T39B8 017:835.954 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 017:835.968 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 017:836.370 Data: 3F 01 00 00
-T39B8 017:836.384 - 0.433ms returns 4 (0x4)
-T39B8 017:836.404 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 017:836.415 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 017:836.816 Data: 00 0A 00 00
-T39B8 017:836.847 - 0.446ms returns 4 (0x4)
-T39B8 017:837.263 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 017:837.278 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 017:837.627 Data: 00 00 00 00
-T39B8 017:837.661 - 0.401ms returns 4 (0x4)
-T39B8 017:837.686 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 017:837.695 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 017:837.981 Data: 00
-T39B8 017:837.992 - 0.310ms returns 1 (0x1)
-T39B8 017:838.003 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 017:838.014 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 017:838.284 Data: 63
-T39B8 017:838.294 - 0.294ms returns 1 (0x1)
-T39B8 017:838.304 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 017:838.313 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 017:838.589 Data: 63
-T39B8 017:838.599 - 0.297ms returns 1 (0x1)
-T3DFC 017:838.637 JLINK_IsHalted()
-T3DFC 017:838.941 - 0.308ms returns FALSE
-T3DFC 017:939.664 JLINK_HasError()
-T3DFC 017:939.728 JLINK_IsHalted()
-T3DFC 017:940.169 - 0.483ms returns FALSE
-T3DFC 018:040.568 JLINK_HasError()
-T3DFC 018:040.648 JLINK_IsHalted()
-T3DFC 018:041.075 - 0.469ms returns FALSE
-T3DFC 018:142.294 JLINK_HasError()
-T3DFC 018:142.359 JLINK_IsHalted()
-T3DFC 018:142.803 - 0.489ms returns FALSE
-T3DFC 018:243.428 JLINK_HasError()
-T3DFC 018:243.513 JLINK_IsHalted()
-T3DFC 018:243.920 - 0.446ms returns FALSE
-T3DFC 018:344.108 JLINK_HasError()
-T3DFC 018:344.260 JLINK_IsHalted()
-T3DFC 018:344.668 - 0.421ms returns FALSE
-T3DFC 018:445.251 JLINK_HasError()
-T3DFC 018:445.314 JLINK_HasError()
-T3DFC 018:445.338 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 018:445.384 Data: 5E 91 FF 02
-T3DFC 018:445.416 Debug reg: DWT_CYCCNT
-T3DFC 018:445.444 - 0.116ms returns 1 (0x1)
-T39B8 018:445.782 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 018:445.872 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 018:446.296 Data: 00
-T39B8 018:446.332 - 0.560ms returns 1 (0x1)
-T39B8 018:446.377 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 018:446.406 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 018:446.808 Data: 32
-T39B8 018:446.843 - 0.475ms returns 1 (0x1)
-T39B8 018:446.938 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 018:446.964 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 018:447.439 Data: E2 00 00 00
-T39B8 018:447.517 - 0.590ms returns 4 (0x4)
-T39B8 018:449.123 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 018:449.196 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 018:449.596 Data: A9 00 00 00
-T39B8 018:449.630 - 0.517ms returns 4 (0x4)
-T39B8 018:450.217 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 018:450.254 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 018:450.622 Data: EF 00 00 00
-T39B8 018:450.658 - 0.450ms returns 4 (0x4)
-T39B8 018:451.610 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 018:451.649 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 018:451.998 Data: 3F 01 00 00
-T39B8 018:452.031 - 0.431ms returns 4 (0x4)
-T39B8 018:452.077 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 018:452.104 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 018:452.478 Data: 42 08 00 00
-T39B8 018:452.512 - 0.444ms returns 4 (0x4)
-T39B8 018:453.540 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 018:453.579 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 018:453.948 Data: 00 00 00 00
-T39B8 018:453.979 - 0.446ms returns 4 (0x4)
-T39B8 018:454.035 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 018:454.056 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 018:454.399 Data: 00
-T39B8 018:454.428 - 0.400ms returns 1 (0x1)
-T39B8 018:454.452 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 018:454.472 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 018:454.769 Data: 63
-T39B8 018:454.793 - 0.348ms returns 1 (0x1)
-T39B8 018:454.816 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 018:454.834 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 018:455.132 Data: 63
-T39B8 018:455.155 - 0.347ms returns 1 (0x1)
-T3DFC 018:455.245 JLINK_IsHalted()
-T3DFC 018:455.620 - 0.386ms returns FALSE
-T3DFC 018:556.642 JLINK_HasError()
-T3DFC 018:556.711 JLINK_IsHalted()
-T3DFC 018:557.412 - 0.754ms returns FALSE
-T3DFC 018:658.489 JLINK_HasError()
-T3DFC 018:658.552 JLINK_IsHalted()
-T3DFC 018:658.959 - 0.421ms returns FALSE
-T3DFC 018:760.030 JLINK_HasError()
-T3DFC 018:760.094 JLINK_IsHalted()
-T3DFC 018:760.518 - 0.461ms returns FALSE
-T3DFC 018:861.007 JLINK_HasError()
-T3DFC 018:861.072 JLINK_IsHalted()
-T3DFC 018:861.580 - 0.523ms returns FALSE
-T3DFC 018:961.753 JLINK_HasError()
-T3DFC 018:961.816 JLINK_HasError()
-T3DFC 018:961.840 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 018:961.884 Data: 5E 91 FF 02
-T3DFC 018:961.916 Debug reg: DWT_CYCCNT
-T3DFC 018:961.943 - 0.113ms returns 1 (0x1)
-T39B8 018:962.259 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 018:962.295 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 018:962.704 Data: 00
-T39B8 018:962.739 - 0.489ms returns 1 (0x1)
-T39B8 018:962.784 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 018:962.815 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 018:963.670 Data: 32
-T39B8 018:963.739 - 0.965ms returns 1 (0x1)
-T39B8 018:963.926 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 018:963.971 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 018:964.435 Data: E2 00 00 00
-T39B8 018:964.487 - 0.572ms returns 4 (0x4)
-T39B8 018:966.242 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 018:966.327 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 018:966.715 Data: A9 00 00 00
-T39B8 018:966.758 - 0.526ms returns 4 (0x4)
-T39B8 018:967.551 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 018:967.604 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 018:968.044 Data: EF 00 00 00
-T39B8 018:968.078 - 0.537ms returns 4 (0x4)
-T39B8 018:968.732 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 018:968.775 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 018:969.174 Data: 3F 01 00 00
-T39B8 018:969.205 - 0.480ms returns 4 (0x4)
-T39B8 018:969.244 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 018:969.268 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 018:969.595 Data: 42 08 00 00
-T39B8 018:969.622 - 0.385ms returns 4 (0x4)
-T39B8 018:970.405 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 018:970.479 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 018:970.823 Data: 00 00 00 00
-T39B8 018:970.859 - 0.460ms returns 4 (0x4)
-T39B8 018:971.200 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 018:971.233 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 018:971.567 Data: 00
-T39B8 018:971.590 - 0.397ms returns 1 (0x1)
-T39B8 018:971.614 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 018:971.633 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 018:971.967 Data: 63
-T39B8 018:971.987 - 0.379ms returns 1 (0x1)
-T39B8 018:972.007 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 018:972.023 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 018:972.296 Data: 63
-T39B8 018:972.317 - 0.315ms returns 1 (0x1)
-T3DFC 018:973.195 JLINK_IsHalted()
-T3DFC 018:973.558 - 0.374ms returns FALSE
-T3DFC 019:073.642 JLINK_HasError()
-T3DFC 019:073.706 JLINK_IsHalted()
-T3DFC 019:074.102 - 0.411ms returns FALSE
-T3DFC 019:174.239 JLINK_HasError()
-T3DFC 019:174.305 JLINK_IsHalted()
-T3DFC 019:174.701 - 0.410ms returns FALSE
-T3DFC 019:274.958 JLINK_HasError()
-T3DFC 019:275.123 JLINK_IsHalted()
-T3DFC 019:275.589 - 0.481ms returns FALSE
-T3DFC 019:375.740 JLINK_HasError()
-T3DFC 019:375.805 JLINK_IsHalted()
-T3DFC 019:376.279 - 0.488ms returns FALSE
-T3DFC 019:476.588 JLINK_HasError()
-T3DFC 019:476.659 JLINK_HasError()
-T3DFC 019:476.684 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 019:476.730 Data: 5E 91 FF 02
-T3DFC 019:476.763 Debug reg: DWT_CYCCNT
-T3DFC 019:476.791 - 0.117ms returns 1 (0x1)
-T39B8 019:477.185 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 019:477.267 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 019:477.687 Data: 00
-T39B8 019:477.726 - 0.551ms returns 1 (0x1)
-T39B8 019:477.778 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 019:477.810 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 019:478.183 Data: 32
-T39B8 019:478.217 - 0.449ms returns 1 (0x1)
-T39B8 019:478.326 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 019:478.352 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 019:478.718 Data: E2 00 00 00
-T39B8 019:478.751 - 0.435ms returns 4 (0x4)
-T39B8 019:478.790 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 019:478.815 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 019:479.179 Data: A9 00 00 00
-T39B8 019:479.211 - 0.430ms returns 4 (0x4)
-T39B8 019:479.247 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 019:479.271 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 019:479.624 Data: EF 00 00 00
-T39B8 019:479.658 - 0.420ms returns 4 (0x4)
-T39B8 019:479.693 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 019:479.718 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 019:480.086 Data: 3F 01 00 00
-T39B8 019:480.120 - 0.436ms returns 4 (0x4)
-T39B8 019:480.156 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 019:480.180 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 019:480.591 Data: 42 08 00 00
-T39B8 019:480.625 - 0.478ms returns 4 (0x4)
-T39B8 019:480.718 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 019:480.743 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 019:481.077 Data: 00 00 00 00
-T39B8 019:481.141 - 0.433ms returns 4 (0x4)
-T39B8 019:481.248 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 019:481.290 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 019:481.668 Data: 00
-T39B8 019:481.701 - 0.463ms returns 1 (0x1)
-T39B8 019:481.733 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 019:481.759 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 019:482.124 Data: 63
-T39B8 019:482.157 - 0.433ms returns 1 (0x1)
-T39B8 019:482.187 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 019:482.212 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 019:482.580 Data: 63
-T39B8 019:482.612 - 0.435ms returns 1 (0x1)
-T3DFC 019:482.736 JLINK_IsHalted()
-T3DFC 019:483.099 - 0.376ms returns FALSE
-T3DFC 019:584.026 JLINK_HasError()
-T3DFC 019:584.088 JLINK_IsHalted()
-T3DFC 019:584.483 - 0.415ms returns FALSE
-T3DFC 019:685.298 JLINK_HasError()
-T3DFC 019:685.380 JLINK_IsHalted()
-T3DFC 019:685.818 - 0.455ms returns FALSE
-T3DFC 019:785.911 JLINK_HasError()
-T3DFC 019:785.976 JLINK_IsHalted()
-T3DFC 019:786.377 - 0.442ms returns FALSE
-T3DFC 019:887.010 JLINK_HasError()
-T3DFC 019:887.072 JLINK_IsHalted()
-T3DFC 019:887.499 - 0.446ms returns FALSE
-T3DFC 019:988.104 JLINK_HasError()
-T3DFC 019:988.163 JLINK_IsHalted()
-T3DFC 019:988.574 - 0.424ms returns FALSE
-T3DFC 020:089.078 JLINK_HasError()
-T3DFC 020:089.144 JLINK_HasError()
-T3DFC 020:089.168 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 020:089.215 Data: 5E 91 FF 02
-T3DFC 020:089.247 Debug reg: DWT_CYCCNT
-T3DFC 020:089.275 - 0.116ms returns 1 (0x1)
-T39B8 020:089.612 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 020:089.697 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 020:090.149 Data: 00
-T39B8 020:090.196 - 0.594ms returns 1 (0x1)
-T39B8 020:090.273 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 020:090.311 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 020:090.711 Data: 32
-T39B8 020:090.745 - 0.481ms returns 1 (0x1)
-T39B8 020:090.900 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 020:090.928 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 020:091.304 Data: E2 00 00 00
-T39B8 020:091.337 - 0.446ms returns 4 (0x4)
-T39B8 020:091.375 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 020:091.400 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 020:091.803 Data: A9 00 00 00
-T39B8 020:091.836 - 0.470ms returns 4 (0x4)
-T39B8 020:091.872 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 020:091.896 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 020:092.230 Data: EF 00 00 00
-T39B8 020:092.261 - 0.398ms returns 4 (0x4)
-T39B8 020:092.296 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 020:092.321 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 020:092.670 Data: 3F 01 00 00
-T39B8 020:092.709 - 0.422ms returns 4 (0x4)
-T39B8 020:092.753 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 020:092.779 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 020:093.155 Data: 42 08 00 00
-T39B8 020:093.189 - 0.446ms returns 4 (0x4)
-T39B8 020:093.289 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 020:093.314 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 020:093.658 Data: 00 00 00 00
-T39B8 020:093.692 - 0.413ms returns 4 (0x4)
-T39B8 020:093.755 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 020:093.780 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 020:094.150 Data: 00
-T39B8 020:094.184 - 0.438ms returns 1 (0x1)
-T39B8 020:094.214 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 020:094.239 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 020:094.626 Data: 63
-T39B8 020:094.672 - 0.468ms returns 1 (0x1)
-T39B8 020:094.718 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 020:094.754 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 020:095.128 Data: 63
-T39B8 020:095.170 - 0.463ms returns 1 (0x1)
-T3DFC 020:095.302 JLINK_IsHalted()
-T3DFC 020:095.655 - 0.366ms returns FALSE
-T3DFC 020:196.478 JLINK_HasError()
-T3DFC 020:196.554 JLINK_IsHalted()
-T3DFC 020:196.978 - 0.444ms returns FALSE
-T3DFC 020:297.196 JLINK_HasError()
-T3DFC 020:297.258 JLINK_IsHalted()
-T3DFC 020:297.696 - 0.451ms returns FALSE
-T3DFC 020:398.910 JLINK_HasError()
-T3DFC 020:398.992 JLINK_IsHalted()
-T3DFC 020:399.410 - 0.434ms returns FALSE
-T3DFC 020:499.929 JLINK_HasError()
-T3DFC 020:499.989 JLINK_IsHalted()
-T3DFC 020:500.376 - 0.427ms returns FALSE
-T3DFC 020:600.883 JLINK_HasError()
-T3DFC 020:601.020 JLINK_HasError()
-T3DFC 020:601.045 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 020:601.091 Data: 5E 91 FF 02
-T3DFC 020:601.122 Debug reg: DWT_CYCCNT
-T3DFC 020:601.181 - 0.176ms returns 1 (0x1)
-T39B8 020:601.540 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 020:601.584 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 020:601.997 Data: 00
-T39B8 020:602.036 - 0.506ms returns 1 (0x1)
-T39B8 020:602.119 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 020:602.316 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 020:602.796 Data: 32
-T39B8 020:602.830 - 0.721ms returns 1 (0x1)
-T39B8 020:602.981 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 020:603.013 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 020:603.386 Data: E2 00 00 00
-T39B8 020:603.424 - 0.453ms returns 4 (0x4)
-T39B8 020:603.469 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 020:603.497 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 020:603.846 Data: A9 00 00 00
-T39B8 020:603.879 - 0.420ms returns 4 (0x4)
-T39B8 020:603.916 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 020:603.941 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 020:604.293 Data: EF 00 00 00
-T39B8 020:604.325 - 0.418ms returns 4 (0x4)
-T39B8 020:604.361 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 020:604.386 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 020:604.790 Data: 3F 01 00 00
-T39B8 020:604.821 - 0.469ms returns 4 (0x4)
-T39B8 020:604.857 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 020:604.882 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 020:605.254 Data: 42 08 00 00
-T39B8 020:605.293 - 0.446ms returns 4 (0x4)
-T39B8 020:605.423 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 020:605.454 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 020:605.837 Data: 00 00 00 00
-T39B8 020:605.880 - 0.468ms returns 4 (0x4)
-T39B8 020:605.961 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 020:605.989 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 020:606.365 Data: 00
-T39B8 020:606.400 - 0.450ms returns 1 (0x1)
-T39B8 020:606.431 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 020:606.457 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 020:606.798 Data: 63
-T39B8 020:606.833 - 0.411ms returns 1 (0x1)
-T39B8 020:606.862 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 020:606.887 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 020:607.208 Data: 63
-T39B8 020:607.241 - 0.389ms returns 1 (0x1)
-T3DFC 020:607.383 JLINK_IsHalted()
-T3DFC 020:607.784 - 0.414ms returns FALSE
-T3DFC 020:708.077 JLINK_HasError()
-T3DFC 020:708.141 JLINK_IsHalted()
-T3DFC 020:708.577 - 0.449ms returns FALSE
-T3DFC 020:809.218 JLINK_HasError()
-T3DFC 020:809.284 JLINK_IsHalted()
-T3DFC 020:809.714 - 0.473ms returns FALSE
-T3DFC 020:910.269 JLINK_HasError()
-T3DFC 020:910.337 JLINK_IsHalted()
-T3DFC 020:910.797 - 0.499ms returns FALSE
-T3DFC 021:012.239 JLINK_HasError()
-T3DFC 021:012.308 JLINK_IsHalted()
-T3DFC 021:012.695 - 0.401ms returns FALSE
-T3DFC 021:112.784 JLINK_HasError()
-T3DFC 021:112.827 JLINK_IsHalted()
-T3DFC 021:113.179 - 0.362ms returns FALSE
-T3DFC 021:213.564 JLINK_HasError()
-T3DFC 021:213.632 JLINK_HasError()
-T3DFC 021:213.657 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 021:213.702 Data: 5E 91 FF 02
-T3DFC 021:213.733 Debug reg: DWT_CYCCNT
-T3DFC 021:213.762 - 0.115ms returns 1 (0x1)
-T39B8 021:214.287 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 021:214.379 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 021:214.802 Data: 00
-T39B8 021:214.864 - 0.588ms returns 1 (0x1)
-T39B8 021:214.938 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 021:214.981 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 021:215.380 Data: 32
-T39B8 021:215.428 - 0.500ms returns 1 (0x1)
-T39B8 021:215.588 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 021:215.629 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 021:215.981 Data: E2 00 00 00
-T39B8 021:216.014 - 0.436ms returns 4 (0x4)
-T39B8 021:216.052 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 021:216.080 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 021:216.414 Data: A9 00 00 00
-T39B8 021:216.446 - 0.403ms returns 4 (0x4)
-T39B8 021:216.482 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 021:216.507 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 021:216.879 Data: EF 00 00 00
-T39B8 021:216.923 - 0.450ms returns 4 (0x4)
-T39B8 021:216.959 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 021:216.983 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 021:217.318 Data: 3F 01 00 00
-T39B8 021:217.349 - 0.400ms returns 4 (0x4)
-T39B8 021:217.385 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 021:217.410 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 021:217.801 Data: 42 08 00 00
-T39B8 021:217.833 - 0.457ms returns 4 (0x4)
-T39B8 021:217.978 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 021:218.003 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 021:218.371 Data: 00 00 00 00
-T39B8 021:218.406 - 0.437ms returns 4 (0x4)
-T39B8 021:218.469 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 021:218.494 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 021:218.835 Data: 00
-T39B8 021:218.873 - 0.415ms returns 1 (0x1)
-T39B8 021:218.908 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 021:218.934 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 021:219.273 Data: 63
-T39B8 021:219.305 - 0.407ms returns 1 (0x1)
-T39B8 021:219.336 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 021:219.362 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 021:219.706 Data: 63
-T39B8 021:219.741 - 0.414ms returns 1 (0x1)
-T3DFC 021:219.860 JLINK_IsHalted()
-T3DFC 021:220.228 - 0.383ms returns FALSE
-T3DFC 021:321.144 JLINK_HasError()
-T3DFC 021:321.211 JLINK_IsHalted()
-T3DFC 021:321.626 - 0.459ms returns FALSE
-T3DFC 021:421.815 JLINK_HasError()
-T3DFC 021:421.874 JLINK_IsHalted()
-T3DFC 021:422.273 - 0.413ms returns FALSE
-T3DFC 021:522.719 JLINK_HasError()
-T3DFC 021:522.778 JLINK_IsHalted()
-T3DFC 021:523.172 - 0.434ms returns FALSE
-T3DFC 021:623.929 JLINK_HasError()
-T3DFC 021:623.988 JLINK_IsHalted()
-T3DFC 021:624.370 - 0.395ms returns FALSE
-T3DFC 021:724.855 JLINK_HasError()
-T3DFC 021:724.917 JLINK_HasError()
-T3DFC 021:724.941 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 021:724.984 Data: 5E 91 FF 02
-T3DFC 021:725.016 Debug reg: DWT_CYCCNT
-T3DFC 021:725.044 - 0.112ms returns 1 (0x1)
-T39B8 021:725.350 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 021:725.385 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 021:725.839 Data: 00
-T39B8 021:725.873 - 0.533ms returns 1 (0x1)
-T39B8 021:725.918 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 021:725.947 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 021:726.318 Data: 32
-T39B8 021:726.349 - 0.441ms returns 1 (0x1)
-T39B8 021:726.446 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 021:726.472 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 021:726.829 Data: C1 00 00 00
-T39B8 021:726.861 - 0.425ms returns 4 (0x4)
-T39B8 021:728.483 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 021:728.567 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 021:728.988 Data: 00 00 00 00
-T39B8 021:729.038 - 0.565ms returns 4 (0x4)
-T39B8 021:729.780 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 021:729.831 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 021:730.258 Data: EF 00 00 00
-T39B8 021:730.293 - 0.522ms returns 4 (0x4)
-T39B8 021:730.346 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 021:730.377 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 021:730.764 Data: 4B 00 00 00
-T39B8 021:730.796 - 0.459ms returns 4 (0x4)
-T39B8 021:731.860 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 021:731.911 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 021:732.281 Data: F4 0D 00 00
-T39B8 021:732.310 - 0.458ms returns 4 (0x4)
-T39B8 021:732.924 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 021:732.958 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 021:733.310 Data: 00 00 00 00
-T39B8 021:733.335 - 0.418ms returns 4 (0x4)
-T39B8 021:733.391 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 021:733.412 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 021:733.779 Data: 00
-T39B8 021:733.801 - 0.416ms returns 1 (0x1)
-T39B8 021:733.823 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 021:733.846 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 021:734.129 Data: 63
-T39B8 021:734.151 - 0.335ms returns 1 (0x1)
-T39B8 021:734.173 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 021:734.190 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 021:734.555 Data: 63
-T39B8 021:734.577 - 0.411ms returns 1 (0x1)
-T3DFC 021:734.653 JLINK_IsHalted()
-T3DFC 021:734.953 - 0.334ms returns FALSE
-T3DFC 021:835.460 JLINK_HasError()
-T3DFC 021:835.528 JLINK_IsHalted()
-T3DFC 021:835.956 - 0.442ms returns FALSE
-T3DFC 021:936.037 JLINK_HasError()
-T3DFC 021:936.097 JLINK_IsHalted()
-T3DFC 021:936.570 - 0.487ms returns FALSE
-T3DFC 022:037.123 JLINK_HasError()
-T3DFC 022:037.185 JLINK_IsHalted()
-T3DFC 022:037.586 - 0.444ms returns FALSE
-T3DFC 022:137.938 JLINK_HasError()
-T3DFC 022:138.001 JLINK_IsHalted()
-T3DFC 022:138.420 - 0.476ms returns FALSE
-T3DFC 022:238.633 JLINK_HasError()
-T3DFC 022:238.698 JLINK_HasError()
-T3DFC 022:238.723 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 022:238.770 Data: 5E 91 FF 02
-T3DFC 022:238.802 Debug reg: DWT_CYCCNT
-T3DFC 022:238.830 - 0.116ms returns 1 (0x1)
-T39B8 022:239.262 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 022:239.356 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 022:239.877 Data: 00
-T39B8 022:239.944 - 0.692ms returns 1 (0x1)
-T39B8 022:240.021 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 022:240.065 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 022:240.657 Data: 32
-T39B8 022:240.724 - 0.713ms returns 1 (0x1)
-T39B8 022:240.887 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 022:240.933 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 022:241.404 Data: E2 00 00 00
-T39B8 022:241.471 - 0.594ms returns 4 (0x4)
-T39B8 022:242.875 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 022:242.951 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 022:243.326 Data: A9 00 00 00
-T39B8 022:243.383 - 0.519ms returns 4 (0x4)
-T39B8 022:244.848 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 022:244.910 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 022:245.461 Data: EF 00 00 00
-T39B8 022:245.529 - 0.692ms returns 4 (0x4)
-T39B8 022:245.609 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 022:245.653 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 022:246.100 Data: 3F 01 00 00
-T39B8 022:246.166 - 0.567ms returns 4 (0x4)
-T39B8 022:247.482 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 022:247.540 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 022:247.927 Data: 42 08 00 00
-T39B8 022:247.961 - 0.488ms returns 4 (0x4)
-T39B8 022:248.917 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 022:248.958 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 022:249.289 Data: 00 00 00 00
-T39B8 022:249.317 - 0.407ms returns 4 (0x4)
-T39B8 022:249.373 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 022:249.395 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 022:249.791 Data: 00
-T39B8 022:249.819 - 0.453ms returns 1 (0x1)
-T39B8 022:249.842 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 022:249.861 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 022:250.179 Data: 63
-T39B8 022:250.204 - 0.368ms returns 1 (0x1)
-T39B8 022:250.226 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 022:250.245 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 022:250.566 Data: 63
-T39B8 022:250.590 - 0.370ms returns 1 (0x1)
-T3DFC 022:250.680 JLINK_IsHalted()
-T3DFC 022:251.027 - 0.358ms returns FALSE
-T3DFC 022:351.472 JLINK_HasError()
-T3DFC 022:351.559 JLINK_IsHalted()
-T3DFC 022:352.030 - 0.514ms returns FALSE
-T3DFC 022:452.211 JLINK_HasError()
-T3DFC 022:452.277 JLINK_IsHalted()
-T3DFC 022:452.684 - 0.421ms returns FALSE
-T3DFC 022:553.504 JLINK_HasError()
-T3DFC 022:553.592 JLINK_IsHalted()
-T3DFC 022:554.014 - 0.464ms returns FALSE
-T3DFC 022:654.379 JLINK_HasError()
-T3DFC 022:654.441 JLINK_IsHalted()
-T3DFC 022:654.834 - 0.407ms returns FALSE
-T3DFC 022:755.186 JLINK_HasError()
-T3DFC 022:755.278 JLINK_HasError()
-T3DFC 022:755.304 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 022:755.351 Data: 5E 91 FF 02
-T3DFC 022:755.382 Debug reg: DWT_CYCCNT
-T3DFC 022:755.411 - 0.117ms returns 1 (0x1)
-T39B8 022:756.219 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 022:756.301 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 022:756.711 Data: 00
-T39B8 022:756.770 - 0.560ms returns 1 (0x1)
-T39B8 022:756.840 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 022:756.879 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 022:757.220 Data: 32
-T39B8 022:757.250 - 0.419ms returns 1 (0x1)
-T39B8 022:757.361 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 022:757.386 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 022:757.794 Data: E2 00 00 00
-T39B8 022:757.829 - 0.477ms returns 4 (0x4)
-T39B8 022:758.707 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 022:758.751 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 022:759.108 Data: A9 00 00 00
-T39B8 022:759.147 - 0.450ms returns 4 (0x4)
-T39B8 022:759.810 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 022:759.847 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 022:760.327 Data: EF 00 00 00
-T39B8 022:760.362 - 0.561ms returns 4 (0x4)
-T39B8 022:760.599 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 022:760.696 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 022:761.125 Data: 3F 01 00 00
-T39B8 022:761.161 - 0.573ms returns 4 (0x4)
-T39B8 022:761.668 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 022:761.701 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 022:762.049 Data: 42 08 00 00
-T39B8 022:762.079 - 0.419ms returns 4 (0x4)
-T39B8 022:762.645 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 022:762.679 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 022:763.027 Data: 00 00 00 00
-T39B8 022:763.061 - 0.425ms returns 4 (0x4)
-T39B8 022:763.130 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 022:763.157 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 022:763.581 Data: 00
-T39B8 022:763.616 - 0.496ms returns 1 (0x1)
-T39B8 022:763.647 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 022:763.672 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 022:764.020 Data: 63
-T39B8 022:764.055 - 0.418ms returns 1 (0x1)
-T39B8 022:764.084 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 022:764.108 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 022:764.439 Data: 63
-T39B8 022:764.471 - 0.396ms returns 1 (0x1)
-T3DFC 022:764.583 JLINK_IsHalted()
-T3DFC 022:764.977 - 0.408ms returns FALSE
-T3DFC 022:865.316 JLINK_HasError()
-T3DFC 022:865.382 JLINK_IsHalted()
-T3DFC 022:865.776 - 0.439ms returns FALSE
-T3DFC 022:966.246 JLINK_HasError()
-T3DFC 022:966.312 JLINK_IsHalted()
-T3DFC 022:966.713 - 0.415ms returns FALSE
-T3DFC 023:066.899 JLINK_HasError()
-T3DFC 023:066.961 JLINK_IsHalted()
-T3DFC 023:067.375 - 0.428ms returns FALSE
-T3DFC 023:168.349 JLINK_HasError()
-T3DFC 023:168.409 JLINK_IsHalted()
-T3DFC 023:168.788 - 0.393ms returns FALSE
-T3DFC 023:268.897 JLINK_HasError()
-T3DFC 023:268.963 JLINK_IsHalted()
-T3DFC 023:269.338 - 0.389ms returns FALSE
-T3DFC 023:369.420 JLINK_HasError()
-T3DFC 023:369.484 JLINK_HasError()
-T3DFC 023:369.508 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 023:369.554 Data: 5E 91 FF 02
-T3DFC 023:369.586 Debug reg: DWT_CYCCNT
-T3DFC 023:369.614 - 0.115ms returns 1 (0x1)
-T39B8 023:369.976 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 023:370.015 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 023:370.434 Data: 00
-T39B8 023:370.468 - 0.502ms returns 1 (0x1)
-T39B8 023:370.513 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 023:370.542 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 023:371.122 Data: 32
-T39B8 023:371.202 - 0.729ms returns 1 (0x1)
-T39B8 023:371.390 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 023:371.423 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 023:371.826 Data: E2 00 00 00
-T39B8 023:371.869 - 0.489ms returns 4 (0x4)
-T39B8 023:371.913 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 023:371.939 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 023:372.289 Data: A9 00 00 00
-T39B8 023:372.327 - 0.424ms returns 4 (0x4)
-T39B8 023:372.375 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 023:372.514 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 023:372.905 Data: EF 00 00 00
-T39B8 023:372.937 - 0.571ms returns 4 (0x4)
-T39B8 023:372.980 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 023:373.007 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 023:373.388 Data: 3F 01 00 00
-T39B8 023:373.419 - 0.449ms returns 4 (0x4)
-T39B8 023:373.461 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 023:373.486 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 023:373.856 Data: 42 08 00 00
-T39B8 023:373.888 - 0.437ms returns 4 (0x4)
-T39B8 023:374.151 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 023:374.182 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 023:374.564 Data: 00 00 00 00
-T39B8 023:374.596 - 0.455ms returns 4 (0x4)
-T39B8 023:374.661 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 023:374.686 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 023:375.060 Data: 00
-T39B8 023:375.098 - 0.447ms returns 1 (0x1)
-T39B8 023:375.132 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 023:375.160 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 023:375.568 Data: 63
-T39B8 023:375.600 - 0.477ms returns 1 (0x1)
-T39B8 023:375.631 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 023:375.656 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 023:376.027 Data: 63
-T39B8 023:376.058 - 0.437ms returns 1 (0x1)
-T3DFC 023:376.176 JLINK_IsHalted()
-T3DFC 023:376.564 - 0.400ms returns FALSE
-T3DFC 023:477.258 JLINK_HasError()
-T3DFC 023:477.320 JLINK_IsHalted()
-T3DFC 023:477.714 - 0.408ms returns FALSE
-T3DFC 023:578.081 JLINK_HasError()
-T3DFC 023:578.143 JLINK_IsHalted()
-T3DFC 023:578.570 - 0.440ms returns FALSE
-T3DFC 023:678.651 JLINK_HasError()
-T3DFC 023:678.713 JLINK_IsHalted()
-T3DFC 023:679.095 - 0.396ms returns FALSE
-T3DFC 023:779.231 JLINK_HasError()
-T3DFC 023:779.294 JLINK_IsHalted()
-T3DFC 023:779.697 - 0.417ms returns FALSE
-T3DFC 023:880.002 JLINK_HasError()
-T3DFC 023:880.071 JLINK_HasError()
-T3DFC 023:880.096 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 023:880.142 Data: 5E 91 FF 02
-T3DFC 023:880.174 Debug reg: DWT_CYCCNT
-T3DFC 023:880.202 - 0.116ms returns 1 (0x1)
-T39B8 023:880.546 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 023:880.625 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 023:881.163 Data: 00
-T39B8 023:881.257 - 0.740ms returns 1 (0x1)
-T39B8 023:881.337 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 023:881.376 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 023:881.788 Data: 32
-T39B8 023:881.821 - 0.494ms returns 1 (0x1)
-T39B8 023:881.956 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 023:881.985 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 023:882.321 Data: C1 00 00 00
-T39B8 023:882.352 - 0.406ms returns 4 (0x4)
-T39B8 023:883.589 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 023:883.653 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 023:884.061 Data: 00 00 00 00
-T39B8 023:884.094 - 0.515ms returns 4 (0x4)
-T39B8 023:884.781 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 023:884.825 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 023:885.205 Data: EF 00 00 00
-T39B8 023:885.243 - 0.471ms returns 4 (0x4)
-T39B8 023:885.296 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 023:885.326 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 023:885.692 Data: 4D 00 00 00
-T39B8 023:885.724 - 0.437ms returns 4 (0x4)
-T39B8 023:886.416 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 023:886.456 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 023:886.847 Data: 52 0E 00 00
-T39B8 023:886.878 - 0.471ms returns 4 (0x4)
-T39B8 023:887.537 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 023:887.581 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 023:887.933 Data: 00 00 00 00
-T39B8 023:887.960 - 0.430ms returns 4 (0x4)
-T39B8 023:888.018 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 023:888.040 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 023:888.344 Data: 00
-T39B8 023:888.368 - 0.358ms returns 1 (0x1)
-T39B8 023:888.391 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 023:888.410 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 023:888.764 Data: 63
-T39B8 023:888.788 - 0.404ms returns 1 (0x1)
-T39B8 023:888.810 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 023:888.836 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 023:889.731 Data: 63
-T39B8 023:889.753 - 0.948ms returns 1 (0x1)
-T3DFC 023:889.882 JLINK_IsHalted()
-T3DFC 023:890.218 - 0.346ms returns FALSE
-T3DFC 023:990.734 JLINK_HasError()
-T3DFC 023:990.797 JLINK_IsHalted()
-T3DFC 023:991.292 - 0.538ms returns FALSE
-T3DFC 024:092.361 JLINK_HasError()
-T3DFC 024:092.425 JLINK_IsHalted()
-T3DFC 024:092.824 - 0.413ms returns FALSE
-T3DFC 024:192.909 JLINK_HasError()
-T3DFC 024:192.976 JLINK_IsHalted()
-T3DFC 024:193.401 - 0.439ms returns FALSE
-T3DFC 024:294.183 JLINK_HasError()
-T3DFC 024:294.245 JLINK_IsHalted()
-T3DFC 024:294.660 - 0.430ms returns FALSE
-T3DFC 024:395.381 JLINK_HasError()
-T3DFC 024:395.445 JLINK_HasError()
-T3DFC 024:395.469 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 024:395.516 Data: 5E 91 FF 02
-T3DFC 024:395.547 Debug reg: DWT_CYCCNT
-T3DFC 024:395.575 - 0.115ms returns 1 (0x1)
-T39B8 024:395.920 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 024:396.011 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 024:396.399 Data: 00
-T39B8 024:396.437 - 0.527ms returns 1 (0x1)
-T39B8 024:396.508 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 024:396.543 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 024:396.925 Data: 32
-T39B8 024:396.967 - 0.469ms returns 1 (0x1)
-T39B8 024:397.095 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 024:397.126 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 024:397.575 Data: E2 00 00 00
-T39B8 024:397.607 - 0.522ms returns 4 (0x4)
-T39B8 024:398.986 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 024:399.039 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 024:399.405 Data: A9 00 00 00
-T39B8 024:399.439 - 0.463ms returns 4 (0x4)
-T39B8 024:400.488 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 024:400.532 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 024:400.992 Data: EF 00 00 00
-T39B8 024:401.036 - 0.559ms returns 4 (0x4)
-T39B8 024:401.093 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 024:401.127 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 024:401.582 Data: 3F 01 00 00
-T39B8 024:401.617 - 0.534ms returns 4 (0x4)
-T39B8 024:402.717 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 024:402.755 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 024:403.146 Data: 42 08 00 00
-T39B8 024:403.178 - 0.469ms returns 4 (0x4)
-T39B8 024:404.093 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 024:404.127 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 024:404.475 Data: 00 00 00 00
-T39B8 024:404.507 - 0.421ms returns 4 (0x4)
-T39B8 024:404.564 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 024:404.585 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 024:404.925 Data: 00
-T39B8 024:404.953 - 0.395ms returns 1 (0x1)
-T39B8 024:404.974 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 024:404.991 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 024:405.284 Data: 63
-T39B8 024:405.307 - 0.339ms returns 1 (0x1)
-T39B8 024:405.327 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 024:405.344 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 024:405.632 Data: 63
-T39B8 024:405.655 - 0.334ms returns 1 (0x1)
-T3DFC 024:406.365 JLINK_IsHalted()
-T3DFC 024:406.761 - 0.405ms returns FALSE
-T3DFC 024:507.441 JLINK_HasError()
-T3DFC 024:507.509 JLINK_IsHalted()
-T3DFC 024:507.922 - 0.453ms returns FALSE
-T3DFC 024:608.033 JLINK_HasError()
-T3DFC 024:608.097 JLINK_IsHalted()
-T3DFC 024:608.565 - 0.481ms returns FALSE
-T3DFC 024:708.660 JLINK_HasError()
-T3DFC 024:708.744 JLINK_IsHalted()
-T3DFC 024:709.200 - 0.518ms returns FALSE
-T3DFC 024:809.336 JLINK_HasError()
-T3DFC 024:809.401 JLINK_IsHalted()
-T3DFC 024:809.837 - 0.450ms returns FALSE
-T3DFC 024:911.001 JLINK_HasError()
-T3DFC 024:911.070 JLINK_HasError()
-T3DFC 024:911.094 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 024:911.141 Data: 5E 91 FF 02
-T3DFC 024:911.174 Debug reg: DWT_CYCCNT
-T3DFC 024:911.202 - 0.118ms returns 1 (0x1)
-T39B8 024:911.566 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 024:911.647 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 024:912.202 Data: 00
-T39B8 024:912.362 - 0.807ms returns 1 (0x1)
-T39B8 024:912.447 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 024:912.493 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 024:912.869 Data: 32
-T39B8 024:912.903 - 0.466ms returns 1 (0x1)
-T39B8 024:913.060 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 024:913.088 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 024:913.439 Data: E2 00 00 00
-T39B8 024:913.475 - 0.425ms returns 4 (0x4)
-T39B8 024:914.371 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 024:914.419 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 024:914.893 Data: A9 00 00 00
-T39B8 024:914.927 - 0.566ms returns 4 (0x4)
-T39B8 024:915.546 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 024:915.585 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 024:915.925 Data: EF 00 00 00
-T39B8 024:915.959 - 0.422ms returns 4 (0x4)
-T39B8 024:916.001 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 024:916.028 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 024:916.366 Data: 3F 01 00 00
-T39B8 024:916.398 - 0.406ms returns 4 (0x4)
-T39B8 024:916.960 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 024:916.995 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 024:917.357 Data: 42 08 00 00
-T39B8 024:917.390 - 0.439ms returns 4 (0x4)
-T39B8 024:918.044 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 024:918.082 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 024:918.449 Data: 00 00 00 00
-T39B8 024:918.485 - 0.451ms returns 4 (0x4)
-T39B8 024:918.552 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 024:918.578 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 024:918.942 Data: 00
-T39B8 024:918.973 - 0.430ms returns 1 (0x1)
-T39B8 024:919.001 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 024:919.023 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 024:919.342 Data: 63
-T39B8 024:919.371 - 0.379ms returns 1 (0x1)
-T39B8 024:919.398 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 024:919.420 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 024:919.795 Data: 63
-T39B8 024:919.825 - 0.436ms returns 1 (0x1)
-T3DFC 024:919.974 JLINK_IsHalted()
-T3DFC 024:920.349 - 0.387ms returns FALSE
-T3DFC 025:021.021 JLINK_HasError()
-T3DFC 025:021.085 JLINK_IsHalted()
-T3DFC 025:021.579 - 0.538ms returns FALSE
-T3DFC 025:122.333 JLINK_HasError()
-T3DFC 025:122.413 JLINK_IsHalted()
-T3DFC 025:122.824 - 0.427ms returns FALSE
-T3DFC 025:222.915 JLINK_HasError()
-T3DFC 025:222.977 JLINK_IsHalted()
-T3DFC 025:223.361 - 0.398ms returns FALSE
-T3DFC 025:323.670 JLINK_HasError()
-T3DFC 025:323.735 JLINK_IsHalted()
-T3DFC 025:324.146 - 0.427ms returns FALSE
-T3DFC 025:424.909 JLINK_HasError()
-T3DFC 025:425.117 JLINK_IsHalted()
-T3DFC 025:425.562 - 0.459ms returns FALSE
-T3DFC 025:526.499 JLINK_HasError()
-T3DFC 025:526.559 JLINK_HasError()
-T3DFC 025:526.583 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 025:526.628 Data: 5E 91 FF 02
-T3DFC 025:526.659 Debug reg: DWT_CYCCNT
-T3DFC 025:526.688 - 0.114ms returns 1 (0x1)
-T39B8 025:527.025 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 025:527.114 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 025:527.576 Data: 00
-T39B8 025:527.619 - 0.604ms returns 1 (0x1)
-T39B8 025:527.665 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 025:527.695 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 025:528.018 Data: 32
-T39B8 025:528.050 - 0.394ms returns 1 (0x1)
-T39B8 025:528.152 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 025:528.178 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 025:528.574 Data: E2 00 00 00
-T39B8 025:528.612 - 0.470ms returns 4 (0x4)
-T39B8 025:528.746 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 025:528.775 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 025:529.159 Data: A9 00 00 00
-T39B8 025:529.193 - 0.456ms returns 4 (0x4)
-T39B8 025:529.233 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 025:529.258 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 025:529.596 Data: EF 00 00 00
-T39B8 025:529.628 - 0.405ms returns 4 (0x4)
-T39B8 025:529.665 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 025:529.690 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 025:530.056 Data: 3F 01 00 00
-T39B8 025:530.091 - 0.435ms returns 4 (0x4)
-T39B8 025:530.127 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 025:530.152 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 025:530.577 Data: 42 08 00 00
-T39B8 025:530.611 - 0.493ms returns 4 (0x4)
-T39B8 025:530.709 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 025:530.733 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 025:531.055 Data: 00 00 00 00
-T39B8 025:531.088 - 0.388ms returns 4 (0x4)
-T39B8 025:531.151 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 025:531.177 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 025:531.573 Data: 00
-T39B8 025:531.607 - 0.465ms returns 1 (0x1)
-T39B8 025:531.637 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 025:531.662 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 025:532.016 Data: 63
-T39B8 025:532.051 - 0.424ms returns 1 (0x1)
-T39B8 025:532.081 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 025:532.105 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 025:532.451 Data: 63
-T39B8 025:532.486 - 0.415ms returns 1 (0x1)
-T3DFC 025:532.605 JLINK_IsHalted()
-T3DFC 025:532.991 - 0.400ms returns FALSE
-T3DFC 025:633.531 JLINK_HasError()
-T3DFC 025:633.865 JLINK_IsHalted()
-T3DFC 025:634.342 - 0.517ms returns FALSE
-T3DFC 025:735.204 JLINK_HasError()
-T3DFC 025:735.266 JLINK_IsHalted()
-T3DFC 025:735.659 - 0.435ms returns FALSE
-T3DFC 025:836.251 JLINK_HasError()
-T3DFC 025:836.316 JLINK_IsHalted()
-T3DFC 025:836.714 - 0.441ms returns FALSE
-T3DFC 025:937.657 JLINK_HasError()
-T3DFC 025:937.718 JLINK_IsHalted()
-T3DFC 025:938.128 - 0.424ms returns FALSE
-T3DFC 026:038.335 JLINK_HasError()
-T3DFC 026:038.397 JLINK_HasError()
-T3DFC 026:038.421 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 026:038.464 Data: 5E 91 FF 02
-T3DFC 026:038.496 Debug reg: DWT_CYCCNT
-T3DFC 026:038.524 - 0.113ms returns 1 (0x1)
-T39B8 026:038.851 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 026:038.936 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 026:039.348 Data: 00
-T39B8 026:039.386 - 0.545ms returns 1 (0x1)
-T39B8 026:039.454 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 026:039.487 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 026:040.244 Data: 32
-T39B8 026:040.314 - 0.872ms returns 1 (0x1)
-T39B8 026:040.496 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 026:040.541 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 026:040.965 Data: C1 00 00 00
-T39B8 026:041.007 - 0.521ms returns 4 (0x4)
-T39B8 026:041.875 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 026:041.925 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 026:042.289 Data: A9 00 00 00
-T39B8 026:042.322 - 0.457ms returns 4 (0x4)
-T39B8 026:042.371 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 026:042.400 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 026:042.796 Data: E1 00 00 00
-T39B8 026:042.830 - 0.468ms returns 4 (0x4)
-T39B8 026:043.471 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 026:043.515 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 026:043.865 Data: 3F 01 00 00
-T39B8 026:043.899 - 0.437ms returns 4 (0x4)
-T39B8 026:043.942 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 026:043.967 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 026:044.306 Data: 77 13 00 00
-T39B8 026:044.338 - 0.406ms returns 4 (0x4)
-T39B8 026:045.013 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 026:045.055 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 026:045.413 Data: 00 00 00 00
-T39B8 026:045.447 - 0.443ms returns 4 (0x4)
-T39B8 026:045.515 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 026:045.543 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 026:045.922 Data: 00
-T39B8 026:045.955 - 0.450ms returns 1 (0x1)
-T39B8 026:045.986 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 026:046.011 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 026:046.341 Data: 63
-T39B8 026:046.373 - 0.397ms returns 1 (0x1)
-T39B8 026:046.403 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 026:046.427 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 026:046.776 Data: 63
-T39B8 026:046.811 - 0.417ms returns 1 (0x1)
-T3DFC 026:046.924 JLINK_IsHalted()
-T3DFC 026:047.324 - 0.414ms returns FALSE
-T3DFC 026:147.444 JLINK_HasError()
-T3DFC 026:147.509 JLINK_IsHalted()
-T3DFC 026:147.919 - 0.454ms returns FALSE
-T3DFC 026:248.041 JLINK_HasError()
-T3DFC 026:248.106 JLINK_IsHalted()
-T3DFC 026:248.487 - 0.396ms returns FALSE
-T3DFC 026:348.573 JLINK_HasError()
-T3DFC 026:348.637 JLINK_IsHalted()
-T3DFC 026:349.049 - 0.426ms returns FALSE
-T3DFC 026:449.227 JLINK_HasError()
-T3DFC 026:449.290 JLINK_IsHalted()
-T3DFC 026:449.685 - 0.409ms returns FALSE
-T3DFC 026:549.774 JLINK_HasError()
-T3DFC 026:549.835 JLINK_IsHalted()
-T3DFC 026:550.218 - 0.397ms returns FALSE
-T3DFC 026:651.317 JLINK_HasError()
-T3DFC 026:651.380 JLINK_HasError()
-T3DFC 026:651.404 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 026:651.449 Data: 5E 91 FF 02
-T3DFC 026:651.481 Debug reg: DWT_CYCCNT
-T3DFC 026:651.509 - 0.114ms returns 1 (0x1)
-T39B8 026:651.818 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 026:651.853 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 026:652.267 Data: 00
-T39B8 026:652.302 - 0.494ms returns 1 (0x1)
-T39B8 026:652.349 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 026:652.378 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 026:652.765 Data: 32
-T39B8 026:652.796 - 0.457ms returns 1 (0x1)
-T39B8 026:652.896 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 026:652.923 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 026:653.272 Data: C1 00 00 00
-T39B8 026:653.304 - 0.417ms returns 4 (0x4)
-T39B8 026:654.648 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 026:654.708 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 026:655.116 Data: A9 00 00 00
-T39B8 026:655.181 - 0.543ms returns 4 (0x4)
-T39B8 026:655.260 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 026:655.303 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 026:656.364 Data: E1 00 00 00
-T39B8 026:656.399 - 1.149ms returns 4 (0x4)
-T39B8 026:657.209 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 026:657.259 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 026:657.804 Data: 3F 01 00 00
-T39B8 026:657.837 - 0.636ms returns 4 (0x4)
-T39B8 026:657.881 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 026:657.909 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 026:658.282 Data: 77 13 00 00
-T39B8 026:658.310 - 0.437ms returns 4 (0x4)
-T39B8 026:659.001 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 026:659.037 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 026:660.347 Data: 00 00 00 00
-T39B8 026:660.367 - 1.372ms returns 4 (0x4)
-T39B8 026:660.412 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 026:660.430 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 026:660.776 Data: 00
-T39B8 026:660.796 - 0.388ms returns 1 (0x1)
-T39B8 026:660.816 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 026:660.832 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 026:661.220 Data: 63
-T39B8 026:661.241 - 0.430ms returns 1 (0x1)
-T39B8 026:661.260 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 026:661.275 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 026:661.547 Data: 63
-T39B8 026:661.563 - 0.308ms returns 1 (0x1)
-T3DFC 026:661.633 JLINK_IsHalted()
-T3DFC 026:661.939 - 0.312ms returns FALSE
-T3DFC 026:762.020 JLINK_HasError()
-T3DFC 026:762.085 JLINK_IsHalted()
-T3DFC 026:762.563 - 0.492ms returns FALSE
-T3DFC 026:862.652 JLINK_HasError()
-T3DFC 026:862.721 JLINK_IsHalted()
-T3DFC 026:863.142 - 0.434ms returns FALSE
-T3DFC 026:964.191 JLINK_HasError()
-T3DFC 026:964.255 JLINK_IsHalted()
-T3DFC 026:964.659 - 0.418ms returns FALSE
-T3DFC 027:065.005 JLINK_HasError()
-T3DFC 027:065.067 JLINK_IsHalted()
-T3DFC 027:065.472 - 0.448ms returns FALSE
-T3DFC 027:166.128 JLINK_HasError()
-T3DFC 027:166.190 JLINK_HasError()
-T3DFC 027:166.213 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 027:166.256 Data: 5E 91 FF 02
-T3DFC 027:166.285 Debug reg: DWT_CYCCNT
-T3DFC 027:166.311 - 0.107ms returns 1 (0x1)
-T39B8 027:166.599 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 027:166.633 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 027:167.030 Data: 00
-T39B8 027:167.090 - 0.500ms returns 1 (0x1)
-T39B8 027:167.162 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 027:167.204 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 027:167.565 Data: 32
-T39B8 027:167.599 - 0.446ms returns 1 (0x1)
-T39B8 027:167.740 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 027:167.764 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 027:168.084 Data: E2 00 00 00
-T39B8 027:168.112 - 0.380ms returns 4 (0x4)
-T39B8 027:168.884 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 027:168.925 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 027:169.285 Data: A9 00 00 00
-T39B8 027:169.316 - 0.438ms returns 4 (0x4)
-T39B8 027:169.348 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 027:169.367 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 027:169.672 Data: EF 00 00 00
-T39B8 027:169.694 - 0.353ms returns 4 (0x4)
-T39B8 027:170.144 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 027:170.170 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 027:170.474 Data: 3F 01 00 00
-T39B8 027:170.496 - 0.357ms returns 4 (0x4)
-T39B8 027:170.523 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 027:170.540 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 027:171.157 Data: 42 08 00 00
-T39B8 027:171.187 - 0.670ms returns 4 (0x4)
-T39B8 027:171.805 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 027:171.841 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 027:172.205 Data: 00 00 00 00
-T39B8 027:172.232 - 0.433ms returns 4 (0x4)
-T39B8 027:172.301 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 027:172.320 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 027:173.220 Data: 00
-T39B8 027:173.246 - 0.951ms returns 1 (0x1)
-T39B8 027:173.266 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 027:173.283 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 027:173.600 Data: 63
-T39B8 027:173.628 - 0.367ms returns 1 (0x1)
-T39B8 027:173.646 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 027:173.661 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 027:173.955 Data: 63
-T39B8 027:173.974 - 0.333ms returns 1 (0x1)
-T3DFC 027:174.055 JLINK_IsHalted()
-T3DFC 027:174.433 - 0.410ms returns FALSE
-T3DFC 027:274.531 JLINK_HasError()
-T3DFC 027:274.594 JLINK_IsHalted()
-T3DFC 027:275.024 - 0.444ms returns FALSE
-T3DFC 027:375.252 JLINK_HasError()
-T3DFC 027:375.316 JLINK_IsHalted()
-T3DFC 027:375.834 - 0.531ms returns FALSE
-T3DFC 027:476.139 JLINK_HasError()
-T3DFC 027:476.203 JLINK_IsHalted()
-T3DFC 027:476.614 - 0.425ms returns FALSE
-T3DFC 027:576.811 JLINK_HasError()
-T3DFC 027:576.875 JLINK_IsHalted()
-T3DFC 027:577.272 - 0.438ms returns FALSE
-T3DFC 027:678.333 JLINK_HasError()
-T3DFC 027:678.402 JLINK_HasError()
-T3DFC 027:678.426 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 027:678.471 Data: 5E 91 FF 02
-T3DFC 027:678.502 Debug reg: DWT_CYCCNT
-T3DFC 027:678.530 - 0.113ms returns 1 (0x1)
-T39B8 027:678.869 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 027:678.957 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 027:679.363 Data: 00
-T39B8 027:679.398 - 0.540ms returns 1 (0x1)
-T39B8 027:679.443 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 027:679.471 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 027:679.824 Data: 32
-T39B8 027:679.864 - 0.431ms returns 1 (0x1)
-T39B8 027:680.034 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 027:680.069 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 027:680.450 Data: E2 00 00 00
-T39B8 027:680.491 - 0.468ms returns 4 (0x4)
-T39B8 027:681.751 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 027:681.814 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 027:682.186 Data: A9 00 00 00
-T39B8 027:682.231 - 0.490ms returns 4 (0x4)
-T39B8 027:682.287 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 027:682.322 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 027:682.689 Data: EF 00 00 00
-T39B8 027:682.726 - 0.449ms returns 4 (0x4)
-T39B8 027:683.452 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 027:683.496 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 027:683.855 Data: 3F 01 00 00
-T39B8 027:683.889 - 0.447ms returns 4 (0x4)
-T39B8 027:683.931 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 027:683.959 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 027:684.288 Data: 42 08 00 00
-T39B8 027:684.321 - 0.400ms returns 4 (0x4)
-T39B8 027:685.008 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 027:685.047 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 027:685.393 Data: 00 00 00 00
-T39B8 027:685.427 - 0.428ms returns 4 (0x4)
-T39B8 027:685.495 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 027:685.523 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 027:685.888 Data: 00
-T39B8 027:685.924 - 0.438ms returns 1 (0x1)
-T39B8 027:685.955 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 027:685.981 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 027:686.375 Data: 63
-T39B8 027:686.408 - 0.462ms returns 1 (0x1)
-T39B8 027:686.439 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 027:686.464 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 027:686.801 Data: 63
-T39B8 027:686.833 - 0.403ms returns 1 (0x1)
-T3DFC 027:686.942 JLINK_IsHalted()
-T3DFC 027:687.365 - 0.441ms returns FALSE
-T3DFC 027:787.469 JLINK_HasError()
-T3DFC 027:787.548 JLINK_IsHalted()
-T3DFC 027:787.968 - 0.434ms returns FALSE
-T3DFC 027:888.053 JLINK_HasError()
-T3DFC 027:888.119 JLINK_IsHalted()
-T3DFC 027:888.569 - 0.464ms returns FALSE
-T3DFC 027:988.869 JLINK_HasError()
-T3DFC 027:988.934 JLINK_IsHalted()
-T3DFC 027:989.352 - 0.457ms returns FALSE
-T3DFC 028:090.287 JLINK_HasError()
-T3DFC 028:090.354 JLINK_IsHalted()
-T3DFC 028:090.788 - 0.776ms returns FALSE
-T3DFC 028:191.215 JLINK_HasError()
-T3DFC 028:191.281 JLINK_IsHalted()
-T3DFC 028:191.685 - 0.419ms returns FALSE
-T3DFC 028:292.134 JLINK_HasError()
-T3DFC 028:292.198 JLINK_HasError()
-T3DFC 028:292.222 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 028:292.268 Data: 5E 91 FF 02
-T3DFC 028:292.300 Debug reg: DWT_CYCCNT
-T3DFC 028:292.328 - 0.116ms returns 1 (0x1)
-T39B8 028:292.676 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 028:292.766 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 028:293.195 Data: 00
-T39B8 028:293.229 - 0.563ms returns 1 (0x1)
-T39B8 028:293.276 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 028:293.305 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 028:293.683 Data: 32
-T39B8 028:293.718 - 0.451ms returns 1 (0x1)
-T39B8 028:293.817 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 028:293.843 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 028:294.223 Data: E2 00 00 00
-T39B8 028:294.261 - 0.453ms returns 4 (0x4)
-T39B8 028:294.299 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 028:294.323 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 028:294.796 Data: A9 00 00 00
-T39B8 028:294.871 - 0.582ms returns 4 (0x4)
-T39B8 028:294.954 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 028:294.997 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 028:295.457 Data: EF 00 00 00
-T39B8 028:295.503 - 0.559ms returns 4 (0x4)
-T39B8 028:295.574 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 028:295.613 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 028:295.984 Data: 3F 01 00 00
-T39B8 028:296.016 - 0.451ms returns 4 (0x4)
-T39B8 028:296.058 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 028:296.085 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 028:296.477 Data: 42 08 00 00
-T39B8 028:296.509 - 0.461ms returns 4 (0x4)
-T39B8 028:296.652 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 028:296.678 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 028:297.058 Data: 00 00 00 00
-T39B8 028:297.109 - 0.468ms returns 4 (0x4)
-T39B8 028:297.257 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 028:297.294 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 028:297.648 Data: 00
-T39B8 028:297.683 - 0.435ms returns 1 (0x1)
-T39B8 028:297.717 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 028:297.743 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 028:298.113 Data: 63
-T39B8 028:298.152 - 0.445ms returns 1 (0x1)
-T39B8 028:298.187 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 028:298.216 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 028:298.568 Data: 63
-T39B8 028:298.603 - 0.425ms returns 1 (0x1)
-T3DFC 028:298.721 JLINK_IsHalted()
-T3DFC 028:299.080 - 0.372ms returns FALSE
-T3DFC 028:400.154 JLINK_HasError()
-T3DFC 028:400.217 JLINK_IsHalted()
-T3DFC 028:400.647 - 0.445ms returns FALSE
-T3DFC 028:500.799 JLINK_HasError()
-T3DFC 028:500.931 JLINK_IsHalted()
-T3DFC 028:501.360 - 0.444ms returns FALSE
-T3DFC 028:601.520 JLINK_HasError()
-T3DFC 028:601.576 JLINK_IsHalted()
-T3DFC 028:601.967 - 0.406ms returns FALSE
-T3DFC 028:702.770 JLINK_HasError()
-T3DFC 028:702.831 JLINK_IsHalted()
-T3DFC 028:703.259 - 0.442ms returns FALSE
-T3DFC 028:803.559 JLINK_HasError()
-T3DFC 028:803.660 JLINK_HasError()
-T3DFC 028:803.687 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 028:803.741 Data: 5E 91 FF 02
-T3DFC 028:803.777 Debug reg: DWT_CYCCNT
-T3DFC 028:803.809 - 0.133ms returns 1 (0x1)
-T39B8 028:804.340 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 028:804.437 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 028:805.165 Data: 00
-T39B8 028:805.548 - 1.223ms returns 1 (0x1)
-T39B8 028:805.677 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 028:805.731 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 028:806.268 Data: 32
-T39B8 028:806.339 - 0.674ms returns 1 (0x1)
-T39B8 028:806.544 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 028:806.592 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 028:807.065 Data: E2 00 00 00
-T39B8 028:807.133 - 0.601ms returns 4 (0x4)
-T39B8 028:807.225 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 028:807.272 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 028:807.711 Data: A9 00 00 00
-T39B8 028:807.752 - 0.538ms returns 4 (0x4)
-T39B8 028:807.808 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 028:807.843 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 028:808.241 Data: EF 00 00 00
-T39B8 028:808.276 - 0.479ms returns 4 (0x4)
-T39B8 028:808.319 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 028:808.348 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 028:808.763 Data: 3F 01 00 00
-T39B8 028:808.799 - 0.491ms returns 4 (0x4)
-T39B8 028:808.840 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 028:808.868 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 028:809.241 Data: 42 08 00 00
-T39B8 028:809.277 - 0.447ms returns 4 (0x4)
-T39B8 028:809.419 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 028:809.452 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 028:809.798 Data: 00 00 00 00
-T39B8 028:809.835 - 0.426ms returns 4 (0x4)
-T39B8 028:809.907 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 028:809.936 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 028:810.401 Data: 00
-T39B8 028:810.437 - 0.540ms returns 1 (0x1)
-T39B8 028:810.471 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 028:810.499 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 028:810.931 Data: 63
-T39B8 028:810.967 - 0.507ms returns 1 (0x1)
-T39B8 028:811.001 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 028:811.028 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 028:811.409 Data: 63
-T39B8 028:811.445 - 0.455ms returns 1 (0x1)
-T3DFC 028:811.610 JLINK_IsHalted()
-T3DFC 028:812.047 - 0.453ms returns FALSE
-T3DFC 028:912.128 JLINK_HasError()
-T3DFC 028:912.189 JLINK_IsHalted()
-T3DFC 028:912.589 - 0.413ms returns FALSE
-T3DFC 029:012.669 JLINK_HasError()
-T3DFC 029:012.731 JLINK_IsHalted()
-T3DFC 029:013.123 - 0.405ms returns FALSE
-T3DFC 029:113.207 JLINK_HasError()
-T3DFC 029:113.271 JLINK_IsHalted()
-T3DFC 029:113.674 - 0.417ms returns FALSE
-T3DFC 029:214.294 JLINK_HasError()
-T3DFC 029:214.362 JLINK_IsHalted()
-T3DFC 029:214.781 - 0.459ms returns FALSE
-T3DFC 029:315.442 JLINK_HasError()
-T3DFC 029:315.504 JLINK_IsHalted()
-T3DFC 029:315.928 - 0.468ms returns FALSE
-T3DFC 029:416.782 JLINK_HasError()
-T3DFC 029:416.846 JLINK_HasError()
-T3DFC 029:416.870 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 029:416.915 Data: 5E 91 FF 02
-T3DFC 029:416.946 Debug reg: DWT_CYCCNT
-T3DFC 029:416.974 - 0.113ms returns 1 (0x1)
-T39B8 029:417.810 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 029:417.901 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 029:418.308 Data: 00
-T39B8 029:418.344 - 0.544ms returns 1 (0x1)
-T39B8 029:418.412 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 029:418.448 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 029:418.807 Data: 32
-T39B8 029:418.840 - 0.438ms returns 1 (0x1)
-T39B8 029:418.962 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 029:418.990 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 029:419.320 Data: E2 00 00 00
-T39B8 029:419.352 - 0.399ms returns 4 (0x4)
-T39B8 029:419.390 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 029:419.416 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 029:419.774 Data: A9 00 00 00
-T39B8 029:419.806 - 0.425ms returns 4 (0x4)
-T39B8 029:419.842 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 029:419.867 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 029:420.200 Data: EF 00 00 00
-T39B8 029:420.231 - 0.398ms returns 4 (0x4)
-T39B8 029:420.267 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 029:420.292 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 029:420.640 Data: 3F 01 00 00
-T39B8 029:420.671 - 0.413ms returns 4 (0x4)
-T39B8 029:420.708 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 029:420.732 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 029:421.216 Data: 42 08 00 00
-T39B8 029:421.287 - 0.589ms returns 4 (0x4)
-T39B8 029:421.484 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 029:421.530 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 029:421.901 Data: 00 00 00 00
-T39B8 029:421.942 - 0.467ms returns 4 (0x4)
-T39B8 029:422.035 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 029:422.066 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 029:422.424 Data: 00
-T39B8 029:422.456 - 0.430ms returns 1 (0x1)
-T39B8 029:422.487 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 029:422.513 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 029:422.872 Data: 63
-T39B8 029:422.904 - 0.427ms returns 1 (0x1)
-T39B8 029:422.934 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 029:422.960 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 029:423.305 Data: 63
-T39B8 029:423.337 - 0.417ms returns 1 (0x1)
-T3DFC 029:423.491 JLINK_IsHalted()
-T3DFC 029:423.885 - 0.407ms returns FALSE
-T3DFC 029:524.748 JLINK_HasError()
-T3DFC 029:524.806 JLINK_IsHalted()
-T3DFC 029:525.316 - 0.552ms returns FALSE
-T3DFC 029:625.447 JLINK_HasError()
-T3DFC 029:625.508 JLINK_IsHalted()
-T3DFC 029:625.914 - 0.419ms returns FALSE
-T3DFC 029:726.241 JLINK_HasError()
-T3DFC 029:726.305 JLINK_IsHalted()
-T3DFC 029:726.685 - 0.393ms returns FALSE
-T3DFC 029:827.330 JLINK_HasError()
-T3DFC 029:827.357 JLINK_IsHalted()
-T3DFC 029:827.708 - 0.387ms returns FALSE
-T3DFC 029:927.876 JLINK_HasError()
-T3DFC 029:927.940 JLINK_HasError()
-T3DFC 029:927.964 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 029:928.012 Data: 5E 91 FF 02
-T3DFC 029:928.043 Debug reg: DWT_CYCCNT
-T3DFC 029:928.071 - 0.117ms returns 1 (0x1)
-T39B8 029:928.396 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 029:928.432 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 029:928.881 Data: 00
-T39B8 029:928.920 - 0.854ms returns 1 (0x1)
-T39B8 029:929.331 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 029:929.384 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 029:929.908 Data: 32
-T39B8 029:929.953 - 0.633ms returns 1 (0x1)
-T39B8 029:930.122 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 029:930.160 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 029:930.555 Data: E2 00 00 00
-T39B8 029:930.588 - 0.475ms returns 4 (0x4)
-T39B8 029:930.629 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 029:930.657 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 029:931.147 Data: A9 00 00 00
-T39B8 029:931.215 - 0.596ms returns 4 (0x4)
-T39B8 029:931.296 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 029:931.340 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 029:931.787 Data: EF 00 00 00
-T39B8 029:931.827 - 0.541ms returns 4 (0x4)
-T39B8 029:931.876 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 029:931.905 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 029:932.264 Data: 3F 01 00 00
-T39B8 029:932.295 - 0.429ms returns 4 (0x4)
-T39B8 029:932.334 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 029:932.360 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 029:932.744 Data: 42 08 00 00
-T39B8 029:932.776 - 0.452ms returns 4 (0x4)
-T39B8 029:932.886 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 029:932.911 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 029:933.222 Data: 00 00 00 00
-T39B8 029:933.255 - 0.378ms returns 4 (0x4)
-T39B8 029:933.320 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 029:933.345 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 029:933.706 Data: 00
-T39B8 029:933.737 - 0.427ms returns 1 (0x1)
-T39B8 029:933.768 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 029:933.793 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 029:934.108 Data: 63
-T39B8 029:934.146 - 0.387ms returns 1 (0x1)
-T39B8 029:934.180 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 029:934.206 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 029:934.550 Data: 63
-T39B8 029:934.582 - 0.411ms returns 1 (0x1)
-T3DFC 029:934.695 JLINK_IsHalted()
-T3DFC 029:935.058 - 0.375ms returns FALSE
-T3DFC 030:035.152 JLINK_HasError()
-T3DFC 030:035.217 JLINK_IsHalted()
-T3DFC 030:035.627 - 0.424ms returns FALSE
-T3DFC 030:136.250 JLINK_HasError()
-T3DFC 030:136.312 JLINK_IsHalted()
-T3DFC 030:136.774 - 0.477ms returns FALSE
-T3DFC 030:236.904 JLINK_HasError()
-T3DFC 030:236.966 JLINK_IsHalted()
-T3DFC 030:237.390 - 0.437ms returns FALSE
-T3DFC 030:337.498 JLINK_HasError()
-T3DFC 030:337.563 JLINK_IsHalted()
-T3DFC 030:337.978 - 0.461ms returns FALSE
-T3DFC 030:438.108 JLINK_HasError()
-T3DFC 030:438.174 JLINK_IsHalted()
-T3DFC 030:438.557 - 0.397ms returns FALSE
-T3DFC 030:539.960 JLINK_HasError()
-T3DFC 030:540.020 JLINK_HasError()
-T3DFC 030:540.044 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 030:540.089 Data: 5E 91 FF 02
-T3DFC 030:540.121 Debug reg: DWT_CYCCNT
-T3DFC 030:540.149 - 0.115ms returns 1 (0x1)
-T39B8 030:540.567 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 030:540.667 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 030:541.148 Data: 00
-T39B8 030:541.192 - 0.634ms returns 1 (0x1)
-T39B8 030:541.262 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 030:541.299 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 030:541.773 Data: 32
-T39B8 030:541.840 - 0.588ms returns 1 (0x1)
-T39B8 030:542.005 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 030:542.049 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 030:542.415 Data: E2 00 00 00
-T39B8 030:542.449 - 0.453ms returns 4 (0x4)
-T39B8 030:542.487 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 030:542.514 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 030:542.889 Data: A9 00 00 00
-T39B8 030:542.923 - 0.446ms returns 4 (0x4)
-T39B8 030:542.959 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 030:542.984 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 030:543.310 Data: EF 00 00 00
-T39B8 030:543.342 - 0.392ms returns 4 (0x4)
-T39B8 030:543.378 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 030:543.403 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 030:543.772 Data: 3F 01 00 00
-T39B8 030:543.806 - 0.437ms returns 4 (0x4)
-T39B8 030:543.842 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 030:543.866 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 030:544.215 Data: 42 08 00 00
-T39B8 030:544.250 - 0.417ms returns 4 (0x4)
-T39B8 030:544.346 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 030:544.371 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 030:544.777 Data: 00 00 00 00
-T39B8 030:544.811 - 0.475ms returns 4 (0x4)
-T39B8 030:544.875 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 030:544.899 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 030:545.227 Data: 00
-T39B8 030:545.259 - 0.394ms returns 1 (0x1)
-T39B8 030:545.289 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 030:545.314 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 030:545.642 Data: 63
-T39B8 030:545.675 - 0.395ms returns 1 (0x1)
-T39B8 030:545.705 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 030:545.729 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 030:546.075 Data: 63
-T39B8 030:546.109 - 0.414ms returns 1 (0x1)
-T3DFC 030:546.238 JLINK_IsHalted()
-T3DFC 030:546.627 - 0.406ms returns FALSE
-T3DFC 030:647.050 JLINK_HasError()
-T3DFC 030:647.127 JLINK_IsHalted()
-T3DFC 030:647.563 - 0.477ms returns FALSE
-T3DFC 030:747.696 JLINK_HasError()
-T3DFC 030:747.760 JLINK_IsHalted()
-T3DFC 030:748.166 - 0.420ms returns FALSE
-T3DFC 030:848.689 JLINK_HasError()
-T3DFC 030:848.755 JLINK_IsHalted()
-T3DFC 030:849.288 - 0.576ms returns FALSE
-T3DFC 030:949.790 JLINK_HasError()
-T3DFC 030:949.855 JLINK_IsHalted()
-T3DFC 030:950.267 - 0.425ms returns FALSE
-T3DFC 031:051.098 JLINK_HasError()
-T3DFC 031:051.161 JLINK_HasError()
-T3DFC 031:051.185 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 031:051.229 Data: 5E 91 FF 02
-T3DFC 031:051.261 Debug reg: DWT_CYCCNT
-T3DFC 031:051.289 - 0.114ms returns 1 (0x1)
-T39B8 031:051.597 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 031:051.634 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 031:052.026 Data: 00
-T39B8 031:052.060 - 0.473ms returns 1 (0x1)
-T39B8 031:052.106 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 031:052.133 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 031:052.613 Data: 32
-T39B8 031:052.694 - 0.599ms returns 1 (0x1)
-T39B8 031:052.871 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 031:052.917 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 031:053.307 Data: E2 00 00 00
-T39B8 031:053.353 - 0.492ms returns 4 (0x4)
-T39B8 031:053.413 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 031:053.448 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 031:053.925 Data: A9 00 00 00
-T39B8 031:053.956 - 0.553ms returns 4 (0x4)
-T39B8 031:054.000 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 031:054.029 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 031:054.548 Data: EF 00 00 00
-T39B8 031:054.582 - 0.592ms returns 4 (0x4)
-T39B8 031:054.634 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 031:054.663 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 031:055.154 Data: 3F 01 00 00
-T39B8 031:055.188 - 0.563ms returns 4 (0x4)
-T39B8 031:055.228 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 031:055.255 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 031:055.627 Data: 42 08 00 00
-T39B8 031:055.659 - 0.439ms returns 4 (0x4)
-T39B8 031:055.778 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 031:055.804 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 031:056.161 Data: 00 00 00 00
-T39B8 031:056.193 - 0.425ms returns 4 (0x4)
-T39B8 031:056.257 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 031:056.282 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 031:056.619 Data: 00
-T39B8 031:056.651 - 0.404ms returns 1 (0x1)
-T39B8 031:056.681 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 031:056.707 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 031:057.015 Data: 63
-T39B8 031:057.047 - 0.374ms returns 1 (0x1)
-T39B8 031:057.077 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 031:057.101 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 031:057.410 Data: 63
-T39B8 031:057.442 - 0.375ms returns 1 (0x1)
-T3DFC 031:057.700 JLINK_IsHalted()
-T3DFC 031:058.288 - 0.634ms returns FALSE
-T3DFC 031:158.556 JLINK_HasError()
-T3DFC 031:158.624 JLINK_IsHalted()
-T3DFC 031:159.044 - 0.459ms returns FALSE
-T3DFC 031:259.763 JLINK_HasError()
-T3DFC 031:260.485 JLINK_IsHalted()
-T3DFC 031:261.109 - 0.649ms returns FALSE
-T3DFC 031:362.136 JLINK_HasError()
-T3DFC 031:362.205 JLINK_IsHalted()
-T3DFC 031:362.636 - 0.446ms returns FALSE
-T3DFC 031:463.153 JLINK_HasError()
-T3DFC 031:463.215 JLINK_IsHalted()
-T3DFC 031:463.601 - 0.400ms returns FALSE
-T3DFC 031:563.693 JLINK_HasError()
-T3DFC 031:563.756 JLINK_IsHalted()
-T3DFC 031:564.139 - 0.397ms returns FALSE
-T3DFC 031:664.610 JLINK_HasError()
-T3DFC 031:664.773 JLINK_HasError()
-T3DFC 031:664.797 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 031:664.843 Data: 5E 91 FF 02
-T3DFC 031:664.875 Debug reg: DWT_CYCCNT
-T3DFC 031:664.903 - 0.116ms returns 1 (0x1)
-T39B8 031:665.238 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 031:665.327 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 031:665.756 Data: 00
-T39B8 031:665.791 - 0.563ms returns 1 (0x1)
-T39B8 031:665.837 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 031:665.865 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 031:666.190 Data: 32
-T39B8 031:666.222 - 0.395ms returns 1 (0x1)
-T39B8 031:666.318 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 031:666.344 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 031:666.675 Data: E2 00 00 00
-T39B8 031:666.707 - 0.398ms returns 4 (0x4)
-T39B8 031:666.745 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 031:666.770 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 031:667.137 Data: A9 00 00 00
-T39B8 031:667.174 - 0.439ms returns 4 (0x4)
-T39B8 031:667.217 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 031:667.244 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 031:667.603 Data: EF 00 00 00
-T39B8 031:667.637 - 0.430ms returns 4 (0x4)
-T39B8 031:667.676 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 031:667.701 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 031:668.046 Data: 3F 01 00 00
-T39B8 031:668.077 - 0.411ms returns 4 (0x4)
-T39B8 031:668.115 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 031:668.140 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 031:668.561 Data: 42 08 00 00
-T39B8 031:668.594 - 0.489ms returns 4 (0x4)
-T39B8 031:668.690 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 031:668.715 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 031:669.047 Data: 00 00 00 00
-T39B8 031:669.079 - 0.398ms returns 4 (0x4)
-T39B8 031:669.142 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 031:669.178 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 031:669.559 Data: 00
-T39B8 031:669.593 - 0.460ms returns 1 (0x1)
-T39B8 031:669.623 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 031:669.648 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 031:670.017 Data: 63
-T39B8 031:670.051 - 0.437ms returns 1 (0x1)
-T39B8 031:670.161 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 031:670.186 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 031:670.564 Data: 63
-T39B8 031:670.597 - 0.445ms returns 1 (0x1)
-T3DFC 031:670.719 JLINK_IsHalted()
-T3DFC 031:671.127 - 0.422ms returns FALSE
-T3DFC 031:771.971 JLINK_HasError()
-T3DFC 031:772.031 JLINK_IsHalted()
-T3DFC 031:772.429 - 0.438ms returns FALSE
-T3DFC 031:873.376 JLINK_HasError()
-T3DFC 031:873.445 JLINK_IsHalted()
-T3DFC 031:873.880 - 0.448ms returns FALSE
-T3DFC 031:974.906 JLINK_HasError()
-T3DFC 031:975.007 JLINK_IsHalted()
-T3DFC 031:975.324 - 0.326ms returns FALSE
-T3DFC 032:076.281 JLINK_HasError()
-T3DFC 032:076.335 JLINK_IsHalted()
-T3DFC 032:076.766 - 0.463ms returns FALSE
-T3DFC 032:177.645 JLINK_HasError()
-T3DFC 032:177.691 JLINK_HasError()
-T3DFC 032:177.705 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 032:177.732 Data: 5E 91 FF 02
-T3DFC 032:177.751 Debug reg: DWT_CYCCNT
-T3DFC 032:177.767 - 0.067ms returns 1 (0x1)
-T39B8 032:177.964 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 032:178.018 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 032:178.333 Data: 00
-T39B8 032:178.356 - 0.398ms returns 1 (0x1)
-T39B8 032:178.404 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 032:178.426 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 032:178.744 Data: 32
-T39B8 032:178.764 - 0.366ms returns 1 (0x1)
-T39B8 032:178.857 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 032:178.874 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 032:179.162 Data: E2 00 00 00
-T39B8 032:179.180 - 0.328ms returns 4 (0x4)
-T39B8 032:179.201 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 032:179.215 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 032:179.533 Data: A9 00 00 00
-T39B8 032:179.551 - 0.355ms returns 4 (0x4)
-T39B8 032:179.571 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 032:179.585 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 032:179.914 Data: EF 00 00 00
-T39B8 032:179.933 - 0.367ms returns 4 (0x4)
-T39B8 032:179.954 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 032:179.969 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 032:180.317 Data: 3F 01 00 00
-T39B8 032:180.336 - 0.387ms returns 4 (0x4)
-T39B8 032:180.358 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 032:180.373 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 032:180.727 Data: 42 08 00 00
-T39B8 032:180.746 - 0.394ms returns 4 (0x4)
-T39B8 032:180.873 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 032:180.889 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 032:181.186 Data: 00 00 00 00
-T39B8 032:181.207 - 0.339ms returns 4 (0x4)
-T39B8 032:181.248 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 032:181.265 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 032:181.561 Data: 00
-T39B8 032:181.581 - 0.361ms returns 1 (0x1)
-T39B8 032:181.623 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 032:181.639 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 032:181.957 Data: 63
-T39B8 032:181.990 - 0.373ms returns 1 (0x1)
-T39B8 032:182.024 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 032:182.046 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 032:182.391 Data: 63
-T39B8 032:182.418 - 0.400ms returns 1 (0x1)
-T3DFC 032:182.603 JLINK_IsHalted()
-T3DFC 032:182.954 - 0.359ms returns FALSE
-T3DFC 032:283.028 JLINK_HasError()
-T3DFC 032:283.062 JLINK_IsHalted()
-T3DFC 032:283.410 - 0.355ms returns FALSE
-T3DFC 032:383.605 JLINK_HasError()
-T3DFC 032:383.645 JLINK_IsHalted()
-T3DFC 032:383.981 - 0.342ms returns FALSE
-T3DFC 032:484.065 JLINK_HasError()
-T3DFC 032:484.133 JLINK_IsHalted()
-T3DFC 032:484.569 - 0.487ms returns FALSE
-T3DFC 032:585.413 JLINK_HasError()
-T3DFC 032:585.454 JLINK_IsHalted()
-T3DFC 032:585.789 - 0.364ms returns FALSE
-T3DFC 032:686.094 JLINK_HasError()
-T3DFC 032:686.158 JLINK_IsHalted()
-T3DFC 032:686.705 - 0.561ms returns FALSE
-T3DFC 032:787.116 JLINK_HasError()
-T3DFC 032:787.164 JLINK_HasError()
-T3DFC 032:787.180 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 032:787.212 Data: 5E 91 FF 02
-T3DFC 032:787.233 Debug reg: DWT_CYCCNT
-T3DFC 032:787.251 - 0.077ms returns 1 (0x1)
-T39B8 032:787.463 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 032:787.525 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 032:787.887 Data: 00
-T39B8 032:787.910 - 0.453ms returns 1 (0x1)
-T39B8 032:787.938 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 032:787.955 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 032:788.295 Data: 32
-T39B8 032:788.314 - 0.382ms returns 1 (0x1)
-T39B8 032:788.376 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 032:788.392 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 032:788.765 Data: E2 00 00 00
-T39B8 032:788.784 - 0.413ms returns 4 (0x4)
-T39B8 032:788.806 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 032:788.821 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 032:789.426 Data: A9 00 00 00
-T39B8 032:789.450 - 0.649ms returns 4 (0x4)
-T39B8 032:789.492 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 032:789.514 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 032:789.907 Data: EF 00 00 00
-T39B8 032:789.933 - 0.446ms returns 4 (0x4)
-T39B8 032:789.963 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 032:789.980 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 032:790.275 Data: 3F 01 00 00
-T39B8 032:790.292 - 0.335ms returns 4 (0x4)
-T39B8 032:790.313 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 032:790.326 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 032:790.632 Data: 42 08 00 00
-T39B8 032:790.648 - 0.339ms returns 4 (0x4)
-T39B8 032:790.722 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 032:790.734 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 032:791.061 Data: 00 00 00 00
-T39B8 032:791.084 - 0.367ms returns 4 (0x4)
-T39B8 032:791.126 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 032:791.140 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 032:791.405 Data: 00
-T39B8 032:791.421 - 0.300ms returns 1 (0x1)
-T39B8 032:791.438 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 032:791.449 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 032:791.723 Data: 63
-T39B8 032:791.738 - 0.305ms returns 1 (0x1)
-T39B8 032:791.752 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 032:791.764 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 032:792.089 Data: 63
-T39B8 032:792.109 - 0.361ms returns 1 (0x1)
-T3DFC 032:792.248 JLINK_IsHalted()
-T3DFC 032:792.576 - 0.339ms returns FALSE
-T3DFC 032:893.601 JLINK_HasError()
-T3DFC 032:893.669 JLINK_IsHalted()
-T3DFC 032:894.111 - 0.490ms returns FALSE
-T3DFC 032:994.224 JLINK_HasError()
-T3DFC 032:994.289 JLINK_IsHalted()
-T3DFC 032:994.693 - 0.417ms returns FALSE
-T3DFC 033:094.771 JLINK_HasError()
-T3DFC 033:094.834 JLINK_IsHalted()
-T3DFC 033:095.234 - 0.414ms returns FALSE
-T3DFC 033:195.987 JLINK_HasError()
-T3DFC 033:196.104 JLINK_IsHalted()
-T3DFC 033:196.386 - 0.285ms returns FALSE
-T3DFC 033:297.191 JLINK_HasError()
-T3DFC 033:297.214 JLINK_IsHalted()
-T3DFC 033:297.520 - 0.308ms returns FALSE
-T3DFC 033:398.546 JLINK_HasError()
-T3DFC 033:398.598 JLINK_HasError()
-T3DFC 033:398.605 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 033:398.624 Data: 5E 91 FF 02
-T3DFC 033:398.635 Debug reg: DWT_CYCCNT
-T3DFC 033:398.644 - 0.041ms returns 1 (0x1)
-T39B8 033:398.814 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 033:398.851 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 033:399.183 Data: 00
-T39B8 033:399.197 - 0.386ms returns 1 (0x1)
-T39B8 033:399.236 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 033:399.249 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 033:399.564 Data: 32
-T39B8 033:399.574 - 0.341ms returns 1 (0x1)
-T39B8 033:399.632 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 033:399.642 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 033:399.968 Data: E2 00 00 00
-T39B8 033:399.978 - 0.349ms returns 4 (0x4)
-T39B8 033:399.991 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 033:399.999 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 033:400.280 Data: A9 00 00 00
-T39B8 033:400.293 - 0.305ms returns 4 (0x4)
-T39B8 033:400.308 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 033:400.318 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 033:400.610 Data: EF 00 00 00
-T39B8 033:400.621 - 0.316ms returns 4 (0x4)
-T39B8 033:400.635 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 033:400.644 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 033:400.930 Data: 3F 01 00 00
-T39B8 033:400.946 - 0.314ms returns 4 (0x4)
-T39B8 033:400.966 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 033:400.978 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 033:401.239 Data: 42 08 00 00
-T39B8 033:401.255 - 0.292ms returns 4 (0x4)
-T39B8 033:401.300 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 033:401.311 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 033:401.609 Data: 00 00 00 00
-T39B8 033:401.620 - 0.324ms returns 4 (0x4)
-T39B8 033:401.644 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 033:401.653 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 033:401.919 Data: 00
-T39B8 033:401.931 - 0.290ms returns 1 (0x1)
-T39B8 033:401.942 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 033:401.951 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 033:402.192 Data: 63
-T39B8 033:402.204 - 0.265ms returns 1 (0x1)
-T39B8 033:402.215 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 033:402.224 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 033:402.524 Data: 63
-T39B8 033:402.535 - 0.323ms returns 1 (0x1)
-T3DFC 033:402.613 JLINK_IsHalted()
-T3DFC 033:402.872 - 0.265ms returns FALSE
-T3DFC 033:503.289 JLINK_HasError()
-T3DFC 033:503.364 JLINK_IsHalted()
-T3DFC 033:503.873 - 0.523ms returns FALSE
-T3DFC 033:603.957 JLINK_HasError()
-T3DFC 033:604.028 JLINK_IsHalted()
-T3DFC 033:604.431 - 0.417ms returns FALSE
-T3DFC 033:705.198 JLINK_HasError()
-T3DFC 033:705.262 JLINK_IsHalted()
-T3DFC 033:705.663 - 0.413ms returns FALSE
-T3DFC 033:806.007 JLINK_HasError()
-T3DFC 033:806.078 JLINK_IsHalted()
-T3DFC 033:806.588 - 0.532ms returns FALSE
-T3DFC 033:907.451 JLINK_HasError()
-T3DFC 033:907.524 JLINK_IsHalted()
-T3DFC 033:908.015 - 0.539ms returns FALSE
-T3DFC 034:008.924 JLINK_HasError()
-T3DFC 034:008.969 JLINK_HasError()
-T3DFC 034:008.983 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 034:009.013 Data: 5E 91 FF 02
-T3DFC 034:009.030 Debug reg: DWT_CYCCNT
-T3DFC 034:009.045 - 0.067ms returns 1 (0x1)
-T39B8 034:009.308 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 034:009.364 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 034:009.755 Data: 00
-T39B8 034:009.773 - 0.470ms returns 1 (0x1)
-T39B8 034:009.799 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 034:009.815 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 034:010.146 Data: 32
-T39B8 034:010.162 - 0.368ms returns 1 (0x1)
-T39B8 034:010.221 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 034:010.235 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 034:010.577 Data: E2 00 00 00
-T39B8 034:010.593 - 0.377ms returns 4 (0x4)
-T39B8 034:010.612 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 034:010.625 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 034:010.962 Data: A9 00 00 00
-T39B8 034:010.984 - 0.377ms returns 4 (0x4)
-T39B8 034:011.026 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 034:011.045 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 034:011.380 Data: EF 00 00 00
-T39B8 034:011.403 - 0.382ms returns 4 (0x4)
-T39B8 034:011.430 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 034:011.450 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 034:011.749 Data: 3F 01 00 00
-T39B8 034:011.766 - 0.340ms returns 4 (0x4)
-T39B8 034:011.786 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 034:011.799 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 034:012.121 Data: 42 08 00 00
-T39B8 034:012.136 - 0.353ms returns 4 (0x4)
-T39B8 034:012.199 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 034:012.211 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 034:012.536 Data: 00 00 00 00
-T39B8 034:012.553 - 0.359ms returns 4 (0x4)
-T39B8 034:012.617 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 034:012.630 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 034:012.977 Data: 00
-T39B8 034:012.997 - 0.385ms returns 1 (0x1)
-T39B8 034:013.016 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 034:013.029 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 034:013.320 Data: 63
-T39B8 034:013.335 - 0.324ms returns 1 (0x1)
-T39B8 034:013.349 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 034:013.362 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 034:013.658 Data: 63
-T39B8 034:013.673 - 0.328ms returns 1 (0x1)
-T3DFC 034:013.762 JLINK_IsHalted()
-T3DFC 034:014.064 - 0.313ms returns FALSE
-T3DFC 034:115.110 JLINK_HasError()
-T3DFC 034:115.158 JLINK_IsHalted()
-T3DFC 034:115.610 - 0.485ms returns FALSE
-T3DFC 034:216.119 JLINK_HasError()
-T3DFC 034:216.178 JLINK_IsHalted()
-T3DFC 034:216.692 - 0.556ms returns FALSE
-T3DFC 034:317.082 JLINK_HasError()
-T3DFC 034:317.150 JLINK_IsHalted()
-T3DFC 034:317.555 - 0.449ms returns FALSE
-T3DFC 034:417.671 JLINK_HasError()
-T3DFC 034:417.733 JLINK_IsHalted()
-T3DFC 034:418.116 - 0.397ms returns FALSE
-T3DFC 034:518.481 JLINK_HasError()
-T3DFC 034:518.544 JLINK_IsHalted()
-T3DFC 034:518.931 - 0.401ms returns FALSE
-T3DFC 034:619.011 JLINK_HasError()
-T3DFC 034:619.074 JLINK_HasError()
-T3DFC 034:619.099 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 034:619.144 Data: 5E 91 FF 02
-T3DFC 034:619.176 Debug reg: DWT_CYCCNT
-T3DFC 034:619.204 - 0.115ms returns 1 (0x1)
-T39B8 034:619.525 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 034:619.561 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 034:620.031 Data: 00
-T39B8 034:620.065 - 0.550ms returns 1 (0x1)
-T39B8 034:620.111 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 034:620.140 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 034:620.540 Data: 32
-T39B8 034:620.572 - 0.470ms returns 1 (0x1)
-T39B8 034:620.676 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 034:620.703 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 034:621.416 Data: E2 00 00 00
-T39B8 034:621.456 - 0.790ms returns 4 (0x4)
-T39B8 034:621.510 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 034:621.539 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 034:621.902 Data: A9 00 00 00
-T39B8 034:621.934 - 0.434ms returns 4 (0x4)
-T39B8 034:621.977 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 034:622.003 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 034:622.368 Data: EF 00 00 00
-T39B8 034:622.400 - 0.433ms returns 4 (0x4)
-T39B8 034:622.441 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 034:622.466 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 034:622.791 Data: 3F 01 00 00
-T39B8 034:622.823 - 0.391ms returns 4 (0x4)
-T39B8 034:622.864 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 034:622.889 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 034:623.269 Data: 42 08 00 00
-T39B8 034:623.301 - 0.447ms returns 4 (0x4)
-T39B8 034:623.433 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 034:623.459 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 034:623.790 Data: 00 00 00 00
-T39B8 034:623.822 - 0.399ms returns 4 (0x4)
-T39B8 034:623.891 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 034:623.916 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 034:624.272 Data: 00
-T39B8 034:624.304 - 0.423ms returns 1 (0x1)
-T39B8 034:624.338 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 034:624.531 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 034:624.898 Data: 63
-T39B8 034:624.931 - 0.602ms returns 1 (0x1)
-T39B8 034:624.967 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 034:624.992 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 034:625.516 Data: 63
-T39B8 034:625.596 - 0.639ms returns 1 (0x1)
-T3DFC 034:626.071 JLINK_IsHalted()
-T3DFC 034:626.540 - 0.485ms returns FALSE
-T3DFC 034:727.268 JLINK_HasError()
-T3DFC 034:727.330 JLINK_IsHalted()
-T3DFC 034:727.767 - 0.451ms returns FALSE
-T3DFC 034:827.900 JLINK_HasError()
-T3DFC 034:827.967 JLINK_IsHalted()
-T3DFC 034:828.423 - 0.471ms returns FALSE
-T3DFC 034:928.896 JLINK_HasError()
-T3DFC 034:929.056 JLINK_IsHalted()
-T3DFC 034:929.461 - 0.418ms returns FALSE
-T3DFC 035:030.066 JLINK_HasError()
-T3DFC 035:030.471 JLINK_IsHalted()
-T3DFC 035:030.955 - 0.532ms returns FALSE
-T3DFC 035:132.052 JLINK_HasError()
-T3DFC 035:132.122 JLINK_HasError()
-T3DFC 035:132.146 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 035:132.192 Data: 5E 91 FF 02
-T3DFC 035:132.224 Debug reg: DWT_CYCCNT
-T3DFC 035:132.252 - 0.116ms returns 1 (0x1)
-T39B8 035:132.604 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 035:132.679 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 035:133.124 Data: 00
-T39B8 035:133.159 - 0.564ms returns 1 (0x1)
-T39B8 035:133.205 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 035:133.235 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 035:133.667 Data: 32
-T39B8 035:133.699 - 0.503ms returns 1 (0x1)
-T39B8 035:133.802 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 035:133.828 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 035:134.305 Data: C1 00 00 00
-T39B8 035:134.342 - 0.550ms returns 4 (0x4)
-T39B8 035:135.259 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 035:135.310 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 035:135.805 Data: 00 00 00 00
-T39B8 035:135.838 - 0.588ms returns 4 (0x4)
-T39B8 035:136.494 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 035:136.535 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 035:136.992 Data: EF 00 00 00
-T39B8 035:137.025 - 0.541ms returns 4 (0x4)
-T39B8 035:137.072 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 035:137.099 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 035:137.542 Data: 4D 00 00 00
-T39B8 035:137.575 - 0.512ms returns 4 (0x4)
-T39B8 035:138.168 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 035:138.205 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 035:138.546 Data: 52 0E 00 00
-T39B8 035:138.579 - 0.421ms returns 4 (0x4)
-T39B8 035:140.224 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 035:140.276 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 035:140.626 Data: 00 00 00 00
-T39B8 035:140.653 - 0.436ms returns 4 (0x4)
-T39B8 035:140.715 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 035:140.789 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 035:141.271 Data: 00
-T39B8 035:141.297 - 0.589ms returns 1 (0x1)
-T39B8 035:141.323 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 035:141.344 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 035:141.748 Data: 63
-T39B8 035:141.771 - 0.454ms returns 1 (0x1)
-T39B8 035:141.791 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 035:141.807 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 035:142.105 Data: 63
-T39B8 035:142.129 - 0.344ms returns 1 (0x1)
-T3DFC 035:142.238 JLINK_IsHalted()
-T3DFC 035:143.311 - 1.099ms returns FALSE
-T3DFC 035:243.416 JLINK_HasError()
-T3DFC 035:243.480 JLINK_IsHalted()
-T3DFC 035:243.867 - 0.401ms returns FALSE
-T3DFC 035:343.942 JLINK_HasError()
-T3DFC 035:344.006 JLINK_IsHalted()
-T3DFC 035:344.406 - 0.443ms returns FALSE
-T3DFC 035:444.625 JLINK_HasError()
-T3DFC 035:444.690 JLINK_IsHalted()
-T3DFC 035:445.207 - 0.530ms returns FALSE
-T3DFC 035:545.284 JLINK_HasError()
-T3DFC 035:545.348 JLINK_IsHalted()
-T3DFC 035:545.752 - 0.418ms returns FALSE
-T3DFC 035:646.612 JLINK_HasError()
-T3DFC 035:646.676 JLINK_HasError()
-T3DFC 035:646.700 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 035:646.747 Data: 5E 91 FF 02
-T3DFC 035:646.778 Debug reg: DWT_CYCCNT
-T3DFC 035:646.806 - 0.116ms returns 1 (0x1)
-T39B8 035:647.124 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 035:647.159 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 035:647.590 Data: 00
-T39B8 035:647.624 - 0.510ms returns 1 (0x1)
-T39B8 035:647.670 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 035:647.700 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 035:648.069 Data: 32
-T39B8 035:648.101 - 0.440ms returns 1 (0x1)
-T39B8 035:648.200 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 035:648.226 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 035:648.564 Data: E2 00 00 00
-T39B8 035:648.596 - 0.406ms returns 4 (0x4)
-T39B8 035:650.455 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 035:650.539 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 035:651.133 Data: A9 00 00 00
-T39B8 035:651.181 - 0.735ms returns 4 (0x4)
-T39B8 035:652.466 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 035:652.527 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 035:652.948 Data: EF 00 00 00
-T39B8 035:652.983 - 0.527ms returns 4 (0x4)
-T39B8 035:653.038 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 035:653.070 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 035:653.428 Data: 3F 01 00 00
-T39B8 035:653.459 - 0.430ms returns 4 (0x4)
-T39B8 035:654.528 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 035:654.569 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 035:655.065 Data: 42 08 00 00
-T39B8 035:655.093 - 0.573ms returns 4 (0x4)
-T39B8 035:657.408 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 035:657.460 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 035:657.783 Data: 00 00 00 00
-T39B8 035:657.812 - 0.408ms returns 4 (0x4)
-T39B8 035:657.874 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 035:657.894 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 035:658.165 Data: 00
-T39B8 035:658.182 - 0.313ms returns 1 (0x1)
-T39B8 035:658.199 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 035:658.211 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 035:658.747 Data: 63
-T39B8 035:658.763 - 0.568ms returns 1 (0x1)
-T39B8 035:658.778 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 035:658.790 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 035:659.106 Data: 63
-T39B8 035:659.120 - 0.354ms returns 1 (0x1)
-T3DFC 035:659.458 JLINK_IsHalted()
-T3DFC 035:659.937 - 0.499ms returns FALSE
-T3DFC 035:760.081 JLINK_HasError()
-T3DFC 035:760.140 JLINK_IsHalted()
-T3DFC 035:760.558 - 0.461ms returns FALSE
-T3DFC 035:861.435 JLINK_HasError()
-T3DFC 035:861.503 JLINK_IsHalted()
-T3DFC 035:861.968 - 0.479ms returns FALSE
-T3DFC 035:962.236 JLINK_HasError()
-T3DFC 035:962.296 JLINK_IsHalted()
-T3DFC 035:962.720 - 0.438ms returns FALSE
-T3DFC 036:063.155 JLINK_HasError()
-T3DFC 036:063.214 JLINK_IsHalted()
-T3DFC 036:063.638 - 0.438ms returns FALSE
-T3DFC 036:163.718 JLINK_HasError()
-T3DFC 036:163.782 JLINK_HasError()
-T3DFC 036:163.806 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 036:163.851 Data: 5E 91 FF 02
-T3DFC 036:163.883 Debug reg: DWT_CYCCNT
-T3DFC 036:163.911 - 0.115ms returns 1 (0x1)
-T39B8 036:164.216 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 036:164.250 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 036:164.665 Data: 00
-T39B8 036:164.810 - 0.604ms returns 1 (0x1)
-T39B8 036:164.858 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 036:164.889 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 036:165.371 Data: 32
-T39B8 036:165.403 - 0.554ms returns 1 (0x1)
-T39B8 036:165.514 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 036:165.540 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 036:166.081 Data: E2 00 00 00
-T39B8 036:166.151 - 0.647ms returns 4 (0x4)
-T39B8 036:167.061 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 036:167.127 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 036:167.548 Data: A9 00 00 00
-T39B8 036:167.589 - 0.538ms returns 4 (0x4)
-T39B8 036:168.419 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 036:168.468 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 036:168.949 Data: EF 00 00 00
-T39B8 036:168.982 - 0.572ms returns 4 (0x4)
-T39B8 036:169.030 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 036:169.058 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 036:169.538 Data: 3F 01 00 00
-T39B8 036:169.570 - 0.549ms returns 4 (0x4)
-T39B8 036:170.235 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 036:170.275 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 036:170.828 Data: 42 08 00 00
-T39B8 036:170.861 - 0.635ms returns 4 (0x4)
-T39B8 036:172.133 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 036:172.180 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 036:173.751 Data: 00 00 00 00
-T39B8 036:173.781 - 1.655ms returns 4 (0x4)
-T39B8 036:173.858 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 036:173.882 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 036:174.468 Data: 00
-T39B8 036:174.492 - 0.641ms returns 1 (0x1)
-T39B8 036:174.515 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 036:174.534 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 036:174.861 Data: 63
-T39B8 036:174.884 - 0.375ms returns 1 (0x1)
-T39B8 036:174.903 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 036:174.920 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 036:175.219 Data: 63
-T39B8 036:175.237 - 0.339ms returns 1 (0x1)
-T3DFC 036:175.309 JLINK_IsHalted()
-T3DFC 036:176.023 - 0.741ms returns FALSE
-T3DFC 036:276.134 JLINK_HasError()
-T3DFC 036:276.194 JLINK_IsHalted()
-T3DFC 036:276.596 - 0.445ms returns FALSE
-T3DFC 036:377.272 JLINK_HasError()
-T3DFC 036:377.326 JLINK_IsHalted()
-T3DFC 036:377.769 - 0.457ms returns FALSE
-T3DFC 036:477.842 JLINK_HasError()
-T3DFC 036:477.901 JLINK_IsHalted()
-T3DFC 036:478.228 - 0.340ms returns FALSE
-T3DFC 036:578.344 JLINK_HasError()
-T3DFC 036:578.403 JLINK_IsHalted()
-T3DFC 036:578.804 - 0.414ms returns FALSE
-T3DFC 036:678.881 JLINK_HasError()
-T3DFC 036:678.940 JLINK_HasError()
-T3DFC 036:678.964 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 036:679.009 Data: 5E 91 FF 02
-T3DFC 036:679.040 Debug reg: DWT_CYCCNT
-T3DFC 036:679.068 - 0.114ms returns 1 (0x1)
-T39B8 036:679.384 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 036:679.420 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 036:679.816 Data: 00
-T39B8 036:679.918 - 0.577ms returns 1 (0x1)
-T39B8 036:680.068 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 036:680.117 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 036:680.546 Data: 32
-T39B8 036:680.584 - 0.526ms returns 1 (0x1)
-T39B8 036:680.712 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 036:681.047 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 036:681.427 Data: C1 00 00 00
-T39B8 036:681.461 - 0.759ms returns 4 (0x4)
-T39B8 036:682.702 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 036:682.767 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 036:683.153 Data: A9 00 00 00
-T39B8 036:683.187 - 0.495ms returns 4 (0x4)
-T39B8 036:683.239 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 036:683.269 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 036:683.611 Data: E1 00 00 00
-T39B8 036:683.642 - 0.413ms returns 4 (0x4)
-T39B8 036:684.324 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 036:684.367 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 036:685.206 Data: 3F 01 00 00
-T39B8 036:685.271 - 0.958ms returns 4 (0x4)
-T39B8 036:685.352 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 036:685.395 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 036:685.813 Data: 77 13 00 00
-T39B8 036:685.854 - 0.511ms returns 4 (0x4)
-T39B8 036:686.682 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 036:686.726 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 036:687.105 Data: 00 00 00 00
-T39B8 036:687.131 - 0.455ms returns 4 (0x4)
-T39B8 036:687.195 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 036:687.217 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 036:687.528 Data: 00
-T39B8 036:687.551 - 0.363ms returns 1 (0x1)
-T39B8 036:687.575 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 036:687.594 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 036:687.895 Data: 63
-T39B8 036:687.920 - 0.352ms returns 1 (0x1)
-T39B8 036:687.944 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 036:687.963 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 036:688.276 Data: 63
-T39B8 036:688.298 - 0.360ms returns 1 (0x1)
-T3DFC 036:688.379 JLINK_IsHalted()
-T3DFC 036:688.743 - 0.373ms returns FALSE
-T3DFC 036:789.932 JLINK_HasError()
-T3DFC 036:789.992 JLINK_IsHalted()
-T3DFC 036:790.401 - 0.454ms returns FALSE
-T3DFC 036:890.733 JLINK_HasError()
-T3DFC 036:890.798 JLINK_IsHalted()
-T3DFC 036:891.259 - 0.476ms returns FALSE
-T3DFC 036:992.166 JLINK_HasError()
-T3DFC 036:992.230 JLINK_IsHalted()
-T3DFC 036:992.714 - 0.499ms returns FALSE
-T3DFC 037:092.800 JLINK_HasError()
-T3DFC 037:092.864 JLINK_IsHalted()
-T3DFC 037:093.290 - 0.440ms returns FALSE
-T3DFC 037:193.920 JLINK_HasError()
-T3DFC 037:193.980 JLINK_HasError()
-T3DFC 037:194.004 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 037:194.050 Data: 5E 91 FF 02
-T3DFC 037:194.082 Debug reg: DWT_CYCCNT
-T3DFC 037:194.110 - 0.116ms returns 1 (0x1)
-T39B8 037:194.446 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 037:194.536 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 037:194.957 Data: 00
-T39B8 037:194.995 - 0.560ms returns 1 (0x1)
-T39B8 037:195.069 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 037:195.105 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 037:195.538 Data: 32
-T39B8 037:195.570 - 0.510ms returns 1 (0x1)
-T39B8 037:195.723 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 037:195.752 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 037:196.130 Data: E2 00 00 00
-T39B8 037:196.162 - 0.448ms returns 4 (0x4)
-T39B8 037:198.333 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 037:198.405 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 037:198.806 Data: A9 00 00 00
-T39B8 037:198.858 - 0.535ms returns 4 (0x4)
-T39B8 037:198.930 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 037:198.968 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 037:199.326 Data: EF 00 00 00
-T39B8 037:199.358 - 0.437ms returns 4 (0x4)
-T39B8 037:200.575 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 037:200.626 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 037:201.020 Data: 3F 01 00 00
-T39B8 037:201.063 - 0.497ms returns 4 (0x4)
-T39B8 037:201.122 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 037:201.156 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 037:201.557 Data: 42 08 00 00
-T39B8 037:201.600 - 0.487ms returns 4 (0x4)
-T39B8 037:202.795 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 037:202.839 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 037:203.161 Data: 00 00 00 00
-T39B8 037:203.187 - 0.400ms returns 4 (0x4)
-T39B8 037:203.245 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 037:203.267 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 037:203.580 Data: 00
-T39B8 037:203.604 - 0.366ms returns 1 (0x1)
-T39B8 037:203.628 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 037:203.648 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 037:203.988 Data: 63
-T39B8 037:204.012 - 0.391ms returns 1 (0x1)
-T39B8 037:204.033 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 037:204.051 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 037:204.385 Data: 63
-T39B8 037:204.407 - 0.380ms returns 1 (0x1)
-T3DFC 037:204.500 JLINK_IsHalted()
-T3DFC 037:204.825 - 0.336ms returns FALSE
-T3DFC 037:305.997 JLINK_HasError()
-T3DFC 037:306.082 JLINK_IsHalted()
-T3DFC 037:306.549 - 0.482ms returns FALSE
-T3DFC 037:407.137 JLINK_HasError()
-T3DFC 037:407.210 JLINK_IsHalted()
-T3DFC 037:407.629 - 0.432ms returns FALSE
-T3DFC 037:510.006 JLINK_HasError()
-T3DFC 037:510.077 JLINK_IsHalted()
-T3DFC 037:510.556 - 0.521ms returns FALSE
-T3DFC 037:611.099 JLINK_HasError()
-T3DFC 037:611.237 JLINK_IsHalted()
-T3DFC 037:611.631 - 0.427ms returns FALSE
-T3DFC 037:712.088 JLINK_HasError()
-T3DFC 037:712.149 JLINK_HasError()
-T3DFC 037:712.173 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 037:712.218 Data: 5E 91 FF 02
-T3DFC 037:712.249 Debug reg: DWT_CYCCNT
-T3DFC 037:712.277 - 0.113ms returns 1 (0x1)
-T39B8 037:712.587 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 037:712.622 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 037:713.026 Data: 00
-T39B8 037:713.073 - 0.496ms returns 1 (0x1)
-T39B8 037:713.119 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 037:713.148 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 037:713.566 Data: 32
-T39B8 037:713.599 - 0.489ms returns 1 (0x1)
-T39B8 037:713.700 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 037:713.727 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 037:714.104 Data: E2 00 00 00
-T39B8 037:714.136 - 0.444ms returns 4 (0x4)
-T39B8 037:715.345 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 037:715.402 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 037:715.877 Data: A9 00 00 00
-T39B8 037:715.911 - 0.575ms returns 4 (0x4)
-T39B8 037:715.957 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 037:715.986 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 037:716.361 Data: EF 00 00 00
-T39B8 037:716.393 - 0.445ms returns 4 (0x4)
-T39B8 037:717.090 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 037:717.131 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 037:717.540 Data: 3F 01 00 00
-T39B8 037:717.573 - 0.493ms returns 4 (0x4)
-T39B8 037:717.618 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 037:717.646 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 037:718.000 Data: 42 08 00 00
-T39B8 037:718.032 - 0.423ms returns 4 (0x4)
-T39B8 037:718.777 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 037:718.815 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 037:719.289 Data: 00 00 00 00
-T39B8 037:719.317 - 0.548ms returns 4 (0x4)
-T39B8 037:719.383 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 037:719.407 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 037:719.788 Data: 00
-T39B8 037:719.814 - 0.438ms returns 1 (0x1)
-T39B8 037:719.840 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 037:719.859 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 037:720.197 Data: 63
-T39B8 037:720.221 - 0.388ms returns 1 (0x1)
-T39B8 037:720.246 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 037:720.265 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 037:720.609 Data: 63
-T39B8 037:720.633 - 0.393ms returns 1 (0x1)
-T3DFC 037:720.971 JLINK_IsHalted()
-T3DFC 037:721.403 - 0.448ms returns FALSE
-T3DFC 037:822.279 JLINK_HasError()
-T3DFC 037:822.341 JLINK_IsHalted()
-T3DFC 037:822.841 - 0.514ms returns FALSE
-T3DFC 037:922.934 JLINK_HasError()
-T3DFC 037:922.999 JLINK_IsHalted()
-T3DFC 037:923.383 - 0.398ms returns FALSE
-T3DFC 038:023.669 JLINK_HasError()
-T3DFC 038:023.729 JLINK_IsHalted()
-T3DFC 038:024.110 - 0.395ms returns FALSE
-T3DFC 038:124.908 JLINK_HasError()
-T3DFC 038:124.933 JLINK_IsHalted()
-T3DFC 038:125.206 - 0.284ms returns FALSE
-T3DFC 038:225.730 JLINK_HasError()
-T3DFC 038:225.761 JLINK_HasError()
-T3DFC 038:225.768 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 038:225.784 Data: 5E 91 FF 02
-T3DFC 038:225.794 Debug reg: DWT_CYCCNT
-T3DFC 038:225.801 - 0.036ms returns 1 (0x1)
-T39B8 038:225.921 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 038:225.953 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 038:226.271 Data: 00
-T39B8 038:226.282 - 0.363ms returns 1 (0x1)
-T39B8 038:226.303 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 038:226.313 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 038:226.599 Data: 32
-T39B8 038:226.611 - 0.310ms returns 1 (0x1)
-T39B8 038:226.657 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 038:226.665 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 038:226.918 Data: C1 00 00 00
-T39B8 038:226.927 - 0.272ms returns 4 (0x4)
-T39B8 038:227.208 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 038:227.222 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 038:227.517 Data: A9 00 00 00
-T39B8 038:227.526 - 0.321ms returns 4 (0x4)
-T39B8 038:227.539 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 038:227.546 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 038:227.788 Data: E1 00 00 00
-T39B8 038:227.796 - 0.260ms returns 4 (0x4)
-T39B8 038:227.978 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 038:227.988 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 038:228.250 Data: 3F 01 00 00
-T39B8 038:228.260 - 0.284ms returns 4 (0x4)
-T39B8 038:228.271 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 038:228.278 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 038:228.554 Data: 77 13 00 00
-T39B8 038:228.563 - 0.294ms returns 4 (0x4)
-T39B8 038:228.747 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 038:228.758 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 038:229.132 Data: 00 00 00 00
-T39B8 038:229.140 - 0.395ms returns 4 (0x4)
-T39B8 038:229.184 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 038:229.191 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 038:229.512 Data: 00
-T39B8 038:229.520 - 0.338ms returns 1 (0x1)
-T39B8 038:229.528 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 038:229.534 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 038:229.851 Data: 63
-T39B8 038:229.860 - 0.335ms returns 1 (0x1)
-T39B8 038:229.869 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 038:229.876 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 038:230.127 Data: 63
-T39B8 038:230.136 - 0.269ms returns 1 (0x1)
-T3DFC 038:230.215 JLINK_IsHalted()
-T3DFC 038:230.552 - 0.342ms returns FALSE
-T3DFC 038:330.981 JLINK_HasError()
-T3DFC 038:331.037 JLINK_IsHalted()
-T3DFC 038:331.413 - 0.416ms returns FALSE
-T3DFC 038:432.623 JLINK_HasError()
-T3DFC 038:432.667 JLINK_IsHalted()
-T3DFC 038:433.011 - 0.350ms returns FALSE
-T3DFC 038:533.869 JLINK_HasError()
-T3DFC 038:533.921 JLINK_IsHalted()
-T3DFC 038:534.293 - 0.409ms returns FALSE
-T3DFC 038:634.409 JLINK_HasError()
-T3DFC 038:634.464 JLINK_IsHalted()
-T3DFC 038:634.859 - 0.406ms returns FALSE
-T3DFC 038:735.874 JLINK_HasError()
-T3DFC 038:735.935 JLINK_IsHalted()
-T3DFC 038:736.313 - 0.388ms returns FALSE
-T3DFC 038:836.398 JLINK_HasError()
-T3DFC 038:836.592 JLINK_HasError()
-T3DFC 038:836.617 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 038:836.666 Data: 5E 91 FF 02
-T3DFC 038:836.698 Debug reg: DWT_CYCCNT
-T3DFC 038:836.726 - 0.118ms returns 1 (0x1)
-T39B8 038:837.076 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 038:837.182 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 038:837.668 Data: 00
-T39B8 038:837.706 - 0.640ms returns 1 (0x1)
-T39B8 038:837.774 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 038:837.808 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 038:838.200 Data: 32
-T39B8 038:838.231 - 0.465ms returns 1 (0x1)
-T39B8 038:838.373 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 038:838.397 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 038:838.753 Data: C1 00 00 00
-T39B8 038:838.781 - 0.417ms returns 4 (0x4)
-T39B8 038:839.557 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 038:839.602 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 038:840.019 Data: A9 00 00 00
-T39B8 038:840.049 - 0.500ms returns 4 (0x4)
-T39B8 038:840.090 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 038:840.113 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 038:840.477 Data: E1 00 00 00
-T39B8 038:840.531 - 0.450ms returns 4 (0x4)
-T39B8 038:841.251 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 038:841.299 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 038:841.670 Data: 3F 01 00 00
-T39B8 038:841.702 - 0.458ms returns 4 (0x4)
-T39B8 038:841.742 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 038:841.765 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 038:842.119 Data: 77 13 00 00
-T39B8 038:842.162 - 0.427ms returns 4 (0x4)
-T39B8 038:842.850 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 038:842.889 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 038:843.225 Data: 00 00 00 00
-T39B8 038:843.247 - 0.403ms returns 4 (0x4)
-T39B8 038:843.298 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 038:843.318 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 038:843.663 Data: 00
-T39B8 038:843.696 - 0.405ms returns 1 (0x1)
-T39B8 038:843.724 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 038:843.745 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 038:844.046 Data: 63
-T39B8 038:844.066 - 0.347ms returns 1 (0x1)
-T39B8 038:844.085 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 038:844.100 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 038:844.399 Data: 63
-T39B8 038:844.418 - 0.339ms returns 1 (0x1)
-T3DFC 038:844.601 JLINK_IsHalted()
-T3DFC 038:844.934 - 0.345ms returns FALSE
-T3DFC 038:945.696 JLINK_HasError()
-T3DFC 038:945.772 JLINK_IsHalted()
-T3DFC 038:946.198 - 0.469ms returns FALSE
-T3DFC 039:046.308 JLINK_HasError()
-T3DFC 039:046.375 JLINK_IsHalted()
-T3DFC 039:046.799 - 0.437ms returns FALSE
-T3DFC 039:147.242 JLINK_HasError()
-T3DFC 039:147.303 JLINK_IsHalted()
-T3DFC 039:147.764 - 0.474ms returns FALSE
-T3DFC 039:248.527 JLINK_HasError()
-T3DFC 039:248.588 JLINK_IsHalted()
-T3DFC 039:248.984 - 0.408ms returns FALSE
-T3DFC 039:349.107 JLINK_HasError()
-T3DFC 039:349.170 JLINK_HasError()
-T3DFC 039:349.194 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
-T3DFC 039:349.241 Data: 5E 91 FF 02
-T3DFC 039:349.274 Debug reg: DWT_CYCCNT
-T3DFC 039:349.303 - 0.119ms returns 1 (0x1)
-T39B8 039:483.947 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
-T39B8 039:484.007 CPU_ReadMem(1 bytes @ 0x2000008A)
-T39B8 039:484.357 Data: 00
-T39B8 039:484.373 - 0.430ms returns 1 (0x1)
-T39B8 039:484.396 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
-T39B8 039:484.409 CPU_ReadMem(1 bytes @ 0x2000006C)
-T39B8 039:484.740 Data: 32
-T39B8 039:484.754 - 0.362ms returns 1 (0x1)
-T39B8 039:484.805 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 039:484.816 CPU_ReadMem(4 bytes @ 0x2000011C)
-T39B8 039:485.096 Data: E2 00 00 00
-T39B8 039:485.112 - 0.311ms returns 4 (0x4)
-T39B8 039:485.487 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
-T39B8 039:485.509 CPU_ReadMem(4 bytes @ 0x20000120)
-T39B8 039:485.835 Data: A9 00 00 00
-T39B8 039:485.849 - 0.366ms returns 4 (0x4)
-T39B8 039:485.868 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
-T39B8 039:485.880 CPU_ReadMem(4 bytes @ 0x20000124)
-T39B8 039:486.192 Data: EF 00 00 00
-T39B8 039:486.212 - 0.349ms returns 4 (0x4)
-T39B8 039:486.621 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
-T39B8 039:486.644 CPU_ReadMem(4 bytes @ 0x20000128)
-T39B8 039:486.919 Data: 3F 01 00 00
-T39B8 039:486.931 - 0.314ms returns 4 (0x4)
-T39B8 039:486.957 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
-T39B8 039:486.968 CPU_ReadMem(4 bytes @ 0x2000012C)
-T39B8 039:487.235 Data: 42 08 00 00
-T39B8 039:487.246 - 0.293ms returns 4 (0x4)
-T39B8 039:487.513 JLINK_ReadMemEx(0x200002F0, 0x4 Bytes, Flags = 0x02000000)
-T39B8 039:487.527 CPU_ReadMem(4 bytes @ 0x200002F0)
-T39B8 039:487.840 Data: 00 00 00 00
-T39B8 039:487.851 - 0.341ms returns 4 (0x4)
-T39B8 039:487.876 JLINK_ReadMemEx(0x200002EC, 0x1 Bytes, Flags = 0x02000000)
-T39B8 039:487.885 CPU_ReadMem(1 bytes @ 0x200002EC)
-T39B8 039:488.147 Data: 00
-T39B8 039:488.156 - 0.283ms returns 1 (0x1)
-T39B8 039:488.165 JLINK_ReadMemEx(0x200002ED, 0x1 Bytes, Flags = 0x02000000)
-T39B8 039:488.173 CPU_ReadMem(1 bytes @ 0x200002ED)
-T39B8 039:488.428 Data: 63
-T39B8 039:488.437 - 0.274ms returns 1 (0x1)
-T39B8 039:488.446 JLINK_ReadMemEx(0x200002EE, 0x1 Bytes, Flags = 0x02000000)
-T39B8 039:488.456 CPU_ReadMem(1 bytes @ 0x200002EE)
-T39B8 039:488.703 Data: 63
-T39B8 039:488.713 - 0.269ms returns 1 (0x1)
-T3DFC 039:488.821 JLINK_IsHalted()
-T3DFC 039:489.093 - 0.277ms returns FALSE
-T3DFC 039:589.473 JLINK_HasError()
-T3DFC 039:589.543 JLINK_IsHalted()
-T3DFC 039:589.988 - 0.485ms returns FALSE
-T3DFC 039:691.042 JLINK_HasError()
-T3DFC 039:691.116 JLINK_Halt()
-T3DFC 039:693.891 - 2.824ms returns 0x00
-T3DFC 039:693.963 JLINK_IsHalted()
-T3DFC 039:693.986 - 0.032ms returns TRUE
-T3DFC 039:694.011 JLINK_IsHalted()
-T3DFC 039:694.030 - 0.029ms returns TRUE
-T3DFC 039:694.054 JLINK_IsHalted()
-T3DFC 039:694.072 - 0.028ms returns TRUE
-T3DFC 039:694.098 JLINK_HasError()
-T3DFC 039:694.123 JLINK_ReadReg(R15 (PC))
-T3DFC 039:694.149 - 0.036ms returns 0x080018F8
-T3DFC 039:694.173 JLINK_ReadReg(XPSR)
-T3DFC 039:694.194 - 0.030ms returns 0x41000000
-T3DFC 039:694.227 JLINK_HasError()
-T3DFC 039:694.250 JLINK_HasError()
-T3DFC 039:694.273 JLINK_ReadMemU32(0xE000ED30, 0x1 Items)
-T3DFC 039:694.307 CPU_ReadMem(4 bytes @ 0xE000ED30)
-T3DFC 039:694.663 Data: 01 00 00 00
-T3DFC 039:694.696 - 0.433ms returns 1 (0x1)
-T3DFC 039:694.723 JLINK_ReadMemU32(0xE0001028, 0x1 Items)
-T3DFC 039:694.751 CPU_ReadMem(4 bytes @ 0xE0001028)
-T3DFC 039:695.083 Data: 00 00 00 00
-T3DFC 039:695.117 Debug reg: DWT_FUNC[0]
-T3DFC 039:695.144 - 0.431ms returns 1 (0x1)
-T3DFC 039:695.170 JLINK_ReadMemU32(0xE0001038, 0x1 Items)
-T3DFC 039:695.194 CPU_ReadMem(4 bytes @ 0xE0001038)
-T3DFC 039:695.539 Data: 00 02 00 00
-T3DFC 039:695.572 Debug reg: DWT_FUNC[1]
-T3DFC 039:695.600 - 0.439ms returns 1 (0x1)
-T3DFC 039:695.625 JLINK_ReadMemU32(0xE0001048, 0x1 Items)
-T3DFC 039:695.649 CPU_ReadMem(4 bytes @ 0xE0001048)
-T3DFC 039:696.026 Data: 00 00 00 00
-T3DFC 039:696.059 Debug reg: DWT_FUNC[2]
-T3DFC 039:696.086 - 0.470ms returns 1 (0x1)
-T3DFC 039:696.112 JLINK_ReadMemU32(0xE0001058, 0x1 Items)
-T3DFC 039:696.135 CPU_ReadMem(4 bytes @ 0xE0001058)
-T3DFC 039:696.536 Data: 00 00 00 00
-T3DFC 039:696.568 Debug reg: DWT_FUNC[3]
-T3DFC 039:696.596 - 0.493ms returns 1 (0x1)
-T39B8 040:303.142 JLINK_HasError()
-T39B8 040:307.851 JLINK_Close()
-T39B8 040:308.419 CPU_ReadMem(4 bytes @ 0xE0001000)
-T39B8 040:317.055 - 9.214ms
-T39B8 040:317.069
-T39B8 040:317.074 Closed
+T2C78 000:007.085 SEGGER J-Link V7.00 Log File
+T2C78 000:007.245 DLL Compiled: Apr 8 2021 14:30:05
+T2C78 000:007.250 Logging started @ 2025-03-03 06:09
+T2C78 000:007.254 - 7.256ms
+T2C78 000:007.261 JLINK_SetWarnOutHandler(...)
+T2C78 000:007.267 - 0.007ms
+T2C78 000:007.272 JLINK_OpenEx(...)
+T2C78 000:008.548 Firmware: J-Link V9 compiled May 7 2021 16:26:12
+T2C78 000:008.890 Firmware: J-Link V9 compiled May 7 2021 16:26:12
+T2C78 000:009.007 Decompressing FW timestamp took 98 us
+T2C78 000:016.872 Hardware: V9.40
+T2C78 000:016.890 S/N: 69404082
+T2C78 000:016.899 OEM: SEGGER
+T2C78 000:016.905 Feature(s): RDI, GDB, FlashDL, FlashBP, JFlash
+T2C78 000:017.804 TELNET listener socket opened on port 19021
+T2C78 000:017.864 WEBSRV Starting webserver
+T2C78 000:017.948 WEBSRV Webserver running on local port 19080
+T2C78 000:017.967 - 10.697ms returns "O.K."
+T2C78 000:017.977 JLINK_GetEmuCaps()
+T2C78 000:017.981 - 0.006ms returns 0xB9FF7BBF
+T2C78 000:017.988 JLINK_TIF_GetAvailable(...)
+T2C78 000:018.113 - 0.134ms
+T2C78 000:018.139 JLINK_SetErrorOutHandler(...)
+T2C78 000:018.147 - 0.010ms
+T2C78 000:018.158 JLINK_ExecCommand("ProjectFile = "F:\Desktop\Work\00_Projects\04_Signal_Generator\00_Code\00_New\signal_generator\MDK-ARM\JLinkSettings.ini"", ...).
+T2C78 000:024.144 Ref file found at: E:\Softwares\Keil_v5\ARM\Segger\JLinkDevices.ref
+T2C78 000:024.268 XML referenced by ref file: C:\Program Files (x86)\SEGGER\JLink_V700\JLinkDevices.xml
+T2C78 000:024.674 C:\Program Files (x86)\SEGGER\JLink_V700\JLinkDevices.xml evaluated successfully.
+T2C78 000:068.921 - 50.770ms returns 0x00
+T2C78 000:068.963 JLINK_ExecCommand("Device = STM32F407VGTx", ...).
+T2C78 000:069.299 Device "STM32F407VG" selected.
+T2C78 000:069.549 - 0.583ms returns 0x00
+T2C78 000:069.561 JLINK_GetHardwareVersion()
+T2C78 000:069.565 - 0.006ms returns 94000
+T2C78 000:069.571 JLINK_GetDLLVersion()
+T2C78 000:069.575 - 0.005ms returns 70000
+T2C78 000:069.580 JLINK_GetOEMString(...)
+T2C78 000:069.584 JLINK_GetFirmwareString(...)
+T2C78 000:069.588 - 0.005ms
+T2C78 000:069.602 JLINK_GetDLLVersion()
+T2C78 000:069.606 - 0.005ms returns 70000
+T2C78 000:069.610 JLINK_GetCompileDateTime()
+T2C78 000:069.614 - 0.005ms
+T2C78 000:069.621 JLINK_GetFirmwareString(...)
+T2C78 000:069.625 - 0.005ms
+T2C78 000:069.631 JLINK_GetHardwareVersion()
+T2C78 000:069.635 - 0.005ms returns 94000
+T2C78 000:069.642 JLINK_GetSN()
+T2C78 000:069.646 - 0.005ms returns 69404082
+T2C78 000:069.652 JLINK_GetOEMString(...)
+T2C78 000:069.660 JLINK_TIF_Select(JLINKARM_TIF_SWD)
+T2C78 000:071.321 - 1.669ms returns 0x00
+T2C78 000:071.334 JLINK_HasError()
+T2C78 000:071.343 JLINK_SetSpeed(10000)
+T2C78 000:071.482 - 0.141ms
+T2C78 000:071.488 JLINK_GetId()
+T2C78 000:071.662 InitTarget() start
+T2C78 000:071.675 J-Link Script File: Executing InitTarget()
+T2C78 000:077.552 InitTarget() end
+T2C78 000:078.053 Found SW-DP with ID 0x2BA01477
+T2C78 000:080.216 DPIDR: 0x2BA01477
+T2C78 000:080.225 Scanning AP map to find all available APs
+T2C78 000:080.698 AP[1]: Stopped AP scan as end of AP map has been reached
+T2C78 000:080.708 AP[0]: AHB-AP (IDR: 0x24770011)
+T2C78 000:080.715 Iterating through AP map to find AHB-AP to use
+T2C78 000:081.647 AP[0]: Core found
+T2C78 000:081.655 AP[0]: AHB-AP ROM base: 0xE00FF000
+T2C78 000:082.064 CPUID register: 0x410FC241. Implementer code: 0x41 (ARM)
+T2C78 000:082.072 Found Cortex-M4 r0p1, Little endian.
+T2C78 000:182.829 -- Max. mem block: 0x00010E60
+T2C78 000:183.123 CPU_ReadMem(4 bytes @ 0xE000EDF0)
+T2C78 000:183.739 CPU_ReadMem(4 bytes @ 0xE0002000)
+T2C78 000:184.341 FPUnit: 6 code (BP) slots and 2 literal slots
+T2C78 000:184.393 CPU_ReadMem(4 bytes @ 0xE000EDFC)
+T2C78 000:184.828 CPU_WriteMem(4 bytes @ 0xE000EDFC)
+T2C78 000:185.217 CPU_ReadMem(4 bytes @ 0xE0001000)
+T2C78 000:185.613 CPU_WriteMem(4 bytes @ 0xE0001000)
+T2C78 000:186.000 CPU_ReadMem(4 bytes @ 0xE000ED88)
+T2C78 000:186.418 CPU_WriteMem(4 bytes @ 0xE000ED88)
+T2C78 000:186.791 CPU_ReadMem(4 bytes @ 0xE000ED88)
+T2C78 000:187.488 CPU_WriteMem(4 bytes @ 0xE000ED88)
+T2C78 000:188.039 CoreSight components:
+T2C78 000:188.135 ROMTbl[0] @ E00FF000
+T2C78 000:188.174 CPU_ReadMem(64 bytes @ 0xE00FF000)
+T2C78 000:188.902 CPU_ReadMem(32 bytes @ 0xE000EFE0)
+T2C78 000:189.471 ROMTbl[0][0]: E000E000, CID: B105E00D, PID: 000BB00C SCS-M7
+T2C78 000:189.507 CPU_ReadMem(32 bytes @ 0xE0001FE0)
+T2C78 000:190.022 ROMTbl[0][1]: E0001000, CID: B105E00D, PID: 003BB002 DWT
+T2C78 000:190.056 CPU_ReadMem(32 bytes @ 0xE0002FE0)
+T2C78 000:190.575 ROMTbl[0][2]: E0002000, CID: B105E00D, PID: 002BB003 FPB
+T2C78 000:190.608 CPU_ReadMem(32 bytes @ 0xE0000FE0)
+T2C78 000:191.106 ROMTbl[0][3]: E0000000, CID: B105E00D, PID: 003BB001 ITM
+T2C78 000:191.139 CPU_ReadMem(32 bytes @ 0xE0040FE0)
+T2C78 000:191.649 ROMTbl[0][4]: E0040000, CID: B105900D, PID: 000BB9A1 TPIU
+T2C78 000:191.683 CPU_ReadMem(32 bytes @ 0xE0041FE0)
+T2C78 000:192.215 ROMTbl[0][5]: E0041000, CID: B105900D, PID: 000BB925 ETM
+T2C78 000:192.565 - 121.091ms returns 0x2BA01477
+T2C78 000:192.614 JLINK_GetDLLVersion()
+T2C78 000:192.635 - 0.030ms returns 70000
+T2C78 000:192.803 JLINK_CORE_GetFound()
+T2C78 000:192.826 - 0.033ms returns 0xE0000FF
+T2C78 000:192.852 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX)
+T2C78 000:192.874 Value=0xE00FF000
+T2C78 000:192.902 - 0.061ms returns 0
+T2C78 000:192.945 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX)
+T2C78 000:192.966 Value=0xE00FF000
+T2C78 000:192.994 - 0.059ms returns 0
+T2C78 000:193.017 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX)
+T2C78 000:193.037 Value=0xE0041000
+T2C78 000:193.066 - 0.058ms returns 0
+T2C78 000:193.091 JLINK_ReadMemEx(0xE0041FD0, 0x20 Bytes, Flags = 0x02000004)
+T2C78 000:193.149 CPU_ReadMem(32 bytes @ 0xE0041FD0)
+T2C78 000:193.793 Data: 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
+T2C78 000:193.828 - 0.746ms returns 32 (0x20)
+T2C78 000:193.855 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX)
+T2C78 000:193.876 Value=0x00000000
+T2C78 000:193.905 - 0.059ms returns 0
+T2C78 000:193.928 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX)
+T2C78 000:193.948 Value=0xE0040000
+T2C78 000:193.976 - 0.057ms returns 0
+T2C78 000:193.999 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX)
+T2C78 000:194.019 Value=0xE0000000
+T2C78 000:194.047 - 0.057ms returns 0
+T2C78 000:194.070 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX)
+T2C78 000:194.091 Value=0xE0001000
+T2C78 000:194.118 - 0.058ms returns 0
+T2C78 000:194.142 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX)
+T2C78 000:194.163 Value=0xE0002000
+T2C78 000:194.191 - 0.059ms returns 0
+T2C78 000:194.214 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX)
+T2C78 000:194.235 Value=0xE000E000
+T2C78 000:194.263 - 0.058ms returns 0
+T2C78 000:194.286 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX)
+T2C78 000:194.306 Value=0xE000EDF0
+T2C78 000:194.333 - 0.057ms returns 0
+T2C78 000:194.357 JLINK_GetDebugInfo(0x01 = Unknown)
+T2C78 000:194.377 Value=0x00000001
+T2C78 000:194.405 - 0.058ms returns 0
+T2C78 000:194.428 JLINK_ReadMemU32(0xE000ED00, 0x1 Items)
+T2C78 000:194.457 CPU_ReadMem(4 bytes @ 0xE000ED00)
+T2C78 000:194.804 Data: 41 C2 0F 41
+T2C78 000:194.839 Debug reg: CPUID
+T2C78 000:194.867 - 0.448ms returns 1 (0x1)
+T2C78 000:194.894 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX)
+T2C78 000:194.914 Value=0x00000000
+T2C78 000:194.942 - 0.058ms returns 0
+T2C78 000:194.967 JLINK_HasError()
+T2C78 000:194.991 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)
+T2C78 000:195.011 - 0.030ms returns JLINKARM_CM3_RESET_TYPE_NORMAL
+T2C78 000:195.035 JLINK_Reset()
+T2C78 000:195.074 CPU is running
+T2C78 000:195.105 CPU_WriteMem(4 bytes @ 0xE000EDF0)
+T2C78 000:195.508 CPU is running
+T2C78 000:195.542 CPU_WriteMem(4 bytes @ 0xE000EDFC)
+T2C78 000:195.923 Reset: Halt core after reset via DEMCR.VC_CORERESET.
+T2C78 000:196.525 Reset: Reset device via AIRCR.SYSRESETREQ.
+T2C78 000:196.559 CPU is running
+T2C78 000:196.590 CPU_WriteMem(4 bytes @ 0xE000ED0C)
+T2C78 000:249.250 CPU_ReadMem(4 bytes @ 0xE000EDF0)
+T2C78 000:249.743 CPU_ReadMem(4 bytes @ 0xE000EDF0)
+T2C78 000:250.189 CPU is running
+T2C78 000:250.224 CPU_WriteMem(4 bytes @ 0xE000EDF0)
+T2C78 000:250.648 CPU is running
+T2C78 000:250.682 CPU_WriteMem(4 bytes @ 0xE000EDFC)
+T2C78 000:256.134 CPU_ReadMem(4 bytes @ 0xE000EDF0)
+T2C78 000:259.219 CPU_WriteMem(4 bytes @ 0xE0002000)
+T2C78 000:259.652 CPU_ReadMem(4 bytes @ 0xE000EDFC)
+T2C78 000:260.023 CPU_ReadMem(4 bytes @ 0xE0001000)
+T2C78 000:260.426 - 65.404ms
+T2C78 000:260.473 JLINK_HasError()
+T2C78 000:260.631 JLINK_ReadReg(R15 (PC))
+T2C78 000:260.671 - 0.050ms returns 0x08000260
+T2C78 000:260.697 JLINK_ReadReg(XPSR)
+T2C78 000:260.718 - 0.031ms returns 0x01000000
+T2C78 000:260.744 JLINK_Halt()
+T2C78 000:260.764 - 0.029ms returns 0x00
+T2C78 000:260.788 JLINK_ReadMemU32(0xE000EDF0, 0x1 Items)
+T2C78 000:260.817 CPU_ReadMem(4 bytes @ 0xE000EDF0)
+T2C78 000:261.153 Data: 03 00 03 00
+T2C78 000:261.187 Debug reg: DHCSR
+T2C78 000:261.216 - 0.438ms returns 1 (0x1)
+T2C78 000:261.243 JLINK_WriteU32_64(0xE000EDF0, 0xA05F0003)
+T2C78 000:261.264 Debug reg: DHCSR
+T2C78 000:262.015 CPU_WriteMem(4 bytes @ 0xE000EDF0)
+T2C78 000:262.414 - 1.187ms returns 0 (0x00000000)
+T2C78 000:262.448 JLINK_WriteU32_64(0xE000EDFC, 0x01000000)
+T2C78 000:262.470 Debug reg: DEMCR
+T2C78 000:262.507 CPU_WriteMem(4 bytes @ 0xE000EDFC)
+T2C78 000:262.896 - 0.461ms returns 0 (0x00000000)
+T2C78 000:262.991 JLINK_GetHWStatus(...)
+T2C78 000:263.216 - 0.238ms returns 0
+T2C78 000:263.283 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)
+T2C78 000:263.305 - 0.031ms returns 0x06
+T2C78 000:263.329 JLINK_GetNumBPUnits(Type = 0xF0)
+T2C78 000:263.349 - 0.030ms returns 0x2000
+T2C78 000:263.373 JLINK_GetNumWPUnits()
+T2C78 000:263.392 - 0.029ms returns 4
+T2C78 000:263.440 JLINK_GetSpeed()
+T2C78 000:263.461 - 0.030ms returns 6000
+T2C78 000:263.499 JLINK_ReadMemU32(0xE000E004, 0x1 Items)
+T2C78 000:263.526 CPU_ReadMem(4 bytes @ 0xE000E004)
+T2C78 000:263.881 Data: 02 00 00 00
+T2C78 000:263.920 - 0.431ms returns 1 (0x1)
+T2C78 000:263.949 JLINK_ReadMemU32(0xE000E004, 0x1 Items)
+T2C78 000:263.975 CPU_ReadMem(4 bytes @ 0xE000E004)
+T2C78 000:264.315 Data: 02 00 00 00
+T2C78 000:264.348 - 0.410ms returns 1 (0x1)
+T2C78 000:264.376 JLINK_WriteMemEx(0xE0001000, 0x0000001C Bytes, Flags = 0x02000004)
+T2C78 000:264.399 Data: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ...
+T2C78 000:264.438 CPU_WriteMem(28 bytes @ 0xE0001000)
+T2C78 000:264.937 - 0.577ms returns 0x1C
+T2C78 000:264.972 JLINK_HasError()
+T2C78 000:264.997 JLINK_ReadReg(R15 (PC))
+T2C78 000:265.021 - 0.033ms returns 0x08000260
+T2C78 000:265.045 JLINK_ReadReg(XPSR)
+T2C78 000:265.066 - 0.031ms returns 0x01000000
+T2C78 000:270.386 JLINK_ReadMemEx(0xE0001004, 0x4 Bytes, Flags = 0x02000000)
+T2C78 000:270.412 Data: 00 00 00 00
+T2C78 000:270.426 Debug reg: DWT_CYCCNT
+T2C78 000:270.438 - 0.056ms returns 4 (0x4)
+T2C78 000:534.743 JLINK_HasError()
+T2C78 000:534.776 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)
+T2C78 000:534.784 - 0.012ms returns JLINKARM_CM3_RESET_TYPE_NORMAL
+T2C78 000:534.793 JLINK_Reset()
+T2C78 000:534.812 CPU_WriteMem(4 bytes @ 0xE000EDF0)
+T2C78 000:535.197 CPU_WriteMem(4 bytes @ 0xE000EDFC)
+T2C78 000:535.581 Reset: Halt core after reset via DEMCR.VC_CORERESET.
+T2C78 000:536.010 Reset: Reset device via AIRCR.SYSRESETREQ.
+T2C78 000:536.022 CPU_WriteMem(4 bytes @ 0xE000ED0C)
+T2C78 000:588.821 CPU_ReadMem(4 bytes @ 0xE000EDF0)
+T2C78 000:589.191 CPU_ReadMem(4 bytes @ 0xE000EDF0)
+T2C78 000:589.907 CPU_WriteMem(4 bytes @ 0xE000EDF0)
+T2C78 000:590.293 CPU_WriteMem(4 bytes @ 0xE000EDFC)
+T2C78 000:596.286 CPU_ReadMem(4 bytes @ 0xE000EDF0)
+T2C78 000:599.348 CPU_WriteMem(4 bytes @ 0xE0002000)
+T2C78 000:599.739 CPU_ReadMem(4 bytes @ 0xE000EDFC)
+T2C78 000:600.091 CPU_ReadMem(4 bytes @ 0xE0001000)
+T2C78 000:600.445 - 65.666ms
+T2C78 000:600.703 JLINK_HasError()
+T2C78 000:600.732 JLINK_ReadReg(R15 (PC))
+T2C78 000:600.759 - 0.036ms returns 0x08000260
+T2C78 000:600.784 JLINK_ReadReg(XPSR)
+T2C78 000:600.805 - 0.031ms returns 0x01000000
+T2C78 000:602.160 JLINK_ReadMemEx(0x08000188, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:602.212 CPU_ReadMem(128 bytes @ 0x08000180)
+T2C78 000:603.357 -- Updating C cache (128 bytes @ 0x08000180)
+T2C78 000:603.400 -- Read from C cache (60 bytes @ 0x08000188)
+T2C78 000:603.434 Data: DF F8 10 D0 00 F0 FC FB 00 48 00 47 0D 9A 02 08 ...
+T2C78 000:603.463 - 1.314ms returns 60 (0x3C)
+T2C78 000:603.495 JLINK_ReadMemEx(0x08000188, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:603.523 -- Read from C cache (2 bytes @ 0x08000188)
+T2C78 000:603.552 Data: DF F8
+T2C78 000:603.582 - 0.097ms returns 2 (0x2)
+T2C78 000:603.766 JLINK_ReadMemEx(0x0800018A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:603.790 -- Read from C cache (2 bytes @ 0x0800018A)
+T2C78 000:603.819 Data: 10 D0
+T2C78 000:603.847 - 0.091ms returns 2 (0x2)
+T2C78 000:603.902 JLINK_ReadMemEx(0x0800018C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:603.925 -- Read from C cache (60 bytes @ 0x0800018C)
+T2C78 000:603.956 Data: 00 F0 FC FB 00 48 00 47 0D 9A 02 08 AF F3 00 80 ...
+T2C78 000:603.985 - 0.092ms returns 60 (0x3C)
+T2C78 000:604.009 JLINK_ReadMemEx(0x0800018C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:604.031 -- Read from C cache (2 bytes @ 0x0800018C)
+T2C78 000:604.059 Data: 00 F0
+T2C78 000:604.088 - 0.089ms returns 2 (0x2)
+T2C78 000:604.111 JLINK_ReadMemEx(0x0800018E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:604.133 -- Read from C cache (2 bytes @ 0x0800018E)
+T2C78 000:604.162 Data: FC FB
+T2C78 000:604.190 - 0.089ms returns 2 (0x2)
+T2C78 000:604.229 JLINK_ReadMemEx(0x08000190, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:604.251 -- Read from C cache (60 bytes @ 0x08000190)
+T2C78 000:604.282 Data: 00 48 00 47 0D 9A 02 08 AF F3 00 80 A8 75 01 20 ...
+T2C78 000:604.349 - 0.131ms returns 60 (0x3C)
+T2C78 000:604.380 JLINK_ReadMemEx(0x08000190, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:604.407 -- Read from C cache (2 bytes @ 0x08000190)
+T2C78 000:604.440 Data: 00 48
+T2C78 000:604.470 - 0.100ms returns 2 (0x2)
+T2C78 000:604.497 JLINK_ReadMemEx(0x08000192, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:604.520 -- Read from C cache (2 bytes @ 0x08000192)
+T2C78 000:604.549 Data: 00 47
+T2C78 000:604.578 - 0.091ms returns 2 (0x2)
+T2C78 000:604.606 JLINK_ReadMemEx(0x08000192, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:604.627 -- Read from C cache (2 bytes @ 0x08000192)
+T2C78 000:604.657 Data: 00 47
+T2C78 000:604.685 - 0.089ms returns 2 (0x2)
+T2C78 000:604.709 JLINK_ReadMemEx(0x08000194, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:604.732 -- Read from C cache (60 bytes @ 0x08000194)
+T2C78 000:604.762 Data: 0D 9A 02 08 AF F3 00 80 A8 75 01 20 2C 4B 19 68 ...
+T2C78 000:604.791 - 0.091ms returns 60 (0x3C)
+T2C78 000:604.814 JLINK_ReadMemEx(0x08000194, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:604.836 -- Read from C cache (2 bytes @ 0x08000194)
+T2C78 000:604.866 Data: 0D 9A
+T2C78 000:604.894 - 0.089ms returns 2 (0x2)
+T2C78 000:604.919 JLINK_ReadMemEx(0x08000198, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:604.977 -- Read from C cache (60 bytes @ 0x08000198)
+T2C78 000:605.019 Data: AF F3 00 80 A8 75 01 20 2C 4B 19 68 08 68 B0 E8 ...
+T2C78 000:605.048 - 0.140ms returns 60 (0x3C)
+T2C78 000:605.077 JLINK_ReadMemEx(0x08000198, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:605.100 -- Read from C cache (2 bytes @ 0x08000198)
+T2C78 000:605.130 Data: AF F3
+T2C78 000:605.159 - 0.092ms returns 2 (0x2)
+T2C78 000:605.184 JLINK_ReadMemEx(0x0800019A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:605.206 -- Read from C cache (2 bytes @ 0x0800019A)
+T2C78 000:605.236 Data: 00 80
+T2C78 000:605.265 - 0.090ms returns 2 (0x2)
+T2C78 000:605.293 JLINK_ReadMemEx(0x080001A0, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:605.316 -- Read from C cache (60 bytes @ 0x080001A0)
+T2C78 000:605.686 Data: 2C 4B 19 68 08 68 B0 E8 F0 4F 80 F3 09 88 BF F3 ...
+T2C78 000:605.727 - 0.446ms returns 60 (0x3C)
+T2C78 000:605.767 JLINK_ReadMemEx(0x080001A0, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:605.800 -- Read from C cache (2 bytes @ 0x080001A0)
+T2C78 000:605.839 Data: 2C 4B
+T2C78 000:605.876 - 0.122ms returns 2 (0x2)
+T2C78 000:605.909 JLINK_ReadMemEx(0x080001A2, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:605.932 -- Read from C cache (2 bytes @ 0x080001A2)
+T2C78 000:605.962 Data: 19 68
+T2C78 000:605.991 - 0.091ms returns 2 (0x2)
+T2C78 000:606.018 JLINK_ReadMemEx(0x080001A2, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:606.040 -- Read from C cache (2 bytes @ 0x080001A2)
+T2C78 000:606.069 Data: 19 68
+T2C78 000:606.098 - 0.089ms returns 2 (0x2)
+T2C78 000:606.122 JLINK_ReadMemEx(0x080001A4, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:606.144 -- Read from C cache (60 bytes @ 0x080001A4)
+T2C78 000:606.174 Data: 08 68 B0 E8 F0 4F 80 F3 09 88 BF F3 6F 8F 4F F0 ...
+T2C78 000:606.203 - 0.091ms returns 60 (0x3C)
+T2C78 000:606.227 JLINK_ReadMemEx(0x080001A4, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:606.248 -- Read from C cache (2 bytes @ 0x080001A4)
+T2C78 000:606.282 Data: 08 68
+T2C78 000:606.321 - 0.104ms returns 2 (0x2)
+T2C78 000:606.346 JLINK_ReadMemEx(0x080001A4, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:606.368 -- Read from C cache (60 bytes @ 0x080001A4)
+T2C78 000:606.398 Data: 08 68 B0 E8 F0 4F 80 F3 09 88 BF F3 6F 8F 4F F0 ...
+T2C78 000:606.427 - 0.090ms returns 60 (0x3C)
+T2C78 000:606.450 JLINK_ReadMemEx(0x080001A4, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:606.471 -- Read from C cache (2 bytes @ 0x080001A4)
+T2C78 000:606.500 Data: 08 68
+T2C78 000:606.528 - 0.088ms returns 2 (0x2)
+T2C78 000:606.552 JLINK_ReadMemEx(0x080001A6, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:606.574 -- Read from C cache (2 bytes @ 0x080001A6)
+T2C78 000:606.602 Data: B0 E8
+T2C78 000:606.631 - 0.089ms returns 2 (0x2)
+T2C78 000:606.654 JLINK_ReadMemEx(0x080001A6, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:606.673 -- Read from C cache (2 bytes @ 0x080001A6)
+T2C78 000:606.699 Data: B0 E8
+T2C78 000:606.728 - 0.085ms returns 2 (0x2)
+T2C78 000:606.754 JLINK_ReadMemEx(0x080001A8, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:606.777 -- Read from C cache (60 bytes @ 0x080001A8)
+T2C78 000:606.812 Data: F0 4F 80 F3 09 88 BF F3 6F 8F 4F F0 00 00 80 F3 ...
+T2C78 000:606.845 - 0.102ms returns 60 (0x3C)
+T2C78 000:606.871 JLINK_ReadMemEx(0x080001A8, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:606.897 -- Read from C cache (2 bytes @ 0x080001A8)
+T2C78 000:606.931 Data: F0 4F
+T2C78 000:606.963 - 0.100ms returns 2 (0x2)
+T2C78 000:606.986 JLINK_ReadMemEx(0x080001AA, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:607.006 -- Read from C cache (2 bytes @ 0x080001AA)
+T2C78 000:607.032 Data: 80 F3
+T2C78 000:607.056 - 0.078ms returns 2 (0x2)
+T2C78 000:607.075 JLINK_ReadMemEx(0x080001AC, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:607.093 -- Read from C cache (60 bytes @ 0x080001AC)
+T2C78 000:607.118 Data: 09 88 BF F3 6F 8F 4F F0 00 00 80 F3 11 88 70 47 ...
+T2C78 000:607.141 - 0.074ms returns 60 (0x3C)
+T2C78 000:607.161 JLINK_ReadMemEx(0x080001AC, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:607.178 -- Read from C cache (2 bytes @ 0x080001AC)
+T2C78 000:607.201 Data: 09 88
+T2C78 000:607.225 - 0.072ms returns 2 (0x2)
+T2C78 000:607.245 JLINK_ReadMemEx(0x080001AE, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:607.262 -- Read from C cache (2 bytes @ 0x080001AE)
+T2C78 000:607.286 Data: BF F3
+T2C78 000:607.309 - 0.073ms returns 2 (0x2)
+T2C78 000:607.329 JLINK_ReadMemEx(0x080001B0, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:607.346 -- Read from C cache (60 bytes @ 0x080001B0)
+T2C78 000:607.371 Data: 6F 8F 4F F0 00 00 80 F3 11 88 70 47 00 00 00 00 ...
+T2C78 000:607.394 - 0.073ms returns 60 (0x3C)
+T2C78 000:607.413 JLINK_ReadMemEx(0x080001B0, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:607.430 -- Read from C cache (2 bytes @ 0x080001B0)
+T2C78 000:607.460 Data: 6F 8F
+T2C78 000:607.484 - 0.078ms returns 2 (0x2)
+T2C78 000:607.504 JLINK_ReadMemEx(0x080001B2, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:607.521 -- Read from C cache (2 bytes @ 0x080001B2)
+T2C78 000:607.544 Data: 4F F0
+T2C78 000:607.567 - 0.071ms returns 2 (0x2)
+T2C78 000:607.587 JLINK_ReadMemEx(0x080001B4, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:607.604 -- Read from C cache (60 bytes @ 0x080001B4)
+T2C78 000:607.628 Data: 00 00 80 F3 11 88 70 47 00 00 00 00 08 48 00 68 ...
+T2C78 000:607.650 - 0.070ms returns 60 (0x3C)
+T2C78 000:607.667 JLINK_ReadMemEx(0x080001B4, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:607.683 -- Read from C cache (2 bytes @ 0x080001B4)
+T2C78 000:607.704 Data: 00 00
+T2C78 000:607.726 - 0.066ms returns 2 (0x2)
+T2C78 000:607.744 JLINK_ReadMemEx(0x080001B6, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:607.760 -- Read from C cache (2 bytes @ 0x080001B6)
+T2C78 000:607.781 Data: 80 F3
+T2C78 000:607.803 - 0.066ms returns 2 (0x2)
+T2C78 000:607.821 JLINK_ReadMemEx(0x080001B8, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:607.837 -- Read from C cache (60 bytes @ 0x080001B8)
+T2C78 000:607.860 Data: 11 88 70 47 00 00 00 00 08 48 00 68 00 68 80 F3 ...
+T2C78 000:607.882 - 0.068ms returns 60 (0x3C)
+T2C78 000:607.899 JLINK_ReadMemEx(0x080001B8, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:607.915 -- Read from C cache (2 bytes @ 0x080001B8)
+T2C78 000:607.936 Data: 11 88
+T2C78 000:607.958 - 0.065ms returns 2 (0x2)
+T2C78 000:607.975 JLINK_ReadMemEx(0x080001BA, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:607.989 -- Read from C cache (2 bytes @ 0x080001BA)
+T2C78 000:608.009 Data: 70 47
+T2C78 000:608.029 - 0.061ms returns 2 (0x2)
+T2C78 000:608.045 JLINK_ReadMemEx(0x080001BC, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:608.060 -- Read from C cache (60 bytes @ 0x080001BC)
+T2C78 000:608.081 Data: 00 00 00 00 08 48 00 68 00 68 80 F3 08 88 4F F0 ...
+T2C78 000:608.101 - 0.062ms returns 60 (0x3C)
+T2C78 000:608.117 JLINK_ReadMemEx(0x080001BC, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:608.132 -- Read from C cache (2 bytes @ 0x080001BC)
+T2C78 000:608.152 Data: 00 00
+T2C78 000:608.172 - 0.061ms returns 2 (0x2)
+T2C78 000:608.189 JLINK_ReadMemEx(0x080001C0, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:608.204 -- Read from C cache (60 bytes @ 0x080001C0)
+T2C78 000:608.225 Data: 08 48 00 68 00 68 80 F3 08 88 4F F0 00 00 80 F3 ...
+T2C78 000:608.244 - 0.062ms returns 60 (0x3C)
+T2C78 000:608.260 JLINK_ReadMemEx(0x080001C0, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:608.275 -- Read from C cache (2 bytes @ 0x080001C0)
+T2C78 000:608.295 Data: 08 48
+T2C78 000:608.315 - 0.061ms returns 2 (0x2)
+T2C78 000:608.331 JLINK_ReadMemEx(0x080001C2, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:608.346 -- Read from C cache (2 bytes @ 0x080001C2)
+T2C78 000:608.365 Data: 00 68
+T2C78 000:608.385 - 0.060ms returns 2 (0x2)
+T2C78 000:608.402 JLINK_ReadMemEx(0x080001C2, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:608.416 -- Read from C cache (2 bytes @ 0x080001C2)
+T2C78 000:608.436 Data: 00 68
+T2C78 000:608.456 - 0.061ms returns 2 (0x2)
+T2C78 000:608.472 JLINK_ReadMemEx(0x080001C4, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:608.488 -- Read from C cache (60 bytes @ 0x080001C4)
+T2C78 000:608.509 Data: 00 68 80 F3 08 88 4F F0 00 00 80 F3 14 88 62 B6 ...
+T2C78 000:608.528 - 0.063ms returns 60 (0x3C)
+T2C78 000:608.544 JLINK_ReadMemEx(0x080001C4, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:608.557 -- Read from C cache (2 bytes @ 0x080001C4)
+T2C78 000:608.574 Data: 00 68
+T2C78 000:608.591 - 0.052ms returns 2 (0x2)
+T2C78 000:608.605 JLINK_ReadMemEx(0x080001C4, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:608.618 -- Read from C cache (60 bytes @ 0x080001C4)
+T2C78 000:608.636 Data: 00 68 80 F3 08 88 4F F0 00 00 80 F3 14 88 62 B6 ...
+T2C78 000:608.653 - 0.054ms returns 60 (0x3C)
+T2C78 000:608.667 JLINK_ReadMemEx(0x080001C4, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:608.680 -- Read from C cache (2 bytes @ 0x080001C4)
+T2C78 000:608.700 Data: 00 68
+T2C78 000:608.717 - 0.055ms returns 2 (0x2)
+T2C78 000:608.731 JLINK_ReadMemEx(0x080001C6, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:608.744 -- Read from C cache (2 bytes @ 0x080001C6)
+T2C78 000:608.761 Data: 80 F3
+T2C78 000:608.778 - 0.052ms returns 2 (0x2)
+T2C78 000:608.793 JLINK_ReadMemEx(0x080001C6, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:608.805 -- Read from C cache (2 bytes @ 0x080001C6)
+T2C78 000:608.823 Data: 80 F3
+T2C78 000:608.839 - 0.054ms returns 2 (0x2)
+T2C78 000:608.854 JLINK_ReadMemEx(0x080001C8, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:608.872 CPU_ReadMem(64 bytes @ 0x08000200)
+T2C78 000:609.623 -- Updating C cache (64 bytes @ 0x08000200)
+T2C78 000:609.650 -- Read from C cache (60 bytes @ 0x080001C8)
+T2C78 000:609.668 Data: 08 88 4F F0 00 00 80 F3 14 88 62 B6 61 B6 BF F3 ...
+T2C78 000:609.684 - 0.835ms returns 60 (0x3C)
+T2C78 000:609.700 JLINK_ReadMemEx(0x080001C8, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:609.713 -- Read from C cache (2 bytes @ 0x080001C8)
+T2C78 000:609.729 Data: 08 88
+T2C78 000:609.746 - 0.051ms returns 2 (0x2)
+T2C78 000:609.761 JLINK_ReadMemEx(0x080001CA, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:609.773 -- Read from C cache (2 bytes @ 0x080001CA)
+T2C78 000:609.789 Data: 4F F0
+T2C78 000:609.806 - 0.050ms returns 2 (0x2)
+T2C78 000:609.819 JLINK_ReadMemEx(0x080001CC, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:609.831 -- Read from C cache (60 bytes @ 0x080001CC)
+T2C78 000:609.848 Data: 00 00 80 F3 14 88 62 B6 61 B6 BF F3 4F 8F BF F3 ...
+T2C78 000:609.864 - 0.050ms returns 60 (0x3C)
+T2C78 000:609.878 JLINK_ReadMemEx(0x080001CC, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:609.890 -- Read from C cache (2 bytes @ 0x080001CC)
+T2C78 000:609.906 Data: 00 00
+T2C78 000:609.922 - 0.050ms returns 2 (0x2)
+T2C78 000:609.936 JLINK_ReadMemEx(0x080001CE, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:609.948 -- Read from C cache (2 bytes @ 0x080001CE)
+T2C78 000:609.964 Data: 80 F3
+T2C78 000:609.980 - 0.050ms returns 2 (0x2)
+T2C78 000:609.993 JLINK_ReadMemEx(0x080001D0, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:610.006 -- Read from C cache (60 bytes @ 0x080001D0)
+T2C78 000:610.022 Data: 14 88 62 B6 61 B6 BF F3 4F 8F BF F3 6F 8F 00 DF ...
+T2C78 000:610.038 - 0.050ms returns 60 (0x3C)
+T2C78 000:610.052 JLINK_ReadMemEx(0x080001D0, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:610.064 -- Read from C cache (2 bytes @ 0x080001D0)
+T2C78 000:610.080 Data: 14 88
+T2C78 000:610.096 - 0.049ms returns 2 (0x2)
+T2C78 000:610.109 JLINK_ReadMemEx(0x080001D2, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:610.121 -- Read from C cache (2 bytes @ 0x080001D2)
+T2C78 000:610.137 Data: 62 B6
+T2C78 000:610.153 - 0.049ms returns 2 (0x2)
+T2C78 000:610.167 JLINK_ReadMemEx(0x080001D4, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:610.179 -- Read from C cache (60 bytes @ 0x080001D4)
+T2C78 000:610.196 Data: 61 B6 BF F3 4F 8F BF F3 6F 8F 00 DF 00 BF 00 BF ...
+T2C78 000:610.212 - 0.050ms returns 60 (0x3C)
+T2C78 000:610.225 JLINK_ReadMemEx(0x080001D4, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:610.237 -- Read from C cache (2 bytes @ 0x080001D4)
+T2C78 000:610.253 Data: 61 B6
+T2C78 000:610.269 - 0.049ms returns 2 (0x2)
+T2C78 000:610.283 JLINK_ReadMemEx(0x080001D4, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:610.295 -- Read from C cache (60 bytes @ 0x080001D4)
+T2C78 000:610.312 Data: 61 B6 BF F3 4F 8F BF F3 6F 8F 00 DF 00 BF 00 BF ...
+T2C78 000:610.328 - 0.050ms returns 60 (0x3C)
+T2C78 000:610.341 JLINK_ReadMemEx(0x080001D4, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:610.353 -- Read from C cache (2 bytes @ 0x080001D4)
+T2C78 000:610.368 Data: 61 B6
+T2C78 000:610.385 - 0.049ms returns 2 (0x2)
+T2C78 000:610.397 JLINK_ReadMemEx(0x080001D6, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:610.407 -- Read from C cache (2 bytes @ 0x080001D6)
+T2C78 000:610.422 Data: BF F3
+T2C78 000:610.436 - 0.044ms returns 2 (0x2)
+T2C78 000:610.448 JLINK_ReadMemEx(0x080001D6, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:610.461 -- Read from C cache (2 bytes @ 0x080001D6)
+T2C78 000:610.476 Data: BF F3
+T2C78 000:610.491 - 0.047ms returns 2 (0x2)
+T2C78 000:610.502 JLINK_ReadMemEx(0x080001D8, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:610.513 -- Read from C cache (60 bytes @ 0x080001D8)
+T2C78 000:610.529 Data: 4F 8F BF F3 6F 8F 00 DF 00 BF 00 BF 08 ED 00 E0 ...
+T2C78 000:610.543 - 0.045ms returns 60 (0x3C)
+T2C78 000:610.554 JLINK_ReadMemEx(0x080001D8, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:610.565 -- Read from C cache (2 bytes @ 0x080001D8)
+T2C78 000:610.579 Data: 4F 8F
+T2C78 000:610.593 - 0.043ms returns 2 (0x2)
+T2C78 000:610.605 JLINK_ReadMemEx(0x080001DA, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:610.616 -- Read from C cache (2 bytes @ 0x080001DA)
+T2C78 000:610.630 Data: BF F3
+T2C78 000:610.645 - 0.044ms returns 2 (0x2)
+T2C78 000:610.657 JLINK_ReadMemEx(0x080001DC, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:610.667 -- Read from C cache (60 bytes @ 0x080001DC)
+T2C78 000:610.683 Data: 6F 8F 00 DF 00 BF 00 BF 08 ED 00 E0 DF F8 0C 00 ...
+T2C78 000:610.698 - 0.045ms returns 60 (0x3C)
+T2C78 000:610.709 JLINK_ReadMemEx(0x080001DC, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:610.719 -- Read from C cache (2 bytes @ 0x080001DC)
+T2C78 000:610.732 Data: 6F 8F
+T2C78 000:610.745 - 0.041ms returns 2 (0x2)
+T2C78 000:610.757 JLINK_ReadMemEx(0x080001DE, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:610.767 -- Read from C cache (2 bytes @ 0x080001DE)
+T2C78 000:610.780 Data: 00 DF
+T2C78 000:610.794 - 0.042ms returns 2 (0x2)
+T2C78 000:610.805 JLINK_ReadMemEx(0x080001E0, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:610.815 -- Read from C cache (60 bytes @ 0x080001E0)
+T2C78 000:610.830 Data: 00 BF 00 BF 08 ED 00 E0 DF F8 0C 00 01 68 41 F4 ...
+T2C78 000:610.843 - 0.042ms returns 60 (0x3C)
+T2C78 000:610.854 JLINK_ReadMemEx(0x080001E0, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:610.864 -- Read from C cache (2 bytes @ 0x080001E0)
+T2C78 000:610.877 Data: 00 BF
+T2C78 000:610.891 - 0.041ms returns 2 (0x2)
+T2C78 000:610.903 JLINK_ReadMemEx(0x080001E0, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:610.913 -- Read from C cache (60 bytes @ 0x080001E0)
+T2C78 000:610.927 Data: 00 BF 00 BF 08 ED 00 E0 DF F8 0C 00 01 68 41 F4 ...
+T2C78 000:610.940 - 0.042ms returns 60 (0x3C)
+T2C78 000:610.952 JLINK_ReadMemEx(0x080001E0, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:610.962 -- Read from C cache (2 bytes @ 0x080001E0)
+T2C78 000:610.975 Data: 00 BF
+T2C78 000:610.989 - 0.041ms returns 2 (0x2)
+T2C78 000:611.001 JLINK_ReadMemEx(0x080001E2, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:611.010 -- Read from C cache (2 bytes @ 0x080001E2)
+T2C78 000:611.022 Data: 00 BF
+T2C78 000:611.034 - 0.037ms returns 2 (0x2)
+T2C78 000:611.044 JLINK_ReadMemEx(0x080001E2, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:611.054 -- Read from C cache (2 bytes @ 0x080001E2)
+T2C78 000:611.066 Data: 00 BF
+T2C78 000:611.078 - 0.037ms returns 2 (0x2)
+T2C78 000:611.088 JLINK_ReadMemEx(0x080001E4, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:611.097 -- Read from C cache (60 bytes @ 0x080001E4)
+T2C78 000:611.110 Data: 08 ED 00 E0 DF F8 0C 00 01 68 41 F4 70 01 01 60 ...
+T2C78 000:611.122 - 0.038ms returns 60 (0x3C)
+T2C78 000:611.132 JLINK_ReadMemEx(0x080001E4, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:611.141 -- Read from C cache (2 bytes @ 0x080001E4)
+T2C78 000:611.153 Data: 08 ED
+T2C78 000:611.166 - 0.038ms returns 2 (0x2)
+T2C78 000:611.176 JLINK_ReadMemEx(0x080001E8, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:611.185 -- Read from C cache (60 bytes @ 0x080001E8)
+T2C78 000:611.198 Data: DF F8 0C 00 01 68 41 F4 70 01 01 60 70 47 00 BF ...
+T2C78 000:611.211 - 0.038ms returns 60 (0x3C)
+T2C78 000:611.221 JLINK_ReadMemEx(0x080001E8, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:611.230 -- Read from C cache (2 bytes @ 0x080001E8)
+T2C78 000:611.242 Data: DF F8
+T2C78 000:611.254 - 0.037ms returns 2 (0x2)
+T2C78 000:611.264 JLINK_ReadMemEx(0x080001EA, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:611.308 -- Read from C cache (2 bytes @ 0x080001EA)
+T2C78 000:611.321 Data: 0C 00
+T2C78 000:611.334 - 0.073ms returns 2 (0x2)
+T2C78 000:611.344 JLINK_ReadMemEx(0x080001EC, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:611.353 -- Read from C cache (60 bytes @ 0x080001EC)
+T2C78 000:611.366 Data: 01 68 41 F4 70 01 01 60 70 47 00 BF 88 ED 00 E0 ...
+T2C78 000:611.378 - 0.038ms returns 60 (0x3C)
+T2C78 000:611.388 JLINK_ReadMemEx(0x080001EC, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:611.398 -- Read from C cache (2 bytes @ 0x080001EC)
+T2C78 000:611.410 Data: 01 68
+T2C78 000:611.422 - 0.037ms returns 2 (0x2)
+T2C78 000:611.432 JLINK_ReadMemEx(0x080001EE, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:611.441 -- Read from C cache (2 bytes @ 0x080001EE)
+T2C78 000:611.453 Data: 41 F4
+T2C78 000:611.465 - 0.037ms returns 2 (0x2)
+T2C78 000:611.475 JLINK_ReadMemEx(0x080001EE, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:611.484 -- Read from C cache (2 bytes @ 0x080001EE)
+T2C78 000:611.497 Data: 41 F4
+T2C78 000:611.509 - 0.037ms returns 2 (0x2)
+T2C78 000:611.519 JLINK_ReadMemEx(0x080001F0, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:611.529 -- Read from C cache (60 bytes @ 0x080001F0)
+T2C78 000:611.540 Data: 70 01 01 60 70 47 00 BF 88 ED 00 E0 EF F3 09 80 ...
+T2C78 000:611.551 - 0.035ms returns 60 (0x3C)
+T2C78 000:611.560 JLINK_ReadMemEx(0x080001F0, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:611.568 -- Read from C cache (2 bytes @ 0x080001F0)
+T2C78 000:611.578 Data: 70 01
+T2C78 000:611.589 - 0.033ms returns 2 (0x2)
+T2C78 000:611.598 JLINK_ReadMemEx(0x080001F2, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:611.606 -- Read from C cache (2 bytes @ 0x080001F2)
+T2C78 000:611.617 Data: 01 60
+T2C78 000:611.627 - 0.033ms returns 2 (0x2)
+T2C78 000:611.636 JLINK_ReadMemEx(0x080001F4, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:611.644 -- Read from C cache (60 bytes @ 0x080001F4)
+T2C78 000:611.656 Data: 70 47 00 BF 88 ED 00 E0 EF F3 09 80 BF F3 6F 8F ...
+T2C78 000:611.667 - 0.034ms returns 60 (0x3C)
+T2C78 000:611.675 JLINK_ReadMemEx(0x080001F4, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:611.683 -- Read from C cache (2 bytes @ 0x080001F4)
+T2C78 000:611.694 Data: 70 47
+T2C78 000:611.705 - 0.032ms returns 2 (0x2)
+T2C78 000:611.714 JLINK_ReadMemEx(0x080001F4, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:611.721 -- Read from C cache (60 bytes @ 0x080001F4)
+T2C78 000:611.733 Data: 70 47 00 BF 88 ED 00 E0 EF F3 09 80 BF F3 6F 8F ...
+T2C78 000:611.743 - 0.033ms returns 60 (0x3C)
+T2C78 000:611.752 JLINK_ReadMemEx(0x080001F4, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:611.760 -- Read from C cache (2 bytes @ 0x080001F4)
+T2C78 000:611.771 Data: 70 47
+T2C78 000:611.781 - 0.033ms returns 2 (0x2)
+T2C78 000:611.790 JLINK_ReadMemEx(0x080001F6, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:611.798 -- Read from C cache (2 bytes @ 0x080001F6)
+T2C78 000:611.809 Data: 00 BF
+T2C78 000:611.819 - 0.032ms returns 2 (0x2)
+T2C78 000:611.828 JLINK_ReadMemEx(0x080001F6, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:611.836 -- Read from C cache (2 bytes @ 0x080001F6)
+T2C78 000:611.848 Data: 00 BF
+T2C78 000:611.858 - 0.033ms returns 2 (0x2)
+T2C78 000:611.867 JLINK_ReadMemEx(0x080001F8, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:611.874 -- Read from C cache (60 bytes @ 0x080001F8)
+T2C78 000:611.885 Data: 88 ED 00 E0 EF F3 09 80 BF F3 6F 8F 13 4B 1A 68 ...
+T2C78 000:611.896 - 0.032ms returns 60 (0x3C)
+T2C78 000:611.904 JLINK_ReadMemEx(0x080001F8, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:611.911 -- Read from C cache (2 bytes @ 0x080001F8)
+T2C78 000:611.922 Data: 88 ED
+T2C78 000:611.932 - 0.031ms returns 2 (0x2)
+T2C78 000:611.941 JLINK_ReadMemEx(0x080001FC, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:611.948 -- Read from C cache (60 bytes @ 0x080001FC)
+T2C78 000:611.959 Data: EF F3 09 80 BF F3 6F 8F 13 4B 1A 68 1E F0 10 0F ...
+T2C78 000:611.969 - 0.032ms returns 60 (0x3C)
+T2C78 000:611.978 JLINK_ReadMemEx(0x080001FC, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:611.986 -- Read from C cache (2 bytes @ 0x080001FC)
+T2C78 000:611.997 Data: EF F3
+T2C78 000:612.007 - 0.033ms returns 2 (0x2)
+T2C78 000:612.016 JLINK_ReadMemEx(0x080001FE, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:612.024 -- Read from C cache (2 bytes @ 0x080001FE)
+T2C78 000:612.034 Data: 09 80
+T2C78 000:612.044 - 0.031ms returns 2 (0x2)
+T2C78 000:612.053 JLINK_ReadMemEx(0x08000200, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:612.061 -- Read from C cache (60 bytes @ 0x08000200)
+T2C78 000:612.071 Data: BF F3 6F 8F 13 4B 1A 68 1E F0 10 0F 08 BF 20 ED ...
+T2C78 000:612.081 - 0.032ms returns 60 (0x3C)
+T2C78 000:612.090 JLINK_ReadMemEx(0x08000200, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:612.097 -- Read from C cache (2 bytes @ 0x08000200)
+T2C78 000:612.108 Data: BF F3
+T2C78 000:612.118 - 0.031ms returns 2 (0x2)
+T2C78 000:612.127 JLINK_ReadMemEx(0x08000202, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:612.134 -- Read from C cache (2 bytes @ 0x08000202)
+T2C78 000:612.145 Data: 6F 8F
+T2C78 000:612.155 - 0.031ms returns 2 (0x2)
+T2C78 000:612.164 JLINK_ReadMemEx(0x08000204, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:612.171 -- Read from C cache (60 bytes @ 0x08000204)
+T2C78 000:612.182 Data: 13 4B 1A 68 1E F0 10 0F 08 BF 20 ED 10 8A 20 E9 ...
+T2C78 000:612.193 - 0.032ms returns 60 (0x3C)
+T2C78 000:612.201 JLINK_ReadMemEx(0x08000204, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:612.208 -- Read from C cache (2 bytes @ 0x08000204)
+T2C78 000:612.219 Data: 13 4B
+T2C78 000:612.229 - 0.031ms returns 2 (0x2)
+T2C78 000:612.237 JLINK_ReadMemEx(0x08000206, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:612.245 -- Read from C cache (2 bytes @ 0x08000206)
+T2C78 000:612.255 Data: 1A 68
+T2C78 000:612.265 - 0.031ms returns 2 (0x2)
+T2C78 000:612.274 JLINK_ReadMemEx(0x08000206, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:612.281 -- Read from C cache (2 bytes @ 0x08000206)
+T2C78 000:612.292 Data: 1A 68
+T2C78 000:612.302 - 0.031ms returns 2 (0x2)
+T2C78 000:612.311 JLINK_ReadMemEx(0x08000208, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:612.320 CPU_ReadMem(64 bytes @ 0x08000240)
+T2C78 000:613.006 -- Updating C cache (64 bytes @ 0x08000240)
+T2C78 000:613.044 -- Read from C cache (60 bytes @ 0x08000208)
+T2C78 000:613.054 Data: 1E F0 10 0F 08 BF 20 ED 10 8A 20 E9 F0 4F 10 60 ...
+T2C78 000:613.063 - 0.755ms returns 60 (0x3C)
+T2C78 000:613.072 JLINK_ReadMemEx(0x08000208, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:613.079 -- Read from C cache (2 bytes @ 0x08000208)
+T2C78 000:613.088 Data: 1E F0
+T2C78 000:613.097 - 0.028ms returns 2 (0x2)
+T2C78 000:613.107 JLINK_ReadMemEx(0x08000208, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:613.114 -- Read from C cache (60 bytes @ 0x08000208)
+T2C78 000:613.123 Data: 1E F0 10 0F 08 BF 20 ED 10 8A 20 E9 F0 4F 10 60 ...
+T2C78 000:613.132 - 0.028ms returns 60 (0x3C)
+T2C78 000:613.139 JLINK_ReadMemEx(0x08000208, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:613.146 -- Read from C cache (2 bytes @ 0x08000208)
+T2C78 000:613.155 Data: 1E F0
+T2C78 000:613.164 - 0.027ms returns 2 (0x2)
+T2C78 000:613.171 JLINK_ReadMemEx(0x0800020A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:613.178 -- Read from C cache (2 bytes @ 0x0800020A)
+T2C78 000:613.187 Data: 10 0F
+T2C78 000:613.196 - 0.027ms returns 2 (0x2)
+T2C78 000:613.203 JLINK_ReadMemEx(0x0800020C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:613.210 -- Read from C cache (60 bytes @ 0x0800020C)
+T2C78 000:613.220 Data: 08 BF 20 ED 10 8A 20 E9 F0 4F 10 60 09 B4 4F F0 ...
+T2C78 000:613.228 - 0.028ms returns 60 (0x3C)
+T2C78 000:613.236 JLINK_ReadMemEx(0x0800020C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:613.242 -- Read from C cache (2 bytes @ 0x0800020C)
+T2C78 000:613.251 Data: 08 BF
+T2C78 000:613.260 - 0.027ms returns 2 (0x2)
+T2C78 000:613.267 JLINK_ReadMemEx(0x0800020E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:613.274 -- Read from C cache (2 bytes @ 0x0800020E)
+T2C78 000:613.283 Data: 20 ED
+T2C78 000:613.292 - 0.027ms returns 2 (0x2)
+T2C78 000:613.302 JLINK_ReadMemEx(0x0800020E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:613.310 -- Read from C cache (2 bytes @ 0x0800020E)
+T2C78 000:613.319 Data: 20 ED
+T2C78 000:613.328 - 0.029ms returns 2 (0x2)
+T2C78 000:613.335 JLINK_ReadMemEx(0x08000210, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:613.342 -- Read from C cache (60 bytes @ 0x08000210)
+T2C78 000:613.352 Data: 10 8A 20 E9 F0 4F 10 60 09 B4 4F F0 50 00 80 F3 ...
+T2C78 000:613.360 - 0.028ms returns 60 (0x3C)
+T2C78 000:613.368 JLINK_ReadMemEx(0x08000210, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:613.374 -- Read from C cache (2 bytes @ 0x08000210)
+T2C78 000:613.383 Data: 10 8A
+T2C78 000:613.392 - 0.027ms returns 2 (0x2)
+T2C78 000:613.407 JLINK_ReadMemEx(0x08000212, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:613.414 -- Read from C cache (2 bytes @ 0x08000212)
+T2C78 000:613.423 Data: 20 E9
+T2C78 000:613.432 - 0.027ms returns 2 (0x2)
+T2C78 000:613.439 JLINK_ReadMemEx(0x08000214, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:613.446 -- Read from C cache (60 bytes @ 0x08000214)
+T2C78 000:613.456 Data: F0 4F 10 60 09 B4 4F F0 50 00 80 F3 11 88 BF F3 ...
+T2C78 000:613.464 - 0.028ms returns 60 (0x3C)
+T2C78 000:613.472 JLINK_ReadMemEx(0x08000214, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:613.478 -- Read from C cache (2 bytes @ 0x08000214)
+T2C78 000:613.487 Data: F0 4F
+T2C78 000:613.496 - 0.027ms returns 2 (0x2)
+T2C78 000:613.504 JLINK_ReadMemEx(0x08000216, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:613.510 -- Read from C cache (2 bytes @ 0x08000216)
+T2C78 000:613.519 Data: 10 60
+T2C78 000:613.528 - 0.027ms returns 2 (0x2)
+T2C78 000:613.535 JLINK_ReadMemEx(0x08000218, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:613.542 -- Read from C cache (60 bytes @ 0x08000218)
+T2C78 000:613.551 Data: 09 B4 4F F0 50 00 80 F3 11 88 BF F3 4F 8F BF F3 ...
+T2C78 000:613.560 - 0.027ms returns 60 (0x3C)
+T2C78 000:613.567 JLINK_ReadMemEx(0x08000218, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:613.574 -- Read from C cache (2 bytes @ 0x08000218)
+T2C78 000:613.583 Data: 09 B4
+T2C78 000:613.592 - 0.027ms returns 2 (0x2)
+T2C78 000:613.599 JLINK_ReadMemEx(0x08000218, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:613.606 -- Read from C cache (60 bytes @ 0x08000218)
+T2C78 000:613.615 Data: 09 B4 4F F0 50 00 80 F3 11 88 BF F3 4F 8F BF F3 ...
+T2C78 000:613.624 - 0.027ms returns 60 (0x3C)
+T2C78 000:613.631 JLINK_ReadMemEx(0x08000218, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:613.638 -- Read from C cache (2 bytes @ 0x08000218)
+T2C78 000:613.647 Data: 09 B4
+T2C78 000:613.656 - 0.027ms returns 2 (0x2)
+T2C78 000:613.663 JLINK_ReadMemEx(0x0800021A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:613.672 -- Read from C cache (2 bytes @ 0x0800021A)
+T2C78 000:613.681 Data: 4F F0
+T2C78 000:613.691 - 0.031ms returns 2 (0x2)
+T2C78 000:613.699 JLINK_ReadMemEx(0x0800021A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:613.706 -- Read from C cache (2 bytes @ 0x0800021A)
+T2C78 000:613.716 Data: 4F F0
+T2C78 000:613.725 - 0.029ms returns 2 (0x2)
+T2C78 000:613.733 JLINK_ReadMemEx(0x0800021C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:613.740 -- Read from C cache (60 bytes @ 0x0800021C)
+T2C78 000:613.750 Data: 50 00 80 F3 11 88 BF F3 4F 8F BF F3 6F 8F 31 F0 ...
+T2C78 000:613.760 - 0.030ms returns 60 (0x3C)
+T2C78 000:613.768 JLINK_ReadMemEx(0x0800021C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:613.775 -- Read from C cache (2 bytes @ 0x0800021C)
+T2C78 000:613.784 Data: 50 00
+T2C78 000:613.794 - 0.029ms returns 2 (0x2)
+T2C78 000:613.802 JLINK_ReadMemEx(0x0800021E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:613.809 -- Read from C cache (2 bytes @ 0x0800021E)
+T2C78 000:613.818 Data: 80 F3
+T2C78 000:613.828 - 0.029ms returns 2 (0x2)
+T2C78 000:613.836 JLINK_ReadMemEx(0x08000220, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:613.843 -- Read from C cache (60 bytes @ 0x08000220)
+T2C78 000:613.853 Data: 11 88 BF F3 4F 8F BF F3 6F 8F 31 F0 AF FE 4F F0 ...
+T2C78 000:613.862 - 0.029ms returns 60 (0x3C)
+T2C78 000:613.871 JLINK_ReadMemEx(0x08000220, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:613.879 -- Read from C cache (2 bytes @ 0x08000220)
+T2C78 000:613.888 Data: 11 88
+T2C78 000:613.898 - 0.030ms returns 2 (0x2)
+T2C78 000:613.906 JLINK_ReadMemEx(0x08000222, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:613.913 -- Read from C cache (2 bytes @ 0x08000222)
+T2C78 000:613.922 Data: BF F3
+T2C78 000:613.932 - 0.029ms returns 2 (0x2)
+T2C78 000:613.940 JLINK_ReadMemEx(0x08000224, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:613.947 -- Read from C cache (60 bytes @ 0x08000224)
+T2C78 000:613.958 Data: 4F 8F BF F3 6F 8F 31 F0 AF FE 4F F0 00 00 80 F3 ...
+T2C78 000:613.968 - 0.031ms returns 60 (0x3C)
+T2C78 000:613.976 JLINK_ReadMemEx(0x08000224, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:613.983 -- Read from C cache (2 bytes @ 0x08000224)
+T2C78 000:613.993 Data: 4F 8F
+T2C78 000:614.003 - 0.030ms returns 2 (0x2)
+T2C78 000:614.011 JLINK_ReadMemEx(0x08000226, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:614.019 -- Read from C cache (2 bytes @ 0x08000226)
+T2C78 000:614.028 Data: BF F3
+T2C78 000:614.038 - 0.030ms returns 2 (0x2)
+T2C78 000:614.047 JLINK_ReadMemEx(0x08000228, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:614.054 -- Read from C cache (60 bytes @ 0x08000228)
+T2C78 000:614.064 Data: 6F 8F 31 F0 AF FE 4F F0 00 00 80 F3 11 88 09 BC ...
+T2C78 000:614.074 - 0.031ms returns 60 (0x3C)
+T2C78 000:614.082 JLINK_ReadMemEx(0x08000228, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:614.090 -- Read from C cache (2 bytes @ 0x08000228)
+T2C78 000:614.099 Data: 6F 8F
+T2C78 000:614.109 - 0.030ms returns 2 (0x2)
+T2C78 000:614.118 JLINK_ReadMemEx(0x0800022A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:614.125 -- Read from C cache (2 bytes @ 0x0800022A)
+T2C78 000:614.135 Data: 31 F0
+T2C78 000:614.145 - 0.030ms returns 2 (0x2)
+T2C78 000:614.153 JLINK_ReadMemEx(0x0800022C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:614.161 -- Read from C cache (60 bytes @ 0x0800022C)
+T2C78 000:614.171 Data: AF FE 4F F0 00 00 80 F3 11 88 09 BC 19 68 08 68 ...
+T2C78 000:614.181 - 0.031ms returns 60 (0x3C)
+T2C78 000:614.189 JLINK_ReadMemEx(0x0800022C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:614.196 -- Read from C cache (2 bytes @ 0x0800022C)
+T2C78 000:614.206 Data: AF FE
+T2C78 000:614.216 - 0.030ms returns 2 (0x2)
+T2C78 000:614.224 JLINK_ReadMemEx(0x0800022E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:614.231 -- Read from C cache (2 bytes @ 0x0800022E)
+T2C78 000:614.241 Data: 4F F0
+T2C78 000:614.251 - 0.030ms returns 2 (0x2)
+T2C78 000:614.259 JLINK_ReadMemEx(0x08000230, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:614.267 -- Read from C cache (60 bytes @ 0x08000230)
+T2C78 000:614.277 Data: 00 00 80 F3 11 88 09 BC 19 68 08 68 B0 E8 F0 4F ...
+T2C78 000:614.287 - 0.031ms returns 60 (0x3C)
+T2C78 000:614.295 JLINK_ReadMemEx(0x08000230, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:614.302 -- Read from C cache (2 bytes @ 0x08000230)
+T2C78 000:614.312 Data: 00 00
+T2C78 000:614.322 - 0.030ms returns 2 (0x2)
+T2C78 000:614.330 JLINK_ReadMemEx(0x08000232, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:614.338 -- Read from C cache (2 bytes @ 0x08000232)
+T2C78 000:614.348 Data: 80 F3
+T2C78 000:614.358 - 0.030ms returns 2 (0x2)
+T2C78 000:614.366 JLINK_ReadMemEx(0x08000234, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:614.373 -- Read from C cache (60 bytes @ 0x08000234)
+T2C78 000:614.384 Data: 11 88 09 BC 19 68 08 68 B0 E8 F0 4F 1E F0 10 0F ...
+T2C78 000:614.393 - 0.031ms returns 60 (0x3C)
+T2C78 000:614.401 JLINK_ReadMemEx(0x08000234, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:614.409 -- Read from C cache (2 bytes @ 0x08000234)
+T2C78 000:614.419 Data: 11 88
+T2C78 000:614.428 - 0.030ms returns 2 (0x2)
+T2C78 000:614.437 JLINK_ReadMemEx(0x08000236, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:614.444 -- Read from C cache (2 bytes @ 0x08000236)
+T2C78 000:614.454 Data: 09 BC
+T2C78 000:614.464 - 0.030ms returns 2 (0x2)
+T2C78 000:614.472 JLINK_ReadMemEx(0x08000238, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:614.480 -- Read from C cache (60 bytes @ 0x08000238)
+T2C78 000:614.491 Data: 19 68 08 68 B0 E8 F0 4F 1E F0 10 0F 08 BF B0 EC ...
+T2C78 000:614.501 - 0.032ms returns 60 (0x3C)
+T2C78 000:614.509 JLINK_ReadMemEx(0x08000238, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:614.517 -- Read from C cache (2 bytes @ 0x08000238)
+T2C78 000:614.527 Data: 19 68
+T2C78 000:614.538 - 0.031ms returns 2 (0x2)
+T2C78 000:614.546 JLINK_ReadMemEx(0x08000238, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:614.554 -- Read from C cache (60 bytes @ 0x08000238)
+T2C78 000:614.565 Data: 19 68 08 68 B0 E8 F0 4F 1E F0 10 0F 08 BF B0 EC ...
+T2C78 000:614.575 - 0.032ms returns 60 (0x3C)
+T2C78 000:614.584 JLINK_ReadMemEx(0x08000238, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:614.591 -- Read from C cache (2 bytes @ 0x08000238)
+T2C78 000:614.601 Data: 19 68
+T2C78 000:614.612 - 0.031ms returns 2 (0x2)
+T2C78 000:614.620 JLINK_ReadMemEx(0x0800023A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:614.628 -- Read from C cache (2 bytes @ 0x0800023A)
+T2C78 000:614.638 Data: 08 68
+T2C78 000:614.649 - 0.032ms returns 2 (0x2)
+T2C78 000:614.657 JLINK_ReadMemEx(0x0800023A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:614.665 -- Read from C cache (2 bytes @ 0x0800023A)
+T2C78 000:614.675 Data: 08 68
+T2C78 000:614.685 - 0.031ms returns 2 (0x2)
+T2C78 000:614.694 JLINK_ReadMemEx(0x0800023C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:614.702 -- Read from C cache (60 bytes @ 0x0800023C)
+T2C78 000:614.713 Data: B0 E8 F0 4F 1E F0 10 0F 08 BF B0 EC 10 8A 80 F3 ...
+T2C78 000:614.723 - 0.032ms returns 60 (0x3C)
+T2C78 000:614.731 JLINK_ReadMemEx(0x0800023C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:614.739 -- Read from C cache (2 bytes @ 0x0800023C)
+T2C78 000:614.749 Data: B0 E8
+T2C78 000:614.759 - 0.031ms returns 2 (0x2)
+T2C78 000:614.768 JLINK_ReadMemEx(0x0800023C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:614.776 -- Read from C cache (60 bytes @ 0x0800023C)
+T2C78 000:614.787 Data: B0 E8 F0 4F 1E F0 10 0F 08 BF B0 EC 10 8A 80 F3 ...
+T2C78 000:614.797 - 0.032ms returns 60 (0x3C)
+T2C78 000:614.805 JLINK_ReadMemEx(0x0800023C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:614.813 -- Read from C cache (2 bytes @ 0x0800023C)
+T2C78 000:614.823 Data: B0 E8
+T2C78 000:614.834 - 0.032ms returns 2 (0x2)
+T2C78 000:614.843 JLINK_ReadMemEx(0x0800023E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:614.851 -- Read from C cache (2 bytes @ 0x0800023E)
+T2C78 000:614.862 Data: F0 4F
+T2C78 000:614.872 - 0.032ms returns 2 (0x2)
+T2C78 000:614.881 JLINK_ReadMemEx(0x08000240, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:614.889 -- Read from C cache (60 bytes @ 0x08000240)
+T2C78 000:614.900 Data: 1E F0 10 0F 08 BF B0 EC 10 8A 80 F3 09 88 BF F3 ...
+T2C78 000:614.911 - 0.033ms returns 60 (0x3C)
+T2C78 000:614.920 JLINK_ReadMemEx(0x08000240, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:614.928 -- Read from C cache (2 bytes @ 0x08000240)
+T2C78 000:614.939 Data: 1E F0
+T2C78 000:614.949 - 0.033ms returns 2 (0x2)
+T2C78 000:614.958 JLINK_ReadMemEx(0x08000242, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:614.966 -- Read from C cache (2 bytes @ 0x08000242)
+T2C78 000:614.977 Data: 10 0F
+T2C78 000:614.988 - 0.032ms returns 2 (0x2)
+T2C78 000:614.997 JLINK_ReadMemEx(0x08000244, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:615.005 -- Read from C cache (60 bytes @ 0x08000244)
+T2C78 000:615.016 Data: 08 BF B0 EC 10 8A 80 F3 09 88 BF F3 6F 8F 70 47 ...
+T2C78 000:615.027 - 0.033ms returns 60 (0x3C)
+T2C78 000:615.035 JLINK_ReadMemEx(0x08000244, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:615.043 -- Read from C cache (2 bytes @ 0x08000244)
+T2C78 000:615.054 Data: 08 BF
+T2C78 000:615.065 - 0.033ms returns 2 (0x2)
+T2C78 000:615.073 JLINK_ReadMemEx(0x08000246, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:615.081 -- Read from C cache (2 bytes @ 0x08000246)
+T2C78 000:615.092 Data: B0 EC
+T2C78 000:615.103 - 0.033ms returns 2 (0x2)
+T2C78 000:615.112 JLINK_ReadMemEx(0x08000246, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:615.121 -- Read from C cache (2 bytes @ 0x08000246)
+T2C78 000:615.132 Data: B0 EC
+T2C78 000:615.143 - 0.034ms returns 2 (0x2)
+T2C78 000:615.151 JLINK_ReadMemEx(0x08000248, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:615.162 CPU_ReadMem(64 bytes @ 0x08000280)
+T2C78 000:615.853 -- Updating C cache (64 bytes @ 0x08000280)
+T2C78 000:615.890 -- Read from C cache (60 bytes @ 0x08000248)
+T2C78 000:615.904 Data: 10 8A 80 F3 09 88 BF F3 6F 8F 70 47 B0 00 00 20 ...
+T2C78 000:615.916 - 0.769ms returns 60 (0x3C)
+T2C78 000:615.928 JLINK_ReadMemEx(0x08000248, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:615.937 -- Read from C cache (2 bytes @ 0x08000248)
+T2C78 000:615.950 Data: 10 8A
+T2C78 000:615.962 - 0.038ms returns 2 (0x2)
+T2C78 000:615.974 JLINK_ReadMemEx(0x0800024A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:615.983 -- Read from C cache (2 bytes @ 0x0800024A)
+T2C78 000:615.995 Data: 80 F3
+T2C78 000:616.007 - 0.037ms returns 2 (0x2)
+T2C78 000:616.017 JLINK_ReadMemEx(0x0800024C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:616.026 -- Read from C cache (60 bytes @ 0x0800024C)
+T2C78 000:616.038 Data: 09 88 BF F3 6F 8F 70 47 B0 00 00 20 EF F3 05 80 ...
+T2C78 000:616.050 - 0.037ms returns 60 (0x3C)
+T2C78 000:616.060 JLINK_ReadMemEx(0x0800024C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:616.069 -- Read from C cache (2 bytes @ 0x0800024C)
+T2C78 000:616.081 Data: 09 88
+T2C78 000:616.093 - 0.036ms returns 2 (0x2)
+T2C78 000:616.103 JLINK_ReadMemEx(0x0800024E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:616.111 -- Read from C cache (2 bytes @ 0x0800024E)
+T2C78 000:616.123 Data: BF F3
+T2C78 000:616.135 - 0.036ms returns 2 (0x2)
+T2C78 000:616.145 JLINK_ReadMemEx(0x08000250, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:616.154 -- Read from C cache (60 bytes @ 0x08000250)
+T2C78 000:616.166 Data: 6F 8F 70 47 B0 00 00 20 EF F3 05 80 70 47 00 00 ...
+T2C78 000:616.178 - 0.037ms returns 60 (0x3C)
+T2C78 000:616.188 JLINK_ReadMemEx(0x08000250, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:616.197 -- Read from C cache (2 bytes @ 0x08000250)
+T2C78 000:616.208 Data: 6F 8F
+T2C78 000:616.220 - 0.036ms returns 2 (0x2)
+T2C78 000:616.230 JLINK_ReadMemEx(0x08000252, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:616.239 -- Read from C cache (2 bytes @ 0x08000252)
+T2C78 000:616.250 Data: 70 47
+T2C78 000:616.262 - 0.036ms returns 2 (0x2)
+T2C78 000:616.272 JLINK_ReadMemEx(0x08000254, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:616.281 -- Read from C cache (60 bytes @ 0x08000254)
+T2C78 000:616.293 Data: B0 00 00 20 EF F3 05 80 70 47 00 00 06 48 80 47 ...
+T2C78 000:616.305 - 0.036ms returns 60 (0x3C)
+T2C78 000:616.314 JLINK_ReadMemEx(0x08000254, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:616.323 -- Read from C cache (2 bytes @ 0x08000254)
+T2C78 000:616.335 Data: B0 00
+T2C78 000:616.346 - 0.036ms returns 2 (0x2)
+T2C78 000:616.356 JLINK_ReadMemEx(0x08000258, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:616.365 -- Read from C cache (60 bytes @ 0x08000258)
+T2C78 000:616.377 Data: EF F3 05 80 70 47 00 00 06 48 80 47 06 48 00 47 ...
+T2C78 000:616.389 - 0.036ms returns 60 (0x3C)
+T2C78 000:616.399 JLINK_ReadMemEx(0x08000258, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:616.407 -- Read from C cache (2 bytes @ 0x08000258)
+T2C78 000:616.419 Data: EF F3
+T2C78 000:616.430 - 0.035ms returns 2 (0x2)
+T2C78 000:616.440 JLINK_ReadMemEx(0x0800025A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:616.449 -- Read from C cache (2 bytes @ 0x0800025A)
+T2C78 000:616.460 Data: 05 80
+T2C78 000:616.472 - 0.036ms returns 2 (0x2)
+T2C78 000:616.482 JLINK_ReadMemEx(0x0800025C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:616.491 -- Read from C cache (60 bytes @ 0x0800025C)
+T2C78 000:616.503 Data: 70 47 00 00 06 48 80 47 06 48 00 47 FE E7 FE E7 ...
+T2C78 000:616.514 - 0.036ms returns 60 (0x3C)
+T2C78 000:616.524 JLINK_ReadMemEx(0x0800025C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:616.532 -- Read from C cache (2 bytes @ 0x0800025C)
+T2C78 000:616.544 Data: 70 47
+T2C78 000:616.559 - 0.038ms returns 2 (0x2)
+T2C78 000:616.568 JLINK_ReadMemEx(0x0800025E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:616.577 -- Read from C cache (2 bytes @ 0x0800025E)
+T2C78 000:616.588 Data: 00 00
+T2C78 000:616.600 - 0.036ms returns 2 (0x2)
+T2C78 000:616.610 JLINK_ReadMemEx(0x0800025E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:616.619 -- Read from C cache (2 bytes @ 0x0800025E)
+T2C78 000:616.630 Data: 00 00
+T2C78 000:616.642 - 0.036ms returns 2 (0x2)
+T2C78 000:616.652 JLINK_ReadMemEx(0x08000260, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:616.660 -- Read from C cache (60 bytes @ 0x08000260)
+T2C78 000:616.673 Data: 06 48 80 47 06 48 00 47 FE E7 FE E7 FE E7 FE E7 ...
+T2C78 000:616.685 - 0.036ms returns 60 (0x3C)
+T2C78 000:616.693 JLINK_ReadMemEx(0x08000260, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:616.700 -- Read from C cache (2 bytes @ 0x08000260)
+T2C78 000:616.711 Data: 06 48
+T2C78 000:616.721 - 0.031ms returns 2 (0x2)
+T2C78 000:616.750 JLINK_ReadMemEx(0x08000260, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:616.758 -- Read from C cache (60 bytes @ 0x08000260)
+T2C78 000:616.769 Data: 06 48 80 47 06 48 00 47 FE E7 FE E7 FE E7 FE E7 ...
+T2C78 000:616.780 - 0.032ms returns 60 (0x3C)
+T2C78 000:616.788 JLINK_ReadMemEx(0x08000260, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:616.796 -- Read from C cache (2 bytes @ 0x08000260)
+T2C78 000:616.806 Data: 06 48
+T2C78 000:616.816 - 0.031ms returns 2 (0x2)
+T2C78 000:616.825 JLINK_ReadMemEx(0x08000262, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:616.832 -- Read from C cache (2 bytes @ 0x08000262)
+T2C78 000:616.842 Data: 80 47
+T2C78 000:616.853 - 0.031ms returns 2 (0x2)
+T2C78 000:616.865 JLINK_ReadMemEx(0x08000262, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:616.873 -- Read from C cache (2 bytes @ 0x08000262)
+T2C78 000:616.883 Data: 80 47
+T2C78 000:616.894 - 0.032ms returns 2 (0x2)
+T2C78 000:616.902 JLINK_ReadMemEx(0x08000264, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:616.910 -- Read from C cache (60 bytes @ 0x08000264)
+T2C78 000:616.921 Data: 06 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...
+T2C78 000:616.931 - 0.032ms returns 60 (0x3C)
+T2C78 000:616.939 JLINK_ReadMemEx(0x08000264, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:616.948 -- Read from C cache (2 bytes @ 0x08000264)
+T2C78 000:616.970 Data: 06 48
+T2C78 000:616.980 - 0.044ms returns 2 (0x2)
+T2C78 000:616.990 JLINK_ReadMemEx(0x08000264, 0x3C Bytes, Flags = 0x02000000)
+T2C78 000:616.997 -- Read from C cache (60 bytes @ 0x08000264)
+T2C78 000:617.007 Data: 06 48 00 47 FE E7 FE E7 FE E7 FE E7 FE E7 FE E7 ...
+T2C78 000:617.017 - 0.030ms returns 60 (0x3C)
+T2C78 000:617.025 JLINK_ReadMemEx(0x08000264, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:617.032 -- Read from C cache (2 bytes @ 0x08000264)
+T2C78 000:617.042 Data: 06 48
+T2C78 000:617.051 - 0.029ms returns 2 (0x2)
+T2C78 000:617.059 JLINK_ReadMemEx(0x08000266, 0x2 Bytes, Flags = 0x02000000)
+T2C78 000:617.066 -- Read from C cache (2 bytes @ 0x08000266)
+T2C78 000:617.076 Data: 00 47
+T2C78 000:617.085 - 0.029ms returns 2 (0x2)
+T2C78 001:436.726 JLINK_HasError()
+T2C78 001:436.753 JLINK_ReadReg(R0)
+T2C78 001:437.293 - 0.565ms returns 0x00000000
+T2C78 001:437.325 JLINK_ReadReg(R1)
+T2C78 001:437.358 - 0.035ms returns 0x00000000
+T2C78 001:437.363 JLINK_ReadReg(R2)
+T2C78 001:437.367 - 0.006ms returns 0x00000000
+T2C78 001:437.372 JLINK_ReadReg(R3)
+T2C78 001:437.376 - 0.006ms returns 0x00000000
+T2C78 001:437.381 JLINK_ReadReg(R4)
+T2C78 001:437.385 - 0.006ms returns 0x00000000
+T2C78 001:437.390 JLINK_ReadReg(R5)
+T2C78 001:437.394 - 0.006ms returns 0x00000000
+T2C78 001:437.399 JLINK_ReadReg(R6)
+T2C78 001:437.403 - 0.006ms returns 0x00000000
+T2C78 001:437.408 JLINK_ReadReg(R7)
+T2C78 001:437.412 - 0.006ms returns 0x00000000
+T2C78 001:437.416 JLINK_ReadReg(R8)
+T2C78 001:437.425 - 0.011ms returns 0x00000000
+T2C78 001:437.431 JLINK_ReadReg(R9)
+T2C78 001:437.435 - 0.006ms returns 0x00000000
+T2C78 001:437.439 JLINK_ReadReg(R10)
+T2C78 001:437.444 - 0.008ms returns 0x00000000
+T2C78 001:437.452 JLINK_ReadReg(R11)
+T2C78 001:437.456 - 0.007ms returns 0x00000000
+T2C78 001:437.462 JLINK_ReadReg(R12)
+T2C78 001:437.466 - 0.006ms returns 0x00000000
+T2C78 001:437.471 JLINK_ReadReg(R13 (SP))
+T2C78 001:437.476 - 0.006ms returns 0x200175A8
+T2C78 001:437.481 JLINK_ReadReg(R14)
+T2C78 001:437.485 - 0.006ms returns 0xFFFFFFFF
+T2C78 001:437.491 JLINK_ReadReg(R15 (PC))
+T2C78 001:437.495 - 0.006ms returns 0x08000260
+T2C78 001:437.500 JLINK_ReadReg(XPSR)
+T2C78 001:437.504 - 0.006ms returns 0x01000000
+T2C78 001:437.508 JLINK_ReadReg(MSP)
+T2C78 001:437.512 - 0.005ms returns 0x200175A8
+T2C78 001:437.517 JLINK_ReadReg(PSP)
+T2C78 001:437.521 - 0.006ms returns 0x00000000
+T2C78 001:437.526 JLINK_ReadReg(CFBP)
+T2C78 001:437.530 - 0.006ms returns 0x00000000
+T2C78 001:437.535 JLINK_ReadReg(FPSCR)
+T2C78 001:441.512 - 3.985ms returns 0x00000000
+T2C78 001:441.525 JLINK_ReadReg(FPS0)
+T2C78 001:441.531 - 0.007ms returns 0x00000000
+T2C78 001:441.536 JLINK_ReadReg(FPS1)
+T2C78 001:441.540 - 0.006ms returns 0x00000000
+T2C78 001:441.545 JLINK_ReadReg(FPS2)
+T2C78 001:441.549 - 0.005ms returns 0x00000000
+T2C78 001:441.553 JLINK_ReadReg(FPS3)
+T2C78 001:441.557 - 0.005ms returns 0x00000000
+T2C78 001:441.562 JLINK_ReadReg(FPS4)
+T2C78 001:441.565 - 0.005ms returns 0x00000000
+T2C78 001:441.570 JLINK_ReadReg(FPS5)
+T2C78 001:441.574 - 0.005ms returns 0x00000000
+T2C78 001:441.578 JLINK_ReadReg(FPS6)
+T2C78 001:441.582 - 0.005ms returns 0x00000000
+T2C78 001:441.587 JLINK_ReadReg(FPS7)
+T2C78 001:441.591 - 0.005ms returns 0x00000000
+T2C78 001:441.595 JLINK_ReadReg(FPS8)
+T2C78 001:441.599 - 0.005ms returns 0x00000000
+T2C78 001:441.603 JLINK_ReadReg(FPS9)
+T2C78 001:441.607 - 0.005ms returns 0x00000000
+T2C78 001:441.612 JLINK_ReadReg(FPS10)
+T2C78 001:441.616 - 0.005ms returns 0x00000000
+T2C78 001:441.620 JLINK_ReadReg(FPS11)
+T2C78 001:441.624 - 0.005ms returns 0x00000000
+T2C78 001:441.628 JLINK_ReadReg(FPS12)
+T2C78 001:441.632 - 0.005ms returns 0x00000000
+T2C78 001:441.637 JLINK_ReadReg(FPS13)
+T2C78 001:441.641 - 0.005ms returns 0x00000000
+T2C78 001:441.645 JLINK_ReadReg(FPS14)
+T2C78 001:441.649 - 0.005ms returns 0x00000000
+T2C78 001:441.654 JLINK_ReadReg(FPS15)
+T2C78 001:441.657 - 0.005ms returns 0x00000000
+T2C78 001:441.662 JLINK_ReadReg(FPS16)
+T2C78 001:441.666 - 0.005ms returns 0x00000000
+T2C78 001:441.670 JLINK_ReadReg(FPS17)
+T2C78 001:441.674 - 0.005ms returns 0x00000000
+T2C78 001:441.679 JLINK_ReadReg(FPS18)
+T2C78 001:441.682 - 0.005ms returns 0x00000000
+T2C78 001:441.687 JLINK_ReadReg(FPS19)
+T2C78 001:441.691 - 0.005ms returns 0x00000000
+T2C78 001:441.695 JLINK_ReadReg(FPS20)
+T2C78 001:441.699 - 0.005ms returns 0x00000000
+T2C78 001:441.704 JLINK_ReadReg(FPS21)
+T2C78 001:441.707 - 0.005ms returns 0x00000000
+T2C78 001:441.712 JLINK_ReadReg(FPS22)
+T2C78 001:441.716 - 0.005ms returns 0x00000000
+T2C78 001:441.720 JLINK_ReadReg(FPS23)
+T2C78 001:441.724 - 0.005ms returns 0x00000000
+T2C78 001:441.729 JLINK_ReadReg(FPS24)
+T2C78 001:441.732 - 0.005ms returns 0x00000000
+T2C78 001:441.737 JLINK_ReadReg(FPS25)
+T2C78 001:441.741 - 0.005ms returns 0x00000000
+T2C78 001:441.745 JLINK_ReadReg(FPS26)
+T2C78 001:441.749 - 0.005ms returns 0x00000000
+T2C78 001:441.754 JLINK_ReadReg(FPS27)
+T2C78 001:441.757 - 0.005ms returns 0x00000000
+T2C78 001:441.762 JLINK_ReadReg(FPS28)
+T2C78 001:441.766 - 0.005ms returns 0x00000000
+T2C78 001:441.770 JLINK_ReadReg(FPS29)
+T2C78 001:441.774 - 0.005ms returns 0x00000000
+T2C78 001:441.779 JLINK_ReadReg(FPS30)
+T2C78 001:441.782 - 0.005ms returns 0x00000000
+T2C78 001:441.787 JLINK_ReadReg(FPS31)
+T2C78 001:441.791 - 0.005ms returns 0x00000000
+T2C78 001:488.846 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 001:488.878 CPU_ReadMem(64 bytes @ 0x20000080)
+T2C78 001:489.604 -- Updating C cache (64 bytes @ 0x20000080)
+T2C78 001:489.640 -- Read from C cache (1 bytes @ 0x2000008A)
+T2C78 001:489.646 Data: 00
+T2C78 001:489.652 - 0.808ms returns 1 (0x1)
+T2C78 001:491.672 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 001:491.712 -- Read from C cache (1 bytes @ 0x2000008A)
+T2C78 001:491.720 Data: 00
+T2C78 001:491.725 - 0.055ms returns 1 (0x1)
+T2C78 001:491.743 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 001:491.748 -- Read from C cache (1 bytes @ 0x2000008A)
+T2C78 001:491.753 Data: 00
+T2C78 001:491.759 - 0.017ms returns 1 (0x1)
+T2C78 001:502.100 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 001:502.123 CPU_ReadMem(64 bytes @ 0x20000040)
+T2C78 001:502.827 -- Updating C cache (64 bytes @ 0x20000040)
+T2C78 001:502.839 -- Read from C cache (1 bytes @ 0x2000006C)
+T2C78 001:502.845 Data: 32
+T2C78 001:502.850 - 0.752ms returns 1 (0x1)
+T2C78 001:504.835 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 001:504.850 -- Read from C cache (1 bytes @ 0x2000006C)
+T2C78 001:504.856 Data: 32
+T2C78 001:504.863 - 0.030ms returns 1 (0x1)
+T2C78 001:504.885 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 001:504.890 -- Read from C cache (1 bytes @ 0x2000006C)
+T2C78 001:504.896 Data: 32
+T2C78 001:504.901 - 0.017ms returns 1 (0x1)
+T2C78 001:536.627 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:536.658 CPU_ReadMem(64 bytes @ 0x20000100)
+T2C78 001:537.760 -- Updating C cache (64 bytes @ 0x20000100)
+T2C78 001:537.784 -- Read from C cache (4 bytes @ 0x2000011C)
+T2C78 001:537.799 Data: 78 00 00 00
+T2C78 001:537.805 - 1.180ms returns 4 (0x4)
+T2C78 001:539.969 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:539.984 -- Read from C cache (4 bytes @ 0x2000011C)
+T2C78 001:539.990 Data: 78 00 00 00
+T2C78 001:539.996 - 0.028ms returns 4 (0x4)
+T2C78 001:540.014 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:540.019 -- Read from C cache (4 bytes @ 0x2000011C)
+T2C78 001:540.025 Data: 78 00 00 00
+T2C78 001:540.030 - 0.018ms returns 4 (0x4)
+T2C78 001:551.914 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:551.942 -- Read from C cache (4 bytes @ 0x20000120)
+T2C78 001:551.950 Data: 00 00 00 00
+T2C78 001:551.957 - 0.045ms returns 4 (0x4)
+T2C78 001:554.020 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:554.032 -- Read from C cache (4 bytes @ 0x20000120)
+T2C78 001:554.038 Data: 00 00 00 00
+T2C78 001:554.044 - 0.026ms returns 4 (0x4)
+T2C78 001:554.065 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:554.070 -- Read from C cache (4 bytes @ 0x20000120)
+T2C78 001:554.076 Data: 00 00 00 00
+T2C78 001:554.081 - 0.018ms returns 4 (0x4)
+T2C78 001:565.821 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:565.845 -- Read from C cache (4 bytes @ 0x20000124)
+T2C78 001:565.853 Data: 87 00 00 00
+T2C78 001:565.860 - 0.041ms returns 4 (0x4)
+T2C78 001:567.920 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:567.928 -- Read from C cache (4 bytes @ 0x20000124)
+T2C78 001:567.934 Data: 87 00 00 00
+T2C78 001:567.939 - 0.021ms returns 4 (0x4)
+T2C78 001:567.955 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:567.960 -- Read from C cache (4 bytes @ 0x20000124)
+T2C78 001:567.966 Data: 87 00 00 00
+T2C78 001:567.971 - 0.018ms returns 4 (0x4)
+T2C78 001:580.049 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:580.066 -- Read from C cache (4 bytes @ 0x20000128)
+T2C78 001:580.073 Data: 3F 01 00 00
+T2C78 001:580.080 - 0.032ms returns 4 (0x4)
+T2C78 001:582.317 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:582.325 -- Read from C cache (4 bytes @ 0x20000128)
+T2C78 001:582.331 Data: 3F 01 00 00
+T2C78 001:582.337 - 0.022ms returns 4 (0x4)
+T2C78 001:582.359 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:582.364 -- Read from C cache (4 bytes @ 0x20000128)
+T2C78 001:582.369 Data: 3F 01 00 00
+T2C78 001:582.375 - 0.018ms returns 4 (0x4)
+T2C78 001:594.186 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:594.205 -- Read from C cache (4 bytes @ 0x2000012C)
+T2C78 001:594.213 Data: 00 14 00 00
+T2C78 001:594.219 - 0.035ms returns 4 (0x4)
+T2C78 001:596.260 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:596.269 -- Read from C cache (4 bytes @ 0x2000012C)
+T2C78 001:596.275 Data: 00 14 00 00
+T2C78 001:596.281 - 0.023ms returns 4 (0x4)
+T2C78 001:596.297 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:596.302 -- Read from C cache (4 bytes @ 0x2000012C)
+T2C78 001:596.307 Data: 00 14 00 00
+T2C78 001:596.313 - 0.018ms returns 4 (0x4)
+T2C78 001:636.513 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:636.541 CPU_ReadMem(64 bytes @ 0x200002C0)
+T2C78 001:637.229 -- Updating C cache (64 bytes @ 0x200002C0)
+T2C78 001:637.257 -- Read from C cache (4 bytes @ 0x200002EC)
+T2C78 001:637.268 Data: 00 00 00 00
+T2C78 001:637.274 - 0.763ms returns 4 (0x4)
+T2C78 001:639.605 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:639.616 -- Read from C cache (4 bytes @ 0x200002EC)
+T2C78 001:639.621 Data: 00 00 00 00
+T2C78 001:639.627 - 0.024ms returns 4 (0x4)
+T2C78 001:639.643 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:639.648 -- Read from C cache (4 bytes @ 0x200002EC)
+T2C78 001:639.654 Data: 00 00 00 00
+T2C78 001:639.660 - 0.018ms returns 4 (0x4)
+T19A8 001:697.730 JLINK_ReadMemEx(0x08000260, 0x2 Bytes, Flags = 0x02000000)
+T19A8 001:697.755 -- Read from C cache (2 bytes @ 0x08000260)
+T19A8 001:697.761 Data: 06 48
+T19A8 001:697.767 - 0.039ms returns 2 (0x2)
+T19A8 001:697.773 JLINK_HasError()
+T19A8 001:697.779 JLINK_SetBPEx(Addr = 0x08029A0C, Type = 0xFFFFFFF2)
+T19A8 001:697.788 - 0.011ms returns 0x00000001
+T19A8 001:697.793 JLINK_HasError()
+T19A8 001:697.797 JLINK_HasError()
+T19A8 001:697.802 JLINK_Go()
+T19A8 001:697.825 CPU_WriteMem(4 bytes @ 0xE0002000)
+T19A8 001:698.208 CPU_ReadMem(4 bytes @ 0xE0001000)
+T19A8 001:698.522 CPU_WriteMem(4 bytes @ 0xE0002008)
+T19A8 001:698.536 CPU_WriteMem(4 bytes @ 0xE000200C)
+T19A8 001:698.542 CPU_WriteMem(4 bytes @ 0xE0002010)
+T19A8 001:698.550 CPU_WriteMem(4 bytes @ 0xE0002014)
+T19A8 001:698.556 CPU_WriteMem(4 bytes @ 0xE0002018)
+T19A8 001:698.561 CPU_WriteMem(4 bytes @ 0xE000201C)
+T19A8 001:699.888 CPU_WriteMem(4 bytes @ 0xE0001004)
+T19A8 001:700.599 - 2.805ms
+T19A8 001:801.505 JLINK_HasError()
+T19A8 001:801.525 JLINK_IsHalted()
+T19A8 001:804.148 - 2.631ms returns TRUE
+T19A8 001:804.166 JLINK_HasError()
+T19A8 001:804.171 JLINK_Halt()
+T19A8 001:804.175 - 0.006ms returns 0x00
+T19A8 001:804.180 JLINK_IsHalted()
+T19A8 001:804.184 - 0.005ms returns TRUE
+T19A8 001:804.188 JLINK_IsHalted()
+T19A8 001:804.192 - 0.005ms returns TRUE
+T19A8 001:804.196 JLINK_IsHalted()
+T19A8 001:804.200 - 0.005ms returns TRUE
+T19A8 001:804.205 JLINK_HasError()
+T19A8 001:804.210 JLINK_ReadReg(R15 (PC))
+T19A8 001:804.216 - 0.007ms returns 0x08029A0C
+T19A8 001:804.220 JLINK_ReadReg(XPSR)
+T19A8 001:804.225 - 0.006ms returns 0x61000000
+T19A8 001:804.231 JLINK_HasError()
+T19A8 001:804.236 JLINK_ClrBPEx(BPHandle = 0x00000001)
+T19A8 001:804.240 - 0.006ms returns 0x00
+T19A8 001:804.245 JLINK_HasError()
+T19A8 001:804.249 JLINK_HasError()
+T19A8 001:804.254 JLINK_ReadMemU32(0xE000ED30, 0x1 Items)
+T19A8 001:804.262 CPU_ReadMem(4 bytes @ 0xE000ED30)
+T19A8 001:804.639 Data: 02 00 00 00
+T19A8 001:804.674 - 0.422ms returns 1 (0x1)
+T19A8 001:804.680 JLINK_ReadMemU32(0xE0001028, 0x1 Items)
+T19A8 001:804.685 CPU_ReadMem(4 bytes @ 0xE0001028)
+T19A8 001:804.976 Data: 00 00 00 00
+T19A8 001:804.991 Debug reg: DWT_FUNC[0]
+T19A8 001:804.998 - 0.322ms returns 1 (0x1)
+T19A8 001:805.008 JLINK_ReadMemU32(0xE0001038, 0x1 Items)
+T19A8 001:805.017 CPU_ReadMem(4 bytes @ 0xE0001038)
+T19A8 001:805.330 Data: 00 02 00 00
+T19A8 001:805.341 Debug reg: DWT_FUNC[1]
+T19A8 001:805.346 - 0.340ms returns 1 (0x1)
+T19A8 001:805.380 JLINK_ReadMemU32(0xE0001048, 0x1 Items)
+T19A8 001:805.389 CPU_ReadMem(4 bytes @ 0xE0001048)
+T19A8 001:805.640 Data: 00 00 00 00
+T19A8 001:805.646 Debug reg: DWT_FUNC[2]
+T19A8 001:805.652 - 0.274ms returns 1 (0x1)
+T19A8 001:805.657 JLINK_ReadMemU32(0xE0001058, 0x1 Items)
+T19A8 001:805.663 CPU_ReadMem(4 bytes @ 0xE0001058)
+T19A8 001:805.905 Data: 00 00 00 00
+T19A8 001:805.912 Debug reg: DWT_FUNC[3]
+T19A8 001:805.917 - 0.262ms returns 1 (0x1)
+T19A8 001:805.980 JLINK_HasError()
+T19A8 001:805.985 JLINK_ReadReg(R0)
+T19A8 001:805.990 - 0.007ms returns 0x08029A0D
+T19A8 001:805.995 JLINK_ReadReg(R1)
+T19A8 001:805.999 - 0.006ms returns 0x200175A8
+T19A8 001:806.004 JLINK_ReadReg(R2)
+T19A8 001:806.007 - 0.005ms returns 0x00000000
+T19A8 001:806.012 JLINK_ReadReg(R3)
+T19A8 001:806.016 - 0.006ms returns 0x08005911
+T19A8 001:806.021 JLINK_ReadReg(R4)
+T19A8 001:806.025 - 0.005ms returns 0x08059050
+T19A8 001:806.029 JLINK_ReadReg(R5)
+T19A8 001:806.033 - 0.006ms returns 0x08059050
+T19A8 001:806.038 JLINK_ReadReg(R6)
+T19A8 001:806.042 - 0.005ms returns 0x00000000
+T19A8 001:806.046 JLINK_ReadReg(R7)
+T19A8 001:806.050 - 0.005ms returns 0x00000000
+T19A8 001:806.055 JLINK_ReadReg(R8)
+T19A8 001:806.058 - 0.006ms returns 0x00000000
+T19A8 001:806.063 JLINK_ReadReg(R9)
+T19A8 001:806.067 - 0.005ms returns 0x00000000
+T19A8 001:806.071 JLINK_ReadReg(R10)
+T19A8 001:806.076 - 0.006ms returns 0x00000000
+T19A8 001:806.080 JLINK_ReadReg(R11)
+T19A8 001:806.084 - 0.006ms returns 0x00000000
+T19A8 001:806.090 JLINK_ReadReg(R12)
+T19A8 001:806.094 - 0.005ms returns 0x00000000
+T19A8 001:806.098 JLINK_ReadReg(R13 (SP))
+T19A8 001:806.103 - 0.006ms returns 0x200175A8
+T19A8 001:806.107 JLINK_ReadReg(R14)
+T19A8 001:806.111 - 0.006ms returns 0x080009A5
+T19A8 001:806.116 JLINK_ReadReg(R15 (PC))
+T19A8 001:806.120 - 0.006ms returns 0x08029A0C
+T19A8 001:806.125 JLINK_ReadReg(XPSR)
+T19A8 001:806.129 - 0.006ms returns 0x61000000
+T19A8 001:806.133 JLINK_ReadReg(MSP)
+T19A8 001:806.137 - 0.006ms returns 0x200175A8
+T19A8 001:806.142 JLINK_ReadReg(PSP)
+T19A8 001:806.146 - 0.005ms returns 0x00000000
+T19A8 001:806.150 JLINK_ReadReg(CFBP)
+T19A8 001:806.155 - 0.006ms returns 0x00000000
+T19A8 001:806.159 JLINK_ReadReg(FPSCR)
+T19A8 001:810.114 - 3.970ms returns 0x00000000
+T19A8 001:810.134 JLINK_ReadReg(FPS0)
+T19A8 001:810.140 - 0.008ms returns 0x00000000
+T19A8 001:810.144 JLINK_ReadReg(FPS1)
+T19A8 001:810.149 - 0.006ms returns 0x00000000
+T19A8 001:810.153 JLINK_ReadReg(FPS2)
+T19A8 001:810.157 - 0.006ms returns 0x00000000
+T19A8 001:810.162 JLINK_ReadReg(FPS3)
+T19A8 001:810.166 - 0.006ms returns 0x00000000
+T19A8 001:810.170 JLINK_ReadReg(FPS4)
+T19A8 001:810.174 - 0.005ms returns 0x00000000
+T19A8 001:810.179 JLINK_ReadReg(FPS5)
+T19A8 001:810.183 - 0.005ms returns 0x00000000
+T19A8 001:810.187 JLINK_ReadReg(FPS6)
+T19A8 001:810.191 - 0.006ms returns 0x00000000
+T19A8 001:810.196 JLINK_ReadReg(FPS7)
+T19A8 001:810.200 - 0.005ms returns 0x00000000
+T19A8 001:810.205 JLINK_ReadReg(FPS8)
+T19A8 001:810.208 - 0.005ms returns 0x00000000
+T19A8 001:810.213 JLINK_ReadReg(FPS9)
+T19A8 001:810.217 - 0.005ms returns 0x00000000
+T19A8 001:810.221 JLINK_ReadReg(FPS10)
+T19A8 001:810.225 - 0.006ms returns 0x00000000
+T19A8 001:810.230 JLINK_ReadReg(FPS11)
+T19A8 001:810.234 - 0.005ms returns 0x00000000
+T19A8 001:810.238 JLINK_ReadReg(FPS12)
+T19A8 001:810.242 - 0.005ms returns 0x00000000
+T19A8 001:810.247 JLINK_ReadReg(FPS13)
+T19A8 001:810.251 - 0.005ms returns 0x00000000
+T19A8 001:810.255 JLINK_ReadReg(FPS14)
+T19A8 001:810.259 - 0.005ms returns 0x00000000
+T19A8 001:810.264 JLINK_ReadReg(FPS15)
+T19A8 001:810.269 - 0.007ms returns 0x00000000
+T19A8 001:810.273 JLINK_ReadReg(FPS16)
+T19A8 001:810.277 - 0.006ms returns 0x00000000
+T19A8 001:810.282 JLINK_ReadReg(FPS17)
+T19A8 001:810.286 - 0.006ms returns 0x00000000
+T19A8 001:810.290 JLINK_ReadReg(FPS18)
+T19A8 001:810.294 - 0.005ms returns 0x00000000
+T19A8 001:810.299 JLINK_ReadReg(FPS19)
+T19A8 001:810.303 - 0.005ms returns 0x00000000
+T19A8 001:810.307 JLINK_ReadReg(FPS20)
+T19A8 001:810.311 - 0.005ms returns 0x00000000
+T19A8 001:810.317 JLINK_ReadReg(FPS21)
+T19A8 001:810.322 - 0.007ms returns 0x00000000
+T19A8 001:810.327 JLINK_ReadReg(FPS22)
+T19A8 001:810.331 - 0.005ms returns 0x00000000
+T19A8 001:810.335 JLINK_ReadReg(FPS23)
+T19A8 001:810.339 - 0.005ms returns 0x00000000
+T19A8 001:810.344 JLINK_ReadReg(FPS24)
+T19A8 001:810.348 - 0.006ms returns 0x00000000
+T19A8 001:810.352 JLINK_ReadReg(FPS25)
+T19A8 001:810.356 - 0.005ms returns 0x00000000
+T19A8 001:810.361 JLINK_ReadReg(FPS26)
+T19A8 001:810.365 - 0.005ms returns 0x00000000
+T19A8 001:810.369 JLINK_ReadReg(FPS27)
+T19A8 001:810.374 - 0.006ms returns 0x00000000
+T19A8 001:810.378 JLINK_ReadReg(FPS28)
+T19A8 001:810.382 - 0.005ms returns 0x00000000
+T19A8 001:810.387 JLINK_ReadReg(FPS29)
+T19A8 001:810.391 - 0.005ms returns 0x00000000
+T19A8 001:810.395 JLINK_ReadReg(FPS30)
+T19A8 001:810.399 - 0.005ms returns 0x00000000
+T19A8 001:810.404 JLINK_ReadReg(FPS31)
+T19A8 001:810.408 - 0.005ms returns 0x00000000
+T19A8 001:810.415 JLINK_ReadMemEx(0x200000B8, 0x4 Bytes, Flags = 0x02000000)
+T19A8 001:810.423 CPU_ReadMem(64 bytes @ 0x20000080)
+T19A8 001:811.044 -- Updating C cache (64 bytes @ 0x20000080)
+T19A8 001:811.053 -- Read from C cache (4 bytes @ 0x200000B8)
+T19A8 001:811.060 Data: 00 00 00 00
+T19A8 001:811.066 - 0.652ms returns 4 (0x4)
+T2C78 001:811.558 JLINK_ReadMemEx(0xE000ED28, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:811.569 CPU_ReadMem(4 bytes @ 0xE000ED28)
+T2C78 001:811.825 Data: 00 00 00 00
+T2C78 001:811.831 - 0.275ms returns 4 (0x4)
+T2C78 001:812.411 JLINK_HasError()
+T2C78 001:812.424 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T2C78 001:812.433 CPU_ReadMem(4 bytes @ 0xE0001004)
+T2C78 001:812.701 Data: 71 4D 02 00
+T2C78 001:812.708 Debug reg: DWT_CYCCNT
+T2C78 001:812.714 - 0.292ms returns 1 (0x1)
+T2C78 001:812.819 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 001:812.827 -- Read from C cache (1 bytes @ 0x2000008A)
+T2C78 001:812.833 Data: 00
+T2C78 001:812.839 - 0.021ms returns 1 (0x1)
+T2C78 001:812.846 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 001:812.851 CPU_ReadMem(64 bytes @ 0x20000040)
+T2C78 001:813.456 -- Updating C cache (64 bytes @ 0x20000040)
+T2C78 001:813.463 -- Read from C cache (1 bytes @ 0x2000006C)
+T2C78 001:813.469 Data: 32
+T2C78 001:813.475 - 0.631ms returns 1 (0x1)
+T2C78 001:813.497 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:813.503 CPU_ReadMem(64 bytes @ 0x20000100)
+T2C78 001:814.116 -- Updating C cache (64 bytes @ 0x20000100)
+T2C78 001:814.123 -- Read from C cache (4 bytes @ 0x2000011C)
+T2C78 001:814.129 Data: 00 00 00 00
+T2C78 001:814.134 - 0.638ms returns 4 (0x4)
+T2C78 001:814.359 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:814.369 -- Read from C cache (4 bytes @ 0x20000120)
+T2C78 001:814.375 Data: 00 00 00 00
+T2C78 001:814.380 - 0.023ms returns 4 (0x4)
+T2C78 001:814.387 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:814.392 -- Read from C cache (4 bytes @ 0x20000124)
+T2C78 001:814.398 Data: 00 00 00 00
+T2C78 001:814.404 - 0.018ms returns 4 (0x4)
+T2C78 001:814.515 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:814.522 -- Read from C cache (4 bytes @ 0x20000128)
+T2C78 001:814.528 Data: 00 00 00 00
+T2C78 001:814.534 - 0.020ms returns 4 (0x4)
+T2C78 001:814.632 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:814.638 -- Read from C cache (4 bytes @ 0x2000012C)
+T2C78 001:814.644 Data: 00 00 00 00
+T2C78 001:814.651 - 0.021ms returns 4 (0x4)
+T2C78 001:814.766 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 001:814.775 CPU_ReadMem(64 bytes @ 0x200002C0)
+T2C78 001:815.461 -- Updating C cache (64 bytes @ 0x200002C0)
+T2C78 001:815.468 -- Read from C cache (4 bytes @ 0x200002EC)
+T2C78 001:815.473 Data: 00 00 00 00
+T2C78 001:815.479 - 0.714ms returns 4 (0x4)
+T2C78 001:821.833 JLINK_ReadMemEx(0x0802990C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:821.850 CPU_ReadMem(128 bytes @ 0x08029900)
+T2C78 001:822.838 -- Updating C cache (128 bytes @ 0x08029900)
+T2C78 001:822.852 -- Read from C cache (60 bytes @ 0x0802990C)
+T2C78 001:822.860 Data: 01 E0 04 2D 15 D2 20 68 39 68 30 44 88 47 50 B1 ...
+T2C78 001:822.866 - 1.035ms returns 60 (0x3C)
+T2C78 001:822.873 JLINK_ReadMemEx(0x0802990C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:822.879 -- Read from C cache (2 bytes @ 0x0802990C)
+T2C78 001:822.885 Data: 01 E0
+T2C78 001:822.891 - 0.019ms returns 2 (0x2)
+T2C78 001:822.936 JLINK_ReadMemEx(0x0802990E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:822.941 -- Read from C cache (2 bytes @ 0x0802990E)
+T2C78 001:822.947 Data: 04 2D
+T2C78 001:822.953 - 0.018ms returns 2 (0x2)
+T2C78 001:822.959 JLINK_ReadMemEx(0x0802990E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:822.963 -- Read from C cache (2 bytes @ 0x0802990E)
+T2C78 001:822.969 Data: 04 2D
+T2C78 001:822.974 - 0.017ms returns 2 (0x2)
+T2C78 001:822.979 JLINK_ReadMemEx(0x08029910, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:822.983 -- Read from C cache (60 bytes @ 0x08029910)
+T2C78 001:822.989 Data: 15 D2 20 68 39 68 30 44 88 47 50 B1 69 1C CD B2 ...
+T2C78 001:822.995 - 0.018ms returns 60 (0x3C)
+T2C78 001:823.000 JLINK_ReadMemEx(0x08029910, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.005 -- Read from C cache (2 bytes @ 0x08029910)
+T2C78 001:823.010 Data: 15 D2
+T2C78 001:823.016 - 0.018ms returns 2 (0x2)
+T2C78 001:823.021 JLINK_ReadMemEx(0x08029910, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:823.025 -- Read from C cache (60 bytes @ 0x08029910)
+T2C78 001:823.031 Data: 15 D2 20 68 39 68 30 44 88 47 50 B1 69 1C CD B2 ...
+T2C78 001:823.037 - 0.018ms returns 60 (0x3C)
+T2C78 001:823.042 JLINK_ReadMemEx(0x08029910, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.046 -- Read from C cache (2 bytes @ 0x08029910)
+T2C78 001:823.052 Data: 15 D2
+T2C78 001:823.058 - 0.017ms returns 2 (0x2)
+T2C78 001:823.062 JLINK_ReadMemEx(0x08029912, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.067 -- Read from C cache (2 bytes @ 0x08029912)
+T2C78 001:823.074 Data: 20 68
+T2C78 001:823.080 - 0.019ms returns 2 (0x2)
+T2C78 001:823.085 JLINK_ReadMemEx(0x08029912, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.089 -- Read from C cache (2 bytes @ 0x08029912)
+T2C78 001:823.095 Data: 20 68
+T2C78 001:823.100 - 0.017ms returns 2 (0x2)
+T2C78 001:823.105 JLINK_ReadMemEx(0x08029914, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:823.109 -- Read from C cache (60 bytes @ 0x08029914)
+T2C78 001:823.115 Data: 39 68 30 44 88 47 50 B1 69 1C CD B2 00 28 F4 D0 ...
+T2C78 001:823.121 - 0.017ms returns 60 (0x3C)
+T2C78 001:823.125 JLINK_ReadMemEx(0x08029914, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.129 -- Read from C cache (2 bytes @ 0x08029914)
+T2C78 001:823.135 Data: 39 68
+T2C78 001:823.141 - 0.017ms returns 2 (0x2)
+T2C78 001:823.146 JLINK_ReadMemEx(0x08029914, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:823.150 -- Read from C cache (60 bytes @ 0x08029914)
+T2C78 001:823.156 Data: 39 68 30 44 88 47 50 B1 69 1C CD B2 00 28 F4 D0 ...
+T2C78 001:823.162 - 0.017ms returns 60 (0x3C)
+T2C78 001:823.166 JLINK_ReadMemEx(0x08029914, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.170 -- Read from C cache (2 bytes @ 0x08029914)
+T2C78 001:823.176 Data: 39 68
+T2C78 001:823.182 - 0.017ms returns 2 (0x2)
+T2C78 001:823.187 JLINK_ReadMemEx(0x08029916, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.191 -- Read from C cache (2 bytes @ 0x08029916)
+T2C78 001:823.196 Data: 30 44
+T2C78 001:823.203 - 0.018ms returns 2 (0x2)
+T2C78 001:823.207 JLINK_ReadMemEx(0x08029916, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.212 -- Read from C cache (2 bytes @ 0x08029916)
+T2C78 001:823.217 Data: 30 44
+T2C78 001:823.224 - 0.018ms returns 2 (0x2)
+T2C78 001:823.228 JLINK_ReadMemEx(0x08029918, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:823.233 -- Read from C cache (60 bytes @ 0x08029918)
+T2C78 001:823.239 Data: 88 47 50 B1 69 1C CD B2 00 28 F4 D0 20 68 00 90 ...
+T2C78 001:823.245 - 0.020ms returns 60 (0x3C)
+T2C78 001:823.252 JLINK_ReadMemEx(0x08029918, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.257 -- Read from C cache (2 bytes @ 0x08029918)
+T2C78 001:823.263 Data: 88 47
+T2C78 001:823.269 - 0.018ms returns 2 (0x2)
+T2C78 001:823.274 JLINK_ReadMemEx(0x08029918, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:823.278 -- Read from C cache (60 bytes @ 0x08029918)
+T2C78 001:823.284 Data: 88 47 50 B1 69 1C CD B2 00 28 F4 D0 20 68 00 90 ...
+T2C78 001:823.289 - 0.017ms returns 60 (0x3C)
+T2C78 001:823.294 JLINK_ReadMemEx(0x08029918, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.298 -- Read from C cache (2 bytes @ 0x08029918)
+T2C78 001:823.304 Data: 88 47
+T2C78 001:823.310 - 0.017ms returns 2 (0x2)
+T2C78 001:823.314 JLINK_ReadMemEx(0x0802991A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.319 -- Read from C cache (2 bytes @ 0x0802991A)
+T2C78 001:823.324 Data: 50 B1
+T2C78 001:823.330 - 0.017ms returns 2 (0x2)
+T2C78 001:823.335 JLINK_ReadMemEx(0x0802991A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.339 -- Read from C cache (2 bytes @ 0x0802991A)
+T2C78 001:823.345 Data: 50 B1
+T2C78 001:823.351 - 0.017ms returns 2 (0x2)
+T2C78 001:823.355 JLINK_ReadMemEx(0x0802991C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:823.360 -- Read from C cache (60 bytes @ 0x0802991C)
+T2C78 001:823.366 Data: 69 1C CD B2 00 28 F4 D0 20 68 00 90 7A 68 69 46 ...
+T2C78 001:823.372 - 0.018ms returns 60 (0x3C)
+T2C78 001:823.376 JLINK_ReadMemEx(0x0802991C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.381 -- Read from C cache (2 bytes @ 0x0802991C)
+T2C78 001:823.386 Data: 69 1C
+T2C78 001:823.392 - 0.017ms returns 2 (0x2)
+T2C78 001:823.397 JLINK_ReadMemEx(0x0802991C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:823.401 -- Read from C cache (60 bytes @ 0x0802991C)
+T2C78 001:823.407 Data: 69 1C CD B2 00 28 F4 D0 20 68 00 90 7A 68 69 46 ...
+T2C78 001:823.413 - 0.018ms returns 60 (0x3C)
+T2C78 001:823.418 JLINK_ReadMemEx(0x0802991C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.422 -- Read from C cache (2 bytes @ 0x0802991C)
+T2C78 001:823.428 Data: 69 1C
+T2C78 001:823.434 - 0.017ms returns 2 (0x2)
+T2C78 001:823.438 JLINK_ReadMemEx(0x0802991E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.442 -- Read from C cache (2 bytes @ 0x0802991E)
+T2C78 001:823.448 Data: CD B2
+T2C78 001:823.454 - 0.017ms returns 2 (0x2)
+T2C78 001:823.458 JLINK_ReadMemEx(0x0802991E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.463 -- Read from C cache (2 bytes @ 0x0802991E)
+T2C78 001:823.468 Data: CD B2
+T2C78 001:823.474 - 0.017ms returns 2 (0x2)
+T2C78 001:823.478 JLINK_ReadMemEx(0x08029920, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:823.483 -- Read from C cache (60 bytes @ 0x08029920)
+T2C78 001:823.489 Data: 00 28 F4 D0 20 68 00 90 7A 68 69 46 30 46 90 47 ...
+T2C78 001:823.494 - 0.017ms returns 60 (0x3C)
+T2C78 001:823.499 JLINK_ReadMemEx(0x08029920, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.503 -- Read from C cache (2 bytes @ 0x08029920)
+T2C78 001:823.509 Data: 00 28
+T2C78 001:823.514 - 0.017ms returns 2 (0x2)
+T2C78 001:823.519 JLINK_ReadMemEx(0x08029920, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:823.523 -- Read from C cache (60 bytes @ 0x08029920)
+T2C78 001:823.529 Data: 00 28 F4 D0 20 68 00 90 7A 68 69 46 30 46 90 47 ...
+T2C78 001:823.535 - 0.017ms returns 60 (0x3C)
+T2C78 001:823.539 JLINK_ReadMemEx(0x08029920, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.544 -- Read from C cache (2 bytes @ 0x08029920)
+T2C78 001:823.549 Data: 00 28
+T2C78 001:823.555 - 0.017ms returns 2 (0x2)
+T2C78 001:823.560 JLINK_ReadMemEx(0x08029922, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.564 -- Read from C cache (2 bytes @ 0x08029922)
+T2C78 001:823.570 Data: F4 D0
+T2C78 001:823.576 - 0.018ms returns 2 (0x2)
+T2C78 001:823.581 JLINK_ReadMemEx(0x08029922, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.585 -- Read from C cache (2 bytes @ 0x08029922)
+T2C78 001:823.591 Data: F4 D0
+T2C78 001:823.597 - 0.017ms returns 2 (0x2)
+T2C78 001:823.601 JLINK_ReadMemEx(0x08029924, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:823.607 -- Read from C cache (60 bytes @ 0x08029924)
+T2C78 001:823.614 Data: 20 68 00 90 7A 68 69 46 30 46 90 47 F8 BD 21 68 ...
+T2C78 001:823.619 - 0.020ms returns 60 (0x3C)
+T2C78 001:823.624 JLINK_ReadMemEx(0x08029924, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.628 -- Read from C cache (2 bytes @ 0x08029924)
+T2C78 001:823.634 Data: 20 68
+T2C78 001:823.640 - 0.018ms returns 2 (0x2)
+T2C78 001:823.645 JLINK_ReadMemEx(0x08029924, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:823.649 -- Read from C cache (60 bytes @ 0x08029924)
+T2C78 001:823.655 Data: 20 68 00 90 7A 68 69 46 30 46 90 47 F8 BD 21 68 ...
+T2C78 001:823.661 - 0.017ms returns 60 (0x3C)
+T2C78 001:823.665 JLINK_ReadMemEx(0x08029924, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.669 -- Read from C cache (2 bytes @ 0x08029924)
+T2C78 001:823.675 Data: 20 68
+T2C78 001:823.681 - 0.017ms returns 2 (0x2)
+T2C78 001:823.685 JLINK_ReadMemEx(0x08029926, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.689 -- Read from C cache (2 bytes @ 0x08029926)
+T2C78 001:823.695 Data: 00 90
+T2C78 001:823.700 - 0.017ms returns 2 (0x2)
+T2C78 001:823.705 JLINK_ReadMemEx(0x08029926, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.709 -- Read from C cache (2 bytes @ 0x08029926)
+T2C78 001:823.715 Data: 00 90
+T2C78 001:823.720 - 0.017ms returns 2 (0x2)
+T2C78 001:823.725 JLINK_ReadMemEx(0x08029928, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:823.729 -- Read from C cache (60 bytes @ 0x08029928)
+T2C78 001:823.735 Data: 7A 68 69 46 30 46 90 47 F8 BD 21 68 00 29 1C BF ...
+T2C78 001:823.741 - 0.017ms returns 60 (0x3C)
+T2C78 001:823.745 JLINK_ReadMemEx(0x08029928, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.749 -- Read from C cache (2 bytes @ 0x08029928)
+T2C78 001:823.755 Data: 7A 68
+T2C78 001:823.761 - 0.017ms returns 2 (0x2)
+T2C78 001:823.766 JLINK_ReadMemEx(0x08029928, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:823.770 -- Read from C cache (60 bytes @ 0x08029928)
+T2C78 001:823.776 Data: 7A 68 69 46 30 46 90 47 F8 BD 21 68 00 29 1C BF ...
+T2C78 001:823.781 - 0.017ms returns 60 (0x3C)
+T2C78 001:823.786 JLINK_ReadMemEx(0x08029928, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.790 -- Read from C cache (2 bytes @ 0x08029928)
+T2C78 001:823.796 Data: 7A 68
+T2C78 001:823.801 - 0.017ms returns 2 (0x2)
+T2C78 001:823.806 JLINK_ReadMemEx(0x0802992A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.810 -- Read from C cache (2 bytes @ 0x0802992A)
+T2C78 001:823.815 Data: 69 46
+T2C78 001:823.821 - 0.017ms returns 2 (0x2)
+T2C78 001:823.826 JLINK_ReadMemEx(0x0802992A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.830 -- Read from C cache (2 bytes @ 0x0802992A)
+T2C78 001:823.836 Data: 69 46
+T2C78 001:823.841 - 0.017ms returns 2 (0x2)
+T2C78 001:823.846 JLINK_ReadMemEx(0x0802992C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:823.850 -- Read from C cache (60 bytes @ 0x0802992C)
+T2C78 001:823.856 Data: 30 46 90 47 F8 BD 21 68 00 29 1C BF 49 1E 21 60 ...
+T2C78 001:823.861 - 0.017ms returns 60 (0x3C)
+T2C78 001:823.866 JLINK_ReadMemEx(0x0802992C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.870 -- Read from C cache (2 bytes @ 0x0802992C)
+T2C78 001:823.876 Data: 30 46
+T2C78 001:823.881 - 0.017ms returns 2 (0x2)
+T2C78 001:823.886 JLINK_ReadMemEx(0x0802992C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:823.890 -- Read from C cache (60 bytes @ 0x0802992C)
+T2C78 001:823.896 Data: 30 46 90 47 F8 BD 21 68 00 29 1C BF 49 1E 21 60 ...
+T2C78 001:823.902 - 0.017ms returns 60 (0x3C)
+T2C78 001:823.907 JLINK_ReadMemEx(0x0802992C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.911 -- Read from C cache (2 bytes @ 0x0802992C)
+T2C78 001:823.916 Data: 30 46
+T2C78 001:823.922 - 0.017ms returns 2 (0x2)
+T2C78 001:823.927 JLINK_ReadMemEx(0x0802992E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.931 -- Read from C cache (2 bytes @ 0x0802992E)
+T2C78 001:823.936 Data: 90 47
+T2C78 001:823.942 - 0.017ms returns 2 (0x2)
+T2C78 001:823.947 JLINK_ReadMemEx(0x0802992E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.952 -- Read from C cache (2 bytes @ 0x0802992E)
+T2C78 001:823.958 Data: 90 47
+T2C78 001:823.963 - 0.018ms returns 2 (0x2)
+T2C78 001:823.968 JLINK_ReadMemEx(0x08029930, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:823.972 -- Read from C cache (60 bytes @ 0x08029930)
+T2C78 001:823.978 Data: F8 BD 21 68 00 29 1C BF 49 1E 21 60 EE D1 00 20 ...
+T2C78 001:823.984 - 0.017ms returns 60 (0x3C)
+T2C78 001:823.988 JLINK_ReadMemEx(0x08029930, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:823.992 -- Read from C cache (2 bytes @ 0x08029930)
+T2C78 001:823.998 Data: F8 BD
+T2C78 001:824.005 - 0.018ms returns 2 (0x2)
+T2C78 001:824.010 JLINK_ReadMemEx(0x08029930, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:824.014 -- Read from C cache (60 bytes @ 0x08029930)
+T2C78 001:824.020 Data: F8 BD 21 68 00 29 1C BF 49 1E 21 60 EE D1 00 20 ...
+T2C78 001:824.025 - 0.017ms returns 60 (0x3C)
+T2C78 001:824.030 JLINK_ReadMemEx(0x08029930, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:824.034 -- Read from C cache (2 bytes @ 0x08029930)
+T2C78 001:824.040 Data: F8 BD
+T2C78 001:824.045 - 0.017ms returns 2 (0x2)
+T2C78 001:824.050 JLINK_ReadMemEx(0x08029932, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:824.054 -- Read from C cache (2 bytes @ 0x08029932)
+T2C78 001:824.060 Data: 21 68
+T2C78 001:824.066 - 0.017ms returns 2 (0x2)
+T2C78 001:824.070 JLINK_ReadMemEx(0x08029932, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:824.075 -- Read from C cache (2 bytes @ 0x08029932)
+T2C78 001:824.081 Data: 21 68
+T2C78 001:824.086 - 0.018ms returns 2 (0x2)
+T2C78 001:824.091 JLINK_ReadMemEx(0x08029934, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:824.095 -- Read from C cache (60 bytes @ 0x08029934)
+T2C78 001:824.101 Data: 00 29 1C BF 49 1E 21 60 EE D1 00 20 F8 BD 00 00 ...
+T2C78 001:824.107 - 0.017ms returns 60 (0x3C)
+T2C78 001:824.111 JLINK_ReadMemEx(0x08029934, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:824.115 -- Read from C cache (2 bytes @ 0x08029934)
+T2C78 001:824.121 Data: 00 29
+T2C78 001:824.127 - 0.017ms returns 2 (0x2)
+T2C78 001:824.131 JLINK_ReadMemEx(0x08029934, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:824.136 -- Read from C cache (60 bytes @ 0x08029934)
+T2C78 001:824.142 Data: 00 29 1C BF 49 1E 21 60 EE D1 00 20 F8 BD 00 00 ...
+T2C78 001:824.147 - 0.018ms returns 60 (0x3C)
+T2C78 001:824.152 JLINK_ReadMemEx(0x08029934, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:824.156 -- Read from C cache (2 bytes @ 0x08029934)
+T2C78 001:824.162 Data: 00 29
+T2C78 001:824.168 - 0.017ms returns 2 (0x2)
+T2C78 001:824.172 JLINK_ReadMemEx(0x08029936, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:824.176 -- Read from C cache (2 bytes @ 0x08029936)
+T2C78 001:824.182 Data: 1C BF
+T2C78 001:824.188 - 0.017ms returns 2 (0x2)
+T2C78 001:824.192 JLINK_ReadMemEx(0x08029936, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:824.196 -- Read from C cache (2 bytes @ 0x08029936)
+T2C78 001:824.202 Data: 1C BF
+T2C78 001:824.208 - 0.017ms returns 2 (0x2)
+T2C78 001:824.212 JLINK_ReadMemEx(0x08029938, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:824.217 -- Read from C cache (60 bytes @ 0x08029938)
+T2C78 001:824.223 Data: 49 1E 21 60 EE D1 00 20 F8 BD 00 00 AC 02 00 20 ...
+T2C78 001:824.228 - 0.017ms returns 60 (0x3C)
+T2C78 001:824.233 JLINK_ReadMemEx(0x08029938, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:824.237 -- Read from C cache (2 bytes @ 0x08029938)
+T2C78 001:824.242 Data: 49 1E
+T2C78 001:824.248 - 0.017ms returns 2 (0x2)
+T2C78 001:824.253 JLINK_ReadMemEx(0x0802993C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:824.257 -- Read from C cache (60 bytes @ 0x0802993C)
+T2C78 001:824.263 Data: EE D1 00 20 F8 BD 00 00 AC 02 00 20 00 78 10 F0 ...
+T2C78 001:824.269 - 0.018ms returns 60 (0x3C)
+T2C78 001:824.274 JLINK_ReadMemEx(0x0802993C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:824.278 -- Read from C cache (2 bytes @ 0x0802993C)
+T2C78 001:824.283 Data: EE D1
+T2C78 001:824.289 - 0.017ms returns 2 (0x2)
+T2C78 001:824.294 JLINK_ReadMemEx(0x0802993E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:824.299 -- Read from C cache (2 bytes @ 0x0802993E)
+T2C78 001:824.305 Data: 00 20
+T2C78 001:824.310 - 0.018ms returns 2 (0x2)
+T2C78 001:824.315 JLINK_ReadMemEx(0x0802993E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:824.319 -- Read from C cache (2 bytes @ 0x0802993E)
+T2C78 001:824.325 Data: 00 20
+T2C78 001:824.331 - 0.017ms returns 2 (0x2)
+T2C78 001:824.335 JLINK_ReadMemEx(0x08029940, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:824.340 -- Read from C cache (60 bytes @ 0x08029940)
+T2C78 001:824.346 Data: F8 BD 00 00 AC 02 00 20 00 78 10 F0 80 0F 04 BF ...
+T2C78 001:824.351 - 0.017ms returns 60 (0x3C)
+T2C78 001:824.356 JLINK_ReadMemEx(0x08029940, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:824.360 -- Read from C cache (2 bytes @ 0x08029940)
+T2C78 001:824.365 Data: F8 BD
+T2C78 001:824.371 - 0.017ms returns 2 (0x2)
+T2C78 001:824.376 JLINK_ReadMemEx(0x08029940, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:824.381 -- Read from C cache (60 bytes @ 0x08029940)
+T2C78 001:824.387 Data: F8 BD 00 00 AC 02 00 20 00 78 10 F0 80 0F 04 BF ...
+T2C78 001:824.392 - 0.017ms returns 60 (0x3C)
+T2C78 001:824.397 JLINK_ReadMemEx(0x08029940, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:824.401 -- Read from C cache (2 bytes @ 0x08029940)
+T2C78 001:824.407 Data: F8 BD
+T2C78 001:824.413 - 0.018ms returns 2 (0x2)
+T2C78 001:824.418 JLINK_ReadMemEx(0x08029942, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:824.422 -- Read from C cache (2 bytes @ 0x08029942)
+T2C78 001:824.428 Data: 00 00
+T2C78 001:824.433 - 0.017ms returns 2 (0x2)
+T2C78 001:824.438 JLINK_ReadMemEx(0x08029948, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:824.444 CPU_ReadMem(64 bytes @ 0x08029980)
+T2C78 001:825.096 -- Updating C cache (64 bytes @ 0x08029980)
+T2C78 001:825.105 -- Read from C cache (60 bytes @ 0x08029948)
+T2C78 001:825.112 Data: 00 78 10 F0 80 0F 04 BF 01 20 70 47 00 F0 E0 01 ...
+T2C78 001:825.118 - 0.681ms returns 60 (0x3C)
+T2C78 001:825.124 JLINK_ReadMemEx(0x08029948, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.128 -- Read from C cache (2 bytes @ 0x08029948)
+T2C78 001:825.134 Data: 00 78
+T2C78 001:825.140 - 0.018ms returns 2 (0x2)
+T2C78 001:825.145 JLINK_ReadMemEx(0x0802994A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.150 -- Read from C cache (2 bytes @ 0x0802994A)
+T2C78 001:825.155 Data: 10 F0
+T2C78 001:825.161 - 0.017ms returns 2 (0x2)
+T2C78 001:825.166 JLINK_ReadMemEx(0x0802994A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.170 -- Read from C cache (2 bytes @ 0x0802994A)
+T2C78 001:825.176 Data: 10 F0
+T2C78 001:825.182 - 0.017ms returns 2 (0x2)
+T2C78 001:825.186 JLINK_ReadMemEx(0x0802994C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:825.191 -- Read from C cache (60 bytes @ 0x0802994C)
+T2C78 001:825.197 Data: 80 0F 04 BF 01 20 70 47 00 F0 E0 01 C0 29 04 BF ...
+T2C78 001:825.202 - 0.017ms returns 60 (0x3C)
+T2C78 001:825.207 JLINK_ReadMemEx(0x0802994C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.211 -- Read from C cache (2 bytes @ 0x0802994C)
+T2C78 001:825.217 Data: 80 0F
+T2C78 001:825.222 - 0.017ms returns 2 (0x2)
+T2C78 001:825.227 JLINK_ReadMemEx(0x0802994E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.231 -- Read from C cache (2 bytes @ 0x0802994E)
+T2C78 001:825.237 Data: 04 BF
+T2C78 001:825.243 - 0.017ms returns 2 (0x2)
+T2C78 001:825.248 JLINK_ReadMemEx(0x08029950, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:825.252 -- Read from C cache (60 bytes @ 0x08029950)
+T2C78 001:825.259 Data: 01 20 70 47 00 F0 E0 01 C0 29 04 BF 02 20 70 47 ...
+T2C78 001:825.264 - 0.018ms returns 60 (0x3C)
+T2C78 001:825.269 JLINK_ReadMemEx(0x08029950, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.273 -- Read from C cache (2 bytes @ 0x08029950)
+T2C78 001:825.279 Data: 01 20
+T2C78 001:825.284 - 0.017ms returns 2 (0x2)
+T2C78 001:825.289 JLINK_ReadMemEx(0x08029954, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:825.293 -- Read from C cache (60 bytes @ 0x08029954)
+T2C78 001:825.299 Data: 00 F0 E0 01 C0 29 04 BF 02 20 70 47 00 F0 F0 01 ...
+T2C78 001:825.306 - 0.019ms returns 60 (0x3C)
+T2C78 001:825.311 JLINK_ReadMemEx(0x08029954, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.315 -- Read from C cache (2 bytes @ 0x08029954)
+T2C78 001:825.321 Data: 00 F0
+T2C78 001:825.326 - 0.017ms returns 2 (0x2)
+T2C78 001:825.331 JLINK_ReadMemEx(0x08029956, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.335 -- Read from C cache (2 bytes @ 0x08029956)
+T2C78 001:825.341 Data: E0 01
+T2C78 001:825.346 - 0.017ms returns 2 (0x2)
+T2C78 001:825.351 JLINK_ReadMemEx(0x08029958, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:825.355 -- Read from C cache (60 bytes @ 0x08029958)
+T2C78 001:825.361 Data: C0 29 04 BF 02 20 70 47 00 F0 F0 01 E0 29 04 BF ...
+T2C78 001:825.367 - 0.017ms returns 60 (0x3C)
+T2C78 001:825.372 JLINK_ReadMemEx(0x08029958, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.376 -- Read from C cache (2 bytes @ 0x08029958)
+T2C78 001:825.381 Data: C0 29
+T2C78 001:825.387 - 0.018ms returns 2 (0x2)
+T2C78 001:825.392 JLINK_ReadMemEx(0x0802995A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.396 -- Read from C cache (2 bytes @ 0x0802995A)
+T2C78 001:825.402 Data: 04 BF
+T2C78 001:825.408 - 0.017ms returns 2 (0x2)
+T2C78 001:825.413 JLINK_ReadMemEx(0x0802995A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.417 -- Read from C cache (2 bytes @ 0x0802995A)
+T2C78 001:825.422 Data: 04 BF
+T2C78 001:825.428 - 0.017ms returns 2 (0x2)
+T2C78 001:825.433 JLINK_ReadMemEx(0x0802995C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:825.437 -- Read from C cache (60 bytes @ 0x0802995C)
+T2C78 001:825.443 Data: 02 20 70 47 00 F0 F0 01 E0 29 04 BF 03 20 70 47 ...
+T2C78 001:825.449 - 0.017ms returns 60 (0x3C)
+T2C78 001:825.453 JLINK_ReadMemEx(0x0802995C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.457 -- Read from C cache (2 bytes @ 0x0802995C)
+T2C78 001:825.463 Data: 02 20
+T2C78 001:825.469 - 0.017ms returns 2 (0x2)
+T2C78 001:825.473 JLINK_ReadMemEx(0x08029960, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:825.477 -- Read from C cache (60 bytes @ 0x08029960)
+T2C78 001:825.484 Data: 00 F0 F0 01 E0 29 04 BF 03 20 70 47 00 F0 F8 00 ...
+T2C78 001:825.489 - 0.017ms returns 60 (0x3C)
+T2C78 001:825.494 JLINK_ReadMemEx(0x08029960, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.498 -- Read from C cache (2 bytes @ 0x08029960)
+T2C78 001:825.504 Data: 00 F0
+T2C78 001:825.509 - 0.017ms returns 2 (0x2)
+T2C78 001:825.514 JLINK_ReadMemEx(0x08029962, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.518 -- Read from C cache (2 bytes @ 0x08029962)
+T2C78 001:825.524 Data: F0 01
+T2C78 001:825.529 - 0.017ms returns 2 (0x2)
+T2C78 001:825.534 JLINK_ReadMemEx(0x08029964, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:825.538 -- Read from C cache (60 bytes @ 0x08029964)
+T2C78 001:825.544 Data: E0 29 04 BF 03 20 70 47 00 F0 F8 00 F0 28 0C BF ...
+T2C78 001:825.550 - 0.017ms returns 60 (0x3C)
+T2C78 001:825.555 JLINK_ReadMemEx(0x08029964, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.559 -- Read from C cache (2 bytes @ 0x08029964)
+T2C78 001:825.564 Data: E0 29
+T2C78 001:825.570 - 0.017ms returns 2 (0x2)
+T2C78 001:825.574 JLINK_ReadMemEx(0x08029966, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.579 -- Read from C cache (2 bytes @ 0x08029966)
+T2C78 001:825.584 Data: 04 BF
+T2C78 001:825.590 - 0.017ms returns 2 (0x2)
+T2C78 001:825.595 JLINK_ReadMemEx(0x08029966, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.599 -- Read from C cache (2 bytes @ 0x08029966)
+T2C78 001:825.604 Data: 04 BF
+T2C78 001:825.610 - 0.017ms returns 2 (0x2)
+T2C78 001:825.615 JLINK_ReadMemEx(0x08029968, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:825.619 -- Read from C cache (60 bytes @ 0x08029968)
+T2C78 001:825.626 Data: 03 20 70 47 00 F0 F8 00 F0 28 0C BF 04 20 00 20 ...
+T2C78 001:825.632 - 0.019ms returns 60 (0x3C)
+T2C78 001:825.636 JLINK_ReadMemEx(0x08029968, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.640 -- Read from C cache (2 bytes @ 0x08029968)
+T2C78 001:825.646 Data: 03 20
+T2C78 001:825.652 - 0.018ms returns 2 (0x2)
+T2C78 001:825.658 JLINK_ReadMemEx(0x0802996C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:825.662 -- Read from C cache (60 bytes @ 0x0802996C)
+T2C78 001:825.668 Data: 00 F0 F8 00 F0 28 0C BF 04 20 00 20 70 47 00 00 ...
+T2C78 001:825.674 - 0.018ms returns 60 (0x3C)
+T2C78 001:825.678 JLINK_ReadMemEx(0x0802996C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.683 -- Read from C cache (2 bytes @ 0x0802996C)
+T2C78 001:825.689 Data: 00 F0
+T2C78 001:825.695 - 0.018ms returns 2 (0x2)
+T2C78 001:825.699 JLINK_ReadMemEx(0x0802996E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.704 -- Read from C cache (2 bytes @ 0x0802996E)
+T2C78 001:825.709 Data: F8 00
+T2C78 001:825.715 - 0.017ms returns 2 (0x2)
+T2C78 001:825.720 JLINK_ReadMemEx(0x08029970, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:825.724 -- Read from C cache (60 bytes @ 0x08029970)
+T2C78 001:825.730 Data: F0 28 0C BF 04 20 00 20 70 47 00 00 08 B5 00 93 ...
+T2C78 001:825.736 - 0.018ms returns 60 (0x3C)
+T2C78 001:825.741 JLINK_ReadMemEx(0x08029970, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.745 -- Read from C cache (2 bytes @ 0x08029970)
+T2C78 001:825.751 Data: F0 28
+T2C78 001:825.757 - 0.017ms returns 2 (0x2)
+T2C78 001:825.761 JLINK_ReadMemEx(0x08029972, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.766 -- Read from C cache (2 bytes @ 0x08029972)
+T2C78 001:825.773 Data: 0C BF
+T2C78 001:825.779 - 0.019ms returns 2 (0x2)
+T2C78 001:825.783 JLINK_ReadMemEx(0x08029972, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.788 -- Read from C cache (2 bytes @ 0x08029972)
+T2C78 001:825.793 Data: 0C BF
+T2C78 001:825.799 - 0.017ms returns 2 (0x2)
+T2C78 001:825.803 JLINK_ReadMemEx(0x08029974, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:825.808 -- Read from C cache (60 bytes @ 0x08029974)
+T2C78 001:825.813 Data: 04 20 00 20 70 47 00 00 08 B5 00 93 13 46 0A 46 ...
+T2C78 001:825.819 - 0.017ms returns 60 (0x3C)
+T2C78 001:825.824 JLINK_ReadMemEx(0x08029974, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.828 -- Read from C cache (2 bytes @ 0x08029974)
+T2C78 001:825.833 Data: 04 20
+T2C78 001:825.839 - 0.017ms returns 2 (0x2)
+T2C78 001:825.844 JLINK_ReadMemEx(0x08029978, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:825.848 -- Read from C cache (60 bytes @ 0x08029978)
+T2C78 001:825.855 Data: 70 47 00 00 08 B5 00 93 13 46 0A 46 01 46 02 48 ...
+T2C78 001:825.861 - 0.019ms returns 60 (0x3C)
+T2C78 001:825.866 JLINK_ReadMemEx(0x08029978, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.870 -- Read from C cache (2 bytes @ 0x08029978)
+T2C78 001:825.875 Data: 70 47
+T2C78 001:825.881 - 0.017ms returns 2 (0x2)
+T2C78 001:825.886 JLINK_ReadMemEx(0x0802997A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.890 -- Read from C cache (2 bytes @ 0x0802997A)
+T2C78 001:825.895 Data: 00 00
+T2C78 001:825.901 - 0.018ms returns 2 (0x2)
+T2C78 001:825.906 JLINK_ReadMemEx(0x0802997A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.911 -- Read from C cache (2 bytes @ 0x0802997A)
+T2C78 001:825.916 Data: 00 00
+T2C78 001:825.922 - 0.017ms returns 2 (0x2)
+T2C78 001:825.926 JLINK_ReadMemEx(0x0802997C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:825.931 -- Read from C cache (60 bytes @ 0x0802997C)
+T2C78 001:825.937 Data: 08 B5 00 93 13 46 0A 46 01 46 02 48 DE F7 D0 F9 ...
+T2C78 001:825.943 - 0.018ms returns 60 (0x3C)
+T2C78 001:825.947 JLINK_ReadMemEx(0x0802997C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.951 -- Read from C cache (2 bytes @ 0x0802997C)
+T2C78 001:825.957 Data: 08 B5
+T2C78 001:825.963 - 0.018ms returns 2 (0x2)
+T2C78 001:825.968 JLINK_ReadMemEx(0x0802997C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:825.972 -- Read from C cache (60 bytes @ 0x0802997C)
+T2C78 001:825.979 Data: 08 B5 00 93 13 46 0A 46 01 46 02 48 DE F7 D0 F9 ...
+T2C78 001:825.984 - 0.018ms returns 60 (0x3C)
+T2C78 001:825.989 JLINK_ReadMemEx(0x0802997C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:825.993 -- Read from C cache (2 bytes @ 0x0802997C)
+T2C78 001:825.999 Data: 08 B5
+T2C78 001:826.005 - 0.017ms returns 2 (0x2)
+T2C78 001:826.010 JLINK_ReadMemEx(0x0802997E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:826.014 -- Read from C cache (2 bytes @ 0x0802997E)
+T2C78 001:826.020 Data: 00 93
+T2C78 001:826.026 - 0.018ms returns 2 (0x2)
+T2C78 001:826.031 JLINK_ReadMemEx(0x0802997E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:826.035 -- Read from C cache (2 bytes @ 0x0802997E)
+T2C78 001:826.041 Data: 00 93
+T2C78 001:826.046 - 0.017ms returns 2 (0x2)
+T2C78 001:826.051 JLINK_ReadMemEx(0x08029980, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:826.055 -- Read from C cache (60 bytes @ 0x08029980)
+T2C78 001:826.061 Data: 13 46 0A 46 01 46 02 48 DE F7 D0 F9 08 BD 00 00 ...
+T2C78 001:826.067 - 0.017ms returns 60 (0x3C)
+T2C78 001:826.071 JLINK_ReadMemEx(0x08029980, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:826.076 -- Read from C cache (2 bytes @ 0x08029980)
+T2C78 001:826.081 Data: 13 46
+T2C78 001:826.087 - 0.017ms returns 2 (0x2)
+T2C78 001:826.091 JLINK_ReadMemEx(0x08029980, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:826.096 -- Read from C cache (60 bytes @ 0x08029980)
+T2C78 001:826.102 Data: 13 46 0A 46 01 46 02 48 DE F7 D0 F9 08 BD 00 00 ...
+T2C78 001:826.108 - 0.018ms returns 60 (0x3C)
+T2C78 001:826.113 JLINK_ReadMemEx(0x08029980, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:826.117 -- Read from C cache (2 bytes @ 0x08029980)
+T2C78 001:826.123 Data: 13 46
+T2C78 001:826.130 - 0.019ms returns 2 (0x2)
+T2C78 001:826.135 JLINK_ReadMemEx(0x08029982, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:826.139 -- Read from C cache (2 bytes @ 0x08029982)
+T2C78 001:826.145 Data: 0A 46
+T2C78 001:826.151 - 0.018ms returns 2 (0x2)
+T2C78 001:826.155 JLINK_ReadMemEx(0x08029982, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:826.160 -- Read from C cache (2 bytes @ 0x08029982)
+T2C78 001:826.166 Data: 0A 46
+T2C78 001:826.172 - 0.018ms returns 2 (0x2)
+T2C78 001:826.176 JLINK_ReadMemEx(0x08029984, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:826.181 -- Read from C cache (60 bytes @ 0x08029984)
+T2C78 001:826.187 Data: 01 46 02 48 DE F7 D0 F9 08 BD 00 00 11 76 00 08 ...
+T2C78 001:826.193 - 0.018ms returns 60 (0x3C)
+T2C78 001:826.198 JLINK_ReadMemEx(0x08029984, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:826.202 -- Read from C cache (2 bytes @ 0x08029984)
+T2C78 001:826.208 Data: 01 46
+T2C78 001:826.213 - 0.017ms returns 2 (0x2)
+T2C78 001:826.218 JLINK_ReadMemEx(0x08029984, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:826.222 -- Read from C cache (60 bytes @ 0x08029984)
+T2C78 001:826.228 Data: 01 46 02 48 DE F7 D0 F9 08 BD 00 00 11 76 00 08 ...
+T2C78 001:826.233 - 0.017ms returns 60 (0x3C)
+T2C78 001:826.238 JLINK_ReadMemEx(0x08029984, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:826.242 -- Read from C cache (2 bytes @ 0x08029984)
+T2C78 001:826.248 Data: 01 46
+T2C78 001:826.253 - 0.017ms returns 2 (0x2)
+T2C78 001:826.258 JLINK_ReadMemEx(0x08029986, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:826.262 -- Read from C cache (2 bytes @ 0x08029986)
+T2C78 001:826.268 Data: 02 48
+T2C78 001:826.273 - 0.017ms returns 2 (0x2)
+T2C78 001:826.278 JLINK_ReadMemEx(0x08029986, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:826.282 -- Read from C cache (2 bytes @ 0x08029986)
+T2C78 001:826.288 Data: 02 48
+T2C78 001:826.294 - 0.017ms returns 2 (0x2)
+T2C78 001:826.298 JLINK_ReadMemEx(0x08029988, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:826.303 CPU_ReadMem(64 bytes @ 0x080299C0)
+T2C78 001:826.981 -- Updating C cache (64 bytes @ 0x080299C0)
+T2C78 001:827.007 -- Read from C cache (60 bytes @ 0x08029988)
+T2C78 001:827.013 Data: DE F7 D0 F9 08 BD 00 00 11 76 00 08 70 B5 0C 46 ...
+T2C78 001:827.019 - 0.722ms returns 60 (0x3C)
+T2C78 001:827.024 JLINK_ReadMemEx(0x08029988, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.028 -- Read from C cache (2 bytes @ 0x08029988)
+T2C78 001:827.034 Data: DE F7
+T2C78 001:827.039 - 0.017ms returns 2 (0x2)
+T2C78 001:827.044 JLINK_ReadMemEx(0x08029988, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:827.048 -- Read from C cache (60 bytes @ 0x08029988)
+T2C78 001:827.056 Data: DE F7 D0 F9 08 BD 00 00 11 76 00 08 70 B5 0C 46 ...
+T2C78 001:827.061 - 0.018ms returns 60 (0x3C)
+T2C78 001:827.066 JLINK_ReadMemEx(0x08029988, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.070 -- Read from C cache (2 bytes @ 0x08029988)
+T2C78 001:827.075 Data: DE F7
+T2C78 001:827.081 - 0.017ms returns 2 (0x2)
+T2C78 001:827.086 JLINK_ReadMemEx(0x0802998A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.090 -- Read from C cache (2 bytes @ 0x0802998A)
+T2C78 001:827.096 Data: D0 F9
+T2C78 001:827.101 - 0.017ms returns 2 (0x2)
+T2C78 001:827.106 JLINK_ReadMemEx(0x0802998C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:827.110 -- Read from C cache (60 bytes @ 0x0802998C)
+T2C78 001:827.116 Data: 08 BD 00 00 11 76 00 08 70 B5 0C 46 08 46 F8 F7 ...
+T2C78 001:827.122 - 0.017ms returns 60 (0x3C)
+T2C78 001:827.126 JLINK_ReadMemEx(0x0802998C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.131 -- Read from C cache (2 bytes @ 0x0802998C)
+T2C78 001:827.136 Data: 08 BD
+T2C78 001:827.142 - 0.017ms returns 2 (0x2)
+T2C78 001:827.147 JLINK_ReadMemEx(0x0802998E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.151 -- Read from C cache (2 bytes @ 0x0802998E)
+T2C78 001:827.156 Data: 00 00
+T2C78 001:827.162 - 0.017ms returns 2 (0x2)
+T2C78 001:827.167 JLINK_ReadMemEx(0x08029994, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:827.171 -- Read from C cache (60 bytes @ 0x08029994)
+T2C78 001:827.177 Data: 70 B5 0C 46 08 46 F8 F7 C7 F9 06 46 F8 F7 6B F9 ...
+T2C78 001:827.182 - 0.017ms returns 60 (0x3C)
+T2C78 001:827.187 JLINK_ReadMemEx(0x08029994, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.191 -- Read from C cache (2 bytes @ 0x08029994)
+T2C78 001:827.197 Data: 70 B5
+T2C78 001:827.203 - 0.017ms returns 2 (0x2)
+T2C78 001:827.207 JLINK_ReadMemEx(0x08029996, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.211 -- Read from C cache (2 bytes @ 0x08029996)
+T2C78 001:827.217 Data: 0C 46
+T2C78 001:827.223 - 0.017ms returns 2 (0x2)
+T2C78 001:827.227 JLINK_ReadMemEx(0x08029996, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.232 -- Read from C cache (2 bytes @ 0x08029996)
+T2C78 001:827.237 Data: 0C 46
+T2C78 001:827.243 - 0.017ms returns 2 (0x2)
+T2C78 001:827.248 JLINK_ReadMemEx(0x08029998, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:827.252 -- Read from C cache (60 bytes @ 0x08029998)
+T2C78 001:827.258 Data: 08 46 F8 F7 C7 F9 06 46 F8 F7 6B F9 05 46 30 46 ...
+T2C78 001:827.263 - 0.017ms returns 60 (0x3C)
+T2C78 001:827.268 JLINK_ReadMemEx(0x08029998, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.272 -- Read from C cache (2 bytes @ 0x08029998)
+T2C78 001:827.278 Data: 08 46
+T2C78 001:827.283 - 0.017ms returns 2 (0x2)
+T2C78 001:827.288 JLINK_ReadMemEx(0x08029998, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:827.292 -- Read from C cache (60 bytes @ 0x08029998)
+T2C78 001:827.298 Data: 08 46 F8 F7 C7 F9 06 46 F8 F7 6B F9 05 46 30 46 ...
+T2C78 001:827.304 - 0.018ms returns 60 (0x3C)
+T2C78 001:827.309 JLINK_ReadMemEx(0x08029998, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.313 -- Read from C cache (2 bytes @ 0x08029998)
+T2C78 001:827.318 Data: 08 46
+T2C78 001:827.324 - 0.017ms returns 2 (0x2)
+T2C78 001:827.329 JLINK_ReadMemEx(0x0802999A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.333 -- Read from C cache (2 bytes @ 0x0802999A)
+T2C78 001:827.338 Data: F8 F7
+T2C78 001:827.344 - 0.017ms returns 2 (0x2)
+T2C78 001:827.349 JLINK_ReadMemEx(0x0802999A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.353 -- Read from C cache (2 bytes @ 0x0802999A)
+T2C78 001:827.359 Data: F8 F7
+T2C78 001:827.365 - 0.017ms returns 2 (0x2)
+T2C78 001:827.369 JLINK_ReadMemEx(0x0802999C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:827.373 -- Read from C cache (60 bytes @ 0x0802999C)
+T2C78 001:827.379 Data: C7 F9 06 46 F8 F7 6B F9 05 46 30 46 F9 F7 DC F8 ...
+T2C78 001:827.385 - 0.017ms returns 60 (0x3C)
+T2C78 001:827.390 JLINK_ReadMemEx(0x0802999C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.394 -- Read from C cache (2 bytes @ 0x0802999C)
+T2C78 001:827.400 Data: C7 F9
+T2C78 001:827.406 - 0.018ms returns 2 (0x2)
+T2C78 001:827.411 JLINK_ReadMemEx(0x0802999E, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.415 -- Read from C cache (2 bytes @ 0x0802999E)
+T2C78 001:827.421 Data: 06 46
+T2C78 001:827.426 - 0.017ms returns 2 (0x2)
+T2C78 001:827.431 JLINK_ReadMemEx(0x080299A0, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:827.435 -- Read from C cache (60 bytes @ 0x080299A0)
+T2C78 001:827.441 Data: F8 F7 6B F9 05 46 30 46 F9 F7 DC F8 01 46 2A 46 ...
+T2C78 001:827.447 - 0.017ms returns 60 (0x3C)
+T2C78 001:827.451 JLINK_ReadMemEx(0x080299A0, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.456 -- Read from C cache (2 bytes @ 0x080299A0)
+T2C78 001:827.461 Data: F8 F7
+T2C78 001:827.467 - 0.017ms returns 2 (0x2)
+T2C78 001:827.472 JLINK_ReadMemEx(0x080299A0, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:827.476 -- Read from C cache (60 bytes @ 0x080299A0)
+T2C78 001:827.482 Data: F8 F7 6B F9 05 46 30 46 F9 F7 DC F8 01 46 2A 46 ...
+T2C78 001:827.488 - 0.017ms returns 60 (0x3C)
+T2C78 001:827.492 JLINK_ReadMemEx(0x080299A0, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.496 -- Read from C cache (2 bytes @ 0x080299A0)
+T2C78 001:827.502 Data: F8 F7
+T2C78 001:827.508 - 0.017ms returns 2 (0x2)
+T2C78 001:827.513 JLINK_ReadMemEx(0x080299A2, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.517 -- Read from C cache (2 bytes @ 0x080299A2)
+T2C78 001:827.522 Data: 6B F9
+T2C78 001:827.528 - 0.017ms returns 2 (0x2)
+T2C78 001:827.533 JLINK_ReadMemEx(0x080299A4, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:827.537 -- Read from C cache (60 bytes @ 0x080299A4)
+T2C78 001:827.543 Data: 05 46 30 46 F9 F7 DC F8 01 46 2A 46 20 46 FA F7 ...
+T2C78 001:827.548 - 0.017ms returns 60 (0x3C)
+T2C78 001:827.553 JLINK_ReadMemEx(0x080299A4, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.557 -- Read from C cache (2 bytes @ 0x080299A4)
+T2C78 001:827.563 Data: 05 46
+T2C78 001:827.569 - 0.017ms returns 2 (0x2)
+T2C78 001:827.573 JLINK_ReadMemEx(0x080299A6, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.577 -- Read from C cache (2 bytes @ 0x080299A6)
+T2C78 001:827.583 Data: 30 46
+T2C78 001:827.589 - 0.017ms returns 2 (0x2)
+T2C78 001:827.593 JLINK_ReadMemEx(0x080299A6, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.598 -- Read from C cache (2 bytes @ 0x080299A6)
+T2C78 001:827.603 Data: 30 46
+T2C78 001:827.609 - 0.017ms returns 2 (0x2)
+T2C78 001:827.613 JLINK_ReadMemEx(0x080299A8, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:827.618 -- Read from C cache (60 bytes @ 0x080299A8)
+T2C78 001:827.623 Data: F9 F7 DC F8 01 46 2A 46 20 46 FA F7 D3 FF 01 21 ...
+T2C78 001:827.629 - 0.017ms returns 60 (0x3C)
+T2C78 001:827.634 JLINK_ReadMemEx(0x080299A8, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.638 -- Read from C cache (2 bytes @ 0x080299A8)
+T2C78 001:827.643 Data: F9 F7
+T2C78 001:827.649 - 0.017ms returns 2 (0x2)
+T2C78 001:827.653 JLINK_ReadMemEx(0x080299A8, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:827.658 -- Read from C cache (60 bytes @ 0x080299A8)
+T2C78 001:827.664 Data: F9 F7 DC F8 01 46 2A 46 20 46 FA F7 D3 FF 01 21 ...
+T2C78 001:827.669 - 0.017ms returns 60 (0x3C)
+T2C78 001:827.674 JLINK_ReadMemEx(0x080299A8, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.678 -- Read from C cache (2 bytes @ 0x080299A8)
+T2C78 001:827.684 Data: F9 F7
+T2C78 001:827.690 - 0.018ms returns 2 (0x2)
+T2C78 001:827.695 JLINK_ReadMemEx(0x080299AA, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.699 -- Read from C cache (2 bytes @ 0x080299AA)
+T2C78 001:827.704 Data: DC F8
+T2C78 001:827.710 - 0.017ms returns 2 (0x2)
+T2C78 001:827.715 JLINK_ReadMemEx(0x080299AC, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:827.719 -- Read from C cache (60 bytes @ 0x080299AC)
+T2C78 001:827.725 Data: 01 46 2A 46 20 46 FA F7 D3 FF 01 21 20 46 FA F7 ...
+T2C78 001:827.730 - 0.017ms returns 60 (0x3C)
+T2C78 001:827.735 JLINK_ReadMemEx(0x080299AC, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.739 -- Read from C cache (2 bytes @ 0x080299AC)
+T2C78 001:827.746 Data: 01 46
+T2C78 001:827.752 - 0.019ms returns 2 (0x2)
+T2C78 001:827.757 JLINK_ReadMemEx(0x080299AE, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.761 -- Read from C cache (2 bytes @ 0x080299AE)
+T2C78 001:827.767 Data: 2A 46
+T2C78 001:827.773 - 0.017ms returns 2 (0x2)
+T2C78 001:827.777 JLINK_ReadMemEx(0x080299AE, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.781 -- Read from C cache (2 bytes @ 0x080299AE)
+T2C78 001:827.787 Data: 2A 46
+T2C78 001:827.793 - 0.017ms returns 2 (0x2)
+T2C78 001:827.798 JLINK_ReadMemEx(0x080299B0, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:827.802 -- Read from C cache (60 bytes @ 0x080299B0)
+T2C78 001:827.808 Data: 20 46 FA F7 D3 FF 01 21 20 46 FA F7 8D FE 20 46 ...
+T2C78 001:827.814 - 0.017ms returns 60 (0x3C)
+T2C78 001:827.818 JLINK_ReadMemEx(0x080299B0, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.823 -- Read from C cache (2 bytes @ 0x080299B0)
+T2C78 001:827.828 Data: 20 46
+T2C78 001:827.834 - 0.018ms returns 2 (0x2)
+T2C78 001:827.839 JLINK_ReadMemEx(0x080299B0, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:827.843 -- Read from C cache (60 bytes @ 0x080299B0)
+T2C78 001:827.849 Data: 20 46 FA F7 D3 FF 01 21 20 46 FA F7 8D FE 20 46 ...
+T2C78 001:827.855 - 0.017ms returns 60 (0x3C)
+T2C78 001:827.860 JLINK_ReadMemEx(0x080299B0, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.864 -- Read from C cache (2 bytes @ 0x080299B0)
+T2C78 001:827.869 Data: 20 46
+T2C78 001:827.875 - 0.017ms returns 2 (0x2)
+T2C78 001:827.880 JLINK_ReadMemEx(0x080299B2, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.884 -- Read from C cache (2 bytes @ 0x080299B2)
+T2C78 001:827.890 Data: FA F7
+T2C78 001:827.895 - 0.017ms returns 2 (0x2)
+T2C78 001:827.900 JLINK_ReadMemEx(0x080299B2, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.904 -- Read from C cache (2 bytes @ 0x080299B2)
+T2C78 001:827.910 Data: FA F7
+T2C78 001:827.916 - 0.017ms returns 2 (0x2)
+T2C78 001:827.920 JLINK_ReadMemEx(0x080299B4, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:827.925 -- Read from C cache (60 bytes @ 0x080299B4)
+T2C78 001:827.931 Data: D3 FF 01 21 20 46 FA F7 8D FE 20 46 F7 F7 78 FB ...
+T2C78 001:827.937 - 0.018ms returns 60 (0x3C)
+T2C78 001:827.941 JLINK_ReadMemEx(0x080299B4, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.945 -- Read from C cache (2 bytes @ 0x080299B4)
+T2C78 001:827.951 Data: D3 FF
+T2C78 001:827.957 - 0.017ms returns 2 (0x2)
+T2C78 001:827.962 JLINK_ReadMemEx(0x080299B6, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:827.966 -- Read from C cache (2 bytes @ 0x080299B6)
+T2C78 001:827.971 Data: 01 21
+T2C78 001:827.977 - 0.017ms returns 2 (0x2)
+T2C78 001:827.982 JLINK_ReadMemEx(0x080299B8, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:827.986 -- Read from C cache (60 bytes @ 0x080299B8)
+T2C78 001:827.992 Data: 20 46 FA F7 8D FE 20 46 F7 F7 78 FB 05 46 10 48 ...
+T2C78 001:827.998 - 0.017ms returns 60 (0x3C)
+T2C78 001:828.002 JLINK_ReadMemEx(0x080299B8, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:828.007 -- Read from C cache (2 bytes @ 0x080299B8)
+T2C78 001:828.012 Data: 20 46
+T2C78 001:828.018 - 0.017ms returns 2 (0x2)
+T2C78 001:828.023 JLINK_ReadMemEx(0x080299B8, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:828.027 -- Read from C cache (60 bytes @ 0x080299B8)
+T2C78 001:828.033 Data: 20 46 FA F7 8D FE 20 46 F7 F7 78 FB 05 46 10 48 ...
+T2C78 001:828.039 - 0.018ms returns 60 (0x3C)
+T2C78 001:828.043 JLINK_ReadMemEx(0x080299B8, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:828.048 -- Read from C cache (2 bytes @ 0x080299B8)
+T2C78 001:828.053 Data: 20 46
+T2C78 001:828.059 - 0.017ms returns 2 (0x2)
+T2C78 001:828.064 JLINK_ReadMemEx(0x080299BA, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:828.068 -- Read from C cache (2 bytes @ 0x080299BA)
+T2C78 001:828.074 Data: FA F7
+T2C78 001:828.079 - 0.017ms returns 2 (0x2)
+T2C78 001:828.084 JLINK_ReadMemEx(0x080299BA, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:828.088 -- Read from C cache (2 bytes @ 0x080299BA)
+T2C78 001:828.094 Data: FA F7
+T2C78 001:828.100 - 0.017ms returns 2 (0x2)
+T2C78 001:828.105 JLINK_ReadMemEx(0x080299BC, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:828.109 -- Read from C cache (60 bytes @ 0x080299BC)
+T2C78 001:828.115 Data: 8D FE 20 46 F7 F7 78 FB 05 46 10 48 42 F2 64 01 ...
+T2C78 001:828.121 - 0.018ms returns 60 (0x3C)
+T2C78 001:828.126 JLINK_ReadMemEx(0x080299BC, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:828.130 -- Read from C cache (2 bytes @ 0x080299BC)
+T2C78 001:828.136 Data: 8D FE
+T2C78 001:828.141 - 0.017ms returns 2 (0x2)
+T2C78 001:828.146 JLINK_ReadMemEx(0x080299BE, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:828.151 -- Read from C cache (2 bytes @ 0x080299BE)
+T2C78 001:828.157 Data: 20 46
+T2C78 001:828.162 - 0.017ms returns 2 (0x2)
+T2C78 001:828.167 JLINK_ReadMemEx(0x080299C0, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:828.171 -- Read from C cache (60 bytes @ 0x080299C0)
+T2C78 001:828.178 Data: F7 F7 78 FB 05 46 10 48 42 F2 64 01 B0 F9 00 20 ...
+T2C78 001:828.183 - 0.018ms returns 60 (0x3C)
+T2C78 001:828.188 JLINK_ReadMemEx(0x080299C0, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:828.192 -- Read from C cache (2 bytes @ 0x080299C0)
+T2C78 001:828.198 Data: F7 F7
+T2C78 001:828.203 - 0.017ms returns 2 (0x2)
+T2C78 001:828.208 JLINK_ReadMemEx(0x080299C0, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:828.213 -- Read from C cache (60 bytes @ 0x080299C0)
+T2C78 001:828.219 Data: F7 F7 78 FB 05 46 10 48 42 F2 64 01 B0 F9 00 20 ...
+T2C78 001:828.225 - 0.018ms returns 60 (0x3C)
+T2C78 001:828.230 JLINK_ReadMemEx(0x080299C0, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:828.234 -- Read from C cache (2 bytes @ 0x080299C0)
+T2C78 001:828.240 Data: F7 F7
+T2C78 001:828.246 - 0.018ms returns 2 (0x2)
+T2C78 001:828.250 JLINK_ReadMemEx(0x080299C2, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:828.255 -- Read from C cache (2 bytes @ 0x080299C2)
+T2C78 001:828.260 Data: 78 FB
+T2C78 001:828.266 - 0.017ms returns 2 (0x2)
+T2C78 001:828.271 JLINK_ReadMemEx(0x080299C4, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:828.275 -- Read from C cache (60 bytes @ 0x080299C4)
+T2C78 001:828.281 Data: 05 46 10 48 42 F2 64 01 B0 F9 00 20 28 46 FA F7 ...
+T2C78 001:828.287 - 0.017ms returns 60 (0x3C)
+T2C78 001:828.291 JLINK_ReadMemEx(0x080299C4, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:828.295 -- Read from C cache (2 bytes @ 0x080299C4)
+T2C78 001:828.301 Data: 05 46
+T2C78 001:828.307 - 0.017ms returns 2 (0x2)
+T2C78 001:828.312 JLINK_ReadMemEx(0x080299C6, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:828.318 -- Read from C cache (2 bytes @ 0x080299C6)
+T2C78 001:828.324 Data: 10 48
+T2C78 001:828.330 - 0.019ms returns 2 (0x2)
+T2C78 001:828.335 JLINK_ReadMemEx(0x080299C6, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:828.339 -- Read from C cache (2 bytes @ 0x080299C6)
+T2C78 001:828.345 Data: 10 48
+T2C78 001:828.350 - 0.017ms returns 2 (0x2)
+T2C78 001:828.355 JLINK_ReadMemEx(0x080299C8, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:828.360 CPU_ReadMem(64 bytes @ 0x08029A00)
+T2C78 001:828.959 -- Updating C cache (64 bytes @ 0x08029A00)
+T2C78 001:828.966 -- Read from C cache (60 bytes @ 0x080299C8)
+T2C78 001:828.972 Data: 42 F2 64 01 B0 F9 00 20 28 46 FA F7 C3 FF 00 21 ...
+T2C78 001:828.977 - 0.624ms returns 60 (0x3C)
+T2C78 001:828.982 JLINK_ReadMemEx(0x080299C8, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:828.987 -- Read from C cache (2 bytes @ 0x080299C8)
+T2C78 001:828.993 Data: 42 F2
+T2C78 001:828.999 - 0.018ms returns 2 (0x2)
+T2C78 001:829.004 JLINK_ReadMemEx(0x080299C8, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:829.008 -- Read from C cache (60 bytes @ 0x080299C8)
+T2C78 001:829.014 Data: 42 F2 64 01 B0 F9 00 20 28 46 FA F7 C3 FF 00 21 ...
+T2C78 001:829.020 - 0.018ms returns 60 (0x3C)
+T2C78 001:829.025 JLINK_ReadMemEx(0x080299C8, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.029 -- Read from C cache (2 bytes @ 0x080299C8)
+T2C78 001:829.035 Data: 42 F2
+T2C78 001:829.041 - 0.017ms returns 2 (0x2)
+T2C78 001:829.046 JLINK_ReadMemEx(0x080299CA, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.050 -- Read from C cache (2 bytes @ 0x080299CA)
+T2C78 001:829.081 Data: 64 01
+T2C78 001:829.087 - 0.043ms returns 2 (0x2)
+T2C78 001:829.092 JLINK_ReadMemEx(0x080299CC, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:829.120 -- Read from C cache (60 bytes @ 0x080299CC)
+T2C78 001:829.127 Data: B0 F9 00 20 28 46 FA F7 C3 FF 00 21 28 46 FA F7 ...
+T2C78 001:829.132 - 0.042ms returns 60 (0x3C)
+T2C78 001:829.137 JLINK_ReadMemEx(0x080299CC, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.141 -- Read from C cache (2 bytes @ 0x080299CC)
+T2C78 001:829.147 Data: B0 F9
+T2C78 001:829.152 - 0.017ms returns 2 (0x2)
+T2C78 001:829.157 JLINK_ReadMemEx(0x080299CE, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.161 -- Read from C cache (2 bytes @ 0x080299CE)
+T2C78 001:829.167 Data: 00 20
+T2C78 001:829.172 - 0.017ms returns 2 (0x2)
+T2C78 001:829.177 JLINK_ReadMemEx(0x080299D0, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:829.181 -- Read from C cache (60 bytes @ 0x080299D0)
+T2C78 001:829.187 Data: 28 46 FA F7 C3 FF 00 21 28 46 FA F7 7D FE 02 23 ...
+T2C78 001:829.193 - 0.017ms returns 60 (0x3C)
+T2C78 001:829.198 JLINK_ReadMemEx(0x080299D0, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.202 -- Read from C cache (2 bytes @ 0x080299D0)
+T2C78 001:829.207 Data: 28 46
+T2C78 001:829.213 - 0.017ms returns 2 (0x2)
+T2C78 001:829.218 JLINK_ReadMemEx(0x080299D2, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.222 -- Read from C cache (2 bytes @ 0x080299D2)
+T2C78 001:829.227 Data: FA F7
+T2C78 001:829.233 - 0.017ms returns 2 (0x2)
+T2C78 001:829.238 JLINK_ReadMemEx(0x080299D2, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.242 -- Read from C cache (2 bytes @ 0x080299D2)
+T2C78 001:829.248 Data: FA F7
+T2C78 001:829.253 - 0.017ms returns 2 (0x2)
+T2C78 001:829.258 JLINK_ReadMemEx(0x080299D4, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:829.262 -- Read from C cache (60 bytes @ 0x080299D4)
+T2C78 001:829.268 Data: C3 FF 00 21 28 46 FA F7 7D FE 02 23 1A 46 00 21 ...
+T2C78 001:829.274 - 0.017ms returns 60 (0x3C)
+T2C78 001:829.278 JLINK_ReadMemEx(0x080299D4, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.283 -- Read from C cache (2 bytes @ 0x080299D4)
+T2C78 001:829.288 Data: C3 FF
+T2C78 001:829.294 - 0.017ms returns 2 (0x2)
+T2C78 001:829.299 JLINK_ReadMemEx(0x080299D6, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.303 -- Read from C cache (2 bytes @ 0x080299D6)
+T2C78 001:829.308 Data: 00 21
+T2C78 001:829.314 - 0.017ms returns 2 (0x2)
+T2C78 001:829.319 JLINK_ReadMemEx(0x080299D8, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:829.323 -- Read from C cache (60 bytes @ 0x080299D8)
+T2C78 001:829.329 Data: 28 46 FA F7 7D FE 02 23 1A 46 00 21 28 46 FA F7 ...
+T2C78 001:829.334 - 0.017ms returns 60 (0x3C)
+T2C78 001:829.339 JLINK_ReadMemEx(0x080299D8, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.343 -- Read from C cache (2 bytes @ 0x080299D8)
+T2C78 001:829.349 Data: 28 46
+T2C78 001:829.354 - 0.017ms returns 2 (0x2)
+T2C78 001:829.359 JLINK_ReadMemEx(0x080299D8, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:829.363 -- Read from C cache (60 bytes @ 0x080299D8)
+T2C78 001:829.369 Data: 28 46 FA F7 7D FE 02 23 1A 46 00 21 28 46 FA F7 ...
+T2C78 001:829.375 - 0.017ms returns 60 (0x3C)
+T2C78 001:829.380 JLINK_ReadMemEx(0x080299D8, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.384 -- Read from C cache (2 bytes @ 0x080299D8)
+T2C78 001:829.389 Data: 28 46
+T2C78 001:829.395 - 0.017ms returns 2 (0x2)
+T2C78 001:829.400 JLINK_ReadMemEx(0x080299DA, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.404 -- Read from C cache (2 bytes @ 0x080299DA)
+T2C78 001:829.409 Data: FA F7
+T2C78 001:829.415 - 0.017ms returns 2 (0x2)
+T2C78 001:829.420 JLINK_ReadMemEx(0x080299DA, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.424 -- Read from C cache (2 bytes @ 0x080299DA)
+T2C78 001:829.431 Data: FA F7
+T2C78 001:829.436 - 0.018ms returns 2 (0x2)
+T2C78 001:829.441 JLINK_ReadMemEx(0x080299DC, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:829.445 -- Read from C cache (60 bytes @ 0x080299DC)
+T2C78 001:829.462 Data: 7D FE 02 23 1A 46 00 21 28 46 FA F7 57 FE 20 46 ...
+T2C78 001:829.467 - 0.028ms returns 60 (0x3C)
+T2C78 001:829.472 JLINK_ReadMemEx(0x080299DC, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.476 -- Read from C cache (2 bytes @ 0x080299DC)
+T2C78 001:829.482 Data: 7D FE
+T2C78 001:829.487 - 0.017ms returns 2 (0x2)
+T2C78 001:829.493 JLINK_ReadMemEx(0x080299DE, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.497 -- Read from C cache (2 bytes @ 0x080299DE)
+T2C78 001:829.503 Data: 02 23
+T2C78 001:829.509 - 0.017ms returns 2 (0x2)
+T2C78 001:829.513 JLINK_ReadMemEx(0x080299E0, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:829.517 -- Read from C cache (60 bytes @ 0x080299E0)
+T2C78 001:829.523 Data: 1A 46 00 21 28 46 FA F7 57 FE 20 46 F7 F7 62 FB ...
+T2C78 001:829.529 - 0.017ms returns 60 (0x3C)
+T2C78 001:829.533 JLINK_ReadMemEx(0x080299E0, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.538 -- Read from C cache (2 bytes @ 0x080299E0)
+T2C78 001:829.543 Data: 1A 46
+T2C78 001:829.549 - 0.017ms returns 2 (0x2)
+T2C78 001:829.554 JLINK_ReadMemEx(0x080299E0, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:829.558 -- Read from C cache (60 bytes @ 0x080299E0)
+T2C78 001:829.564 Data: 1A 46 00 21 28 46 FA F7 57 FE 20 46 F7 F7 62 FB ...
+T2C78 001:829.569 - 0.017ms returns 60 (0x3C)
+T2C78 001:829.574 JLINK_ReadMemEx(0x080299E0, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.578 -- Read from C cache (2 bytes @ 0x080299E0)
+T2C78 001:829.584 Data: 1A 46
+T2C78 001:829.589 - 0.017ms returns 2 (0x2)
+T2C78 001:829.594 JLINK_ReadMemEx(0x080299E2, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.598 -- Read from C cache (2 bytes @ 0x080299E2)
+T2C78 001:829.604 Data: 00 21
+T2C78 001:829.609 - 0.017ms returns 2 (0x2)
+T2C78 001:829.614 JLINK_ReadMemEx(0x080299E2, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.618 -- Read from C cache (2 bytes @ 0x080299E2)
+T2C78 001:829.624 Data: 00 21
+T2C78 001:829.629 - 0.018ms returns 2 (0x2)
+T2C78 001:829.635 JLINK_ReadMemEx(0x080299E4, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:829.640 -- Read from C cache (60 bytes @ 0x080299E4)
+T2C78 001:829.646 Data: 28 46 FA F7 57 FE 20 46 F7 F7 62 FB 04 46 01 21 ...
+T2C78 001:829.651 - 0.017ms returns 60 (0x3C)
+T2C78 001:829.656 JLINK_ReadMemEx(0x080299E4, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.660 -- Read from C cache (2 bytes @ 0x080299E4)
+T2C78 001:829.666 Data: 28 46
+T2C78 001:829.671 - 0.017ms returns 2 (0x2)
+T2C78 001:829.676 JLINK_ReadMemEx(0x080299E4, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:829.681 -- Read from C cache (60 bytes @ 0x080299E4)
+T2C78 001:829.687 Data: 28 46 FA F7 57 FE 20 46 F7 F7 62 FB 04 46 01 21 ...
+T2C78 001:829.692 - 0.017ms returns 60 (0x3C)
+T2C78 001:829.697 JLINK_ReadMemEx(0x080299E4, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.701 -- Read from C cache (2 bytes @ 0x080299E4)
+T2C78 001:829.707 Data: 28 46
+T2C78 001:829.712 - 0.017ms returns 2 (0x2)
+T2C78 001:829.717 JLINK_ReadMemEx(0x080299E6, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.721 -- Read from C cache (2 bytes @ 0x080299E6)
+T2C78 001:829.727 Data: FA F7
+T2C78 001:829.732 - 0.017ms returns 2 (0x2)
+T2C78 001:829.737 JLINK_ReadMemEx(0x080299E6, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.741 -- Read from C cache (2 bytes @ 0x080299E6)
+T2C78 001:829.747 Data: FA F7
+T2C78 001:829.752 - 0.017ms returns 2 (0x2)
+T2C78 001:829.757 JLINK_ReadMemEx(0x080299E8, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:829.761 -- Read from C cache (60 bytes @ 0x080299E8)
+T2C78 001:829.767 Data: 57 FE 20 46 F7 F7 62 FB 04 46 01 21 FA F7 82 FE ...
+T2C78 001:829.773 - 0.017ms returns 60 (0x3C)
+T2C78 001:829.778 JLINK_ReadMemEx(0x080299E8, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.782 -- Read from C cache (2 bytes @ 0x080299E8)
+T2C78 001:829.787 Data: 57 FE
+T2C78 001:829.793 - 0.017ms returns 2 (0x2)
+T2C78 001:829.798 JLINK_ReadMemEx(0x080299EA, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.802 -- Read from C cache (2 bytes @ 0x080299EA)
+T2C78 001:829.808 Data: 20 46
+T2C78 001:829.814 - 0.018ms returns 2 (0x2)
+T2C78 001:829.819 JLINK_ReadMemEx(0x080299EC, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:829.823 -- Read from C cache (60 bytes @ 0x080299EC)
+T2C78 001:829.829 Data: F7 F7 62 FB 04 46 01 21 FA F7 82 FE 20 46 BD E8 ...
+T2C78 001:829.834 - 0.017ms returns 60 (0x3C)
+T2C78 001:829.839 JLINK_ReadMemEx(0x080299EC, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.843 -- Read from C cache (2 bytes @ 0x080299EC)
+T2C78 001:829.849 Data: F7 F7
+T2C78 001:829.854 - 0.017ms returns 2 (0x2)
+T2C78 001:829.859 JLINK_ReadMemEx(0x080299EC, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:829.864 -- Read from C cache (60 bytes @ 0x080299EC)
+T2C78 001:829.870 Data: F7 F7 62 FB 04 46 01 21 FA F7 82 FE 20 46 BD E8 ...
+T2C78 001:829.875 - 0.017ms returns 60 (0x3C)
+T2C78 001:829.880 JLINK_ReadMemEx(0x080299EC, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.884 -- Read from C cache (2 bytes @ 0x080299EC)
+T2C78 001:829.889 Data: F7 F7
+T2C78 001:829.896 - 0.018ms returns 2 (0x2)
+T2C78 001:829.901 JLINK_ReadMemEx(0x080299EE, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.905 -- Read from C cache (2 bytes @ 0x080299EE)
+T2C78 001:829.911 Data: 62 FB
+T2C78 001:829.916 - 0.017ms returns 2 (0x2)
+T2C78 001:829.921 JLINK_ReadMemEx(0x080299F0, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:829.925 -- Read from C cache (60 bytes @ 0x080299F0)
+T2C78 001:829.931 Data: 04 46 01 21 FA F7 82 FE 20 46 BD E8 70 40 42 F2 ...
+T2C78 001:829.937 - 0.017ms returns 60 (0x3C)
+T2C78 001:829.942 JLINK_ReadMemEx(0x080299F0, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.946 -- Read from C cache (2 bytes @ 0x080299F0)
+T2C78 001:829.951 Data: 04 46
+T2C78 001:829.957 - 0.017ms returns 2 (0x2)
+T2C78 001:829.961 JLINK_ReadMemEx(0x080299F2, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.966 -- Read from C cache (2 bytes @ 0x080299F2)
+T2C78 001:829.971 Data: 01 21
+T2C78 001:829.977 - 0.017ms returns 2 (0x2)
+T2C78 001:829.982 JLINK_ReadMemEx(0x080299F2, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:829.986 -- Read from C cache (2 bytes @ 0x080299F2)
+T2C78 001:829.992 Data: 01 21
+T2C78 001:829.997 - 0.017ms returns 2 (0x2)
+T2C78 001:830.002 JLINK_ReadMemEx(0x080299F4, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:830.006 -- Read from C cache (60 bytes @ 0x080299F4)
+T2C78 001:830.012 Data: FA F7 82 FE 20 46 BD E8 70 40 42 F2 64 01 FB F7 ...
+T2C78 001:830.018 - 0.017ms returns 60 (0x3C)
+T2C78 001:830.022 JLINK_ReadMemEx(0x080299F4, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:830.027 -- Read from C cache (2 bytes @ 0x080299F4)
+T2C78 001:830.032 Data: FA F7
+T2C78 001:830.038 - 0.017ms returns 2 (0x2)
+T2C78 001:830.043 JLINK_ReadMemEx(0x080299F4, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:830.048 -- Read from C cache (60 bytes @ 0x080299F4)
+T2C78 001:830.054 Data: FA F7 82 FE 20 46 BD E8 70 40 42 F2 64 01 FB F7 ...
+T2C78 001:830.060 - 0.018ms returns 60 (0x3C)
+T2C78 001:830.064 JLINK_ReadMemEx(0x080299F4, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:830.068 -- Read from C cache (2 bytes @ 0x080299F4)
+T2C78 001:830.074 Data: FA F7
+T2C78 001:830.080 - 0.017ms returns 2 (0x2)
+T2C78 001:830.085 JLINK_ReadMemEx(0x080299F6, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:830.089 -- Read from C cache (2 bytes @ 0x080299F6)
+T2C78 001:830.094 Data: 82 FE
+T2C78 001:830.100 - 0.017ms returns 2 (0x2)
+T2C78 001:830.105 JLINK_ReadMemEx(0x080299F8, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:830.109 -- Read from C cache (60 bytes @ 0x080299F8)
+T2C78 001:830.115 Data: 20 46 BD E8 70 40 42 F2 64 01 FB F7 CF B9 00 00 ...
+T2C78 001:830.121 - 0.017ms returns 60 (0x3C)
+T2C78 001:830.125 JLINK_ReadMemEx(0x080299F8, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:830.130 -- Read from C cache (2 bytes @ 0x080299F8)
+T2C78 001:830.136 Data: 20 46
+T2C78 001:830.141 - 0.018ms returns 2 (0x2)
+T2C78 001:830.146 JLINK_ReadMemEx(0x080299FA, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:830.151 -- Read from C cache (2 bytes @ 0x080299FA)
+T2C78 001:830.156 Data: BD E8
+T2C78 001:830.163 - 0.019ms returns 2 (0x2)
+T2C78 001:830.168 JLINK_ReadMemEx(0x080299FA, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:830.173 -- Read from C cache (2 bytes @ 0x080299FA)
+T2C78 001:830.178 Data: BD E8
+T2C78 001:830.184 - 0.017ms returns 2 (0x2)
+T2C78 001:830.189 JLINK_ReadMemEx(0x080299FC, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:830.193 -- Read from C cache (60 bytes @ 0x080299FC)
+T2C78 001:830.199 Data: 70 40 42 F2 64 01 FB F7 CF B9 00 00 2C 02 00 20 ...
+T2C78 001:830.206 - 0.019ms returns 60 (0x3C)
+T2C78 001:830.211 JLINK_ReadMemEx(0x080299FC, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:830.215 -- Read from C cache (2 bytes @ 0x080299FC)
+T2C78 001:830.221 Data: 70 40
+T2C78 001:830.226 - 0.017ms returns 2 (0x2)
+T2C78 001:830.231 JLINK_ReadMemEx(0x080299FE, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:830.235 -- Read from C cache (2 bytes @ 0x080299FE)
+T2C78 001:830.241 Data: 42 F2
+T2C78 001:830.246 - 0.017ms returns 2 (0x2)
+T2C78 001:830.251 JLINK_ReadMemEx(0x08029A00, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:830.255 -- Read from C cache (60 bytes @ 0x08029A00)
+T2C78 001:830.261 Data: 64 01 FB F7 CF B9 00 00 2C 02 00 20 D8 F7 38 FB ...
+T2C78 001:830.267 - 0.018ms returns 60 (0x3C)
+T2C78 001:830.272 JLINK_ReadMemEx(0x08029A00, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:830.276 -- Read from C cache (2 bytes @ 0x08029A00)
+T2C78 001:830.282 Data: 64 01
+T2C78 001:830.288 - 0.018ms returns 2 (0x2)
+T2C78 001:830.293 JLINK_ReadMemEx(0x08029A02, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:830.297 -- Read from C cache (2 bytes @ 0x08029A02)
+T2C78 001:830.303 Data: FB F7
+T2C78 001:830.309 - 0.018ms returns 2 (0x2)
+T2C78 001:830.314 JLINK_ReadMemEx(0x08029A04, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:830.318 -- Read from C cache (60 bytes @ 0x08029A04)
+T2C78 001:830.324 Data: CF B9 00 00 2C 02 00 20 D8 F7 38 FB DB F7 AA FB ...
+T2C78 001:830.330 - 0.018ms returns 60 (0x3C)
+T2C78 001:830.335 JLINK_ReadMemEx(0x08029A04, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:830.339 -- Read from C cache (2 bytes @ 0x08029A04)
+T2C78 001:830.345 Data: CF B9
+T2C78 001:830.350 - 0.017ms returns 2 (0x2)
+T2C78 001:830.368 JLINK_ReadMemEx(0x08029A0A, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:830.372 -- Read from C cache (2 bytes @ 0x08029A0A)
+T2C78 001:830.378 Data: 00 20
+T2C78 001:830.384 - 0.018ms returns 2 (0x2)
+T2C78 001:830.388 JLINK_ReadMemEx(0x08029A0C, 0x3C Bytes, Flags = 0x02000000)
+T2C78 001:830.393 CPU_ReadMem(64 bytes @ 0x08029A40)
+T2C78 001:831.009 -- Updating C cache (64 bytes @ 0x08029A40)
+T2C78 001:831.017 -- Read from C cache (60 bytes @ 0x08029A0C)
+T2C78 001:831.023 Data: D8 F7 38 FB DB F7 AA FB DA F7 24 FE DA F7 9A FD ...
+T2C78 001:831.029 - 0.642ms returns 60 (0x3C)
+T2C78 001:831.034 JLINK_ReadMemEx(0x08029A0C, 0x2 Bytes, Flags = 0x02000000)
+T2C78 001:831.039 -- Read from C cache (2 bytes @ 0x08029A0C)
+T2C78 001:831.045 Data: D8 F7
+T2C78 001:831.050 - 0.018ms returns 2 (0x2)
+T19A8 003:913.898 JLINK_ReadMemEx(0x08029A0C, 0x2 Bytes, Flags = 0x02000000)
+T19A8 003:913.942 -- Read from C cache (2 bytes @ 0x08029A0C)
+T19A8 003:913.957 Data: D8 F7
+T19A8 003:913.971 - 0.077ms returns 2 (0x2)
+T19A8 003:913.983 JLINK_HasError()
+T19A8 003:913.996 JLINK_HasError()
+T19A8 003:914.007 JLINK_Go()
+T19A8 003:914.417 CPU_ReadMem(4 bytes @ 0xE0001000)
+T19A8 003:914.924 CPU_WriteMem(4 bytes @ 0xE0002008)
+T19A8 003:915.732 - 1.744ms
+T19A8 004:016.813 JLINK_HasError()
+T19A8 004:016.891 JLINK_IsHalted()
+T19A8 004:017.485 - 0.642ms returns FALSE
+T19A8 004:117.614 JLINK_HasError()
+T19A8 004:117.685 JLINK_IsHalted()
+T19A8 004:118.109 - 0.470ms returns FALSE
+T19A8 004:218.493 JLINK_HasError()
+T19A8 004:218.541 JLINK_IsHalted()
+T19A8 004:218.897 - 0.365ms returns FALSE
+T19A8 004:319.093 JLINK_HasError()
+T19A8 004:319.153 JLINK_IsHalted()
+T19A8 004:319.560 - 0.423ms returns FALSE
+T19A8 004:421.023 JLINK_HasError()
+T19A8 004:421.092 JLINK_IsHalted()
+T19A8 004:421.513 - 0.437ms returns FALSE
+T19A8 004:522.490 JLINK_HasError()
+T19A8 004:522.563 JLINK_HasError()
+T19A8 004:522.587 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 004:522.638 CPU_ReadMem(4 bytes @ 0xE0001004)
+T19A8 004:523.206 Data: B2 47 02 03
+T19A8 004:523.241 Debug reg: DWT_CYCCNT
+T19A8 004:523.269 - 0.692ms returns 1 (0x1)
+T2C78 004:523.640 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 004:523.680 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 004:524.329 Data: 00
+T2C78 004:524.399 - 0.770ms returns 1 (0x1)
+T2C78 004:524.487 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 004:524.535 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 004:526.213 Data: 32
+T2C78 004:526.246 - 1.769ms returns 1 (0x1)
+T2C78 004:526.404 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 004:526.433 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 004:526.930 Data: D0 00 00 00
+T2C78 004:526.968 - 0.574ms returns 4 (0x4)
+T2C78 004:528.461 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 004:528.520 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 004:528.910 Data: 00 00 00 00
+T2C78 004:528.940 - 0.487ms returns 4 (0x4)
+T2C78 004:528.982 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 004:529.006 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 004:529.476 Data: D7 00 00 00
+T2C78 004:529.507 - 0.532ms returns 4 (0x4)
+T2C78 004:530.363 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 004:530.398 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 004:530.816 Data: 3F 01 00 00
+T2C78 004:530.839 - 0.482ms returns 4 (0x4)
+T2C78 004:531.525 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 004:531.554 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 004:531.872 Data: 00 0A 00 00
+T2C78 004:531.892 - 0.373ms returns 4 (0x4)
+T2C78 004:532.543 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 004:532.567 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 004:532.886 Data: 00 00 00 00
+T2C78 004:532.922 - 0.384ms returns 4 (0x4)
+T19A8 004:533.121 JLINK_IsHalted()
+T19A8 004:533.430 - 0.324ms returns FALSE
+T19A8 004:633.540 JLINK_HasError()
+T19A8 004:633.608 JLINK_IsHalted()
+T19A8 004:634.091 - 0.499ms returns FALSE
+T19A8 004:734.474 JLINK_HasError()
+T19A8 004:734.553 JLINK_IsHalted()
+T19A8 004:735.084 - 0.573ms returns FALSE
+T19A8 004:835.332 JLINK_HasError()
+T19A8 004:835.402 JLINK_IsHalted()
+T19A8 004:835.817 - 0.431ms returns FALSE
+T19A8 004:935.981 JLINK_HasError()
+T19A8 004:936.059 JLINK_IsHalted()
+T19A8 004:936.635 - 0.628ms returns FALSE
+T19A8 005:036.771 JLINK_HasError()
+T19A8 005:036.837 JLINK_HasError()
+T19A8 005:036.861 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 005:036.908 Data: B2 47 02 03
+T19A8 005:036.941 Debug reg: DWT_CYCCNT
+T19A8 005:036.970 - 0.118ms returns 1 (0x1)
+T2C78 005:037.311 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 005:037.407 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 005:038.042 Data: 00
+T2C78 005:038.113 - 0.812ms returns 1 (0x1)
+T2C78 005:038.195 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 005:038.239 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 005:038.652 Data: 32
+T2C78 005:038.704 - 0.519ms returns 1 (0x1)
+T2C78 005:038.869 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 005:038.910 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 005:039.283 Data: E5 00 00 00
+T2C78 005:039.316 - 0.456ms returns 4 (0x4)
+T2C78 005:040.721 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 005:040.777 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 005:041.126 Data: B2 00 00 00
+T2C78 005:041.161 - 0.450ms returns 4 (0x4)
+T2C78 005:041.780 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 005:041.821 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 005:042.209 Data: EF 00 00 00
+T2C78 005:042.243 - 0.471ms returns 4 (0x4)
+T2C78 005:043.254 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 005:043.292 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 005:043.629 Data: 3F 01 00 00
+T2C78 005:043.667 - 0.422ms returns 4 (0x4)
+T2C78 005:044.094 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 005:044.121 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 005:044.452 Data: 1A 06 00 00
+T2C78 005:044.476 - 0.388ms returns 4 (0x4)
+T2C78 005:045.198 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 005:045.226 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 005:045.589 Data: 00 00 00 00
+T2C78 005:045.611 - 0.421ms returns 4 (0x4)
+T19A8 005:045.838 JLINK_IsHalted()
+T19A8 005:046.246 - 0.426ms returns FALSE
+T19A8 005:146.831 JLINK_HasError()
+T19A8 005:147.026 JLINK_IsHalted()
+T19A8 005:147.497 - 0.516ms returns FALSE
+T19A8 005:247.625 JLINK_HasError()
+T19A8 005:247.690 JLINK_IsHalted()
+T19A8 005:248.199 - 0.525ms returns FALSE
+T19A8 005:348.492 JLINK_HasError()
+T19A8 005:348.550 JLINK_IsHalted()
+T19A8 005:348.926 - 0.387ms returns FALSE
+T19A8 005:449.481 JLINK_HasError()
+T19A8 005:449.541 JLINK_IsHalted()
+T19A8 005:449.938 - 0.410ms returns FALSE
+T19A8 005:550.015 JLINK_HasError()
+T19A8 005:550.069 JLINK_IsHalted()
+T19A8 005:550.447 - 0.412ms returns FALSE
+T19A8 005:650.622 JLINK_HasError()
+T19A8 005:650.689 JLINK_HasError()
+T19A8 005:650.713 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 005:650.760 Data: B2 47 02 03
+T19A8 005:650.792 Debug reg: DWT_CYCCNT
+T19A8 005:650.820 - 0.116ms returns 1 (0x1)
+T2C78 005:651.164 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 005:651.257 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 005:651.655 Data: 00
+T2C78 005:651.694 - 0.540ms returns 1 (0x1)
+T2C78 005:651.764 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 005:651.800 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 005:652.208 Data: 32
+T2C78 005:652.249 - 0.495ms returns 1 (0x1)
+T2C78 005:652.376 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 005:652.409 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 005:652.793 Data: E5 00 00 00
+T2C78 005:652.825 - 0.459ms returns 4 (0x4)
+T2C78 005:653.874 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 005:653.933 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 005:654.354 Data: B2 00 00 00
+T2C78 005:654.424 - 0.561ms returns 4 (0x4)
+T2C78 005:655.303 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 005:655.363 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 005:655.908 Data: EF 00 00 00
+T2C78 005:655.977 - 0.684ms returns 4 (0x4)
+T2C78 005:657.167 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 005:657.234 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 005:657.663 Data: 3F 01 00 00
+T2C78 005:657.704 - 0.545ms returns 4 (0x4)
+T2C78 005:657.755 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 005:657.783 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 005:658.568 Data: 1A 06 00 00
+T2C78 005:658.628 - 0.882ms returns 4 (0x4)
+T2C78 005:659.565 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 005:659.603 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 005:659.982 Data: 00 00 00 00
+T2C78 005:660.009 - 0.452ms returns 4 (0x4)
+T19A8 005:660.149 JLINK_IsHalted()
+T19A8 005:660.499 - 0.364ms returns FALSE
+T19A8 005:761.078 JLINK_HasError()
+T19A8 005:761.148 JLINK_IsHalted()
+T19A8 005:761.561 - 0.429ms returns FALSE
+T19A8 005:862.756 JLINK_HasError()
+T19A8 005:862.837 JLINK_IsHalted()
+T19A8 005:863.262 - 0.467ms returns FALSE
+T19A8 005:963.408 JLINK_HasError()
+T19A8 005:963.477 JLINK_IsHalted()
+T19A8 005:963.899 - 0.436ms returns FALSE
+T19A8 006:064.051 JLINK_HasError()
+T19A8 006:064.217 JLINK_IsHalted()
+T19A8 006:064.737 - 0.535ms returns FALSE
+T19A8 006:164.897 JLINK_HasError()
+T19A8 006:164.964 JLINK_HasError()
+T19A8 006:164.988 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 006:165.036 Data: B2 47 02 03
+T19A8 006:165.068 Debug reg: DWT_CYCCNT
+T19A8 006:165.096 - 0.118ms returns 1 (0x1)
+T2C78 006:165.533 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:165.631 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 006:166.068 Data: 00
+T2C78 006:166.102 - 0.588ms returns 1 (0x1)
+T2C78 006:166.159 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:166.184 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 006:166.620 Data: 32
+T2C78 006:166.649 - 0.499ms returns 1 (0x1)
+T2C78 006:166.749 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 006:166.771 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 006:167.104 Data: C1 00 00 00
+T2C78 006:167.133 - 0.393ms returns 4 (0x4)
+T2C78 006:167.908 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 006:167.946 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 006:168.280 Data: 00 00 00 00
+T2C78 006:168.308 - 0.408ms returns 4 (0x4)
+T2C78 006:168.784 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 006:168.811 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 006:169.360 Data: EF 00 00 00
+T2C78 006:169.405 - 0.628ms returns 4 (0x4)
+T2C78 006:169.460 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 006:169.488 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 006:169.820 Data: 4D 00 00 00
+T2C78 006:169.848 - 0.395ms returns 4 (0x4)
+T2C78 006:170.313 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 006:170.339 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 006:171.044 Data: 52 0E 00 00
+T2C78 006:171.088 - 0.780ms returns 4 (0x4)
+T2C78 006:171.667 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 006:171.701 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 006:172.073 Data: 00 00 00 00
+T2C78 006:172.114 - 0.452ms returns 4 (0x4)
+T19A8 006:172.256 JLINK_IsHalted()
+T19A8 006:172.660 - 0.425ms returns FALSE
+T19A8 006:272.978 JLINK_HasError()
+T19A8 006:273.044 JLINK_IsHalted()
+T19A8 006:273.621 - 0.592ms returns FALSE
+T2C78 006:299.366 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:299.385 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 006:299.748 Data: 00
+T2C78 006:299.761 - 0.397ms returns 1 (0x1)
+T2C78 006:299.772 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:299.780 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 006:300.135 Data: 00
+T2C78 006:300.142 - 0.371ms returns 1 (0x1)
+T2C78 006:300.148 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:300.154 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 006:300.526 Data: 63
+T2C78 006:300.537 - 0.392ms returns 1 (0x1)
+T2C78 006:300.549 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:300.558 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 006:300.953 Data: 63
+T2C78 006:300.964 - 0.419ms returns 1 (0x1)
+T2C78 006:300.999 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:301.008 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 006:301.400 Data: 00
+T2C78 006:301.425 - 0.430ms returns 1 (0x1)
+T2C78 006:301.445 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:301.462 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 006:301.795 Data: 00
+T2C78 006:301.811 - 0.370ms returns 1 (0x1)
+T2C78 006:301.825 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:301.835 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 006:302.136 Data: 63
+T2C78 006:302.149 - 0.328ms returns 1 (0x1)
+T2C78 006:302.161 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:302.171 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 006:302.482 Data: 63
+T2C78 006:302.495 - 0.337ms returns 1 (0x1)
+T2C78 006:312.260 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:312.279 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 006:312.581 Data: 00
+T2C78 006:312.594 - 0.336ms returns 1 (0x1)
+T2C78 006:312.604 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:312.613 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 006:312.930 Data: 00
+T2C78 006:312.938 - 0.335ms returns 1 (0x1)
+T2C78 006:312.946 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:312.952 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 006:313.215 Data: 63
+T2C78 006:313.221 - 0.277ms returns 1 (0x1)
+T2C78 006:313.227 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:313.234 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 006:313.734 Data: 63
+T2C78 006:313.778 - 0.563ms returns 1 (0x1)
+T19A8 006:374.382 JLINK_HasError()
+T19A8 006:374.425 JLINK_IsHalted()
+T19A8 006:374.765 - 0.368ms returns FALSE
+T19A8 006:474.933 JLINK_HasError()
+T19A8 006:474.994 JLINK_IsHalted()
+T19A8 006:475.532 - 0.553ms returns FALSE
+T19A8 006:576.207 JLINK_HasError()
+T19A8 006:576.260 JLINK_IsHalted()
+T19A8 006:576.611 - 0.359ms returns FALSE
+T19A8 006:676.700 JLINK_HasError()
+T19A8 006:676.749 JLINK_HasError()
+T19A8 006:676.765 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 006:676.797 Data: B2 47 02 03
+T19A8 006:676.818 Debug reg: DWT_CYCCNT
+T19A8 006:676.836 - 0.077ms returns 1 (0x1)
+T2C78 006:677.081 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:677.146 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 006:677.490 Data: 00
+T2C78 006:677.515 - 0.440ms returns 1 (0x1)
+T2C78 006:677.564 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:677.588 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 006:677.957 Data: 32
+T2C78 006:677.989 - 0.431ms returns 1 (0x1)
+T2C78 006:678.097 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 006:678.121 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 006:678.439 Data: E5 00 00 00
+T2C78 006:678.460 - 0.368ms returns 4 (0x4)
+T2C78 006:679.454 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 006:679.492 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 006:679.814 Data: B2 00 00 00
+T2C78 006:679.834 - 0.386ms returns 4 (0x4)
+T2C78 006:680.413 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 006:680.436 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 006:680.755 Data: EF 00 00 00
+T2C78 006:680.773 - 0.365ms returns 4 (0x4)
+T2C78 006:680.799 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 006:680.813 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 006:681.152 Data: 3F 01 00 00
+T2C78 006:681.168 - 0.374ms returns 4 (0x4)
+T2C78 006:681.645 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 006:681.664 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 006:681.962 Data: 1A 06 00 00
+T2C78 006:681.978 - 0.336ms returns 4 (0x4)
+T2C78 006:682.471 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 006:682.491 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 006:682.789 Data: 00 00 00 00
+T2C78 006:682.805 - 0.337ms returns 4 (0x4)
+T2C78 006:682.841 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:682.851 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 006:683.137 Data: 00
+T2C78 006:683.150 - 0.312ms returns 1 (0x1)
+T2C78 006:683.162 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:683.172 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 006:683.468 Data: 00
+T2C78 006:683.481 - 0.322ms returns 1 (0x1)
+T2C78 006:683.492 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:683.502 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 006:683.821 Data: 63
+T2C78 006:683.834 - 0.345ms returns 1 (0x1)
+T2C78 006:683.846 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 006:683.856 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 006:684.183 Data: 63
+T2C78 006:684.198 - 0.355ms returns 1 (0x1)
+T19A8 006:684.390 JLINK_IsHalted()
+T19A8 006:684.688 - 0.305ms returns FALSE
+T19A8 006:784.773 JLINK_HasError()
+T19A8 006:784.807 JLINK_IsHalted()
+T19A8 006:785.132 - 0.332ms returns FALSE
+T19A8 006:885.229 JLINK_HasError()
+T19A8 006:885.314 JLINK_IsHalted()
+T19A8 006:885.879 - 0.663ms returns FALSE
+T19A8 006:986.215 JLINK_HasError()
+T19A8 006:986.300 JLINK_IsHalted()
+T19A8 006:986.868 - 0.615ms returns FALSE
+T19A8 007:087.467 JLINK_HasError()
+T19A8 007:087.530 JLINK_IsHalted()
+T19A8 007:088.022 - 0.518ms returns FALSE
+T19A8 007:189.082 JLINK_HasError()
+T19A8 007:189.157 JLINK_IsHalted()
+T19A8 007:189.726 - 0.585ms returns FALSE
+T19A8 007:290.402 JLINK_HasError()
+T19A8 007:290.465 JLINK_HasError()
+T19A8 007:290.490 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 007:290.542 Data: B2 47 02 03
+T19A8 007:290.578 Debug reg: DWT_CYCCNT
+T19A8 007:290.607 - 0.126ms returns 1 (0x1)
+T2C78 007:290.955 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 007:291.055 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 007:291.630 Data: 00
+T2C78 007:291.664 - 0.720ms returns 1 (0x1)
+T2C78 007:291.712 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 007:291.742 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 007:292.120 Data: 32
+T2C78 007:292.154 - 0.451ms returns 1 (0x1)
+T2C78 007:292.254 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 007:292.279 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 007:292.640 Data: E5 00 00 00
+T2C78 007:292.673 - 0.429ms returns 4 (0x4)
+T2C78 007:293.568 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 007:293.618 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 007:294.076 Data: B2 00 00 00
+T2C78 007:294.112 - 0.554ms returns 4 (0x4)
+T2C78 007:294.750 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 007:294.792 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 007:295.147 Data: EF 00 00 00
+T2C78 007:295.181 - 0.440ms returns 4 (0x4)
+T2C78 007:295.225 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 007:295.251 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 007:295.637 Data: 3F 01 00 00
+T2C78 007:295.669 - 0.454ms returns 4 (0x4)
+T2C78 007:296.240 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 007:296.277 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 007:296.631 Data: 1A 06 00 00
+T2C78 007:296.668 - 0.438ms returns 4 (0x4)
+T2C78 007:297.397 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 007:297.437 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 007:297.811 Data: 00 00 00 00
+T2C78 007:297.844 - 0.457ms returns 4 (0x4)
+T2C78 007:297.913 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 007:297.940 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 007:298.306 Data: 00
+T2C78 007:298.338 - 0.434ms returns 1 (0x1)
+T2C78 007:298.368 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 007:298.393 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 007:298.763 Data: 00
+T2C78 007:298.794 - 0.434ms returns 1 (0x1)
+T2C78 007:298.819 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 007:298.841 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 007:299.171 Data: 63
+T2C78 007:299.199 - 0.389ms returns 1 (0x1)
+T2C78 007:299.227 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 007:299.249 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 007:299.621 Data: 63
+T2C78 007:299.650 - 0.431ms returns 1 (0x1)
+T19A8 007:299.754 JLINK_IsHalted()
+T19A8 007:300.160 - 0.420ms returns FALSE
+T19A8 007:400.888 JLINK_HasError()
+T19A8 007:400.955 JLINK_IsHalted()
+T19A8 007:401.611 - 0.701ms returns FALSE
+T19A8 007:502.142 JLINK_HasError()
+T19A8 007:502.306 JLINK_IsHalted()
+T19A8 007:502.733 - 0.444ms returns FALSE
+T19A8 007:603.260 JLINK_HasError()
+T19A8 007:603.339 JLINK_IsHalted()
+T19A8 007:604.130 - 0.811ms returns FALSE
+T19A8 007:704.453 JLINK_HasError()
+T19A8 007:704.516 JLINK_IsHalted()
+T19A8 007:705.023 - 0.534ms returns FALSE
+T19A8 007:805.146 JLINK_HasError()
+T19A8 007:805.212 JLINK_HasError()
+T19A8 007:805.236 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 007:805.282 Data: B2 47 02 03
+T19A8 007:805.313 Debug reg: DWT_CYCCNT
+T19A8 007:805.341 - 0.115ms returns 1 (0x1)
+T2C78 007:805.697 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 007:805.787 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 007:806.274 Data: 00
+T2C78 007:806.308 - 0.621ms returns 1 (0x1)
+T2C78 007:806.355 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 007:806.385 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 007:806.787 Data: 32
+T2C78 007:806.819 - 0.473ms returns 1 (0x1)
+T2C78 007:806.920 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 007:806.945 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 007:807.368 Data: E5 00 00 00
+T2C78 007:807.401 - 0.496ms returns 4 (0x4)
+T2C78 007:807.571 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 007:807.599 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 007:807.946 Data: B2 00 00 00
+T2C78 007:807.979 - 0.417ms returns 4 (0x4)
+T2C78 007:808.015 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 007:808.039 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 007:808.418 Data: EF 00 00 00
+T2C78 007:808.467 - 0.462ms returns 4 (0x4)
+T2C78 007:808.548 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 007:808.587 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 007:808.983 Data: 3F 01 00 00
+T2C78 007:809.024 - 0.486ms returns 4 (0x4)
+T2C78 007:809.070 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 007:809.097 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 007:809.451 Data: 1A 06 00 00
+T2C78 007:809.483 - 0.423ms returns 4 (0x4)
+T2C78 007:809.586 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 007:809.612 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 007:809.988 Data: 00 00 00 00
+T2C78 007:810.020 - 0.444ms returns 4 (0x4)
+T2C78 007:810.084 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 007:810.109 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 007:810.486 Data: 00
+T2C78 007:810.519 - 0.444ms returns 1 (0x1)
+T2C78 007:810.549 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 007:810.573 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 007:810.907 Data: 00
+T2C78 007:810.939 - 0.399ms returns 1 (0x1)
+T2C78 007:810.968 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 007:810.992 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 007:811.323 Data: 63
+T2C78 007:811.354 - 0.396ms returns 1 (0x1)
+T2C78 007:811.384 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 007:811.409 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 007:811.779 Data: 63
+T2C78 007:811.811 - 0.436ms returns 1 (0x1)
+T19A8 007:811.940 JLINK_IsHalted()
+T19A8 007:812.327 - 0.402ms returns FALSE
+T19A8 007:913.305 JLINK_HasError()
+T19A8 007:913.379 JLINK_IsHalted()
+T19A8 007:913.876 - 0.543ms returns FALSE
+T19A8 008:014.002 JLINK_HasError()
+T19A8 008:014.062 JLINK_IsHalted()
+T19A8 008:014.490 - 0.443ms returns FALSE
+T19A8 008:115.503 JLINK_HasError()
+T19A8 008:115.569 JLINK_IsHalted()
+T19A8 008:115.977 - 0.422ms returns FALSE
+T19A8 008:216.954 JLINK_HasError()
+T19A8 008:217.028 JLINK_IsHalted()
+T19A8 008:217.508 - 0.530ms returns FALSE
+T19A8 008:317.636 JLINK_HasError()
+T19A8 008:317.706 JLINK_HasError()
+T19A8 008:317.731 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 008:317.778 Data: B2 47 02 03
+T19A8 008:317.810 Debug reg: DWT_CYCCNT
+T19A8 008:317.838 - 0.117ms returns 1 (0x1)
+T2C78 008:318.253 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 008:318.355 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 008:318.771 Data: 00
+T2C78 008:318.810 - 0.568ms returns 1 (0x1)
+T2C78 008:318.894 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 008:318.931 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 008:319.419 Data: 32
+T2C78 008:319.485 - 0.602ms returns 1 (0x1)
+T2C78 008:319.685 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 008:319.729 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 008:320.095 Data: C1 00 00 00
+T2C78 008:320.128 - 0.452ms returns 4 (0x4)
+T2C78 008:321.024 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 008:321.105 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 008:321.610 Data: 00 00 00 00
+T2C78 008:321.681 - 0.667ms returns 4 (0x4)
+T2C78 008:322.806 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 008:322.872 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 008:323.292 Data: EF 00 00 00
+T2C78 008:323.338 - 0.543ms returns 4 (0x4)
+T2C78 008:323.402 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 008:323.438 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 008:325.155 Data: 4F 00 00 00
+T2C78 008:325.212 - 1.820ms returns 4 (0x4)
+T2C78 008:326.069 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 008:326.133 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 008:326.546 Data: B0 0E 00 00
+T2C78 008:326.610 - 0.553ms returns 4 (0x4)
+T2C78 008:327.664 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 008:327.734 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 008:328.145 Data: 00 00 00 00
+T2C78 008:328.189 - 0.535ms returns 4 (0x4)
+T2C78 008:328.308 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 008:328.343 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 008:328.722 Data: 00
+T2C78 008:328.755 - 0.457ms returns 1 (0x1)
+T2C78 008:328.785 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 008:328.811 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 008:329.183 Data: 00
+T2C78 008:329.215 - 0.439ms returns 1 (0x1)
+T2C78 008:329.244 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 008:329.268 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 008:329.646 Data: 63
+T2C78 008:329.677 - 0.443ms returns 1 (0x1)
+T2C78 008:329.708 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 008:329.731 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 008:330.064 Data: 63
+T2C78 008:330.092 - 0.393ms returns 1 (0x1)
+T19A8 008:330.212 JLINK_IsHalted()
+T19A8 008:330.590 - 0.392ms returns FALSE
+T19A8 008:430.688 JLINK_HasError()
+T19A8 008:430.763 JLINK_IsHalted()
+T19A8 008:431.210 - 0.461ms returns FALSE
+T19A8 008:531.934 JLINK_HasError()
+T19A8 008:532.009 JLINK_IsHalted()
+T19A8 008:532.502 - 0.509ms returns FALSE
+T19A8 008:633.358 JLINK_HasError()
+T19A8 008:633.429 JLINK_IsHalted()
+T19A8 008:633.860 - 0.448ms returns FALSE
+T19A8 008:734.375 JLINK_HasError()
+T19A8 008:734.394 JLINK_IsHalted()
+T19A8 008:734.720 - 0.335ms returns FALSE
+T19A8 008:835.292 JLINK_HasError()
+T19A8 008:835.314 JLINK_HasError()
+T19A8 008:835.319 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 008:835.333 Data: B2 47 02 03
+T19A8 008:835.340 Debug reg: DWT_CYCCNT
+T19A8 008:835.346 - 0.028ms returns 1 (0x1)
+T2C78 008:835.507 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 008:835.528 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 008:835.810 Data: 00
+T2C78 008:835.818 - 0.313ms returns 1 (0x1)
+T2C78 008:835.838 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 008:835.846 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 008:836.156 Data: 32
+T2C78 008:836.163 - 0.327ms returns 1 (0x1)
+T2C78 008:836.199 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 008:836.207 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 008:836.450 Data: E5 00 00 00
+T2C78 008:836.457 - 0.260ms returns 4 (0x4)
+T2C78 008:836.873 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 008:836.887 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 008:837.367 Data: B2 00 00 00
+T2C78 008:837.441 - 0.579ms returns 4 (0x4)
+T2C78 008:838.290 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 008:838.318 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 008:838.619 Data: EF 00 00 00
+T2C78 008:838.632 - 0.344ms returns 4 (0x4)
+T2C78 008:838.652 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 008:838.660 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 008:838.966 Data: 3F 01 00 00
+T2C78 008:838.980 - 0.330ms returns 4 (0x4)
+T2C78 008:839.279 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 008:839.292 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 008:839.557 Data: 1A 06 00 00
+T2C78 008:839.564 - 0.287ms returns 4 (0x4)
+T2C78 008:839.832 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 008:839.843 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 008:840.131 Data: 00 00 00 00
+T2C78 008:840.138 - 0.308ms returns 4 (0x4)
+T2C78 008:840.157 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 008:840.163 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 008:840.414 Data: 00
+T2C78 008:840.421 - 0.266ms returns 1 (0x1)
+T2C78 008:840.428 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 008:840.433 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 008:840.685 Data: 00
+T2C78 008:840.692 - 0.266ms returns 1 (0x1)
+T2C78 008:840.698 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 008:840.703 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 008:840.954 Data: 63
+T2C78 008:840.962 - 0.266ms returns 1 (0x1)
+T2C78 008:840.971 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 008:840.976 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 008:841.228 Data: 63
+T2C78 008:841.240 - 0.271ms returns 1 (0x1)
+T19A8 008:841.294 JLINK_IsHalted()
+T19A8 008:841.604 - 0.317ms returns FALSE
+T19A8 008:942.042 JLINK_HasError()
+T19A8 008:942.072 JLINK_IsHalted()
+T19A8 008:942.368 - 0.306ms returns FALSE
+T19A8 009:043.200 JLINK_HasError()
+T19A8 009:043.218 JLINK_IsHalted()
+T19A8 009:043.600 - 0.394ms returns FALSE
+T19A8 009:143.902 JLINK_HasError()
+T19A8 009:143.918 JLINK_IsHalted()
+T19A8 009:144.246 - 0.331ms returns FALSE
+T19A8 009:244.613 JLINK_HasError()
+T19A8 009:244.637 JLINK_IsHalted()
+T19A8 009:244.997 - 0.362ms returns FALSE
+T19A8 009:345.435 JLINK_HasError()
+T19A8 009:345.453 JLINK_IsHalted()
+T19A8 009:345.771 - 0.321ms returns FALSE
+T19A8 009:446.215 JLINK_HasError()
+T19A8 009:446.238 JLINK_HasError()
+T19A8 009:446.243 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 009:446.256 Data: B2 47 02 03
+T19A8 009:446.262 Debug reg: DWT_CYCCNT
+T19A8 009:446.268 - 0.026ms returns 1 (0x1)
+T2C78 009:446.465 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 009:446.485 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 009:446.806 Data: 00
+T2C78 009:446.812 - 0.349ms returns 1 (0x1)
+T2C78 009:446.828 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 009:446.835 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 009:447.346 Data: 32
+T2C78 009:447.360 - 0.533ms returns 1 (0x1)
+T2C78 009:447.398 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 009:447.407 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 009:447.777 Data: A7 00 00 00
+T2C78 009:447.788 - 0.392ms returns 4 (0x4)
+T2C78 009:448.128 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 009:448.141 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 009:448.473 Data: 52 00 00 00
+T2C78 009:448.480 - 0.353ms returns 4 (0x4)
+T2C78 009:448.690 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 009:448.698 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 009:449.085 Data: C0 00 00 00
+T2C78 009:449.091 - 0.403ms returns 4 (0x4)
+T2C78 009:449.206 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 009:449.214 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 009:449.594 Data: F2 00 00 00
+T2C78 009:449.600 - 0.395ms returns 4 (0x4)
+T2C78 009:449.793 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 009:449.800 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 009:450.073 Data: 5A 10 00 00
+T2C78 009:450.083 - 0.292ms returns 4 (0x4)
+T2C78 009:450.382 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 009:450.394 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 009:450.682 Data: 00 00 00 00
+T2C78 009:450.689 - 0.308ms returns 4 (0x4)
+T2C78 009:450.704 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 009:450.710 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 009:450.993 Data: 00
+T2C78 009:451.000 - 0.297ms returns 1 (0x1)
+T2C78 009:451.006 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 009:451.011 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 009:451.376 Data: 00
+T2C78 009:451.382 - 0.378ms returns 1 (0x1)
+T2C78 009:451.388 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 009:451.393 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 009:451.692 Data: 63
+T2C78 009:451.698 - 0.312ms returns 1 (0x1)
+T2C78 009:451.704 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 009:451.709 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 009:451.967 Data: 63
+T2C78 009:451.973 - 0.270ms returns 1 (0x1)
+T19A8 009:452.003 JLINK_IsHalted()
+T19A8 009:452.282 - 0.282ms returns FALSE
+T19A8 009:552.852 JLINK_HasError()
+T19A8 009:552.870 JLINK_IsHalted()
+T19A8 009:553.287 - 0.421ms returns FALSE
+T19A8 009:653.371 JLINK_HasError()
+T19A8 009:653.439 JLINK_IsHalted()
+T19A8 009:653.788 - 0.361ms returns FALSE
+T19A8 009:753.948 JLINK_HasError()
+T19A8 009:753.992 JLINK_IsHalted()
+T19A8 009:754.378 - 0.404ms returns FALSE
+T19A8 009:854.534 JLINK_HasError()
+T19A8 009:854.618 JLINK_IsHalted()
+T19A8 009:855.406 - 0.813ms returns FALSE
+T19A8 009:955.532 JLINK_HasError()
+T19A8 009:955.609 JLINK_IsHalted()
+T19A8 009:956.074 - 0.478ms returns FALSE
+T19A8 010:056.331 JLINK_HasError()
+T19A8 010:056.406 JLINK_HasError()
+T19A8 010:056.431 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 010:056.479 Data: B2 47 02 03
+T19A8 010:056.511 Debug reg: DWT_CYCCNT
+T19A8 010:056.540 - 0.118ms returns 1 (0x1)
+T2C78 010:056.985 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 010:057.090 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 010:057.542 Data: 00
+T2C78 010:057.586 - 0.612ms returns 1 (0x1)
+T2C78 010:057.669 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 010:057.709 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 010:058.102 Data: 32
+T2C78 010:058.135 - 0.476ms returns 1 (0x1)
+T2C78 010:058.297 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 010:058.326 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 010:058.761 Data: E5 00 00 00
+T2C78 010:058.792 - 0.505ms returns 4 (0x4)
+T2C78 010:060.314 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 010:060.377 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 010:060.747 Data: B2 00 00 00
+T2C78 010:060.782 - 0.478ms returns 4 (0x4)
+T2C78 010:061.791 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 010:061.832 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 010:062.185 Data: EF 00 00 00
+T2C78 010:062.213 - 0.430ms returns 4 (0x4)
+T2C78 010:062.965 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 010:062.993 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 010:063.308 Data: 3F 01 00 00
+T2C78 010:063.332 - 0.374ms returns 4 (0x4)
+T2C78 010:063.994 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 010:064.019 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 010:064.382 Data: 1A 06 00 00
+T2C78 010:064.403 - 0.414ms returns 4 (0x4)
+T2C78 010:065.037 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 010:065.060 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 010:065.422 Data: 00 00 00 00
+T2C78 010:065.487 - 0.460ms returns 4 (0x4)
+T2C78 010:065.605 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 010:065.627 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 010:065.958 Data: 00
+T2C78 010:065.988 - 0.387ms returns 1 (0x1)
+T2C78 010:066.011 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 010:066.032 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 010:066.392 Data: 00
+T2C78 010:066.413 - 0.407ms returns 1 (0x1)
+T2C78 010:066.433 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 010:066.448 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 010:066.789 Data: 63
+T2C78 010:066.806 - 0.377ms returns 1 (0x1)
+T2C78 010:066.821 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 010:066.834 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 010:067.175 Data: 63
+T2C78 010:067.191 - 0.374ms returns 1 (0x1)
+T19A8 010:067.279 JLINK_IsHalted()
+T19A8 010:067.572 - 0.299ms returns FALSE
+T19A8 010:167.997 JLINK_HasError()
+T19A8 010:168.064 JLINK_IsHalted()
+T19A8 010:168.662 - 0.614ms returns FALSE
+T19A8 010:269.235 JLINK_HasError()
+T19A8 010:269.306 JLINK_IsHalted()
+T19A8 010:269.818 - 0.528ms returns FALSE
+T19A8 010:369.904 JLINK_HasError()
+T19A8 010:369.975 JLINK_IsHalted()
+T19A8 010:370.403 - 0.443ms returns FALSE
+T19A8 010:471.159 JLINK_HasError()
+T19A8 010:471.262 JLINK_IsHalted()
+T19A8 010:471.866 - 0.655ms returns FALSE
+T19A8 010:572.097 JLINK_HasError()
+T19A8 010:572.168 JLINK_HasError()
+T19A8 010:572.193 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 010:572.242 Data: B2 47 02 03
+T19A8 010:572.274 Debug reg: DWT_CYCCNT
+T19A8 010:572.312 - 0.129ms returns 1 (0x1)
+T2C78 010:572.654 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 010:572.751 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 010:573.202 Data: 00
+T2C78 010:573.242 - 0.598ms returns 1 (0x1)
+T2C78 010:573.315 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 010:573.351 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 010:573.771 Data: 32
+T2C78 010:573.807 - 0.501ms returns 1 (0x1)
+T2C78 010:573.960 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 010:573.988 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 010:574.404 Data: A7 00 00 00
+T2C78 010:574.439 - 0.489ms returns 4 (0x4)
+T2C78 010:575.824 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 010:575.879 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 010:576.240 Data: 52 00 00 00
+T2C78 010:576.274 - 0.460ms returns 4 (0x4)
+T2C78 010:577.300 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 010:577.341 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 010:577.694 Data: C0 00 00 00
+T2C78 010:577.728 - 0.437ms returns 4 (0x4)
+T2C78 010:578.667 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 010:578.702 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 010:579.074 Data: F2 00 00 00
+T2C78 010:579.106 - 0.447ms returns 4 (0x4)
+T2C78 010:579.874 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 010:579.904 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 010:580.273 Data: 5A 10 00 00
+T2C78 010:580.301 - 0.434ms returns 4 (0x4)
+T2C78 010:581.067 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 010:581.094 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 010:581.574 Data: 00 00 00 00
+T2C78 010:581.598 - 0.536ms returns 4 (0x4)
+T2C78 010:581.654 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 010:581.673 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 010:582.013 Data: 00
+T2C78 010:582.040 - 0.392ms returns 1 (0x1)
+T2C78 010:582.058 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 010:582.072 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 010:582.375 Data: 00
+T2C78 010:582.393 - 0.341ms returns 1 (0x1)
+T2C78 010:582.409 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 010:582.423 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 010:582.747 Data: 63
+T2C78 010:582.774 - 0.370ms returns 1 (0x1)
+T2C78 010:582.791 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 010:582.805 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 010:583.130 Data: 63
+T2C78 010:583.158 - 0.373ms returns 1 (0x1)
+T19A8 010:583.322 JLINK_IsHalted()
+T19A8 010:583.678 - 0.369ms returns FALSE
+T19A8 010:683.962 JLINK_HasError()
+T19A8 010:684.032 JLINK_IsHalted()
+T19A8 010:684.440 - 0.448ms returns FALSE
+T19A8 010:785.361 JLINK_HasError()
+T19A8 010:785.465 JLINK_IsHalted()
+T19A8 010:786.010 - 0.586ms returns FALSE
+T19A8 010:886.523 JLINK_HasError()
+T19A8 010:886.684 JLINK_IsHalted()
+T19A8 010:887.209 - 0.538ms returns FALSE
+T19A8 010:987.381 JLINK_HasError()
+T19A8 010:987.607 JLINK_IsHalted()
+T19A8 010:988.131 - 0.540ms returns FALSE
+T19A8 011:088.286 JLINK_HasError()
+T19A8 011:088.347 JLINK_HasError()
+T19A8 011:088.371 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 011:088.418 Data: B2 47 02 03
+T19A8 011:088.450 Debug reg: DWT_CYCCNT
+T19A8 011:088.478 - 0.116ms returns 1 (0x1)
+T2C78 011:088.847 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 011:088.940 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 011:089.483 Data: 00
+T2C78 011:089.521 - 0.685ms returns 1 (0x1)
+T2C78 011:089.675 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 011:089.711 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 011:090.170 Data: 32
+T2C78 011:090.204 - 0.539ms returns 1 (0x1)
+T2C78 011:090.357 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 011:090.384 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 011:090.843 Data: 58 00 00 00
+T2C78 011:090.876 - 0.529ms returns 4 (0x4)
+T2C78 011:092.268 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 011:092.327 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 011:092.725 Data: 00 00 00 00
+T2C78 011:092.761 - 0.503ms returns 4 (0x4)
+T2C78 011:094.338 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 011:094.419 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 011:094.806 Data: 5F 00 00 00
+T2C78 011:094.852 - 0.525ms returns 4 (0x4)
+T2C78 011:096.158 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 011:096.216 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 011:096.628 Data: 3F 01 00 00
+T2C78 011:096.679 - 0.531ms returns 4 (0x4)
+T2C78 011:097.840 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 011:097.888 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 011:098.277 Data: 00 0A 00 00
+T2C78 011:098.313 - 0.482ms returns 4 (0x4)
+T2C78 011:099.396 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 011:099.437 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 011:099.789 Data: 00 00 00 00
+T2C78 011:099.817 - 0.429ms returns 4 (0x4)
+T2C78 011:099.877 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 011:099.900 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 011:100.221 Data: 00
+T2C78 011:100.247 - 0.377ms returns 1 (0x1)
+T2C78 011:100.271 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 011:100.292 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 011:100.620 Data: 00
+T2C78 011:100.646 - 0.382ms returns 1 (0x1)
+T2C78 011:100.669 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 011:100.689 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 011:101.012 Data: 63
+T2C78 011:101.038 - 0.377ms returns 1 (0x1)
+T2C78 011:101.063 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 011:101.084 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 011:101.417 Data: 63
+T2C78 011:101.447 - 0.391ms returns 1 (0x1)
+T19A8 011:101.551 JLINK_IsHalted()
+T19A8 011:101.940 - 0.404ms returns FALSE
+T19A8 011:202.505 JLINK_HasError()
+T19A8 011:202.571 JLINK_IsHalted()
+T19A8 011:203.060 - 0.504ms returns FALSE
+T19A8 011:303.147 JLINK_HasError()
+T19A8 011:303.215 JLINK_IsHalted()
+T19A8 011:303.758 - 0.558ms returns FALSE
+T19A8 011:404.319 JLINK_HasError()
+T19A8 011:404.406 JLINK_IsHalted()
+T19A8 011:404.966 - 0.575ms returns FALSE
+T19A8 011:505.126 JLINK_HasError()
+T19A8 011:505.200 JLINK_IsHalted()
+T19A8 011:505.655 - 0.501ms returns FALSE
+T19A8 011:606.740 JLINK_HasError()
+T19A8 011:606.843 JLINK_HasError()
+T19A8 011:606.870 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 011:606.925 Data: B2 47 02 03
+T19A8 011:606.961 Debug reg: DWT_CYCCNT
+T19A8 011:606.993 - 0.134ms returns 1 (0x1)
+T2C78 011:607.513 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 011:607.608 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 011:608.251 Data: 00
+T2C78 011:608.326 - 0.825ms returns 1 (0x1)
+T2C78 011:608.413 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 011:608.463 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 011:609.097 Data: 32
+T2C78 011:609.170 - 0.769ms returns 1 (0x1)
+T2C78 011:609.348 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 011:609.398 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 011:609.841 Data: 93 00 00 00
+T2C78 011:609.915 - 0.579ms returns 4 (0x4)
+T2C78 011:611.505 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 011:611.571 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 011:612.027 Data: 00 00 00 00
+T2C78 011:612.100 - 0.607ms returns 4 (0x4)
+T2C78 011:613.139 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 011:613.196 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 011:613.702 Data: BF 00 00 00
+T2C78 011:613.764 - 0.634ms returns 4 (0x4)
+T2C78 011:614.892 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 011:614.938 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 011:615.324 Data: 5A 00 00 00
+T2C78 011:615.373 - 0.488ms returns 4 (0x4)
+T2C78 011:616.297 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 011:616.335 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 011:616.779 Data: FF 0F 00 00
+T2C78 011:616.816 - 0.525ms returns 4 (0x4)
+T2C78 011:617.569 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 011:617.598 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 011:617.945 Data: 00 00 00 00
+T2C78 011:617.981 - 0.416ms returns 4 (0x4)
+T2C78 011:618.039 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 011:618.058 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 011:618.423 Data: 00
+T2C78 011:618.463 - 0.429ms returns 1 (0x1)
+T2C78 011:618.485 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 011:618.503 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 011:618.837 Data: 00
+T2C78 011:618.878 - 0.398ms returns 1 (0x1)
+T2C78 011:618.900 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 011:618.919 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 011:619.247 Data: 63
+T2C78 011:619.274 - 0.379ms returns 1 (0x1)
+T2C78 011:619.288 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 011:619.300 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 011:619.765 Data: 63
+T2C78 011:619.802 - 0.517ms returns 1 (0x1)
+T19A8 011:619.898 JLINK_IsHalted()
+T19A8 011:620.254 - 0.364ms returns FALSE
+T19A8 011:720.373 JLINK_HasError()
+T19A8 011:720.441 JLINK_IsHalted()
+T19A8 011:720.904 - 0.479ms returns FALSE
+T19A8 011:821.054 JLINK_HasError()
+T19A8 011:821.122 JLINK_IsHalted()
+T19A8 011:821.705 - 0.597ms returns FALSE
+T19A8 011:922.485 JLINK_HasError()
+T19A8 011:922.567 JLINK_IsHalted()
+T19A8 011:923.091 - 0.568ms returns FALSE
+T19A8 012:023.278 JLINK_HasError()
+T19A8 012:023.342 JLINK_IsHalted()
+T19A8 012:023.917 - 0.590ms returns FALSE
+T19A8 012:124.090 JLINK_HasError()
+T19A8 012:124.186 JLINK_HasError()
+T19A8 012:124.213 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 012:124.268 Data: B2 47 02 03
+T19A8 012:124.303 Debug reg: DWT_CYCCNT
+T19A8 012:124.335 - 0.133ms returns 1 (0x1)
+T2C78 012:124.885 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 012:125.010 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 012:125.694 Data: 00
+T2C78 012:125.769 - 0.896ms returns 1 (0x1)
+T2C78 012:125.856 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 012:125.906 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 012:126.356 Data: 32
+T2C78 012:126.395 - 0.550ms returns 1 (0x1)
+T2C78 012:126.587 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 012:126.620 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 012:127.144 Data: E3 00 00 00
+T2C78 012:127.181 - 0.604ms returns 4 (0x4)
+T2C78 012:128.743 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 012:128.801 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 012:129.217 Data: AD 00 00 00
+T2C78 012:129.260 - 0.528ms returns 4 (0x4)
+T2C78 012:129.976 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 012:130.019 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 012:130.401 Data: EF 00 00 00
+T2C78 012:130.444 - 0.478ms returns 4 (0x4)
+T2C78 012:131.963 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 012:132.026 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 012:132.430 Data: 3F 01 00 00
+T2C78 012:132.475 - 0.523ms returns 4 (0x4)
+T2C78 012:134.451 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 012:134.509 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 012:134.901 Data: 77 07 00 00
+T2C78 012:134.947 - 0.506ms returns 4 (0x4)
+T2C78 012:135.980 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 012:136.024 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 012:136.403 Data: 00 00 00 00
+T2C78 012:136.432 - 0.458ms returns 4 (0x4)
+T2C78 012:136.483 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 012:136.503 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 012:136.921 Data: 00
+T2C78 012:136.955 - 0.479ms returns 1 (0x1)
+T2C78 012:136.976 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 012:136.994 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 012:137.459 Data: 00
+T2C78 012:137.512 - 0.543ms returns 1 (0x1)
+T2C78 012:137.549 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 012:137.590 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 012:137.956 Data: 63
+T2C78 012:137.985 - 0.442ms returns 1 (0x1)
+T2C78 012:138.016 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 012:138.114 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 012:138.553 Data: 63
+T2C78 012:138.600 - 0.590ms returns 1 (0x1)
+T19A8 012:138.704 JLINK_IsHalted()
+T19A8 012:139.011 - 0.334ms returns FALSE
+T19A8 012:239.838 JLINK_HasError()
+T19A8 012:239.866 JLINK_IsHalted()
+T19A8 012:240.308 - 0.458ms returns FALSE
+T19A8 012:340.955 JLINK_HasError()
+T19A8 012:341.018 JLINK_IsHalted()
+T19A8 012:341.435 - 0.432ms returns FALSE
+T19A8 012:442.459 JLINK_HasError()
+T19A8 012:442.532 JLINK_IsHalted()
+T19A8 012:443.289 - 0.773ms returns FALSE
+T19A8 012:543.451 JLINK_HasError()
+T19A8 012:543.529 JLINK_IsHalted()
+T19A8 012:543.921 - 0.413ms returns FALSE
+T19A8 012:644.770 JLINK_HasError()
+T19A8 012:644.834 JLINK_HasError()
+T19A8 012:644.858 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 012:644.904 Data: B2 47 02 03
+T19A8 012:644.936 Debug reg: DWT_CYCCNT
+T19A8 012:644.965 - 0.116ms returns 1 (0x1)
+T2C78 012:645.285 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 012:645.318 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 012:645.941 Data: 00
+T2C78 012:645.975 - 0.701ms returns 1 (0x1)
+T2C78 012:646.020 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 012:646.048 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 012:646.510 Data: 32
+T2C78 012:646.542 - 0.532ms returns 1 (0x1)
+T2C78 012:646.647 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 012:646.673 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 012:647.124 Data: E3 00 00 00
+T2C78 012:647.156 - 0.519ms returns 4 (0x4)
+T2C78 012:648.468 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 012:648.555 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 012:648.972 Data: AD 00 00 00
+T2C78 012:649.017 - 0.559ms returns 4 (0x4)
+T2C78 012:649.785 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 012:649.831 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 012:650.263 Data: EF 00 00 00
+T2C78 012:650.294 - 0.517ms returns 4 (0x4)
+T2C78 012:650.870 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 012:650.907 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 012:651.290 Data: 3F 01 00 00
+T2C78 012:651.318 - 0.455ms returns 4 (0x4)
+T2C78 012:651.786 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 012:651.817 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 012:652.214 Data: 77 07 00 00
+T2C78 012:652.237 - 0.458ms returns 4 (0x4)
+T2C78 012:652.733 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 012:652.764 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 012:653.135 Data: 00 00 00 00
+T2C78 012:653.156 - 0.430ms returns 4 (0x4)
+T2C78 012:653.204 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 012:653.222 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 012:654.090 Data: 00
+T2C78 012:654.136 - 0.938ms returns 1 (0x1)
+T2C78 012:654.168 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 012:654.195 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 012:654.591 Data: 00
+T2C78 012:654.616 - 0.454ms returns 1 (0x1)
+T2C78 012:654.640 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 012:654.659 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 012:655.007 Data: 63
+T2C78 012:655.027 - 0.392ms returns 1 (0x1)
+T2C78 012:655.046 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 012:655.061 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 012:655.371 Data: 63
+T2C78 012:655.391 - 0.350ms returns 1 (0x1)
+T19A8 012:655.466 JLINK_IsHalted()
+T19A8 012:656.041 - 0.610ms returns FALSE
+T19A8 012:756.160 JLINK_HasError()
+T19A8 012:756.232 JLINK_IsHalted()
+T19A8 012:756.762 - 0.546ms returns FALSE
+T19A8 012:856.953 JLINK_HasError()
+T19A8 012:857.019 JLINK_IsHalted()
+T19A8 012:857.426 - 0.423ms returns FALSE
+T19A8 012:958.447 JLINK_HasError()
+T19A8 012:958.519 JLINK_IsHalted()
+T19A8 012:959.056 - 0.553ms returns FALSE
+T19A8 013:059.917 JLINK_HasError()
+T19A8 013:059.983 JLINK_IsHalted()
+T19A8 013:060.492 - 0.524ms returns FALSE
+T19A8 013:161.128 JLINK_HasError()
+T19A8 013:161.191 JLINK_HasError()
+T19A8 013:161.215 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 013:161.261 Data: B2 47 02 03
+T19A8 013:161.293 Debug reg: DWT_CYCCNT
+T19A8 013:161.321 - 0.115ms returns 1 (0x1)
+T2C78 013:161.753 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 013:161.850 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 013:162.351 Data: 00
+T2C78 013:162.388 - 0.645ms returns 1 (0x1)
+T2C78 013:162.464 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 013:162.498 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 013:162.973 Data: 32
+T2C78 013:163.006 - 0.552ms returns 1 (0x1)
+T2C78 013:163.217 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 013:163.245 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 013:163.693 Data: 00 00 00 00
+T2C78 013:163.726 - 0.519ms returns 4 (0x4)
+T2C78 013:164.606 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 013:164.653 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 013:165.093 Data: 00 00 00 00
+T2C78 013:165.129 - 0.533ms returns 4 (0x4)
+T2C78 013:165.741 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 013:165.778 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 013:166.211 Data: 0F 00 00 00
+T2C78 013:166.245 - 0.513ms returns 4 (0x4)
+T2C78 013:166.808 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 013:166.845 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 013:167.197 Data: 3F 01 00 00
+T2C78 013:167.230 - 0.431ms returns 4 (0x4)
+T2C78 013:167.274 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 013:167.300 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 013:167.687 Data: 00 14 00 00
+T2C78 013:167.720 - 0.456ms returns 4 (0x4)
+T2C78 013:168.376 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 013:168.416 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 013:168.758 Data: 00 00 00 00
+T2C78 013:168.792 - 0.425ms returns 4 (0x4)
+T2C78 013:168.859 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 013:168.886 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 013:169.257 Data: 00
+T2C78 013:169.291 - 0.441ms returns 1 (0x1)
+T2C78 013:169.321 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 013:169.346 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 013:169.714 Data: 00
+T2C78 013:169.748 - 0.436ms returns 1 (0x1)
+T2C78 013:169.776 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 013:169.800 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 013:170.169 Data: 63
+T2C78 013:170.202 - 0.435ms returns 1 (0x1)
+T2C78 013:170.232 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 013:170.257 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 013:170.892 Data: 63
+T2C78 013:170.927 - 0.705ms returns 1 (0x1)
+T19A8 013:171.059 JLINK_IsHalted()
+T19A8 013:171.426 - 0.381ms returns FALSE
+T19A8 013:271.629 JLINK_HasError()
+T19A8 013:271.699 JLINK_IsHalted()
+T19A8 013:272.216 - 0.533ms returns FALSE
+T19A8 013:373.342 JLINK_HasError()
+T19A8 013:373.413 JLINK_IsHalted()
+T19A8 013:373.875 - 0.478ms returns FALSE
+T19A8 013:473.970 JLINK_HasError()
+T19A8 013:474.037 JLINK_IsHalted()
+T19A8 013:474.512 - 0.490ms returns FALSE
+T19A8 013:574.665 JLINK_HasError()
+T19A8 013:574.731 JLINK_IsHalted()
+T19A8 013:575.195 - 0.479ms returns FALSE
+T19A8 013:675.642 JLINK_HasError()
+T19A8 013:675.730 JLINK_HasError()
+T19A8 013:675.758 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 013:675.812 Data: B2 47 02 03
+T19A8 013:675.848 Debug reg: DWT_CYCCNT
+T19A8 013:675.880 - 0.133ms returns 1 (0x1)
+T2C78 013:676.302 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 013:676.422 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 013:676.966 Data: 00
+T2C78 013:677.007 - 0.716ms returns 1 (0x1)
+T2C78 013:677.099 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 013:677.145 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 013:677.674 Data: 32
+T2C78 013:677.711 - 0.622ms returns 1 (0x1)
+T2C78 013:677.883 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 013:677.914 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 013:678.371 Data: E3 00 00 00
+T2C78 013:678.407 - 0.535ms returns 4 (0x4)
+T2C78 013:679.961 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 013:680.019 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 013:680.477 Data: AD 00 00 00
+T2C78 013:680.516 - 0.565ms returns 4 (0x4)
+T2C78 013:681.519 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 013:681.559 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 013:681.999 Data: EF 00 00 00
+T2C78 013:682.035 - 0.525ms returns 4 (0x4)
+T2C78 013:682.952 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 013:683.091 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 013:683.448 Data: 3F 01 00 00
+T2C78 013:683.477 - 0.532ms returns 4 (0x4)
+T2C78 013:683.518 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 013:683.540 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 013:683.881 Data: 77 07 00 00
+T2C78 013:683.906 - 0.395ms returns 4 (0x4)
+T2C78 013:684.744 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 013:684.777 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 013:685.086 Data: 00 00 00 00
+T2C78 013:685.108 - 0.370ms returns 4 (0x4)
+T2C78 013:685.157 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 013:685.174 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 013:685.508 Data: 00
+T2C78 013:685.531 - 0.379ms returns 1 (0x1)
+T2C78 013:685.551 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 013:685.568 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 013:685.871 Data: 00
+T2C78 013:685.890 - 0.344ms returns 1 (0x1)
+T2C78 013:685.907 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 013:685.922 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 013:686.225 Data: 63
+T2C78 013:686.245 - 0.343ms returns 1 (0x1)
+T2C78 013:686.263 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 013:686.278 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 013:686.620 Data: 63
+T2C78 013:686.645 - 0.388ms returns 1 (0x1)
+T19A8 013:686.739 JLINK_IsHalted()
+T19A8 013:687.334 - 0.613ms returns FALSE
+T19A8 013:788.354 JLINK_HasError()
+T19A8 013:788.424 JLINK_IsHalted()
+T19A8 013:788.915 - 0.505ms returns FALSE
+T19A8 013:889.779 JLINK_HasError()
+T19A8 013:889.796 JLINK_IsHalted()
+T19A8 013:890.151 - 0.358ms returns FALSE
+T19A8 013:990.227 JLINK_HasError()
+T19A8 013:990.308 JLINK_IsHalted()
+T19A8 013:990.794 - 0.500ms returns FALSE
+T19A8 014:091.721 JLINK_HasError()
+T19A8 014:091.804 JLINK_IsHalted()
+T19A8 014:092.411 - 0.655ms returns FALSE
+T19A8 014:193.118 JLINK_HasError()
+T19A8 014:193.221 JLINK_HasError()
+T19A8 014:193.248 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 014:193.304 Data: B2 47 02 03
+T19A8 014:193.340 Debug reg: DWT_CYCCNT
+T19A8 014:193.372 - 0.134ms returns 1 (0x1)
+T2C78 014:193.895 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 014:193.990 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 014:194.680 Data: 00
+T2C78 014:194.754 - 0.871ms returns 1 (0x1)
+T2C78 014:194.842 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 014:194.891 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 014:195.434 Data: 32
+T2C78 014:195.472 - 0.642ms returns 1 (0x1)
+T2C78 014:195.605 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 014:195.637 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 014:196.157 Data: A0 00 00 00
+T2C78 014:196.193 - 0.599ms returns 4 (0x4)
+T2C78 014:197.742 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 014:197.799 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 014:198.497 Data: 00 00 00 00
+T2C78 014:198.594 - 0.864ms returns 4 (0x4)
+T2C78 014:200.403 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 014:200.466 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 014:200.987 Data: A7 00 00 00
+T2C78 014:201.058 - 0.665ms returns 4 (0x4)
+T2C78 014:202.344 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 014:202.407 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 014:202.828 Data: 3F 01 00 00
+T2C78 014:202.865 - 0.531ms returns 4 (0x4)
+T2C78 014:202.916 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 014:202.946 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 014:203.291 Data: 00 0A 00 00
+T2C78 014:203.324 - 0.417ms returns 4 (0x4)
+T2C78 014:204.732 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 014:204.787 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 014:205.195 Data: 00 00 00 00
+T2C78 014:205.245 - 0.522ms returns 4 (0x4)
+T2C78 014:205.384 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 014:205.418 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 014:205.797 Data: 00
+T2C78 014:205.828 - 0.453ms returns 1 (0x1)
+T2C78 014:205.856 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 014:205.880 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 014:206.432 Data: 00
+T2C78 014:206.509 - 0.669ms returns 1 (0x1)
+T2C78 014:206.552 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 014:206.579 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 014:206.961 Data: 63
+T2C78 014:206.990 - 0.447ms returns 1 (0x1)
+T2C78 014:207.018 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 014:207.041 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 014:207.381 Data: 63
+T2C78 014:207.407 - 0.397ms returns 1 (0x1)
+T19A8 014:207.498 JLINK_IsHalted()
+T19A8 014:207.834 - 0.350ms returns FALSE
+T19A8 014:308.069 JLINK_HasError()
+T19A8 014:308.170 JLINK_IsHalted()
+T19A8 014:308.861 - 0.745ms returns FALSE
+T19A8 014:409.084 JLINK_HasError()
+T19A8 014:409.175 JLINK_IsHalted()
+T19A8 014:409.875 - 0.753ms returns FALSE
+T19A8 014:510.164 JLINK_HasError()
+T19A8 014:510.267 JLINK_IsHalted()
+T19A8 014:510.947 - 0.731ms returns FALSE
+T19A8 014:611.863 JLINK_HasError()
+T19A8 014:612.039 JLINK_IsHalted()
+T19A8 014:612.458 - 0.434ms returns FALSE
+T19A8 014:713.333 JLINK_HasError()
+T19A8 014:713.350 JLINK_HasError()
+T19A8 014:713.355 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 014:713.368 Data: B2 47 02 03
+T19A8 014:713.375 Debug reg: DWT_CYCCNT
+T19A8 014:713.380 - 0.027ms returns 1 (0x1)
+T2C78 014:713.478 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 014:713.525 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 014:713.798 Data: 00
+T2C78 014:713.805 - 0.328ms returns 1 (0x1)
+T2C78 014:713.817 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 014:713.823 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 014:714.065 Data: 32
+T2C78 014:714.072 - 0.256ms returns 1 (0x1)
+T2C78 014:714.108 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 014:714.135 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 014:714.378 Data: E2 00 00 00
+T2C78 014:714.385 - 0.278ms returns 4 (0x4)
+T2C78 014:714.743 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 014:714.757 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 014:715.025 Data: A9 00 00 00
+T2C78 014:715.033 - 0.291ms returns 4 (0x4)
+T2C78 014:715.259 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 014:715.269 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 014:715.775 Data: EF 00 00 00
+T2C78 014:715.787 - 0.530ms returns 4 (0x4)
+T2C78 014:716.083 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 014:716.097 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 014:716.353 Data: 3F 01 00 00
+T2C78 014:716.360 - 0.278ms returns 4 (0x4)
+T2C78 014:716.372 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 014:716.378 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 014:716.624 Data: 42 08 00 00
+T2C78 014:716.632 - 0.262ms returns 4 (0x4)
+T2C78 014:716.909 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 014:716.920 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 014:717.195 Data: 00 00 00 00
+T2C78 014:717.202 - 0.294ms returns 4 (0x4)
+T2C78 014:717.220 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 014:717.228 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 014:717.472 Data: 00
+T2C78 014:717.478 - 0.260ms returns 1 (0x1)
+T2C78 014:717.484 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 014:717.489 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 014:717.739 Data: 00
+T2C78 014:717.750 - 0.267ms returns 1 (0x1)
+T2C78 014:717.760 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 014:717.768 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 014:718.054 Data: 63
+T2C78 014:718.063 - 0.305ms returns 1 (0x1)
+T2C78 014:718.072 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 014:718.079 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 014:718.350 Data: 63
+T2C78 014:718.356 - 0.286ms returns 1 (0x1)
+T19A8 014:718.391 JLINK_IsHalted()
+T19A8 014:718.643 - 0.255ms returns FALSE
+T19A8 014:819.401 JLINK_HasError()
+T19A8 014:819.422 JLINK_IsHalted()
+T19A8 014:819.757 - 0.338ms returns FALSE
+T19A8 014:920.806 JLINK_HasError()
+T19A8 014:920.822 JLINK_IsHalted()
+T19A8 014:921.135 - 0.315ms returns FALSE
+T19A8 015:021.368 JLINK_HasError()
+T19A8 015:021.389 JLINK_IsHalted()
+T19A8 015:021.741 - 0.363ms returns FALSE
+T19A8 015:122.069 JLINK_HasError()
+T19A8 015:122.085 JLINK_IsHalted()
+T19A8 015:122.393 - 0.311ms returns FALSE
+T19A8 015:222.680 JLINK_HasError()
+T19A8 015:222.698 JLINK_HasError()
+T19A8 015:222.703 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 015:222.716 Data: B2 47 02 03
+T19A8 015:222.723 Debug reg: DWT_CYCCNT
+T19A8 015:222.728 - 0.027ms returns 1 (0x1)
+T2C78 015:222.826 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 015:222.920 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 015:223.238 Data: 00
+T2C78 015:223.337 - 0.513ms returns 1 (0x1)
+T2C78 015:223.351 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 015:223.360 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 015:223.613 Data: 32
+T2C78 015:223.622 - 0.273ms returns 1 (0x1)
+T2C78 015:223.678 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 015:223.685 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 015:223.958 Data: E2 00 00 00
+T2C78 015:223.974 - 0.298ms returns 4 (0x4)
+T2C78 015:224.213 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 015:224.225 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 015:224.475 Data: A9 00 00 00
+T2C78 015:224.482 - 0.271ms returns 4 (0x4)
+T2C78 015:224.692 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 015:224.703 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 015:225.025 Data: EF 00 00 00
+T2C78 015:225.032 - 0.342ms returns 4 (0x4)
+T2C78 015:225.169 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 015:225.178 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 015:225.498 Data: 3F 01 00 00
+T2C78 015:225.527 - 0.360ms returns 4 (0x4)
+T2C78 015:225.536 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 015:225.542 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 015:225.839 Data: 42 08 00 00
+T2C78 015:225.847 - 0.312ms returns 4 (0x4)
+T2C78 015:226.016 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 015:226.026 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 015:226.353 Data: 00 00 00 00
+T2C78 015:226.360 - 0.345ms returns 4 (0x4)
+T2C78 015:226.375 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 015:226.380 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 015:226.639 Data: 00
+T2C78 015:226.645 - 0.272ms returns 1 (0x1)
+T2C78 015:226.651 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 015:226.656 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 015:226.902 Data: 00
+T2C78 015:226.908 - 0.258ms returns 1 (0x1)
+T2C78 015:226.914 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 015:226.918 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 015:227.169 Data: 63
+T2C78 015:227.175 - 0.263ms returns 1 (0x1)
+T2C78 015:227.181 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 015:227.185 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 015:227.433 Data: 63
+T2C78 015:227.440 - 0.261ms returns 1 (0x1)
+T19A8 015:227.466 JLINK_IsHalted()
+T19A8 015:227.709 - 0.246ms returns FALSE
+T19A8 015:328.419 JLINK_HasError()
+T19A8 015:328.451 JLINK_IsHalted()
+T19A8 015:328.848 - 0.402ms returns FALSE
+T19A8 015:429.016 JLINK_HasError()
+T19A8 015:429.031 JLINK_IsHalted()
+T19A8 015:429.350 - 0.321ms returns FALSE
+T19A8 015:529.814 JLINK_HasError()
+T19A8 015:529.832 JLINK_IsHalted()
+T19A8 015:530.149 - 0.319ms returns FALSE
+T19A8 015:631.153 JLINK_HasError()
+T19A8 015:631.190 JLINK_IsHalted()
+T19A8 015:631.531 - 0.347ms returns FALSE
+T19A8 015:732.290 JLINK_HasError()
+T19A8 015:732.341 JLINK_IsHalted()
+T19A8 015:732.693 - 0.377ms returns FALSE
+T19A8 015:834.051 JLINK_HasError()
+T19A8 015:834.132 JLINK_HasError()
+T19A8 015:834.157 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 015:834.303 Data: B2 47 02 03
+T19A8 015:834.336 Debug reg: DWT_CYCCNT
+T19A8 015:834.442 - 0.295ms returns 1 (0x1)
+T2C78 015:834.799 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 015:834.836 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 015:835.475 Data: 00
+T2C78 015:835.543 - 0.755ms returns 1 (0x1)
+T2C78 015:835.623 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 015:835.667 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 015:836.095 Data: 32
+T2C78 015:836.160 - 0.548ms returns 1 (0x1)
+T2C78 015:836.318 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 015:836.363 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 015:836.767 Data: E2 00 00 00
+T2C78 015:836.806 - 0.498ms returns 4 (0x4)
+T2C78 015:837.706 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 015:837.741 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 015:838.086 Data: A9 00 00 00
+T2C78 015:838.116 - 0.419ms returns 4 (0x4)
+T2C78 015:838.154 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 015:838.179 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 015:838.563 Data: EF 00 00 00
+T2C78 015:838.592 - 0.447ms returns 4 (0x4)
+T2C78 015:838.625 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 015:838.646 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 015:839.002 Data: 3F 01 00 00
+T2C78 015:839.028 - 0.411ms returns 4 (0x4)
+T2C78 015:839.058 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 015:839.078 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 015:839.419 Data: 42 08 00 00
+T2C78 015:839.446 - 0.395ms returns 4 (0x4)
+T2C78 015:839.597 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 015:839.618 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 015:839.967 Data: 00 00 00 00
+T2C78 015:839.993 - 0.404ms returns 4 (0x4)
+T2C78 015:840.043 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 015:840.062 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 015:840.404 Data: 00
+T2C78 015:840.429 - 0.394ms returns 1 (0x1)
+T2C78 015:840.452 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 015:840.471 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 015:840.803 Data: 00
+T2C78 015:840.827 - 0.382ms returns 1 (0x1)
+T2C78 015:840.848 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 015:840.867 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 015:841.181 Data: 63
+T2C78 015:841.205 - 0.364ms returns 1 (0x1)
+T2C78 015:841.228 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 015:841.247 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 015:841.595 Data: 63
+T2C78 015:841.625 - 0.404ms returns 1 (0x1)
+T19A8 015:841.747 JLINK_IsHalted()
+T19A8 015:842.128 - 0.395ms returns FALSE
+T19A8 015:942.572 JLINK_HasError()
+T19A8 015:942.645 JLINK_IsHalted()
+T19A8 015:943.044 - 0.414ms returns FALSE
+T19A8 016:043.197 JLINK_HasError()
+T19A8 016:043.263 JLINK_IsHalted()
+T19A8 016:043.836 - 0.619ms returns FALSE
+T19A8 016:144.712 JLINK_HasError()
+T19A8 016:144.779 JLINK_IsHalted()
+T19A8 016:145.174 - 0.410ms returns FALSE
+T19A8 016:245.392 JLINK_HasError()
+T19A8 016:245.434 JLINK_IsHalted()
+T19A8 016:245.780 - 0.353ms returns FALSE
+T19A8 016:346.641 JLINK_HasError()
+T19A8 016:346.715 JLINK_IsHalted()
+T19A8 016:347.213 - 0.513ms returns FALSE
+T19A8 016:447.286 JLINK_HasError()
+T19A8 016:447.344 JLINK_HasError()
+T19A8 016:447.369 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 016:447.416 Data: B2 47 02 03
+T19A8 016:447.448 Debug reg: DWT_CYCCNT
+T19A8 016:447.476 - 0.117ms returns 1 (0x1)
+T2C78 016:447.818 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 016:447.854 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 016:448.377 Data: 00
+T2C78 016:448.412 - 0.603ms returns 1 (0x1)
+T2C78 016:448.457 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 016:448.484 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 016:448.946 Data: 32
+T2C78 016:448.978 - 0.530ms returns 1 (0x1)
+T2C78 016:449.085 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 016:449.111 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 016:449.580 Data: 20 00 00 00
+T2C78 016:449.612 - 0.536ms returns 4 (0x4)
+T2C78 016:450.555 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 016:450.605 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 016:451.026 Data: E8 00 00 00
+T2C78 016:451.065 - 0.520ms returns 4 (0x4)
+T2C78 016:451.801 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 016:451.842 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 016:452.234 Data: 59 00 00 00
+T2C78 016:452.272 - 0.482ms returns 4 (0x4)
+T2C78 016:452.957 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 016:452.996 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 016:453.384 Data: 3F 01 00 00
+T2C78 016:453.418 - 0.470ms returns 4 (0x4)
+T2C78 016:453.464 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 016:453.491 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 016:454.353 Data: F0 13 00 00
+T2C78 016:454.387 - 0.933ms returns 4 (0x4)
+T2C78 016:455.185 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 016:455.227 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 016:455.614 Data: 00 00 00 00
+T2C78 016:455.645 - 0.468ms returns 4 (0x4)
+T2C78 016:455.706 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 016:455.730 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 016:456.268 Data: 01
+T2C78 016:456.328 - 0.630ms returns 1 (0x1)
+T2C78 016:456.929 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 016:456.966 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 016:458.388 Data: 00
+T2C78 016:458.423 - 1.500ms returns 1 (0x1)
+T2C78 016:458.450 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 016:458.472 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 016:459.167 Data: 63
+T2C78 016:459.219 - 0.776ms returns 1 (0x1)
+T2C78 016:459.256 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 016:459.285 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 016:459.655 Data: 63
+T2C78 016:459.680 - 0.429ms returns 1 (0x1)
+T19A8 016:459.761 JLINK_IsHalted()
+T19A8 016:460.099 - 0.345ms returns FALSE
+T19A8 016:560.718 JLINK_HasError()
+T19A8 016:560.788 JLINK_IsHalted()
+T19A8 016:561.365 - 0.624ms returns FALSE
+T19A8 016:662.271 JLINK_HasError()
+T19A8 016:662.338 JLINK_IsHalted()
+T19A8 016:662.760 - 0.464ms returns FALSE
+T19A8 016:763.593 JLINK_HasError()
+T19A8 016:763.668 JLINK_IsHalted()
+T19A8 016:764.155 - 0.534ms returns FALSE
+T19A8 016:865.224 JLINK_HasError()
+T19A8 016:865.298 JLINK_IsHalted()
+T19A8 016:865.793 - 0.542ms returns FALSE
+T19A8 016:966.409 JLINK_HasError()
+T19A8 016:966.495 JLINK_HasError()
+T19A8 016:966.519 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 016:966.567 Data: B2 47 02 03
+T19A8 016:966.600 Debug reg: DWT_CYCCNT
+T19A8 016:966.628 - 0.118ms returns 1 (0x1)
+T2C78 016:967.025 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 016:967.109 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 016:967.680 Data: 56
+T2C78 016:967.761 - 0.747ms returns 1 (0x1)
+T2C78 016:968.778 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 016:968.838 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 016:969.247 Data: 32
+T2C78 016:969.293 - 0.525ms returns 1 (0x1)
+T2C78 016:969.461 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 016:969.492 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 016:969.857 Data: E2 00 00 00
+T2C78 016:969.891 - 0.439ms returns 4 (0x4)
+T2C78 016:973.257 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 016:973.318 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 016:973.895 Data: A9 00 00 00
+T2C78 016:973.915 - 0.665ms returns 4 (0x4)
+T2C78 016:974.609 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 016:974.635 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 016:974.930 Data: EF 00 00 00
+T2C78 016:974.948 - 0.344ms returns 4 (0x4)
+T2C78 016:975.466 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 016:975.488 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 016:975.817 Data: 3F 01 00 00
+T2C78 016:975.836 - 0.375ms returns 4 (0x4)
+T2C78 016:975.862 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 016:975.875 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 016:976.170 Data: 42 08 00 00
+T2C78 016:976.184 - 0.325ms returns 4 (0x4)
+T2C78 016:976.710 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 016:976.730 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 016:977.009 Data: 00 00 00 00
+T2C78 016:977.023 - 0.316ms returns 4 (0x4)
+T2C78 016:977.055 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 016:977.066 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 016:977.349 Data: 01
+T2C78 016:977.362 - 0.310ms returns 1 (0x1)
+T2C78 016:977.593 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 016:977.607 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 016:977.883 Data: 00
+T2C78 016:977.896 - 0.306ms returns 1 (0x1)
+T2C78 016:977.908 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 016:977.918 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 016:978.191 Data: 63
+T2C78 016:978.202 - 0.298ms returns 1 (0x1)
+T2C78 016:978.213 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 016:978.222 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 016:978.477 Data: 63
+T2C78 016:978.488 - 0.278ms returns 1 (0x1)
+T19A8 016:978.532 JLINK_IsHalted()
+T19A8 016:978.836 - 0.310ms returns FALSE
+T19A8 017:078.898 JLINK_HasError()
+T19A8 017:078.957 JLINK_IsHalted()
+T19A8 017:079.455 - 0.513ms returns FALSE
+T19A8 017:180.319 JLINK_HasError()
+T19A8 017:180.382 JLINK_IsHalted()
+T19A8 017:180.804 - 0.437ms returns FALSE
+T19A8 017:281.452 JLINK_HasError()
+T19A8 017:281.513 JLINK_IsHalted()
+T19A8 017:281.912 - 0.438ms returns FALSE
+T19A8 017:382.021 JLINK_HasError()
+T19A8 017:382.089 JLINK_IsHalted()
+T19A8 017:382.585 - 0.509ms returns FALSE
+T19A8 017:482.749 JLINK_HasError()
+T19A8 017:482.821 JLINK_HasError()
+T19A8 017:482.845 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 017:482.892 Data: B2 47 02 03
+T19A8 017:482.924 Debug reg: DWT_CYCCNT
+T19A8 017:482.952 - 0.117ms returns 1 (0x1)
+T2C78 017:483.290 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 017:483.372 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 017:483.983 Data: 00
+T2C78 017:484.057 - 0.777ms returns 1 (0x1)
+T2C78 017:486.501 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 017:486.583 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 017:488.082 Data: 32
+T2C78 017:488.145 - 1.653ms returns 1 (0x1)
+T2C78 017:488.313 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 017:488.354 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 017:488.934 Data: E2 00 00 00
+T2C78 017:489.031 - 0.727ms returns 4 (0x4)
+T2C78 017:489.779 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 017:489.821 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 017:490.212 Data: A9 00 00 00
+T2C78 017:490.246 - 0.474ms returns 4 (0x4)
+T2C78 017:490.820 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 017:490.853 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 017:491.614 Data: EF 00 00 00
+T2C78 017:491.632 - 0.818ms returns 4 (0x4)
+T2C78 017:492.073 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 017:492.112 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 017:492.411 Data: 4F 00 00 00
+T2C78 017:492.428 - 0.359ms returns 4 (0x4)
+T2C78 017:492.745 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 017:492.816 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 017:493.110 Data: B0 0E 00 00
+T2C78 017:493.125 - 0.384ms returns 4 (0x4)
+T2C78 017:493.576 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 017:493.595 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 017:493.898 Data: 00 00 00 00
+T2C78 017:493.910 - 0.337ms returns 4 (0x4)
+T2C78 017:493.939 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 017:493.950 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 017:494.230 Data: 03
+T2C78 017:494.242 - 0.306ms returns 1 (0x1)
+T2C78 017:494.454 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 017:494.468 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 017:494.780 Data: 02
+T2C78 017:494.792 - 0.342ms returns 1 (0x1)
+T2C78 017:494.978 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 017:494.990 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 017:495.265 Data: 63
+T2C78 017:495.276 - 0.300ms returns 1 (0x1)
+T2C78 017:495.287 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 017:495.296 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 017:495.538 Data: 63
+T2C78 017:495.549 - 0.264ms returns 1 (0x1)
+T19A8 017:495.588 JLINK_IsHalted()
+T19A8 017:495.853 - 0.270ms returns FALSE
+T19A8 017:596.282 JLINK_HasError()
+T19A8 017:596.353 JLINK_IsHalted()
+T19A8 017:596.805 - 0.495ms returns FALSE
+T19A8 017:696.919 JLINK_HasError()
+T19A8 017:696.983 JLINK_IsHalted()
+T19A8 017:697.373 - 0.404ms returns FALSE
+T19A8 017:798.047 JLINK_HasError()
+T19A8 017:798.140 JLINK_IsHalted()
+T19A8 017:798.584 - 0.487ms returns FALSE
+T19A8 017:898.943 JLINK_HasError()
+T19A8 017:899.016 JLINK_IsHalted()
+T19A8 017:899.425 - 0.451ms returns FALSE
+T19A8 018:000.149 JLINK_HasError()
+T19A8 018:000.208 JLINK_HasError()
+T19A8 018:000.232 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 018:000.278 Data: B2 47 02 03
+T19A8 018:000.310 Debug reg: DWT_CYCCNT
+T19A8 018:000.338 - 0.116ms returns 1 (0x1)
+T2C78 018:000.700 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 018:000.791 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 018:001.442 Data: 00
+T2C78 018:001.548 - 0.860ms returns 1 (0x1)
+T2C78 018:003.013 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 018:003.080 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 018:004.115 Data: 32
+T2C78 018:004.153 - 1.151ms returns 1 (0x1)
+T2C78 018:004.313 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 018:004.348 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 018:004.714 Data: E2 00 00 00
+T2C78 018:004.766 - 0.464ms returns 4 (0x4)
+T2C78 018:004.844 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 018:004.885 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 018:005.348 Data: A9 00 00 00
+T2C78 018:005.383 - 0.548ms returns 4 (0x4)
+T2C78 018:005.428 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 018:005.458 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 018:005.821 Data: EF 00 00 00
+T2C78 018:005.853 - 0.434ms returns 4 (0x4)
+T2C78 018:005.891 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 018:005.917 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 018:006.271 Data: 3F 01 00 00
+T2C78 018:006.304 - 0.422ms returns 4 (0x4)
+T2C78 018:008.271 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 018:008.325 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 018:008.693 Data: 42 08 00 00
+T2C78 018:008.722 - 0.459ms returns 4 (0x4)
+T2C78 018:009.694 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 018:009.728 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 018:010.077 Data: 00 00 00 00
+T2C78 018:010.104 - 0.416ms returns 4 (0x4)
+T2C78 018:010.156 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 018:010.175 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 018:010.575 Data: 03
+T2C78 018:010.596 - 0.446ms returns 1 (0x1)
+T2C78 018:010.969 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 018:010.993 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 018:011.358 Data: 02
+T2C78 018:011.379 - 0.415ms returns 1 (0x1)
+T2C78 018:011.697 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 018:011.717 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 018:012.050 Data: 63
+T2C78 018:012.069 - 0.380ms returns 1 (0x1)
+T2C78 018:012.090 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 018:012.104 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 018:012.411 Data: 63
+T2C78 018:012.428 - 0.342ms returns 1 (0x1)
+T19A8 018:012.492 JLINK_IsHalted()
+T19A8 018:012.824 - 0.341ms returns FALSE
+T19A8 018:112.966 JLINK_HasError()
+T19A8 018:113.031 JLINK_IsHalted()
+T19A8 018:113.554 - 0.537ms returns FALSE
+T19A8 018:214.262 JLINK_HasError()
+T19A8 018:214.327 JLINK_IsHalted()
+T19A8 018:214.743 - 0.458ms returns FALSE
+T19A8 018:315.178 JLINK_HasError()
+T19A8 018:315.245 JLINK_IsHalted()
+T19A8 018:315.655 - 0.424ms returns FALSE
+T19A8 018:415.742 JLINK_HasError()
+T19A8 018:415.811 JLINK_IsHalted()
+T19A8 018:416.220 - 0.422ms returns FALSE
+T19A8 018:516.946 JLINK_HasError()
+T19A8 018:517.036 JLINK_HasError()
+T19A8 018:517.060 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 018:517.109 Data: B2 47 02 03
+T19A8 018:517.142 Debug reg: DWT_CYCCNT
+T19A8 018:517.170 - 0.120ms returns 1 (0x1)
+T2C78 018:517.576 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 018:517.612 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 018:518.250 Data: 00
+T2C78 018:518.317 - 0.752ms returns 1 (0x1)
+T2C78 018:518.396 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 018:518.441 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 018:518.946 Data: 32
+T2C78 018:518.980 - 0.594ms returns 1 (0x1)
+T2C78 018:519.107 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 018:519.137 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 018:519.588 Data: 20 00 00 00
+T2C78 018:519.620 - 0.523ms returns 4 (0x4)
+T2C78 018:520.597 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 018:520.648 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 018:521.329 Data: E8 00 00 00
+T2C78 018:521.402 - 0.815ms returns 4 (0x4)
+T2C78 018:522.426 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 018:522.516 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 018:523.098 Data: 59 00 00 00
+T2C78 018:523.167 - 0.751ms returns 4 (0x4)
+T2C78 018:524.036 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 018:524.092 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 018:526.236 Data: 3F 01 00 00
+T2C78 018:526.284 - 2.257ms returns 4 (0x4)
+T2C78 018:527.309 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 018:527.395 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 018:527.810 Data: F0 13 00 00
+T2C78 018:527.848 - 0.549ms returns 4 (0x4)
+T2C78 018:529.177 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 018:529.234 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 018:529.658 Data: 00 00 00 00
+T2C78 018:529.691 - 0.522ms returns 4 (0x4)
+T2C78 018:529.763 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 018:529.790 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 018:530.505 Data: 00
+T2C78 018:530.534 - 0.779ms returns 1 (0x1)
+T2C78 018:531.073 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 018:531.105 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 018:531.705 Data: 03
+T2C78 018:531.791 - 0.732ms returns 1 (0x1)
+T2C78 018:532.278 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 018:532.312 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 018:532.665 Data: 63
+T2C78 018:532.684 - 0.412ms returns 1 (0x1)
+T2C78 018:532.706 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 018:532.722 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 018:533.023 Data: 63
+T2C78 018:533.040 - 0.340ms returns 1 (0x1)
+T19A8 018:533.099 JLINK_IsHalted()
+T19A8 018:533.393 - 0.301ms returns FALSE
+T19A8 018:634.409 JLINK_HasError()
+T19A8 018:634.478 JLINK_IsHalted()
+T19A8 018:634.959 - 0.526ms returns FALSE
+T19A8 018:735.861 JLINK_HasError()
+T19A8 018:735.922 JLINK_IsHalted()
+T19A8 018:736.242 - 0.323ms returns FALSE
+T19A8 018:836.317 JLINK_HasError()
+T19A8 018:836.383 JLINK_IsHalted()
+T19A8 018:836.782 - 0.413ms returns FALSE
+T19A8 018:938.389 JLINK_HasError()
+T19A8 018:938.453 JLINK_IsHalted()
+T19A8 018:938.859 - 0.452ms returns FALSE
+T19A8 019:039.047 JLINK_HasError()
+T19A8 019:039.116 JLINK_HasError()
+T19A8 019:039.140 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 019:039.186 Data: B2 47 02 03
+T19A8 019:039.218 Debug reg: DWT_CYCCNT
+T19A8 019:039.247 - 0.116ms returns 1 (0x1)
+T2C78 019:039.599 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 019:039.680 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 019:040.195 Data: 00
+T2C78 019:040.260 - 0.671ms returns 1 (0x1)
+T2C78 019:040.345 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 019:040.389 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 019:040.778 Data: 32
+T2C78 019:040.811 - 0.477ms returns 1 (0x1)
+T2C78 019:040.970 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 019:041.012 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 019:041.377 Data: C1 00 00 00
+T2C78 019:041.410 - 0.450ms returns 4 (0x4)
+T2C78 019:042.869 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 019:042.926 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 019:043.277 Data: 00 00 00 00
+T2C78 019:043.312 - 0.452ms returns 4 (0x4)
+T2C78 019:045.464 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 019:045.526 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 019:045.933 Data: EF 00 00 00
+T2C78 019:045.981 - 0.525ms returns 4 (0x4)
+T2C78 019:047.092 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 019:047.146 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 019:047.504 Data: 4E 00 00 00
+T2C78 019:047.535 - 0.452ms returns 4 (0x4)
+T2C78 019:048.089 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 019:048.128 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 019:048.467 Data: 81 0E 00 00
+T2C78 019:048.500 - 0.422ms returns 4 (0x4)
+T2C78 019:049.604 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 019:049.647 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 019:049.998 Data: 00 00 00 00
+T2C78 019:050.029 - 0.433ms returns 4 (0x4)
+T2C78 019:050.097 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 019:050.123 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 019:050.468 Data: 01
+T2C78 019:050.495 - 0.405ms returns 1 (0x1)
+T2C78 019:050.980 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 019:051.011 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 019:051.362 Data: 00
+T2C78 019:051.389 - 0.416ms returns 1 (0x1)
+T2C78 019:051.809 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 019:051.834 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 019:052.183 Data: 63
+T2C78 019:052.209 - 0.406ms returns 1 (0x1)
+T2C78 019:052.232 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 019:052.249 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 019:052.546 Data: 63
+T2C78 019:052.568 - 0.342ms returns 1 (0x1)
+T19A8 019:052.648 JLINK_IsHalted()
+T19A8 019:052.980 - 0.343ms returns FALSE
+T19A8 019:153.434 JLINK_HasError()
+T19A8 019:153.503 JLINK_IsHalted()
+T19A8 019:154.568 - 1.111ms returns FALSE
+T19A8 019:254.701 JLINK_HasError()
+T19A8 019:254.748 JLINK_IsHalted()
+T19A8 019:255.113 - 0.372ms returns FALSE
+T19A8 019:355.985 JLINK_HasError()
+T19A8 019:356.057 JLINK_IsHalted()
+T19A8 019:356.507 - 0.465ms returns FALSE
+T19A8 019:456.617 JLINK_HasError()
+T19A8 019:456.697 JLINK_IsHalted()
+T19A8 019:457.128 - 0.446ms returns FALSE
+T19A8 019:557.328 JLINK_HasError()
+T19A8 019:557.392 JLINK_HasError()
+T19A8 019:557.416 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 019:557.462 Data: B2 47 02 03
+T19A8 019:557.494 Debug reg: DWT_CYCCNT
+T19A8 019:557.533 - 0.127ms returns 1 (0x1)
+T2C78 019:557.872 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 019:557.969 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 019:558.382 Data: 00
+T2C78 019:558.420 - 0.559ms returns 1 (0x1)
+T2C78 019:558.487 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 019:558.522 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 019:558.898 Data: 32
+T2C78 019:558.930 - 0.452ms returns 1 (0x1)
+T2C78 019:559.082 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 019:559.110 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 019:559.458 Data: A9 00 00 00
+T2C78 019:559.490 - 0.417ms returns 4 (0x4)
+T2C78 019:560.871 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 019:560.924 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 019:561.290 Data: E8 00 00 00
+T2C78 019:561.325 - 0.464ms returns 4 (0x4)
+T2C78 019:563.168 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 019:563.228 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 019:563.620 Data: C5 00 00 00
+T2C78 019:563.665 - 0.505ms returns 4 (0x4)
+T2C78 019:564.797 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 019:564.847 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 019:565.195 Data: 3F 01 00 00
+T2C78 019:565.226 - 0.438ms returns 4 (0x4)
+T2C78 019:566.165 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 019:566.207 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 019:566.599 Data: F8 09 00 00
+T2C78 019:566.633 - 0.477ms returns 4 (0x4)
+T2C78 019:567.741 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 019:567.787 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 019:568.131 Data: 00 00 00 00
+T2C78 019:568.159 - 0.426ms returns 4 (0x4)
+T2C78 019:568.221 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 019:568.244 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 019:568.584 Data: 02
+T2C78 019:568.611 - 0.397ms returns 1 (0x1)
+T2C78 019:569.075 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 019:569.104 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 019:569.465 Data: 01
+T2C78 019:569.491 - 0.424ms returns 1 (0x1)
+T2C78 019:569.862 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 019:569.886 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 019:570.841 Data: 63
+T2C78 019:570.874 - 1.019ms returns 1 (0x1)
+T2C78 019:570.907 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 019:570.931 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 019:571.278 Data: 63
+T2C78 019:571.305 - 0.405ms returns 1 (0x1)
+T19A8 019:571.394 JLINK_IsHalted()
+T19A8 019:571.744 - 0.362ms returns FALSE
+T19A8 019:672.668 JLINK_HasError()
+T19A8 019:672.748 JLINK_IsHalted()
+T19A8 019:673.197 - 0.499ms returns FALSE
+T19A8 019:773.694 JLINK_HasError()
+T19A8 019:773.767 JLINK_IsHalted()
+T19A8 019:774.292 - 0.539ms returns FALSE
+T19A8 019:874.718 JLINK_HasError()
+T19A8 019:874.737 JLINK_IsHalted()
+T19A8 019:875.041 - 0.309ms returns FALSE
+T19A8 019:975.899 JLINK_HasError()
+T19A8 019:975.972 JLINK_IsHalted()
+T19A8 019:976.368 - 0.411ms returns FALSE
+T19A8 020:076.865 JLINK_HasError()
+T19A8 020:076.943 JLINK_HasError()
+T19A8 020:076.969 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 020:077.018 Data: B2 47 02 03
+T19A8 020:077.123 Debug reg: DWT_CYCCNT
+T19A8 020:077.155 - 0.197ms returns 1 (0x1)
+T2C78 020:077.557 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 020:077.602 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 020:078.010 Data: 54
+T2C78 020:078.043 - 0.497ms returns 1 (0x1)
+T2C78 020:078.969 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 020:079.039 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 020:079.399 Data: 32
+T2C78 020:079.433 - 0.475ms returns 1 (0x1)
+T2C78 020:079.581 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 020:079.610 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 020:079.952 Data: E2 00 00 00
+T2C78 020:079.984 - 0.413ms returns 4 (0x4)
+T2C78 020:081.136 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 020:081.191 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 020:081.616 Data: A9 00 00 00
+T2C78 020:081.661 - 0.534ms returns 4 (0x4)
+T2C78 020:083.051 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 020:083.117 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 020:083.506 Data: EF 00 00 00
+T2C78 020:083.541 - 0.499ms returns 4 (0x4)
+T2C78 020:084.563 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 020:084.609 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 020:084.966 Data: 3F 01 00 00
+T2C78 020:085.000 - 0.447ms returns 4 (0x4)
+T2C78 020:085.551 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 020:085.588 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 020:085.942 Data: 42 08 00 00
+T2C78 020:085.975 - 0.433ms returns 4 (0x4)
+T2C78 020:087.027 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 020:087.066 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 020:087.879 Data: 00 00 00 00
+T2C78 020:087.911 - 0.893ms returns 4 (0x4)
+T2C78 020:087.998 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 020:088.026 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 020:088.366 Data: 02
+T2C78 020:088.392 - 0.402ms returns 1 (0x1)
+T2C78 020:088.952 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 020:088.984 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 020:089.361 Data: 01
+T2C78 020:089.384 - 0.438ms returns 1 (0x1)
+T2C78 020:089.769 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 020:089.795 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 020:090.159 Data: 63
+T2C78 020:090.221 - 0.458ms returns 1 (0x1)
+T2C78 020:090.244 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 020:090.262 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 020:090.633 Data: 63
+T2C78 020:090.654 - 0.416ms returns 1 (0x1)
+T19A8 020:090.722 JLINK_IsHalted()
+T19A8 020:091.050 - 0.357ms returns FALSE
+T19A8 020:191.580 JLINK_HasError()
+T19A8 020:191.644 JLINK_IsHalted()
+T19A8 020:192.033 - 0.404ms returns FALSE
+T19A8 020:292.890 JLINK_HasError()
+T19A8 020:292.959 JLINK_IsHalted()
+T19A8 020:293.454 - 0.510ms returns FALSE
+T19A8 020:393.852 JLINK_HasError()
+T19A8 020:393.923 JLINK_IsHalted()
+T19A8 020:394.384 - 0.482ms returns FALSE
+T19A8 020:495.150 JLINK_HasError()
+T19A8 020:495.205 JLINK_IsHalted()
+T19A8 020:495.624 - 0.431ms returns FALSE
+T19A8 020:596.617 JLINK_HasError()
+T19A8 020:596.712 JLINK_HasError()
+T19A8 020:596.739 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 020:596.794 Data: B2 47 02 03
+T19A8 020:596.833 Debug reg: DWT_CYCCNT
+T19A8 020:596.865 - 0.137ms returns 1 (0x1)
+T2C78 020:597.305 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 020:597.398 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 020:598.010 Data: 00
+T2C78 020:598.048 - 0.754ms returns 1 (0x1)
+T2C78 020:599.600 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 020:599.660 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 020:600.214 Data: 32
+T2C78 020:600.251 - 0.662ms returns 1 (0x1)
+T2C78 020:600.395 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 020:600.428 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 020:600.912 Data: C1 00 00 00
+T2C78 020:600.948 - 0.564ms returns 4 (0x4)
+T2C78 020:602.104 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 020:602.150 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 020:602.577 Data: A9 00 00 00
+T2C78 020:602.616 - 0.522ms returns 4 (0x4)
+T2C78 020:603.216 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 020:603.256 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 020:603.631 Data: E1 00 00 00
+T2C78 020:603.667 - 0.461ms returns 4 (0x4)
+T2C78 020:605.030 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 020:605.116 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 020:605.505 Data: 3F 01 00 00
+T2C78 020:605.549 - 0.529ms returns 4 (0x4)
+T2C78 020:605.606 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 020:605.638 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 020:606.083 Data: 77 13 00 00
+T2C78 020:606.147 - 0.550ms returns 4 (0x4)
+T2C78 020:609.162 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 020:609.221 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 020:609.625 Data: 00 00 00 00
+T2C78 020:609.669 - 0.515ms returns 4 (0x4)
+T2C78 020:609.766 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 020:609.795 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 020:610.167 Data: 00
+T2C78 020:610.192 - 0.433ms returns 1 (0x1)
+T2C78 020:610.739 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 020:610.770 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 020:611.077 Data: 01
+T2C78 020:611.101 - 0.368ms returns 1 (0x1)
+T2C78 020:611.122 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 020:611.139 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 020:611.451 Data: 63
+T2C78 020:611.470 - 0.353ms returns 1 (0x1)
+T2C78 020:611.488 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 020:611.504 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 020:611.830 Data: 63
+T2C78 020:611.873 - 0.390ms returns 1 (0x1)
+T19A8 020:612.106 JLINK_IsHalted()
+T19A8 020:612.629 - 0.552ms returns FALSE
+T19A8 020:713.538 JLINK_HasError()
+T19A8 020:713.622 JLINK_IsHalted()
+T19A8 020:714.173 - 0.600ms returns FALSE
+T19A8 020:815.262 JLINK_HasError()
+T19A8 020:815.331 JLINK_IsHalted()
+T19A8 020:815.741 - 0.423ms returns FALSE
+T19A8 020:916.492 JLINK_HasError()
+T19A8 020:916.559 JLINK_IsHalted()
+T19A8 020:917.022 - 0.477ms returns FALSE
+T19A8 021:018.022 JLINK_HasError()
+T19A8 021:018.098 JLINK_IsHalted()
+T19A8 021:018.536 - 0.491ms returns FALSE
+T19A8 021:118.656 JLINK_HasError()
+T19A8 021:118.720 JLINK_HasError()
+T19A8 021:118.744 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 021:118.791 Data: B2 47 02 03
+T19A8 021:118.822 Debug reg: DWT_CYCCNT
+T19A8 021:118.851 - 0.116ms returns 1 (0x1)
+T2C78 021:119.209 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 021:119.298 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 021:119.728 Data: 00
+T2C78 021:119.766 - 0.567ms returns 1 (0x1)
+T2C78 021:120.683 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 021:120.740 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 021:121.117 Data: 32
+T2C78 021:121.162 - 0.489ms returns 1 (0x1)
+T2C78 021:121.309 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 021:121.346 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 021:121.709 Data: E2 00 00 00
+T2C78 021:121.741 - 0.442ms returns 4 (0x4)
+T2C78 021:123.990 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 021:124.059 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 021:124.655 Data: A9 00 00 00
+T2C78 021:124.694 - 0.714ms returns 4 (0x4)
+T2C78 021:124.754 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 021:124.787 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 021:125.258 Data: EF 00 00 00
+T2C78 021:125.290 - 0.544ms returns 4 (0x4)
+T2C78 021:126.503 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 021:126.551 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 021:127.032 Data: 3F 01 00 00
+T2C78 021:127.066 - 0.573ms returns 4 (0x4)
+T2C78 021:127.114 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 021:127.143 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 021:127.527 Data: 42 08 00 00
+T2C78 021:127.559 - 0.454ms returns 4 (0x4)
+T2C78 021:128.622 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 021:128.662 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 021:129.040 Data: 00 00 00 00
+T2C78 021:129.068 - 0.453ms returns 4 (0x4)
+T2C78 021:129.127 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 021:129.150 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 021:129.484 Data: 00
+T2C78 021:129.509 - 0.388ms returns 1 (0x1)
+T2C78 021:129.942 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 021:129.969 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 021:130.357 Data: 01
+T2C78 021:130.380 - 0.445ms returns 1 (0x1)
+T2C78 021:130.407 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 021:130.433 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 021:130.788 Data: 63
+T2C78 021:130.810 - 0.411ms returns 1 (0x1)
+T2C78 021:130.834 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 021:130.850 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 021:131.197 Data: 63
+T2C78 021:131.218 - 0.390ms returns 1 (0x1)
+T19A8 021:131.366 JLINK_IsHalted()
+T19A8 021:131.725 - 0.371ms returns FALSE
+T19A8 021:232.046 JLINK_HasError()
+T19A8 021:232.112 JLINK_IsHalted()
+T19A8 021:232.548 - 0.451ms returns FALSE
+T19A8 021:333.264 JLINK_HasError()
+T19A8 021:333.337 JLINK_IsHalted()
+T19A8 021:333.880 - 0.590ms returns FALSE
+T19A8 021:434.089 JLINK_HasError()
+T19A8 021:434.160 JLINK_IsHalted()
+T19A8 021:434.610 - 0.499ms returns FALSE
+T19A8 021:534.821 JLINK_HasError()
+T19A8 021:534.892 JLINK_IsHalted()
+T19A8 021:535.459 - 0.615ms returns FALSE
+T19A8 021:636.515 JLINK_HasError()
+T19A8 021:636.579 JLINK_HasError()
+T19A8 021:636.603 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 021:636.649 Data: B2 47 02 03
+T19A8 021:636.682 Debug reg: DWT_CYCCNT
+T19A8 021:636.710 - 0.117ms returns 1 (0x1)
+T2C78 021:637.042 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 021:637.079 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 021:637.595 Data: 00
+T2C78 021:637.630 - 0.598ms returns 1 (0x1)
+T2C78 021:637.675 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 021:637.702 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 021:638.169 Data: 32
+T2C78 021:638.202 - 0.537ms returns 1 (0x1)
+T2C78 021:638.305 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 021:638.331 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 021:638.770 Data: 20 00 00 00
+T2C78 021:638.802 - 0.506ms returns 4 (0x4)
+T2C78 021:640.440 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 021:640.530 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 021:640.985 Data: 98 00 00 00
+T2C78 021:641.032 - 0.601ms returns 4 (0x4)
+T2C78 021:641.867 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 021:641.918 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 021:642.448 Data: 48 00 00 00
+T2C78 021:642.489 - 0.631ms returns 4 (0x4)
+T2C78 021:643.581 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 021:643.627 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 021:644.114 Data: CA 00 00 00
+T2C78 021:644.148 - 0.576ms returns 4 (0x4)
+T2C78 021:644.756 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 021:644.795 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 021:645.288 Data: 2B 08 00 00
+T2C78 021:645.325 - 0.578ms returns 4 (0x4)
+T2C78 021:646.480 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 021:646.522 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 021:647.001 Data: 00 00 00 00
+T2C78 021:647.029 - 0.556ms returns 4 (0x4)
+T2C78 021:647.087 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 021:647.109 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 021:647.445 Data: 00
+T2C78 021:647.469 - 0.389ms returns 1 (0x1)
+T2C78 021:647.493 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 021:647.511 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 021:648.070 Data: 01
+T2C78 021:648.125 - 0.639ms returns 1 (0x1)
+T2C78 021:648.161 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 021:648.192 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 021:648.585 Data: 00
+T2C78 021:648.620 - 0.465ms returns 1 (0x1)
+T2C78 021:649.085 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 021:649.115 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 021:649.437 Data: 00
+T2C78 021:649.456 - 0.376ms returns 1 (0x1)
+T19A8 021:649.830 JLINK_IsHalted()
+T19A8 021:650.175 - 0.352ms returns FALSE
+T19A8 021:750.247 JLINK_HasError()
+T19A8 021:750.297 JLINK_IsHalted()
+T19A8 021:750.724 - 0.436ms returns FALSE
+T19A8 021:850.871 JLINK_HasError()
+T19A8 021:850.942 JLINK_IsHalted()
+T19A8 021:851.373 - 0.472ms returns FALSE
+T19A8 021:951.723 JLINK_HasError()
+T19A8 021:951.798 JLINK_IsHalted()
+T19A8 021:952.225 - 0.475ms returns FALSE
+T19A8 022:052.978 JLINK_HasError()
+T19A8 022:053.047 JLINK_IsHalted()
+T19A8 022:053.983 - 0.977ms returns FALSE
+T19A8 022:154.658 JLINK_HasError()
+T19A8 022:154.733 JLINK_HasError()
+T19A8 022:154.757 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 022:154.806 Data: B2 47 02 03
+T19A8 022:154.838 Debug reg: DWT_CYCCNT
+T19A8 022:154.866 - 0.118ms returns 1 (0x1)
+T2C78 022:155.329 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 022:155.441 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 022:155.948 Data: 00
+T2C78 022:155.996 - 0.677ms returns 1 (0x1)
+T2C78 022:156.066 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 022:156.099 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 022:156.633 Data: 32
+T2C78 022:156.664 - 0.608ms returns 1 (0x1)
+T2C78 022:156.782 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 022:156.809 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 022:157.255 Data: C1 00 00 00
+T2C78 022:157.286 - 0.513ms returns 4 (0x4)
+T2C78 022:158.676 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 022:158.729 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 022:159.083 Data: A9 00 00 00
+T2C78 022:159.118 - 0.452ms returns 4 (0x4)
+T2C78 022:160.120 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 022:160.161 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 022:160.592 Data: E1 00 00 00
+T2C78 022:160.626 - 0.516ms returns 4 (0x4)
+T2C78 022:161.588 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 022:161.628 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 022:161.966 Data: 3F 01 00 00
+T2C78 022:162.000 - 0.421ms returns 4 (0x4)
+T2C78 022:162.919 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 022:162.951 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 022:163.288 Data: 42 08 00 00
+T2C78 022:163.316 - 0.405ms returns 4 (0x4)
+T2C78 022:164.671 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 022:164.719 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 022:165.186 Data: 00 00 00 00
+T2C78 022:165.208 - 0.543ms returns 4 (0x4)
+T2C78 022:165.263 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 022:165.281 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 022:165.587 Data: 00
+T2C78 022:165.606 - 0.349ms returns 1 (0x1)
+T2C78 022:165.625 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 022:165.640 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 022:165.946 Data: 01
+T2C78 022:165.964 - 0.344ms returns 1 (0x1)
+T2C78 022:165.981 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 022:165.994 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 022:166.271 Data: 00
+T2C78 022:166.287 - 0.311ms returns 1 (0x1)
+T2C78 022:166.653 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 022:166.674 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 022:166.979 Data: 00
+T2C78 022:166.998 - 0.350ms returns 1 (0x1)
+T19A8 022:167.368 JLINK_IsHalted()
+T19A8 022:167.705 - 0.344ms returns FALSE
+T19A8 022:267.770 JLINK_HasError()
+T19A8 022:267.840 JLINK_IsHalted()
+T19A8 022:268.252 - 0.461ms returns FALSE
+T19A8 022:369.618 JLINK_HasError()
+T19A8 022:369.699 JLINK_IsHalted()
+T19A8 022:370.942 - 1.298ms returns FALSE
+T19A8 022:471.057 JLINK_HasError()
+T19A8 022:471.112 JLINK_IsHalted()
+T19A8 022:471.573 - 0.473ms returns FALSE
+T19A8 022:571.948 JLINK_HasError()
+T19A8 022:572.019 JLINK_IsHalted()
+T19A8 022:572.453 - 0.450ms returns FALSE
+T19A8 022:672.567 JLINK_HasError()
+T19A8 022:672.654 JLINK_HasError()
+T19A8 022:672.681 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 022:672.734 Data: B2 47 02 03
+T19A8 022:672.770 Debug reg: DWT_CYCCNT
+T19A8 022:672.802 - 0.132ms returns 1 (0x1)
+T2C78 022:673.224 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 022:673.344 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 022:673.797 Data: 00
+T2C78 022:673.838 - 0.625ms returns 1 (0x1)
+T2C78 022:673.928 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 022:674.158 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 022:674.566 Data: 32
+T2C78 022:674.605 - 0.687ms returns 1 (0x1)
+T2C78 022:674.774 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 022:674.806 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 022:675.384 Data: E2 00 00 00
+T2C78 022:675.434 - 0.672ms returns 4 (0x4)
+T2C78 022:676.983 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 022:677.041 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 022:677.415 Data: A9 00 00 00
+T2C78 022:677.449 - 0.475ms returns 4 (0x4)
+T2C78 022:678.004 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 022:678.038 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 022:678.389 Data: EF 00 00 00
+T2C78 022:678.419 - 0.424ms returns 4 (0x4)
+T2C78 022:679.199 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 022:679.229 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 022:679.550 Data: 3F 01 00 00
+T2C78 022:679.573 - 0.381ms returns 4 (0x4)
+T2C78 022:679.962 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 022:679.989 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 022:680.351 Data: 42 08 00 00
+T2C78 022:680.373 - 0.417ms returns 4 (0x4)
+T2C78 022:680.782 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 022:680.805 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 022:681.111 Data: 00 00 00 00
+T2C78 022:681.134 - 0.358ms returns 4 (0x4)
+T2C78 022:681.175 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 022:681.191 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 022:681.472 Data: 00
+T2C78 022:681.490 - 0.320ms returns 1 (0x1)
+T2C78 022:681.507 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 022:681.522 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 022:681.804 Data: 01
+T2C78 022:681.821 - 0.318ms returns 1 (0x1)
+T2C78 022:681.836 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 022:681.849 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 022:682.354 Data: 00
+T2C78 022:682.430 - 0.606ms returns 1 (0x1)
+T2C78 022:682.514 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 022:682.551 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 022:682.841 Data: 00
+T2C78 022:682.858 - 0.349ms returns 1 (0x1)
+T19A8 022:682.913 JLINK_IsHalted()
+T19A8 022:683.195 - 0.295ms returns FALSE
+T19A8 022:783.771 JLINK_HasError()
+T19A8 022:783.840 JLINK_IsHalted()
+T19A8 022:784.252 - 0.426ms returns FALSE
+T19A8 022:884.510 JLINK_HasError()
+T19A8 022:884.606 JLINK_IsHalted()
+T19A8 022:885.363 - 1.124ms returns FALSE
+T19A8 022:986.016 JLINK_HasError()
+T19A8 022:986.113 JLINK_IsHalted()
+T19A8 022:986.768 - 0.702ms returns FALSE
+T19A8 023:087.275 JLINK_HasError()
+T19A8 023:087.350 JLINK_IsHalted()
+T19A8 023:087.877 - 0.542ms returns FALSE
+T19A8 023:188.736 JLINK_HasError()
+T19A8 023:188.805 JLINK_HasError()
+T19A8 023:188.830 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 023:188.876 Data: B2 47 02 03
+T19A8 023:188.907 Debug reg: DWT_CYCCNT
+T19A8 023:188.935 - 0.115ms returns 1 (0x1)
+T2C78 023:189.285 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 023:189.377 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 023:189.796 Data: 00
+T2C78 023:189.835 - 0.560ms returns 1 (0x1)
+T2C78 023:189.912 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 023:189.947 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 023:190.356 Data: 32
+T2C78 023:190.388 - 0.485ms returns 1 (0x1)
+T2C78 023:190.543 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 023:190.569 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 023:190.942 Data: E2 00 00 00
+T2C78 023:190.981 - 0.448ms returns 4 (0x4)
+T2C78 023:191.931 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 023:191.983 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 023:192.403 Data: A9 00 00 00
+T2C78 023:192.437 - 0.515ms returns 4 (0x4)
+T2C78 023:192.485 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 023:192.514 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 023:192.878 Data: EF 00 00 00
+T2C78 023:192.919 - 0.444ms returns 4 (0x4)
+T2C78 023:193.557 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 023:193.594 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 023:194.137 Data: 3F 01 00 00
+T2C78 023:194.170 - 0.620ms returns 4 (0x4)
+T2C78 023:194.208 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 023:194.231 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 023:194.722 Data: 42 08 00 00
+T2C78 023:194.780 - 0.578ms returns 4 (0x4)
+T2C78 023:194.894 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 023:194.923 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 023:195.305 Data: 00 00 00 00
+T2C78 023:195.325 - 0.437ms returns 4 (0x4)
+T2C78 023:195.382 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 023:195.398 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 023:195.772 Data: 00
+T2C78 023:195.789 - 0.412ms returns 1 (0x1)
+T2C78 023:195.810 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 023:195.825 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 023:196.170 Data: 01
+T2C78 023:196.187 - 0.382ms returns 1 (0x1)
+T2C78 023:196.203 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 023:196.216 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 023:196.537 Data: 00
+T2C78 023:196.553 - 0.354ms returns 1 (0x1)
+T2C78 023:196.567 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 023:196.579 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 023:196.893 Data: 00
+T2C78 023:196.910 - 0.347ms returns 1 (0x1)
+T19A8 023:196.997 JLINK_IsHalted()
+T19A8 023:197.351 - 0.364ms returns FALSE
+T19A8 023:297.960 JLINK_HasError()
+T19A8 023:298.028 JLINK_IsHalted()
+T19A8 023:298.464 - 0.480ms returns FALSE
+T19A8 023:398.640 JLINK_HasError()
+T19A8 023:398.707 JLINK_IsHalted()
+T19A8 023:399.115 - 0.453ms returns FALSE
+T19A8 023:500.069 JLINK_HasError()
+T19A8 023:500.116 JLINK_IsHalted()
+T19A8 023:500.532 - 0.421ms returns FALSE
+T19A8 023:601.151 JLINK_HasError()
+T19A8 023:601.214 JLINK_IsHalted()
+T19A8 023:601.631 - 0.430ms returns FALSE
+T19A8 023:702.246 JLINK_HasError()
+T19A8 023:702.327 JLINK_HasError()
+T19A8 023:702.352 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 023:702.400 Data: B2 47 02 03
+T19A8 023:702.433 Debug reg: DWT_CYCCNT
+T19A8 023:702.461 - 0.119ms returns 1 (0x1)
+T2C78 023:703.108 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 023:703.192 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 023:703.699 Data: 00
+T2C78 023:703.766 - 0.669ms returns 1 (0x1)
+T2C78 023:703.846 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 023:703.889 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 023:704.460 Data: 32
+T2C78 023:704.497 - 0.661ms returns 1 (0x1)
+T2C78 023:704.623 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 023:704.652 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 023:705.103 Data: E2 00 00 00
+T2C78 023:705.135 - 0.522ms returns 4 (0x4)
+T2C78 023:705.174 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 023:705.200 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 023:705.576 Data: A9 00 00 00
+T2C78 023:705.608 - 0.444ms returns 4 (0x4)
+T2C78 023:705.644 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 023:705.669 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 023:706.039 Data: EF 00 00 00
+T2C78 023:706.071 - 0.436ms returns 4 (0x4)
+T2C78 023:706.107 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 023:706.131 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 023:706.460 Data: 84 00 00 00
+T2C78 023:706.492 - 0.394ms returns 4 (0x4)
+T2C78 023:707.400 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 023:707.448 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 023:707.834 Data: 2B 08 00 00
+T2C78 023:707.866 - 0.473ms returns 4 (0x4)
+T2C78 023:708.497 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 023:708.532 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 023:708.995 Data: 00 00 00 00
+T2C78 023:709.021 - 0.530ms returns 4 (0x4)
+T2C78 023:709.075 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 023:709.105 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 023:709.450 Data: 00
+T2C78 023:709.473 - 0.404ms returns 1 (0x1)
+T2C78 023:709.494 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 023:709.511 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 023:709.821 Data: 01
+T2C78 023:709.848 - 0.360ms returns 1 (0x1)
+T2C78 023:709.868 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 023:709.885 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 023:710.191 Data: 01
+T2C78 023:710.213 - 0.351ms returns 1 (0x1)
+T2C78 023:710.671 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 023:710.699 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 023:711.019 Data: 00
+T2C78 023:711.041 - 0.376ms returns 1 (0x1)
+T19A8 023:711.125 JLINK_IsHalted()
+T19A8 023:711.478 - 0.361ms returns FALSE
+T19A8 023:812.056 JLINK_HasError()
+T19A8 023:812.134 JLINK_IsHalted()
+T19A8 023:812.612 - 0.520ms returns FALSE
+T19A8 023:912.905 JLINK_HasError()
+T19A8 023:912.970 JLINK_IsHalted()
+T19A8 023:913.457 - 0.502ms returns FALSE
+T19A8 024:014.119 JLINK_HasError()
+T19A8 024:014.190 JLINK_IsHalted()
+T19A8 024:014.610 - 0.436ms returns FALSE
+T19A8 024:115.617 JLINK_HasError()
+T19A8 024:115.707 JLINK_IsHalted()
+T19A8 024:116.334 - 0.679ms returns FALSE
+T19A8 024:217.435 JLINK_HasError()
+T19A8 024:217.516 JLINK_HasError()
+T19A8 024:217.540 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 024:217.589 Data: B2 47 02 03
+T19A8 024:217.622 Debug reg: DWT_CYCCNT
+T19A8 024:217.650 - 0.120ms returns 1 (0x1)
+T2C78 024:218.581 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 024:218.665 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 024:219.181 Data: 00
+T2C78 024:219.256 - 0.686ms returns 1 (0x1)
+T2C78 024:219.345 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 024:219.392 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 024:219.763 Data: 32
+T2C78 024:219.793 - 0.457ms returns 1 (0x1)
+T2C78 024:219.938 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 024:219.964 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 024:220.702 Data: E2 00 00 00
+T2C78 024:220.746 - 0.818ms returns 4 (0x4)
+T2C78 024:220.805 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 024:220.839 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 024:221.214 Data: A9 00 00 00
+T2C78 024:221.250 - 0.454ms returns 4 (0x4)
+T2C78 024:221.289 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 024:221.315 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 024:221.669 Data: EF 00 00 00
+T2C78 024:221.699 - 0.418ms returns 4 (0x4)
+T2C78 024:221.732 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 024:221.755 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 024:222.105 Data: 3F 01 00 00
+T2C78 024:222.134 - 0.410ms returns 4 (0x4)
+T2C78 024:223.497 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 024:223.545 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 024:223.882 Data: 42 08 00 00
+T2C78 024:223.912 - 0.423ms returns 4 (0x4)
+T2C78 024:224.816 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 024:224.852 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 024:225.185 Data: 00 00 00 00
+T2C78 024:225.210 - 0.401ms returns 4 (0x4)
+T2C78 024:225.263 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 024:225.283 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 024:225.633 Data: 00
+T2C78 024:225.662 - 0.404ms returns 1 (0x1)
+T2C78 024:225.684 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 024:225.702 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 024:226.031 Data: 01
+T2C78 024:226.058 - 0.380ms returns 1 (0x1)
+T2C78 024:226.081 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 024:226.099 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 024:226.427 Data: 02
+T2C78 024:226.447 - 0.372ms returns 1 (0x1)
+T2C78 024:226.891 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 024:226.916 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 024:227.260 Data: 01
+T2C78 024:227.281 - 0.395ms returns 1 (0x1)
+T19A8 024:227.681 JLINK_IsHalted()
+T19A8 024:228.018 - 0.353ms returns FALSE
+T19A8 024:328.103 JLINK_HasError()
+T19A8 024:328.170 JLINK_IsHalted()
+T19A8 024:328.609 - 0.453ms returns FALSE
+T19A8 024:428.690 JLINK_HasError()
+T19A8 024:428.756 JLINK_IsHalted()
+T19A8 024:429.261 - 0.520ms returns FALSE
+T19A8 024:530.216 JLINK_HasError()
+T19A8 024:530.285 JLINK_IsHalted()
+T19A8 024:530.725 - 0.455ms returns FALSE
+T19A8 024:631.732 JLINK_HasError()
+T19A8 024:631.780 JLINK_IsHalted()
+T19A8 024:632.158 - 0.405ms returns FALSE
+T19A8 024:733.029 JLINK_HasError()
+T19A8 024:733.098 JLINK_HasError()
+T19A8 024:733.123 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 024:733.169 Data: B2 47 02 03
+T19A8 024:733.201 Debug reg: DWT_CYCCNT
+T19A8 024:733.229 - 0.116ms returns 1 (0x1)
+T2C78 024:733.543 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 024:733.576 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 024:733.895 Data: 00
+T2C78 024:733.902 - 0.361ms returns 1 (0x1)
+T2C78 024:733.911 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 024:733.917 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 024:734.163 Data: 32
+T2C78 024:734.170 - 0.260ms returns 1 (0x1)
+T2C78 024:734.195 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 024:734.200 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 024:734.470 Data: E2 00 00 00
+T2C78 024:734.484 - 0.291ms returns 4 (0x4)
+T2C78 024:734.501 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 024:734.509 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 024:734.779 Data: A9 00 00 00
+T2C78 024:734.789 - 0.290ms returns 4 (0x4)
+T2C78 024:734.803 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 024:734.811 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 024:735.102 Data: EF 00 00 00
+T2C78 024:735.119 - 0.321ms returns 4 (0x4)
+T2C78 024:735.143 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 024:735.158 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 024:735.472 Data: 3F 01 00 00
+T2C78 024:735.490 - 0.352ms returns 4 (0x4)
+T2C78 024:736.006 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 024:736.037 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 024:736.339 Data: 42 08 00 00
+T2C78 024:736.352 - 0.349ms returns 4 (0x4)
+T2C78 024:738.252 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 024:738.276 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 024:739.085 Data: 00 00 00 00
+T2C78 024:739.098 - 0.848ms returns 4 (0x4)
+T2C78 024:739.566 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 024:739.578 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 024:739.865 Data: 00
+T2C78 024:739.880 - 0.316ms returns 1 (0x1)
+T2C78 024:739.892 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 024:739.902 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 024:740.151 Data: 01
+T2C78 024:740.161 - 0.271ms returns 1 (0x1)
+T2C78 024:740.169 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 024:740.177 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 024:740.423 Data: 02
+T2C78 024:740.431 - 0.264ms returns 1 (0x1)
+T2C78 024:740.619 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 024:740.633 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 024:740.917 Data: 01
+T2C78 024:740.925 - 0.307ms returns 1 (0x1)
+T19A8 024:741.097 JLINK_IsHalted()
+T19A8 024:741.357 - 0.266ms returns FALSE
+T19A8 024:841.423 JLINK_HasError()
+T19A8 024:841.489 JLINK_IsHalted()
+T19A8 024:841.945 - 0.470ms returns FALSE
+T19A8 024:942.571 JLINK_HasError()
+T19A8 024:942.643 JLINK_IsHalted()
+T19A8 024:942.959 - 0.319ms returns FALSE
+T19A8 025:043.279 JLINK_HasError()
+T19A8 025:043.347 JLINK_IsHalted()
+T19A8 025:043.841 - 0.509ms returns FALSE
+T19A8 025:144.751 JLINK_HasError()
+T19A8 025:144.844 JLINK_IsHalted()
+T19A8 025:145.359 - 0.567ms returns FALSE
+T19A8 025:245.506 JLINK_HasError()
+T19A8 025:245.557 JLINK_HasError()
+T19A8 025:245.573 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 025:245.612 Data: B2 47 02 03
+T19A8 025:245.633 Debug reg: DWT_CYCCNT
+T19A8 025:245.651 - 0.083ms returns 1 (0x1)
+T2C78 025:245.893 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 025:245.961 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 025:246.353 Data: 00
+T2C78 025:246.378 - 0.492ms returns 1 (0x1)
+T2C78 025:246.432 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 025:246.456 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 025:246.833 Data: 32
+T2C78 025:246.875 - 0.449ms returns 1 (0x1)
+T2C78 025:247.017 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 025:247.046 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 025:247.863 Data: E2 00 00 00
+T2C78 025:247.895 - 0.884ms returns 4 (0x4)
+T2C78 025:247.922 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 025:247.940 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 025:248.351 Data: A9 00 00 00
+T2C78 025:248.380 - 0.464ms returns 4 (0x4)
+T2C78 025:248.402 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 025:248.417 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 025:248.757 Data: EF 00 00 00
+T2C78 025:248.777 - 0.380ms returns 4 (0x4)
+T2C78 025:248.798 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 025:248.812 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 025:249.109 Data: 3F 01 00 00
+T2C78 025:249.129 - 0.337ms returns 4 (0x4)
+T2C78 025:249.150 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 025:249.165 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 025:249.471 Data: 42 08 00 00
+T2C78 025:249.491 - 0.346ms returns 4 (0x4)
+T2C78 025:249.549 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 025:249.564 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 025:249.895 Data: 00 00 00 00
+T2C78 025:249.914 - 0.371ms returns 4 (0x4)
+T2C78 025:249.959 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 025:249.975 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 025:250.347 Data: 00
+T2C78 025:250.368 - 0.415ms returns 1 (0x1)
+T2C78 025:250.388 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 025:250.404 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 025:250.712 Data: 01
+T2C78 025:250.736 - 0.355ms returns 1 (0x1)
+T2C78 025:250.757 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 025:250.773 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 025:251.111 Data: 02
+T2C78 025:251.132 - 0.381ms returns 1 (0x1)
+T2C78 025:251.151 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 025:251.167 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 025:251.496 Data: 01
+T2C78 025:251.516 - 0.371ms returns 1 (0x1)
+T19A8 025:251.601 JLINK_IsHalted()
+T19A8 025:251.948 - 0.359ms returns FALSE
+T19A8 025:353.004 JLINK_HasError()
+T19A8 025:353.069 JLINK_IsHalted()
+T19A8 025:354.010 - 0.990ms returns FALSE
+T19A8 025:454.172 JLINK_HasError()
+T19A8 025:454.241 JLINK_IsHalted()
+T19A8 025:454.816 - 0.621ms returns FALSE
+T19A8 025:555.128 JLINK_HasError()
+T19A8 025:555.212 JLINK_IsHalted()
+T19A8 025:555.813 - 0.649ms returns FALSE
+T19A8 025:656.680 JLINK_HasError()
+T19A8 025:656.783 JLINK_IsHalted()
+T19A8 025:657.385 - 0.653ms returns FALSE
+T19A8 025:758.230 JLINK_HasError()
+T19A8 025:758.279 JLINK_HasError()
+T19A8 025:758.290 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 025:758.314 Data: B2 47 02 03
+T19A8 025:758.329 Debug reg: DWT_CYCCNT
+T19A8 025:758.342 - 0.056ms returns 1 (0x1)
+T2C78 025:758.545 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 025:758.594 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 025:758.912 Data: 00
+T2C78 025:758.930 - 0.389ms returns 1 (0x1)
+T2C78 025:758.972 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 025:758.989 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 025:759.342 Data: 32
+T2C78 025:759.357 - 0.389ms returns 1 (0x1)
+T2C78 025:759.429 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 025:759.441 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 025:759.739 Data: 20 00 00 00
+T2C78 025:759.757 - 0.333ms returns 4 (0x4)
+T2C78 025:760.227 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 025:760.251 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 025:760.579 Data: 0C 00 00 00
+T2C78 025:760.595 - 0.372ms returns 4 (0x4)
+T2C78 025:760.921 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 025:760.941 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 025:761.246 Data: 48 00 00 00
+T2C78 025:761.266 - 0.350ms returns 4 (0x4)
+T2C78 025:761.624 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 025:761.646 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 025:761.983 Data: 3E 00 00 00
+T2C78 025:762.001 - 0.382ms returns 4 (0x4)
+T2C78 025:762.317 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 025:762.338 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 025:762.640 Data: 2B 08 00 00
+T2C78 025:762.658 - 0.347ms returns 4 (0x4)
+T2C78 025:763.040 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 025:763.064 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 025:763.388 Data: 00 00 00 00
+T2C78 025:763.408 - 0.374ms returns 4 (0x4)
+T2C78 025:763.450 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 025:763.467 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 025:763.809 Data: 00
+T2C78 025:763.828 - 0.383ms returns 1 (0x1)
+T2C78 025:763.847 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 025:763.862 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 025:764.165 Data: 01
+T2C78 025:764.184 - 0.343ms returns 1 (0x1)
+T2C78 025:764.201 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 025:764.216 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 025:764.564 Data: 00
+T2C78 025:764.583 - 0.387ms returns 1 (0x1)
+T2C78 025:764.953 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 025:764.978 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 025:765.349 Data: 02
+T2C78 025:765.371 - 0.424ms returns 1 (0x1)
+T19A8 025:765.781 JLINK_IsHalted()
+T19A8 025:766.130 - 0.366ms returns FALSE
+T19A8 025:866.293 JLINK_HasError()
+T19A8 025:866.357 JLINK_IsHalted()
+T19A8 025:866.762 - 0.418ms returns FALSE
+T19A8 025:966.842 JLINK_HasError()
+T19A8 025:966.905 JLINK_IsHalted()
+T19A8 025:967.372 - 0.509ms returns FALSE
+T19A8 026:068.468 JLINK_HasError()
+T19A8 026:068.533 JLINK_IsHalted()
+T19A8 026:068.945 - 0.426ms returns FALSE
+T19A8 026:169.237 JLINK_HasError()
+T19A8 026:169.298 JLINK_IsHalted()
+T19A8 026:169.765 - 0.482ms returns FALSE
+T19A8 026:270.574 JLINK_HasError()
+T19A8 026:270.645 JLINK_HasError()
+T19A8 026:270.669 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 026:270.718 Data: B2 47 02 03
+T19A8 026:270.751 Debug reg: DWT_CYCCNT
+T19A8 026:270.780 - 0.120ms returns 1 (0x1)
+T2C78 026:271.131 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 026:271.227 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 026:271.656 Data: 00
+T2C78 026:271.700 - 0.579ms returns 1 (0x1)
+T2C78 026:271.780 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 026:271.820 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 026:272.182 Data: 32
+T2C78 026:272.215 - 0.444ms returns 1 (0x1)
+T2C78 026:272.372 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 026:272.400 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 026:272.730 Data: 20 00 00 00
+T2C78 026:272.762 - 0.399ms returns 4 (0x4)
+T2C78 026:273.672 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 026:273.728 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 026:274.072 Data: 98 00 00 00
+T2C78 026:274.106 - 0.444ms returns 4 (0x4)
+T2C78 026:275.202 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 026:275.249 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 026:275.600 Data: 48 00 00 00
+T2C78 026:275.633 - 0.441ms returns 4 (0x4)
+T2C78 026:276.186 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 026:276.224 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 026:276.597 Data: CA 00 00 00
+T2C78 026:276.627 - 0.449ms returns 4 (0x4)
+T2C78 026:277.492 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 026:277.536 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 026:277.899 Data: 2B 08 00 00
+T2C78 026:277.927 - 0.442ms returns 4 (0x4)
+T2C78 026:278.414 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 026:278.446 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 026:278.764 Data: 00 00 00 00
+T2C78 026:278.790 - 0.382ms returns 4 (0x4)
+T2C78 026:278.844 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 026:278.863 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 026:279.162 Data: 00
+T2C78 026:279.185 - 0.347ms returns 1 (0x1)
+T2C78 026:279.206 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 026:279.223 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 026:279.538 Data: 01
+T2C78 026:279.560 - 0.362ms returns 1 (0x1)
+T2C78 026:279.581 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 026:279.597 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 026:279.893 Data: 01
+T2C78 026:279.913 - 0.338ms returns 1 (0x1)
+T2C78 026:280.332 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 026:280.355 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 026:280.662 Data: 00
+T2C78 026:280.682 - 0.355ms returns 1 (0x1)
+T19A8 026:281.075 JLINK_IsHalted()
+T19A8 026:281.436 - 0.376ms returns FALSE
+T19A8 026:382.084 JLINK_HasError()
+T19A8 026:382.153 JLINK_IsHalted()
+T19A8 026:382.552 - 0.414ms returns FALSE
+T19A8 026:483.565 JLINK_HasError()
+T19A8 026:483.636 JLINK_IsHalted()
+T19A8 026:484.196 - 0.607ms returns FALSE
+T19A8 026:585.177 JLINK_HasError()
+T19A8 026:585.242 JLINK_IsHalted()
+T19A8 026:585.690 - 0.462ms returns FALSE
+T19A8 026:685.852 JLINK_HasError()
+T19A8 026:685.936 JLINK_IsHalted()
+T19A8 026:686.444 - 0.557ms returns FALSE
+T19A8 026:787.424 JLINK_HasError()
+T19A8 026:787.496 JLINK_HasError()
+T19A8 026:787.520 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 026:787.569 Data: B2 47 02 03
+T19A8 026:787.601 Debug reg: DWT_CYCCNT
+T19A8 026:787.629 - 0.118ms returns 1 (0x1)
+T2C78 026:787.960 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 026:787.997 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 026:788.502 Data: 00
+T2C78 026:788.573 - 0.623ms returns 1 (0x1)
+T2C78 026:788.658 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 026:788.706 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 026:789.148 Data: 32
+T2C78 026:789.181 - 0.532ms returns 1 (0x1)
+T2C78 026:789.348 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 026:789.377 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 026:789.721 Data: E2 00 00 00
+T2C78 026:789.753 - 0.413ms returns 4 (0x4)
+T2C78 026:790.638 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 026:790.688 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 026:791.097 Data: A9 00 00 00
+T2C78 026:791.163 - 0.535ms returns 4 (0x4)
+T2C78 026:792.646 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 026:792.712 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 026:793.126 Data: EF 00 00 00
+T2C78 026:793.160 - 0.524ms returns 4 (0x4)
+T2C78 026:793.789 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 026:793.832 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 026:794.188 Data: 3F 01 00 00
+T2C78 026:794.222 - 0.443ms returns 4 (0x4)
+T2C78 026:795.231 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 026:795.273 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 026:795.634 Data: 42 08 00 00
+T2C78 026:795.668 - 0.447ms returns 4 (0x4)
+T2C78 026:796.296 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 026:796.332 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 026:796.689 Data: 00 00 00 00
+T2C78 026:796.718 - 0.430ms returns 4 (0x4)
+T2C78 026:796.777 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 026:796.801 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 026:797.132 Data: 00
+T2C78 026:797.165 - 0.395ms returns 1 (0x1)
+T2C78 026:797.190 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 026:797.211 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 026:797.592 Data: 01
+T2C78 026:797.619 - 0.437ms returns 1 (0x1)
+T2C78 026:797.643 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 026:797.663 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 026:798.016 Data: 02
+T2C78 026:798.042 - 0.407ms returns 1 (0x1)
+T2C78 026:798.520 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 026:798.551 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 026:799.064 Data: 01
+T2C78 026:799.158 - 0.691ms returns 1 (0x1)
+T19A8 026:799.811 JLINK_IsHalted()
+T19A8 026:800.147 - 0.358ms returns FALSE
+T19A8 026:900.249 JLINK_HasError()
+T19A8 026:900.314 JLINK_IsHalted()
+T19A8 026:900.729 - 0.430ms returns FALSE
+T19A8 027:001.011 JLINK_HasError()
+T19A8 027:001.108 JLINK_IsHalted()
+T19A8 027:001.704 - 0.644ms returns FALSE
+T19A8 027:101.829 JLINK_HasError()
+T19A8 027:101.900 JLINK_IsHalted()
+T19A8 027:102.435 - 0.550ms returns FALSE
+T19A8 027:202.591 JLINK_HasError()
+T19A8 027:202.662 JLINK_IsHalted()
+T19A8 027:203.114 - 0.466ms returns FALSE
+T19A8 027:303.783 JLINK_HasError()
+T19A8 027:303.995 JLINK_HasError()
+T19A8 027:304.022 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 027:304.070 Data: B2 47 02 03
+T19A8 027:304.102 Debug reg: DWT_CYCCNT
+T19A8 027:304.130 - 0.118ms returns 1 (0x1)
+T2C78 027:304.509 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 027:304.602 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 027:305.029 Data: 00
+T2C78 027:305.063 - 0.564ms returns 1 (0x1)
+T2C78 027:305.114 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 027:305.146 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 027:305.541 Data: 32
+T2C78 027:305.573 - 0.469ms returns 1 (0x1)
+T2C78 027:305.681 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 027:305.708 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 027:306.064 Data: C1 00 00 00
+T2C78 027:306.096 - 0.425ms returns 4 (0x4)
+T2C78 027:307.539 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 027:307.599 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 027:307.974 Data: 00 00 00 00
+T2C78 027:308.004 - 0.473ms returns 4 (0x4)
+T2C78 027:308.887 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 027:308.923 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 027:309.346 Data: EF 00 00 00
+T2C78 027:309.373 - 0.493ms returns 4 (0x4)
+T2C78 027:309.778 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 027:309.805 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 027:310.149 Data: 4E 00 00 00
+T2C78 027:310.173 - 0.401ms returns 4 (0x4)
+T2C78 027:310.802 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 027:310.828 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 027:311.129 Data: 81 0E 00 00
+T2C78 027:311.148 - 0.351ms returns 4 (0x4)
+T2C78 027:311.767 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 027:311.789 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 027:312.084 Data: 00 00 00 00
+T2C78 027:312.101 - 0.339ms returns 4 (0x4)
+T2C78 027:312.140 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 027:312.155 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 027:312.454 Data: 00
+T2C78 027:312.470 - 0.334ms returns 1 (0x1)
+T2C78 027:312.487 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 027:312.499 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 027:312.812 Data: 01
+T2C78 027:312.827 - 0.343ms returns 1 (0x1)
+T2C78 027:312.840 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 027:312.851 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 027:313.165 Data: 02
+T2C78 027:313.179 - 0.344ms returns 1 (0x1)
+T2C78 027:313.449 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 027:313.466 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 027:313.784 Data: 01
+T2C78 027:313.798 - 0.353ms returns 1 (0x1)
+T19A8 027:314.082 JLINK_IsHalted()
+T19A8 027:314.420 - 0.350ms returns FALSE
+T19A8 027:415.137 JLINK_HasError()
+T19A8 027:415.204 JLINK_IsHalted()
+T19A8 027:415.631 - 0.442ms returns FALSE
+T19A8 027:516.634 JLINK_HasError()
+T19A8 027:516.738 JLINK_IsHalted()
+T19A8 027:517.280 - 0.560ms returns FALSE
+T19A8 027:617.413 JLINK_HasError()
+T19A8 027:617.477 JLINK_IsHalted()
+T19A8 027:617.924 - 0.461ms returns FALSE
+T19A8 027:718.807 JLINK_HasError()
+T19A8 027:718.869 JLINK_IsHalted()
+T19A8 027:719.278 - 0.423ms returns FALSE
+T19A8 027:819.593 JLINK_HasError()
+T19A8 027:819.670 JLINK_HasError()
+T19A8 027:819.694 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 027:819.742 Data: B2 47 02 03
+T19A8 027:819.774 Debug reg: DWT_CYCCNT
+T19A8 027:821.920 - 2.241ms returns 1 (0x1)
+T2C78 027:822.274 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 027:822.355 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 027:822.772 Data: 00
+T2C78 027:822.809 - 0.543ms returns 1 (0x1)
+T2C78 027:822.878 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 027:822.912 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 027:823.230 Data: 32
+T2C78 027:823.255 - 0.384ms returns 1 (0x1)
+T2C78 027:823.395 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 027:823.418 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 027:823.739 Data: E2 00 00 00
+T2C78 027:823.764 - 0.375ms returns 4 (0x4)
+T2C78 027:824.731 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 027:824.764 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 027:825.100 Data: A9 00 00 00
+T2C78 027:825.140 - 0.414ms returns 4 (0x4)
+T2C78 027:825.917 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 027:825.954 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 027:826.343 Data: EF 00 00 00
+T2C78 027:826.363 - 0.451ms returns 4 (0x4)
+T2C78 027:826.393 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 027:826.411 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 027:826.722 Data: 3F 01 00 00
+T2C78 027:826.740 - 0.352ms returns 4 (0x4)
+T2C78 027:827.659 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 027:827.711 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 027:828.074 Data: 42 08 00 00
+T2C78 027:828.105 - 0.452ms returns 4 (0x4)
+T2C78 027:828.856 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 027:828.886 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 027:829.230 Data: 00 00 00 00
+T2C78 027:829.253 - 0.402ms returns 4 (0x4)
+T2C78 027:829.334 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 027:829.352 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 027:829.642 Data: 00
+T2C78 027:829.658 - 0.329ms returns 1 (0x1)
+T2C78 027:829.676 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 027:829.690 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 027:829.964 Data: 01
+T2C78 027:829.978 - 0.305ms returns 1 (0x1)
+T2C78 027:829.991 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 027:830.002 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 027:830.335 Data: 02
+T2C78 027:830.349 - 0.362ms returns 1 (0x1)
+T2C78 027:830.362 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 027:830.373 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 027:830.651 Data: 01
+T2C78 027:830.666 - 0.307ms returns 1 (0x1)
+T19A8 027:830.729 JLINK_IsHalted()
+T19A8 027:831.006 - 0.286ms returns FALSE
+T19A8 027:931.697 JLINK_HasError()
+T19A8 027:931.768 JLINK_IsHalted()
+T19A8 027:932.265 - 0.544ms returns FALSE
+T19A8 028:033.301 JLINK_HasError()
+T19A8 028:033.363 JLINK_IsHalted()
+T19A8 028:033.754 - 0.405ms returns FALSE
+T19A8 028:133.913 JLINK_HasError()
+T19A8 028:133.975 JLINK_IsHalted()
+T19A8 028:134.392 - 0.463ms returns FALSE
+T19A8 028:234.575 JLINK_HasError()
+T19A8 028:234.783 JLINK_IsHalted()
+T19A8 028:235.278 - 0.509ms returns FALSE
+T19A8 028:336.300 JLINK_HasError()
+T19A8 028:336.366 JLINK_HasError()
+T19A8 028:336.390 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 028:336.437 Data: B2 47 02 03
+T19A8 028:336.470 Debug reg: DWT_CYCCNT
+T19A8 028:336.497 - 0.117ms returns 1 (0x1)
+T2C78 028:336.839 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 028:336.934 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 028:337.595 Data: 00
+T2C78 028:337.635 - 0.813ms returns 1 (0x1)
+T2C78 028:337.720 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 028:337.755 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 028:338.226 Data: 32
+T2C78 028:338.258 - 0.547ms returns 1 (0x1)
+T2C78 028:338.418 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 028:338.446 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 028:338.884 Data: E2 00 00 00
+T2C78 028:338.916 - 0.507ms returns 4 (0x4)
+T2C78 028:339.808 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 028:339.856 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 028:340.439 Data: A9 00 00 00
+T2C78 028:340.594 - 0.802ms returns 4 (0x4)
+T2C78 028:341.939 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 028:342.013 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 028:342.397 Data: EF 00 00 00
+T2C78 028:342.431 - 0.502ms returns 4 (0x4)
+T2C78 028:342.495 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 028:342.526 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 028:342.899 Data: 3F 01 00 00
+T2C78 028:342.936 - 0.450ms returns 4 (0x4)
+T2C78 028:343.694 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 028:343.738 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 028:344.160 Data: 42 08 00 00
+T2C78 028:344.223 - 0.539ms returns 4 (0x4)
+T2C78 028:345.198 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 028:345.260 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 028:345.698 Data: 00 00 00 00
+T2C78 028:345.755 - 0.566ms returns 4 (0x4)
+T2C78 028:345.865 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 028:345.901 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 028:346.806 Data: 00
+T2C78 028:346.840 - 0.981ms returns 1 (0x1)
+T2C78 028:346.869 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 028:346.893 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 028:347.231 Data: 01
+T2C78 028:347.253 - 0.391ms returns 1 (0x1)
+T2C78 028:347.274 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 028:347.293 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 028:347.602 Data: 02
+T2C78 028:347.625 - 0.358ms returns 1 (0x1)
+T2C78 028:347.644 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 028:347.660 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 028:348.001 Data: 01
+T2C78 028:348.025 - 0.386ms returns 1 (0x1)
+T19A8 028:348.113 JLINK_IsHalted()
+T19A8 028:348.437 - 0.335ms returns FALSE
+T19A8 028:448.957 JLINK_HasError()
+T19A8 028:449.061 JLINK_IsHalted()
+T19A8 028:449.644 - 0.635ms returns FALSE
+T19A8 028:549.769 JLINK_HasError()
+T19A8 028:549.850 JLINK_IsHalted()
+T19A8 028:550.285 - 0.451ms returns FALSE
+T19A8 028:651.048 JLINK_HasError()
+T19A8 028:651.218 JLINK_IsHalted()
+T19A8 028:651.708 - 0.532ms returns FALSE
+T19A8 028:751.880 JLINK_HasError()
+T19A8 028:751.937 JLINK_IsHalted()
+T19A8 028:752.341 - 0.413ms returns FALSE
+T19A8 028:852.490 JLINK_HasError()
+T19A8 028:852.562 JLINK_HasError()
+T19A8 028:852.586 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 028:852.632 Data: B2 47 02 03
+T19A8 028:852.664 Debug reg: DWT_CYCCNT
+T19A8 028:852.693 - 0.116ms returns 1 (0x1)
+T2C78 028:853.056 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 028:853.137 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 028:853.934 Data: 00
+T2C78 028:854.005 - 0.960ms returns 1 (0x1)
+T2C78 028:854.092 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 028:854.139 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 028:854.576 Data: 32
+T2C78 028:854.616 - 0.535ms returns 1 (0x1)
+T2C78 028:854.753 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 028:854.789 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 028:855.248 Data: C1 00 00 00
+T2C78 028:855.281 - 0.537ms returns 4 (0x4)
+T2C78 028:856.203 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 028:856.255 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 028:856.754 Data: 00 00 00 00
+T2C78 028:856.830 - 0.669ms returns 4 (0x4)
+T2C78 028:858.210 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 028:858.268 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 028:858.758 Data: E1 00 00 00
+T2C78 028:858.785 - 0.582ms returns 4 (0x4)
+T2C78 028:859.366 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 028:859.402 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 028:859.767 Data: 3F 01 00 00
+T2C78 028:859.789 - 0.429ms returns 4 (0x4)
+T2C78 028:859.821 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 028:859.839 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 028:860.163 Data: 77 13 00 00
+T2C78 028:860.184 - 0.369ms returns 4 (0x4)
+T2C78 028:860.661 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 028:860.687 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 028:860.991 Data: 00 00 00 00
+T2C78 028:861.010 - 0.355ms returns 4 (0x4)
+T2C78 028:861.051 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 028:861.067 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 028:861.417 Data: 00
+T2C78 028:861.436 - 0.389ms returns 1 (0x1)
+T2C78 028:861.454 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 028:861.467 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 028:861.788 Data: 01
+T2C78 028:861.805 - 0.356ms returns 1 (0x1)
+T2C78 028:861.820 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 028:861.834 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 028:862.142 Data: 02
+T2C78 028:862.159 - 0.343ms returns 1 (0x1)
+T2C78 028:862.174 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 028:862.187 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 028:862.503 Data: 01
+T2C78 028:862.520 - 0.351ms returns 1 (0x1)
+T19A8 028:862.605 JLINK_IsHalted()
+T19A8 028:863.000 - 0.402ms returns FALSE
+T19A8 028:963.996 JLINK_HasError()
+T19A8 028:964.060 JLINK_IsHalted()
+T19A8 028:964.651 - 0.605ms returns FALSE
+T19A8 029:064.746 JLINK_HasError()
+T19A8 029:064.807 JLINK_IsHalted()
+T19A8 029:065.200 - 0.408ms returns FALSE
+T19A8 029:165.521 JLINK_HasError()
+T19A8 029:165.581 JLINK_IsHalted()
+T19A8 029:165.972 - 0.427ms returns FALSE
+T19A8 029:266.393 JLINK_HasError()
+T19A8 029:266.448 JLINK_IsHalted()
+T19A8 029:266.849 - 0.413ms returns FALSE
+T19A8 029:367.792 JLINK_HasError()
+T19A8 029:367.862 JLINK_HasError()
+T19A8 029:367.886 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 029:367.932 Data: B2 47 02 03
+T19A8 029:367.965 Debug reg: DWT_CYCCNT
+T19A8 029:367.993 - 0.118ms returns 1 (0x1)
+T2C78 029:368.338 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 029:368.433 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 029:368.842 Data: 00
+T2C78 029:368.877 - 0.549ms returns 1 (0x1)
+T2C78 029:368.926 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 029:368.957 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 029:369.344 Data: 32
+T2C78 029:369.376 - 0.459ms returns 1 (0x1)
+T2C78 029:369.482 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 029:369.509 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 029:370.066 Data: 20 00 00 00
+T2C78 029:370.157 - 0.689ms returns 4 (0x4)
+T2C78 029:372.473 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 029:372.557 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 029:373.020 Data: 0C 00 00 00
+T2C78 029:373.085 - 0.623ms returns 4 (0x4)
+T2C78 029:374.557 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 029:374.632 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 029:375.555 Data: 48 00 00 00
+T2C78 029:375.613 - 1.065ms returns 4 (0x4)
+T2C78 029:376.729 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 029:376.782 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 029:377.186 Data: 3E 00 00 00
+T2C78 029:377.215 - 0.493ms returns 4 (0x4)
+T2C78 029:377.666 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 029:377.699 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 029:378.062 Data: 2B 08 00 00
+T2C78 029:378.085 - 0.425ms returns 4 (0x4)
+T2C78 029:378.855 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 029:378.885 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 029:379.342 Data: 00 00 00 00
+T2C78 029:379.362 - 0.512ms returns 4 (0x4)
+T2C78 029:379.408 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 029:379.425 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 029:379.806 Data: 00
+T2C78 029:379.826 - 0.423ms returns 1 (0x1)
+T2C78 029:379.844 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 029:379.859 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 029:380.244 Data: 01
+T2C78 029:380.263 - 0.424ms returns 1 (0x1)
+T2C78 029:380.280 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 029:380.294 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 029:380.683 Data: 01
+T2C78 029:380.702 - 0.428ms returns 1 (0x1)
+T2C78 029:381.033 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 029:381.054 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 029:381.432 Data: 02
+T2C78 029:381.451 - 0.423ms returns 1 (0x1)
+T19A8 029:381.874 JLINK_IsHalted()
+T19A8 029:382.198 - 0.337ms returns FALSE
+T19A8 029:483.265 JLINK_HasError()
+T19A8 029:483.322 JLINK_IsHalted()
+T19A8 029:483.767 - 0.495ms returns FALSE
+T19A8 029:583.891 JLINK_HasError()
+T19A8 029:583.956 JLINK_IsHalted()
+T19A8 029:584.357 - 0.416ms returns FALSE
+T19A8 029:684.565 JLINK_HasError()
+T19A8 029:684.630 JLINK_IsHalted()
+T19A8 029:685.032 - 0.415ms returns FALSE
+T19A8 029:785.558 JLINK_HasError()
+T19A8 029:785.626 JLINK_IsHalted()
+T19A8 029:786.040 - 0.460ms returns FALSE
+T19A8 029:887.454 JLINK_HasError()
+T19A8 029:887.521 JLINK_HasError()
+T19A8 029:887.545 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 029:887.592 Data: B2 47 02 03
+T19A8 029:887.624 Debug reg: DWT_CYCCNT
+T19A8 029:887.652 - 0.117ms returns 1 (0x1)
+T2C78 029:887.995 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 029:888.029 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 029:888.439 Data: 4D
+T2C78 029:888.474 - 0.488ms returns 1 (0x1)
+T2C78 029:889.397 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 029:889.449 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 029:889.836 Data: 32
+T2C78 029:889.871 - 0.484ms returns 1 (0x1)
+T2C78 029:890.025 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 029:890.053 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 029:890.398 Data: E2 00 00 00
+T2C78 029:890.430 - 0.414ms returns 4 (0x4)
+T2C78 029:891.534 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 029:891.580 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 029:891.937 Data: A9 00 00 00
+T2C78 029:891.968 - 0.443ms returns 4 (0x4)
+T2C78 029:892.829 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 029:892.863 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 029:893.178 Data: EF 00 00 00
+T2C78 029:893.204 - 0.382ms returns 4 (0x4)
+T2C78 029:893.927 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 029:893.953 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 029:894.339 Data: 3F 01 00 00
+T2C78 029:894.361 - 0.439ms returns 4 (0x4)
+T2C78 029:894.972 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 029:894.996 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 029:895.337 Data: 42 08 00 00
+T2C78 029:895.357 - 0.390ms returns 4 (0x4)
+T2C78 029:895.936 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 029:895.958 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 029:896.258 Data: 00 00 00 00
+T2C78 029:896.275 - 0.343ms returns 4 (0x4)
+T2C78 029:896.314 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 029:896.328 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 029:896.651 Data: 00
+T2C78 029:896.667 - 0.357ms returns 1 (0x1)
+T2C78 029:896.683 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 029:896.695 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 029:897.004 Data: 01
+T2C78 029:897.018 - 0.339ms returns 1 (0x1)
+T2C78 029:897.031 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 029:897.042 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 029:897.326 Data: 01
+T2C78 029:897.341 - 0.313ms returns 1 (0x1)
+T2C78 029:897.602 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 029:897.622 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 029:897.914 Data: 02
+T2C78 029:897.930 - 0.332ms returns 1 (0x1)
+T19A8 029:898.219 JLINK_IsHalted()
+T19A8 029:898.521 - 0.314ms returns FALSE
+T19A8 029:998.828 JLINK_HasError()
+T19A8 029:998.879 JLINK_IsHalted()
+T19A8 029:999.329 - 0.468ms returns FALSE
+T19A8 030:099.677 JLINK_HasError()
+T19A8 030:099.747 JLINK_IsHalted()
+T19A8 030:100.156 - 0.423ms returns FALSE
+T19A8 030:200.826 JLINK_HasError()
+T19A8 030:200.897 JLINK_IsHalted()
+T19A8 030:201.275 - 0.392ms returns FALSE
+T19A8 030:302.448 JLINK_HasError()
+T19A8 030:302.527 JLINK_IsHalted()
+T19A8 030:302.986 - 0.473ms returns FALSE
+T19A8 030:403.141 JLINK_HasError()
+T19A8 030:403.196 JLINK_HasError()
+T19A8 030:403.216 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 030:403.257 Data: B2 47 02 03
+T19A8 030:403.284 Debug reg: DWT_CYCCNT
+T19A8 030:403.307 - 0.098ms returns 1 (0x1)
+T2C78 030:404.462 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 030:404.537 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 030:404.937 Data: 00
+T2C78 030:404.968 - 0.513ms returns 1 (0x1)
+T2C78 030:405.982 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 030:406.020 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 030:406.367 Data: 32
+T2C78 030:406.388 - 0.412ms returns 1 (0x1)
+T2C78 030:406.501 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 030:406.519 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 030:406.828 Data: C1 00 00 00
+T2C78 030:406.846 - 0.352ms returns 4 (0x4)
+T2C78 030:407.463 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 030:407.486 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 030:407.816 Data: A9 00 00 00
+T2C78 030:407.833 - 0.375ms returns 4 (0x4)
+T2C78 030:408.100 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 030:408.117 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 030:408.469 Data: E1 00 00 00
+T2C78 030:408.499 - 0.403ms returns 4 (0x4)
+T2C78 030:409.118 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 030:409.146 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 030:409.463 Data: 3F 01 00 00
+T2C78 030:409.479 - 0.366ms returns 4 (0x4)
+T2C78 030:409.752 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 030:409.771 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 030:410.080 Data: 77 13 00 00
+T2C78 030:410.097 - 0.349ms returns 4 (0x4)
+T2C78 030:410.615 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 030:410.638 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 030:410.931 Data: 00 00 00 00
+T2C78 030:410.948 - 0.337ms returns 4 (0x4)
+T2C78 030:410.986 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 030:411.000 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 030:411.334 Data: 00
+T2C78 030:411.350 - 0.369ms returns 1 (0x1)
+T2C78 030:411.366 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 030:411.378 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 030:411.651 Data: 01
+T2C78 030:411.667 - 0.306ms returns 1 (0x1)
+T2C78 030:411.685 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 030:411.697 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 030:411.980 Data: 00
+T2C78 030:411.997 - 0.317ms returns 1 (0x1)
+T2C78 030:412.301 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 030:412.320 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 030:412.609 Data: 01
+T2C78 030:412.627 - 0.331ms returns 1 (0x1)
+T19A8 030:412.975 JLINK_IsHalted()
+T19A8 030:413.335 - 0.374ms returns FALSE
+T19A8 030:513.551 JLINK_HasError()
+T19A8 030:513.743 JLINK_IsHalted()
+T19A8 030:514.159 - 0.463ms returns FALSE
+T19A8 030:615.070 JLINK_HasError()
+T19A8 030:615.141 JLINK_IsHalted()
+T19A8 030:615.576 - 0.480ms returns FALSE
+T19A8 030:716.267 JLINK_HasError()
+T19A8 030:716.333 JLINK_IsHalted()
+T19A8 030:716.810 - 0.520ms returns FALSE
+T19A8 030:817.222 JLINK_HasError()
+T19A8 030:817.274 JLINK_IsHalted()
+T19A8 030:817.622 - 0.383ms returns FALSE
+T19A8 030:917.718 JLINK_HasError()
+T19A8 030:917.797 JLINK_HasError()
+T19A8 030:917.821 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 030:917.868 Data: B2 47 02 03
+T19A8 030:917.901 Debug reg: DWT_CYCCNT
+T19A8 030:917.929 - 0.118ms returns 1 (0x1)
+T2C78 030:918.384 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 030:918.482 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 030:918.919 Data: 00
+T2C78 030:918.957 - 0.582ms returns 1 (0x1)
+T2C78 030:919.893 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 030:919.952 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 030:921.233 Data: 32
+T2C78 030:921.270 - 1.388ms returns 1 (0x1)
+T2C78 030:921.419 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 030:921.456 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 030:921.852 Data: E2 00 00 00
+T2C78 030:921.891 - 0.482ms returns 4 (0x4)
+T2C78 030:923.517 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 030:923.584 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 030:924.216 Data: A9 00 00 00
+T2C78 030:924.247 - 0.737ms returns 4 (0x4)
+T2C78 030:924.289 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 030:924.316 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 030:924.723 Data: EF 00 00 00
+T2C78 030:924.742 - 0.459ms returns 4 (0x4)
+T2C78 030:926.992 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 030:927.019 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 030:927.413 Data: 3F 01 00 00
+T2C78 030:927.427 - 0.438ms returns 4 (0x4)
+T2C78 030:927.449 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 030:927.460 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 030:927.772 Data: 42 08 00 00
+T2C78 030:927.783 - 0.338ms returns 4 (0x4)
+T2C78 030:928.205 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 030:928.222 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 030:928.541 Data: 00 00 00 00
+T2C78 030:928.553 - 0.352ms returns 4 (0x4)
+T2C78 030:928.583 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 030:928.592 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 030:928.849 Data: 00
+T2C78 030:928.859 - 0.280ms returns 1 (0x1)
+T2C78 030:928.870 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 030:928.878 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 030:929.136 Data: 01
+T2C78 030:929.147 - 0.280ms returns 1 (0x1)
+T2C78 030:929.156 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 030:929.164 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 030:929.413 Data: 00
+T2C78 030:929.423 - 0.270ms returns 1 (0x1)
+T2C78 030:929.617 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 030:929.629 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 030:929.915 Data: 01
+T2C78 030:929.935 - 0.321ms returns 1 (0x1)
+T19A8 030:930.377 JLINK_IsHalted()
+T19A8 030:930.636 - 0.263ms returns FALSE
+T19A8 031:030.709 JLINK_HasError()
+T19A8 031:030.780 JLINK_IsHalted()
+T19A8 031:031.347 - 0.581ms returns FALSE
+T19A8 031:131.579 JLINK_HasError()
+T19A8 031:131.682 JLINK_IsHalted()
+T19A8 031:132.333 - 0.704ms returns FALSE
+T19A8 031:232.568 JLINK_HasError()
+T19A8 031:232.640 JLINK_IsHalted()
+T19A8 031:233.130 - 0.552ms returns FALSE
+T19A8 031:333.260 JLINK_HasError()
+T19A8 031:333.326 JLINK_IsHalted()
+T19A8 031:333.827 - 0.515ms returns FALSE
+T19A8 031:434.124 JLINK_HasError()
+T19A8 031:434.188 JLINK_HasError()
+T19A8 031:434.206 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 031:434.245 Data: B2 47 02 03
+T19A8 031:434.270 Debug reg: DWT_CYCCNT
+T19A8 031:434.291 - 0.091ms returns 1 (0x1)
+T2C78 031:434.623 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 031:434.715 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 031:435.092 Data: 5D
+T2C78 031:435.118 - 0.503ms returns 1 (0x1)
+T2C78 031:435.860 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 031:435.896 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 031:436.213 Data: 32
+T2C78 031:436.236 - 0.382ms returns 1 (0x1)
+T2C78 031:436.341 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 031:436.365 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 031:437.239 Data: E2 00 00 00
+T2C78 031:437.283 - 0.948ms returns 4 (0x4)
+T2C78 031:437.773 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 031:437.803 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 031:438.158 Data: A9 00 00 00
+T2C78 031:438.185 - 0.417ms returns 4 (0x4)
+T2C78 031:438.227 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 031:438.249 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 031:438.655 Data: EF 00 00 00
+T2C78 031:438.672 - 0.450ms returns 4 (0x4)
+T2C78 031:439.115 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 031:439.142 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 031:439.538 Data: 3F 01 00 00
+T2C78 031:439.557 - 0.453ms returns 4 (0x4)
+T2C78 031:439.593 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 031:439.605 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 031:440.708 Data: 42 08 00 00
+T2C78 031:440.724 - 1.135ms returns 4 (0x4)
+T2C78 031:441.031 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 031:441.050 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 031:441.327 Data: 00 00 00 00
+T2C78 031:441.345 - 0.316ms returns 4 (0x4)
+T2C78 031:441.407 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 031:441.420 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 031:441.732 Data: 00
+T2C78 031:441.750 - 0.345ms returns 1 (0x1)
+T2C78 031:441.764 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 031:441.776 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 031:442.038 Data: 01
+T2C78 031:442.079 - 0.317ms returns 1 (0x1)
+T2C78 031:442.090 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 031:442.099 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 031:442.543 Data: 00
+T2C78 031:442.607 - 0.527ms returns 1 (0x1)
+T2C78 031:442.652 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 031:442.694 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 031:443.162 Data: 01
+T2C78 031:443.185 - 0.536ms returns 1 (0x1)
+T19A8 031:443.267 JLINK_IsHalted()
+T19A8 031:443.721 - 0.469ms returns FALSE
+T19A8 031:543.874 JLINK_HasError()
+T19A8 031:543.954 JLINK_IsHalted()
+T19A8 031:544.528 - 0.621ms returns FALSE
+T19A8 031:644.741 JLINK_HasError()
+T19A8 031:644.824 JLINK_IsHalted()
+T19A8 031:645.345 - 0.567ms returns FALSE
+T19A8 031:745.476 JLINK_HasError()
+T19A8 031:745.547 JLINK_IsHalted()
+T19A8 031:745.973 - 0.434ms returns FALSE
+T19A8 031:846.054 JLINK_HasError()
+T19A8 031:846.120 JLINK_IsHalted()
+T19A8 031:846.549 - 0.444ms returns FALSE
+T19A8 031:947.213 JLINK_HasError()
+T19A8 031:947.246 JLINK_HasError()
+T19A8 031:947.255 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 031:947.276 Data: B2 47 02 03
+T19A8 031:947.288 Debug reg: DWT_CYCCNT
+T19A8 031:947.299 - 0.047ms returns 1 (0x1)
+T2C78 031:947.475 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 031:947.510 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 031:947.847 Data: 00
+T2C78 031:947.861 - 0.390ms returns 1 (0x1)
+T2C78 031:948.437 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 031:948.461 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 031:948.767 Data: 32
+T2C78 031:948.789 - 0.356ms returns 1 (0x1)
+T2C78 031:948.868 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 031:948.885 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 031:949.213 Data: E2 00 00 00
+T2C78 031:949.226 - 0.361ms returns 4 (0x4)
+T2C78 031:949.242 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 031:949.253 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 031:949.543 Data: A9 00 00 00
+T2C78 031:949.555 - 0.317ms returns 4 (0x4)
+T2C78 031:949.570 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 031:949.580 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 031:949.857 Data: EF 00 00 00
+T2C78 031:949.870 - 0.304ms returns 4 (0x4)
+T2C78 031:949.885 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 031:949.895 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 031:950.213 Data: 3F 01 00 00
+T2C78 031:950.230 - 0.348ms returns 4 (0x4)
+T2C78 031:950.245 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 031:950.255 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 031:950.544 Data: 42 08 00 00
+T2C78 031:950.558 - 0.317ms returns 4 (0x4)
+T2C78 031:950.602 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 031:950.612 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 031:950.898 Data: 00 00 00 00
+T2C78 031:950.912 - 0.314ms returns 4 (0x4)
+T2C78 031:950.939 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 031:950.950 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 031:951.326 Data: 00
+T2C78 031:951.341 - 0.405ms returns 1 (0x1)
+T2C78 031:951.354 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 031:951.365 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 031:951.688 Data: 01
+T2C78 031:951.703 - 0.353ms returns 1 (0x1)
+T2C78 031:951.716 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 031:951.727 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 031:952.045 Data: 01
+T2C78 031:952.061 - 0.349ms returns 1 (0x1)
+T2C78 031:952.464 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 031:952.487 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 031:952.815 Data: 00
+T2C78 031:952.832 - 0.372ms returns 1 (0x1)
+T19A8 031:953.201 JLINK_IsHalted()
+T19A8 031:953.799 - 0.611ms returns FALSE
+T19A8 032:054.038 JLINK_HasError()
+T19A8 032:054.088 JLINK_IsHalted()
+T19A8 032:054.416 - 0.345ms returns FALSE
+T19A8 032:155.309 JLINK_HasError()
+T19A8 032:155.374 JLINK_IsHalted()
+T19A8 032:155.808 - 0.489ms returns FALSE
+T19A8 032:256.891 JLINK_HasError()
+T19A8 032:256.938 JLINK_IsHalted()
+T19A8 032:257.340 - 0.434ms returns FALSE
+T19A8 032:357.928 JLINK_HasError()
+T19A8 032:357.990 JLINK_IsHalted()
+T19A8 032:358.735 - 0.754ms returns FALSE
+T19A8 032:459.518 JLINK_HasError()
+T19A8 032:459.591 JLINK_HasError()
+T19A8 032:459.615 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 032:459.662 Data: B2 47 02 03
+T19A8 032:459.694 Debug reg: DWT_CYCCNT
+T19A8 032:459.722 - 0.117ms returns 1 (0x1)
+T2C78 032:460.843 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 032:460.949 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 032:461.352 Data: 00
+T2C78 032:461.386 - 0.554ms returns 1 (0x1)
+T2C78 032:462.265 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 032:462.319 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 032:462.761 Data: 32
+T2C78 032:462.820 - 0.565ms returns 1 (0x1)
+T2C78 032:462.994 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 032:463.035 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 032:463.434 Data: E2 00 00 00
+T2C78 032:463.465 - 0.479ms returns 4 (0x4)
+T2C78 032:463.502 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 032:463.530 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 032:463.874 Data: A9 00 00 00
+T2C78 032:463.901 - 0.406ms returns 4 (0x4)
+T2C78 032:463.931 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 032:463.952 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 032:464.334 Data: EF 00 00 00
+T2C78 032:464.360 - 0.437ms returns 4 (0x4)
+T2C78 032:464.389 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 032:464.410 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 032:464.749 Data: 3F 01 00 00
+T2C78 032:464.775 - 0.393ms returns 4 (0x4)
+T2C78 032:464.805 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 032:464.825 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 032:465.157 Data: 42 08 00 00
+T2C78 032:465.181 - 0.383ms returns 4 (0x4)
+T2C78 032:465.255 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 032:465.275 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 032:465.603 Data: 00 00 00 00
+T2C78 032:465.628 - 0.379ms returns 4 (0x4)
+T2C78 032:465.745 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 032:465.765 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 032:466.101 Data: 00
+T2C78 032:466.125 - 0.388ms returns 1 (0x1)
+T2C78 032:466.148 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 032:466.261 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 032:466.588 Data: 01
+T2C78 032:466.613 - 0.471ms returns 1 (0x1)
+T2C78 032:466.634 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 032:466.651 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 032:466.986 Data: 01
+T2C78 032:467.085 - 0.458ms returns 1 (0x1)
+T2C78 032:467.647 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 032:467.679 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 032:467.997 Data: 00
+T2C78 032:468.018 - 0.377ms returns 1 (0x1)
+T19A8 032:468.436 JLINK_IsHalted()
+T19A8 032:468.778 - 0.360ms returns FALSE
+T19A8 032:568.938 JLINK_HasError()
+T19A8 032:569.004 JLINK_IsHalted()
+T19A8 032:569.476 - 0.486ms returns FALSE
+T19A8 032:670.414 JLINK_HasError()
+T19A8 032:670.438 JLINK_IsHalted()
+T19A8 032:670.786 - 0.369ms returns FALSE
+T19A8 032:771.393 JLINK_HasError()
+T19A8 032:771.463 JLINK_IsHalted()
+T19A8 032:771.874 - 0.423ms returns FALSE
+T19A8 032:872.547 JLINK_HasError()
+T19A8 032:872.640 JLINK_IsHalted()
+T19A8 032:873.167 - 0.543ms returns FALSE
+T19A8 032:974.257 JLINK_HasError()
+T19A8 032:974.328 JLINK_HasError()
+T19A8 032:974.352 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 032:974.397 Data: B2 47 02 03
+T19A8 032:974.429 Debug reg: DWT_CYCCNT
+T19A8 032:974.458 - 0.116ms returns 1 (0x1)
+T2C78 032:974.815 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 032:974.895 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 032:975.429 Data: 00
+T2C78 032:975.515 - 0.713ms returns 1 (0x1)
+T2C78 032:975.612 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 032:975.668 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 032:976.214 Data: 32
+T2C78 032:976.261 - 0.659ms returns 1 (0x1)
+T2C78 032:976.403 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 032:976.442 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 032:976.834 Data: E2 00 00 00
+T2C78 032:976.867 - 0.473ms returns 4 (0x4)
+T2C78 032:976.910 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 032:976.940 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 032:977.446 Data: A9 00 00 00
+T2C78 032:977.517 - 0.618ms returns 4 (0x4)
+T2C78 032:977.601 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 032:977.644 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 032:978.090 Data: EF 00 00 00
+T2C78 032:978.158 - 0.568ms returns 4 (0x4)
+T2C78 032:978.235 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 032:978.278 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 032:978.636 Data: 3F 01 00 00
+T2C78 032:978.678 - 0.452ms returns 4 (0x4)
+T2C78 032:978.722 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 032:978.750 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 032:979.144 Data: 42 08 00 00
+T2C78 032:979.176 - 0.463ms returns 4 (0x4)
+T2C78 032:979.278 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 032:979.303 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 032:979.671 Data: 00 00 00 00
+T2C78 032:979.703 - 0.434ms returns 4 (0x4)
+T2C78 032:979.765 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 032:979.790 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 032:980.126 Data: 00
+T2C78 032:980.159 - 0.403ms returns 1 (0x1)
+T2C78 032:980.191 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 032:980.216 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 032:980.584 Data: 01
+T2C78 032:980.629 - 0.449ms returns 1 (0x1)
+T2C78 032:980.668 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 032:980.701 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 032:981.060 Data: 01
+T2C78 032:981.092 - 0.441ms returns 1 (0x1)
+T2C78 032:981.129 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 032:981.156 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 032:981.551 Data: 00
+T2C78 032:981.583 - 0.463ms returns 1 (0x1)
+T19A8 032:981.728 JLINK_IsHalted()
+T19A8 032:982.089 - 0.393ms returns FALSE
+T19A8 033:082.280 JLINK_HasError()
+T19A8 033:082.342 JLINK_IsHalted()
+T19A8 033:082.848 - 0.520ms returns FALSE
+T19A8 033:183.042 JLINK_HasError()
+T19A8 033:183.110 JLINK_IsHalted()
+T19A8 033:183.559 - 0.465ms returns FALSE
+T19A8 033:284.037 JLINK_HasError()
+T19A8 033:284.104 JLINK_IsHalted()
+T19A8 033:284.544 - 0.454ms returns FALSE
+T19A8 033:385.493 JLINK_HasError()
+T19A8 033:385.568 JLINK_IsHalted()
+T19A8 033:385.970 - 0.417ms returns FALSE
+T19A8 033:486.116 JLINK_HasError()
+T19A8 033:486.187 JLINK_IsHalted()
+T19A8 033:487.284 - 1.139ms returns FALSE
+T19A8 033:587.399 JLINK_HasError()
+T19A8 033:587.463 JLINK_HasError()
+T19A8 033:587.487 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 033:587.533 Data: B2 47 02 03
+T19A8 033:587.564 Debug reg: DWT_CYCCNT
+T19A8 033:587.593 - 0.116ms returns 1 (0x1)
+T2C78 033:587.942 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 033:588.029 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 033:588.620 Data: 00
+T2C78 033:588.670 - 0.739ms returns 1 (0x1)
+T2C78 033:588.724 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 033:588.758 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 033:589.124 Data: 32
+T2C78 033:589.157 - 0.443ms returns 1 (0x1)
+T2C78 033:589.286 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 033:589.315 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 033:589.686 Data: E2 00 00 00
+T2C78 033:589.723 - 0.448ms returns 4 (0x4)
+T2C78 033:589.770 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 033:589.798 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 033:590.160 Data: A9 00 00 00
+T2C78 033:590.192 - 0.431ms returns 4 (0x4)
+T2C78 033:590.230 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 033:590.256 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 033:590.641 Data: EF 00 00 00
+T2C78 033:590.680 - 0.460ms returns 4 (0x4)
+T2C78 033:590.725 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 033:590.753 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 033:591.118 Data: 3F 01 00 00
+T2C78 033:591.151 - 0.435ms returns 4 (0x4)
+T2C78 033:591.190 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 033:591.216 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 033:591.561 Data: 42 08 00 00
+T2C78 033:591.599 - 0.419ms returns 4 (0x4)
+T2C78 033:591.704 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 033:591.732 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 033:592.094 Data: 00 00 00 00
+T2C78 033:592.127 - 0.432ms returns 4 (0x4)
+T2C78 033:592.194 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 033:592.220 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 033:592.555 Data: 00
+T2C78 033:592.588 - 0.404ms returns 1 (0x1)
+T2C78 033:592.619 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 033:592.644 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 033:593.001 Data: 01
+T2C78 033:593.033 - 0.424ms returns 1 (0x1)
+T2C78 033:593.061 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 033:593.086 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 033:593.462 Data: 01
+T2C78 033:593.494 - 0.442ms returns 1 (0x1)
+T2C78 033:593.523 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 033:593.547 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 033:593.916 Data: 00
+T2C78 033:593.948 - 0.435ms returns 1 (0x1)
+T19A8 033:594.080 JLINK_IsHalted()
+T19A8 033:594.563 - 0.502ms returns FALSE
+T19A8 033:694.896 JLINK_HasError()
+T19A8 033:694.963 JLINK_IsHalted()
+T19A8 033:695.354 - 0.437ms returns FALSE
+T19A8 033:795.694 JLINK_HasError()
+T19A8 033:795.765 JLINK_IsHalted()
+T19A8 033:796.195 - 0.477ms returns FALSE
+T19A8 033:896.309 JLINK_HasError()
+T19A8 033:896.372 JLINK_IsHalted()
+T19A8 033:896.744 - 0.386ms returns FALSE
+T19A8 033:997.447 JLINK_HasError()
+T19A8 033:997.509 JLINK_IsHalted()
+T19A8 033:997.982 - 0.488ms returns FALSE
+T19A8 034:098.819 JLINK_HasError()
+T19A8 034:098.906 JLINK_HasError()
+T19A8 034:098.934 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 034:098.987 Data: B2 47 02 03
+T19A8 034:099.023 Debug reg: DWT_CYCCNT
+T19A8 034:099.060 - 0.143ms returns 1 (0x1)
+T2C78 034:099.471 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 034:099.587 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 034:100.025 Data: 00
+T2C78 034:100.067 - 0.607ms returns 1 (0x1)
+T2C78 034:100.158 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 034:100.197 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 034:100.582 Data: 32
+T2C78 034:100.618 - 0.470ms returns 1 (0x1)
+T2C78 034:100.795 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 034:100.825 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 034:101.201 Data: E2 00 00 00
+T2C78 034:101.237 - 0.453ms returns 4 (0x4)
+T2C78 034:101.279 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 034:101.307 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 034:101.666 Data: A9 00 00 00
+T2C78 034:101.702 - 0.433ms returns 4 (0x4)
+T2C78 034:101.742 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 034:102.006 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 034:102.582 Data: EF 00 00 00
+T2C78 034:102.636 - 0.906ms returns 4 (0x4)
+T2C78 034:102.708 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 034:102.750 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 034:103.094 Data: 3F 01 00 00
+T2C78 034:103.131 - 0.433ms returns 4 (0x4)
+T2C78 034:103.175 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 034:103.206 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 034:103.574 Data: 42 08 00 00
+T2C78 034:103.610 - 0.445ms returns 4 (0x4)
+T2C78 034:103.740 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 034:103.769 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 034:104.097 Data: 00 00 00 00
+T2C78 034:104.134 - 0.404ms returns 4 (0x4)
+T2C78 034:104.206 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 034:104.234 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 034:104.564 Data: 00
+T2C78 034:104.601 - 0.406ms returns 1 (0x1)
+T2C78 034:104.635 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 034:104.663 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 034:104.989 Data: 01
+T2C78 034:105.025 - 0.401ms returns 1 (0x1)
+T2C78 034:105.057 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 034:105.085 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 034:105.428 Data: 01
+T2C78 034:105.464 - 0.418ms returns 1 (0x1)
+T2C78 034:105.496 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 034:105.524 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 034:105.869 Data: 00
+T2C78 034:105.906 - 0.420ms returns 1 (0x1)
+T19A8 034:106.078 JLINK_IsHalted()
+T19A8 034:106.470 - 0.408ms returns FALSE
+T19A8 034:206.571 JLINK_HasError()
+T19A8 034:206.635 JLINK_IsHalted()
+T19A8 034:207.057 - 0.436ms returns FALSE
+T19A8 034:307.224 JLINK_HasError()
+T19A8 034:307.285 JLINK_IsHalted()
+T19A8 034:307.734 - 0.498ms returns FALSE
+T19A8 034:407.927 JLINK_HasError()
+T19A8 034:407.993 JLINK_IsHalted()
+T19A8 034:408.446 - 0.467ms returns FALSE
+T19A8 034:508.934 JLINK_HasError()
+T19A8 034:509.000 JLINK_IsHalted()
+T19A8 034:509.443 - 0.457ms returns FALSE
+T19A8 034:610.316 JLINK_HasError()
+T19A8 034:610.358 JLINK_IsHalted()
+T19A8 034:610.745 - 0.420ms returns FALSE
+T19A8 034:711.777 JLINK_HasError()
+T19A8 034:711.907 JLINK_HasError()
+T19A8 034:711.924 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 034:711.961 Data: B2 47 02 03
+T19A8 034:711.983 Debug reg: DWT_CYCCNT
+T19A8 034:712.002 - 0.085ms returns 1 (0x1)
+T2C78 034:712.327 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 034:712.403 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 034:712.783 Data: 00
+T2C78 034:712.809 - 0.488ms returns 1 (0x1)
+T2C78 034:712.853 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 034:712.877 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 034:713.323 Data: 32
+T2C78 034:713.345 - 0.499ms returns 1 (0x1)
+T2C78 034:713.435 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 034:713.454 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 034:713.877 Data: E2 00 00 00
+T2C78 034:713.906 - 0.477ms returns 4 (0x4)
+T2C78 034:713.930 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 034:713.947 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 034:714.348 Data: A9 00 00 00
+T2C78 034:714.369 - 0.445ms returns 4 (0x4)
+T2C78 034:714.393 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 034:714.409 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 034:714.830 Data: EF 00 00 00
+T2C78 034:714.851 - 0.464ms returns 4 (0x4)
+T2C78 034:714.875 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 034:714.891 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 034:715.325 Data: 3F 01 00 00
+T2C78 034:715.346 - 0.478ms returns 4 (0x4)
+T2C78 034:715.370 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 034:715.386 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 034:715.808 Data: 42 08 00 00
+T2C78 034:715.828 - 0.464ms returns 4 (0x4)
+T2C78 034:715.891 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 034:715.907 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 034:716.324 Data: 00 00 00 00
+T2C78 034:716.345 - 0.460ms returns 4 (0x4)
+T2C78 034:716.386 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 034:716.402 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 034:716.815 Data: 00
+T2C78 034:716.835 - 0.454ms returns 1 (0x1)
+T2C78 034:716.853 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 034:716.868 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 034:717.320 Data: 01
+T2C78 034:717.352 - 0.505ms returns 1 (0x1)
+T2C78 034:717.371 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 034:717.387 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 034:717.808 Data: 01
+T2C78 034:717.828 - 0.463ms returns 1 (0x1)
+T2C78 034:717.847 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 034:717.862 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 034:718.320 Data: 00
+T2C78 034:718.341 - 0.500ms returns 1 (0x1)
+T19A8 034:718.452 JLINK_IsHalted()
+T19A8 034:718.785 - 0.345ms returns FALSE
+T19A8 034:818.940 JLINK_HasError()
+T19A8 034:819.013 JLINK_IsHalted()
+T19A8 034:819.595 - 0.629ms returns FALSE
+T19A8 034:920.624 JLINK_HasError()
+T19A8 034:920.718 JLINK_IsHalted()
+T19A8 034:921.245 - 0.543ms returns FALSE
+T19A8 035:021.826 JLINK_HasError()
+T19A8 035:021.896 JLINK_IsHalted()
+T19A8 035:022.347 - 0.465ms returns FALSE
+T19A8 035:123.108 JLINK_HasError()
+T19A8 035:123.180 JLINK_IsHalted()
+T19A8 035:123.663 - 0.532ms returns FALSE
+T19A8 035:223.876 JLINK_HasError()
+T19A8 035:223.933 JLINK_HasError()
+T19A8 035:223.953 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 035:223.993 Data: B2 47 02 03
+T19A8 035:224.019 Debug reg: DWT_CYCCNT
+T19A8 035:224.043 - 0.097ms returns 1 (0x1)
+T2C78 035:224.415 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 035:224.499 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 035:224.910 Data: 00
+T2C78 035:224.917 - 0.505ms returns 1 (0x1)
+T2C78 035:224.930 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 035:224.937 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 035:225.233 Data: 32
+T2C78 035:225.239 - 0.310ms returns 1 (0x1)
+T2C78 035:225.277 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 035:225.282 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 035:225.526 Data: C1 00 00 00
+T2C78 035:225.532 - 0.257ms returns 4 (0x4)
+T2C78 035:225.788 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 035:225.798 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 035:226.100 Data: 00 00 00 00
+T2C78 035:226.106 - 0.320ms returns 4 (0x4)
+T2C78 035:226.252 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 035:226.261 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 035:226.636 Data: EF 00 00 00
+T2C78 035:226.642 - 0.391ms returns 4 (0x4)
+T2C78 035:226.650 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 035:226.656 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 035:227.097 Data: 4D 00 00 00
+T2C78 035:227.109 - 0.462ms returns 4 (0x4)
+T2C78 035:227.339 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 035:227.356 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 035:227.681 Data: 52 0E 00 00
+T2C78 035:227.695 - 0.359ms returns 4 (0x4)
+T2C78 035:227.959 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 035:227.974 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 035:228.321 Data: 00 00 00 00
+T2C78 035:228.334 - 0.378ms returns 4 (0x4)
+T2C78 035:228.361 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 035:228.372 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 035:228.685 Data: 00
+T2C78 035:228.698 - 0.340ms returns 1 (0x1)
+T2C78 035:228.711 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 035:228.722 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 035:229.040 Data: 01
+T2C78 035:229.053 - 0.346ms returns 1 (0x1)
+T2C78 035:229.065 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 035:229.075 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 035:229.371 Data: 01
+T2C78 035:229.384 - 0.323ms returns 1 (0x1)
+T2C78 035:229.397 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 035:229.407 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 035:229.683 Data: 00
+T2C78 035:229.697 - 0.304ms returns 1 (0x1)
+T19A8 035:229.754 JLINK_IsHalted()
+T19A8 035:230.099 - 0.353ms returns FALSE
+T19A8 035:330.740 JLINK_HasError()
+T19A8 035:330.808 JLINK_IsHalted()
+T19A8 035:331.225 - 0.432ms returns FALSE
+T19A8 035:431.332 JLINK_HasError()
+T19A8 035:431.396 JLINK_IsHalted()
+T19A8 035:431.937 - 0.555ms returns FALSE
+T19A8 035:533.061 JLINK_HasError()
+T19A8 035:533.145 JLINK_IsHalted()
+T19A8 035:533.670 - 0.576ms returns FALSE
+T19A8 035:634.624 JLINK_HasError()
+T19A8 035:634.727 JLINK_IsHalted()
+T19A8 035:635.366 - 0.692ms returns FALSE
+T19A8 035:736.226 JLINK_HasError()
+T19A8 035:736.303 JLINK_IsHalted()
+T19A8 035:737.237 - 0.979ms returns FALSE
+T19A8 035:837.714 JLINK_HasError()
+T19A8 035:837.782 JLINK_HasError()
+T19A8 035:837.806 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 035:837.853 Data: B2 47 02 03
+T19A8 035:837.886 Debug reg: DWT_CYCCNT
+T19A8 035:837.914 - 0.118ms returns 1 (0x1)
+T2C78 035:838.363 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 035:838.467 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 035:838.910 Data: 00
+T2C78 035:838.951 - 0.598ms returns 1 (0x1)
+T2C78 035:839.023 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 035:839.058 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 035:839.463 Data: 32
+T2C78 035:839.495 - 0.482ms returns 1 (0x1)
+T2C78 035:839.622 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 035:839.649 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 035:840.020 Data: 20 00 00 00
+T2C78 035:840.052 - 0.440ms returns 4 (0x4)
+T2C78 035:841.944 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 035:842.009 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 035:842.407 Data: 52 00 00 00
+T2C78 035:842.459 - 0.525ms returns 4 (0x4)
+T2C78 035:843.814 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 035:843.870 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 035:844.227 Data: EF 00 00 00
+T2C78 035:844.261 - 0.457ms returns 4 (0x4)
+T2C78 035:844.314 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 035:844.344 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 035:844.680 Data: 4D 00 00 00
+T2C78 035:844.713 - 0.408ms returns 4 (0x4)
+T2C78 035:845.309 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 035:845.349 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 035:845.693 Data: 52 0E 00 00
+T2C78 035:845.724 - 0.423ms returns 4 (0x4)
+T2C78 035:846.323 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 035:846.358 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 035:846.722 Data: 00 00 00 00
+T2C78 035:846.749 - 0.434ms returns 4 (0x4)
+T2C78 035:846.809 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 035:846.830 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 035:847.174 Data: 00
+T2C78 035:847.199 - 0.397ms returns 1 (0x1)
+T2C78 035:847.226 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 035:847.250 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 035:847.571 Data: 01
+T2C78 035:847.595 - 0.375ms returns 1 (0x1)
+T2C78 035:847.620 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 035:847.637 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 035:847.941 Data: 63
+T2C78 035:847.964 - 0.350ms returns 1 (0x1)
+T2C78 035:848.408 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 035:848.434 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 035:848.781 Data: 63
+T2C78 035:848.807 - 0.405ms returns 1 (0x1)
+T19A8 035:849.272 JLINK_IsHalted()
+T19A8 035:849.643 - 0.388ms returns FALSE
+T19A8 035:950.357 JLINK_HasError()
+T19A8 035:950.458 JLINK_IsHalted()
+T19A8 035:951.118 - 0.745ms returns FALSE
+T19A8 036:051.364 JLINK_HasError()
+T19A8 036:051.439 JLINK_IsHalted()
+T19A8 036:051.909 - 0.517ms returns FALSE
+T19A8 036:152.425 JLINK_HasError()
+T19A8 036:152.637 JLINK_IsHalted()
+T19A8 036:153.151 - 0.530ms returns FALSE
+T19A8 036:253.814 JLINK_HasError()
+T19A8 036:253.879 JLINK_IsHalted()
+T19A8 036:254.265 - 0.432ms returns FALSE
+T19A8 036:354.708 JLINK_HasError()
+T19A8 036:354.789 JLINK_HasError()
+T19A8 036:354.820 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 036:354.878 Data: B2 47 02 03
+T19A8 036:354.924 Debug reg: DWT_CYCCNT
+T19A8 036:354.961 - 0.153ms returns 1 (0x1)
+T2C78 036:355.600 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 036:355.665 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 036:356.346 Data: 00
+T2C78 036:356.384 - 0.794ms returns 1 (0x1)
+T2C78 036:356.438 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 036:356.471 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 036:356.910 Data: 32
+T2C78 036:356.982 - 0.554ms returns 1 (0x1)
+T2C78 036:357.175 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 036:357.221 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 036:357.589 Data: E2 00 00 00
+T2C78 036:357.626 - 0.461ms returns 4 (0x4)
+T2C78 036:359.145 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 036:359.208 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 036:360.061 Data: A9 00 00 00
+T2C78 036:360.116 - 0.980ms returns 4 (0x4)
+T2C78 036:361.497 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 036:361.542 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 036:361.992 Data: EF 00 00 00
+T2C78 036:362.089 - 0.598ms returns 4 (0x4)
+T2C78 036:362.134 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 036:362.161 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 036:362.519 Data: 3F 01 00 00
+T2C78 036:362.541 - 0.412ms returns 4 (0x4)
+T2C78 036:362.985 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 036:363.013 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 036:363.326 Data: 42 08 00 00
+T2C78 036:363.346 - 0.366ms returns 4 (0x4)
+T2C78 036:363.760 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 036:363.784 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 036:364.083 Data: 00 00 00 00
+T2C78 036:364.105 - 0.351ms returns 4 (0x4)
+T2C78 036:364.150 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 036:364.168 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 036:364.543 Data: 00
+T2C78 036:364.564 - 0.419ms returns 1 (0x1)
+T2C78 036:364.583 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 036:364.599 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 036:364.897 Data: 01
+T2C78 036:364.917 - 0.340ms returns 1 (0x1)
+T2C78 036:364.936 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 036:364.951 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 036:365.249 Data: 63
+T2C78 036:365.269 - 0.340ms returns 1 (0x1)
+T2C78 036:365.671 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 036:365.696 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 036:365.999 Data: 63
+T2C78 036:366.021 - 0.356ms returns 1 (0x1)
+T19A8 036:366.435 JLINK_IsHalted()
+T19A8 036:366.770 - 0.352ms returns FALSE
+T19A8 036:467.467 JLINK_HasError()
+T19A8 036:467.536 JLINK_IsHalted()
+T19A8 036:467.939 - 0.417ms returns FALSE
+T19A8 036:568.875 JLINK_HasError()
+T19A8 036:568.973 JLINK_IsHalted()
+T19A8 036:569.710 - 0.793ms returns FALSE
+T19A8 036:669.883 JLINK_HasError()
+T19A8 036:669.963 JLINK_IsHalted()
+T19A8 036:670.407 - 0.503ms returns FALSE
+T19A8 036:770.687 JLINK_HasError()
+T19A8 036:770.766 JLINK_IsHalted()
+T19A8 036:771.188 - 0.463ms returns FALSE
+T19A8 036:872.295 JLINK_HasError()
+T19A8 036:872.372 JLINK_HasError()
+T19A8 036:872.397 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 036:872.445 Data: B2 47 02 03
+T19A8 036:872.477 Debug reg: DWT_CYCCNT
+T19A8 036:872.506 - 0.118ms returns 1 (0x1)
+T2C78 036:872.891 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 036:872.995 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 036:873.443 Data: 00
+T2C78 036:873.481 - 0.600ms returns 1 (0x1)
+T2C78 036:873.560 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 036:873.596 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 036:874.073 Data: 32
+T2C78 036:874.105 - 0.555ms returns 1 (0x1)
+T2C78 036:874.267 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 036:874.295 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 036:874.834 Data: E2 00 00 00
+T2C78 036:874.903 - 0.647ms returns 4 (0x4)
+T2C78 036:875.850 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 036:875.906 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 036:876.329 Data: A9 00 00 00
+T2C78 036:876.396 - 0.557ms returns 4 (0x4)
+T2C78 036:877.218 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 036:877.268 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 036:877.617 Data: EF 00 00 00
+T2C78 036:877.650 - 0.440ms returns 4 (0x4)
+T2C78 036:877.690 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 036:877.714 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 036:878.071 Data: 3F 01 00 00
+T2C78 036:878.098 - 0.416ms returns 4 (0x4)
+T2C78 036:878.607 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 036:878.638 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 036:878.963 Data: 42 08 00 00
+T2C78 036:878.991 - 0.390ms returns 4 (0x4)
+T2C78 036:879.458 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 036:879.486 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 036:879.815 Data: 00 00 00 00
+T2C78 036:879.837 - 0.385ms returns 4 (0x4)
+T2C78 036:879.884 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 036:879.901 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 036:880.219 Data: 00
+T2C78 036:880.239 - 0.360ms returns 1 (0x1)
+T2C78 036:880.258 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 036:880.273 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 036:880.559 Data: 01
+T2C78 036:880.578 - 0.326ms returns 1 (0x1)
+T2C78 036:880.595 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 036:880.610 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 036:880.913 Data: 63
+T2C78 036:880.932 - 0.342ms returns 1 (0x1)
+T2C78 036:880.950 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 036:880.965 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 036:881.321 Data: 63
+T2C78 036:881.341 - 0.397ms returns 1 (0x1)
+T19A8 036:881.430 JLINK_IsHalted()
+T19A8 036:881.778 - 0.359ms returns FALSE
+T19A8 036:981.854 JLINK_HasError()
+T19A8 036:981.916 JLINK_IsHalted()
+T19A8 036:982.333 - 0.431ms returns FALSE
+T19A8 037:082.646 JLINK_HasError()
+T19A8 037:082.750 JLINK_IsHalted()
+T19A8 037:083.322 - 0.622ms returns FALSE
+T19A8 037:184.384 JLINK_HasError()
+T19A8 037:184.456 JLINK_IsHalted()
+T19A8 037:184.963 - 0.553ms returns FALSE
+T19A8 037:286.347 JLINK_HasError()
+T19A8 037:286.420 JLINK_IsHalted()
+T19A8 037:287.099 - 0.737ms returns FALSE
+T19A8 037:387.255 JLINK_HasError()
+T19A8 037:387.395 JLINK_HasError()
+T19A8 037:387.420 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 037:387.467 Data: B2 47 02 03
+T19A8 037:387.499 Debug reg: DWT_CYCCNT
+T19A8 037:387.527 - 0.117ms returns 1 (0x1)
+T2C78 037:388.007 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 037:388.099 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 037:388.681 Data: 56
+T2C78 037:388.756 - 0.760ms returns 1 (0x1)
+T2C78 037:389.778 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 037:389.838 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 037:390.211 Data: 32
+T2C78 037:390.252 - 0.485ms returns 1 (0x1)
+T2C78 037:390.394 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 037:390.428 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 037:390.878 Data: C1 00 00 00
+T2C78 037:390.911 - 0.526ms returns 4 (0x4)
+T2C78 037:391.733 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 037:391.776 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 037:392.199 Data: 00 00 00 00
+T2C78 037:392.234 - 0.510ms returns 4 (0x4)
+T2C78 037:392.788 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 037:392.822 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 037:393.146 Data: EF 00 00 00
+T2C78 037:393.173 - 0.393ms returns 4 (0x4)
+T2C78 037:393.212 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 037:393.235 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 037:393.705 Data: 4D 00 00 00
+T2C78 037:393.812 - 0.611ms returns 4 (0x4)
+T2C78 037:394.810 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 037:394.855 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 037:395.214 Data: 52 0E 00 00
+T2C78 037:395.243 - 0.439ms returns 4 (0x4)
+T2C78 037:395.853 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 037:395.892 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 037:396.212 Data: 00 00 00 00
+T2C78 037:396.232 - 0.385ms returns 4 (0x4)
+T2C78 037:396.277 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 037:396.296 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 037:396.585 Data: 01
+T2C78 037:396.605 - 0.333ms returns 1 (0x1)
+T2C78 037:397.037 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 037:397.066 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 037:397.376 Data: 00
+T2C78 037:397.398 - 0.367ms returns 1 (0x1)
+T2C78 037:397.776 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 037:397.800 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 037:398.122 Data: 63
+T2C78 037:398.144 - 0.374ms returns 1 (0x1)
+T2C78 037:398.169 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 037:398.187 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 037:398.540 Data: 63
+T2C78 037:398.562 - 0.399ms returns 1 (0x1)
+T19A8 037:398.662 JLINK_IsHalted()
+T19A8 037:398.996 - 0.344ms returns FALSE
+T19A8 037:499.159 JLINK_HasError()
+T19A8 037:499.232 JLINK_IsHalted()
+T19A8 037:499.748 - 0.565ms returns FALSE
+T19A8 037:599.951 JLINK_HasError()
+T19A8 037:600.004 JLINK_IsHalted()
+T19A8 037:600.500 - 0.510ms returns FALSE
+T19A8 037:701.436 JLINK_HasError()
+T19A8 037:701.495 JLINK_IsHalted()
+T19A8 037:701.894 - 0.444ms returns FALSE
+T19A8 037:802.481 JLINK_HasError()
+T19A8 037:802.574 JLINK_IsHalted()
+T19A8 037:803.104 - 0.581ms returns FALSE
+T19A8 037:903.899 JLINK_HasError()
+T19A8 037:903.972 JLINK_HasError()
+T19A8 037:903.997 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 037:904.081 Data: B2 47 02 03
+T19A8 037:904.156 Debug reg: DWT_CYCCNT
+T19A8 037:904.186 - 0.200ms returns 1 (0x1)
+T2C78 037:904.554 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 037:904.641 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 037:905.077 Data: 00
+T2C78 037:905.112 - 0.568ms returns 1 (0x1)
+T2C78 037:906.423 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 037:906.475 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 037:906.815 Data: 32
+T2C78 037:906.842 - 0.426ms returns 1 (0x1)
+T2C78 037:906.963 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 037:906.986 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 037:907.322 Data: E2 00 00 00
+T2C78 037:907.344 - 0.387ms returns 4 (0x4)
+T2C78 037:908.098 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 037:908.130 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 037:908.446 Data: A9 00 00 00
+T2C78 037:908.477 - 0.384ms returns 4 (0x4)
+T2C78 037:909.045 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 037:909.068 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 037:909.404 Data: EF 00 00 00
+T2C78 037:909.422 - 0.382ms returns 4 (0x4)
+T2C78 037:909.495 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 037:909.571 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 037:909.889 Data: 3F 01 00 00
+T2C78 037:909.905 - 0.415ms returns 4 (0x4)
+T2C78 037:910.391 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 037:910.411 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 037:910.692 Data: 42 08 00 00
+T2C78 037:910.707 - 0.321ms returns 4 (0x4)
+T2C78 037:911.186 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 037:911.204 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 037:911.562 Data: 00 00 00 00
+T2C78 037:911.638 - 0.467ms returns 4 (0x4)
+T2C78 037:911.789 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 037:911.835 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 037:912.161 Data: 02
+T2C78 037:912.178 - 0.392ms returns 1 (0x1)
+T2C78 037:912.446 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 037:912.464 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 037:912.727 Data: 01
+T2C78 037:912.739 - 0.296ms returns 1 (0x1)
+T2C78 037:912.928 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 037:912.940 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 037:913.208 Data: 63
+T2C78 037:913.218 - 0.293ms returns 1 (0x1)
+T2C78 037:913.230 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 037:913.239 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 037:913.501 Data: 63
+T2C78 037:913.513 - 0.285ms returns 1 (0x1)
+T19A8 037:913.558 JLINK_IsHalted()
+T19A8 037:913.854 - 0.302ms returns FALSE
+T19A8 038:014.922 JLINK_HasError()
+T19A8 038:014.986 JLINK_IsHalted()
+T19A8 038:015.478 - 0.507ms returns FALSE
+T19A8 038:116.493 JLINK_HasError()
+T19A8 038:116.557 JLINK_IsHalted()
+T19A8 038:116.963 - 0.420ms returns FALSE
+T19A8 038:218.003 JLINK_HasError()
+T19A8 038:218.068 JLINK_IsHalted()
+T19A8 038:218.530 - 0.477ms returns FALSE
+T19A8 038:319.539 JLINK_HasError()
+T19A8 038:319.605 JLINK_IsHalted()
+T19A8 038:320.453 - 0.890ms returns FALSE
+T19A8 038:420.945 JLINK_HasError()
+T19A8 038:420.974 JLINK_HasError()
+T19A8 038:420.982 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 038:420.999 Data: B2 47 02 03
+T19A8 038:421.010 Debug reg: DWT_CYCCNT
+T19A8 038:421.019 - 0.040ms returns 1 (0x1)
+T2C78 038:421.227 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 038:421.261 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 038:421.583 Data: 00
+T2C78 038:421.604 - 0.380ms returns 1 (0x1)
+T2C78 038:421.922 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 038:421.938 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 038:422.265 Data: 32
+T2C78 038:422.274 - 0.355ms returns 1 (0x1)
+T2C78 038:422.315 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 038:422.323 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 038:422.629 Data: E2 00 00 00
+T2C78 038:422.637 - 0.325ms returns 4 (0x4)
+T2C78 038:422.844 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 038:422.857 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 038:423.227 Data: A9 00 00 00
+T2C78 038:423.239 - 0.396ms returns 4 (0x4)
+T2C78 038:423.463 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 038:423.479 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 038:423.739 Data: EF 00 00 00
+T2C78 038:423.748 - 0.288ms returns 4 (0x4)
+T2C78 038:423.760 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 038:423.767 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 038:424.016 Data: 3F 01 00 00
+T2C78 038:424.024 - 0.266ms returns 4 (0x4)
+T2C78 038:424.193 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 038:424.203 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 038:424.676 Data: 42 08 00 00
+T2C78 038:424.750 - 0.570ms returns 4 (0x4)
+T2C78 038:425.124 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 038:425.142 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 038:425.402 Data: 00 00 00 00
+T2C78 038:425.411 - 0.289ms returns 4 (0x4)
+T2C78 038:425.436 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 038:425.444 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 038:425.720 Data: 02
+T2C78 038:425.728 - 0.293ms returns 1 (0x1)
+T2C78 038:425.890 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 038:425.899 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 038:426.154 Data: 01
+T2C78 038:426.162 - 0.274ms returns 1 (0x1)
+T2C78 038:426.294 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 038:426.304 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 038:426.550 Data: 63
+T2C78 038:426.558 - 0.266ms returns 1 (0x1)
+T2C78 038:426.567 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 038:426.573 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 038:426.834 Data: 63
+T2C78 038:426.841 - 0.276ms returns 1 (0x1)
+T19A8 038:426.869 JLINK_IsHalted()
+T19A8 038:427.121 - 0.256ms returns FALSE
+T19A8 038:527.189 JLINK_HasError()
+T19A8 038:527.254 JLINK_IsHalted()
+T19A8 038:527.648 - 0.409ms returns FALSE
+T19A8 038:628.601 JLINK_HasError()
+T19A8 038:628.660 JLINK_IsHalted()
+T19A8 038:629.095 - 0.449ms returns FALSE
+T19A8 038:730.079 JLINK_HasError()
+T19A8 038:730.128 JLINK_IsHalted()
+T19A8 038:730.428 - 0.304ms returns FALSE
+T19A8 038:830.995 JLINK_HasError()
+T19A8 038:831.060 JLINK_IsHalted()
+T19A8 038:831.603 - 0.588ms returns FALSE
+T19A8 038:931.722 JLINK_HasError()
+T19A8 038:931.787 JLINK_HasError()
+T19A8 038:931.811 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 038:931.858 Data: B2 47 02 03
+T19A8 038:931.891 Debug reg: DWT_CYCCNT
+T19A8 038:931.919 - 0.118ms returns 1 (0x1)
+T2C78 038:932.233 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 038:932.326 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 038:932.747 Data: 00
+T2C78 038:932.786 - 0.563ms returns 1 (0x1)
+T2C78 038:932.857 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 038:932.894 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 038:933.333 Data: 32
+T2C78 038:933.366 - 0.519ms returns 1 (0x1)
+T2C78 038:933.522 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 038:933.550 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 038:933.919 Data: C1 00 00 00
+T2C78 038:933.951 - 0.439ms returns 4 (0x4)
+T2C78 038:934.856 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 038:934.905 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 038:935.253 Data: 00 00 00 00
+T2C78 038:935.287 - 0.441ms returns 4 (0x4)
+T2C78 038:935.932 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 038:935.976 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 038:936.338 Data: EF 00 00 00
+T2C78 038:936.372 - 0.450ms returns 4 (0x4)
+T2C78 038:936.418 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 038:936.445 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 038:937.320 Data: 4D 00 00 00
+T2C78 038:937.360 - 0.953ms returns 4 (0x4)
+T2C78 038:938.117 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 038:938.160 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 038:938.733 Data: 52 0E 00 00
+T2C78 038:938.784 - 0.678ms returns 4 (0x4)
+T2C78 038:940.170 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 038:940.306 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 038:941.104 Data: 00 00 00 00
+T2C78 038:941.160 - 0.998ms returns 4 (0x4)
+T2C78 038:941.269 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 038:941.304 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 038:941.657 Data: 01
+T2C78 038:941.692 - 0.430ms returns 1 (0x1)
+T2C78 038:942.376 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 038:942.430 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 038:942.757 Data: 02
+T2C78 038:942.787 - 0.418ms returns 1 (0x1)
+T2C78 038:943.215 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 038:943.240 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 038:943.578 Data: 63
+T2C78 038:943.598 - 0.388ms returns 1 (0x1)
+T2C78 038:943.620 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 038:943.637 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 038:944.013 Data: 63
+T2C78 038:944.029 - 0.413ms returns 1 (0x1)
+T19A8 038:944.162 JLINK_IsHalted()
+T19A8 038:945.032 - 0.876ms returns FALSE
+T19A8 039:045.110 JLINK_HasError()
+T19A8 039:045.179 JLINK_IsHalted()
+T19A8 039:045.624 - 0.492ms returns FALSE
+T19A8 039:146.844 JLINK_HasError()
+T19A8 039:146.914 JLINK_IsHalted()
+T19A8 039:147.419 - 0.547ms returns FALSE
+T19A8 039:247.755 JLINK_HasError()
+T19A8 039:247.797 JLINK_IsHalted()
+T19A8 039:248.161 - 0.394ms returns FALSE
+T19A8 039:348.516 JLINK_HasError()
+T19A8 039:348.582 JLINK_IsHalted()
+T19A8 039:349.065 - 0.529ms returns FALSE
+T19A8 039:449.204 JLINK_HasError()
+T19A8 039:449.274 JLINK_HasError()
+T19A8 039:449.298 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 039:449.345 Data: B2 47 02 03
+T19A8 039:449.378 Debug reg: DWT_CYCCNT
+T19A8 039:449.406 - 0.117ms returns 1 (0x1)
+T2C78 039:449.790 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 039:449.886 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 039:450.416 Data: 00
+T2C78 039:450.455 - 0.675ms returns 1 (0x1)
+T2C78 039:450.533 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 039:450.569 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 039:451.015 Data: 32
+T2C78 039:451.049 - 0.526ms returns 1 (0x1)
+T2C78 039:451.208 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 039:451.235 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 039:451.643 Data: E2 00 00 00
+T2C78 039:451.676 - 0.478ms returns 4 (0x4)
+T2C78 039:453.115 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 039:453.174 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 039:454.346 Data: A9 00 00 00
+T2C78 039:454.383 - 1.278ms returns 4 (0x4)
+T2C78 039:456.096 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 039:456.161 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 039:457.050 Data: EF 00 00 00
+T2C78 039:457.081 - 0.992ms returns 4 (0x4)
+T2C78 039:457.128 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 039:457.154 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 039:457.589 Data: 3F 01 00 00
+T2C78 039:457.616 - 0.494ms returns 4 (0x4)
+T2C78 039:458.403 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 039:458.436 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 039:458.810 Data: 42 08 00 00
+T2C78 039:458.841 - 0.443ms returns 4 (0x4)
+T2C78 039:459.753 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 039:459.778 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 039:460.108 Data: 00 00 00 00
+T2C78 039:460.123 - 0.374ms returns 4 (0x4)
+T2C78 039:460.157 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 039:460.169 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 039:460.521 Data: 00
+T2C78 039:460.534 - 0.380ms returns 1 (0x1)
+T2C78 039:460.771 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 039:460.787 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 039:461.061 Data: 01
+T2C78 039:461.074 - 0.306ms returns 1 (0x1)
+T2C78 039:461.275 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 039:461.288 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 039:461.564 Data: 63
+T2C78 039:461.576 - 0.304ms returns 1 (0x1)
+T2C78 039:461.589 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 039:461.598 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 039:461.873 Data: 63
+T2C78 039:461.884 - 0.298ms returns 1 (0x1)
+T19A8 039:461.941 JLINK_IsHalted()
+T19A8 039:462.230 - 0.297ms returns FALSE
+T19A8 039:562.508 JLINK_HasError()
+T19A8 039:562.579 JLINK_IsHalted()
+T19A8 039:563.048 - 0.485ms returns FALSE
+T19A8 039:663.296 JLINK_HasError()
+T19A8 039:663.312 JLINK_IsHalted()
+T19A8 039:663.617 - 0.313ms returns FALSE
+T19A8 039:764.475 JLINK_HasError()
+T19A8 039:764.535 JLINK_IsHalted()
+T19A8 039:764.961 - 0.440ms returns FALSE
+T19A8 039:865.847 JLINK_HasError()
+T19A8 039:865.930 JLINK_IsHalted()
+T19A8 039:866.340 - 0.452ms returns FALSE
+T19A8 039:966.449 JLINK_HasError()
+T19A8 039:966.513 JLINK_HasError()
+T19A8 039:966.537 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 039:966.582 Data: B2 47 02 03
+T19A8 039:966.615 Debug reg: DWT_CYCCNT
+T19A8 039:966.643 - 0.116ms returns 1 (0x1)
+T2C78 039:966.984 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 039:967.076 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 039:967.551 Data: 00
+T2C78 039:967.591 - 0.618ms returns 1 (0x1)
+T2C78 039:967.669 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 039:967.705 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 039:968.075 Data: 32
+T2C78 039:968.108 - 0.448ms returns 1 (0x1)
+T2C78 039:968.266 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 039:968.294 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 039:968.657 Data: 20 00 00 00
+T2C78 039:968.690 - 0.434ms returns 4 (0x4)
+T2C78 039:970.831 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 039:970.898 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 039:971.334 Data: 98 00 00 00
+T2C78 039:971.369 - 0.548ms returns 4 (0x4)
+T2C78 039:973.334 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 039:973.348 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 039:973.738 Data: 48 00 00 00
+T2C78 039:973.755 - 0.423ms returns 4 (0x4)
+T2C78 039:973.904 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 039:973.913 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 039:974.184 Data: CA 00 00 00
+T2C78 039:974.222 - 0.323ms returns 4 (0x4)
+T2C78 039:974.983 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 039:975.015 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 039:975.356 Data: 2B 08 00 00
+T2C78 039:975.375 - 0.397ms returns 4 (0x4)
+T2C78 039:975.949 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 039:975.973 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 039:976.312 Data: 00 00 00 00
+T2C78 039:976.329 - 0.384ms returns 4 (0x4)
+T2C78 039:976.366 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 039:976.380 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 039:976.664 Data: 00
+T2C78 039:976.678 - 0.316ms returns 1 (0x1)
+T2C78 039:976.932 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 039:976.949 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 039:977.306 Data: 01
+T2C78 039:977.320 - 0.392ms returns 1 (0x1)
+T2C78 039:977.555 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 039:977.569 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 039:977.832 Data: 00
+T2C78 039:977.846 - 0.295ms returns 1 (0x1)
+T2C78 039:978.059 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 039:978.072 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 039:978.381 Data: 00
+T2C78 039:978.394 - 0.340ms returns 1 (0x1)
+T19A8 039:978.623 JLINK_IsHalted()
+T19A8 039:978.917 - 0.303ms returns FALSE
+T19A8 040:079.962 JLINK_HasError()
+T19A8 040:080.035 JLINK_IsHalted()
+T19A8 040:080.462 - 0.442ms returns FALSE
+T19A8 040:181.026 JLINK_HasError()
+T19A8 040:181.121 JLINK_IsHalted()
+T19A8 040:181.615 - 0.538ms returns FALSE
+T19A8 040:281.729 JLINK_HasError()
+T19A8 040:281.797 JLINK_IsHalted()
+T19A8 040:282.208 - 0.424ms returns FALSE
+T19A8 040:382.365 JLINK_HasError()
+T19A8 040:382.493 JLINK_IsHalted()
+T19A8 040:383.004 - 0.564ms returns FALSE
+T19A8 040:483.294 JLINK_HasError()
+T19A8 040:483.400 JLINK_HasError()
+T19A8 040:483.426 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 040:483.481 Data: B2 47 02 03
+T19A8 040:483.517 Debug reg: DWT_CYCCNT
+T19A8 040:483.548 - 0.133ms returns 1 (0x1)
+T2C78 040:484.062 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 040:484.157 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 040:484.831 Data: 00
+T2C78 040:484.905 - 0.855ms returns 1 (0x1)
+T2C78 040:484.993 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 040:485.041 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 040:485.711 Data: 32
+T2C78 040:486.124 - 1.150ms returns 1 (0x1)
+T2C78 040:486.329 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 040:486.395 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 040:487.428 Data: C1 00 00 00
+T2C78 040:487.502 - 1.185ms returns 4 (0x4)
+T2C78 040:489.852 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 040:489.936 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 040:490.385 Data: 00 00 00 00
+T2C78 040:490.455 - 0.615ms returns 4 (0x4)
+T2C78 040:491.780 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 040:491.834 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 040:492.201 Data: EF 00 00 00
+T2C78 040:492.227 - 0.454ms returns 4 (0x4)
+T2C78 040:492.969 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 040:492.998 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 040:493.319 Data: 3F 01 00 00
+T2C78 040:493.340 - 0.377ms returns 4 (0x4)
+T2C78 040:493.927 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 040:493.949 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 040:494.314 Data: 77 13 00 00
+T2C78 040:494.332 - 0.410ms returns 4 (0x4)
+T2C78 040:494.889 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 040:494.912 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 040:495.312 Data: 00 00 00 00
+T2C78 040:495.328 - 0.443ms returns 4 (0x4)
+T2C78 040:495.365 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 040:495.378 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 040:495.663 Data: 00
+T2C78 040:495.677 - 0.316ms returns 1 (0x1)
+T2C78 040:495.690 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 040:495.701 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 040:495.974 Data: 01
+T2C78 040:495.988 - 0.302ms returns 1 (0x1)
+T2C78 040:496.000 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 040:496.011 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 040:496.322 Data: 00
+T2C78 040:496.353 - 0.357ms returns 1 (0x1)
+T2C78 040:496.713 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 040:496.740 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 040:497.064 Data: 00
+T2C78 040:497.082 - 0.374ms returns 1 (0x1)
+T19A8 040:497.465 JLINK_IsHalted()
+T19A8 040:497.792 - 0.333ms returns FALSE
+T19A8 040:598.472 JLINK_HasError()
+T19A8 040:598.547 JLINK_IsHalted()
+T19A8 040:598.959 - 0.429ms returns FALSE
+T19A8 040:699.795 JLINK_HasError()
+T19A8 040:699.857 JLINK_IsHalted()
+T19A8 040:700.257 - 0.414ms returns FALSE
+T19A8 040:801.687 JLINK_HasError()
+T19A8 040:801.760 JLINK_IsHalted()
+T19A8 040:802.333 - 0.587ms returns FALSE
+T19A8 040:902.594 JLINK_HasError()
+T19A8 040:902.660 JLINK_IsHalted()
+T19A8 040:903.068 - 0.423ms returns FALSE
+T19A8 041:003.148 JLINK_HasError()
+T19A8 041:003.206 JLINK_HasError()
+T19A8 041:003.231 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 041:003.277 Data: B2 47 02 03
+T19A8 041:003.310 Debug reg: DWT_CYCCNT
+T19A8 041:003.338 - 0.116ms returns 1 (0x1)
+T2C78 041:003.676 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 041:003.712 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 041:004.351 Data: 00
+T2C78 041:004.425 - 0.759ms returns 1 (0x1)
+T2C78 041:004.511 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 041:004.558 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 041:004.925 Data: 32
+T2C78 041:004.964 - 0.463ms returns 1 (0x1)
+T2C78 041:005.116 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 041:005.149 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 041:005.548 Data: 20 00 00 00
+T2C78 041:005.581 - 0.475ms returns 4 (0x4)
+T2C78 041:007.089 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 041:007.152 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 041:007.576 Data: 98 00 00 00
+T2C78 041:007.610 - 0.531ms returns 4 (0x4)
+T2C78 041:008.662 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 041:008.715 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 041:009.115 Data: 48 00 00 00
+T2C78 041:009.150 - 0.498ms returns 4 (0x4)
+T2C78 041:010.124 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 041:010.166 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 041:010.571 Data: CA 00 00 00
+T2C78 041:010.601 - 0.485ms returns 4 (0x4)
+T2C78 041:011.425 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 041:011.455 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 041:011.806 Data: 2B 08 00 00
+T2C78 041:011.834 - 0.415ms returns 4 (0x4)
+T2C78 041:012.692 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 041:012.720 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 041:013.167 Data: 00 00 00 00
+T2C78 041:013.206 - 0.520ms returns 4 (0x4)
+T2C78 041:013.304 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 041:013.328 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 041:013.735 Data: 00
+T2C78 041:013.774 - 0.475ms returns 1 (0x1)
+T2C78 041:013.804 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 041:013.828 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 041:014.154 Data: 01
+T2C78 041:014.193 - 0.394ms returns 1 (0x1)
+T2C78 041:014.221 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 041:014.245 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 041:014.546 Data: 01
+T2C78 041:014.565 - 0.350ms returns 1 (0x1)
+T2C78 041:015.059 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 041:015.087 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 041:015.408 Data: 00
+T2C78 041:015.429 - 0.376ms returns 1 (0x1)
+T19A8 041:015.509 JLINK_IsHalted()
+T19A8 041:015.864 - 0.367ms returns FALSE
+T19A8 041:116.180 JLINK_HasError()
+T19A8 041:116.240 JLINK_IsHalted()
+T19A8 041:116.642 - 0.416ms returns FALSE
+T19A8 041:217.406 JLINK_HasError()
+T19A8 041:217.503 JLINK_IsHalted()
+T19A8 041:218.101 - 0.646ms returns FALSE
+T19A8 041:318.309 JLINK_HasError()
+T19A8 041:318.383 JLINK_IsHalted()
+T19A8 041:318.936 - 0.600ms returns FALSE
+T19A8 041:419.145 JLINK_HasError()
+T19A8 041:419.218 JLINK_IsHalted()
+T19A8 041:419.705 - 0.502ms returns FALSE
+T19A8 041:519.945 JLINK_HasError()
+T19A8 041:520.048 JLINK_HasError()
+T19A8 041:520.075 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 041:520.130 Data: B2 47 02 03
+T19A8 041:520.166 Debug reg: DWT_CYCCNT
+T19A8 041:520.197 - 0.133ms returns 1 (0x1)
+T2C78 041:521.080 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 041:521.174 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 041:521.819 Data: 00
+T2C78 041:521.894 - 0.825ms returns 1 (0x1)
+T2C78 041:521.981 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 041:522.030 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 041:522.565 Data: 32
+T2C78 041:522.603 - 0.632ms returns 1 (0x1)
+T2C78 041:522.739 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 041:522.772 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 041:523.336 Data: E2 00 00 00
+T2C78 041:523.373 - 0.644ms returns 4 (0x4)
+T2C78 041:525.081 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 041:525.144 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 041:525.580 Data: A9 00 00 00
+T2C78 041:525.619 - 0.548ms returns 4 (0x4)
+T2C78 041:526.681 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 041:526.718 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 041:527.091 Data: EF 00 00 00
+T2C78 041:527.122 - 0.450ms returns 4 (0x4)
+T2C78 041:527.939 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 041:527.969 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 041:528.341 Data: 3F 01 00 00
+T2C78 041:528.401 - 0.469ms returns 4 (0x4)
+T2C78 041:530.007 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 041:530.055 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 041:530.440 Data: 42 08 00 00
+T2C78 041:530.461 - 0.461ms returns 4 (0x4)
+T2C78 041:531.297 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 041:531.335 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 041:531.656 Data: 00 00 00 00
+T2C78 041:531.680 - 0.389ms returns 4 (0x4)
+T2C78 041:531.735 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 041:531.756 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 041:532.068 Data: 00
+T2C78 041:532.091 - 0.363ms returns 1 (0x1)
+T2C78 041:532.115 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 041:532.134 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 041:532.445 Data: 01
+T2C78 041:532.469 - 0.361ms returns 1 (0x1)
+T2C78 041:532.491 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 041:532.510 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 041:532.844 Data: 02
+T2C78 041:532.868 - 0.384ms returns 1 (0x1)
+T2C78 041:533.334 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 041:533.364 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 041:533.678 Data: 01
+T2C78 041:533.703 - 0.376ms returns 1 (0x1)
+T19A8 041:534.117 JLINK_IsHalted()
+T19A8 041:534.441 - 0.333ms returns FALSE
+T19A8 041:634.538 JLINK_HasError()
+T19A8 041:634.610 JLINK_IsHalted()
+T19A8 041:635.015 - 0.421ms returns FALSE
+T19A8 041:735.196 JLINK_HasError()
+T19A8 041:735.261 JLINK_IsHalted()
+T19A8 041:735.719 - 0.470ms returns FALSE
+T19A8 041:837.163 JLINK_HasError()
+T19A8 041:837.249 JLINK_IsHalted()
+T19A8 041:837.737 - 0.532ms returns FALSE
+T19A8 041:938.482 JLINK_HasError()
+T19A8 041:938.587 JLINK_IsHalted()
+T19A8 041:939.339 - 0.815ms returns FALSE
+T19A8 042:040.547 JLINK_HasError()
+T19A8 042:040.635 JLINK_HasError()
+T19A8 042:040.661 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 042:040.714 Data: B2 47 02 03
+T19A8 042:040.750 Debug reg: DWT_CYCCNT
+T19A8 042:040.782 - 0.131ms returns 1 (0x1)
+T2C78 042:041.171 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 042:041.263 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 042:041.822 Data: 00
+T2C78 042:041.907 - 0.749ms returns 1 (0x1)
+T2C78 042:042.008 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 042:042.060 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 042:042.450 Data: 32
+T2C78 042:042.487 - 0.490ms returns 1 (0x1)
+T2C78 042:042.654 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 042:042.686 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 042:043.019 Data: C1 00 00 00
+T2C78 042:043.055 - 0.411ms returns 4 (0x4)
+T2C78 042:044.579 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 042:044.638 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 042:044.992 Data: A9 00 00 00
+T2C78 042:045.031 - 0.463ms returns 4 (0x4)
+T2C78 042:045.679 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 042:045.723 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 042:046.085 Data: E1 00 00 00
+T2C78 042:046.122 - 0.453ms returns 4 (0x4)
+T2C78 042:047.344 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 042:047.393 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 042:047.795 Data: 3F 01 00 00
+T2C78 042:047.836 - 0.502ms returns 4 (0x4)
+T2C78 042:048.481 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 042:048.519 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 042:048.899 Data: 77 13 00 00
+T2C78 042:048.930 - 0.458ms returns 4 (0x4)
+T2C78 042:049.836 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 042:049.874 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 042:050.205 Data: 00 00 00 00
+T2C78 042:050.229 - 0.399ms returns 4 (0x4)
+T2C78 042:050.283 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 042:050.303 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 042:050.635 Data: 00
+T2C78 042:050.658 - 0.381ms returns 1 (0x1)
+T2C78 042:050.679 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 042:050.697 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 042:051.042 Data: 01
+T2C78 042:051.070 - 0.398ms returns 1 (0x1)
+T2C78 042:051.098 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 042:051.118 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 042:051.435 Data: 02
+T2C78 042:051.461 - 0.370ms returns 1 (0x1)
+T2C78 042:051.910 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 042:051.936 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 042:052.312 Data: 01
+T2C78 042:052.334 - 0.430ms returns 1 (0x1)
+T19A8 042:052.709 JLINK_IsHalted()
+T19A8 042:053.051 - 0.360ms returns FALSE
+T19A8 042:153.930 JLINK_HasError()
+T19A8 042:154.000 JLINK_IsHalted()
+T19A8 042:154.566 - 0.615ms returns FALSE
+T19A8 042:255.584 JLINK_HasError()
+T19A8 042:255.641 JLINK_IsHalted()
+T19A8 042:256.030 - 0.430ms returns FALSE
+T19A8 042:357.066 JLINK_HasError()
+T19A8 042:357.133 JLINK_IsHalted()
+T19A8 042:357.599 - 0.481ms returns FALSE
+T19A8 042:458.295 JLINK_HasError()
+T19A8 042:458.360 JLINK_IsHalted()
+T19A8 042:458.767 - 0.422ms returns FALSE
+T19A8 042:559.924 JLINK_HasError()
+T19A8 042:559.987 JLINK_HasError()
+T19A8 042:560.011 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 042:560.057 Data: B2 47 02 03
+T19A8 042:560.089 Debug reg: DWT_CYCCNT
+T19A8 042:560.117 - 0.116ms returns 1 (0x1)
+T2C78 042:560.458 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 042:560.494 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 042:561.067 Data: 4D
+T2C78 042:561.101 - 0.652ms returns 1 (0x1)
+T2C78 042:562.070 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 042:562.125 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 042:562.591 Data: 32
+T2C78 042:562.626 - 0.565ms returns 1 (0x1)
+T2C78 042:562.771 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 042:562.802 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 042:563.334 Data: E2 00 00 00
+T2C78 042:563.366 - 0.605ms returns 4 (0x4)
+T2C78 042:564.510 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 042:564.555 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 042:565.052 Data: A9 00 00 00
+T2C78 042:565.086 - 0.586ms returns 4 (0x4)
+T2C78 042:565.140 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 042:565.168 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 042:565.563 Data: EF 00 00 00
+T2C78 042:565.595 - 0.464ms returns 4 (0x4)
+T2C78 042:567.784 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 042:567.860 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 042:568.256 Data: 3F 01 00 00
+T2C78 042:568.307 - 0.532ms returns 4 (0x4)
+T2C78 042:568.366 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 042:568.399 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 042:568.784 Data: 42 08 00 00
+T2C78 042:568.811 - 0.452ms returns 4 (0x4)
+T2C78 042:569.800 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 042:569.838 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 042:570.577 Data: 00 00 00 00
+T2C78 042:570.620 - 0.826ms returns 4 (0x4)
+T2C78 042:570.717 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 042:570.745 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 042:571.062 Data: 00
+T2C78 042:571.089 - 0.378ms returns 1 (0x1)
+T2C78 042:571.116 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 042:571.137 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 042:571.501 Data: 01
+T2C78 042:571.520 - 0.410ms returns 1 (0x1)
+T2C78 042:571.539 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 042:571.554 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 042:571.849 Data: 01
+T2C78 042:571.867 - 0.333ms returns 1 (0x1)
+T2C78 042:572.277 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 042:572.300 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 042:572.976 Data: 02
+T2C78 042:573.015 - 0.743ms returns 1 (0x1)
+T19A8 042:573.499 JLINK_IsHalted()
+T19A8 042:574.053 - 0.559ms returns FALSE
+T19A8 042:675.158 JLINK_HasError()
+T19A8 042:675.217 JLINK_IsHalted()
+T19A8 042:675.595 - 0.388ms returns FALSE
+T19A8 042:775.676 JLINK_HasError()
+T19A8 042:775.743 JLINK_IsHalted()
+T19A8 042:776.157 - 0.428ms returns FALSE
+T19A8 042:876.377 JLINK_HasError()
+T19A8 042:876.451 JLINK_IsHalted()
+T19A8 042:877.000 - 0.596ms returns FALSE
+T19A8 042:978.103 JLINK_HasError()
+T19A8 042:978.205 JLINK_IsHalted()
+T19A8 042:978.910 - 0.760ms returns FALSE
+T19A8 043:079.359 JLINK_HasError()
+T19A8 043:079.428 JLINK_HasError()
+T19A8 043:079.453 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 043:079.501 Data: B2 47 02 03
+T19A8 043:079.533 Debug reg: DWT_CYCCNT
+T19A8 043:079.681 - 0.238ms returns 1 (0x1)
+T2C78 043:080.030 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 043:080.129 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 043:080.585 Data: 00
+T2C78 043:080.624 - 0.604ms returns 1 (0x1)
+T2C78 043:082.083 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 043:082.144 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 043:082.662 Data: 32
+T2C78 043:082.697 - 0.624ms returns 1 (0x1)
+T2C78 043:082.859 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 043:082.890 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 043:083.224 Data: E2 00 00 00
+T2C78 043:083.256 - 0.406ms returns 4 (0x4)
+T2C78 043:083.900 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 043:083.942 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 043:084.455 Data: A9 00 00 00
+T2C78 043:084.501 - 0.611ms returns 4 (0x4)
+T2C78 043:084.563 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 043:084.600 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 043:084.970 Data: EF 00 00 00
+T2C78 043:085.002 - 0.448ms returns 4 (0x4)
+T2C78 043:085.857 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 043:085.905 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 043:086.334 Data: 3F 01 00 00
+T2C78 043:086.368 - 0.521ms returns 4 (0x4)
+T2C78 043:086.411 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 043:086.438 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 043:087.165 Data: 42 08 00 00
+T2C78 043:087.236 - 0.835ms returns 4 (0x4)
+T2C78 043:088.117 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 043:088.170 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 043:088.547 Data: 00 00 00 00
+T2C78 043:088.581 - 0.472ms returns 4 (0x4)
+T2C78 043:088.667 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 043:088.694 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 043:089.195 Data: 00
+T2C78 043:089.224 - 0.566ms returns 1 (0x1)
+T2C78 043:089.253 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 043:089.278 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 043:089.597 Data: 01
+T2C78 043:089.626 - 0.381ms returns 1 (0x1)
+T2C78 043:089.651 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 043:089.674 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 043:089.993 Data: 00
+T2C78 043:090.022 - 0.380ms returns 1 (0x1)
+T2C78 043:090.672 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 043:090.708 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 043:091.032 Data: 01
+T2C78 043:091.062 - 0.398ms returns 1 (0x1)
+T19A8 043:091.609 JLINK_IsHalted()
+T19A8 043:091.986 - 0.400ms returns FALSE
+T19A8 043:193.047 JLINK_HasError()
+T19A8 043:193.115 JLINK_IsHalted()
+T19A8 043:193.598 - 0.499ms returns FALSE
+T19A8 043:293.717 JLINK_HasError()
+T19A8 043:293.787 JLINK_IsHalted()
+T19A8 043:294.247 - 0.474ms returns FALSE
+T19A8 043:394.416 JLINK_HasError()
+T19A8 043:394.492 JLINK_IsHalted()
+T19A8 043:394.955 - 0.512ms returns FALSE
+T19A8 043:495.242 JLINK_HasError()
+T19A8 043:495.347 JLINK_IsHalted()
+T19A8 043:496.026 - 0.731ms returns FALSE
+T19A8 043:596.163 JLINK_HasError()
+T19A8 043:596.245 JLINK_HasError()
+T19A8 043:596.268 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 043:596.316 Data: B2 47 02 03
+T19A8 043:596.347 Debug reg: DWT_CYCCNT
+T19A8 043:596.375 - 0.116ms returns 1 (0x1)
+T2C78 043:596.811 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 043:596.923 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 043:597.427 Data: 00
+T2C78 043:597.461 - 0.660ms returns 1 (0x1)
+T2C78 043:598.358 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 043:598.409 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 043:598.888 Data: 32
+T2C78 043:598.954 - 0.606ms returns 1 (0x1)
+T2C78 043:599.118 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 043:599.162 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 043:599.539 Data: C1 00 00 00
+T2C78 043:599.572 - 0.464ms returns 4 (0x4)
+T2C78 043:600.443 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 043:600.497 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 043:600.896 Data: 00 00 00 00
+T2C78 043:600.931 - 0.498ms returns 4 (0x4)
+T2C78 043:601.548 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 043:601.587 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 043:601.958 Data: EF 00 00 00
+T2C78 043:601.991 - 0.454ms returns 4 (0x4)
+T2C78 043:602.038 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 043:602.066 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 043:602.410 Data: 4D 00 00 00
+T2C78 043:602.441 - 0.413ms returns 4 (0x4)
+T2C78 043:603.068 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 043:603.105 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 043:603.831 Data: 52 0E 00 00
+T2C78 043:603.891 - 0.832ms returns 4 (0x4)
+T2C78 043:604.642 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 043:604.684 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 043:605.067 Data: 00 00 00 00
+T2C78 043:605.099 - 0.464ms returns 4 (0x4)
+T2C78 043:605.188 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 043:605.212 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 043:605.624 Data: 00
+T2C78 043:605.675 - 0.494ms returns 1 (0x1)
+T2C78 043:605.711 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 043:605.742 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 043:606.068 Data: 01
+T2C78 043:606.093 - 0.389ms returns 1 (0x1)
+T2C78 043:606.117 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 043:606.138 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 043:606.451 Data: 00
+T2C78 043:606.474 - 0.363ms returns 1 (0x1)
+T2C78 043:609.244 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 043:609.278 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 043:609.575 Data: 01
+T2C78 043:609.597 - 0.357ms returns 1 (0x1)
+T19A8 043:609.942 JLINK_IsHalted()
+T19A8 043:610.306 - 0.376ms returns FALSE
+T19A8 043:711.311 JLINK_HasError()
+T19A8 043:711.358 JLINK_IsHalted()
+T19A8 043:711.758 - 0.433ms returns FALSE
+T19A8 043:813.248 JLINK_HasError()
+T19A8 043:813.319 JLINK_IsHalted()
+T19A8 043:813.879 - 0.614ms returns FALSE
+T19A8 043:914.167 JLINK_HasError()
+T19A8 043:914.272 JLINK_IsHalted()
+T19A8 043:914.906 - 0.685ms returns FALSE
+T19A8 044:015.624 JLINK_HasError()
+T19A8 044:015.877 JLINK_IsHalted()
+T19A8 044:016.504 - 0.728ms returns FALSE
+T19A8 044:116.947 JLINK_HasError()
+T19A8 044:117.050 JLINK_HasError()
+T19A8 044:117.077 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 044:117.131 Data: B2 47 02 03
+T19A8 044:117.167 Debug reg: DWT_CYCCNT
+T19A8 044:117.200 - 0.134ms returns 1 (0x1)
+T2C78 044:117.722 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 044:117.832 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 044:118.572 Data: 00
+T2C78 044:118.650 - 0.940ms returns 1 (0x1)
+T2C78 044:118.744 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 044:118.793 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 044:119.431 Data: 32
+T2C78 044:119.507 - 0.775ms returns 1 (0x1)
+T2C78 044:119.690 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 044:119.738 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 044:120.158 Data: E2 00 00 00
+T2C78 044:120.196 - 0.517ms returns 4 (0x4)
+T2C78 044:121.770 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 044:121.830 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 044:122.205 Data: A9 00 00 00
+T2C78 044:122.244 - 0.485ms returns 4 (0x4)
+T2C78 044:123.233 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 044:123.270 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 044:124.193 Data: EF 00 00 00
+T2C78 044:124.234 - 1.010ms returns 4 (0x4)
+T2C78 044:124.289 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 044:124.319 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 044:124.769 Data: 4D 00 00 00
+T2C78 044:124.831 - 0.552ms returns 4 (0x4)
+T2C78 044:125.438 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 044:125.481 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 044:125.854 Data: 52 0E 00 00
+T2C78 044:125.880 - 0.449ms returns 4 (0x4)
+T2C78 044:126.463 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 044:126.499 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 044:126.845 Data: 00 00 00 00
+T2C78 044:126.878 - 0.423ms returns 4 (0x4)
+T2C78 044:126.986 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 044:127.012 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 044:127.344 Data: 00
+T2C78 044:127.372 - 0.394ms returns 1 (0x1)
+T2C78 044:127.397 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 044:127.418 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 044:127.734 Data: 01
+T2C78 044:127.761 - 0.370ms returns 1 (0x1)
+T2C78 044:127.782 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 044:127.801 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 044:128.107 Data: 63
+T2C78 044:128.130 - 0.355ms returns 1 (0x1)
+T2C78 044:128.709 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 044:128.737 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 044:129.067 Data: 63
+T2C78 044:129.094 - 0.391ms returns 1 (0x1)
+T19A8 044:129.533 JLINK_IsHalted()
+T19A8 044:129.823 - 0.298ms returns FALSE
+T19A8 044:230.205 JLINK_HasError()
+T19A8 044:230.269 JLINK_IsHalted()
+T19A8 044:230.681 - 0.427ms returns FALSE
+T19A8 044:331.546 JLINK_HasError()
+T19A8 044:331.613 JLINK_IsHalted()
+T19A8 044:332.160 - 0.561ms returns FALSE
+T19A8 044:432.529 JLINK_HasError()
+T19A8 044:432.710 JLINK_IsHalted()
+T19A8 044:433.107 - 0.412ms returns FALSE
+T19A8 044:534.039 JLINK_HasError()
+T19A8 044:534.104 JLINK_IsHalted()
+T19A8 044:534.595 - 0.504ms returns FALSE
+T19A8 044:634.857 JLINK_HasError()
+T19A8 044:634.890 JLINK_HasError()
+T19A8 044:634.902 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 044:634.924 Data: B2 47 02 03
+T19A8 044:634.937 Debug reg: DWT_CYCCNT
+T19A8 044:634.948 - 0.049ms returns 1 (0x1)
+T2C78 044:635.110 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 044:635.136 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 044:635.541 Data: 00
+T2C78 044:635.590 - 0.487ms returns 1 (0x1)
+T2C78 044:635.653 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 044:635.661 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 044:635.990 Data: 32
+T2C78 044:635.997 - 0.345ms returns 1 (0x1)
+T2C78 044:636.021 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 044:636.027 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 044:636.314 Data: E2 00 00 00
+T2C78 044:636.321 - 0.301ms returns 4 (0x4)
+T2C78 044:636.541 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 044:636.551 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 044:636.797 Data: A9 00 00 00
+T2C78 044:636.804 - 0.264ms returns 4 (0x4)
+T2C78 044:636.933 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 044:636.940 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 044:637.195 Data: EF 00 00 00
+T2C78 044:637.202 - 0.271ms returns 4 (0x4)
+T2C78 044:637.210 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 044:637.216 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 044:637.505 Data: 3F 01 00 00
+T2C78 044:637.511 - 0.302ms returns 4 (0x4)
+T2C78 044:637.628 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 044:637.635 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 044:637.934 Data: 42 08 00 00
+T2C78 044:637.941 - 0.314ms returns 4 (0x4)
+T2C78 044:638.073 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 044:638.081 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 044:638.374 Data: 00 00 00 00
+T2C78 044:638.381 - 0.309ms returns 4 (0x4)
+T2C78 044:638.395 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 044:638.400 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 044:638.647 Data: 00
+T2C78 044:638.653 - 0.260ms returns 1 (0x1)
+T2C78 044:638.659 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 044:638.663 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 044:638.918 Data: 01
+T2C78 044:638.926 - 0.268ms returns 1 (0x1)
+T2C78 044:638.932 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 044:638.939 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 044:639.187 Data: 63
+T2C78 044:639.193 - 0.263ms returns 1 (0x1)
+T2C78 044:639.332 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 044:639.339 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 044:639.612 Data: 63
+T2C78 044:639.619 - 0.289ms returns 1 (0x1)
+T19A8 044:639.787 JLINK_IsHalted()
+T19A8 044:640.065 - 0.283ms returns FALSE
+T19A8 044:740.943 JLINK_HasError()
+T19A8 044:740.972 JLINK_IsHalted()
+T19A8 044:741.304 - 0.351ms returns FALSE
+T19A8 044:841.399 JLINK_HasError()
+T19A8 044:841.468 JLINK_IsHalted()
+T19A8 044:841.886 - 0.432ms returns FALSE
+T19A8 044:942.091 JLINK_HasError()
+T19A8 044:942.157 JLINK_IsHalted()
+T19A8 044:942.568 - 0.457ms returns FALSE
+T19A8 045:043.108 JLINK_HasError()
+T19A8 045:043.164 JLINK_IsHalted()
+T19A8 045:043.682 - 0.557ms returns FALSE
+T19A8 045:143.790 JLINK_HasError()
+T19A8 045:143.863 JLINK_IsHalted()
+T19A8 045:144.331 - 0.485ms returns FALSE
+T19A8 045:245.328 JLINK_HasError()
+T19A8 045:245.379 JLINK_HasError()
+T19A8 045:245.392 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 045:245.421 Data: B2 47 02 03
+T19A8 045:245.438 Debug reg: DWT_CYCCNT
+T19A8 045:245.453 - 0.066ms returns 1 (0x1)
+T2C78 045:245.695 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 045:245.744 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 045:246.205 Data: 00
+T2C78 045:246.256 - 0.568ms returns 1 (0x1)
+T2C78 045:246.310 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 045:246.338 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 045:246.688 Data: 32
+T2C78 045:246.728 - 0.424ms returns 1 (0x1)
+T2C78 045:246.859 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 045:246.885 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 045:247.303 Data: E2 00 00 00
+T2C78 045:247.321 - 0.468ms returns 4 (0x4)
+T2C78 045:247.345 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 045:247.361 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 045:247.748 Data: A9 00 00 00
+T2C78 045:247.766 - 0.427ms returns 4 (0x4)
+T2C78 045:247.786 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 045:247.800 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 045:248.195 Data: EF 00 00 00
+T2C78 045:248.213 - 0.432ms returns 4 (0x4)
+T2C78 045:248.234 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 045:248.248 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 045:248.656 Data: 3F 01 00 00
+T2C78 045:248.673 - 0.445ms returns 4 (0x4)
+T2C78 045:249.232 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 045:249.262 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 045:249.590 Data: 42 08 00 00
+T2C78 045:249.609 - 0.381ms returns 4 (0x4)
+T2C78 045:250.014 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 045:250.037 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 045:250.326 Data: 00 00 00 00
+T2C78 045:250.343 - 0.334ms returns 4 (0x4)
+T2C78 045:250.377 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 045:250.390 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 045:250.703 Data: 00
+T2C78 045:250.717 - 0.344ms returns 1 (0x1)
+T2C78 045:250.731 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 045:250.743 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 045:251.055 Data: 01
+T2C78 045:251.070 - 0.343ms returns 1 (0x1)
+T2C78 045:251.083 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 045:251.094 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 045:251.389 Data: 63
+T2C78 045:251.403 - 0.324ms returns 1 (0x1)
+T2C78 045:251.417 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 045:251.427 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 045:251.702 Data: 63
+T2C78 045:251.716 - 0.303ms returns 1 (0x1)
+T19A8 045:251.775 JLINK_IsHalted()
+T19A8 045:252.111 - 0.345ms returns FALSE
+T19A8 045:352.421 JLINK_HasError()
+T19A8 045:352.500 JLINK_IsHalted()
+T19A8 045:352.952 - 0.496ms returns FALSE
+T19A8 045:453.181 JLINK_HasError()
+T19A8 045:453.245 JLINK_IsHalted()
+T19A8 045:454.404 - 1.199ms returns FALSE
+T19A8 045:555.340 JLINK_HasError()
+T19A8 045:555.417 JLINK_IsHalted()
+T19A8 045:555.921 - 0.551ms returns FALSE
+T19A8 045:656.073 JLINK_HasError()
+T19A8 045:656.156 JLINK_IsHalted()
+T19A8 045:656.718 - 0.614ms returns FALSE
+T19A8 045:756.986 JLINK_HasError()
+T19A8 045:757.052 JLINK_HasError()
+T19A8 045:757.070 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 045:757.110 Data: B2 47 02 03
+T19A8 045:757.135 Debug reg: DWT_CYCCNT
+T19A8 045:757.156 - 0.093ms returns 1 (0x1)
+T2C78 045:758.316 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 045:758.401 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 045:758.800 Data: 56
+T2C78 045:758.830 - 0.522ms returns 1 (0x1)
+T2C78 045:759.712 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 045:759.759 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 045:760.144 Data: 32
+T2C78 045:760.171 - 0.466ms returns 1 (0x1)
+T2C78 045:760.313 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 045:760.336 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 045:760.653 Data: C1 00 00 00
+T2C78 045:760.678 - 0.372ms returns 4 (0x4)
+T2C78 045:761.221 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 045:761.255 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 045:761.596 Data: 00 00 00 00
+T2C78 045:761.624 - 0.410ms returns 4 (0x4)
+T2C78 045:762.099 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 045:762.130 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 045:762.531 Data: EF 00 00 00
+T2C78 045:762.558 - 0.467ms returns 4 (0x4)
+T2C78 045:762.592 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 045:762.612 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 045:762.925 Data: 4D 00 00 00
+T2C78 045:762.949 - 0.364ms returns 4 (0x4)
+T2C78 045:763.380 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 045:763.407 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 045:763.720 Data: 52 0E 00 00
+T2C78 045:763.745 - 0.372ms returns 4 (0x4)
+T2C78 045:764.207 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 045:764.233 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 045:764.542 Data: 00 00 00 00
+T2C78 045:764.564 - 0.363ms returns 4 (0x4)
+T2C78 045:764.611 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 045:764.628 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 045:764.931 Data: 00
+T2C78 045:764.952 - 0.347ms returns 1 (0x1)
+T2C78 045:764.971 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 045:764.986 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 045:765.302 Data: 01
+T2C78 045:765.321 - 0.356ms returns 1 (0x1)
+T2C78 045:765.339 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 045:765.353 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 045:765.638 Data: 63
+T2C78 045:765.657 - 0.323ms returns 1 (0x1)
+T2C78 045:765.675 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 045:765.689 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 045:765.996 Data: 63
+T2C78 045:766.018 - 0.349ms returns 1 (0x1)
+T19A8 045:766.096 JLINK_IsHalted()
+T19A8 045:766.431 - 0.346ms returns FALSE
+T19A8 045:866.716 JLINK_HasError()
+T19A8 045:866.787 JLINK_IsHalted()
+T19A8 045:867.201 - 0.428ms returns FALSE
+T19A8 045:967.390 JLINK_HasError()
+T19A8 045:967.420 JLINK_IsHalted()
+T19A8 045:967.881 - 0.474ms returns FALSE
+T19A8 046:068.104 JLINK_HasError()
+T19A8 046:068.182 JLINK_IsHalted()
+T19A8 046:068.690 - 0.555ms returns FALSE
+T19A8 046:168.831 JLINK_HasError()
+T19A8 046:168.911 JLINK_IsHalted()
+T19A8 046:169.457 - 0.562ms returns FALSE
+T19A8 046:269.556 JLINK_HasError()
+T19A8 046:269.627 JLINK_HasError()
+T19A8 046:269.651 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 046:269.699 Data: B2 47 02 03
+T19A8 046:269.730 Debug reg: DWT_CYCCNT
+T19A8 046:269.758 - 0.117ms returns 1 (0x1)
+T2C78 046:270.761 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 046:270.864 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 046:271.333 Data: 56
+T2C78 046:271.387 - 0.637ms returns 1 (0x1)
+T2C78 046:272.352 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 046:272.408 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 046:272.816 Data: 32
+T2C78 046:272.853 - 0.510ms returns 1 (0x1)
+T2C78 046:273.025 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 046:273.054 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 046:273.409 Data: E2 00 00 00
+T2C78 046:273.445 - 0.429ms returns 4 (0x4)
+T2C78 046:274.563 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 046:274.609 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 046:275.001 Data: A9 00 00 00
+T2C78 046:275.037 - 0.483ms returns 4 (0x4)
+T2C78 046:276.002 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 046:276.042 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 046:276.409 Data: EF 00 00 00
+T2C78 046:276.448 - 0.455ms returns 4 (0x4)
+T2C78 046:276.493 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 046:276.520 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 046:276.847 Data: 3F 01 00 00
+T2C78 046:276.879 - 0.396ms returns 4 (0x4)
+T2C78 046:277.838 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 046:277.877 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 046:278.223 Data: 42 08 00 00
+T2C78 046:278.257 - 0.428ms returns 4 (0x4)
+T2C78 046:279.188 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 046:279.223 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 046:279.558 Data: 00 00 00 00
+T2C78 046:279.586 - 0.406ms returns 4 (0x4)
+T2C78 046:279.642 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 046:279.663 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 046:279.984 Data: 01
+T2C78 046:280.009 - 0.373ms returns 1 (0x1)
+T2C78 046:280.434 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 046:280.460 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 046:280.810 Data: 00
+T2C78 046:280.843 - 0.415ms returns 1 (0x1)
+T2C78 046:281.438 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 046:281.476 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 046:281.843 Data: 63
+T2C78 046:281.872 - 0.441ms returns 1 (0x1)
+T2C78 046:281.898 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 046:281.918 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 046:282.317 Data: 63
+T2C78 046:282.343 - 0.452ms returns 1 (0x1)
+T19A8 046:282.432 JLINK_IsHalted()
+T19A8 046:282.896 - 0.474ms returns FALSE
+T19A8 046:383.864 JLINK_HasError()
+T19A8 046:383.932 JLINK_IsHalted()
+T19A8 046:384.388 - 0.500ms returns FALSE
+T19A8 046:484.633 JLINK_HasError()
+T19A8 046:484.699 JLINK_IsHalted()
+T19A8 046:485.140 - 0.455ms returns FALSE
+T19A8 046:585.301 JLINK_HasError()
+T19A8 046:585.373 JLINK_IsHalted()
+T19A8 046:585.918 - 0.593ms returns FALSE
+T19A8 046:686.036 JLINK_HasError()
+T19A8 046:686.106 JLINK_IsHalted()
+T19A8 046:686.546 - 0.456ms returns FALSE
+T19A8 046:787.615 JLINK_HasError()
+T19A8 046:787.687 JLINK_HasError()
+T19A8 046:787.712 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 046:787.758 Data: B2 47 02 03
+T19A8 046:787.791 Debug reg: DWT_CYCCNT
+T19A8 046:787.819 - 0.117ms returns 1 (0x1)
+T2C78 046:788.167 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 046:788.267 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 046:788.672 Data: 00
+T2C78 046:788.712 - 0.555ms returns 1 (0x1)
+T2C78 046:789.618 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 046:789.684 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 046:790.075 Data: 32
+T2C78 046:790.109 - 0.500ms returns 1 (0x1)
+T2C78 046:790.276 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 046:790.307 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 046:790.685 Data: C1 00 00 00
+T2C78 046:790.722 - 0.456ms returns 4 (0x4)
+T2C78 046:792.067 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 046:792.125 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 046:792.512 Data: A9 00 00 00
+T2C78 046:792.554 - 0.497ms returns 4 (0x4)
+T2C78 046:793.348 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 046:793.400 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 046:793.802 Data: E1 00 00 00
+T2C78 046:793.842 - 0.503ms returns 4 (0x4)
+T2C78 046:794.503 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 046:794.544 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 046:794.930 Data: 3F 01 00 00
+T2C78 046:794.961 - 0.466ms returns 4 (0x4)
+T2C78 046:795.510 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 046:795.551 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 046:795.945 Data: 77 13 00 00
+T2C78 046:795.978 - 0.478ms returns 4 (0x4)
+T2C78 046:797.092 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 046:797.142 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 046:797.528 Data: 00 00 00 00
+T2C78 046:797.560 - 0.476ms returns 4 (0x4)
+T2C78 046:797.626 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 046:797.651 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 046:797.988 Data: 02
+T2C78 046:798.016 - 0.399ms returns 1 (0x1)
+T2C78 046:798.495 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 046:798.527 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 046:798.847 Data: 01
+T2C78 046:798.872 - 0.385ms returns 1 (0x1)
+T2C78 046:799.268 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 046:799.294 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 046:799.608 Data: 63
+T2C78 046:799.633 - 0.371ms returns 1 (0x1)
+T2C78 046:799.656 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 046:799.675 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 046:800.047 Data: 63
+T2C78 046:800.123 - 0.478ms returns 1 (0x1)
+T19A8 046:800.282 JLINK_IsHalted()
+T19A8 046:800.585 - 0.313ms returns FALSE
+T19A8 046:900.677 JLINK_HasError()
+T19A8 046:900.743 JLINK_IsHalted()
+T19A8 046:901.152 - 0.423ms returns FALSE
+T19A8 047:001.245 JLINK_HasError()
+T19A8 047:001.308 JLINK_IsHalted()
+T19A8 047:001.719 - 0.425ms returns FALSE
+T19A8 047:101.814 JLINK_HasError()
+T19A8 047:102.055 JLINK_IsHalted()
+T19A8 047:102.440 - 0.400ms returns FALSE
+T19A8 047:202.727 JLINK_HasError()
+T19A8 047:202.820 JLINK_IsHalted()
+T19A8 047:203.415 - 0.646ms returns FALSE
+T19A8 047:303.742 JLINK_HasError()
+T19A8 047:303.809 JLINK_HasError()
+T19A8 047:303.833 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 047:303.881 Data: B2 47 02 03
+T19A8 047:303.913 Debug reg: DWT_CYCCNT
+T19A8 047:303.941 - 0.118ms returns 1 (0x1)
+T2C78 047:304.254 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 047:304.354 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 047:304.773 Data: 00
+T2C78 047:304.806 - 0.562ms returns 1 (0x1)
+T2C78 047:305.681 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 047:305.734 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 047:306.083 Data: 32
+T2C78 047:306.117 - 0.446ms returns 1 (0x1)
+T2C78 047:306.257 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 047:306.288 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 047:306.637 Data: C1 00 00 00
+T2C78 047:306.669 - 0.421ms returns 4 (0x4)
+T2C78 047:307.324 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 047:307.365 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 047:307.743 Data: 00 00 00 00
+T2C78 047:307.777 - 0.463ms returns 4 (0x4)
+T2C78 047:308.351 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 047:308.389 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 047:308.774 Data: EF 00 00 00
+T2C78 047:308.807 - 0.465ms returns 4 (0x4)
+T2C78 047:309.781 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 047:309.820 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 047:310.154 Data: 4F 00 00 00
+T2C78 047:310.185 - 0.412ms returns 4 (0x4)
+T2C78 047:310.672 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 047:310.702 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 047:311.028 Data: B0 0E 00 00
+T2C78 047:311.056 - 0.391ms returns 4 (0x4)
+T2C78 047:311.840 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 047:311.873 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 047:312.195 Data: 00 00 00 00
+T2C78 047:312.217 - 0.383ms returns 4 (0x4)
+T2C78 047:312.264 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 047:312.282 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 047:312.633 Data: 01
+T2C78 047:312.654 - 0.395ms returns 1 (0x1)
+T2C78 047:313.001 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 047:313.023 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 047:313.331 Data: 02
+T2C78 047:313.352 - 0.356ms returns 1 (0x1)
+T2C78 047:313.661 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 047:313.680 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 047:314.032 Data: 63
+T2C78 047:314.058 - 0.402ms returns 1 (0x1)
+T2C78 047:314.085 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 047:314.105 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 047:314.420 Data: 63
+T2C78 047:314.438 - 0.358ms returns 1 (0x1)
+T19A8 047:314.512 JLINK_IsHalted()
+T19A8 047:314.821 - 0.319ms returns FALSE
+T19A8 047:415.515 JLINK_HasError()
+T19A8 047:415.577 JLINK_IsHalted()
+T19A8 047:416.233 - 0.668ms returns FALSE
+T19A8 047:517.222 JLINK_HasError()
+T19A8 047:517.293 JLINK_IsHalted()
+T19A8 047:517.705 - 0.426ms returns FALSE
+T19A8 047:617.898 JLINK_HasError()
+T19A8 047:617.934 JLINK_IsHalted()
+T19A8 047:618.342 - 0.424ms returns FALSE
+T19A8 047:719.651 JLINK_HasError()
+T19A8 047:719.717 JLINK_IsHalted()
+T19A8 047:720.988 - 1.299ms returns FALSE
+T19A8 047:821.274 JLINK_HasError()
+T19A8 047:821.341 JLINK_HasError()
+T19A8 047:821.365 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 047:821.411 Data: B2 47 02 03
+T19A8 047:821.443 Debug reg: DWT_CYCCNT
+T19A8 047:821.471 - 0.116ms returns 1 (0x1)
+T2C78 047:821.819 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 047:821.910 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 047:822.332 Data: 00
+T2C78 047:822.369 - 0.559ms returns 1 (0x1)
+T2C78 047:822.415 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 047:822.443 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 047:822.838 Data: 32
+T2C78 047:822.901 - 0.496ms returns 1 (0x1)
+T2C78 047:823.105 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 047:823.149 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 047:823.535 Data: E2 00 00 00
+T2C78 047:823.568 - 0.473ms returns 4 (0x4)
+T2C78 047:824.492 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 047:824.544 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 047:825.127 Data: A9 00 00 00
+T2C78 047:825.202 - 0.721ms returns 4 (0x4)
+T2C78 047:826.886 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 047:826.955 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 047:827.350 Data: EF 00 00 00
+T2C78 047:827.400 - 0.524ms returns 4 (0x4)
+T2C78 047:828.230 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 047:828.282 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 047:828.633 Data: 3F 01 00 00
+T2C78 047:828.667 - 0.447ms returns 4 (0x4)
+T2C78 047:829.778 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 047:829.826 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 047:830.176 Data: 42 08 00 00
+T2C78 047:830.207 - 0.436ms returns 4 (0x4)
+T2C78 047:831.159 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 047:831.199 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 047:831.526 Data: 00 00 00 00
+T2C78 047:831.554 - 0.402ms returns 4 (0x4)
+T2C78 047:831.613 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 047:831.634 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 047:831.961 Data: 00
+T2C78 047:831.983 - 0.376ms returns 1 (0x1)
+T2C78 047:832.393 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 047:832.420 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 047:832.726 Data: 01
+T2C78 047:832.750 - 0.363ms returns 1 (0x1)
+T2C78 047:833.104 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 047:833.125 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 047:833.435 Data: 63
+T2C78 047:833.461 - 0.363ms returns 1 (0x1)
+T2C78 047:833.489 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 047:833.516 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 047:833.828 Data: 63
+T2C78 047:833.846 - 0.362ms returns 1 (0x1)
+T19A8 047:833.919 JLINK_IsHalted()
+T19A8 047:834.311 - 0.414ms returns FALSE
+T19A8 047:935.357 JLINK_HasError()
+T19A8 047:935.415 JLINK_IsHalted()
+T19A8 047:935.911 - 0.510ms returns FALSE
+T19A8 048:036.312 JLINK_HasError()
+T19A8 048:036.379 JLINK_IsHalted()
+T19A8 048:037.574 - 1.209ms returns FALSE
+T19A8 048:137.667 JLINK_HasError()
+T19A8 048:137.733 JLINK_IsHalted()
+T19A8 048:138.153 - 0.435ms returns FALSE
+T19A8 048:239.075 JLINK_HasError()
+T19A8 048:239.103 JLINK_IsHalted()
+T19A8 048:239.433 - 0.337ms returns FALSE
+T19A8 048:340.379 JLINK_HasError()
+T19A8 048:340.442 JLINK_HasError()
+T19A8 048:340.466 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 048:340.512 Data: B2 47 02 03
+T19A8 048:340.544 Debug reg: DWT_CYCCNT
+T19A8 048:340.572 - 0.116ms returns 1 (0x1)
+T2C78 048:340.902 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 048:340.940 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 048:341.410 Data: 00
+T2C78 048:341.444 - 0.552ms returns 1 (0x1)
+T2C78 048:341.490 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 048:341.519 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 048:341.889 Data: 32
+T2C78 048:341.921 - 0.441ms returns 1 (0x1)
+T2C78 048:342.025 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 048:342.052 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 048:342.401 Data: C1 00 00 00
+T2C78 048:342.439 - 0.424ms returns 4 (0x4)
+T2C78 048:343.878 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 048:343.934 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 048:344.364 Data: A9 00 00 00
+T2C78 048:344.399 - 0.530ms returns 4 (0x4)
+T2C78 048:345.008 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 048:345.048 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 048:345.438 Data: E1 00 00 00
+T2C78 048:345.472 - 0.473ms returns 4 (0x4)
+T2C78 048:346.058 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 048:346.095 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 048:346.480 Data: 3F 01 00 00
+T2C78 048:346.510 - 0.459ms returns 4 (0x4)
+T2C78 048:346.984 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 048:347.015 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 048:347.388 Data: 77 13 00 00
+T2C78 048:347.413 - 0.436ms returns 4 (0x4)
+T2C78 048:348.255 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 048:348.287 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 048:348.698 Data: 00 00 00 00
+T2C78 048:348.720 - 0.471ms returns 4 (0x4)
+T2C78 048:348.777 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 048:348.797 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 048:349.085 Data: 00
+T2C78 048:349.105 - 0.333ms returns 1 (0x1)
+T2C78 048:349.474 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 048:349.496 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 048:349.790 Data: 01
+T2C78 048:349.808 - 0.339ms returns 1 (0x1)
+T2C78 048:350.103 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 048:350.122 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 048:350.421 Data: 63
+T2C78 048:350.439 - 0.341ms returns 1 (0x1)
+T2C78 048:350.458 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 048:350.472 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 048:350.750 Data: 63
+T2C78 048:350.765 - 0.312ms returns 1 (0x1)
+T19A8 048:350.818 JLINK_IsHalted()
+T19A8 048:351.107 - 0.295ms returns FALSE
+T19A8 048:451.500 JLINK_HasError()
+T19A8 048:451.569 JLINK_IsHalted()
+T19A8 048:451.986 - 0.431ms returns FALSE
+T19A8 048:552.077 JLINK_HasError()
+T19A8 048:552.142 JLINK_IsHalted()
+T19A8 048:552.558 - 0.463ms returns FALSE
+T19A8 048:652.692 JLINK_HasError()
+T19A8 048:652.756 JLINK_IsHalted()
+T19A8 048:653.184 - 0.443ms returns FALSE
+T19A8 048:753.718 JLINK_HasError()
+T19A8 048:753.787 JLINK_IsHalted()
+T19A8 048:754.315 - 0.551ms returns FALSE
+T19A8 048:854.735 JLINK_HasError()
+T19A8 048:854.810 JLINK_HasError()
+T19A8 048:854.833 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 048:854.880 Data: B2 47 02 03
+T19A8 048:854.912 Debug reg: DWT_CYCCNT
+T19A8 048:854.941 - 0.117ms returns 1 (0x1)
+T2C78 048:855.298 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 048:855.384 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 048:855.821 Data: 00
+T2C78 048:855.856 - 0.568ms returns 1 (0x1)
+T2C78 048:855.903 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 048:855.933 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 048:856.318 Data: 32
+T2C78 048:856.351 - 0.457ms returns 1 (0x1)
+T2C78 048:856.452 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 048:856.478 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 048:856.822 Data: C1 00 00 00
+T2C78 048:856.854 - 0.413ms returns 4 (0x4)
+T2C78 048:857.758 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 048:857.807 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 048:858.159 Data: 00 00 00 00
+T2C78 048:858.194 - 0.446ms returns 4 (0x4)
+T2C78 048:858.776 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 048:858.811 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 048:859.154 Data: EF 00 00 00
+T2C78 048:859.182 - 0.414ms returns 4 (0x4)
+T2C78 048:859.992 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 048:860.024 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 048:860.351 Data: 4E 00 00 00
+T2C78 048:860.379 - 0.394ms returns 4 (0x4)
+T2C78 048:860.770 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 048:860.796 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 048:861.102 Data: 81 0E 00 00
+T2C78 048:861.124 - 0.360ms returns 4 (0x4)
+T2C78 048:861.783 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 048:861.807 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 048:862.149 Data: 00 00 00 00
+T2C78 048:862.182 - 0.404ms returns 4 (0x4)
+T2C78 048:862.222 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 048:862.237 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 048:862.517 Data: 00
+T2C78 048:862.534 - 0.317ms returns 1 (0x1)
+T2C78 048:862.550 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 048:862.564 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 048:862.842 Data: 01
+T2C78 048:862.859 - 0.314ms returns 1 (0x1)
+T2C78 048:862.874 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 048:862.887 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 048:863.166 Data: 63
+T2C78 048:863.183 - 0.314ms returns 1 (0x1)
+T2C78 048:863.199 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 048:863.213 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 048:863.523 Data: 63
+T2C78 048:863.542 - 0.348ms returns 1 (0x1)
+T19A8 048:863.612 JLINK_IsHalted()
+T19A8 048:863.969 - 0.366ms returns FALSE
+T19A8 048:964.996 JLINK_HasError()
+T19A8 048:965.060 JLINK_IsHalted()
+T19A8 048:965.458 - 0.412ms returns FALSE
+T19A8 049:065.989 JLINK_HasError()
+T19A8 049:066.063 JLINK_IsHalted()
+T19A8 049:066.486 - 0.440ms returns FALSE
+T19A8 049:167.478 JLINK_HasError()
+T19A8 049:169.720 JLINK_IsHalted()
+T19A8 049:170.515 - 0.808ms returns FALSE
+T19A8 049:271.354 JLINK_HasError()
+T19A8 049:271.405 JLINK_IsHalted()
+T19A8 049:271.759 - 0.364ms returns FALSE
+T19A8 049:371.932 JLINK_HasError()
+T19A8 049:371.987 JLINK_HasError()
+T19A8 049:372.002 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 049:372.036 Data: B2 47 02 03
+T19A8 049:372.057 Debug reg: DWT_CYCCNT
+T19A8 049:372.075 - 0.079ms returns 1 (0x1)
+T2C78 049:373.165 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 049:373.249 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 049:373.599 Data: 00
+T2C78 049:373.638 - 0.477ms returns 1 (0x1)
+T2C78 049:373.684 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 049:373.706 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 049:374.185 Data: 32
+T2C78 049:374.201 - 0.521ms returns 1 (0x1)
+T2C78 049:374.279 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 049:374.297 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 049:375.157 Data: E2 00 00 00
+T2C78 049:375.187 - 0.911ms returns 4 (0x4)
+T2C78 049:375.568 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 049:375.587 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 049:375.860 Data: A9 00 00 00
+T2C78 049:375.873 - 0.308ms returns 4 (0x4)
+T2C78 049:376.323 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 049:376.343 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 049:376.668 Data: EF 00 00 00
+T2C78 049:376.679 - 0.359ms returns 4 (0x4)
+T2C78 049:376.892 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 049:376.906 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 049:377.186 Data: 3F 01 00 00
+T2C78 049:377.197 - 0.309ms returns 4 (0x4)
+T2C78 049:377.545 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 049:377.562 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 049:377.884 Data: 42 08 00 00
+T2C78 049:377.897 - 0.356ms returns 4 (0x4)
+T2C78 049:378.336 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 049:378.353 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 049:378.651 Data: 00 00 00 00
+T2C78 049:378.664 - 0.331ms returns 4 (0x4)
+T2C78 049:378.695 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 049:378.706 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 049:378.963 Data: 00
+T2C78 049:378.974 - 0.282ms returns 1 (0x1)
+T2C78 049:378.984 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 049:378.993 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 049:379.287 Data: 01
+T2C78 049:379.298 - 0.316ms returns 1 (0x1)
+T2C78 049:379.307 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 049:379.316 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 049:379.585 Data: 63
+T2C78 049:379.596 - 0.292ms returns 1 (0x1)
+T2C78 049:379.607 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 049:379.615 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 049:379.897 Data: 63
+T2C78 049:379.908 - 0.304ms returns 1 (0x1)
+T19A8 049:379.953 JLINK_IsHalted()
+T19A8 049:380.286 - 0.340ms returns FALSE
+T19A8 049:480.836 JLINK_HasError()
+T19A8 049:480.928 JLINK_IsHalted()
+T19A8 049:481.533 - 0.653ms returns FALSE
+T19A8 049:582.503 JLINK_HasError()
+T19A8 049:582.569 JLINK_IsHalted()
+T19A8 049:582.995 - 0.479ms returns FALSE
+T19A8 049:683.852 JLINK_HasError()
+T19A8 049:683.915 JLINK_IsHalted()
+T19A8 049:684.316 - 0.415ms returns FALSE
+T19A8 049:784.415 JLINK_HasError()
+T19A8 049:784.480 JLINK_IsHalted()
+T19A8 049:784.886 - 0.420ms returns FALSE
+T19A8 049:885.421 JLINK_HasError()
+T19A8 049:885.485 JLINK_HasError()
+T19A8 049:885.509 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 049:885.556 Data: B2 47 02 03
+T19A8 049:885.588 Debug reg: DWT_CYCCNT
+T19A8 049:885.616 - 0.117ms returns 1 (0x1)
+T2C78 049:885.964 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 049:886.058 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 049:886.448 Data: 00
+T2C78 049:886.485 - 0.530ms returns 1 (0x1)
+T2C78 049:886.565 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 049:886.598 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 049:887.279 Data: 32
+T2C78 049:887.319 - 0.764ms returns 1 (0x1)
+T2C78 049:887.544 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 049:887.579 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 049:887.951 Data: C1 00 00 00
+T2C78 049:887.983 - 0.449ms returns 4 (0x4)
+T2C78 049:889.374 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 049:889.426 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 049:889.811 Data: A9 00 00 00
+T2C78 049:889.846 - 0.482ms returns 4 (0x4)
+T2C78 049:890.438 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 049:890.475 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 049:890.842 Data: E1 00 00 00
+T2C78 049:890.878 - 0.450ms returns 4 (0x4)
+T2C78 049:891.422 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 049:891.457 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 049:891.805 Data: 3F 01 00 00
+T2C78 049:891.849 - 0.436ms returns 4 (0x4)
+T2C78 049:892.527 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 049:892.566 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 049:892.960 Data: 77 13 00 00
+T2C78 049:892.988 - 0.469ms returns 4 (0x4)
+T2C78 049:893.865 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 049:893.898 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 049:894.232 Data: 00 00 00 00
+T2C78 049:894.258 - 0.400ms returns 4 (0x4)
+T2C78 049:894.314 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 049:894.335 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 049:894.638 Data: 00
+T2C78 049:894.660 - 0.352ms returns 1 (0x1)
+T2C78 049:894.681 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 049:894.698 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 049:894.996 Data: 01
+T2C78 049:895.018 - 0.343ms returns 1 (0x1)
+T2C78 049:895.037 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 049:895.054 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 049:895.352 Data: 00
+T2C78 049:895.374 - 0.343ms returns 1 (0x1)
+T2C78 049:895.783 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 049:895.809 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 049:896.117 Data: 00
+T2C78 049:896.139 - 0.362ms returns 1 (0x1)
+T19A8 049:896.547 JLINK_IsHalted()
+T19A8 049:896.891 - 0.363ms returns FALSE
+T19A8 049:997.212 JLINK_HasError()
+T19A8 049:997.276 JLINK_IsHalted()
+T19A8 049:997.790 - 0.563ms returns FALSE
+T19A8 050:098.881 JLINK_HasError()
+T19A8 050:098.948 JLINK_IsHalted()
+T19A8 050:099.353 - 0.420ms returns FALSE
+T19A8 050:200.078 JLINK_HasError()
+T19A8 050:200.145 JLINK_IsHalted()
+T19A8 050:200.526 - 0.395ms returns FALSE
+T19A8 050:300.868 JLINK_HasError()
+T19A8 050:300.938 JLINK_IsHalted()
+T19A8 050:301.356 - 0.433ms returns FALSE
+T19A8 050:401.913 JLINK_HasError()
+T19A8 050:401.991 JLINK_HasError()
+T19A8 050:402.015 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 050:402.063 Data: B2 47 02 03
+T19A8 050:402.095 Debug reg: DWT_CYCCNT
+T19A8 050:402.124 - 0.118ms returns 1 (0x1)
+T2C78 050:402.581 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 050:402.667 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 050:403.167 Data: 00
+T2C78 050:403.229 - 0.658ms returns 1 (0x1)
+T2C78 050:403.302 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 050:403.342 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 050:404.066 Data: 32
+T2C78 050:404.095 - 0.801ms returns 1 (0x1)
+T2C78 050:404.204 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 050:404.228 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 050:404.642 Data: C1 00 00 00
+T2C78 050:404.669 - 0.472ms returns 4 (0x4)
+T2C78 050:405.403 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 050:405.442 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 050:405.765 Data: 00 00 00 00
+T2C78 050:405.792 - 0.397ms returns 4 (0x4)
+T2C78 050:406.294 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 050:406.327 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 050:406.710 Data: EF 00 00 00
+T2C78 050:406.738 - 0.451ms returns 4 (0x4)
+T2C78 050:407.615 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 050:407.652 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 050:408.019 Data: 4E 00 00 00
+T2C78 050:408.051 - 0.445ms returns 4 (0x4)
+T2C78 050:408.563 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 050:408.598 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 050:408.938 Data: 81 0E 00 00
+T2C78 050:408.969 - 0.414ms returns 4 (0x4)
+T2C78 050:409.898 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 050:409.932 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 050:410.311 Data: 00 00 00 00
+T2C78 050:410.339 - 0.450ms returns 4 (0x4)
+T2C78 050:410.401 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 050:410.423 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 050:410.752 Data: 00
+T2C78 050:410.777 - 0.382ms returns 1 (0x1)
+T2C78 050:410.800 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 050:410.827 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 050:411.165 Data: 01
+T2C78 050:411.189 - 0.396ms returns 1 (0x1)
+T2C78 050:411.210 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 050:411.228 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 050:411.538 Data: 00
+T2C78 050:411.565 - 0.361ms returns 1 (0x1)
+T2C78 050:411.966 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 050:411.991 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 050:412.299 Data: 00
+T2C78 050:412.323 - 0.364ms returns 1 (0x1)
+T19A8 050:412.759 JLINK_IsHalted()
+T19A8 050:413.131 - 0.389ms returns FALSE
+T19A8 050:513.292 JLINK_HasError()
+T19A8 050:513.358 JLINK_IsHalted()
+T19A8 050:513.885 - 0.541ms returns FALSE
+T19A8 050:614.158 JLINK_HasError()
+T19A8 050:614.228 JLINK_IsHalted()
+T19A8 050:614.763 - 0.581ms returns FALSE
+T19A8 050:715.232 JLINK_HasError()
+T19A8 050:715.305 JLINK_IsHalted()
+T19A8 050:715.809 - 0.552ms returns FALSE
+T19A8 050:815.932 JLINK_HasError()
+T19A8 050:816.004 JLINK_IsHalted()
+T19A8 050:816.442 - 0.453ms returns FALSE
+T19A8 050:916.945 JLINK_HasError()
+T19A8 050:917.014 JLINK_HasError()
+T19A8 050:917.038 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 050:917.085 Data: B2 47 02 03
+T19A8 050:917.117 Debug reg: DWT_CYCCNT
+T19A8 050:917.145 - 0.117ms returns 1 (0x1)
+T2C78 050:917.485 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 050:917.583 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 050:918.066 Data: 00
+T2C78 050:918.102 - 0.627ms returns 1 (0x1)
+T2C78 050:918.170 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 050:918.203 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 050:918.633 Data: 32
+T2C78 050:918.665 - 0.504ms returns 1 (0x1)
+T2C78 050:918.785 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 050:918.812 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 050:919.151 Data: E2 00 00 00
+T2C78 050:919.189 - 0.414ms returns 4 (0x4)
+T2C78 050:921.156 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 050:921.236 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 050:921.838 Data: A9 00 00 00
+T2C78 050:921.908 - 0.762ms returns 4 (0x4)
+T2C78 050:923.195 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 050:923.249 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 050:923.628 Data: EF 00 00 00
+T2C78 050:923.671 - 0.485ms returns 4 (0x4)
+T2C78 050:924.416 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 050:924.465 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 050:924.804 Data: 3F 01 00 00
+T2C78 050:924.836 - 0.428ms returns 4 (0x4)
+T2C78 050:925.835 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 050:925.880 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 050:926.329 Data: 42 08 00 00
+T2C78 050:926.389 - 0.564ms returns 4 (0x4)
+T2C78 050:927.704 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 050:927.753 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 050:928.135 Data: 00 00 00 00
+T2C78 050:928.164 - 0.467ms returns 4 (0x4)
+T2C78 050:928.227 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 050:928.251 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 050:928.574 Data: 00
+T2C78 050:928.600 - 0.380ms returns 1 (0x1)
+T2C78 050:928.623 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 050:928.642 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 050:928.980 Data: 01
+T2C78 050:929.004 - 0.388ms returns 1 (0x1)
+T2C78 050:929.026 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 050:929.045 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 050:929.393 Data: 01
+T2C78 050:929.417 - 0.398ms returns 1 (0x1)
+T2C78 050:929.873 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 050:929.900 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 050:930.314 Data: 00
+T2C78 050:930.343 - 0.477ms returns 1 (0x1)
+T19A8 050:930.475 JLINK_IsHalted()
+T19A8 050:930.827 - 0.371ms returns FALSE
+T19A8 051:031.289 JLINK_HasError()
+T19A8 051:031.360 JLINK_IsHalted()
+T19A8 051:031.873 - 0.560ms returns FALSE
+T19A8 051:132.580 JLINK_HasError()
+T19A8 051:132.646 JLINK_IsHalted()
+T19A8 051:133.355 - 0.758ms returns FALSE
+T19A8 051:234.054 JLINK_HasError()
+T19A8 051:234.155 JLINK_IsHalted()
+T19A8 051:234.519 - 0.377ms returns FALSE
+T19A8 051:335.547 JLINK_HasError()
+T19A8 051:335.642 JLINK_IsHalted()
+T19A8 051:336.294 - 0.705ms returns FALSE
+T19A8 051:436.421 JLINK_HasError()
+T19A8 051:437.345 JLINK_HasError()
+T19A8 051:437.369 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 051:437.424 Data: B2 47 02 03
+T19A8 051:437.456 Debug reg: DWT_CYCCNT
+T19A8 051:437.484 - 0.125ms returns 1 (0x1)
+T2C78 051:437.880 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 051:437.925 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 051:438.403 Data: 00
+T2C78 051:438.436 - 0.566ms returns 1 (0x1)
+T2C78 051:438.486 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 051:438.515 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 051:438.881 Data: 32
+T2C78 051:438.913 - 0.437ms returns 1 (0x1)
+T2C78 051:439.019 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 051:439.045 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 051:439.404 Data: C1 00 00 00
+T2C78 051:439.436 - 0.427ms returns 4 (0x4)
+T2C78 051:440.884 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 051:440.942 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 051:441.344 Data: A9 00 00 00
+T2C78 051:441.388 - 0.513ms returns 4 (0x4)
+T2C78 051:441.997 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 051:442.038 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 051:442.649 Data: E1 00 00 00
+T2C78 051:442.734 - 0.747ms returns 4 (0x4)
+T2C78 051:443.754 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 051:443.803 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 051:444.173 Data: 3F 01 00 00
+T2C78 051:444.195 - 0.448ms returns 4 (0x4)
+T2C78 051:444.782 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 051:444.812 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 051:445.151 Data: 77 13 00 00
+T2C78 051:445.171 - 0.395ms returns 4 (0x4)
+T2C78 051:445.883 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 051:445.910 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 051:446.211 Data: 00 00 00 00
+T2C78 051:446.230 - 0.352ms returns 4 (0x4)
+T2C78 051:446.273 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 051:446.289 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 051:446.689 Data: 00
+T2C78 051:446.706 - 0.438ms returns 1 (0x1)
+T2C78 051:446.723 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 051:446.736 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 051:447.031 Data: 01
+T2C78 051:447.046 - 0.327ms returns 1 (0x1)
+T2C78 051:447.060 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 051:447.072 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 051:447.358 Data: 01
+T2C78 051:447.373 - 0.317ms returns 1 (0x1)
+T2C78 051:447.695 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 051:447.713 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 051:447.993 Data: 00
+T2C78 051:448.008 - 0.318ms returns 1 (0x1)
+T19A8 051:448.512 JLINK_IsHalted()
+T19A8 051:448.939 - 0.444ms returns FALSE
+T19A8 051:549.041 JLINK_HasError()
+T19A8 051:549.111 JLINK_IsHalted()
+T19A8 051:549.541 - 0.445ms returns FALSE
+T19A8 051:650.429 JLINK_HasError()
+T19A8 051:650.493 JLINK_IsHalted()
+T19A8 051:650.899 - 0.420ms returns FALSE
+T19A8 051:751.286 JLINK_HasError()
+T19A8 051:751.366 JLINK_IsHalted()
+T19A8 051:751.790 - 0.440ms returns FALSE
+T19A8 051:851.863 JLINK_HasError()
+T19A8 051:851.930 JLINK_IsHalted()
+T19A8 051:852.336 - 0.420ms returns FALSE
+T19A8 051:952.661 JLINK_HasError()
+T19A8 051:952.739 JLINK_HasError()
+T19A8 051:952.766 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 051:952.814 Data: B2 47 02 03
+T19A8 051:952.847 Debug reg: DWT_CYCCNT
+T19A8 051:952.875 - 0.119ms returns 1 (0x1)
+T2C78 051:954.107 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 051:954.200 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 051:954.597 Data: 00
+T2C78 051:954.644 - 0.548ms returns 1 (0x1)
+T2C78 051:954.726 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 051:954.763 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 051:955.150 Data: 32
+T2C78 051:955.183 - 0.466ms returns 1 (0x1)
+T2C78 051:955.337 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 051:955.366 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 051:955.723 Data: C1 00 00 00
+T2C78 051:955.756 - 0.428ms returns 4 (0x4)
+T2C78 051:956.946 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 051:956.999 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 051:957.407 Data: 00 00 00 00
+T2C78 051:957.458 - 0.521ms returns 4 (0x4)
+T2C78 051:958.108 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 051:958.154 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 051:958.494 Data: EF 00 00 00
+T2C78 051:958.527 - 0.428ms returns 4 (0x4)
+T2C78 051:959.570 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 051:959.615 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 051:959.959 Data: 4E 00 00 00
+T2C78 051:959.993 - 0.432ms returns 4 (0x4)
+T2C78 051:960.567 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 051:960.605 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 051:960.939 Data: 81 0E 00 00
+T2C78 051:960.973 - 0.416ms returns 4 (0x4)
+T2C78 051:962.047 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 051:962.089 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 051:962.432 Data: 00 00 00 00
+T2C78 051:962.459 - 0.419ms returns 4 (0x4)
+T2C78 051:962.516 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 051:962.538 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 051:962.880 Data: 00
+T2C78 051:962.905 - 0.395ms returns 1 (0x1)
+T2C78 051:962.926 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 051:962.944 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 051:963.287 Data: 01
+T2C78 051:963.309 - 0.389ms returns 1 (0x1)
+T2C78 051:963.329 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 051:963.346 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 051:963.675 Data: 02
+T2C78 051:963.701 - 0.379ms returns 1 (0x1)
+T2C78 051:964.303 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 051:964.343 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 051:964.706 Data: 01
+T2C78 051:964.737 - 0.441ms returns 1 (0x1)
+T19A8 051:965.325 JLINK_IsHalted()
+T19A8 051:965.649 - 0.347ms returns FALSE
+T19A8 052:066.353 JLINK_HasError()
+T19A8 052:066.424 JLINK_IsHalted()
+T19A8 052:066.888 - 0.512ms returns FALSE
+T19A8 052:167.338 JLINK_HasError()
+T19A8 052:167.436 JLINK_IsHalted()
+T19A8 052:168.110 - 0.722ms returns FALSE
+T19A8 052:269.116 JLINK_HasError()
+T19A8 052:269.189 JLINK_IsHalted()
+T19A8 052:269.627 - 0.453ms returns FALSE
+T19A8 052:370.813 JLINK_HasError()
+T19A8 052:370.962 JLINK_IsHalted()
+T19A8 052:371.401 - 0.454ms returns FALSE
+T19A8 052:471.729 JLINK_HasError()
+T19A8 052:471.795 JLINK_HasError()
+T19A8 052:471.820 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 052:471.866 Data: B2 47 02 03
+T19A8 052:471.898 Debug reg: DWT_CYCCNT
+T19A8 052:471.926 - 0.116ms returns 1 (0x1)
+T2C78 052:472.261 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 052:472.353 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 052:472.762 Data: 00
+T2C78 052:472.800 - 0.549ms returns 1 (0x1)
+T2C78 052:472.880 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 052:472.915 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 052:473.296 Data: 32
+T2C78 052:473.329 - 0.458ms returns 1 (0x1)
+T2C78 052:473.483 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 052:473.511 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 052:473.899 Data: E2 00 00 00
+T2C78 052:473.940 - 0.467ms returns 4 (0x4)
+T2C78 052:474.845 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 052:474.901 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 052:475.313 Data: A9 00 00 00
+T2C78 052:475.358 - 0.523ms returns 4 (0x4)
+T2C78 052:476.463 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 052:476.512 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 052:476.899 Data: EF 00 00 00
+T2C78 052:476.933 - 0.480ms returns 4 (0x4)
+T2C78 052:477.504 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 052:477.542 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 052:477.918 Data: 3F 01 00 00
+T2C78 052:477.952 - 0.457ms returns 4 (0x4)
+T2C78 052:479.067 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 052:479.137 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 052:479.594 Data: 42 08 00 00
+T2C78 052:479.641 - 0.581ms returns 4 (0x4)
+T2C78 052:480.780 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 052:480.822 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 052:481.189 Data: 00 00 00 00
+T2C78 052:481.223 - 0.449ms returns 4 (0x4)
+T2C78 052:481.302 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 052:481.326 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 052:481.648 Data: 00
+T2C78 052:481.668 - 0.371ms returns 1 (0x1)
+T2C78 052:481.687 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 052:481.703 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 052:482.003 Data: 01
+T2C78 052:482.021 - 0.339ms returns 1 (0x1)
+T2C78 052:482.037 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 052:482.052 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 052:482.369 Data: 02
+T2C78 052:482.388 - 0.356ms returns 1 (0x1)
+T2C78 052:482.901 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 052:482.930 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 052:483.290 Data: 01
+T2C78 052:483.312 - 0.417ms returns 1 (0x1)
+T19A8 052:483.776 JLINK_IsHalted()
+T19A8 052:484.130 - 0.373ms returns FALSE
+T19A8 052:584.365 JLINK_HasError()
+T19A8 052:584.470 JLINK_IsHalted()
+T19A8 052:585.160 - 0.754ms returns FALSE
+T19A8 052:685.967 JLINK_HasError()
+T19A8 052:686.040 JLINK_IsHalted()
+T19A8 052:686.903 - 0.910ms returns FALSE
+T19A8 052:787.632 JLINK_HasError()
+T19A8 052:787.705 JLINK_IsHalted()
+T19A8 052:788.141 - 0.450ms returns FALSE
+T19A8 052:889.121 JLINK_HasError()
+T19A8 052:889.193 JLINK_IsHalted()
+T19A8 052:889.718 - 0.573ms returns FALSE
+T19A8 052:990.701 JLINK_HasError()
+T19A8 052:990.771 JLINK_HasError()
+T19A8 052:990.795 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 052:990.842 Data: B2 47 02 03
+T19A8 052:990.874 Debug reg: DWT_CYCCNT
+T19A8 052:990.902 - 0.117ms returns 1 (0x1)
+T2C78 052:991.251 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 052:991.335 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 052:991.984 Data: 00
+T2C78 052:992.063 - 0.824ms returns 1 (0x1)
+T2C78 052:992.226 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 052:992.272 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 052:992.838 Data: 32
+T2C78 052:992.906 - 0.691ms returns 1 (0x1)
+T2C78 052:993.502 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 052:993.561 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 052:994.013 Data: C1 00 00 00
+T2C78 052:994.079 - 0.587ms returns 4 (0x4)
+T2C78 052:995.504 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 052:995.575 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 052:995.937 Data: A9 00 00 00
+T2C78 052:995.972 - 0.478ms returns 4 (0x4)
+T2C78 052:996.580 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 052:996.622 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 052:997.002 Data: E1 00 00 00
+T2C78 052:997.037 - 0.466ms returns 4 (0x4)
+T2C78 052:997.639 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 052:997.679 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 052:998.062 Data: 3F 01 00 00
+T2C78 052:998.097 - 0.467ms returns 4 (0x4)
+T2C78 052:998.679 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 052:998.714 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 052:999.038 Data: 77 13 00 00
+T2C78 052:999.065 - 0.394ms returns 4 (0x4)
+T2C78 052:999.929 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 053:000.053 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 053:000.377 Data: 00 00 00 00
+T2C78 053:000.401 - 0.479ms returns 4 (0x4)
+T2C78 053:000.463 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 053:000.483 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 053:000.800 Data: 00
+T2C78 053:000.821 - 0.364ms returns 1 (0x1)
+T2C78 053:000.902 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 053:000.918 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 053:001.286 Data: 01
+T2C78 053:001.305 - 0.409ms returns 1 (0x1)
+T2C78 053:001.323 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 053:001.338 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 053:001.630 Data: 01
+T2C78 053:001.649 - 0.332ms returns 1 (0x1)
+T2C78 053:002.035 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 053:002.058 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 053:002.371 Data: 02
+T2C78 053:002.391 - 0.362ms returns 1 (0x1)
+T19A8 053:002.756 JLINK_IsHalted()
+T19A8 053:003.086 - 0.343ms returns FALSE
+T19A8 053:103.740 JLINK_HasError()
+T19A8 053:103.808 JLINK_IsHalted()
+T19A8 053:104.300 - 0.507ms returns FALSE
+T19A8 053:205.148 JLINK_HasError()
+T19A8 053:205.214 JLINK_IsHalted()
+T19A8 053:205.628 - 0.428ms returns FALSE
+T19A8 053:306.486 JLINK_HasError()
+T19A8 053:306.553 JLINK_IsHalted()
+T19A8 053:306.933 - 0.395ms returns FALSE
+T19A8 053:407.036 JLINK_HasError()
+T19A8 053:407.105 JLINK_IsHalted()
+T19A8 053:407.548 - 0.458ms returns FALSE
+T19A8 053:508.501 JLINK_HasError()
+T19A8 053:508.563 JLINK_HasError()
+T19A8 053:508.587 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 053:508.634 Data: B2 47 02 03
+T19A8 053:508.665 Debug reg: DWT_CYCCNT
+T19A8 053:508.693 - 0.116ms returns 1 (0x1)
+T2C78 053:509.046 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 053:509.146 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 053:509.559 Data: 00
+T2C78 053:509.598 - 0.561ms returns 1 (0x1)
+T2C78 053:509.674 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 053:509.709 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 053:510.101 Data: 32
+T2C78 053:510.133 - 0.468ms returns 1 (0x1)
+T2C78 053:510.285 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 053:510.312 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 053:510.659 Data: C1 00 00 00
+T2C78 053:510.691 - 0.416ms returns 4 (0x4)
+T2C78 053:511.590 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 053:511.639 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 053:511.982 Data: 00 00 00 00
+T2C78 053:512.016 - 0.435ms returns 4 (0x4)
+T2C78 053:512.653 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 053:512.693 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 053:513.071 Data: EF 00 00 00
+T2C78 053:513.105 - 0.461ms returns 4 (0x4)
+T2C78 053:514.118 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 053:514.159 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 053:514.497 Data: 4D 00 00 00
+T2C78 053:514.530 - 0.421ms returns 4 (0x4)
+T2C78 053:515.041 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 053:515.076 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 053:515.431 Data: 52 0E 00 00
+T2C78 053:515.460 - 0.427ms returns 4 (0x4)
+T2C78 053:516.299 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 053:516.329 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 053:516.645 Data: 00 00 00 00
+T2C78 053:516.671 - 0.378ms returns 4 (0x4)
+T2C78 053:516.718 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 053:516.736 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 053:517.034 Data: 00
+T2C78 053:517.058 - 0.346ms returns 1 (0x1)
+T2C78 053:517.079 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 053:517.097 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 053:517.417 Data: 01
+T2C78 053:517.437 - 0.364ms returns 1 (0x1)
+T2C78 053:517.456 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 053:517.472 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 053:517.795 Data: 00
+T2C78 053:517.816 - 0.366ms returns 1 (0x1)
+T2C78 053:518.221 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 053:518.243 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 053:518.581 Data: 01
+T2C78 053:518.603 - 0.388ms returns 1 (0x1)
+T19A8 053:518.967 JLINK_IsHalted()
+T19A8 053:519.326 - 0.373ms returns FALSE
+T19A8 053:619.476 JLINK_HasError()
+T19A8 053:619.546 JLINK_IsHalted()
+T19A8 053:620.480 - 0.981ms returns FALSE
+T19A8 053:720.597 JLINK_HasError()
+T19A8 053:720.660 JLINK_IsHalted()
+T19A8 053:721.062 - 0.417ms returns FALSE
+T19A8 053:821.903 JLINK_HasError()
+T19A8 053:821.961 JLINK_IsHalted()
+T19A8 053:822.409 - 0.483ms returns FALSE
+T19A8 053:922.798 JLINK_HasError()
+T19A8 053:922.866 JLINK_IsHalted()
+T19A8 053:923.319 - 0.504ms returns FALSE
+T19A8 054:023.772 JLINK_HasError()
+T19A8 054:023.859 JLINK_HasError()
+T19A8 054:023.883 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 054:023.932 Data: B2 47 02 03
+T19A8 054:023.964 Debug reg: DWT_CYCCNT
+T19A8 054:023.992 - 0.119ms returns 1 (0x1)
+T2C78 054:024.417 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 054:024.526 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 054:024.957 Data: 00
+T2C78 054:024.997 - 0.590ms returns 1 (0x1)
+T2C78 054:025.077 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 054:025.110 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 054:025.503 Data: 32
+T2C78 054:025.547 - 0.480ms returns 1 (0x1)
+T2C78 054:025.773 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 054:025.808 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 054:026.206 Data: E2 00 00 00
+T2C78 054:026.239 - 0.476ms returns 4 (0x4)
+T2C78 054:027.247 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 054:027.301 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 054:027.721 Data: A9 00 00 00
+T2C78 054:027.759 - 0.522ms returns 4 (0x4)
+T2C78 054:028.855 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 054:028.893 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 054:029.230 Data: EF 00 00 00
+T2C78 054:029.261 - 0.415ms returns 4 (0x4)
+T2C78 054:029.752 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 054:029.782 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 054:030.119 Data: 3F 01 00 00
+T2C78 054:030.146 - 0.402ms returns 4 (0x4)
+T2C78 054:030.866 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 054:030.892 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 054:031.213 Data: 42 08 00 00
+T2C78 054:031.237 - 0.378ms returns 4 (0x4)
+T2C78 054:031.946 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 054:031.971 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 054:032.292 Data: 00 00 00 00
+T2C78 054:032.312 - 0.372ms returns 4 (0x4)
+T2C78 054:032.357 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 054:032.374 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 054:032.665 Data: 00
+T2C78 054:032.686 - 0.334ms returns 1 (0x1)
+T2C78 054:032.705 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 054:032.719 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 054:033.019 Data: 01
+T2C78 054:033.037 - 0.338ms returns 1 (0x1)
+T2C78 054:033.054 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 054:033.068 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 054:033.373 Data: 00
+T2C78 054:033.391 - 0.342ms returns 1 (0x1)
+T2C78 054:033.700 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 054:033.719 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 054:034.019 Data: 01
+T2C78 054:034.037 - 0.341ms returns 1 (0x1)
+T19A8 054:034.343 JLINK_IsHalted()
+T19A8 054:034.655 - 0.325ms returns FALSE
+T19A8 054:134.885 JLINK_HasError()
+T19A8 054:134.949 JLINK_IsHalted()
+T19A8 054:135.339 - 0.404ms returns FALSE
+T19A8 054:236.041 JLINK_HasError()
+T19A8 054:236.074 JLINK_IsHalted()
+T19A8 054:236.360 - 0.290ms returns FALSE
+T19A8 054:336.934 JLINK_HasError()
+T19A8 054:336.999 JLINK_IsHalted()
+T19A8 054:337.439 - 0.479ms returns FALSE
+T19A8 054:438.495 JLINK_HasError()
+T19A8 054:438.571 JLINK_IsHalted()
+T19A8 054:438.986 - 0.462ms returns FALSE
+T19A8 054:539.112 JLINK_HasError()
+T19A8 054:539.172 JLINK_HasError()
+T19A8 054:539.196 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 054:539.243 Data: B2 47 02 03
+T19A8 054:539.275 Debug reg: DWT_CYCCNT
+T19A8 054:539.303 - 0.117ms returns 1 (0x1)
+T2C78 054:539.632 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 054:539.669 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 054:540.094 Data: 00
+T2C78 054:540.129 - 0.507ms returns 1 (0x1)
+T2C78 054:540.177 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 054:540.206 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 054:540.553 Data: 32
+T2C78 054:540.590 - 0.423ms returns 1 (0x1)
+T2C78 054:540.698 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 054:540.725 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 054:541.092 Data: C1 00 00 00
+T2C78 054:541.125 - 0.436ms returns 4 (0x4)
+T2C78 054:542.885 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 054:542.969 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 054:543.410 Data: A9 00 00 00
+T2C78 054:543.455 - 0.579ms returns 4 (0x4)
+T2C78 054:544.221 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 054:544.270 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 054:544.672 Data: E1 00 00 00
+T2C78 054:544.706 - 0.495ms returns 4 (0x4)
+T2C78 054:545.327 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 054:545.367 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 054:545.705 Data: 3F 01 00 00
+T2C78 054:545.738 - 0.420ms returns 4 (0x4)
+T2C78 054:546.300 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 054:546.336 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 054:546.724 Data: 77 13 00 00
+T2C78 054:546.756 - 0.465ms returns 4 (0x4)
+T2C78 054:547.743 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 054:547.781 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 054:548.146 Data: 00 00 00 00
+T2C78 054:548.172 - 0.436ms returns 4 (0x4)
+T2C78 054:548.226 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 054:548.247 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 054:548.567 Data: 00
+T2C78 054:548.594 - 0.374ms returns 1 (0x1)
+T2C78 054:548.615 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 054:548.633 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 054:548.928 Data: 01
+T2C78 054:548.950 - 0.342ms returns 1 (0x1)
+T2C78 054:548.970 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 054:548.987 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 054:549.288 Data: 00
+T2C78 054:549.311 - 0.347ms returns 1 (0x1)
+T2C78 054:549.330 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 054:549.347 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 054:549.634 Data: 01
+T2C78 054:549.657 - 0.332ms returns 1 (0x1)
+T19A8 054:549.740 JLINK_IsHalted()
+T19A8 054:550.098 - 0.519ms returns FALSE
+T19A8 054:650.425 JLINK_HasError()
+T19A8 054:650.496 JLINK_IsHalted()
+T19A8 054:650.930 - 0.482ms returns FALSE
+T19A8 054:752.222 JLINK_HasError()
+T19A8 054:752.299 JLINK_IsHalted()
+T19A8 054:752.885 - 0.631ms returns FALSE
+T19A8 054:853.968 JLINK_HasError()
+T19A8 054:854.153 JLINK_IsHalted()
+T19A8 054:854.556 - 0.414ms returns FALSE
+T19A8 054:955.274 JLINK_HasError()
+T19A8 054:955.352 JLINK_IsHalted()
+T19A8 054:955.791 - 0.456ms returns FALSE
+T19A8 055:056.471 JLINK_HasError()
+T19A8 055:056.503 JLINK_HasError()
+T19A8 055:056.507 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 055:056.521 Data: B2 47 02 03
+T19A8 055:056.527 Debug reg: DWT_CYCCNT
+T19A8 055:056.533 - 0.027ms returns 1 (0x1)
+T2C78 055:056.702 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 055:056.719 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 055:057.155 Data: 00
+T2C78 055:057.188 - 0.490ms returns 1 (0x1)
+T2C78 055:057.226 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 055:057.247 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 055:057.774 Data: 32
+T2C78 055:057.821 - 0.602ms returns 1 (0x1)
+T2C78 055:057.940 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 055:057.964 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 055:058.676 Data: C1 00 00 00
+T2C78 055:058.723 - 0.787ms returns 4 (0x4)
+T2C78 055:059.232 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 055:059.261 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 055:059.804 Data: 00 00 00 00
+T2C78 055:059.838 - 0.609ms returns 4 (0x4)
+T2C78 055:060.196 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 055:060.218 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 055:060.593 Data: EF 00 00 00
+T2C78 055:060.606 - 0.413ms returns 4 (0x4)
+T2C78 055:060.971 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 055:060.986 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 055:061.368 Data: 4E 00 00 00
+T2C78 055:061.379 - 0.411ms returns 4 (0x4)
+T2C78 055:061.568 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 055:061.580 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 055:061.946 Data: 81 0E 00 00
+T2C78 055:061.956 - 0.391ms returns 4 (0x4)
+T2C78 055:062.307 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 055:062.321 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 055:062.588 Data: 00 00 00 00
+T2C78 055:062.598 - 0.293ms returns 4 (0x4)
+T2C78 055:062.620 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 055:062.631 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 055:062.896 Data: 00
+T2C78 055:062.905 - 0.288ms returns 1 (0x1)
+T2C78 055:062.914 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 055:062.922 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 055:063.193 Data: 01
+T2C78 055:063.201 - 0.289ms returns 1 (0x1)
+T2C78 055:063.209 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 055:063.216 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 055:063.572 Data: 00
+T2C78 055:063.580 - 0.373ms returns 1 (0x1)
+T2C78 055:063.592 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 055:063.598 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 055:063.944 Data: 01
+T2C78 055:063.952 - 0.363ms returns 1 (0x1)
+T19A8 055:064.452 JLINK_IsHalted()
+T19A8 055:064.823 - 0.384ms returns FALSE
+T19A8 055:165.555 JLINK_HasError()
+T19A8 055:165.616 JLINK_IsHalted()
+T19A8 055:166.005 - 0.403ms returns FALSE
+T19A8 055:266.706 JLINK_HasError()
+T19A8 055:266.777 JLINK_IsHalted()
+T19A8 055:267.190 - 0.429ms returns FALSE
+T19A8 055:368.080 JLINK_HasError()
+T19A8 055:368.137 JLINK_IsHalted()
+T19A8 055:368.523 - 0.397ms returns FALSE
+T19A8 055:469.024 JLINK_HasError()
+T19A8 055:469.097 JLINK_IsHalted()
+T19A8 055:469.508 - 0.428ms returns FALSE
+T19A8 055:570.113 JLINK_HasError()
+T19A8 055:570.173 JLINK_HasError()
+T19A8 055:570.196 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 055:570.243 Data: B2 47 02 03
+T19A8 055:570.274 Debug reg: DWT_CYCCNT
+T19A8 055:570.302 - 0.115ms returns 1 (0x1)
+T2C78 055:570.633 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 055:570.669 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 055:571.098 Data: 00
+T2C78 055:571.133 - 0.510ms returns 1 (0x1)
+T2C78 055:571.178 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 055:571.207 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 055:571.568 Data: 32
+T2C78 055:571.600 - 0.431ms returns 1 (0x1)
+T2C78 055:571.705 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 055:571.731 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 055:572.166 Data: E2 00 00 00
+T2C78 055:572.233 - 0.539ms returns 4 (0x4)
+T2C78 055:573.146 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 055:573.206 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 055:573.580 Data: A9 00 00 00
+T2C78 055:573.623 - 0.487ms returns 4 (0x4)
+T2C78 055:575.079 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 055:575.141 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 055:575.558 Data: EF 00 00 00
+T2C78 055:575.593 - 0.523ms returns 4 (0x4)
+T2C78 055:576.228 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 055:576.276 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 055:576.655 Data: 3F 01 00 00
+T2C78 055:576.689 - 0.471ms returns 4 (0x4)
+T2C78 055:578.585 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 055:578.642 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 055:579.009 Data: 42 08 00 00
+T2C78 055:579.034 - 0.456ms returns 4 (0x4)
+T2C78 055:579.889 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 055:579.921 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 055:580.287 Data: 00 00 00 00
+T2C78 055:580.309 - 0.426ms returns 4 (0x4)
+T2C78 055:580.362 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 055:580.381 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 055:580.676 Data: 00
+T2C78 055:580.695 - 0.339ms returns 1 (0x1)
+T2C78 055:580.714 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 055:580.730 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 055:581.029 Data: 01
+T2C78 055:581.047 - 0.338ms returns 1 (0x1)
+T2C78 055:581.063 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 055:581.077 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 055:581.362 Data: 01
+T2C78 055:581.380 - 0.322ms returns 1 (0x1)
+T2C78 055:581.722 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 055:581.745 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 055:582.030 Data: 00
+T2C78 055:582.049 - 0.334ms returns 1 (0x1)
+T19A8 055:582.405 JLINK_IsHalted()
+T19A8 055:582.724 - 0.325ms returns FALSE
+T19A8 055:682.916 JLINK_HasError()
+T19A8 055:682.982 JLINK_IsHalted()
+T19A8 055:683.476 - 0.542ms returns FALSE
+T19A8 055:784.199 JLINK_HasError()
+T19A8 055:784.267 JLINK_IsHalted()
+T19A8 055:784.682 - 0.429ms returns FALSE
+T19A8 055:885.715 JLINK_HasError()
+T19A8 055:885.787 JLINK_IsHalted()
+T19A8 055:886.279 - 0.540ms returns FALSE
+T19A8 055:987.280 JLINK_HasError()
+T19A8 055:989.011 JLINK_IsHalted()
+T19A8 055:989.551 - 0.553ms returns FALSE
+T19A8 056:090.076 JLINK_HasError()
+T19A8 056:090.142 JLINK_HasError()
+T19A8 056:090.166 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 056:090.212 Data: B2 47 02 03
+T19A8 056:090.244 Debug reg: DWT_CYCCNT
+T19A8 056:090.272 - 0.115ms returns 1 (0x1)
+T2C78 056:090.615 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 056:090.707 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 056:091.105 Data: 00
+T2C78 056:091.144 - 0.538ms returns 1 (0x1)
+T2C78 056:091.217 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 056:091.252 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 056:091.632 Data: 32
+T2C78 056:091.664 - 0.457ms returns 1 (0x1)
+T2C78 056:091.816 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 056:091.842 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 056:092.165 Data: C1 00 00 00
+T2C78 056:092.197 - 0.390ms returns 4 (0x4)
+T2C78 056:094.562 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 056:094.635 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 056:095.060 Data: A9 00 00 00
+T2C78 056:095.116 - 0.564ms returns 4 (0x4)
+T2C78 056:095.882 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 056:095.928 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 056:096.305 Data: E1 00 00 00
+T2C78 056:096.346 - 0.475ms returns 4 (0x4)
+T2C78 056:097.131 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 056:097.180 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 056:097.549 Data: 3F 01 00 00
+T2C78 056:097.584 - 0.462ms returns 4 (0x4)
+T2C78 056:098.207 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 056:098.248 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 056:098.617 Data: 77 13 00 00
+T2C78 056:098.650 - 0.453ms returns 4 (0x4)
+T2C78 056:099.774 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 056:099.817 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 056:100.165 Data: 00 00 00 00
+T2C78 056:100.196 - 0.431ms returns 4 (0x4)
+T2C78 056:100.263 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 056:100.289 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 056:100.651 Data: 00
+T2C78 056:100.680 - 0.425ms returns 1 (0x1)
+T2C78 056:100.709 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 056:100.732 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 056:101.055 Data: 01
+T2C78 056:101.081 - 0.380ms returns 1 (0x1)
+T2C78 056:101.105 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 056:101.125 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 056:101.472 Data: 01
+T2C78 056:101.498 - 0.411ms returns 1 (0x1)
+T2C78 056:102.043 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 056:102.075 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 056:102.414 Data: 00
+T2C78 056:102.442 - 0.406ms returns 1 (0x1)
+T19A8 056:102.996 JLINK_IsHalted()
+T19A8 056:103.632 - 0.671ms returns FALSE
+T19A8 056:203.898 JLINK_HasError()
+T19A8 056:203.960 JLINK_IsHalted()
+T19A8 056:204.493 - 0.581ms returns FALSE
+T19A8 056:304.776 JLINK_HasError()
+T19A8 056:304.843 JLINK_IsHalted()
+T19A8 056:305.312 - 0.519ms returns FALSE
+T19A8 056:405.450 JLINK_HasError()
+T19A8 056:405.519 JLINK_IsHalted()
+T19A8 056:405.924 - 0.419ms returns FALSE
+T19A8 056:506.046 JLINK_HasError()
+T19A8 056:506.116 JLINK_IsHalted()
+T19A8 056:506.536 - 0.436ms returns FALSE
+T19A8 056:606.702 JLINK_HasError()
+T19A8 056:606.763 JLINK_HasError()
+T19A8 056:606.789 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 056:606.835 Data: B2 47 02 03
+T19A8 056:606.869 Debug reg: DWT_CYCCNT
+T19A8 056:606.897 - 0.117ms returns 1 (0x1)
+T2C78 056:607.339 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 056:607.435 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 056:607.857 Data: 00
+T2C78 056:607.895 - 0.566ms returns 1 (0x1)
+T2C78 056:607.970 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 056:608.006 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 056:608.384 Data: 32
+T2C78 056:608.417 - 0.456ms returns 1 (0x1)
+T2C78 056:608.569 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 056:608.598 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 056:608.973 Data: C1 00 00 00
+T2C78 056:609.010 - 0.450ms returns 4 (0x4)
+T2C78 056:609.916 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 056:609.964 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 056:610.327 Data: 00 00 00 00
+T2C78 056:610.362 - 0.455ms returns 4 (0x4)
+T2C78 056:610.992 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 056:611.032 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 056:611.373 Data: EF 00 00 00
+T2C78 056:611.406 - 0.424ms returns 4 (0x4)
+T2C78 056:613.428 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 056:613.492 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 056:613.842 Data: 4E 00 00 00
+T2C78 056:613.876 - 0.457ms returns 4 (0x4)
+T2C78 056:614.503 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 056:614.542 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 056:614.878 Data: 81 0E 00 00
+T2C78 056:614.912 - 0.419ms returns 4 (0x4)
+T2C78 056:615.896 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 056:615.935 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 056:616.292 Data: 00 00 00 00
+T2C78 056:616.320 - 0.431ms returns 4 (0x4)
+T2C78 056:616.379 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 056:616.400 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 056:616.745 Data: 00
+T2C78 056:616.771 - 0.399ms returns 1 (0x1)
+T2C78 056:616.793 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 056:616.810 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 056:617.139 Data: 01
+T2C78 056:617.161 - 0.375ms returns 1 (0x1)
+T2C78 056:617.181 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 056:617.198 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 056:617.515 Data: 01
+T2C78 056:617.537 - 0.363ms returns 1 (0x1)
+T2C78 056:617.557 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 056:617.574 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 056:617.906 Data: 00
+T2C78 056:617.928 - 0.377ms returns 1 (0x1)
+T19A8 056:618.038 JLINK_IsHalted()
+T19A8 056:618.405 - 0.382ms returns FALSE
+T19A8 056:718.474 JLINK_HasError()
+T19A8 056:718.539 JLINK_IsHalted()
+T19A8 056:718.918 - 0.393ms returns FALSE
+T19A8 056:819.521 JLINK_HasError()
+T19A8 056:819.603 JLINK_IsHalted()
+T19A8 056:820.253 - 0.706ms returns FALSE
+T19A8 056:920.563 JLINK_HasError()
+T19A8 056:920.634 JLINK_IsHalted()
+T19A8 056:921.040 - 0.424ms returns FALSE
+T19A8 057:021.456 JLINK_HasError()
+T19A8 057:021.836 JLINK_IsHalted()
+T19A8 057:022.334 - 0.537ms returns FALSE
+T19A8 057:123.200 JLINK_HasError()
+T19A8 057:123.266 JLINK_HasError()
+T19A8 057:123.291 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 057:123.338 Data: B2 47 02 03
+T19A8 057:123.370 Debug reg: DWT_CYCCNT
+T19A8 057:123.398 - 0.116ms returns 1 (0x1)
+T2C78 057:123.751 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 057:123.842 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 057:124.305 Data: 00
+T2C78 057:124.344 - 0.603ms returns 1 (0x1)
+T2C78 057:124.426 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 057:124.462 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 057:124.833 Data: 32
+T2C78 057:124.866 - 0.449ms returns 1 (0x1)
+T2C78 057:125.024 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 057:125.051 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 057:125.426 Data: 20 00 00 00
+T2C78 057:125.464 - 0.450ms returns 4 (0x4)
+T2C78 057:126.375 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 057:126.428 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 057:126.766 Data: 52 00 00 00
+T2C78 057:126.802 - 0.438ms returns 4 (0x4)
+T2C78 057:128.170 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 057:128.223 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 057:128.619 Data: 48 00 00 00
+T2C78 057:128.653 - 0.493ms returns 4 (0x4)
+T2C78 057:130.219 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 057:130.271 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 057:130.682 Data: 84 00 00 00
+T2C78 057:130.737 - 0.528ms returns 4 (0x4)
+T2C78 057:131.774 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 057:131.818 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 057:132.168 Data: 2B 08 00 00
+T2C78 057:132.197 - 0.431ms returns 4 (0x4)
+T2C78 057:133.034 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 057:133.065 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 057:133.407 Data: 00 00 00 00
+T2C78 057:133.429 - 0.401ms returns 4 (0x4)
+T2C78 057:133.478 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 057:133.496 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 057:133.799 Data: 00
+T2C78 057:133.818 - 0.346ms returns 1 (0x1)
+T2C78 057:133.837 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 057:133.852 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 057:134.147 Data: 01
+T2C78 057:134.166 - 0.335ms returns 1 (0x1)
+T2C78 057:134.184 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 057:134.199 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 057:134.496 Data: 02
+T2C78 057:134.515 - 0.337ms returns 1 (0x1)
+T2C78 057:134.878 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 057:134.902 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 057:135.197 Data: 01
+T2C78 057:135.216 - 0.343ms returns 1 (0x1)
+T19A8 057:135.578 JLINK_IsHalted()
+T19A8 057:135.915 - 0.351ms returns FALSE
+T19A8 057:236.012 JLINK_HasError()
+T19A8 057:236.063 JLINK_IsHalted()
+T19A8 057:236.353 - 0.295ms returns FALSE
+T19A8 057:337.212 JLINK_HasError()
+T19A8 057:337.275 JLINK_IsHalted()
+T19A8 057:337.669 - 0.439ms returns FALSE
+T19A8 057:438.433 JLINK_HasError()
+T19A8 057:438.504 JLINK_IsHalted()
+T19A8 057:438.912 - 0.453ms returns FALSE
+T19A8 057:539.395 JLINK_HasError()
+T19A8 057:539.454 JLINK_IsHalted()
+T19A8 057:539.930 - 0.490ms returns FALSE
+T19A8 057:640.014 JLINK_HasError()
+T19A8 057:640.080 JLINK_HasError()
+T19A8 057:640.104 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 057:640.152 Data: B2 47 02 03
+T19A8 057:640.184 Debug reg: DWT_CYCCNT
+T19A8 057:640.212 - 0.123ms returns 1 (0x1)
+T2C78 057:640.570 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 057:640.607 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 057:641.275 Data: 00
+T2C78 057:641.364 - 0.804ms returns 1 (0x1)
+T2C78 057:641.451 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 057:641.498 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 057:641.953 Data: 32
+T2C78 057:641.990 - 0.549ms returns 1 (0x1)
+T2C78 057:642.138 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 057:642.184 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 057:642.612 Data: C1 00 00 00
+T2C78 057:642.645 - 0.517ms returns 4 (0x4)
+T2C78 057:644.071 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 057:644.125 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 057:644.614 Data: A9 00 00 00
+T2C78 057:644.650 - 0.587ms returns 4 (0x4)
+T2C78 057:645.657 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 057:645.693 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 057:646.031 Data: E1 00 00 00
+T2C78 057:646.057 - 0.407ms returns 4 (0x4)
+T2C78 057:646.750 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 057:646.777 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 057:647.119 Data: 3F 01 00 00
+T2C78 057:647.161 - 0.416ms returns 4 (0x4)
+T2C78 057:647.760 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 057:647.782 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 057:648.121 Data: 77 13 00 00
+T2C78 057:648.143 - 0.388ms returns 4 (0x4)
+T2C78 057:648.724 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 057:648.745 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 057:649.070 Data: 00 00 00 00
+T2C78 057:649.086 - 0.367ms returns 4 (0x4)
+T2C78 057:649.133 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 057:649.147 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 057:649.495 Data: 00
+T2C78 057:649.509 - 0.380ms returns 1 (0x1)
+T2C78 057:649.523 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 057:649.535 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 057:649.802 Data: 01
+T2C78 057:649.816 - 0.296ms returns 1 (0x1)
+T2C78 057:649.828 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 057:649.839 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 057:650.110 Data: 02
+T2C78 057:650.123 - 0.299ms returns 1 (0x1)
+T2C78 057:650.394 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 057:650.414 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 057:650.709 Data: 01
+T2C78 057:650.723 - 0.333ms returns 1 (0x1)
+T19A8 057:650.972 JLINK_IsHalted()
+T19A8 057:651.267 - 0.301ms returns FALSE
+T19A8 057:751.569 JLINK_HasError()
+T19A8 057:751.646 JLINK_IsHalted()
+T19A8 057:752.169 - 0.572ms returns FALSE
+T19A8 057:852.808 JLINK_HasError()
+T19A8 057:852.870 JLINK_IsHalted()
+T19A8 057:853.525 - 0.669ms returns FALSE
+T19A8 057:954.423 JLINK_HasError()
+T19A8 057:954.493 JLINK_IsHalted()
+T19A8 057:955.049 - 0.598ms returns FALSE
+T19A8 058:055.166 JLINK_HasError()
+T19A8 058:055.231 JLINK_IsHalted()
+T19A8 058:055.662 - 0.446ms returns FALSE
+T19A8 058:156.012 JLINK_HasError()
+T19A8 058:156.078 JLINK_HasError()
+T19A8 058:156.103 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 058:156.150 Data: B2 47 02 03
+T19A8 058:156.181 Debug reg: DWT_CYCCNT
+T19A8 058:156.209 - 0.116ms returns 1 (0x1)
+T2C78 058:156.636 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 058:156.734 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 058:157.160 Data: 00
+T2C78 058:157.195 - 0.568ms returns 1 (0x1)
+T2C78 058:157.243 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 058:157.272 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 058:157.638 Data: 32
+T2C78 058:157.671 - 0.437ms returns 1 (0x1)
+T2C78 058:157.782 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 058:157.808 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 058:158.173 Data: C1 00 00 00
+T2C78 058:158.205 - 0.432ms returns 4 (0x4)
+T2C78 058:159.089 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 058:159.140 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 058:159.508 Data: 00 00 00 00
+T2C78 058:159.542 - 0.463ms returns 4 (0x4)
+T2C78 058:160.647 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 058:160.691 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 058:161.037 Data: EF 00 00 00
+T2C78 058:161.071 - 0.434ms returns 4 (0x4)
+T2C78 058:162.060 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 058:162.203 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 058:162.557 Data: 4E 00 00 00
+T2C78 058:162.587 - 0.537ms returns 4 (0x4)
+T2C78 058:163.344 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 058:163.375 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 058:163.685 Data: 81 0E 00 00
+T2C78 058:163.709 - 0.371ms returns 4 (0x4)
+T2C78 058:164.441 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 058:164.468 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 058:164.796 Data: 00 00 00 00
+T2C78 058:164.817 - 0.382ms returns 4 (0x4)
+T2C78 058:164.863 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 058:164.879 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 058:165.168 Data: 00
+T2C78 058:165.186 - 0.328ms returns 1 (0x1)
+T2C78 058:165.205 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 058:165.219 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 058:165.494 Data: 01
+T2C78 058:165.511 - 0.310ms returns 1 (0x1)
+T2C78 058:165.526 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 058:165.539 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 058:165.809 Data: 02
+T2C78 058:165.826 - 0.305ms returns 1 (0x1)
+T2C78 058:165.841 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 058:165.854 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 058:166.122 Data: 01
+T2C78 058:166.139 - 0.302ms returns 1 (0x1)
+T19A8 058:166.201 JLINK_IsHalted()
+T19A8 058:166.522 - 0.331ms returns FALSE
+T19A8 058:266.814 JLINK_HasError()
+T19A8 058:266.882 JLINK_IsHalted()
+T19A8 058:267.288 - 0.419ms returns FALSE
+T19A8 058:368.035 JLINK_HasError()
+T19A8 058:368.102 JLINK_IsHalted()
+T19A8 058:368.492 - 0.406ms returns FALSE
+T19A8 058:468.575 JLINK_HasError()
+T19A8 058:468.630 JLINK_IsHalted()
+T19A8 058:469.053 - 0.437ms returns FALSE
+T19A8 058:569.656 JLINK_HasError()
+T19A8 058:570.419 JLINK_IsHalted()
+T19A8 058:570.882 - 0.484ms returns FALSE
+T19A8 058:671.762 JLINK_HasError()
+T19A8 058:671.828 JLINK_HasError()
+T19A8 058:671.852 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 058:671.899 Data: B2 47 02 03
+T19A8 058:671.932 Debug reg: DWT_CYCCNT
+T19A8 058:671.961 - 0.118ms returns 1 (0x1)
+T2C78 058:672.321 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 058:672.414 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 058:672.812 Data: 00
+T2C78 058:672.856 - 0.545ms returns 1 (0x1)
+T2C78 058:672.937 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 058:672.974 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 058:673.338 Data: 32
+T2C78 058:673.371 - 0.444ms returns 1 (0x1)
+T2C78 058:673.525 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 058:673.553 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 058:673.918 Data: E2 00 00 00
+T2C78 058:673.950 - 0.434ms returns 4 (0x4)
+T2C78 058:674.843 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 058:674.902 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 058:675.288 Data: A9 00 00 00
+T2C78 058:675.322 - 0.490ms returns 4 (0x4)
+T2C78 058:676.444 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 058:676.490 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 058:676.832 Data: EF 00 00 00
+T2C78 058:676.866 - 0.432ms returns 4 (0x4)
+T2C78 058:677.453 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 058:677.491 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 058:677.821 Data: 3F 01 00 00
+T2C78 058:677.854 - 0.410ms returns 4 (0x4)
+T2C78 058:678.805 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 058:678.844 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 058:679.180 Data: 42 08 00 00
+T2C78 058:679.216 - 0.419ms returns 4 (0x4)
+T2C78 058:680.598 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 058:680.609 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 058:680.856 Data: 00 00 00 00
+T2C78 058:680.863 - 0.266ms returns 4 (0x4)
+T2C78 058:680.879 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 058:680.884 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 058:681.127 Data: 00
+T2C78 058:681.133 - 0.255ms returns 1 (0x1)
+T2C78 058:681.138 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 058:681.143 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 058:681.383 Data: 01
+T2C78 058:681.390 - 0.253ms returns 1 (0x1)
+T2C78 058:681.396 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 058:681.401 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 058:681.641 Data: 01
+T2C78 058:681.647 - 0.253ms returns 1 (0x1)
+T2C78 058:681.798 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 058:681.807 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 058:682.056 Data: 02
+T2C78 058:682.063 - 0.266ms returns 1 (0x1)
+T19A8 058:682.715 JLINK_IsHalted()
+T19A8 058:682.968 - 0.255ms returns FALSE
+T19A8 058:783.545 JLINK_HasError()
+T19A8 058:783.621 JLINK_IsHalted()
+T19A8 058:784.129 - 0.555ms returns FALSE
+T19A8 058:884.267 JLINK_HasError()
+T19A8 058:884.332 JLINK_IsHalted()
+T19A8 058:884.760 - 0.442ms returns FALSE
+T19A8 058:985.370 JLINK_HasError()
+T19A8 058:985.435 JLINK_IsHalted()
+T19A8 058:985.872 - 0.451ms returns FALSE
+T19A8 059:086.244 JLINK_HasError()
+T19A8 059:086.300 JLINK_IsHalted()
+T19A8 059:087.206 - 0.952ms returns FALSE
+T19A8 059:187.332 JLINK_HasError()
+T19A8 059:187.417 JLINK_HasError()
+T19A8 059:187.444 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 059:187.498 Data: B2 47 02 03
+T19A8 059:187.533 Debug reg: DWT_CYCCNT
+T19A8 059:187.565 - 0.132ms returns 1 (0x1)
+T2C78 059:187.972 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 059:188.088 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 059:188.542 Data: 00
+T2C78 059:188.584 - 0.623ms returns 1 (0x1)
+T2C78 059:188.675 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 059:188.712 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 059:189.100 Data: 32
+T2C78 059:189.136 - 0.473ms returns 1 (0x1)
+T2C78 059:189.409 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 059:189.440 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 059:189.839 Data: C1 00 00 00
+T2C78 059:189.875 - 0.477ms returns 4 (0x4)
+T2C78 059:191.403 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 059:191.454 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 059:191.808 Data: A9 00 00 00
+T2C78 059:191.970 - 0.577ms returns 4 (0x4)
+T2C78 059:192.570 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 059:192.610 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 059:192.962 Data: E1 00 00 00
+T2C78 059:192.996 - 0.435ms returns 4 (0x4)
+T2C78 059:193.585 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 059:193.624 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 059:193.964 Data: 3F 01 00 00
+T2C78 059:194.001 - 0.426ms returns 4 (0x4)
+T2C78 059:194.635 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 059:194.673 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 059:195.098 Data: 77 13 00 00
+T2C78 059:195.179 - 0.557ms returns 4 (0x4)
+T2C78 059:196.766 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 059:196.832 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 059:197.289 Data: 00 00 00 00
+T2C78 059:197.316 - 0.558ms returns 4 (0x4)
+T2C78 059:197.414 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 059:197.443 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 059:197.748 Data: 00
+T2C78 059:197.775 - 0.369ms returns 1 (0x1)
+T2C78 059:197.801 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 059:197.822 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 059:198.155 Data: 01
+T2C78 059:198.179 - 0.385ms returns 1 (0x1)
+T2C78 059:198.200 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 059:198.224 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 059:198.532 Data: 01
+T2C78 059:198.560 - 0.368ms returns 1 (0x1)
+T2C78 059:199.107 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 059:199.137 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 059:199.497 Data: 02
+T2C78 059:199.523 - 0.422ms returns 1 (0x1)
+T19A8 059:199.955 JLINK_IsHalted()
+T19A8 059:200.279 - 0.345ms returns FALSE
+T19A8 059:300.445 JLINK_HasError()
+T19A8 059:300.521 JLINK_IsHalted()
+T19A8 059:300.982 - 0.509ms returns FALSE
+T19A8 059:402.081 JLINK_HasError()
+T19A8 059:402.153 JLINK_IsHalted()
+T19A8 059:402.587 - 0.475ms returns FALSE
+T19A8 059:503.342 JLINK_HasError()
+T19A8 059:503.414 JLINK_IsHalted()
+T19A8 059:503.962 - 0.596ms returns FALSE
+T19A8 059:604.268 JLINK_HasError()
+T19A8 059:604.336 JLINK_IsHalted()
+T19A8 059:604.929 - 0.637ms returns FALSE
+T19A8 059:705.466 JLINK_HasError()
+T19A8 059:705.530 JLINK_HasError()
+T19A8 059:705.555 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 059:705.602 Data: B2 47 02 03
+T19A8 059:705.634 Debug reg: DWT_CYCCNT
+T19A8 059:705.662 - 0.116ms returns 1 (0x1)
+T2C78 059:706.002 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 059:706.038 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 059:706.480 Data: 00
+T2C78 059:706.516 - 0.523ms returns 1 (0x1)
+T2C78 059:706.560 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 059:706.589 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 059:706.952 Data: 32
+T2C78 059:706.985 - 0.434ms returns 1 (0x1)
+T2C78 059:707.089 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 059:707.116 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 059:707.475 Data: C1 00 00 00
+T2C78 059:707.507 - 0.427ms returns 4 (0x4)
+T2C78 059:708.448 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 059:708.499 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 059:708.943 Data: 00 00 00 00
+T2C78 059:708.978 - 0.539ms returns 4 (0x4)
+T2C78 059:709.642 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 059:709.683 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 059:710.032 Data: EF 00 00 00
+T2C78 059:710.067 - 0.434ms returns 4 (0x4)
+T2C78 059:711.065 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 059:711.103 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 059:711.676 Data: 4E 00 00 00
+T2C78 059:711.755 - 0.701ms returns 4 (0x4)
+T2C78 059:712.922 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 059:712.979 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 059:713.325 Data: 81 0E 00 00
+T2C78 059:713.359 - 0.444ms returns 4 (0x4)
+T2C78 059:714.272 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 059:714.311 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 059:714.646 Data: 00 00 00 00
+T2C78 059:714.668 - 0.401ms returns 4 (0x4)
+T2C78 059:714.723 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 059:714.744 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 059:715.072 Data: 00
+T2C78 059:715.089 - 0.371ms returns 1 (0x1)
+T2C78 059:715.106 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 059:715.120 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 059:715.388 Data: 01
+T2C78 059:715.405 - 0.304ms returns 1 (0x1)
+T2C78 059:715.420 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 059:715.433 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 059:715.715 Data: 02
+T2C78 059:715.738 - 0.323ms returns 1 (0x1)
+T2C78 059:716.093 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 059:716.112 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 059:716.484 Data: 01
+T2C78 059:716.501 - 0.412ms returns 1 (0x1)
+T19A8 059:717.450 JLINK_IsHalted()
+T19A8 059:717.765 - 0.321ms returns FALSE
+T19A8 059:818.356 JLINK_HasError()
+T19A8 059:818.427 JLINK_IsHalted()
+T19A8 059:818.873 - 0.462ms returns FALSE
+T19A8 059:919.948 JLINK_HasError()
+T19A8 059:920.020 JLINK_IsHalted()
+T19A8 059:920.676 - 0.704ms returns FALSE
+T19A8 060:021.179 JLINK_HasError()
+T19A8 060:021.272 JLINK_IsHalted()
+T19A8 060:021.803 - 0.546ms returns FALSE
+T19A8 060:122.003 JLINK_HasError()
+T19A8 060:122.071 JLINK_IsHalted()
+T19A8 060:122.520 - 0.463ms returns FALSE
+T19A8 060:222.609 JLINK_HasError()
+T19A8 060:222.676 JLINK_HasError()
+T19A8 060:222.700 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 060:222.748 Data: B2 47 02 03
+T19A8 060:222.779 Debug reg: DWT_CYCCNT
+T19A8 060:222.807 - 0.117ms returns 1 (0x1)
+T2C78 060:223.181 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 060:223.277 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 060:223.708 Data: 00
+T2C78 060:223.752 - 0.583ms returns 1 (0x1)
+T2C78 060:223.824 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 060:223.862 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 060:224.289 Data: 32
+T2C78 060:224.322 - 0.508ms returns 1 (0x1)
+T2C78 060:224.477 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 060:224.504 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 060:224.888 Data: 20 00 00 00
+T2C78 060:224.929 - 0.462ms returns 4 (0x4)
+T2C78 060:226.940 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 060:227.023 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 060:227.433 Data: 0C 00 00 00
+T2C78 060:227.468 - 0.538ms returns 4 (0x4)
+T2C78 060:228.562 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 060:228.603 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 060:228.958 Data: 48 00 00 00
+T2C78 060:228.986 - 0.431ms returns 4 (0x4)
+T2C78 060:229.724 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 060:229.754 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 060:230.073 Data: 3E 00 00 00
+T2C78 060:230.095 - 0.377ms returns 4 (0x4)
+T2C78 060:230.670 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 060:230.692 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 060:230.986 Data: 2B 08 00 00
+T2C78 060:231.004 - 0.338ms returns 4 (0x4)
+T2C78 060:231.747 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 060:231.778 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 060:232.120 Data: 00 00 00 00
+T2C78 060:232.146 - 0.403ms returns 4 (0x4)
+T2C78 060:232.220 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 060:232.258 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 060:232.549 Data: 00
+T2C78 060:232.581 - 0.365ms returns 1 (0x1)
+T2C78 060:232.598 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 060:232.612 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 060:232.906 Data: 01
+T2C78 060:232.923 - 0.328ms returns 1 (0x1)
+T2C78 060:232.940 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 060:232.958 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 060:233.444 Data: 63
+T2C78 060:233.470 - 0.534ms returns 1 (0x1)
+T2C78 060:233.758 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 060:233.774 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 060:234.666 Data: 63
+T2C78 060:234.695 - 0.942ms returns 1 (0x1)
+T19A8 060:235.114 JLINK_IsHalted()
+T19A8 060:235.390 - 0.282ms returns FALSE
+T19A8 060:336.037 JLINK_HasError()
+T19A8 060:336.121 JLINK_IsHalted()
+T19A8 060:337.194 - 1.125ms returns FALSE
+T19A8 060:437.786 JLINK_HasError()
+T19A8 060:437.858 JLINK_IsHalted()
+T19A8 060:438.295 - 0.451ms returns FALSE
+T19A8 060:539.481 JLINK_HasError()
+T19A8 060:539.560 JLINK_IsHalted()
+T19A8 060:540.059 - 0.547ms returns FALSE
+T19A8 060:640.509 JLINK_HasError()
+T19A8 060:640.573 JLINK_IsHalted()
+T19A8 060:640.950 - 0.391ms returns FALSE
+T19A8 060:741.788 JLINK_HasError()
+T19A8 060:741.845 JLINK_HasError()
+T19A8 060:741.861 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 060:741.895 Data: B2 47 02 03
+T19A8 060:741.916 Debug reg: DWT_CYCCNT
+T19A8 060:741.935 - 0.080ms returns 1 (0x1)
+T2C78 060:742.260 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 060:742.332 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 060:742.818 Data: 00
+T2C78 060:742.877 - 0.626ms returns 1 (0x1)
+T2C78 060:742.938 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 060:742.970 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 060:743.437 Data: 32
+T2C78 060:743.481 - 0.549ms returns 1 (0x1)
+T2C78 060:743.608 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 060:743.637 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 060:744.012 Data: E2 00 00 00
+T2C78 060:744.052 - 0.449ms returns 4 (0x4)
+T2C78 060:744.893 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 060:744.928 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 060:745.280 Data: A9 00 00 00
+T2C78 060:745.311 - 0.423ms returns 4 (0x4)
+T2C78 060:746.156 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 060:746.188 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 060:746.505 Data: EF 00 00 00
+T2C78 060:746.523 - 0.373ms returns 4 (0x4)
+T2C78 060:747.053 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 060:747.077 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 060:747.395 Data: 3F 01 00 00
+T2C78 060:747.411 - 0.363ms returns 4 (0x4)
+T2C78 060:747.848 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 060:747.867 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 060:748.192 Data: 42 08 00 00
+T2C78 060:748.206 - 0.362ms returns 4 (0x4)
+T2C78 060:748.659 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 060:748.676 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 060:748.977 Data: 00 00 00 00
+T2C78 060:748.990 - 0.335ms returns 4 (0x4)
+T2C78 060:749.021 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 060:749.031 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 060:749.344 Data: 00
+T2C78 060:749.355 - 0.337ms returns 1 (0x1)
+T2C78 060:749.366 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 060:749.375 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 060:749.657 Data: 01
+T2C78 060:749.667 - 0.304ms returns 1 (0x1)
+T2C78 060:749.677 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 060:749.686 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 060:749.937 Data: 63
+T2C78 060:749.947 - 0.273ms returns 1 (0x1)
+T2C78 060:750.164 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 060:750.177 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 060:750.451 Data: 63
+T2C78 060:750.463 - 0.302ms returns 1 (0x1)
+T19A8 060:750.709 JLINK_IsHalted()
+T19A8 060:751.022 - 0.322ms returns FALSE
+T19A8 060:851.934 JLINK_HasError()
+T19A8 060:851.997 JLINK_IsHalted()
+T19A8 060:852.503 - 0.521ms returns FALSE
+T19A8 060:952.961 JLINK_HasError()
+T19A8 060:953.719 JLINK_IsHalted()
+T19A8 060:954.127 - 0.424ms returns FALSE
+T19A8 061:054.994 JLINK_HasError()
+T19A8 061:055.089 JLINK_IsHalted()
+T19A8 061:055.770 - 0.792ms returns FALSE
+T19A8 061:156.815 JLINK_HasError()
+T19A8 061:156.907 JLINK_IsHalted()
+T19A8 061:157.438 - 0.582ms returns FALSE
+T19A8 061:257.980 JLINK_HasError()
+T19A8 061:258.030 JLINK_HasError()
+T19A8 061:258.037 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 061:258.054 Data: B2 47 02 03
+T19A8 061:258.063 Debug reg: DWT_CYCCNT
+T19A8 061:258.071 - 0.037ms returns 1 (0x1)
+T2C78 061:258.208 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 061:258.239 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 061:258.541 Data: 00
+T2C78 061:258.552 - 0.346ms returns 1 (0x1)
+T2C78 061:258.577 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 061:258.587 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 061:258.850 Data: 32
+T2C78 061:258.859 - 0.284ms returns 1 (0x1)
+T2C78 061:258.908 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 061:258.916 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 061:259.177 Data: C1 00 00 00
+T2C78 061:259.187 - 0.281ms returns 4 (0x4)
+T2C78 061:259.724 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 061:259.741 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 061:260.006 Data: 00 00 00 00
+T2C78 061:260.025 - 0.304ms returns 4 (0x4)
+T2C78 061:260.488 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 061:260.510 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 061:260.844 Data: EF 00 00 00
+T2C78 061:260.857 - 0.371ms returns 4 (0x4)
+T2C78 061:261.032 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 061:261.044 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 061:261.352 Data: 4E 00 00 00
+T2C78 061:261.361 - 0.332ms returns 4 (0x4)
+T2C78 061:261.632 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 061:261.643 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 061:261.963 Data: 81 0E 00 00
+T2C78 061:261.974 - 0.344ms returns 4 (0x4)
+T2C78 061:262.305 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 061:262.320 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 061:262.622 Data: 00 00 00 00
+T2C78 061:262.631 - 0.329ms returns 4 (0x4)
+T2C78 061:262.665 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 061:262.672 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 061:262.971 Data: 00
+T2C78 061:262.979 - 0.317ms returns 1 (0x1)
+T2C78 061:262.987 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 061:262.994 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 061:263.254 Data: 01
+T2C78 061:263.262 - 0.277ms returns 1 (0x1)
+T2C78 061:263.269 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 061:263.276 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 061:263.533 Data: 63
+T2C78 061:263.541 - 0.274ms returns 1 (0x1)
+T2C78 061:263.549 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 061:263.555 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 061:263.804 Data: 63
+T2C78 061:263.812 - 0.265ms returns 1 (0x1)
+T19A8 061:263.846 JLINK_IsHalted()
+T19A8 061:264.117 - 0.276ms returns FALSE
+T19A8 061:364.199 JLINK_HasError()
+T19A8 061:364.266 JLINK_IsHalted()
+T19A8 061:364.668 - 0.416ms returns FALSE
+T19A8 061:465.600 JLINK_HasError()
+T19A8 061:465.648 JLINK_IsHalted()
+T19A8 061:466.054 - 0.444ms returns FALSE
+T19A8 061:566.167 JLINK_HasError()
+T19A8 061:566.222 JLINK_IsHalted()
+T19A8 061:566.607 - 0.400ms returns FALSE
+T19A8 061:666.757 JLINK_HasError()
+T19A8 061:666.822 JLINK_IsHalted()
+T19A8 061:667.225 - 0.448ms returns FALSE
+T19A8 061:767.343 JLINK_HasError()
+T19A8 061:767.414 JLINK_IsHalted()
+T19A8 061:767.872 - 0.506ms returns FALSE
+T19A8 061:868.073 JLINK_HasError()
+T19A8 061:868.144 JLINK_HasError()
+T19A8 061:868.168 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 061:868.215 Data: B2 47 02 03
+T19A8 061:868.247 Debug reg: DWT_CYCCNT
+T19A8 061:868.276 - 0.117ms returns 1 (0x1)
+T2C78 061:868.617 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 061:868.699 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 061:869.253 Data: 00
+T2C78 061:869.324 - 0.717ms returns 1 (0x1)
+T2C78 061:869.409 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 061:869.455 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 061:870.331 Data: 32
+T2C78 061:870.401 - 1.003ms returns 1 (0x1)
+T2C78 061:870.596 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 061:870.642 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 061:871.004 Data: C1 00 00 00
+T2C78 061:871.050 - 0.464ms returns 4 (0x4)
+T2C78 061:872.407 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 061:872.489 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 061:872.889 Data: 00 00 00 00
+T2C78 061:872.942 - 0.546ms returns 4 (0x4)
+T2C78 061:873.809 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 061:873.862 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 061:874.213 Data: EF 00 00 00
+T2C78 061:874.248 - 0.449ms returns 4 (0x4)
+T2C78 061:874.294 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 061:874.322 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 061:874.651 Data: 4E 00 00 00
+T2C78 061:874.684 - 0.399ms returns 4 (0x4)
+T2C78 061:875.319 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 061:875.358 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 061:875.714 Data: 81 0E 00 00
+T2C78 061:875.748 - 0.438ms returns 4 (0x4)
+T2C78 061:876.407 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 061:876.447 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 061:876.824 Data: 00 00 00 00
+T2C78 061:876.860 - 0.462ms returns 4 (0x4)
+T2C78 061:876.927 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 061:876.954 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 061:877.292 Data: 00
+T2C78 061:877.324 - 0.406ms returns 1 (0x1)
+T2C78 061:877.355 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 061:877.380 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 061:877.719 Data: 01
+T2C78 061:877.749 - 0.403ms returns 1 (0x1)
+T2C78 061:877.775 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 061:877.797 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 061:878.120 Data: 63
+T2C78 061:878.150 - 0.385ms returns 1 (0x1)
+T2C78 061:878.179 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 061:878.204 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 061:878.551 Data: 63
+T2C78 061:878.586 - 0.416ms returns 1 (0x1)
+T19A8 061:878.696 JLINK_IsHalted()
+T19A8 061:879.106 - 0.427ms returns FALSE
+T19A8 061:979.374 JLINK_HasError()
+T19A8 061:979.461 JLINK_IsHalted()
+T19A8 061:979.961 - 0.542ms returns FALSE
+T19A8 062:080.407 JLINK_HasError()
+T19A8 062:080.472 JLINK_IsHalted()
+T19A8 062:080.869 - 0.411ms returns FALSE
+T19A8 062:182.264 JLINK_HasError()
+T19A8 062:182.327 JLINK_IsHalted()
+T19A8 062:182.817 - 0.537ms returns FALSE
+T19A8 062:283.022 JLINK_HasError()
+T19A8 062:283.072 JLINK_IsHalted()
+T19A8 062:283.468 - 0.405ms returns FALSE
+T19A8 062:384.127 JLINK_HasError()
+T19A8 062:384.206 JLINK_HasError()
+T19A8 062:384.233 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 062:384.281 Data: B2 47 02 03
+T19A8 062:384.313 Debug reg: DWT_CYCCNT
+T19A8 062:384.343 - 0.121ms returns 1 (0x1)
+T2C78 062:384.913 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 062:384.963 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 062:385.382 Data: 56
+T2C78 062:385.416 - 0.513ms returns 1 (0x1)
+T2C78 062:386.395 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 062:386.449 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 062:386.833 Data: 32
+T2C78 062:386.865 - 0.479ms returns 1 (0x1)
+T2C78 062:387.180 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 062:387.268 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 062:387.617 Data: E2 00 00 00
+T2C78 062:387.649 - 0.476ms returns 4 (0x4)
+T2C78 062:388.311 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 062:388.348 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 062:388.784 Data: A9 00 00 00
+T2C78 062:388.807 - 0.502ms returns 4 (0x4)
+T2C78 062:389.294 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 062:389.325 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 062:389.768 Data: EF 00 00 00
+T2C78 062:389.789 - 0.500ms returns 4 (0x4)
+T2C78 062:389.819 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 062:389.837 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 062:390.127 Data: 3F 01 00 00
+T2C78 062:390.146 - 0.333ms returns 4 (0x4)
+T2C78 062:390.534 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 062:390.558 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 062:390.865 Data: 42 08 00 00
+T2C78 062:390.887 - 0.357ms returns 4 (0x4)
+T2C78 062:391.247 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 062:391.269 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 062:391.600 Data: 00 00 00 00
+T2C78 062:391.616 - 0.373ms returns 4 (0x4)
+T2C78 062:391.651 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 062:391.664 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 062:391.952 Data: 01
+T2C78 062:391.967 - 0.321ms returns 1 (0x1)
+T2C78 062:392.243 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 062:392.261 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 062:392.586 Data: 00
+T2C78 062:392.602 - 0.363ms returns 1 (0x1)
+T2C78 062:392.836 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 062:392.857 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 062:393.123 Data: 63
+T2C78 062:393.137 - 0.306ms returns 1 (0x1)
+T2C78 062:393.152 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 062:393.167 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 062:393.483 Data: 63
+T2C78 062:393.497 - 0.348ms returns 1 (0x1)
+T19A8 062:393.556 JLINK_IsHalted()
+T19A8 062:393.857 - 0.309ms returns FALSE
+T19A8 062:494.177 JLINK_HasError()
+T19A8 062:494.245 JLINK_IsHalted()
+T19A8 062:494.675 - 0.478ms returns FALSE
+T19A8 062:594.959 JLINK_HasError()
+T19A8 062:595.061 JLINK_IsHalted()
+T19A8 062:595.676 - 0.667ms returns FALSE
+T19A8 062:695.933 JLINK_HasError()
+T19A8 062:695.966 JLINK_IsHalted()
+T19A8 062:696.268 - 0.309ms returns FALSE
+T19A8 062:796.976 JLINK_HasError()
+T19A8 062:797.013 JLINK_IsHalted()
+T19A8 062:797.300 - 0.292ms returns FALSE
+T19A8 062:897.715 JLINK_HasError()
+T19A8 062:897.800 JLINK_HasError()
+T19A8 062:897.826 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 062:897.932 Data: B2 47 02 03
+T19A8 062:898.074 Debug reg: DWT_CYCCNT
+T19A8 062:898.143 - 0.329ms returns 1 (0x1)
+T2C78 062:898.538 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 062:898.593 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 062:899.053 Data: 00
+T2C78 062:899.086 - 0.558ms returns 1 (0x1)
+T2C78 062:900.539 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 062:900.596 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 062:900.955 Data: 32
+T2C78 062:900.990 - 0.461ms returns 1 (0x1)
+T2C78 062:901.139 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 062:901.169 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 062:901.528 Data: C1 00 00 00
+T2C78 062:901.561 - 0.431ms returns 4 (0x4)
+T2C78 062:902.631 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 062:902.675 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 062:903.713 Data: A9 00 00 00
+T2C78 062:903.777 - 1.158ms returns 4 (0x4)
+T2C78 062:904.529 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 062:904.577 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 062:904.958 Data: E1 00 00 00
+T2C78 062:904.988 - 0.468ms returns 4 (0x4)
+T2C78 062:905.911 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 062:905.967 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 062:906.709 Data: 3F 01 00 00
+T2C78 062:906.734 - 0.830ms returns 4 (0x4)
+T2C78 062:907.172 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 062:907.199 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 062:907.531 Data: 42 08 00 00
+T2C78 062:907.552 - 0.386ms returns 4 (0x4)
+T2C78 062:907.921 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 062:907.943 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 062:908.268 Data: 00 00 00 00
+T2C78 062:908.287 - 0.370ms returns 4 (0x4)
+T2C78 062:908.324 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 062:908.339 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 062:908.638 Data: 02
+T2C78 062:908.655 - 0.336ms returns 1 (0x1)
+T2C78 062:908.946 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 062:908.964 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 062:909.264 Data: 01
+T2C78 062:909.281 - 0.339ms returns 1 (0x1)
+T2C78 062:909.534 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 062:909.549 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 062:909.836 Data: 63
+T2C78 062:909.851 - 0.321ms returns 1 (0x1)
+T2C78 062:909.869 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 062:909.882 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 062:910.158 Data: 63
+T2C78 062:910.171 - 0.306ms returns 1 (0x1)
+T19A8 062:910.222 JLINK_IsHalted()
+T19A8 062:910.543 - 0.329ms returns FALSE
+T19A8 063:010.684 JLINK_HasError()
+T19A8 063:010.750 JLINK_IsHalted()
+T19A8 063:011.359 - 0.625ms returns FALSE
+T19A8 063:111.441 JLINK_HasError()
+T19A8 063:111.505 JLINK_IsHalted()
+T19A8 063:111.890 - 0.399ms returns FALSE
+T19A8 063:211.981 JLINK_HasError()
+T19A8 063:212.149 JLINK_IsHalted()
+T19A8 063:212.563 - 0.429ms returns FALSE
+T19A8 063:312.921 JLINK_HasError()
+T19A8 063:312.992 JLINK_IsHalted()
+T19A8 063:313.412 - 0.435ms returns FALSE
+T19A8 063:413.588 JLINK_HasError()
+T19A8 063:413.848 JLINK_HasError()
+T19A8 063:413.873 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 063:413.920 Data: B2 47 02 03
+T19A8 063:413.951 Debug reg: DWT_CYCCNT
+T19A8 063:413.980 - 0.117ms returns 1 (0x1)
+T2C78 063:414.328 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 063:414.411 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 063:414.994 Data: 54
+T2C78 063:415.069 - 0.752ms returns 1 (0x1)
+T2C78 063:416.510 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 063:416.658 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 063:417.115 Data: 32
+T2C78 063:417.182 - 0.683ms returns 1 (0x1)
+T2C78 063:417.379 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 063:417.424 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 063:417.871 Data: E2 00 00 00
+T2C78 063:417.938 - 0.569ms returns 4 (0x4)
+T2C78 063:419.219 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 063:419.274 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 063:419.694 Data: A9 00 00 00
+T2C78 063:419.751 - 0.541ms returns 4 (0x4)
+T2C78 063:419.818 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 063:419.852 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 063:420.741 Data: EF 00 00 00
+T2C78 063:420.772 - 0.961ms returns 4 (0x4)
+T2C78 063:421.733 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 063:421.769 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 063:422.437 Data: 4E 00 00 00
+T2C78 063:422.458 - 0.730ms returns 4 (0x4)
+T2C78 063:422.861 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 063:422.889 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 063:423.511 Data: 81 0E 00 00
+T2C78 063:423.535 - 0.679ms returns 4 (0x4)
+T2C78 063:423.955 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 063:423.977 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 063:424.632 Data: 00 00 00 00
+T2C78 063:424.726 - 0.785ms returns 4 (0x4)
+T2C78 063:424.853 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 063:424.882 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 063:425.264 Data: 02
+T2C78 063:425.284 - 0.435ms returns 1 (0x1)
+T2C78 063:425.564 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 063:425.582 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 063:425.908 Data: 01
+T2C78 063:425.922 - 0.361ms returns 1 (0x1)
+T2C78 063:426.132 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 063:426.146 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 063:426.475 Data: 63
+T2C78 063:426.511 - 0.386ms returns 1 (0x1)
+T2C78 063:426.528 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 063:426.537 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 063:426.808 Data: 63
+T2C78 063:426.819 - 0.294ms returns 1 (0x1)
+T19A8 063:426.862 JLINK_IsHalted()
+T19A8 063:427.167 - 0.311ms returns FALSE
+T19A8 063:527.291 JLINK_HasError()
+T19A8 063:527.353 JLINK_IsHalted()
+T19A8 063:527.767 - 0.428ms returns FALSE
+T19A8 063:628.554 JLINK_HasError()
+T19A8 063:628.615 JLINK_IsHalted()
+T19A8 063:628.995 - 0.395ms returns FALSE
+T19A8 063:729.358 JLINK_HasError()
+T19A8 063:729.393 JLINK_IsHalted()
+T19A8 063:729.780 - 0.405ms returns FALSE
+T19A8 063:830.717 JLINK_HasError()
+T19A8 063:830.802 JLINK_IsHalted()
+T19A8 063:831.288 - 0.503ms returns FALSE
+T19A8 063:931.995 JLINK_HasError()
+T19A8 063:932.071 JLINK_HasError()
+T19A8 063:932.095 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 063:932.143 Data: B2 47 02 03
+T19A8 063:932.175 Debug reg: DWT_CYCCNT
+T19A8 063:932.203 - 0.118ms returns 1 (0x1)
+T2C78 063:932.654 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 063:932.741 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 063:933.357 Data: 00
+T2C78 063:933.426 - 0.783ms returns 1 (0x1)
+T2C78 063:934.846 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 063:934.908 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 063:935.440 Data: 32
+T2C78 063:935.510 - 0.674ms returns 1 (0x1)
+T2C78 063:935.673 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 063:935.729 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 063:936.302 Data: 20 00 00 00
+T2C78 063:936.371 - 0.709ms returns 4 (0x4)
+T2C78 063:937.683 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 063:937.744 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 063:938.169 Data: E8 00 00 00
+T2C78 063:938.205 - 0.533ms returns 4 (0x4)
+T2C78 063:939.200 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 063:939.296 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 063:939.993 Data: 59 00 00 00
+T2C78 063:940.038 - 0.848ms returns 4 (0x4)
+T2C78 063:941.164 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 063:941.212 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 063:941.636 Data: 3F 01 00 00
+T2C78 063:941.693 - 0.537ms returns 4 (0x4)
+T2C78 063:942.873 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 063:942.929 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 063:943.302 Data: F0 13 00 00
+T2C78 063:943.334 - 0.470ms returns 4 (0x4)
+T2C78 063:944.359 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 063:944.402 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 063:944.764 Data: 00 00 00 00
+T2C78 063:944.794 - 0.441ms returns 4 (0x4)
+T2C78 063:944.850 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 063:944.870 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 063:945.262 Data: 00
+T2C78 063:945.285 - 0.442ms returns 1 (0x1)
+T2C78 063:945.709 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 063:945.737 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 063:946.047 Data: 01
+T2C78 063:946.070 - 0.367ms returns 1 (0x1)
+T2C78 063:946.092 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 063:946.110 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 063:946.410 Data: 63
+T2C78 063:946.431 - 0.345ms returns 1 (0x1)
+T2C78 063:946.452 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 063:946.468 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 063:946.801 Data: 63
+T2C78 063:946.821 - 0.375ms returns 1 (0x1)
+T19A8 063:946.912 JLINK_IsHalted()
+T19A8 063:947.315 - 0.412ms returns FALSE
+T19A8 064:047.628 JLINK_HasError()
+T19A8 064:047.712 JLINK_IsHalted()
+T19A8 064:048.177 - 0.511ms returns FALSE
+T19A8 064:148.540 JLINK_HasError()
+T19A8 064:148.603 JLINK_IsHalted()
+T19A8 064:148.993 - 0.404ms returns FALSE
+T19A8 064:249.710 JLINK_HasError()
+T19A8 064:249.756 JLINK_IsHalted()
+T19A8 064:250.133 - 0.389ms returns FALSE
+T19A8 064:350.577 JLINK_HasError()
+T19A8 064:350.648 JLINK_IsHalted()
+T19A8 064:351.099 - 0.501ms returns FALSE
+T19A8 064:451.695 JLINK_HasError()
+T19A8 064:451.771 JLINK_HasError()
+T19A8 064:451.795 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 064:451.843 Data: B2 47 02 03
+T19A8 064:451.875 Debug reg: DWT_CYCCNT
+T19A8 064:451.903 - 0.118ms returns 1 (0x1)
+T2C78 064:452.354 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 064:452.440 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 064:452.924 Data: 00
+T2C78 064:452.991 - 0.647ms returns 1 (0x1)
+T2C78 064:453.923 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 064:453.979 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 064:454.519 Data: 32
+T2C78 064:454.590 - 0.677ms returns 1 (0x1)
+T2C78 064:454.750 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 064:454.793 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 064:455.182 Data: C1 00 00 00
+T2C78 064:455.247 - 0.508ms returns 4 (0x4)
+T2C78 064:456.595 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 064:456.659 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 064:457.028 Data: 00 00 00 00
+T2C78 064:457.073 - 0.488ms returns 4 (0x4)
+T2C78 064:458.315 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 064:458.367 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 064:458.818 Data: EF 00 00 00
+T2C78 064:458.860 - 0.556ms returns 4 (0x4)
+T2C78 064:460.213 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 064:460.271 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 064:460.664 Data: 4E 00 00 00
+T2C78 064:460.720 - 0.517ms returns 4 (0x4)
+T2C78 064:461.875 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 064:461.921 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 064:462.312 Data: 81 0E 00 00
+T2C78 064:462.341 - 0.474ms returns 4 (0x4)
+T2C78 064:463.201 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 064:463.238 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 064:463.561 Data: 00 00 00 00
+T2C78 064:463.583 - 0.388ms returns 4 (0x4)
+T2C78 064:463.631 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 064:463.649 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 064:463.958 Data: 00
+T2C78 064:463.979 - 0.354ms returns 1 (0x1)
+T2C78 064:464.348 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 064:464.375 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 064:464.711 Data: 01
+T2C78 064:464.731 - 0.389ms returns 1 (0x1)
+T2C78 064:464.751 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 064:464.767 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 064:465.104 Data: 63
+T2C78 064:465.122 - 0.376ms returns 1 (0x1)
+T2C78 064:465.139 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 064:465.153 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 064:465.482 Data: 63
+T2C78 064:465.501 - 0.367ms returns 1 (0x1)
+T19A8 064:465.574 JLINK_IsHalted()
+T19A8 064:465.896 - 0.332ms returns FALSE
+T19A8 064:566.886 JLINK_HasError()
+T19A8 064:566.950 JLINK_IsHalted()
+T19A8 064:567.371 - 0.435ms returns FALSE
+T19A8 064:668.427 JLINK_HasError()
+T19A8 064:668.485 JLINK_IsHalted()
+T19A8 064:668.904 - 0.432ms returns FALSE
+T19A8 064:768.986 JLINK_HasError()
+T19A8 064:769.061 JLINK_IsHalted()
+T19A8 064:769.638 - 0.632ms returns FALSE
+T19A8 064:869.835 JLINK_HasError()
+T19A8 064:869.898 JLINK_IsHalted()
+T19A8 064:870.989 - 1.135ms returns FALSE
+T19A8 064:971.135 JLINK_HasError()
+T19A8 064:971.206 JLINK_HasError()
+T19A8 064:971.231 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 064:971.278 Data: B2 47 02 03
+T19A8 064:971.310 Debug reg: DWT_CYCCNT
+T19A8 064:971.338 - 0.117ms returns 1 (0x1)
+T2C78 064:971.697 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 064:971.789 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 064:972.221 Data: 00
+T2C78 064:972.259 - 0.573ms returns 1 (0x1)
+T2C78 064:972.342 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 064:972.376 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 064:972.764 Data: 32
+T2C78 064:972.797 - 0.464ms returns 1 (0x1)
+T2C78 064:972.964 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 064:972.990 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 064:973.366 Data: C1 00 00 00
+T2C78 064:973.398 - 0.444ms returns 4 (0x4)
+T2C78 064:974.292 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 064:974.339 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 064:974.680 Data: 00 00 00 00
+T2C78 064:974.714 - 0.431ms returns 4 (0x4)
+T2C78 064:975.323 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 064:975.361 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 064:975.697 Data: EF 00 00 00
+T2C78 064:975.731 - 0.417ms returns 4 (0x4)
+T2C78 064:976.287 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 064:976.322 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 064:976.704 Data: 4E 00 00 00
+T2C78 064:976.734 - 0.455ms returns 4 (0x4)
+T2C78 064:977.185 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 064:977.214 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 064:977.552 Data: 81 0E 00 00
+T2C78 064:977.580 - 0.402ms returns 4 (0x4)
+T2C78 064:978.068 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 064:978.097 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 064:978.466 Data: 00 00 00 00
+T2C78 064:978.490 - 0.428ms returns 4 (0x4)
+T2C78 064:978.539 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 064:978.558 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 064:978.907 Data: 00
+T2C78 064:978.929 - 0.397ms returns 1 (0x1)
+T2C78 064:978.950 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 064:978.974 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 064:979.292 Data: 01
+T2C78 064:979.314 - 0.371ms returns 1 (0x1)
+T2C78 064:979.334 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 064:979.352 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 064:979.670 Data: 63
+T2C78 064:979.690 - 0.362ms returns 1 (0x1)
+T2C78 064:979.710 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 064:979.726 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 064:980.024 Data: 63
+T2C78 064:980.044 - 0.340ms returns 1 (0x1)
+T19A8 064:980.133 JLINK_IsHalted()
+T19A8 064:980.463 - 0.344ms returns FALSE
+T19A8 065:081.335 JLINK_HasError()
+T19A8 065:081.399 JLINK_IsHalted()
+T19A8 065:081.823 - 0.438ms returns FALSE
+T19A8 065:181.994 JLINK_HasError()
+T19A8 065:182.065 JLINK_IsHalted()
+T19A8 065:182.603 - 0.585ms returns FALSE
+T19A8 065:283.379 JLINK_HasError()
+T19A8 065:283.447 JLINK_IsHalted()
+T19A8 065:283.886 - 0.452ms returns FALSE
+T19A8 065:383.968 JLINK_HasError()
+T19A8 065:384.038 JLINK_IsHalted()
+T19A8 065:384.505 - 0.481ms returns FALSE
+T19A8 065:485.119 JLINK_HasError()
+T19A8 065:485.191 JLINK_HasError()
+T19A8 065:485.215 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 065:485.263 Data: B2 47 02 03
+T19A8 065:485.295 Debug reg: DWT_CYCCNT
+T19A8 065:485.324 - 0.118ms returns 1 (0x1)
+T2C78 065:485.675 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 065:485.760 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 065:486.373 Data: 00
+T2C78 065:486.448 - 0.784ms returns 1 (0x1)
+T2C78 065:486.540 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 065:486.587 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 065:487.301 Data: 32
+T2C78 065:487.347 - 0.818ms returns 1 (0x1)
+T2C78 065:487.515 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 065:487.548 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 065:487.982 Data: E2 00 00 00
+T2C78 065:488.024 - 0.520ms returns 4 (0x4)
+T2C78 065:489.422 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 065:489.489 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 065:489.907 Data: A9 00 00 00
+T2C78 065:489.947 - 0.533ms returns 4 (0x4)
+T2C78 065:490.601 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 065:490.641 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 065:490.988 Data: EF 00 00 00
+T2C78 065:491.014 - 0.420ms returns 4 (0x4)
+T2C78 065:491.059 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 065:491.081 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 065:491.465 Data: 3F 01 00 00
+T2C78 065:491.489 - 0.437ms returns 4 (0x4)
+T2C78 065:491.977 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 065:492.007 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 065:492.362 Data: 42 08 00 00
+T2C78 065:492.391 - 0.421ms returns 4 (0x4)
+T2C78 065:492.874 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 065:492.900 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 065:493.271 Data: 00 00 00 00
+T2C78 065:493.293 - 0.426ms returns 4 (0x4)
+T2C78 065:493.339 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 065:493.356 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 065:493.666 Data: 00
+T2C78 065:493.685 - 0.352ms returns 1 (0x1)
+T2C78 065:493.704 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 065:493.719 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 065:494.023 Data: 01
+T2C78 065:494.051 - 0.353ms returns 1 (0x1)
+T2C78 065:494.069 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 065:494.084 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 065:494.398 Data: 63
+T2C78 065:494.417 - 0.354ms returns 1 (0x1)
+T2C78 065:494.435 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 065:494.450 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 065:494.755 Data: 63
+T2C78 065:494.774 - 0.344ms returns 1 (0x1)
+T19A8 065:494.848 JLINK_IsHalted()
+T19A8 065:495.175 - 0.339ms returns FALSE
+T19A8 065:595.272 JLINK_HasError()
+T19A8 065:595.342 JLINK_IsHalted()
+T19A8 065:595.769 - 0.442ms returns FALSE
+T19A8 065:695.854 JLINK_HasError()
+T19A8 065:695.919 JLINK_IsHalted()
+T19A8 065:696.315 - 0.410ms returns FALSE
+T19A8 065:796.477 JLINK_HasError()
+T19A8 065:796.552 JLINK_IsHalted()
+T19A8 065:797.025 - 0.487ms returns FALSE
+T19A8 065:897.249 JLINK_HasError()
+T19A8 065:897.351 JLINK_IsHalted()
+T19A8 065:898.001 - 0.703ms returns FALSE
+T19A8 065:998.748 JLINK_HasError()
+T19A8 065:998.816 JLINK_HasError()
+T19A8 065:998.840 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 065:998.888 Data: B2 47 02 03
+T19A8 065:998.920 Debug reg: DWT_CYCCNT
+T19A8 065:998.948 - 0.117ms returns 1 (0x1)
+T2C78 065:999.304 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 065:999.402 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 065:999.811 Data: 00
+T2C78 065:999.851 - 0.557ms returns 1 (0x1)
+T2C78 065:999.907 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 065:999.939 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 066:000.282 Data: 32
+T2C78 066:000.314 - 0.417ms returns 1 (0x1)
+T2C78 066:000.424 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 066:000.451 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 066:000.824 Data: C1 00 00 00
+T2C78 066:000.856 - 0.442ms returns 4 (0x4)
+T2C78 066:002.611 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 066:002.663 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 066:003.523 Data: 00 00 00 00
+T2C78 066:003.558 - 0.954ms returns 4 (0x4)
+T2C78 066:004.413 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 066:004.451 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 066:004.824 Data: EF 00 00 00
+T2C78 066:004.846 - 0.438ms returns 4 (0x4)
+T2C78 066:004.881 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 066:004.900 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 066:005.258 Data: 4E 00 00 00
+T2C78 066:005.277 - 0.402ms returns 4 (0x4)
+T2C78 066:005.867 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 066:005.891 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 066:006.256 Data: 81 0E 00 00
+T2C78 066:006.273 - 0.410ms returns 4 (0x4)
+T2C78 066:006.788 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 066:006.807 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 066:007.169 Data: 00 00 00 00
+T2C78 066:007.182 - 0.398ms returns 4 (0x4)
+T2C78 066:007.220 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 066:007.233 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 066:007.497 Data: 00
+T2C78 066:007.524 - 0.308ms returns 1 (0x1)
+T2C78 066:007.544 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 066:007.558 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 066:008.042 Data: 01
+T2C78 066:008.058 - 0.518ms returns 1 (0x1)
+T2C78 066:008.073 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 066:008.085 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 066:008.347 Data: 63
+T2C78 066:008.362 - 0.292ms returns 1 (0x1)
+T2C78 066:008.376 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 066:008.388 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 066:008.655 Data: 63
+T2C78 066:008.666 - 0.293ms returns 1 (0x1)
+T19A8 066:008.713 JLINK_IsHalted()
+T19A8 066:008.984 - 0.275ms returns FALSE
+T19A8 066:110.031 JLINK_HasError()
+T19A8 066:110.092 JLINK_IsHalted()
+T19A8 066:110.478 - 0.400ms returns FALSE
+T19A8 066:210.805 JLINK_HasError()
+T19A8 066:210.869 JLINK_IsHalted()
+T19A8 066:211.276 - 0.422ms returns FALSE
+T19A8 066:311.981 JLINK_HasError()
+T19A8 066:312.055 JLINK_IsHalted()
+T19A8 066:312.598 - 0.591ms returns FALSE
+T19A8 066:413.474 JLINK_HasError()
+T19A8 066:413.553 JLINK_IsHalted()
+T19A8 066:413.986 - 0.491ms returns FALSE
+T19A8 066:514.125 JLINK_HasError()
+T19A8 066:514.276 JLINK_HasError()
+T19A8 066:514.299 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 066:514.344 Data: B2 47 02 03
+T19A8 066:514.373 Debug reg: DWT_CYCCNT
+T19A8 066:514.399 - 0.108ms returns 1 (0x1)
+T2C78 066:514.735 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 066:514.831 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 066:515.352 Data: 00
+T2C78 066:515.417 - 0.692ms returns 1 (0x1)
+T2C78 066:515.502 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 066:515.544 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 066:516.013 Data: 32
+T2C78 066:516.076 - 0.583ms returns 1 (0x1)
+T2C78 066:516.262 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 066:516.303 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 066:516.763 Data: C1 00 00 00
+T2C78 066:516.826 - 0.573ms returns 4 (0x4)
+T2C78 066:517.724 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 066:517.780 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 066:518.270 Data: 00 00 00 00
+T2C78 066:518.339 - 0.625ms returns 4 (0x4)
+T2C78 066:519.171 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 066:519.627 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 066:520.125 Data: EF 00 00 00
+T2C78 066:520.257 - 1.104ms returns 4 (0x4)
+T2C78 066:520.633 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 066:520.699 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 066:521.073 Data: 4E 00 00 00
+T2C78 066:521.101 - 0.476ms returns 4 (0x4)
+T2C78 066:522.921 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 066:522.978 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 066:523.305 Data: 81 0E 00 00
+T2C78 066:523.333 - 0.419ms returns 4 (0x4)
+T2C78 066:523.992 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 066:524.038 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 066:524.391 Data: 00 00 00 00
+T2C78 066:524.413 - 0.426ms returns 4 (0x4)
+T2C78 066:524.480 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 066:524.499 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 066:524.826 Data: 00
+T2C78 066:524.842 - 0.365ms returns 1 (0x1)
+T2C78 066:524.859 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 066:524.871 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 066:525.254 Data: 01
+T2C78 066:525.270 - 0.415ms returns 1 (0x1)
+T2C78 066:525.284 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 066:525.295 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 066:525.566 Data: 63
+T2C78 066:525.580 - 0.300ms returns 1 (0x1)
+T2C78 066:525.593 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 066:525.605 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 066:525.882 Data: 63
+T2C78 066:525.896 - 0.306ms returns 1 (0x1)
+T19A8 066:525.960 JLINK_IsHalted()
+T19A8 066:526.254 - 0.301ms returns FALSE
+T19A8 066:627.230 JLINK_HasError()
+T19A8 066:627.287 JLINK_IsHalted()
+T19A8 066:627.672 - 0.396ms returns FALSE
+T19A8 066:728.629 JLINK_HasError()
+T19A8 066:728.707 JLINK_IsHalted()
+T19A8 066:729.065 - 0.372ms returns FALSE
+T19A8 066:829.290 JLINK_HasError()
+T19A8 066:829.387 JLINK_IsHalted()
+T19A8 066:830.084 - 0.767ms returns FALSE
+T19A8 066:931.300 JLINK_HasError()
+T19A8 066:931.399 JLINK_IsHalted()
+T19A8 066:931.912 - 0.559ms returns FALSE
+T19A8 067:032.102 JLINK_HasError()
+T19A8 067:032.174 JLINK_HasError()
+T19A8 067:032.198 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 067:032.245 Data: B2 47 02 03
+T19A8 067:032.276 Debug reg: DWT_CYCCNT
+T19A8 067:032.304 - 0.116ms returns 1 (0x1)
+T2C78 067:032.676 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 067:032.758 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 067:033.356 Data: 00
+T2C78 067:033.432 - 0.768ms returns 1 (0x1)
+T2C78 067:033.525 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 067:033.572 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 067:033.943 Data: 32
+T2C78 067:033.978 - 0.462ms returns 1 (0x1)
+T2C78 067:034.156 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 067:034.185 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 067:034.557 Data: E2 00 00 00
+T2C78 067:034.590 - 0.442ms returns 4 (0x4)
+T2C78 067:035.751 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 067:035.797 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 067:036.142 Data: A9 00 00 00
+T2C78 067:036.171 - 0.426ms returns 4 (0x4)
+T2C78 067:037.606 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 067:037.665 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 067:038.112 Data: EF 00 00 00
+T2C78 067:038.134 - 0.534ms returns 4 (0x4)
+T2C78 067:038.169 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 067:038.187 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 067:038.544 Data: 3F 01 00 00
+T2C78 067:038.582 - 0.419ms returns 4 (0x4)
+T2C78 067:039.696 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 067:039.739 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 067:040.097 Data: 42 08 00 00
+T2C78 067:040.120 - 0.429ms returns 4 (0x4)
+T2C78 067:040.611 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 067:040.639 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 067:040.982 Data: 00 00 00 00
+T2C78 067:041.001 - 0.394ms returns 4 (0x4)
+T2C78 067:041.044 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 067:041.060 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 067:041.382 Data: 00
+T2C78 067:041.401 - 0.362ms returns 1 (0x1)
+T2C78 067:041.418 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 067:041.434 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 067:041.755 Data: 01
+T2C78 067:041.772 - 0.359ms returns 1 (0x1)
+T2C78 067:041.788 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 067:041.802 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 067:042.109 Data: 63
+T2C78 067:042.126 - 0.343ms returns 1 (0x1)
+T2C78 067:042.143 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 067:042.156 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 067:042.483 Data: 63
+T2C78 067:042.506 - 0.368ms returns 1 (0x1)
+T19A8 067:042.650 JLINK_IsHalted()
+T19A8 067:042.960 - 0.319ms returns FALSE
+T19A8 067:143.839 JLINK_HasError()
+T19A8 067:143.905 JLINK_IsHalted()
+T19A8 067:144.365 - 0.474ms returns FALSE
+T19A8 067:245.106 JLINK_HasError()
+T19A8 067:245.179 JLINK_IsHalted()
+T19A8 067:245.594 - 0.430ms returns FALSE
+T19A8 067:346.280 JLINK_HasError()
+T19A8 067:346.345 JLINK_IsHalted()
+T19A8 067:346.745 - 0.413ms returns FALSE
+T19A8 067:446.926 JLINK_HasError()
+T19A8 067:446.994 JLINK_IsHalted()
+T19A8 067:447.371 - 0.393ms returns FALSE
+T19A8 067:548.115 JLINK_HasError()
+T19A8 067:548.214 JLINK_HasError()
+T19A8 067:548.241 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 067:548.294 Data: B2 47 02 03
+T19A8 067:548.330 Debug reg: DWT_CYCCNT
+T19A8 067:548.362 - 0.132ms returns 1 (0x1)
+T2C78 067:548.746 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 067:548.838 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 067:549.495 Data: 00
+T2C78 067:549.538 - 0.804ms returns 1 (0x1)
+T2C78 067:549.599 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 067:549.635 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 067:550.391 Data: 32
+T2C78 067:550.483 - 0.979ms returns 1 (0x1)
+T2C78 067:550.928 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 067:551.025 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 067:551.837 Data: C1 00 00 00
+T2C78 067:551.894 - 0.977ms returns 4 (0x4)
+T2C78 067:553.962 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 067:554.012 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 067:554.401 Data: 00 00 00 00
+T2C78 067:554.443 - 0.488ms returns 4 (0x4)
+T2C78 067:555.345 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 067:555.384 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 067:555.751 Data: EF 00 00 00
+T2C78 067:555.770 - 0.430ms returns 4 (0x4)
+T2C78 067:555.801 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 067:555.817 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 067:556.136 Data: 4E 00 00 00
+T2C78 067:556.161 - 0.365ms returns 4 (0x4)
+T2C78 067:556.858 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 067:556.893 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 067:557.175 Data: 81 0E 00 00
+T2C78 067:557.198 - 0.344ms returns 4 (0x4)
+T2C78 067:558.179 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 067:558.208 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 067:558.489 Data: 00 00 00 00
+T2C78 067:558.507 - 0.331ms returns 4 (0x4)
+T2C78 067:558.558 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 067:558.571 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 067:558.867 Data: 00
+T2C78 067:558.877 - 0.321ms returns 1 (0x1)
+T2C78 067:558.887 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 067:558.895 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 067:559.149 Data: 01
+T2C78 067:559.159 - 0.275ms returns 1 (0x1)
+T2C78 067:559.168 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 067:559.176 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 067:559.475 Data: 63
+T2C78 067:559.485 - 0.319ms returns 1 (0x1)
+T2C78 067:559.496 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 067:559.504 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 067:559.773 Data: 63
+T2C78 067:559.783 - 0.289ms returns 1 (0x1)
+T19A8 067:559.827 JLINK_IsHalted()
+T19A8 067:560.090 - 0.269ms returns FALSE
+T19A8 067:660.301 JLINK_HasError()
+T19A8 067:660.367 JLINK_IsHalted()
+T19A8 067:660.777 - 0.425ms returns FALSE
+T19A8 067:761.700 JLINK_HasError()
+T19A8 067:761.777 JLINK_IsHalted()
+T19A8 067:762.256 - 0.526ms returns FALSE
+T19A8 067:862.729 JLINK_HasError()
+T19A8 067:862.796 JLINK_IsHalted()
+T19A8 067:863.213 - 0.465ms returns FALSE
+T19A8 067:963.558 JLINK_HasError()
+T19A8 067:963.619 JLINK_IsHalted()
+T19A8 067:964.030 - 0.427ms returns FALSE
+T19A8 068:065.152 JLINK_HasError()
+T19A8 068:065.234 JLINK_HasError()
+T19A8 068:065.261 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 068:065.313 Data: B2 47 02 03
+T19A8 068:065.349 Debug reg: DWT_CYCCNT
+T19A8 068:065.381 - 0.131ms returns 1 (0x1)
+T2C78 068:065.800 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 068:065.910 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 068:066.377 Data: 00
+T2C78 068:066.419 - 0.631ms returns 1 (0x1)
+T2C78 068:066.514 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 068:066.551 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 068:066.956 Data: 32
+T2C78 068:066.992 - 0.489ms returns 1 (0x1)
+T2C78 068:067.159 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 068:067.189 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 068:067.549 Data: C1 00 00 00
+T2C78 068:067.586 - 0.437ms returns 4 (0x4)
+T2C78 068:068.602 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 068:068.653 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 068:069.017 Data: 00 00 00 00
+T2C78 068:069.055 - 0.465ms returns 4 (0x4)
+T2C78 068:069.724 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 068:069.767 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 068:070.682 Data: EF 00 00 00
+T2C78 068:070.724 - 1.010ms returns 4 (0x4)
+T2C78 068:070.780 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 068:070.814 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 068:071.206 Data: 4E 00 00 00
+T2C78 068:071.242 - 0.473ms returns 4 (0x4)
+T2C78 068:072.058 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 068:072.104 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 068:072.652 Data: 81 0E 00 00
+T2C78 068:072.686 - 0.637ms returns 4 (0x4)
+T2C78 068:073.384 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 068:073.423 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 068:073.817 Data: 00 00 00 00
+T2C78 068:073.845 - 0.468ms returns 4 (0x4)
+T2C78 068:073.905 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 068:073.928 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 068:074.267 Data: 00
+T2C78 068:074.293 - 0.396ms returns 1 (0x1)
+T2C78 068:074.318 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 068:074.339 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 068:074.662 Data: 01
+T2C78 068:074.689 - 0.378ms returns 1 (0x1)
+T2C78 068:074.712 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 068:074.732 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 068:075.038 Data: 63
+T2C78 068:075.074 - 0.369ms returns 1 (0x1)
+T2C78 068:075.099 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 068:075.119 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 068:075.458 Data: 63
+T2C78 068:075.485 - 0.393ms returns 1 (0x1)
+T19A8 068:075.584 JLINK_IsHalted()
+T19A8 068:075.959 - 0.389ms returns FALSE
+T19A8 068:177.007 JLINK_HasError()
+T19A8 068:177.065 JLINK_IsHalted()
+T19A8 068:177.463 - 0.412ms returns FALSE
+T19A8 068:278.299 JLINK_HasError()
+T19A8 068:278.463 JLINK_IsHalted()
+T19A8 068:278.882 - 0.434ms returns FALSE
+T19A8 068:379.432 JLINK_HasError()
+T19A8 068:379.506 JLINK_IsHalted()
+T19A8 068:379.958 - 0.498ms returns FALSE
+T19A8 068:480.673 JLINK_HasError()
+T19A8 068:480.736 JLINK_IsHalted()
+T19A8 068:481.107 - 0.386ms returns FALSE
+T19A8 068:581.636 JLINK_HasError()
+T19A8 068:581.699 JLINK_HasError()
+T19A8 068:581.724 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 068:581.770 Data: B2 47 02 03
+T19A8 068:581.802 Debug reg: DWT_CYCCNT
+T19A8 068:581.831 - 0.117ms returns 1 (0x1)
+T2C78 068:582.178 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 068:582.270 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 068:582.690 Data: 00
+T2C78 068:582.728 - 0.560ms returns 1 (0x1)
+T2C78 068:582.808 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 068:582.842 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 068:583.272 Data: 32
+T2C78 068:583.305 - 0.507ms returns 1 (0x1)
+T2C78 068:583.462 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 068:583.489 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 068:583.872 Data: E2 00 00 00
+T2C78 068:583.904 - 0.452ms returns 4 (0x4)
+T2C78 068:584.825 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 068:584.872 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 068:585.273 Data: A9 00 00 00
+T2C78 068:585.308 - 0.492ms returns 4 (0x4)
+T2C78 068:585.976 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 068:586.020 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 068:586.958 Data: EF 00 00 00
+T2C78 068:587.036 - 1.070ms returns 4 (0x4)
+T2C78 068:587.117 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 068:587.161 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 068:587.613 Data: 3F 01 00 00
+T2C78 068:587.654 - 0.547ms returns 4 (0x4)
+T2C78 068:588.919 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 068:588.989 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 068:589.357 Data: 42 08 00 00
+T2C78 068:589.402 - 0.491ms returns 4 (0x4)
+T2C78 068:591.410 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 068:591.449 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 068:591.953 Data: 00 00 00 00
+T2C78 068:591.969 - 0.563ms returns 4 (0x4)
+T2C78 068:592.017 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 068:592.032 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 068:592.354 Data: 00
+T2C78 068:592.378 - 0.365ms returns 1 (0x1)
+T2C78 068:592.399 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 068:592.417 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 068:592.702 Data: 01
+T2C78 068:592.716 - 0.323ms returns 1 (0x1)
+T2C78 068:592.730 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 068:592.742 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 068:593.012 Data: 63
+T2C78 068:593.026 - 0.299ms returns 1 (0x1)
+T2C78 068:593.039 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 068:593.050 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 068:593.345 Data: 63
+T2C78 068:593.358 - 0.323ms returns 1 (0x1)
+T19A8 068:593.415 JLINK_IsHalted()
+T19A8 068:593.710 - 0.303ms returns FALSE
+T19A8 068:693.864 JLINK_HasError()
+T19A8 068:693.937 JLINK_IsHalted()
+T19A8 068:694.434 - 0.544ms returns FALSE
+T19A8 068:794.656 JLINK_HasError()
+T19A8 068:794.731 JLINK_IsHalted()
+T19A8 068:795.157 - 0.442ms returns FALSE
+T19A8 068:895.342 JLINK_HasError()
+T19A8 068:895.439 JLINK_IsHalted()
+T19A8 068:896.013 - 0.623ms returns FALSE
+T19A8 068:997.176 JLINK_HasError()
+T19A8 068:997.292 JLINK_IsHalted()
+T19A8 068:998.020 - 0.803ms returns FALSE
+T19A8 069:099.172 JLINK_HasError()
+T19A8 069:099.258 JLINK_HasError()
+T19A8 069:099.285 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 069:099.338 Data: B2 47 02 03
+T19A8 069:099.374 Debug reg: DWT_CYCCNT
+T19A8 069:099.405 - 0.131ms returns 1 (0x1)
+T2C78 069:099.934 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 069:100.056 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 069:100.608 Data: 00
+T2C78 069:100.681 - 0.759ms returns 1 (0x1)
+T2C78 069:100.769 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 069:100.817 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 069:101.258 Data: 32
+T2C78 069:101.332 - 0.575ms returns 1 (0x1)
+T2C78 069:101.507 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 069:101.587 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 069:101.960 Data: C1 00 00 00
+T2C78 069:101.998 - 0.502ms returns 4 (0x4)
+T2C78 069:104.411 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 069:104.491 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 069:104.944 Data: 00 00 00 00
+T2C78 069:105.022 - 0.623ms returns 4 (0x4)
+T2C78 069:106.506 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 069:106.578 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 069:107.507 Data: EF 00 00 00
+T2C78 069:107.560 - 1.063ms returns 4 (0x4)
+T2C78 069:107.629 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 069:107.667 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 069:108.122 Data: 4E 00 00 00
+T2C78 069:108.151 - 0.531ms returns 4 (0x4)
+T2C78 069:109.374 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 069:109.426 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 069:109.813 Data: 81 0E 00 00
+T2C78 069:109.851 - 0.485ms returns 4 (0x4)
+T2C78 069:110.938 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 069:110.985 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 069:111.352 Data: 00 00 00 00
+T2C78 069:111.380 - 0.449ms returns 4 (0x4)
+T2C78 069:111.437 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 069:111.459 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 069:111.779 Data: 00
+T2C78 069:111.803 - 0.373ms returns 1 (0x1)
+T2C78 069:111.827 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 069:111.846 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 069:112.164 Data: 01
+T2C78 069:112.188 - 0.368ms returns 1 (0x1)
+T2C78 069:112.210 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 069:112.228 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 069:112.559 Data: 63
+T2C78 069:112.592 - 0.389ms returns 1 (0x1)
+T2C78 069:112.615 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 069:112.633 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 069:112.957 Data: 63
+T2C78 069:112.988 - 0.382ms returns 1 (0x1)
+T19A8 069:113.080 JLINK_IsHalted()
+T19A8 069:113.485 - 0.423ms returns FALSE
+T19A8 069:214.379 JLINK_HasError()
+T19A8 069:214.526 JLINK_IsHalted()
+T19A8 069:215.162 - 0.693ms returns FALSE
+T19A8 069:315.971 JLINK_HasError()
+T19A8 069:316.058 JLINK_IsHalted()
+T19A8 069:316.572 - 0.560ms returns FALSE
+T19A8 069:416.764 JLINK_HasError()
+T19A8 069:416.836 JLINK_IsHalted()
+T19A8 069:417.357 - 0.568ms returns FALSE
+T19A8 069:517.499 JLINK_HasError()
+T19A8 069:517.577 JLINK_IsHalted()
+T19A8 069:517.984 - 0.421ms returns FALSE
+T19A8 069:618.136 JLINK_HasError()
+T19A8 069:618.192 JLINK_HasError()
+T19A8 069:618.216 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 069:618.263 Data: B2 47 02 03
+T19A8 069:618.295 Debug reg: DWT_CYCCNT
+T19A8 069:618.323 - 0.117ms returns 1 (0x1)
+T2C78 069:618.747 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 069:618.848 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 069:619.273 Data: 00
+T2C78 069:619.309 - 0.573ms returns 1 (0x1)
+T2C78 069:619.378 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 069:619.413 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 069:619.892 Data: 32
+T2C78 069:619.924 - 0.561ms returns 1 (0x1)
+T2C78 069:620.056 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 069:620.084 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 069:620.631 Data: C1 00 00 00
+T2C78 069:620.700 - 0.655ms returns 4 (0x4)
+T2C78 069:622.093 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 069:622.177 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 069:622.592 Data: 00 00 00 00
+T2C78 069:622.638 - 0.554ms returns 4 (0x4)
+T2C78 069:623.436 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 069:623.488 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 069:623.861 Data: EF 00 00 00
+T2C78 069:623.896 - 0.470ms returns 4 (0x4)
+T2C78 069:623.944 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 069:623.973 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 069:624.316 Data: 4E 00 00 00
+T2C78 069:624.349 - 0.414ms returns 4 (0x4)
+T2C78 069:624.992 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 069:625.035 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 069:625.389 Data: 81 0E 00 00
+T2C78 069:625.422 - 0.439ms returns 4 (0x4)
+T2C78 069:626.099 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 069:626.138 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 069:626.509 Data: 00 00 00 00
+T2C78 069:626.544 - 0.454ms returns 4 (0x4)
+T2C78 069:626.619 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 069:626.647 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 069:626.983 Data: 00
+T2C78 069:627.015 - 0.406ms returns 1 (0x1)
+T2C78 069:627.046 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 069:627.072 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 069:627.455 Data: 01
+T2C78 069:627.485 - 0.447ms returns 1 (0x1)
+T2C78 069:627.510 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 069:627.533 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 069:627.894 Data: 63
+T2C78 069:627.923 - 0.420ms returns 1 (0x1)
+T2C78 069:627.950 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 069:627.972 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 069:628.337 Data: 63
+T2C78 069:628.366 - 0.424ms returns 1 (0x1)
+T19A8 069:628.492 JLINK_IsHalted()
+T19A8 069:628.872 - 0.393ms returns FALSE
+T19A8 069:729.125 JLINK_HasError()
+T19A8 069:729.190 JLINK_IsHalted()
+T19A8 069:729.591 - 0.416ms returns FALSE
+T19A8 069:829.983 JLINK_HasError()
+T19A8 069:830.049 JLINK_IsHalted()
+T19A8 069:830.453 - 0.420ms returns FALSE
+T19A8 069:931.179 JLINK_HasError()
+T19A8 069:931.246 JLINK_IsHalted()
+T19A8 069:931.626 - 0.393ms returns FALSE
+T19A8 070:031.714 JLINK_HasError()
+T19A8 070:031.776 JLINK_IsHalted()
+T19A8 070:032.274 - 0.511ms returns FALSE
+T19A8 070:132.392 JLINK_HasError()
+T19A8 070:132.460 JLINK_HasError()
+T19A8 070:132.484 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 070:132.532 Data: B2 47 02 03
+T19A8 070:132.563 Debug reg: DWT_CYCCNT
+T19A8 070:132.591 - 0.116ms returns 1 (0x1)
+T2C78 070:133.035 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 070:133.135 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 070:133.641 Data: 00
+T2C78 070:133.708 - 0.684ms returns 1 (0x1)
+T2C78 070:133.787 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 070:133.831 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 070:134.260 Data: 32
+T2C78 070:134.328 - 0.551ms returns 1 (0x1)
+T2C78 070:134.490 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 070:134.535 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 070:135.120 Data: E2 00 00 00
+T2C78 070:135.188 - 0.708ms returns 4 (0x4)
+T2C78 070:136.473 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 070:136.558 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 070:137.087 Data: A9 00 00 00
+T2C78 070:137.138 - 0.673ms returns 4 (0x4)
+T2C78 070:137.802 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 070:137.845 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 070:138.507 Data: EF 00 00 00
+T2C78 070:138.558 - 0.761ms returns 4 (0x4)
+T2C78 070:138.605 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 070:138.634 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 070:139.039 Data: 3F 01 00 00
+T2C78 070:139.077 - 0.482ms returns 4 (0x4)
+T2C78 070:139.631 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 070:139.685 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 070:140.039 Data: 42 08 00 00
+T2C78 070:140.096 - 0.475ms returns 4 (0x4)
+T2C78 070:141.041 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 070:141.095 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 070:141.555 Data: 00 00 00 00
+T2C78 070:141.584 - 0.551ms returns 4 (0x4)
+T2C78 070:141.650 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 070:141.677 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 070:142.114 Data: 00
+T2C78 070:142.141 - 0.498ms returns 1 (0x1)
+T2C78 070:142.167 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 070:142.189 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 070:142.622 Data: 01
+T2C78 070:142.649 - 0.490ms returns 1 (0x1)
+T2C78 070:142.674 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 070:142.695 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 070:143.120 Data: 63
+T2C78 070:143.147 - 0.480ms returns 1 (0x1)
+T2C78 070:143.172 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 070:143.193 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 070:143.619 Data: 63
+T2C78 070:143.645 - 0.480ms returns 1 (0x1)
+T19A8 070:143.762 JLINK_IsHalted()
+T19A8 070:144.122 - 0.371ms returns FALSE
+T19A8 070:245.242 JLINK_HasError()
+T19A8 070:245.288 JLINK_IsHalted()
+T19A8 070:245.600 - 0.322ms returns FALSE
+T19A8 070:346.312 JLINK_HasError()
+T19A8 070:346.379 JLINK_IsHalted()
+T19A8 070:346.769 - 0.403ms returns FALSE
+T19A8 070:446.862 JLINK_HasError()
+T19A8 070:446.932 JLINK_IsHalted()
+T19A8 070:447.366 - 0.483ms returns FALSE
+T19A8 070:548.411 JLINK_HasError()
+T19A8 070:548.473 JLINK_IsHalted()
+T19A8 070:548.883 - 0.423ms returns FALSE
+T19A8 070:648.997 JLINK_HasError()
+T19A8 070:649.063 JLINK_HasError()
+T19A8 070:649.069 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 070:649.084 Data: B2 47 02 03
+T19A8 070:649.091 Debug reg: DWT_CYCCNT
+T19A8 070:649.098 - 0.031ms returns 1 (0x1)
+T2C78 070:649.210 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 070:649.233 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 070:649.488 Data: 00
+T2C78 070:649.496 - 0.288ms returns 1 (0x1)
+T2C78 070:649.516 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 070:649.525 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 070:649.820 Data: 32
+T2C78 070:649.826 - 0.311ms returns 1 (0x1)
+T2C78 070:649.859 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 070:649.865 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 070:650.133 Data: C1 00 00 00
+T2C78 070:650.139 - 0.282ms returns 4 (0x4)
+T2C78 070:650.460 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 070:650.471 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 070:650.777 Data: 00 00 00 00
+T2C78 070:650.784 - 0.325ms returns 4 (0x4)
+T2C78 070:650.987 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 070:650.995 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 070:651.277 Data: EF 00 00 00
+T2C78 070:651.283 - 0.298ms returns 4 (0x4)
+T2C78 070:651.298 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 070:651.304 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 070:651.573 Data: 4E 00 00 00
+T2C78 070:651.580 - 0.283ms returns 4 (0x4)
+T2C78 070:651.779 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 070:651.787 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 070:652.057 Data: 81 0E 00 00
+T2C78 070:652.064 - 0.287ms returns 4 (0x4)
+T2C78 070:652.274 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 070:652.282 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 070:652.583 Data: 00 00 00 00
+T2C78 070:652.590 - 0.318ms returns 4 (0x4)
+T2C78 070:652.605 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 070:652.611 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 070:652.906 Data: 00
+T2C78 070:652.914 - 0.311ms returns 1 (0x1)
+T2C78 070:652.920 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 070:652.925 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 070:653.491 Data: 01
+T2C78 070:653.505 - 0.586ms returns 1 (0x1)
+T2C78 070:653.516 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 070:653.527 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 070:654.267 Data: 63
+T2C78 070:654.297 - 0.785ms returns 1 (0x1)
+T2C78 070:654.320 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 070:654.338 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 070:654.749 Data: 63
+T2C78 070:654.780 - 0.465ms returns 1 (0x1)
+T19A8 070:655.041 JLINK_IsHalted()
+T19A8 070:655.380 - 0.359ms returns FALSE
+T19A8 070:755.982 JLINK_HasError()
+T19A8 070:756.028 JLINK_IsHalted()
+T19A8 070:756.357 - 0.363ms returns FALSE
+T19A8 070:856.833 JLINK_HasError()
+T19A8 070:856.881 JLINK_IsHalted()
+T19A8 070:857.261 - 0.405ms returns FALSE
+T19A8 070:957.978 JLINK_HasError()
+T19A8 070:958.028 JLINK_IsHalted()
+T19A8 070:958.432 - 0.417ms returns FALSE
+T19A8 071:059.287 JLINK_HasError()
+T19A8 071:059.315 JLINK_IsHalted()
+T19A8 071:059.607 - 0.308ms returns FALSE
+T19A8 071:160.366 JLINK_HasError()
+T19A8 071:160.405 JLINK_HasError()
+T19A8 071:160.417 JLINK_ReadMemU32(0xE0001004, 0x1 Items)
+T19A8 071:160.441 Data: B2 47 02 03
+T19A8 071:160.457 Debug reg: DWT_CYCCNT
+T19A8 071:160.470 - 0.058ms returns 1 (0x1)
+T2C78 071:160.667 JLINK_ReadMemEx(0x2000008A, 0x1 Bytes, Flags = 0x02000000)
+T2C78 071:160.720 CPU_ReadMem(1 bytes @ 0x2000008A)
+T2C78 071:161.032 Data: 00
+T2C78 071:161.048 - 0.387ms returns 1 (0x1)
+T2C78 071:161.072 JLINK_ReadMemEx(0x2000006C, 0x1 Bytes, Flags = 0x02000000)
+T2C78 071:161.088 CPU_ReadMem(1 bytes @ 0x2000006C)
+T2C78 071:161.378 Data: 32
+T2C78 071:161.394 - 0.326ms returns 1 (0x1)
+T2C78 071:161.446 JLINK_ReadMemEx(0x2000011C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 071:161.459 CPU_ReadMem(4 bytes @ 0x2000011C)
+T2C78 071:161.803 Data: C1 00 00 00
+T2C78 071:161.829 - 0.388ms returns 4 (0x4)
+T2C78 071:162.331 JLINK_ReadMemEx(0x20000120, 0x4 Bytes, Flags = 0x02000000)
+T2C78 071:162.360 CPU_ReadMem(4 bytes @ 0x20000120)
+T2C78 071:162.741 Data: 00 00 00 00
+T2C78 071:162.770 - 0.443ms returns 4 (0x4)
+T2C78 071:163.088 JLINK_ReadMemEx(0x20000124, 0x4 Bytes, Flags = 0x02000000)
+T2C78 071:163.108 CPU_ReadMem(4 bytes @ 0x20000124)
+T2C78 071:163.492 Data: EF 00 00 00
+T2C78 071:163.510 - 0.427ms returns 4 (0x4)
+T2C78 071:163.532 JLINK_ReadMemEx(0x20000128, 0x4 Bytes, Flags = 0x02000000)
+T2C78 071:163.546 CPU_ReadMem(4 bytes @ 0x20000128)
+T2C78 071:163.878 Data: 4E 00 00 00
+T2C78 071:163.893 - 0.365ms returns 4 (0x4)
+T2C78 071:164.174 JLINK_ReadMemEx(0x2000012C, 0x4 Bytes, Flags = 0x02000000)
+T2C78 071:164.193 CPU_ReadMem(4 bytes @ 0x2000012C)
+T2C78 071:164.544 Data: 81 0E 00 00
+T2C78 071:164.565 - 0.395ms returns 4 (0x4)
+T2C78 071:164.880 JLINK_ReadMemEx(0x200002EC, 0x4 Bytes, Flags = 0x02000000)
+T2C78 071:164.899 CPU_ReadMem(4 bytes @ 0x200002EC)
+T2C78 071:165.273 Data: 00 00 00 00
+T2C78 071:165.295 - 0.418ms returns 4 (0x4)
+T2C78 071:165.324 JLINK_ReadMemEx(0x200002F0, 0x1 Bytes, Flags = 0x02000000)
+T2C78 071:165.336 CPU_ReadMem(1 bytes @ 0x200002F0)
+T2C78 071:165.765 Data: 00
+T2C78 071:165.796 - 0.476ms returns 1 (0x1)
+T2C78 071:165.821 JLINK_ReadMemEx(0x200002F1, 0x1 Bytes, Flags = 0x02000000)
+T2C78 071:165.840 CPU_ReadMem(1 bytes @ 0x200002F1)
+T2C78 071:166.151 Data: 01
+T2C78 071:166.178 - 0.361ms returns 1 (0x1)
+T2C78 071:166.197 JLINK_ReadMemEx(0x200002F2, 0x1 Bytes, Flags = 0x02000000)
+T2C78 071:166.215 CPU_ReadMem(1 bytes @ 0x200002F2)
+T2C78 071:166.514 Data: 63
+T2C78 071:166.534 - 0.341ms returns 1 (0x1)
+T2C78 071:166.554 JLINK_ReadMemEx(0x200002F3, 0x1 Bytes, Flags = 0x02000000)
+T2C78 071:166.567 CPU_ReadMem(1 bytes @ 0x200002F3)
+T2C78 071:166.863 Data: 63
+T2C78 071:166.876 - 0.325ms returns 1 (0x1)
+T19A8 071:166.986 JLINK_IsHalted()
+T19A8 071:167.275 - 0.296ms returns FALSE
+T19A8 071:268.124 JLINK_HasError()
+T19A8 071:268.182 JLINK_IsHalted()
+T19A8 071:268.533 - 0.361ms returns FALSE
+T19A8 071:368.682 JLINK_HasError()
+T19A8 071:368.787 JLINK_IsHalted()
+T19A8 071:369.320 - 0.573ms returns FALSE
+T19A8 071:469.438 JLINK_HasError()
+T19A8 071:469.512 JLINK_IsHalted()
+T19A8 071:469.917 - 0.420ms returns FALSE
+T19A8 071:570.231 JLINK_HasError()
+T19A8 071:570.299 JLINK_IsHalted()
+T19A8 071:570.744 - 0.461ms returns FALSE
+T19A8 071:671.086 JLINK_HasError()
+T19A8 071:671.113 JLINK_IsHalted()
+T19A8 071:671.759 - 0.677ms returns FALSE
+T19A8 071:772.512 JLINK_HasError()
+T19A8 071:772.571 JLINK_Halt()
+T19A8 071:775.343 - 2.790ms returns 0x00
+T19A8 071:775.369 JLINK_IsHalted()
+T19A8 071:775.377 - 0.010ms returns TRUE
+T19A8 071:775.385 JLINK_IsHalted()
+T19A8 071:775.391 - 0.009ms returns TRUE
+T19A8 071:775.399 JLINK_IsHalted()
+T19A8 071:775.406 - 0.009ms returns TRUE
+T19A8 071:775.415 JLINK_HasError()
+T19A8 071:775.424 JLINK_ReadReg(R15 (PC))
+T19A8 071:775.434 - 0.013ms returns 0x080018F8
+T19A8 071:775.442 JLINK_ReadReg(XPSR)
+T19A8 071:775.449 - 0.010ms returns 0x01000000
+T19A8 071:775.461 JLINK_HasError()
+T19A8 071:775.469 JLINK_HasError()
+T19A8 071:775.476 JLINK_ReadMemU32(0xE000ED30, 0x1 Items)
+T19A8 071:775.490 CPU_ReadMem(4 bytes @ 0xE000ED30)
+T19A8 071:775.867 Data: 01 00 00 00
+T19A8 071:775.889 - 0.416ms returns 1 (0x1)
+T19A8 071:775.902 JLINK_ReadMemU32(0xE0001028, 0x1 Items)
+T19A8 071:775.916 CPU_ReadMem(4 bytes @ 0xE0001028)
+T19A8 071:776.238 Data: 00 00 00 00
+T19A8 071:776.248 Debug reg: DWT_FUNC[0]
+T19A8 071:776.256 - 0.356ms returns 1 (0x1)
+T19A8 071:776.263 JLINK_ReadMemU32(0xE0001038, 0x1 Items)
+T19A8 071:776.271 CPU_ReadMem(4 bytes @ 0xE0001038)
+T19A8 071:776.528 Data: 00 02 00 00
+T19A8 071:776.537 Debug reg: DWT_FUNC[1]
+T19A8 071:776.545 - 0.285ms returns 1 (0x1)
+T19A8 071:776.555 JLINK_ReadMemU32(0xE0001048, 0x1 Items)
+T19A8 071:776.562 CPU_ReadMem(4 bytes @ 0xE0001048)
+T19A8 071:776.928 Data: 00 00 00 00
+T19A8 071:776.937 Debug reg: DWT_FUNC[2]
+T19A8 071:776.945 - 0.393ms returns 1 (0x1)
+T19A8 071:776.954 JLINK_ReadMemU32(0xE0001058, 0x1 Items)
+T19A8 071:776.961 CPU_ReadMem(4 bytes @ 0xE0001058)
+T19A8 071:777.323 Data: 00 00 00 00
+T19A8 071:777.333 Debug reg: DWT_FUNC[3]
+T19A8 071:777.341 - 0.389ms returns 1 (0x1)
+T2C78 072:383.086 JLINK_HasError()
+T2C78 072:388.099 JLINK_Close()
+T2C78 072:388.419 CPU_ReadMem(4 bytes @ 0xE0001000)
+T2C78 072:401.457 - 13.379ms
+T2C78 072:401.483
+T2C78 072:401.492 Closed
diff --git a/MDK-ARM/signal_generator.uvguix.吴俊潮 b/MDK-ARM/signal_generator.uvguix.吴俊潮
index 222b41f2..b63492b2 100644
--- a/MDK-ARM/signal_generator.uvguix.吴俊潮
+++ b/MDK-ARM/signal_generator.uvguix.吴俊潮
@@ -20,12 +20,12 @@
346
Code Coverage
- 1010 143
+ 1010 193
204
Performance Analyzer
- 352 175 175 451
+ 1170 175 175 100
@@ -34,7 +34,7 @@
35141
Event Statistics
- 250 50 874
+ 200 50 700
1506
@@ -70,7 +70,7 @@
466
Source Browser
500
- 166
+ 300
@@ -110,8 +110,8 @@
0
- 743
- 0100000004000000010000000100000001000000010000000000000002000000000000000100000001000000000000002800000028000000010000000400000002000000010000006C463A5C4465736B746F705C576F726B5C30305F50726F6A656374735C30345F5369676E616C5F47656E657261746F725C30305F436F64655C30305F4E65775C7369676E616C5F67656E657261746F725C4170705C4150505F57555C5372635C617070735F6761746865722E63000000000D617070735F6761746865722E6300000000C5D4F200FFFFFFFF6D463A5C4465736B746F705C576F726B5C30305F50726F6A656374735C30345F5369676E616C5F47656E657261746F725C30305F436F64655C30305F4E65775C7369676E616C5F67656E657261746F725C4D444B2D41524D5C737461727475705F73746D33326634303778782E730000000015737461727475705F73746D33326634303778782E7300000000FFDC7800FFFFFFFF5F463A5C4465736B746F705C576F726B5C30305F50726F6A656374735C30345F5369676E616C5F47656E657261746F725C30305F436F64655C30305F4E65775C7369676E616C5F67656E657261746F725C436F72655C5372635C6D61696E2E6300000000066D61696E2E6300000000BECEA100FFFFFFFF7C463A5C4465736B746F705C576F726B5C30305F50726F6A656374735C30345F5369676E616C5F47656E657261746F725C30305F436F64655C30305F4E65775C7369676E616C5F67656E657261746F725C4C56474C5C6D794755495C67656E6572617465645C73657475705F7363725F73637265656E5F6D61696E2E63000000001773657475705F7363725F73637265656E5F6D61696E2E6300000000F0A0A100FFFFFFFF0100000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD50001000000000000000200000074F9FFFF660000000000000035030000
+ 578
+ 0100000004000000010000000100000001000000010000000000000002000000000000000100000001000000000000002800000028000000010000000300000000000000010000006C463A5C4465736B746F705C576F726B5C30305F50726F6A656374735C30345F5369676E616C5F47656E657261746F725C30305F436F64655C30305F4E65775C7369676E616C5F67656E657261746F725C4170705C4150505F57555C5372635C617070735F6761746865722E63000000000D617070735F6761746865722E6300000000C5D4F200FFFFFFFF6D463A5C4465736B746F705C576F726B5C30305F50726F6A656374735C30345F5369676E616C5F47656E657261746F725C30305F436F64655C30305F4E65775C7369676E616C5F67656E657261746F725C4D444B2D41524D5C737461727475705F73746D33326634303778782E730000000015737461727475705F73746D33326634303778782E7300000000FFDC7800FFFFFFFF5F463A5C4465736B746F705C576F726B5C30305F50726F6A656374735C30345F5369676E616C5F47656E657261746F725C30305F436F64655C30305F4E65775C7369676E616C5F67656E657261746F725C436F72655C5372635C6D61696E2E6300000000066D61696E2E6300000000BECEA100FFFFFFFF0100000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD50001000000000000000200000074F9FFFF660000000000000063030000
@@ -150,11 +150,11 @@
0
16
- 0300000066000000ED00000005030000
+ 0300000066000000ED00000033030000
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -170,11 +170,11 @@
0
16
- 0300000066000000ED00000005030000
+ 0300000066000000ED00000033030000
16
- 560000006D00000072010000A9020000
+ D8000000EF000000F40100002B030000
@@ -194,7 +194,7 @@
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -214,7 +214,7 @@
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -234,7 +234,7 @@
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -254,7 +254,7 @@
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -274,7 +274,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -294,7 +294,7 @@
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -314,7 +314,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -334,7 +334,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -354,7 +354,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -374,7 +374,7 @@
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -394,7 +394,7 @@
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -414,7 +414,7 @@
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -434,7 +434,7 @@
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -450,11 +450,11 @@
0
16
- 0300000066000000ED00000005030000
+ 0300000066000000ED00000033030000
16
- 560000006D00000072010000A9020000
+ D8000000EF000000F40100002B030000
@@ -470,11 +470,11 @@
0
16
- 0300000066000000ED00000005030000
+ 0300000066000000ED00000033030000
16
- 560000006D00000072010000A9020000
+ D8000000EF000000F40100002B030000
@@ -490,11 +490,11 @@
0
16
- 000000003603000080070000DE030000
+ 000000006403000080070000DE030000
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -514,7 +514,7 @@
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -530,11 +530,11 @@
0
16
- 03000000390300007D070000C5030000
+ 03000000670300007D070000C5030000
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -554,7 +554,7 @@
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -574,7 +574,7 @@
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -614,7 +614,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -634,7 +634,7 @@
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -654,7 +654,7 @@
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -674,7 +674,7 @@
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -694,7 +694,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -714,7 +714,7 @@
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -734,7 +734,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -754,7 +754,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -774,7 +774,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -794,7 +794,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -814,7 +814,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -834,7 +834,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -854,7 +854,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -874,7 +874,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -894,7 +894,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -914,7 +914,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -934,7 +934,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -954,7 +954,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -974,7 +974,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -994,7 +994,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1014,7 +1014,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1034,7 +1034,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1054,7 +1054,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1074,7 +1074,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1094,7 +1094,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1114,7 +1114,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1134,7 +1134,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1150,11 +1150,11 @@
0
16
- 0300000066000000ED00000005030000
+ 0300000066000000ED00000033030000
16
- 560000006D00000072010000A9020000
+ D8000000EF000000F40100002B030000
@@ -1170,11 +1170,11 @@
0
16
- 03000000390300007D070000C5030000
+ 03000000670300007D070000C5030000
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -1190,11 +1190,11 @@
0
16
- 03000000390300007D070000C5030000
+ 03000000670300007D070000C5030000
16
- 560000006D00000072010000A9020000
+ D8000000EF000000F40100002B030000
@@ -1214,7 +1214,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1234,7 +1234,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1250,11 +1250,11 @@
0
16
- 03000000390300007D070000C5030000
+ 03000000670300007D070000C5030000
16
- 560000006D00000072010000A9020000
+ D8000000EF000000F40100002B030000
@@ -1270,11 +1270,11 @@
0
16
- 03000000390300007D070000C5030000
+ 03000000670300007D070000C5030000
16
- 560000006D00000072010000A9020000
+ D8000000EF000000F40100002B030000
@@ -1294,7 +1294,7 @@
16
- 560000006D0000001E030000FB000000
+ D8000000EF000000A00300007D010000
@@ -1314,7 +1314,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1334,7 +1334,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1354,7 +1354,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1374,7 +1374,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1394,7 +1394,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1414,7 +1414,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1434,7 +1434,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1454,7 +1454,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1474,7 +1474,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1494,7 +1494,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1514,7 +1514,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1534,7 +1534,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1554,7 +1554,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1574,7 +1574,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1594,7 +1594,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1614,7 +1614,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1634,7 +1634,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1654,7 +1654,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1674,7 +1674,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1694,7 +1694,7 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
@@ -1794,12 +1794,12 @@
16
- 560000006D0000004601000036010000
+ D8000000EF000000C8010000B8010000
3312
- 000000000B000000000000000020000000000000FFFFFFFFFFFFFFFFF4000000DD00000090050000E1000000000000000100000004000000010000000000000000000000FFFFFFFF08000000CB00000057010000CC000000F08B00005A01000079070000D601000045890000FFFF02000B004354616262656450616E65002000000000000074F9FFFF6600000010FEFFFFF4000000F40000004F00000090050000DD0000000000000040280046080000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFF0F53797374656D20416E616C797A657200000000D601000001000000FFFFFFFFFFFFFFFF104576656E742053746174697374696373000000004589000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF9C0400004F000000A004000025020000000000000200000004000000010000000000000000000000FFFFFFFF2B000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000050C3000051C3000052C3000053C3000054C3000055C3000056C3000057C3000058C3000059C300005AC300005BC300005CC300005DC300005EC300005FC3000060C3000061C3000062C3000063C300000180004000000000000020FDFFFF6600000010FEFFFF3C020000A00400004F000000900500002502000000000000404100462B0000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFF000000000050C3000001000000FFFFFFFFFFFFFFFF000000000051C3000001000000FFFFFFFFFFFFFFFF000000000052C3000001000000FFFFFFFFFFFFFFFF000000000053C3000001000000FFFFFFFFFFFFFFFF000000000054C3000001000000FFFFFFFFFFFFFFFF000000000055C3000001000000FFFFFFFFFFFFFFFF000000000056C3000001000000FFFFFFFFFFFFFFFF000000000057C3000001000000FFFFFFFFFFFFFFFF000000000058C3000001000000FFFFFFFFFFFFFFFF000000000059C3000001000000FFFFFFFFFFFFFFFF00000000005AC3000001000000FFFFFFFFFFFFFFFF00000000005BC3000001000000FFFFFFFFFFFFFFFF00000000005CC3000001000000FFFFFFFFFFFFFFFF00000000005DC3000001000000FFFFFFFFFFFFFFFF00000000005EC3000001000000FFFFFFFFFFFFFFFF00000000005FC3000001000000FFFFFFFFFFFFFFFF000000000060C3000001000000FFFFFFFFFFFFFFFF000000000061C3000001000000FFFFFFFFFFFFFFFF000000000062C3000001000000FFFFFFFFFFFFFFFF000000000063C3000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFFF00000004F000000F40000001E030000010000000200001004000000010000000000000000000000FFFFFFFF05000000ED0300006D000000C3000000C4000000739400000180001000000100000080F8FFFF6600000070F9FFFF35030000000000004F000000F00000001E0300000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7301000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657301000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273000000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000000000000FFFFFFFFFFFFFFFF0000000011020000900500001502000000000000010000000400000001000000000000000000000000000000000000000000000001000000C6000000FFFFFFFF0F0000008F070000930700009407000095070000960700009007000091070000B5010000B801000038030000B9050000BA050000BB050000BC050000CB0900000180008000000000000080F8FFFF2C02000010FEFFFFCE020000000000001502000090050000B702000000000000404100460F0000001343616C6C20537461636B202B204C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF09554C494E4B706C7573000000003803000001000000FFFFFFFFFFFFFFFF084D656D6F7279203100000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFFFFFFFFFF0000000001000000000000000000000001000000FFFFFFFFC802000015020000CC020000B702000000000000020000000400000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF8F07000001000000FFFFFFFF8F07000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF000000001E03000080070000220300000100000001000010040000000100000008FDFFFF8C000000FFFFFFFF06000000C5000000C7000000B4010000D2010000CF010000779400000180008000000100000080F8FFFF3903000000000000F5030000000000002203000080070000DE0300000000000040820056060000000C4275696C64204F757470757401000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0E536F757263652042726F7773657200000000D201000001000000FFFFFFFFFFFFFFFF0E416C6C205265666572656E63657300000000CF01000001000000FFFFFFFFFFFFFFFF0742726F77736572000000007794000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000
+ 000000000B000000000000000020000000000000FFFFFFFFFFFFFFFFF4000000DD00000090050000E1000000000000000100000004000000010000000000000000000000FFFFFFFF08000000CB00000057010000CC000000F08B00005A01000079070000D601000045890000FFFF02000B004354616262656450616E65002000000000000074F9FFFF6600000010FEFFFFF4000000F40000004F00000090050000DD0000000000000040280046080000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFF0F53797374656D20416E616C797A657200000000D601000001000000FFFFFFFFFFFFFFFF104576656E742053746174697374696373000000004589000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF9C0400004F000000A004000025020000000000000200000004000000010000000000000000000000FFFFFFFF2B000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000050C3000051C3000052C3000053C3000054C3000055C3000056C3000057C3000058C3000059C300005AC300005BC300005CC300005DC300005EC300005FC3000060C3000061C3000062C3000063C300000180004000000000000020FDFFFF6600000010FEFFFF3C020000A00400004F000000900500002502000000000000404100462B0000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFF000000000050C3000001000000FFFFFFFFFFFFFFFF000000000051C3000001000000FFFFFFFFFFFFFFFF000000000052C3000001000000FFFFFFFFFFFFFFFF000000000053C3000001000000FFFFFFFFFFFFFFFF000000000054C3000001000000FFFFFFFFFFFFFFFF000000000055C3000001000000FFFFFFFFFFFFFFFF000000000056C3000001000000FFFFFFFFFFFFFFFF000000000057C3000001000000FFFFFFFFFFFFFFFF000000000058C3000001000000FFFFFFFFFFFFFFFF000000000059C3000001000000FFFFFFFFFFFFFFFF00000000005AC3000001000000FFFFFFFFFFFFFFFF00000000005BC3000001000000FFFFFFFFFFFFFFFF00000000005CC3000001000000FFFFFFFFFFFFFFFF00000000005DC3000001000000FFFFFFFFFFFFFFFF00000000005EC3000001000000FFFFFFFFFFFFFFFF00000000005FC3000001000000FFFFFFFFFFFFFFFF000000000060C3000001000000FFFFFFFFFFFFFFFF000000000061C3000001000000FFFFFFFFFFFFFFFF000000000062C3000001000000FFFFFFFFFFFFFFFF000000000063C3000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFFF00000004F000000F40000004C030000010000000200001004000000010000000000000000000000FFFFFFFF05000000ED0300006D000000C3000000C4000000739400000180001000000100000080F8FFFF6600000070F9FFFF63030000000000004F000000F00000004C0300000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7301000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657301000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273000000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000000000000FFFFFFFFFFFFFFFF0000000011020000900500001502000000000000010000000400000001000000000000000000000000000000000000000000000001000000C6000000FFFFFFFF0F0000008F070000930700009407000095070000960700009007000091070000B5010000B801000038030000B9050000BA050000BB050000BC050000CB0900000180008000000000000080F8FFFF2C02000010FEFFFFCE020000000000001502000090050000B702000000000000404100460F0000001343616C6C20537461636B202B204C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF09554C494E4B706C7573000000003803000001000000FFFFFFFFFFFFFFFF084D656D6F7279203100000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFFFFFFFFFF0000000001000000000000000000000001000000FFFFFFFFC802000015020000CC020000B702000000000000020000000400000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF8F07000001000000FFFFFFFF8F07000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF000000004C0300008007000050030000010000000100001004000000010000000000000000000000FFFFFFFF06000000C5000000C7000000B4010000D2010000CF010000779400000180008000000100000080F8FFFF6703000000000000F5030000000000005003000080070000DE0300000000000040820056060000000C4275696C64204F757470757401000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0E536F757263652042726F7773657200000000D201000001000000FFFFFFFFFFFFFFFF0E416C6C205265666572656E63657300000000CF01000001000000FFFFFFFFFFFFFFFF0742726F77736572000000007794000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000
59392
@@ -1822,7 +1822,7 @@
Build
992
- 00200000010000001000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F0000000000001C0000000000000000000000000000000001000000010000000180D07F0000000000001D000000000000000000000000000000000100000001000000018030800000000000001E000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6EC7040000000000006A0000000C4261746368204275696C2664000000000000000000000000010000000100000000000000000000000100000004000580C7040000000000006A0000000C4261746368204275696C266400000000000000000000000001000000010000000000000000000000010000000000058046070000000000006B0000000D42617463682052656275696C640000000000000000000000000100000001000000000000000000000001000000000005804707000000000000FFFFFFFF0B426174636820436C65616E0000000000000000010000000000000001000000000000000000000001000000000005809E8A0000000000001F0000000F4261746326682053657475702E2E2E000000000000000000000000010000000100000000000000000000000100000000000180D17F0000000004002000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000000002100000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6EBA0000000000000000000000000000000000000000000000000100000001000000960000000300205000000000107369676E616C5F67656E657261746F7296000000000000000100107369676E616C5F67656E657261746F72000000000180EB880000000000002200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000000230000000000000000000000000000000001000000010000000180B08A000000000400240000000000000000000000000000000001000000010000000180A8010000000000004E00000000000000000000000000000000010000000100000001807202000000000000530000000000000000000000000000000001000000010000000180BE010000000000005000000000000000000000000000000000010000000100000000000000054275696C64DC010000
+ 00200000010000001000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F0000000000001C0000000000000000000000000000000001000000010000000180D07F0000000002001D000000000000000000000000000000000100000001000000018030800000000000001E000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6EC7040000000000006A0000000C4261746368204275696C2664000000000000000000000000010000000100000000000000000000000100000004000580C7040000000000006A0000000C4261746368204275696C266400000000000000000000000001000000010000000000000000000000010000000000058046070000000000006B0000000D42617463682052656275696C640000000000000000000000000100000001000000000000000000000001000000000005804707000000000000FFFFFFFF0B426174636820436C65616E0000000000000000010000000000000001000000000000000000000001000000000005809E8A0000000000001F0000000F4261746326682053657475702E2E2E000000000000000000000000010000000100000000000000000000000100000000000180D17F0000000004002000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000000002100000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6EBA0000000000000000000000000000000000000000000000000100000001000000960000000300205000000000107369676E616C5F67656E657261746F7296000000000000000100107369676E616C5F67656E657261746F72000000000180EB880000000000002200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000000230000000000000000000000000000000001000000010000000180B08A000000000400240000000000000000000000000000000001000000010000000180A8010000000000004E00000000000000000000000000000000010000000100000001807202000000000000530000000000000000000000000000000001000000010000000180BE010000000000005000000000000000000000000000000000010000000100000000000000054275696C64DC010000
583
@@ -1838,7 +1838,7 @@
Debug
2373
- 00200000000000001900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000000000002D0000000000000000000000000000000001000000010000000180F07F0000000000002E0000000000000000000000000000000001000000010000000180E8880000000000003700000000000000000000000000000000010000000100000001803B010000000000002F0000000000000000000000000000000001000000010000000180BB8A00000000000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000000000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380D88B00000000000031000000085761746368202631000000000000000000000000010000000100000000000000000000000100000000001380D98B00000000000031000000085761746368202632000000000000000000000000010000000100000000000000000000000100000000001380CE01000000000000FFFFFFFF0C576174636820416E63686F720000000000000000010000000000000001000000000000000000000001000000000013800F01000000000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000094D656D6F7279202632000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000094D656D6F7279202633000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000094D656D6F72792026340000000000000000000000000100000001000000000000000000000001000000000013801001000000000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000000013809407000000000000330000000855415254202326320000000000000000000000000100000001000000000000000000000001000000000013809507000000000000330000000855415254202326330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000001626446562756720287072696E746629205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000007200000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380658A000000000000340000000F264C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E0000001526506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000E26436F646520436F766572616765000000000000000000000000010000000100000000000000000000000100000000001380CD01000000000000FFFFFFFF0F416E616C7973697320416E63686F7200000000000000000100000000000000010000000000000000000000010000000000138053010000000000003F0000000D54726163652057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720000000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720000000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000013800189000000000000360000000F26546F6F6C626F782057696E646F7700000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730000000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F72000000000000000001000000000000000100000000000000000000000100000000000000000005446562756764020000
+ 00200000000000001900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000000000002D0000000000000000000000000000000001000000010000000180F07F0000000000002E0000000000000000000000000000000001000000010000000180E8880000000000003700000000000000000000000000000000010000000100000001803B010000000000002F0000000000000000000000000000000001000000010000000180BB8A00000000000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000000000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380D88B00000000000031000000085761746368202631000000000000000000000000010000000100000000000000000000000100000000001380D98B00000000000031000000085761746368202632000000000000000000000000010000000100000000000000000000000100000000001380CE01000000000000FFFFFFFF0C576174636820416E63686F720100000000000000010000000000000001000000000000000000000001000000000013800F01000000000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000094D656D6F7279202632000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000094D656D6F7279202633000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000094D656D6F72792026340000000000000000000000000100000001000000000000000000000001000000000013801001000000000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000000013809407000000000000330000000855415254202326320000000000000000000000000100000001000000000000000000000001000000000013809507000000000000330000000855415254202326330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000001626446562756720287072696E746629205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000007200000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380658A000000000000340000000F264C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E0000001526506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000E26436F646520436F766572616765000000000000000000000000010000000100000000000000000000000100000000001380CD01000000000000FFFFFFFF0F416E616C7973697320416E63686F7201000000000000000100000000000000010000000000000000000000010000000000138053010000000000003F0000000D54726163652057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720100000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720100000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000013800189000000000000360000000F26546F6F6C626F782057696E646F7700000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730100000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F72010000000000000001000000000000000100000000000000000000000100000000000000000005446562756764020000
898
@@ -1871,11 +1871,11 @@
0
16
- F40000004F0000007F050000DD000000
+ F40000004F000000B1050000DD000000
16
- 74F9FFFF66000000FFFDFFFFF4000000
+ 74F9FFFF6600000031FEFFFFF4000000
@@ -1891,11 +1891,11 @@
0
16
- 0000000063000000F000000038030000
+ 0300000066000000ED0000001F030000
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -1915,7 +1915,7 @@
16
- 560000006D00000072010000A9020000
+ 3C00000053000000580100008F020000
@@ -1931,11 +1931,11 @@
0
16
- 86050000660000007D070000C5030000
+ B8050000660000007D070000C5030000
16
- 5DFEFFFF1A02000021010000BC020000
+ 57FEFFFF1A0200001B010000BC020000
@@ -1951,11 +1951,11 @@
0
16
- 86050000660000007D070000C5030000
+ B8050000660000007D070000C5030000
16
- 5DFEFFFF1A02000021010000BC020000
+ 57FEFFFF1A0200001B010000BC020000
@@ -1971,11 +1971,11 @@
0
16
- 86050000660000007D070000C5030000
+ B8050000660000007D070000C5030000
16
- 5DFEFFFF1A02000021010000BC020000
+ 57FEFFFF1A0200001B010000BC020000
@@ -1991,11 +1991,11 @@
0
16
- 86050000660000007D070000C5030000
+ B8050000660000007D070000C5030000
16
- 5DFEFFFF1A02000021010000BC020000
+ 57FEFFFF1A0200001B010000BC020000
@@ -2015,7 +2015,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2031,11 +2031,11 @@
0
16
- F7000000660000007C050000C4000000
+ F700000066000000AE050000C4000000
16
- 560000006D0000001E030000FB000000
+ 3C0000005300000004030000E1000000
@@ -2051,11 +2051,11 @@
0
16
- 86050000660000007D070000C5030000
+ B8050000660000007D070000C5030000
16
- 5DFEFFFF1A02000021010000BC020000
+ 57FEFFFF1A0200001B010000BC020000
@@ -2071,11 +2071,11 @@
0
16
- 86050000660000007D070000C5030000
+ B8050000660000007D070000C5030000
16
- 5DFEFFFF1A02000021010000BC020000
+ 57FEFFFF1A0200001B010000BC020000
@@ -2091,11 +2091,11 @@
0
16
- 86050000660000007D070000C5030000
+ B8050000660000007D070000C5030000
16
- 5DFEFFFF1A02000021010000BC020000
+ 57FEFFFF1A0200001B010000BC020000
@@ -2111,11 +2111,11 @@
0
16
- 86050000660000007D070000C5030000
+ B8050000660000007D070000C5030000
16
- 5DFEFFFF1A02000021010000BC020000
+ 57FEFFFF1A0200001B010000BC020000
@@ -2131,11 +2131,11 @@
0
16
- 86050000660000007D070000C5030000
+ B8050000660000007D070000C5030000
16
- 5DFEFFFF1A02000021010000BC020000
+ 57FEFFFF1A0200001B010000BC020000
@@ -2151,11 +2151,11 @@
0
16
- 86050000660000007D070000C5030000
+ B8050000660000007D070000C5030000
16
- 5DFEFFFF1A02000021010000BC020000
+ 57FEFFFF1A0200001B010000BC020000
@@ -2171,11 +2171,11 @@
0
16
- 86050000660000007D070000C5030000
+ B8050000660000007D070000C5030000
16
- 5DFEFFFF1A02000021010000BC020000
+ 57FEFFFF1A0200001B010000BC020000
@@ -2195,7 +2195,7 @@
16
- 560000006D00000072010000A9020000
+ 3C00000053000000580100008F020000
@@ -2215,7 +2215,7 @@
16
- 560000006D00000072010000A9020000
+ 3C00000053000000580100008F020000
@@ -2235,7 +2235,7 @@
16
- 560000006D0000001E030000FB000000
+ 3C0000005300000004030000E1000000
@@ -2251,11 +2251,11 @@
0
16
- 000000003C0300007F050000DE030000
+ 000000003C030000B1050000DE030000
16
- 560000006D0000001E030000FB000000
+ 3C0000005300000004030000E1000000
@@ -2275,7 +2275,7 @@
16
- 560000006D0000001E030000FB000000
+ 3C0000005300000004030000E1000000
@@ -2291,11 +2291,11 @@
0
16
- F4000000630000007F050000DD000000
+ F400000063000000B1050000DD000000
16
- 560000006D0000001E030000FB000000
+ 3C0000005300000004030000E1000000
@@ -2311,11 +2311,11 @@
0
16
- F7000000660000007C050000C4000000
+ F700000066000000AE050000C4000000
16
- 560000006D0000001E030000FB000000
+ 3C0000005300000004030000E1000000
@@ -2355,7 +2355,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2371,11 +2371,11 @@
0
16
- 86050000660000007D070000C5030000
+ B8050000660000007D070000C5030000
16
- 5DFEFFFF1A02000021010000BC020000
+ 57FEFFFF1A0200001B010000BC020000
@@ -2391,11 +2391,11 @@
0
16
- F7000000660000007C050000C4000000
+ F700000066000000AE050000C4000000
16
- 560000006D0000001E030000FB000000
+ 3C0000005300000004030000E1000000
@@ -2411,11 +2411,11 @@
0
16
- F7000000660000007C050000C4000000
+ F700000066000000AE050000C4000000
16
- 560000006D0000001E030000FB000000
+ 3C0000005300000004030000E1000000
@@ -2431,11 +2431,11 @@
0
16
- F7000000660000007C050000C4000000
+ F700000066000000AE050000C4000000
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2451,11 +2451,11 @@
0
16
- F7000000660000007C050000C4000000
+ F700000066000000AE050000C4000000
16
- 560000006D0000001E030000FB000000
+ 3C0000005300000004030000E1000000
@@ -2475,7 +2475,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2495,7 +2495,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2515,7 +2515,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2535,7 +2535,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2555,7 +2555,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2575,7 +2575,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2595,7 +2595,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2615,7 +2615,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2635,7 +2635,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2655,7 +2655,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2675,7 +2675,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2695,7 +2695,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2715,7 +2715,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2735,7 +2735,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2755,7 +2755,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2775,7 +2775,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2795,7 +2795,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2815,7 +2815,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2835,7 +2835,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2855,7 +2855,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -2875,13 +2875,13 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
38003
38003
- 0
+ 1
0
0
0
@@ -2895,7 +2895,7 @@
16
- 560000006D00000072010000A9020000
+ 3C00000053000000580100008F020000
@@ -2915,7 +2915,7 @@
16
- 560000006D0000001E030000FB000000
+ 3C0000005300000004030000E1000000
@@ -2935,7 +2935,7 @@
16
- 560000006D00000072010000A9020000
+ 3C00000053000000580100008F020000
@@ -2951,11 +2951,11 @@
0
16
- 86050000660000007D070000C5030000
+ B8050000660000007D070000C5030000
16
- 5DFEFFFF1A02000021010000BC020000
+ 57FEFFFF1A0200001B010000BC020000
@@ -2971,11 +2971,11 @@
0
16
- 86050000660000007D070000C5030000
+ B8050000660000007D070000C5030000
16
- 5DFEFFFF1A02000021010000BC020000
+ 57FEFFFF1A0200001B010000BC020000
@@ -2995,7 +2995,7 @@
16
- 560000006D00000072010000A9020000
+ 3C00000053000000580100008F020000
@@ -3015,7 +3015,7 @@
16
- 560000006D00000072010000A9020000
+ 3C00000053000000580100008F020000
@@ -3031,11 +3031,11 @@
0
16
- F7000000660000007C050000C4000000
+ F700000066000000AE050000C4000000
16
- 560000006D0000001E030000FB000000
+ 3C0000005300000004030000E1000000
@@ -3055,7 +3055,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3075,7 +3075,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3095,7 +3095,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3115,7 +3115,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3135,7 +3135,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3155,7 +3155,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3175,7 +3175,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3195,7 +3195,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3215,7 +3215,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3235,7 +3235,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3255,7 +3255,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3275,7 +3275,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3295,7 +3295,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3315,7 +3315,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3335,7 +3335,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3355,7 +3355,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3375,7 +3375,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3395,7 +3395,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3415,7 +3415,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3435,7 +3435,7 @@
16
- 560000006D0000004601000036010000
+ 3C000000530000002C0100001C010000
@@ -3531,23 +3531,23 @@
0
16
- 86050000660000007D070000C5030000
+ B8050000660000007D070000C5030000
16
- 5DFEFFFF1A02000021010000BC020000
+ 57FEFFFF1A0200001B010000BC020000
3415
- 000000000C000000000000000020000001000000FFFFFFFFFFFFFFFFF4000000DD0000007F050000E1000000010000000100001004000000010000000000000000000000FFFFFFFF08000000CB00000057010000CC000000F08B00005A01000079070000D601000045890000FFFF02000B004354616262656450616E65002000000100000074F9FFFF66000000FFFDFFFFF4000000F40000004F0000007F050000DD0000000000000040280056080000000B446973617373656D626C7901000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFF0F53797374656D20416E616C797A657200000000D601000001000000FFFFFFFFFFFFFFFF104576656E742053746174697374696373000000004589000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF9C0400004F000000A004000025020000000000000200000004000000010000000000000000000000FFFFFFFF2B000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000050C3000051C3000052C3000053C3000054C3000055C3000056C3000057C3000058C3000059C300005AC300005BC300005CC300005DC300005EC300005FC3000060C3000061C3000062C3000063C300000180004000000000000020FDFFFF6600000010FEFFFF3C020000A00400004F000000900500002502000000000000404100462B0000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFF000000000050C3000001000000FFFFFFFFFFFFFFFF000000000051C3000001000000FFFFFFFFFFFFFFFF000000000052C3000001000000FFFFFFFFFFFFFFFF000000000053C3000001000000FFFFFFFFFFFFFFFF000000000054C3000001000000FFFFFFFFFFFFFFFF000000000055C3000001000000FFFFFFFFFFFFFFFF000000000056C3000001000000FFFFFFFFFFFFFFFF000000000057C3000001000000FFFFFFFFFFFFFFFF000000000058C3000001000000FFFFFFFFFFFFFFFF000000000059C3000001000000FFFFFFFFFFFFFFFF00000000005AC3000001000000FFFFFFFFFFFFFFFF00000000005BC3000001000000FFFFFFFFFFFFFFFF00000000005CC3000001000000FFFFFFFFFFFFFFFF00000000005DC3000001000000FFFFFFFFFFFFFFFF00000000005EC3000001000000FFFFFFFFFFFFFFFF00000000005FC3000001000000FFFFFFFFFFFFFFFF000000000060C3000001000000FFFFFFFFFFFFFFFF000000000061C3000001000000FFFFFFFFFFFFFFFF000000000062C3000001000000FFFFFFFFFFFFFFFF000000000063C3000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFFF00000004F000000F400000038030000010000000200001004000000010000000000000000000000FFFFFFFF05000000ED0300006D000000C3000000C4000000739400000180001000000100000080F8FFFF6600000070F9FFFF4F030000000000004F000000F0000000380300000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73000000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7300000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657300000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273000000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000001000000FFFFFFFFFFFFFFFF00000000380300007F0500003C03000001000000010000100400000001000000000000000000000000000000000000000000000001000000C60000000000000001000000000000000000000001000000FFFFFFFFC00300003C030000C4030000DE03000000000000020000000400000000000000000000000000000000000000000000000000000001000000C600000001000000C6000000000000000080000000000000FFFFFFFFFFFFFFFF00000000250200009005000029020000000000000100000004000000010000000000000000000000FFFFFFFF06000000C5000000C7000000B4010000D2010000CF010000779400000180008000000000000080F8FFFF4002000010FEFFFFCE020000000000002902000090050000B70200000000000040820046060000000C4275696C64204F757470757400000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0E536F757263652042726F7773657200000000D201000001000000FFFFFFFFFFFFFFFF0E416C6C205265666572656E63657300000000CF01000001000000FFFFFFFFFFFFFFFF0642726F777365000000007794000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000040000001000000FFFFFFFFFFFFFFFF7F0500004F00000083050000DE03000001000000020000100400000001000000F7FAFFFF7801000000000000000000000000000001000000FFFFFFFF0F0000008F070000930700009407000095070000960700009007000091070000B5010000B801000038030000B9050000BA050000BB050000BC050000CB0900000180004000000100000003FEFFFF6600000000000000F5030000830500004F00000080070000DE03000000000000404100560F0000001343616C6C20537461636B202B204C6F63616C73010000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031010000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF09554C494E4B706C7573000000003803000001000000FFFFFFFFFFFFFFFF084D656D6F7279203101000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFF0500000000000000000000000000000000000000000000000000000001000000FFFFFFFF8F07000001000000FFFFFFFF8F070000000000000000000000000000
+ 000000000C000000000000000020000001000000FFFFFFFFFFFFFFFFF4000000DD000000B1050000E1000000010000000100001004000000010000000000000000000000FFFFFFFF08000000CB00000057010000CC000000F08B00005A01000079070000D601000045890000FFFF02000B004354616262656450616E65002000000100000074F9FFFF6600000031FEFFFFF4000000F40000004F000000B1050000DD0000000000000040280056080000000B446973617373656D626C7901000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFF0F53797374656D20416E616C797A657200000000D601000001000000FFFFFFFFFFFFFFFF104576656E742053746174697374696373000000004589000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF9C0400004F000000A004000025020000000000000200000004000000010000000000000000000000FFFFFFFF2B000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000050C3000051C3000052C3000053C3000054C3000055C3000056C3000057C3000058C3000059C300005AC300005BC300005CC300005DC300005EC300005FC3000060C3000061C3000062C3000063C300000180004000000000000020FDFFFF6600000010FEFFFF3C020000A00400004F000000900500002502000000000000404100462B0000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFF000000000050C3000001000000FFFFFFFFFFFFFFFF000000000051C3000001000000FFFFFFFFFFFFFFFF000000000052C3000001000000FFFFFFFFFFFFFFFF000000000053C3000001000000FFFFFFFFFFFFFFFF000000000054C3000001000000FFFFFFFFFFFFFFFF000000000055C3000001000000FFFFFFFFFFFFFFFF000000000056C3000001000000FFFFFFFFFFFFFFFF000000000057C3000001000000FFFFFFFFFFFFFFFF000000000058C3000001000000FFFFFFFFFFFFFFFF000000000059C3000001000000FFFFFFFFFFFFFFFF00000000005AC3000001000000FFFFFFFFFFFFFFFF00000000005BC3000001000000FFFFFFFFFFFFFFFF00000000005CC3000001000000FFFFFFFFFFFFFFFF00000000005DC3000001000000FFFFFFFFFFFFFFFF00000000005EC3000001000000FFFFFFFFFFFFFFFF00000000005FC3000001000000FFFFFFFFFFFFFFFF000000000060C3000001000000FFFFFFFFFFFFFFFF000000000061C3000001000000FFFFFFFFFFFFFFFF000000000062C3000001000000FFFFFFFFFFFFFFFF000000000063C3000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFFF00000004F000000F400000038030000010000000200001004000000010000000000000000000000FFFFFFFF05000000ED0300006D000000C3000000C4000000739400000180001000000100000080F8FFFF6600000070F9FFFF4F030000000000004F000000F0000000380300000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73000000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7300000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657300000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273010000007394000001000000FFFFFFFFFFFFFFFF04000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000001000000FFFFFFFFFFFFFFFF0000000038030000B10500003C03000001000000010000100400000001000000000000000000000000000000000000000000000001000000C60000000000000001000000000000000000000001000000FFFFFFFFC00300003C030000C4030000DE03000000000000020000000400000000000000000000000000000000000000000000000000000001000000C600000001000000C6000000000000000080000000000000FFFFFFFFFFFFFFFF00000000250200009005000029020000000000000100000004000000010000000000000000000000FFFFFFFF06000000C5000000C7000000B4010000D2010000CF010000779400000180008000000000000080F8FFFF4002000010FEFFFFCE020000000000002902000090050000B70200000000000040820046060000000C4275696C64204F757470757400000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0E536F757263652042726F7773657200000000D201000001000000FFFFFFFFFFFFFFFF0E416C6C205265666572656E63657300000000CF01000001000000FFFFFFFFFFFFFFFF0642726F777365000000007794000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000040000001000000FFFFFFFFFFFFFFFFB10500004F000000B5050000DE0300000100000002000010040000000100000039FCFFFFBA02000000000000000000000000000001000000FFFFFFFF0F0000008F070000930700009407000095070000960700009007000091070000B5010000B801000038030000B9050000BA050000BB050000BC050000CB0900000180004000000100000035FEFFFF6600000000000000F5030000B50500004F00000080070000DE03000000000000404100560F0000001343616C6C20537461636B202B204C6F63616C73010000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031010000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF09554C494E4B706C7573000000003803000001000000FFFFFFFFFFFFFFFF084D656D6F7279203101000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFF0500000000000000000000000000000000000000000000000000000001000000FFFFFFFF8F07000001000000FFFFFFFF8F070000000000000000000000000000
59392
File
2780
- 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE8030000000000000000000000000000000000000000000000010000000100000096000000020020500000000005616C7068619600000000000000110005616C706861044865617004686172640E69745F313030306D735F666C61670D69745F3530306D735F666C61670D69745F3130306D735F666C61670C69745F35306D735F666C61670C69745F31306D735F666C61670B69745F356D735F666C61670B69745F316D735F666C61670A6D6F746F725F6469726502B4C50D52756E6D6F746F725F4E756D7302CEBB0454454D5010535344313330365F5772697465436D640775696E74385F740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E2280000002000100150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B46350000000000000000000000000100000001000000000000000000000001000000020021802280000000000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B4635000000000000000000000000010000000100000000000000000000000100000000002180E0010000000000007500000021456E65726779204D6561737572656D656E742026776974686F75742044656275670000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000003002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000000002180E50100000000000078000000264B696C6C20416C6C20427265616B706F696E747320696E204163746976652050726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180E601000000000000790000002F4B696C6C20416C6C20427265616B706F696E747320696E204D756C74692D50726F6A65637420576F726B73706163650000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000021804C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002180DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002180E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002180E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000218018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000021800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002180D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002180E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65C6030000
+ 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE8030000000000000000000000000000000000000000000000010000000100000096000000020020500000000005616C7068619600000000000000110005616C706861044865617004686172640E69745F313030306D735F666C61670D69745F3530306D735F666C61670D69745F3130306D735F666C61670C69745F35306D735F666C61670C69745F31306D735F666C61670B69745F356D735F666C61670B69745F316D735F666C61670A6D6F746F725F6469726502B4C50D52756E6D6F746F725F4E756D7302CEBB0454454D5010535344313330365F5772697465436D640775696E74385F740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E2280000002000300150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B46350000000000000000000000000100000001000000000000000000000001000000020021802280000000000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B4635000000000000000000000000010000000100000000000000000000000100000000002180E0010000000000007500000021456E65726779204D6561737572656D656E742026776974686F75742044656275670000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000400160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000003002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000000002180E50100000000000078000000264B696C6C20416C6C20427265616B706F696E747320696E204163746976652050726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180E601000000000000790000002F4B696C6C20416C6C20427265616B706F696E747320696E204D756C74692D50726F6A65637420576F726B73706163650000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000021804C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002180DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002180E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002180E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000218018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000021800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002180D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002180E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65C6030000
1423
@@ -3563,7 +3563,7 @@
Build
955
- 00200000000000001000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F0000000000001C0000000000000000000000000000000001000000010000000180D07F0000000000001D000000000000000000000000000000000100000001000000018030800000000000001E000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6EC7040000000000006A0000000C4261746368204275696C2664000000000000000000000000010000000100000000000000000000000100000004000580C7040000000000006A0000000C4261746368204275696C266400000000000000000000000001000000010000000000000000000000010000000000058046070000000000006B0000000D42617463682052656275696C640000000000000000000000000100000001000000000000000000000001000000000005804707000000000000FFFFFFFF0B426174636820436C65616E0100000000000000010000000000000001000000000000000000000001000000000005809E8A0000000000001F0000000F4261746326682053657475702E2E2E000000000000000000000000010000000100000000000000000000000100000000000180D17F0000000000002000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000000002100000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6EBA00000000000000000000000000000000000000000000000001000000010000009600000003002050FFFFFFFF00960000000000000000000180EB880000000000002200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000000230000000000000000000000000000000001000000010000000180B08A000000000000240000000000000000000000000000000001000000010000000180A8010000000000004E00000000000000000000000000000000010000000100000001807202000000000000530000000000000000000000000000000001000000010000000180BE010000000000005000000000000000000000000000000000010000000100000000000000054275696C64DC010000
+ 00200000000000001000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F0000000000001C0000000000000000000000000000000001000000010000000180D07F0000000000001D000000000000000000000000000000000100000001000000018030800000000000001E000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6EC7040000000000006A0000000C4261746368204275696C2664000000000000000000000000010000000100000000000000000000000100000004000580C7040000000000006A0000000C4261746368204275696C266400000000000000000000000001000000010000000000000000000000010000000000058046070000000000006B0000000D42617463682052656275696C640000000000000000000000000100000001000000000000000000000001000000000005804707000000000000FFFFFFFF0B426174636820436C65616E0000000000000000010000000000000001000000000000000000000001000000000005809E8A0000000000001F0000000F4261746326682053657475702E2E2E000000000000000000000000010000000100000000000000000000000100000000000180D17F0000000000002000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000000002100000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6EBA00000000000000000000000000000000000000000000000001000000010000009600000003002050FFFFFFFF00960000000000000000000180EB880000000000002200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000000230000000000000000000000000000000001000000010000000180B08A000000000000240000000000000000000000000000000001000000010000000180A8010000000000004E00000000000000000000000000000000010000000100000001807202000000000000530000000000000000000000000000000001000000010000000180BE010000000000005000000000000000000000000000000000010000000100000000000000054275696C64DC010000
583
@@ -3579,7 +3579,7 @@
Debug
2362
- 00200000010000001900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000004002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000020001002D0000000000000000000000000000000001000000010000000180F07F0000020001002E0000000000000000000000000000000001000000010000000180E8880000020000003700000000000000000000000000000000010000000100000001803B010000020000002F0000000000000000000000000000000001000000010000000180BB8A00000200010030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000002000100310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380D88B00000000000031000000085761746368202631000000000000000000000000010000000100000000000000000000000100000000001380D98B00000000000031000000085761746368202632000000000000000000000000010000000100000000000000000000000100000000001380CE01000000000000FFFFFFFF0C576174636820416E63686F720100000000000000010000000000000001000000000000000000000001000000000013800F0100000200010032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000094D656D6F7279202632000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000094D656D6F7279202633000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000094D656D6F72792026340000000000000000000000000100000001000000000000000000000001000000000013801001000002000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000000013809407000000000000330000000855415254202326320000000000000000000000000100000001000000000000000000000001000000000013809507000000000000330000000855415254202326330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000001626446562756720287072696E746629205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000007200000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380658A000000000000340000000F264C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E0000001526506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000E26436F646520436F766572616765000000000000000000000000010000000100000000000000000000000100000000001380CD01000000000000FFFFFFFF0F416E616C7973697320416E63686F7201000000000000000100000000000000010000000000000000000000010000000000138053010000000000003F0000000D54726163652057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720100000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720100000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000013800189000002000000360000000F26546F6F6C626F782057696E646F7700000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730100000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F72010000000000000001000000000000000100000000000000000000000100000000000000000005446562756764020000
+ 00200000010000001900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000004002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000020001002D0000000000000000000000000000000001000000010000000180F07F0000020001002E0000000000000000000000000000000001000000010000000180E8880000020000003700000000000000000000000000000000010000000100000001803B010000020001002F0000000000000000000000000000000001000000010000000180BB8A00000200010030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000002000100310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380D88B00000000000031000000085761746368202631000000000000000000000000010000000100000000000000000000000100000000001380D98B00000000000031000000085761746368202632000000000000000000000000010000000100000000000000000000000100000000001380CE01000000000000FFFFFFFF0C576174636820416E63686F720000000000000000010000000000000001000000000000000000000001000000000013800F0100000200010032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000094D656D6F7279202632000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000094D656D6F7279202633000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000094D656D6F72792026340000000000000000000000000100000001000000000000000000000001000000000013801001000002000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000000013809407000000000000330000000855415254202326320000000000000000000000000100000001000000000000000000000001000000000013809507000000000000330000000855415254202326330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000001626446562756720287072696E746629205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000007200000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380658A000000000000340000000F264C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E0000001526506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000E26436F646520436F766572616765000000000000000000000000010000000100000000000000000000000100000000001380CD01000000000000FFFFFFFF0F416E616C7973697320416E63686F7200000000000000000100000000000000010000000000000000000000010000000000138053010000000000003F0000000D54726163652057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720000000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720000000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000013800189000002000000360000000F26546F6F6C626F782057696E646F7700000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730000000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F72000000000000000001000000000000000100000000000000000000000100000000000000000005446562756764020000
898
@@ -3603,12 +3603,12 @@
0
100
- 2
+ 0
..\App\APP_WU\Src\apps_gather.c
- 0
- 1359
- 1386
+ 17
+ 1389
+ 1412
1
0
@@ -3616,26 +3616,17 @@
startup_stm32f407xx.s
0
- 158
+ 157
174
- 0
-
- 0
-
-
- ../Core/Src/main.c
- 17
- 72
- 107
1
0
- ..\LVGL\myGUI\generated\setup_scr_screen_main.c
- 98
- 386
- 419
+ ../Core/Src/main.c
+ 0
+ 72
+ 83
1
0
diff --git a/MDK-ARM/signal_generator/_logo_alpha_141x60.o b/MDK-ARM/signal_generator/_logo_alpha_141x60.o
index 0ad6029d..0ac08550 100644
Binary files a/MDK-ARM/signal_generator/_logo_alpha_141x60.o and b/MDK-ARM/signal_generator/_logo_alpha_141x60.o differ
diff --git a/MDK-ARM/signal_generator/_triangle_alpha_15x8.o b/MDK-ARM/signal_generator/_triangle_alpha_15x8.o
index 0d5f8a3b..23d99fbc 100644
Binary files a/MDK-ARM/signal_generator/_triangle_alpha_15x8.o and b/MDK-ARM/signal_generator/_triangle_alpha_15x8.o differ
diff --git a/MDK-ARM/signal_generator/_w_mok_dot_alpha_12x35.o b/MDK-ARM/signal_generator/_w_mok_dot_alpha_12x35.o
index 0275d794..2b83f10e 100644
Binary files a/MDK-ARM/signal_generator/_w_mok_dot_alpha_12x35.o and b/MDK-ARM/signal_generator/_w_mok_dot_alpha_12x35.o differ
diff --git a/MDK-ARM/signal_generator/adc.o b/MDK-ARM/signal_generator/adc.o
index 1768cea2..bf7dcb78 100644
Binary files a/MDK-ARM/signal_generator/adc.o and b/MDK-ARM/signal_generator/adc.o differ
diff --git a/MDK-ARM/signal_generator/ads1220.o b/MDK-ARM/signal_generator/ads1220.o
index ae58ddef..2dc60d34 100644
Binary files a/MDK-ARM/signal_generator/ads1220.o and b/MDK-ARM/signal_generator/ads1220.o differ
diff --git a/MDK-ARM/signal_generator/apps_gather.crf b/MDK-ARM/signal_generator/apps_gather.crf
index 5c0a77ee..1e0c8c69 100644
Binary files a/MDK-ARM/signal_generator/apps_gather.crf and b/MDK-ARM/signal_generator/apps_gather.crf differ
diff --git a/MDK-ARM/signal_generator/apps_gather.o b/MDK-ARM/signal_generator/apps_gather.o
index a2fb8ec6..1419758c 100644
Binary files a/MDK-ARM/signal_generator/apps_gather.o and b/MDK-ARM/signal_generator/apps_gather.o differ
diff --git a/MDK-ARM/signal_generator/ble.o b/MDK-ARM/signal_generator/ble.o
index 4fc2e614..90d4af29 100644
Binary files a/MDK-ARM/signal_generator/ble.o and b/MDK-ARM/signal_generator/ble.o differ
diff --git a/MDK-ARM/signal_generator/cmsis_os.o b/MDK-ARM/signal_generator/cmsis_os.o
index c8291898..dec38e52 100644
Binary files a/MDK-ARM/signal_generator/cmsis_os.o and b/MDK-ARM/signal_generator/cmsis_os.o differ
diff --git a/MDK-ARM/signal_generator/croutine.o b/MDK-ARM/signal_generator/croutine.o
index 6171edfa..8b24ccf2 100644
Binary files a/MDK-ARM/signal_generator/croutine.o and b/MDK-ARM/signal_generator/croutine.o differ
diff --git a/MDK-ARM/signal_generator/custom.o b/MDK-ARM/signal_generator/custom.o
index 0fcf9dfd..ec11b776 100644
Binary files a/MDK-ARM/signal_generator/custom.o and b/MDK-ARM/signal_generator/custom.o differ
diff --git a/MDK-ARM/signal_generator/dac.o b/MDK-ARM/signal_generator/dac.o
index a421ca36..5d40e426 100644
Binary files a/MDK-ARM/signal_generator/dac.o and b/MDK-ARM/signal_generator/dac.o differ
diff --git a/MDK-ARM/signal_generator/dac7811.o b/MDK-ARM/signal_generator/dac7811.o
index 46d2c137..d955b5f4 100644
Binary files a/MDK-ARM/signal_generator/dac7811.o and b/MDK-ARM/signal_generator/dac7811.o differ
diff --git a/MDK-ARM/signal_generator/dac8552.o b/MDK-ARM/signal_generator/dac8552.o
index c1dcbd57..60ad198d 100644
Binary files a/MDK-ARM/signal_generator/dac8552.o and b/MDK-ARM/signal_generator/dac8552.o differ
diff --git a/MDK-ARM/signal_generator/dma.o b/MDK-ARM/signal_generator/dma.o
index c0fa9a0f..31d05149 100644
Binary files a/MDK-ARM/signal_generator/dma.o and b/MDK-ARM/signal_generator/dma.o differ
diff --git a/MDK-ARM/signal_generator/event_groups.o b/MDK-ARM/signal_generator/event_groups.o
index 5ae48b7e..207d12fc 100644
Binary files a/MDK-ARM/signal_generator/event_groups.o and b/MDK-ARM/signal_generator/event_groups.o differ
diff --git a/MDK-ARM/signal_generator/events_init.o b/MDK-ARM/signal_generator/events_init.o
index 31ee7abc..6999e5ce 100644
Binary files a/MDK-ARM/signal_generator/events_init.o and b/MDK-ARM/signal_generator/events_init.o differ
diff --git a/MDK-ARM/signal_generator/freertos.crf b/MDK-ARM/signal_generator/freertos.crf
index be26638c..a9ab3da1 100644
Binary files a/MDK-ARM/signal_generator/freertos.crf and b/MDK-ARM/signal_generator/freertos.crf differ
diff --git a/MDK-ARM/signal_generator/freertos.o b/MDK-ARM/signal_generator/freertos.o
index 1eac2d79..a6203faf 100644
Binary files a/MDK-ARM/signal_generator/freertos.o and b/MDK-ARM/signal_generator/freertos.o differ
diff --git a/MDK-ARM/signal_generator/gifdec.o b/MDK-ARM/signal_generator/gifdec.o
index dccb6119..eafacb54 100644
Binary files a/MDK-ARM/signal_generator/gifdec.o and b/MDK-ARM/signal_generator/gifdec.o differ
diff --git a/MDK-ARM/signal_generator/gpio.o b/MDK-ARM/signal_generator/gpio.o
index 1326f937..f749a8f0 100644
Binary files a/MDK-ARM/signal_generator/gpio.o and b/MDK-ARM/signal_generator/gpio.o differ
diff --git a/MDK-ARM/signal_generator/gui_guider.o b/MDK-ARM/signal_generator/gui_guider.o
index e6533b50..d9a8c9a2 100644
Binary files a/MDK-ARM/signal_generator/gui_guider.o and b/MDK-ARM/signal_generator/gui_guider.o differ
diff --git a/MDK-ARM/signal_generator/hart.o b/MDK-ARM/signal_generator/hart.o
index d543c7f3..0ea8d5c6 100644
Binary files a/MDK-ARM/signal_generator/hart.o and b/MDK-ARM/signal_generator/hart.o differ
diff --git a/MDK-ARM/signal_generator/heap_4.o b/MDK-ARM/signal_generator/heap_4.o
index ae6a4eee..9fee75ec 100644
Binary files a/MDK-ARM/signal_generator/heap_4.o and b/MDK-ARM/signal_generator/heap_4.o differ
diff --git a/MDK-ARM/signal_generator/i2c.o b/MDK-ARM/signal_generator/i2c.o
index 98c43b02..2b868b91 100644
Binary files a/MDK-ARM/signal_generator/i2c.o and b/MDK-ARM/signal_generator/i2c.o differ
diff --git a/MDK-ARM/signal_generator/img_benchmark_cogwheel_alpha16.o b/MDK-ARM/signal_generator/img_benchmark_cogwheel_alpha16.o
index 7141c3f3..313dc0e9 100644
Binary files a/MDK-ARM/signal_generator/img_benchmark_cogwheel_alpha16.o and b/MDK-ARM/signal_generator/img_benchmark_cogwheel_alpha16.o differ
diff --git a/MDK-ARM/signal_generator/img_benchmark_cogwheel_argb.o b/MDK-ARM/signal_generator/img_benchmark_cogwheel_argb.o
index 8b834878..21bcea09 100644
Binary files a/MDK-ARM/signal_generator/img_benchmark_cogwheel_argb.o and b/MDK-ARM/signal_generator/img_benchmark_cogwheel_argb.o differ
diff --git a/MDK-ARM/signal_generator/img_benchmark_cogwheel_chroma_keyed.o b/MDK-ARM/signal_generator/img_benchmark_cogwheel_chroma_keyed.o
index a9544c9e..ec58b4b8 100644
Binary files a/MDK-ARM/signal_generator/img_benchmark_cogwheel_chroma_keyed.o and b/MDK-ARM/signal_generator/img_benchmark_cogwheel_chroma_keyed.o differ
diff --git a/MDK-ARM/signal_generator/img_benchmark_cogwheel_indexed16.o b/MDK-ARM/signal_generator/img_benchmark_cogwheel_indexed16.o
index 3fc61baf..a27bc332 100644
Binary files a/MDK-ARM/signal_generator/img_benchmark_cogwheel_indexed16.o and b/MDK-ARM/signal_generator/img_benchmark_cogwheel_indexed16.o differ
diff --git a/MDK-ARM/signal_generator/img_benchmark_cogwheel_rgb.o b/MDK-ARM/signal_generator/img_benchmark_cogwheel_rgb.o
index 15638fdb..f0445fd2 100644
Binary files a/MDK-ARM/signal_generator/img_benchmark_cogwheel_rgb.o and b/MDK-ARM/signal_generator/img_benchmark_cogwheel_rgb.o differ
diff --git a/MDK-ARM/signal_generator/img_benchmark_cogwheel_rgb565a8.o b/MDK-ARM/signal_generator/img_benchmark_cogwheel_rgb565a8.o
index 2df515e2..6ca2596c 100644
Binary files a/MDK-ARM/signal_generator/img_benchmark_cogwheel_rgb565a8.o and b/MDK-ARM/signal_generator/img_benchmark_cogwheel_rgb565a8.o differ
diff --git a/MDK-ARM/signal_generator/jlx240-00301-bn.o b/MDK-ARM/signal_generator/jlx240-00301-bn.o
index db07895c..fc1cd41c 100644
Binary files a/MDK-ARM/signal_generator/jlx240-00301-bn.o and b/MDK-ARM/signal_generator/jlx240-00301-bn.o differ
diff --git a/MDK-ARM/signal_generator/list.o b/MDK-ARM/signal_generator/list.o
index e7e9fd98..9890af63 100644
Binary files a/MDK-ARM/signal_generator/list.o and b/MDK-ARM/signal_generator/list.o differ
diff --git a/MDK-ARM/signal_generator/lodepng.o b/MDK-ARM/signal_generator/lodepng.o
index 87264531..6162aa4b 100644
Binary files a/MDK-ARM/signal_generator/lodepng.o and b/MDK-ARM/signal_generator/lodepng.o differ
diff --git a/MDK-ARM/signal_generator/lv_anim.o b/MDK-ARM/signal_generator/lv_anim.o
index b10d5b3d..f6f3d2c1 100644
Binary files a/MDK-ARM/signal_generator/lv_anim.o and b/MDK-ARM/signal_generator/lv_anim.o differ
diff --git a/MDK-ARM/signal_generator/lv_anim_timeline.o b/MDK-ARM/signal_generator/lv_anim_timeline.o
index 92faebd7..afbe12d1 100644
Binary files a/MDK-ARM/signal_generator/lv_anim_timeline.o and b/MDK-ARM/signal_generator/lv_anim_timeline.o differ
diff --git a/MDK-ARM/signal_generator/lv_animimg.o b/MDK-ARM/signal_generator/lv_animimg.o
index 32e4d51c..110b263a 100644
Binary files a/MDK-ARM/signal_generator/lv_animimg.o and b/MDK-ARM/signal_generator/lv_animimg.o differ
diff --git a/MDK-ARM/signal_generator/lv_arc.o b/MDK-ARM/signal_generator/lv_arc.o
index f40df908..fc11e6c5 100644
Binary files a/MDK-ARM/signal_generator/lv_arc.o and b/MDK-ARM/signal_generator/lv_arc.o differ
diff --git a/MDK-ARM/signal_generator/lv_area.o b/MDK-ARM/signal_generator/lv_area.o
index a6182042..a9625393 100644
Binary files a/MDK-ARM/signal_generator/lv_area.o and b/MDK-ARM/signal_generator/lv_area.o differ
diff --git a/MDK-ARM/signal_generator/lv_async.o b/MDK-ARM/signal_generator/lv_async.o
index 255c1248..b2e0cd1f 100644
Binary files a/MDK-ARM/signal_generator/lv_async.o and b/MDK-ARM/signal_generator/lv_async.o differ
diff --git a/MDK-ARM/signal_generator/lv_bar.o b/MDK-ARM/signal_generator/lv_bar.o
index 40aad8e6..8cba7031 100644
Binary files a/MDK-ARM/signal_generator/lv_bar.o and b/MDK-ARM/signal_generator/lv_bar.o differ
diff --git a/MDK-ARM/signal_generator/lv_bidi.o b/MDK-ARM/signal_generator/lv_bidi.o
index 300df4e4..63ac55b6 100644
Binary files a/MDK-ARM/signal_generator/lv_bidi.o and b/MDK-ARM/signal_generator/lv_bidi.o differ
diff --git a/MDK-ARM/signal_generator/lv_bmp.o b/MDK-ARM/signal_generator/lv_bmp.o
index ba51caaa..e7979271 100644
Binary files a/MDK-ARM/signal_generator/lv_bmp.o and b/MDK-ARM/signal_generator/lv_bmp.o differ
diff --git a/MDK-ARM/signal_generator/lv_btn.o b/MDK-ARM/signal_generator/lv_btn.o
index b2ee88ad..8603691f 100644
Binary files a/MDK-ARM/signal_generator/lv_btn.o and b/MDK-ARM/signal_generator/lv_btn.o differ
diff --git a/MDK-ARM/signal_generator/lv_btnmatrix.o b/MDK-ARM/signal_generator/lv_btnmatrix.o
index 3e8857d2..df791f95 100644
Binary files a/MDK-ARM/signal_generator/lv_btnmatrix.o and b/MDK-ARM/signal_generator/lv_btnmatrix.o differ
diff --git a/MDK-ARM/signal_generator/lv_calendar.o b/MDK-ARM/signal_generator/lv_calendar.o
index c6fcf0a0..6ffa5d91 100644
Binary files a/MDK-ARM/signal_generator/lv_calendar.o and b/MDK-ARM/signal_generator/lv_calendar.o differ
diff --git a/MDK-ARM/signal_generator/lv_calendar_header_arrow.o b/MDK-ARM/signal_generator/lv_calendar_header_arrow.o
index a08a57f6..c79444f8 100644
Binary files a/MDK-ARM/signal_generator/lv_calendar_header_arrow.o and b/MDK-ARM/signal_generator/lv_calendar_header_arrow.o differ
diff --git a/MDK-ARM/signal_generator/lv_calendar_header_dropdown.o b/MDK-ARM/signal_generator/lv_calendar_header_dropdown.o
index 6fe880c8..7d6bc53f 100644
Binary files a/MDK-ARM/signal_generator/lv_calendar_header_dropdown.o and b/MDK-ARM/signal_generator/lv_calendar_header_dropdown.o differ
diff --git a/MDK-ARM/signal_generator/lv_canvas.o b/MDK-ARM/signal_generator/lv_canvas.o
index a9c0aeb5..e3c800f1 100644
Binary files a/MDK-ARM/signal_generator/lv_canvas.o and b/MDK-ARM/signal_generator/lv_canvas.o differ
diff --git a/MDK-ARM/signal_generator/lv_chart.o b/MDK-ARM/signal_generator/lv_chart.o
index e58cb4c2..e81fa94e 100644
Binary files a/MDK-ARM/signal_generator/lv_chart.o and b/MDK-ARM/signal_generator/lv_chart.o differ
diff --git a/MDK-ARM/signal_generator/lv_checkbox.o b/MDK-ARM/signal_generator/lv_checkbox.o
index daad268a..68ee10d1 100644
Binary files a/MDK-ARM/signal_generator/lv_checkbox.o and b/MDK-ARM/signal_generator/lv_checkbox.o differ
diff --git a/MDK-ARM/signal_generator/lv_color.o b/MDK-ARM/signal_generator/lv_color.o
index 3c954c23..b159fdca 100644
Binary files a/MDK-ARM/signal_generator/lv_color.o and b/MDK-ARM/signal_generator/lv_color.o differ
diff --git a/MDK-ARM/signal_generator/lv_colorwheel.o b/MDK-ARM/signal_generator/lv_colorwheel.o
index 66bd7663..3b6d25d3 100644
Binary files a/MDK-ARM/signal_generator/lv_colorwheel.o and b/MDK-ARM/signal_generator/lv_colorwheel.o differ
diff --git a/MDK-ARM/signal_generator/lv_demo_benchmark.o b/MDK-ARM/signal_generator/lv_demo_benchmark.o
index ee9abb68..5a24e8ae 100644
Binary files a/MDK-ARM/signal_generator/lv_demo_benchmark.o and b/MDK-ARM/signal_generator/lv_demo_benchmark.o differ
diff --git a/MDK-ARM/signal_generator/lv_disp.o b/MDK-ARM/signal_generator/lv_disp.o
index 7c5a96eb..599498ad 100644
Binary files a/MDK-ARM/signal_generator/lv_disp.o and b/MDK-ARM/signal_generator/lv_disp.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw.o b/MDK-ARM/signal_generator/lv_draw.o
index 95c9a4c1..fd56714b 100644
Binary files a/MDK-ARM/signal_generator/lv_draw.o and b/MDK-ARM/signal_generator/lv_draw.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_arc.o b/MDK-ARM/signal_generator/lv_draw_arc.o
index 4fc4d1ec..90ad7eea 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_arc.o and b/MDK-ARM/signal_generator/lv_draw_arc.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_img.o b/MDK-ARM/signal_generator/lv_draw_img.o
index 51ce6db1..776c10b6 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_img.o and b/MDK-ARM/signal_generator/lv_draw_img.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_label.o b/MDK-ARM/signal_generator/lv_draw_label.o
index d31a4ad1..b30789ba 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_label.o and b/MDK-ARM/signal_generator/lv_draw_label.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_layer.o b/MDK-ARM/signal_generator/lv_draw_layer.o
index a3bf54ce..ec65812a 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_layer.o and b/MDK-ARM/signal_generator/lv_draw_layer.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_line.o b/MDK-ARM/signal_generator/lv_draw_line.o
index 5a34802a..7d3948ee 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_line.o and b/MDK-ARM/signal_generator/lv_draw_line.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_mask.o b/MDK-ARM/signal_generator/lv_draw_mask.o
index 08b805b4..fd606227 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_mask.o and b/MDK-ARM/signal_generator/lv_draw_mask.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_pxp.o b/MDK-ARM/signal_generator/lv_draw_pxp.o
index cfa41b4e..eff9d025 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_pxp.o and b/MDK-ARM/signal_generator/lv_draw_pxp.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_pxp_blend.o b/MDK-ARM/signal_generator/lv_draw_pxp_blend.o
index 473632b6..e0d3cd89 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_pxp_blend.o and b/MDK-ARM/signal_generator/lv_draw_pxp_blend.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_rect.o b/MDK-ARM/signal_generator/lv_draw_rect.o
index d3706112..f13a80d4 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_rect.o and b/MDK-ARM/signal_generator/lv_draw_rect.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sdl.o b/MDK-ARM/signal_generator/lv_draw_sdl.o
index 2ecc0787..777a0e38 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sdl.o and b/MDK-ARM/signal_generator/lv_draw_sdl.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sdl_arc.o b/MDK-ARM/signal_generator/lv_draw_sdl_arc.o
index 7824e348..7ddcd694 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sdl_arc.o and b/MDK-ARM/signal_generator/lv_draw_sdl_arc.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sdl_bg.o b/MDK-ARM/signal_generator/lv_draw_sdl_bg.o
index 0aef4783..403c3e0b 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sdl_bg.o and b/MDK-ARM/signal_generator/lv_draw_sdl_bg.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sdl_composite.o b/MDK-ARM/signal_generator/lv_draw_sdl_composite.o
index 0188d588..93f4b6d4 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sdl_composite.o and b/MDK-ARM/signal_generator/lv_draw_sdl_composite.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sdl_img.o b/MDK-ARM/signal_generator/lv_draw_sdl_img.o
index 8164505b..92547060 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sdl_img.o and b/MDK-ARM/signal_generator/lv_draw_sdl_img.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sdl_label.o b/MDK-ARM/signal_generator/lv_draw_sdl_label.o
index 383f66ba..8b2a12d9 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sdl_label.o and b/MDK-ARM/signal_generator/lv_draw_sdl_label.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sdl_layer.o b/MDK-ARM/signal_generator/lv_draw_sdl_layer.o
index c4dbe8d6..386a1ffe 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sdl_layer.o and b/MDK-ARM/signal_generator/lv_draw_sdl_layer.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sdl_line.o b/MDK-ARM/signal_generator/lv_draw_sdl_line.o
index a4d7897d..9fd87f51 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sdl_line.o and b/MDK-ARM/signal_generator/lv_draw_sdl_line.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sdl_mask.o b/MDK-ARM/signal_generator/lv_draw_sdl_mask.o
index d2603e97..c16bbb35 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sdl_mask.o and b/MDK-ARM/signal_generator/lv_draw_sdl_mask.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sdl_polygon.o b/MDK-ARM/signal_generator/lv_draw_sdl_polygon.o
index e9b24394..fc50a9aa 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sdl_polygon.o and b/MDK-ARM/signal_generator/lv_draw_sdl_polygon.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sdl_rect.o b/MDK-ARM/signal_generator/lv_draw_sdl_rect.o
index 33b755d2..9c774d7e 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sdl_rect.o and b/MDK-ARM/signal_generator/lv_draw_sdl_rect.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sdl_stack_blur.o b/MDK-ARM/signal_generator/lv_draw_sdl_stack_blur.o
index 911872e0..d5b462ef 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sdl_stack_blur.o and b/MDK-ARM/signal_generator/lv_draw_sdl_stack_blur.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sdl_texture_cache.o b/MDK-ARM/signal_generator/lv_draw_sdl_texture_cache.o
index b13150b4..4171abf1 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sdl_texture_cache.o and b/MDK-ARM/signal_generator/lv_draw_sdl_texture_cache.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sdl_utils.o b/MDK-ARM/signal_generator/lv_draw_sdl_utils.o
index e627a1fb..0b021066 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sdl_utils.o and b/MDK-ARM/signal_generator/lv_draw_sdl_utils.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sw.o b/MDK-ARM/signal_generator/lv_draw_sw.o
index 09698237..c82bdb02 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sw.o and b/MDK-ARM/signal_generator/lv_draw_sw.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sw_arc.o b/MDK-ARM/signal_generator/lv_draw_sw_arc.o
index fa6997cd..360c3746 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sw_arc.o and b/MDK-ARM/signal_generator/lv_draw_sw_arc.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sw_blend.o b/MDK-ARM/signal_generator/lv_draw_sw_blend.o
index f0e37bb4..547c182b 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sw_blend.o and b/MDK-ARM/signal_generator/lv_draw_sw_blend.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sw_dither.o b/MDK-ARM/signal_generator/lv_draw_sw_dither.o
index e07f7108..f00a424d 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sw_dither.o and b/MDK-ARM/signal_generator/lv_draw_sw_dither.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sw_gradient.o b/MDK-ARM/signal_generator/lv_draw_sw_gradient.o
index 45f79fa4..d443685f 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sw_gradient.o and b/MDK-ARM/signal_generator/lv_draw_sw_gradient.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sw_img.o b/MDK-ARM/signal_generator/lv_draw_sw_img.o
index 52f0df3d..e37b6b50 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sw_img.o and b/MDK-ARM/signal_generator/lv_draw_sw_img.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sw_layer.o b/MDK-ARM/signal_generator/lv_draw_sw_layer.o
index b3106838..c17d897c 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sw_layer.o and b/MDK-ARM/signal_generator/lv_draw_sw_layer.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sw_letter.o b/MDK-ARM/signal_generator/lv_draw_sw_letter.o
index b9e8b1fe..fa2ce1b4 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sw_letter.o and b/MDK-ARM/signal_generator/lv_draw_sw_letter.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sw_line.o b/MDK-ARM/signal_generator/lv_draw_sw_line.o
index 9f53ef5f..5429980f 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sw_line.o and b/MDK-ARM/signal_generator/lv_draw_sw_line.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sw_polygon.o b/MDK-ARM/signal_generator/lv_draw_sw_polygon.o
index f576ab3f..89eb2624 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sw_polygon.o and b/MDK-ARM/signal_generator/lv_draw_sw_polygon.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sw_rect.o b/MDK-ARM/signal_generator/lv_draw_sw_rect.o
index 4a5b681e..89341f50 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sw_rect.o and b/MDK-ARM/signal_generator/lv_draw_sw_rect.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_sw_transform.o b/MDK-ARM/signal_generator/lv_draw_sw_transform.o
index 0a6d99d7..d0312d3d 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_sw_transform.o and b/MDK-ARM/signal_generator/lv_draw_sw_transform.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_transform.o b/MDK-ARM/signal_generator/lv_draw_transform.o
index 0405d04e..9892496c 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_transform.o and b/MDK-ARM/signal_generator/lv_draw_transform.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_triangle.o b/MDK-ARM/signal_generator/lv_draw_triangle.o
index 59f04e99..0e1d12d2 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_triangle.o and b/MDK-ARM/signal_generator/lv_draw_triangle.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_vglite.o b/MDK-ARM/signal_generator/lv_draw_vglite.o
index 0183d6d2..48c3f244 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_vglite.o and b/MDK-ARM/signal_generator/lv_draw_vglite.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_vglite_arc.o b/MDK-ARM/signal_generator/lv_draw_vglite_arc.o
index 127addf6..6e9184f8 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_vglite_arc.o and b/MDK-ARM/signal_generator/lv_draw_vglite_arc.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_vglite_blend.o b/MDK-ARM/signal_generator/lv_draw_vglite_blend.o
index 1cfb40be..cc250c1d 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_vglite_blend.o and b/MDK-ARM/signal_generator/lv_draw_vglite_blend.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_vglite_line.o b/MDK-ARM/signal_generator/lv_draw_vglite_line.o
index 2e36eb71..ab8e8770 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_vglite_line.o and b/MDK-ARM/signal_generator/lv_draw_vglite_line.o differ
diff --git a/MDK-ARM/signal_generator/lv_draw_vglite_rect.o b/MDK-ARM/signal_generator/lv_draw_vglite_rect.o
index e19d0d35..83c98202 100644
Binary files a/MDK-ARM/signal_generator/lv_draw_vglite_rect.o and b/MDK-ARM/signal_generator/lv_draw_vglite_rect.o differ
diff --git a/MDK-ARM/signal_generator/lv_dropdown.o b/MDK-ARM/signal_generator/lv_dropdown.o
index 8ee41ee7..49fe2ce4 100644
Binary files a/MDK-ARM/signal_generator/lv_dropdown.o and b/MDK-ARM/signal_generator/lv_dropdown.o differ
diff --git a/MDK-ARM/signal_generator/lv_event.o b/MDK-ARM/signal_generator/lv_event.o
index bf7628a5..4870f5e3 100644
Binary files a/MDK-ARM/signal_generator/lv_event.o and b/MDK-ARM/signal_generator/lv_event.o differ
diff --git a/MDK-ARM/signal_generator/lv_extra.o b/MDK-ARM/signal_generator/lv_extra.o
index 54f308f8..0266cdd9 100644
Binary files a/MDK-ARM/signal_generator/lv_extra.o and b/MDK-ARM/signal_generator/lv_extra.o differ
diff --git a/MDK-ARM/signal_generator/lv_ffmpeg.o b/MDK-ARM/signal_generator/lv_ffmpeg.o
index dc1af85c..264439d7 100644
Binary files a/MDK-ARM/signal_generator/lv_ffmpeg.o and b/MDK-ARM/signal_generator/lv_ffmpeg.o differ
diff --git a/MDK-ARM/signal_generator/lv_flex.o b/MDK-ARM/signal_generator/lv_flex.o
index 6bb020fb..7e384993 100644
Binary files a/MDK-ARM/signal_generator/lv_flex.o and b/MDK-ARM/signal_generator/lv_flex.o differ
diff --git a/MDK-ARM/signal_generator/lv_font.o b/MDK-ARM/signal_generator/lv_font.o
index 19048afd..0417605e 100644
Binary files a/MDK-ARM/signal_generator/lv_font.o and b/MDK-ARM/signal_generator/lv_font.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_bechmark_montserrat_12_compr_az.c.o b/MDK-ARM/signal_generator/lv_font_bechmark_montserrat_12_compr_az.c.o
index 89346f95..098e0dfc 100644
Binary files a/MDK-ARM/signal_generator/lv_font_bechmark_montserrat_12_compr_az.c.o and b/MDK-ARM/signal_generator/lv_font_bechmark_montserrat_12_compr_az.c.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_bechmark_montserrat_16_compr_az.c.o b/MDK-ARM/signal_generator/lv_font_bechmark_montserrat_16_compr_az.c.o
index a9d3e2d8..2668d193 100644
Binary files a/MDK-ARM/signal_generator/lv_font_bechmark_montserrat_16_compr_az.c.o and b/MDK-ARM/signal_generator/lv_font_bechmark_montserrat_16_compr_az.c.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_bechmark_montserrat_28_compr_az.c.o b/MDK-ARM/signal_generator/lv_font_bechmark_montserrat_28_compr_az.c.o
index 69f39594..2e566bb9 100644
Binary files a/MDK-ARM/signal_generator/lv_font_bechmark_montserrat_28_compr_az.c.o and b/MDK-ARM/signal_generator/lv_font_bechmark_montserrat_28_compr_az.c.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_dejavu_16_persian_hebrew.o b/MDK-ARM/signal_generator/lv_font_dejavu_16_persian_hebrew.o
index b292c634..14e8f8a8 100644
Binary files a/MDK-ARM/signal_generator/lv_font_dejavu_16_persian_hebrew.o and b/MDK-ARM/signal_generator/lv_font_dejavu_16_persian_hebrew.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_fmt_txt.o b/MDK-ARM/signal_generator/lv_font_fmt_txt.o
index 037a68f5..2d4f4161 100644
Binary files a/MDK-ARM/signal_generator/lv_font_fmt_txt.o and b/MDK-ARM/signal_generator/lv_font_fmt_txt.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_loader.o b/MDK-ARM/signal_generator/lv_font_loader.o
index f4d383ed..0ea6a301 100644
Binary files a/MDK-ARM/signal_generator/lv_font_loader.o and b/MDK-ARM/signal_generator/lv_font_loader.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_10.o b/MDK-ARM/signal_generator/lv_font_montserrat_10.o
index 510f52b7..eadf2280 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_10.o and b/MDK-ARM/signal_generator/lv_font_montserrat_10.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_12.o b/MDK-ARM/signal_generator/lv_font_montserrat_12.o
index e607ba46..79ac3caf 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_12.o and b/MDK-ARM/signal_generator/lv_font_montserrat_12.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_12_subpx.o b/MDK-ARM/signal_generator/lv_font_montserrat_12_subpx.o
index 27fcecf8..6b2a8494 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_12_subpx.o and b/MDK-ARM/signal_generator/lv_font_montserrat_12_subpx.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_14.o b/MDK-ARM/signal_generator/lv_font_montserrat_14.o
index cd99634d..ed5bac9e 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_14.o and b/MDK-ARM/signal_generator/lv_font_montserrat_14.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_16.o b/MDK-ARM/signal_generator/lv_font_montserrat_16.o
index 422587c0..1287bb1c 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_16.o and b/MDK-ARM/signal_generator/lv_font_montserrat_16.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_18.o b/MDK-ARM/signal_generator/lv_font_montserrat_18.o
index 7549a866..a8092a1d 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_18.o and b/MDK-ARM/signal_generator/lv_font_montserrat_18.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_20.o b/MDK-ARM/signal_generator/lv_font_montserrat_20.o
index d5a39319..4f361139 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_20.o and b/MDK-ARM/signal_generator/lv_font_montserrat_20.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_22.o b/MDK-ARM/signal_generator/lv_font_montserrat_22.o
index 08768458..77b3d109 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_22.o and b/MDK-ARM/signal_generator/lv_font_montserrat_22.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_24.o b/MDK-ARM/signal_generator/lv_font_montserrat_24.o
index 49668481..fc3c5b13 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_24.o and b/MDK-ARM/signal_generator/lv_font_montserrat_24.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_26.o b/MDK-ARM/signal_generator/lv_font_montserrat_26.o
index fb9d1a08..890dd7be 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_26.o and b/MDK-ARM/signal_generator/lv_font_montserrat_26.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_28.o b/MDK-ARM/signal_generator/lv_font_montserrat_28.o
index 2a68ce41..9a6c4a81 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_28.o and b/MDK-ARM/signal_generator/lv_font_montserrat_28.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_28_compressed.o b/MDK-ARM/signal_generator/lv_font_montserrat_28_compressed.o
index eda6666e..a7a0f85a 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_28_compressed.o and b/MDK-ARM/signal_generator/lv_font_montserrat_28_compressed.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_30.o b/MDK-ARM/signal_generator/lv_font_montserrat_30.o
index a632c259..028d0fae 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_30.o and b/MDK-ARM/signal_generator/lv_font_montserrat_30.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_32.o b/MDK-ARM/signal_generator/lv_font_montserrat_32.o
index c1a4eb66..adf7f807 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_32.o and b/MDK-ARM/signal_generator/lv_font_montserrat_32.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_34.o b/MDK-ARM/signal_generator/lv_font_montserrat_34.o
index bf474c62..f09f275f 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_34.o and b/MDK-ARM/signal_generator/lv_font_montserrat_34.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_36.o b/MDK-ARM/signal_generator/lv_font_montserrat_36.o
index eb0239fe..95e97ac3 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_36.o and b/MDK-ARM/signal_generator/lv_font_montserrat_36.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_38.o b/MDK-ARM/signal_generator/lv_font_montserrat_38.o
index 77b72c2e..8f5cd39c 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_38.o and b/MDK-ARM/signal_generator/lv_font_montserrat_38.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_40.o b/MDK-ARM/signal_generator/lv_font_montserrat_40.o
index aabd5ce0..5299a78d 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_40.o and b/MDK-ARM/signal_generator/lv_font_montserrat_40.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_42.o b/MDK-ARM/signal_generator/lv_font_montserrat_42.o
index 052589e2..b1876f12 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_42.o and b/MDK-ARM/signal_generator/lv_font_montserrat_42.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_44.o b/MDK-ARM/signal_generator/lv_font_montserrat_44.o
index 4eed6cb4..03657108 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_44.o and b/MDK-ARM/signal_generator/lv_font_montserrat_44.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_46.o b/MDK-ARM/signal_generator/lv_font_montserrat_46.o
index 04dcde67..cc103fd9 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_46.o and b/MDK-ARM/signal_generator/lv_font_montserrat_46.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_48.o b/MDK-ARM/signal_generator/lv_font_montserrat_48.o
index e11d90ca..7c19ef81 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_48.o and b/MDK-ARM/signal_generator/lv_font_montserrat_48.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserrat_8.o b/MDK-ARM/signal_generator/lv_font_montserrat_8.o
index 54028644..a43571ce 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserrat_8.o and b/MDK-ARM/signal_generator/lv_font_montserrat_8.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserratmedium_12.o b/MDK-ARM/signal_generator/lv_font_montserratmedium_12.o
index a1c746cc..2bab88be 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserratmedium_12.o and b/MDK-ARM/signal_generator/lv_font_montserratmedium_12.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserratmedium_14.o b/MDK-ARM/signal_generator/lv_font_montserratmedium_14.o
index 904f2ddb..f254bbc2 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserratmedium_14.o and b/MDK-ARM/signal_generator/lv_font_montserratmedium_14.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserratmedium_16.o b/MDK-ARM/signal_generator/lv_font_montserratmedium_16.o
index 20123d97..576121da 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserratmedium_16.o and b/MDK-ARM/signal_generator/lv_font_montserratmedium_16.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_montserratmedium_20.o b/MDK-ARM/signal_generator/lv_font_montserratmedium_20.o
index 2ccc2753..f1b54929 100644
Binary files a/MDK-ARM/signal_generator/lv_font_montserratmedium_20.o and b/MDK-ARM/signal_generator/lv_font_montserratmedium_20.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_simsun_16_cjk.o b/MDK-ARM/signal_generator/lv_font_simsun_16_cjk.o
index 0d386aa2..6a4b1b3a 100644
Binary files a/MDK-ARM/signal_generator/lv_font_simsun_16_cjk.o and b/MDK-ARM/signal_generator/lv_font_simsun_16_cjk.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_sourcehanserifsc_regular_12.o b/MDK-ARM/signal_generator/lv_font_sourcehanserifsc_regular_12.o
index 5199656a..0bff795a 100644
Binary files a/MDK-ARM/signal_generator/lv_font_sourcehanserifsc_regular_12.o and b/MDK-ARM/signal_generator/lv_font_sourcehanserifsc_regular_12.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_sourcehanserifsc_regular_14.o b/MDK-ARM/signal_generator/lv_font_sourcehanserifsc_regular_14.o
index 7cb7425e..e28713ec 100644
Binary files a/MDK-ARM/signal_generator/lv_font_sourcehanserifsc_regular_14.o and b/MDK-ARM/signal_generator/lv_font_sourcehanserifsc_regular_14.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_unscii_16.o b/MDK-ARM/signal_generator/lv_font_unscii_16.o
index 6fb62e4d..245e1362 100644
Binary files a/MDK-ARM/signal_generator/lv_font_unscii_16.o and b/MDK-ARM/signal_generator/lv_font_unscii_16.o differ
diff --git a/MDK-ARM/signal_generator/lv_font_unscii_8.o b/MDK-ARM/signal_generator/lv_font_unscii_8.o
index 36f593b1..477ac604 100644
Binary files a/MDK-ARM/signal_generator/lv_font_unscii_8.o and b/MDK-ARM/signal_generator/lv_font_unscii_8.o differ
diff --git a/MDK-ARM/signal_generator/lv_fragment.o b/MDK-ARM/signal_generator/lv_fragment.o
index 3b0b0b2d..83d7ba56 100644
Binary files a/MDK-ARM/signal_generator/lv_fragment.o and b/MDK-ARM/signal_generator/lv_fragment.o differ
diff --git a/MDK-ARM/signal_generator/lv_fragment_manager.o b/MDK-ARM/signal_generator/lv_fragment_manager.o
index 39dc811b..b7da2582 100644
Binary files a/MDK-ARM/signal_generator/lv_fragment_manager.o and b/MDK-ARM/signal_generator/lv_fragment_manager.o differ
diff --git a/MDK-ARM/signal_generator/lv_freetype.o b/MDK-ARM/signal_generator/lv_freetype.o
index 2f1ddaac..5bdd2ab4 100644
Binary files a/MDK-ARM/signal_generator/lv_freetype.o and b/MDK-ARM/signal_generator/lv_freetype.o differ
diff --git a/MDK-ARM/signal_generator/lv_fs.o b/MDK-ARM/signal_generator/lv_fs.o
index 61418bdf..5918c8fc 100644
Binary files a/MDK-ARM/signal_generator/lv_fs.o and b/MDK-ARM/signal_generator/lv_fs.o differ
diff --git a/MDK-ARM/signal_generator/lv_fs_fatfs.o b/MDK-ARM/signal_generator/lv_fs_fatfs.o
index 7fbf5cad..0c415b25 100644
Binary files a/MDK-ARM/signal_generator/lv_fs_fatfs.o and b/MDK-ARM/signal_generator/lv_fs_fatfs.o differ
diff --git a/MDK-ARM/signal_generator/lv_fs_littlefs.o b/MDK-ARM/signal_generator/lv_fs_littlefs.o
index 8546dfb0..dd4c443f 100644
Binary files a/MDK-ARM/signal_generator/lv_fs_littlefs.o and b/MDK-ARM/signal_generator/lv_fs_littlefs.o differ
diff --git a/MDK-ARM/signal_generator/lv_fs_posix.o b/MDK-ARM/signal_generator/lv_fs_posix.o
index 8285039e..22d7fde2 100644
Binary files a/MDK-ARM/signal_generator/lv_fs_posix.o and b/MDK-ARM/signal_generator/lv_fs_posix.o differ
diff --git a/MDK-ARM/signal_generator/lv_fs_stdio.o b/MDK-ARM/signal_generator/lv_fs_stdio.o
index 03d3df87..3d1e36b7 100644
Binary files a/MDK-ARM/signal_generator/lv_fs_stdio.o and b/MDK-ARM/signal_generator/lv_fs_stdio.o differ
diff --git a/MDK-ARM/signal_generator/lv_fs_win32.o b/MDK-ARM/signal_generator/lv_fs_win32.o
index 4b6ef549..08cae703 100644
Binary files a/MDK-ARM/signal_generator/lv_fs_win32.o and b/MDK-ARM/signal_generator/lv_fs_win32.o differ
diff --git a/MDK-ARM/signal_generator/lv_gc.o b/MDK-ARM/signal_generator/lv_gc.o
index 4b90c7dc..b9d54003 100644
Binary files a/MDK-ARM/signal_generator/lv_gc.o and b/MDK-ARM/signal_generator/lv_gc.o differ
diff --git a/MDK-ARM/signal_generator/lv_gif.o b/MDK-ARM/signal_generator/lv_gif.o
index 8520be72..7a9cb12f 100644
Binary files a/MDK-ARM/signal_generator/lv_gif.o and b/MDK-ARM/signal_generator/lv_gif.o differ
diff --git a/MDK-ARM/signal_generator/lv_gpu_arm2d.o b/MDK-ARM/signal_generator/lv_gpu_arm2d.o
index 79280542..f4b775f9 100644
Binary files a/MDK-ARM/signal_generator/lv_gpu_arm2d.o and b/MDK-ARM/signal_generator/lv_gpu_arm2d.o differ
diff --git a/MDK-ARM/signal_generator/lv_gpu_d2_draw_label.o b/MDK-ARM/signal_generator/lv_gpu_d2_draw_label.o
index c6351dc2..f5358699 100644
Binary files a/MDK-ARM/signal_generator/lv_gpu_d2_draw_label.o and b/MDK-ARM/signal_generator/lv_gpu_d2_draw_label.o differ
diff --git a/MDK-ARM/signal_generator/lv_gpu_d2_ra6m3.o b/MDK-ARM/signal_generator/lv_gpu_d2_ra6m3.o
index 123b4198..27b5029b 100644
Binary files a/MDK-ARM/signal_generator/lv_gpu_d2_ra6m3.o and b/MDK-ARM/signal_generator/lv_gpu_d2_ra6m3.o differ
diff --git a/MDK-ARM/signal_generator/lv_gpu_nxp_pxp.o b/MDK-ARM/signal_generator/lv_gpu_nxp_pxp.o
index cad8e1a5..dae8973b 100644
Binary files a/MDK-ARM/signal_generator/lv_gpu_nxp_pxp.o and b/MDK-ARM/signal_generator/lv_gpu_nxp_pxp.o differ
diff --git a/MDK-ARM/signal_generator/lv_gpu_nxp_pxp_osa.o b/MDK-ARM/signal_generator/lv_gpu_nxp_pxp_osa.o
index 0e708e8a..8f64e398 100644
Binary files a/MDK-ARM/signal_generator/lv_gpu_nxp_pxp_osa.o and b/MDK-ARM/signal_generator/lv_gpu_nxp_pxp_osa.o differ
diff --git a/MDK-ARM/signal_generator/lv_gpu_stm32_dma2d.o b/MDK-ARM/signal_generator/lv_gpu_stm32_dma2d.o
index 679e9975..39a48294 100644
Binary files a/MDK-ARM/signal_generator/lv_gpu_stm32_dma2d.o and b/MDK-ARM/signal_generator/lv_gpu_stm32_dma2d.o differ
diff --git a/MDK-ARM/signal_generator/lv_gpu_swm341_dma2d.o b/MDK-ARM/signal_generator/lv_gpu_swm341_dma2d.o
index bb2f3ead..199222ad 100644
Binary files a/MDK-ARM/signal_generator/lv_gpu_swm341_dma2d.o and b/MDK-ARM/signal_generator/lv_gpu_swm341_dma2d.o differ
diff --git a/MDK-ARM/signal_generator/lv_grid.o b/MDK-ARM/signal_generator/lv_grid.o
index a84ae3c3..cf59e755 100644
Binary files a/MDK-ARM/signal_generator/lv_grid.o and b/MDK-ARM/signal_generator/lv_grid.o differ
diff --git a/MDK-ARM/signal_generator/lv_gridnav.o b/MDK-ARM/signal_generator/lv_gridnav.o
index 0b90c2cf..82d94f1f 100644
Binary files a/MDK-ARM/signal_generator/lv_gridnav.o and b/MDK-ARM/signal_generator/lv_gridnav.o differ
diff --git a/MDK-ARM/signal_generator/lv_group.o b/MDK-ARM/signal_generator/lv_group.o
index 4c4445e1..a89e5778 100644
Binary files a/MDK-ARM/signal_generator/lv_group.o and b/MDK-ARM/signal_generator/lv_group.o differ
diff --git a/MDK-ARM/signal_generator/lv_hal_disp.o b/MDK-ARM/signal_generator/lv_hal_disp.o
index 17d89c58..f1c2336c 100644
Binary files a/MDK-ARM/signal_generator/lv_hal_disp.o and b/MDK-ARM/signal_generator/lv_hal_disp.o differ
diff --git a/MDK-ARM/signal_generator/lv_hal_indev.o b/MDK-ARM/signal_generator/lv_hal_indev.o
index cdf9ea64..d67dc3bf 100644
Binary files a/MDK-ARM/signal_generator/lv_hal_indev.o and b/MDK-ARM/signal_generator/lv_hal_indev.o differ
diff --git a/MDK-ARM/signal_generator/lv_hal_tick.o b/MDK-ARM/signal_generator/lv_hal_tick.o
index 18202015..cc97e950 100644
Binary files a/MDK-ARM/signal_generator/lv_hal_tick.o and b/MDK-ARM/signal_generator/lv_hal_tick.o differ
diff --git a/MDK-ARM/signal_generator/lv_ime_pinyin.o b/MDK-ARM/signal_generator/lv_ime_pinyin.o
index bf5cbc08..2b7765f0 100644
Binary files a/MDK-ARM/signal_generator/lv_ime_pinyin.o and b/MDK-ARM/signal_generator/lv_ime_pinyin.o differ
diff --git a/MDK-ARM/signal_generator/lv_img.o b/MDK-ARM/signal_generator/lv_img.o
index 7a4a9b37..da7b0f43 100644
Binary files a/MDK-ARM/signal_generator/lv_img.o and b/MDK-ARM/signal_generator/lv_img.o differ
diff --git a/MDK-ARM/signal_generator/lv_img_buf.o b/MDK-ARM/signal_generator/lv_img_buf.o
index b96bed3d..f86c44af 100644
Binary files a/MDK-ARM/signal_generator/lv_img_buf.o and b/MDK-ARM/signal_generator/lv_img_buf.o differ
diff --git a/MDK-ARM/signal_generator/lv_img_cache.o b/MDK-ARM/signal_generator/lv_img_cache.o
index aaa0c482..76cee10a 100644
Binary files a/MDK-ARM/signal_generator/lv_img_cache.o and b/MDK-ARM/signal_generator/lv_img_cache.o differ
diff --git a/MDK-ARM/signal_generator/lv_img_decoder.o b/MDK-ARM/signal_generator/lv_img_decoder.o
index 6a50fab9..44377443 100644
Binary files a/MDK-ARM/signal_generator/lv_img_decoder.o and b/MDK-ARM/signal_generator/lv_img_decoder.o differ
diff --git a/MDK-ARM/signal_generator/lv_imgbtn.o b/MDK-ARM/signal_generator/lv_imgbtn.o
index cc1c6dd9..73e26112 100644
Binary files a/MDK-ARM/signal_generator/lv_imgbtn.o and b/MDK-ARM/signal_generator/lv_imgbtn.o differ
diff --git a/MDK-ARM/signal_generator/lv_imgfont.o b/MDK-ARM/signal_generator/lv_imgfont.o
index 081a907d..e536f2a5 100644
Binary files a/MDK-ARM/signal_generator/lv_imgfont.o and b/MDK-ARM/signal_generator/lv_imgfont.o differ
diff --git a/MDK-ARM/signal_generator/lv_indev.o b/MDK-ARM/signal_generator/lv_indev.o
index e810536b..fd6a2baf 100644
Binary files a/MDK-ARM/signal_generator/lv_indev.o and b/MDK-ARM/signal_generator/lv_indev.o differ
diff --git a/MDK-ARM/signal_generator/lv_indev_scroll.o b/MDK-ARM/signal_generator/lv_indev_scroll.o
index e3f1ed9a..04313ffe 100644
Binary files a/MDK-ARM/signal_generator/lv_indev_scroll.o and b/MDK-ARM/signal_generator/lv_indev_scroll.o differ
diff --git a/MDK-ARM/signal_generator/lv_keyboard.o b/MDK-ARM/signal_generator/lv_keyboard.o
index b83c0840..f437a506 100644
Binary files a/MDK-ARM/signal_generator/lv_keyboard.o and b/MDK-ARM/signal_generator/lv_keyboard.o differ
diff --git a/MDK-ARM/signal_generator/lv_label.o b/MDK-ARM/signal_generator/lv_label.o
index 45d7c29d..5aa246ac 100644
Binary files a/MDK-ARM/signal_generator/lv_label.o and b/MDK-ARM/signal_generator/lv_label.o differ
diff --git a/MDK-ARM/signal_generator/lv_led.o b/MDK-ARM/signal_generator/lv_led.o
index a3a19e95..ba948a9d 100644
Binary files a/MDK-ARM/signal_generator/lv_led.o and b/MDK-ARM/signal_generator/lv_led.o differ
diff --git a/MDK-ARM/signal_generator/lv_line.o b/MDK-ARM/signal_generator/lv_line.o
index ab4db3f2..4e7e26e2 100644
Binary files a/MDK-ARM/signal_generator/lv_line.o and b/MDK-ARM/signal_generator/lv_line.o differ
diff --git a/MDK-ARM/signal_generator/lv_list.o b/MDK-ARM/signal_generator/lv_list.o
index 9ecf93be..bf374291 100644
Binary files a/MDK-ARM/signal_generator/lv_list.o and b/MDK-ARM/signal_generator/lv_list.o differ
diff --git a/MDK-ARM/signal_generator/lv_ll.o b/MDK-ARM/signal_generator/lv_ll.o
index 26dc42be..2f00caba 100644
Binary files a/MDK-ARM/signal_generator/lv_ll.o and b/MDK-ARM/signal_generator/lv_ll.o differ
diff --git a/MDK-ARM/signal_generator/lv_log.o b/MDK-ARM/signal_generator/lv_log.o
index c8cf5e68..bf1d479d 100644
Binary files a/MDK-ARM/signal_generator/lv_log.o and b/MDK-ARM/signal_generator/lv_log.o differ
diff --git a/MDK-ARM/signal_generator/lv_lru.o b/MDK-ARM/signal_generator/lv_lru.o
index 6c3a785a..44586b04 100644
Binary files a/MDK-ARM/signal_generator/lv_lru.o and b/MDK-ARM/signal_generator/lv_lru.o differ
diff --git a/MDK-ARM/signal_generator/lv_math.o b/MDK-ARM/signal_generator/lv_math.o
index 8461c98c..a816dac9 100644
Binary files a/MDK-ARM/signal_generator/lv_math.o and b/MDK-ARM/signal_generator/lv_math.o differ
diff --git a/MDK-ARM/signal_generator/lv_mem.o b/MDK-ARM/signal_generator/lv_mem.o
index 4194d7f8..d91c4918 100644
Binary files a/MDK-ARM/signal_generator/lv_mem.o and b/MDK-ARM/signal_generator/lv_mem.o differ
diff --git a/MDK-ARM/signal_generator/lv_menu.o b/MDK-ARM/signal_generator/lv_menu.o
index 3c495197..52e47688 100644
Binary files a/MDK-ARM/signal_generator/lv_menu.o and b/MDK-ARM/signal_generator/lv_menu.o differ
diff --git a/MDK-ARM/signal_generator/lv_meter.o b/MDK-ARM/signal_generator/lv_meter.o
index 8dad6f6b..1d3dda90 100644
Binary files a/MDK-ARM/signal_generator/lv_meter.o and b/MDK-ARM/signal_generator/lv_meter.o differ
diff --git a/MDK-ARM/signal_generator/lv_monkey.o b/MDK-ARM/signal_generator/lv_monkey.o
index 6b6c4279..6b6dd43b 100644
Binary files a/MDK-ARM/signal_generator/lv_monkey.o and b/MDK-ARM/signal_generator/lv_monkey.o differ
diff --git a/MDK-ARM/signal_generator/lv_msg.o b/MDK-ARM/signal_generator/lv_msg.o
index 9031b005..9fd79eb9 100644
Binary files a/MDK-ARM/signal_generator/lv_msg.o and b/MDK-ARM/signal_generator/lv_msg.o differ
diff --git a/MDK-ARM/signal_generator/lv_msgbox.o b/MDK-ARM/signal_generator/lv_msgbox.o
index 4be52f40..aa978290 100644
Binary files a/MDK-ARM/signal_generator/lv_msgbox.o and b/MDK-ARM/signal_generator/lv_msgbox.o differ
diff --git a/MDK-ARM/signal_generator/lv_obj.o b/MDK-ARM/signal_generator/lv_obj.o
index 94fd42d4..514200f1 100644
Binary files a/MDK-ARM/signal_generator/lv_obj.o and b/MDK-ARM/signal_generator/lv_obj.o differ
diff --git a/MDK-ARM/signal_generator/lv_obj_class.o b/MDK-ARM/signal_generator/lv_obj_class.o
index 3f814949..8ab87538 100644
Binary files a/MDK-ARM/signal_generator/lv_obj_class.o and b/MDK-ARM/signal_generator/lv_obj_class.o differ
diff --git a/MDK-ARM/signal_generator/lv_obj_draw.o b/MDK-ARM/signal_generator/lv_obj_draw.o
index 7ddc0e48..2954f367 100644
Binary files a/MDK-ARM/signal_generator/lv_obj_draw.o and b/MDK-ARM/signal_generator/lv_obj_draw.o differ
diff --git a/MDK-ARM/signal_generator/lv_obj_pos.o b/MDK-ARM/signal_generator/lv_obj_pos.o
index 3c2f190b..e02a8e30 100644
Binary files a/MDK-ARM/signal_generator/lv_obj_pos.o and b/MDK-ARM/signal_generator/lv_obj_pos.o differ
diff --git a/MDK-ARM/signal_generator/lv_obj_scroll.o b/MDK-ARM/signal_generator/lv_obj_scroll.o
index c604006d..636ce30e 100644
Binary files a/MDK-ARM/signal_generator/lv_obj_scroll.o and b/MDK-ARM/signal_generator/lv_obj_scroll.o differ
diff --git a/MDK-ARM/signal_generator/lv_obj_style.o b/MDK-ARM/signal_generator/lv_obj_style.o
index 1e794bf0..0cbe2390 100644
Binary files a/MDK-ARM/signal_generator/lv_obj_style.o and b/MDK-ARM/signal_generator/lv_obj_style.o differ
diff --git a/MDK-ARM/signal_generator/lv_obj_style_gen.o b/MDK-ARM/signal_generator/lv_obj_style_gen.o
index 55ca8199..68132ba7 100644
Binary files a/MDK-ARM/signal_generator/lv_obj_style_gen.o and b/MDK-ARM/signal_generator/lv_obj_style_gen.o differ
diff --git a/MDK-ARM/signal_generator/lv_obj_tree.o b/MDK-ARM/signal_generator/lv_obj_tree.o
index ea2b4f5c..2dc06932 100644
Binary files a/MDK-ARM/signal_generator/lv_obj_tree.o and b/MDK-ARM/signal_generator/lv_obj_tree.o differ
diff --git a/MDK-ARM/signal_generator/lv_objx_templ.o b/MDK-ARM/signal_generator/lv_objx_templ.o
index 81765003..af9d3ffc 100644
Binary files a/MDK-ARM/signal_generator/lv_objx_templ.o and b/MDK-ARM/signal_generator/lv_objx_templ.o differ
diff --git a/MDK-ARM/signal_generator/lv_png.o b/MDK-ARM/signal_generator/lv_png.o
index 53380a3a..9f6f80db 100644
Binary files a/MDK-ARM/signal_generator/lv_png.o and b/MDK-ARM/signal_generator/lv_png.o differ
diff --git a/MDK-ARM/signal_generator/lv_port_disp.o b/MDK-ARM/signal_generator/lv_port_disp.o
index 23d1f281..696ab7e4 100644
Binary files a/MDK-ARM/signal_generator/lv_port_disp.o and b/MDK-ARM/signal_generator/lv_port_disp.o differ
diff --git a/MDK-ARM/signal_generator/lv_port_indev.o b/MDK-ARM/signal_generator/lv_port_indev.o
index 1b0a3a97..32611b7a 100644
Binary files a/MDK-ARM/signal_generator/lv_port_indev.o and b/MDK-ARM/signal_generator/lv_port_indev.o differ
diff --git a/MDK-ARM/signal_generator/lv_printf.o b/MDK-ARM/signal_generator/lv_printf.o
index 0233962b..c6545ca1 100644
Binary files a/MDK-ARM/signal_generator/lv_printf.o and b/MDK-ARM/signal_generator/lv_printf.o differ
diff --git a/MDK-ARM/signal_generator/lv_qrcode.o b/MDK-ARM/signal_generator/lv_qrcode.o
index 13443463..042db86a 100644
Binary files a/MDK-ARM/signal_generator/lv_qrcode.o and b/MDK-ARM/signal_generator/lv_qrcode.o differ
diff --git a/MDK-ARM/signal_generator/lv_refr.o b/MDK-ARM/signal_generator/lv_refr.o
index a3f98368..d421d828 100644
Binary files a/MDK-ARM/signal_generator/lv_refr.o and b/MDK-ARM/signal_generator/lv_refr.o differ
diff --git a/MDK-ARM/signal_generator/lv_rlottie.o b/MDK-ARM/signal_generator/lv_rlottie.o
index 03bd8e00..c5aaac2e 100644
Binary files a/MDK-ARM/signal_generator/lv_rlottie.o and b/MDK-ARM/signal_generator/lv_rlottie.o differ
diff --git a/MDK-ARM/signal_generator/lv_roller.o b/MDK-ARM/signal_generator/lv_roller.o
index b09f2d28..df9bb227 100644
Binary files a/MDK-ARM/signal_generator/lv_roller.o and b/MDK-ARM/signal_generator/lv_roller.o differ
diff --git a/MDK-ARM/signal_generator/lv_sjpg.o b/MDK-ARM/signal_generator/lv_sjpg.o
index 5fadeddd..0cfc5f4a 100644
Binary files a/MDK-ARM/signal_generator/lv_sjpg.o and b/MDK-ARM/signal_generator/lv_sjpg.o differ
diff --git a/MDK-ARM/signal_generator/lv_slider.o b/MDK-ARM/signal_generator/lv_slider.o
index d6b91efa..6d15f6a7 100644
Binary files a/MDK-ARM/signal_generator/lv_slider.o and b/MDK-ARM/signal_generator/lv_slider.o differ
diff --git a/MDK-ARM/signal_generator/lv_snapshot.o b/MDK-ARM/signal_generator/lv_snapshot.o
index db271d19..230124a4 100644
Binary files a/MDK-ARM/signal_generator/lv_snapshot.o and b/MDK-ARM/signal_generator/lv_snapshot.o differ
diff --git a/MDK-ARM/signal_generator/lv_span.o b/MDK-ARM/signal_generator/lv_span.o
index 4e561f60..be9c8cea 100644
Binary files a/MDK-ARM/signal_generator/lv_span.o and b/MDK-ARM/signal_generator/lv_span.o differ
diff --git a/MDK-ARM/signal_generator/lv_spinbox.o b/MDK-ARM/signal_generator/lv_spinbox.o
index 02edce33..a6a5a90e 100644
Binary files a/MDK-ARM/signal_generator/lv_spinbox.o and b/MDK-ARM/signal_generator/lv_spinbox.o differ
diff --git a/MDK-ARM/signal_generator/lv_spinner.o b/MDK-ARM/signal_generator/lv_spinner.o
index d541c5af..e7540c3a 100644
Binary files a/MDK-ARM/signal_generator/lv_spinner.o and b/MDK-ARM/signal_generator/lv_spinner.o differ
diff --git a/MDK-ARM/signal_generator/lv_style.o b/MDK-ARM/signal_generator/lv_style.o
index cc13eb9f..6c4b898a 100644
Binary files a/MDK-ARM/signal_generator/lv_style.o and b/MDK-ARM/signal_generator/lv_style.o differ
diff --git a/MDK-ARM/signal_generator/lv_style_gen.o b/MDK-ARM/signal_generator/lv_style_gen.o
index ad160dbf..b6308dea 100644
Binary files a/MDK-ARM/signal_generator/lv_style_gen.o and b/MDK-ARM/signal_generator/lv_style_gen.o differ
diff --git a/MDK-ARM/signal_generator/lv_switch.o b/MDK-ARM/signal_generator/lv_switch.o
index 6f0fab6b..af2ec709 100644
Binary files a/MDK-ARM/signal_generator/lv_switch.o and b/MDK-ARM/signal_generator/lv_switch.o differ
diff --git a/MDK-ARM/signal_generator/lv_table.o b/MDK-ARM/signal_generator/lv_table.o
index a4412461..f8c0f76a 100644
Binary files a/MDK-ARM/signal_generator/lv_table.o and b/MDK-ARM/signal_generator/lv_table.o differ
diff --git a/MDK-ARM/signal_generator/lv_tabview.o b/MDK-ARM/signal_generator/lv_tabview.o
index 8efe7155..ba8ea300 100644
Binary files a/MDK-ARM/signal_generator/lv_tabview.o and b/MDK-ARM/signal_generator/lv_tabview.o differ
diff --git a/MDK-ARM/signal_generator/lv_templ.o b/MDK-ARM/signal_generator/lv_templ.o
index fc5dac26..8f538b16 100644
Binary files a/MDK-ARM/signal_generator/lv_templ.o and b/MDK-ARM/signal_generator/lv_templ.o differ
diff --git a/MDK-ARM/signal_generator/lv_textarea.o b/MDK-ARM/signal_generator/lv_textarea.o
index f399a45a..5d2a1609 100644
Binary files a/MDK-ARM/signal_generator/lv_textarea.o and b/MDK-ARM/signal_generator/lv_textarea.o differ
diff --git a/MDK-ARM/signal_generator/lv_theme.o b/MDK-ARM/signal_generator/lv_theme.o
index 3e8d054f..ca48d18e 100644
Binary files a/MDK-ARM/signal_generator/lv_theme.o and b/MDK-ARM/signal_generator/lv_theme.o differ
diff --git a/MDK-ARM/signal_generator/lv_theme_basic.o b/MDK-ARM/signal_generator/lv_theme_basic.o
index 4cf4f201..cf927f94 100644
Binary files a/MDK-ARM/signal_generator/lv_theme_basic.o and b/MDK-ARM/signal_generator/lv_theme_basic.o differ
diff --git a/MDK-ARM/signal_generator/lv_theme_default.o b/MDK-ARM/signal_generator/lv_theme_default.o
index 9336bcdf..60d1a458 100644
Binary files a/MDK-ARM/signal_generator/lv_theme_default.o and b/MDK-ARM/signal_generator/lv_theme_default.o differ
diff --git a/MDK-ARM/signal_generator/lv_theme_mono.o b/MDK-ARM/signal_generator/lv_theme_mono.o
index 7e63cd0d..c69cf28d 100644
Binary files a/MDK-ARM/signal_generator/lv_theme_mono.o and b/MDK-ARM/signal_generator/lv_theme_mono.o differ
diff --git a/MDK-ARM/signal_generator/lv_tileview.o b/MDK-ARM/signal_generator/lv_tileview.o
index 0e1aa2a7..0392d214 100644
Binary files a/MDK-ARM/signal_generator/lv_tileview.o and b/MDK-ARM/signal_generator/lv_tileview.o differ
diff --git a/MDK-ARM/signal_generator/lv_timer.o b/MDK-ARM/signal_generator/lv_timer.o
index 9091d0b8..7d16f382 100644
Binary files a/MDK-ARM/signal_generator/lv_timer.o and b/MDK-ARM/signal_generator/lv_timer.o differ
diff --git a/MDK-ARM/signal_generator/lv_tiny_ttf.o b/MDK-ARM/signal_generator/lv_tiny_ttf.o
index 04584d71..562318ae 100644
Binary files a/MDK-ARM/signal_generator/lv_tiny_ttf.o and b/MDK-ARM/signal_generator/lv_tiny_ttf.o differ
diff --git a/MDK-ARM/signal_generator/lv_tlsf.o b/MDK-ARM/signal_generator/lv_tlsf.o
index 73357671..b5fa32e5 100644
Binary files a/MDK-ARM/signal_generator/lv_tlsf.o and b/MDK-ARM/signal_generator/lv_tlsf.o differ
diff --git a/MDK-ARM/signal_generator/lv_txt.o b/MDK-ARM/signal_generator/lv_txt.o
index 3fc1d611..9bd50167 100644
Binary files a/MDK-ARM/signal_generator/lv_txt.o and b/MDK-ARM/signal_generator/lv_txt.o differ
diff --git a/MDK-ARM/signal_generator/lv_txt_ap.o b/MDK-ARM/signal_generator/lv_txt_ap.o
index a440e91d..81df7a2c 100644
Binary files a/MDK-ARM/signal_generator/lv_txt_ap.o and b/MDK-ARM/signal_generator/lv_txt_ap.o differ
diff --git a/MDK-ARM/signal_generator/lv_utils.o b/MDK-ARM/signal_generator/lv_utils.o
index 91bd9ab5..1863c93e 100644
Binary files a/MDK-ARM/signal_generator/lv_utils.o and b/MDK-ARM/signal_generator/lv_utils.o differ
diff --git a/MDK-ARM/signal_generator/lv_vglite_buf.o b/MDK-ARM/signal_generator/lv_vglite_buf.o
index 20b64bdd..511a654f 100644
Binary files a/MDK-ARM/signal_generator/lv_vglite_buf.o and b/MDK-ARM/signal_generator/lv_vglite_buf.o differ
diff --git a/MDK-ARM/signal_generator/lv_vglite_utils.o b/MDK-ARM/signal_generator/lv_vglite_utils.o
index 8276ed68..94a5b2f6 100644
Binary files a/MDK-ARM/signal_generator/lv_vglite_utils.o and b/MDK-ARM/signal_generator/lv_vglite_utils.o differ
diff --git a/MDK-ARM/signal_generator/lv_win.o b/MDK-ARM/signal_generator/lv_win.o
index c64e97b5..38a50628 100644
Binary files a/MDK-ARM/signal_generator/lv_win.o and b/MDK-ARM/signal_generator/lv_win.o differ
diff --git a/MDK-ARM/signal_generator/main.crf b/MDK-ARM/signal_generator/main.crf
index 203e6aae..c9402355 100644
Binary files a/MDK-ARM/signal_generator/main.crf and b/MDK-ARM/signal_generator/main.crf differ
diff --git a/MDK-ARM/signal_generator/main.o b/MDK-ARM/signal_generator/main.o
index ad78c58d..734b050d 100644
Binary files a/MDK-ARM/signal_generator/main.o and b/MDK-ARM/signal_generator/main.o differ
diff --git a/MDK-ARM/signal_generator/modbus.o b/MDK-ARM/signal_generator/modbus.o
index 65b8aacb..9cc817ff 100644
Binary files a/MDK-ARM/signal_generator/modbus.o and b/MDK-ARM/signal_generator/modbus.o differ
diff --git a/MDK-ARM/signal_generator/mux_signal.o b/MDK-ARM/signal_generator/mux_signal.o
index 4d3b3061..880baa65 100644
Binary files a/MDK-ARM/signal_generator/mux_signal.o and b/MDK-ARM/signal_generator/mux_signal.o differ
diff --git a/MDK-ARM/signal_generator/port.o b/MDK-ARM/signal_generator/port.o
index 0d866441..d8ad2104 100644
Binary files a/MDK-ARM/signal_generator/port.o and b/MDK-ARM/signal_generator/port.o differ
diff --git a/MDK-ARM/signal_generator/qrcodegen.o b/MDK-ARM/signal_generator/qrcodegen.o
index 7ddbb634..122af262 100644
Binary files a/MDK-ARM/signal_generator/qrcodegen.o and b/MDK-ARM/signal_generator/qrcodegen.o differ
diff --git a/MDK-ARM/signal_generator/queue.o b/MDK-ARM/signal_generator/queue.o
index 02a52690..93964d1c 100644
Binary files a/MDK-ARM/signal_generator/queue.o and b/MDK-ARM/signal_generator/queue.o differ
diff --git a/MDK-ARM/signal_generator/rn7302.o b/MDK-ARM/signal_generator/rn7302.o
index c99e1f9d..c92e6262 100644
Binary files a/MDK-ARM/signal_generator/rn7302.o and b/MDK-ARM/signal_generator/rn7302.o differ
diff --git a/MDK-ARM/signal_generator/screen_main_animimg_15w_mok_minus.o b/MDK-ARM/signal_generator/screen_main_animimg_15w_mok_minus.o
index 538528f1..0ec81a8a 100644
Binary files a/MDK-ARM/signal_generator/screen_main_animimg_15w_mok_minus.o and b/MDK-ARM/signal_generator/screen_main_animimg_15w_mok_minus.o differ
diff --git a/MDK-ARM/signal_generator/screen_main_animimg_15w_mok_plus.o b/MDK-ARM/signal_generator/screen_main_animimg_15w_mok_plus.o
index 905883e1..0b3dafa9 100644
Binary files a/MDK-ARM/signal_generator/screen_main_animimg_15w_mok_plus.o and b/MDK-ARM/signal_generator/screen_main_animimg_15w_mok_plus.o differ
diff --git a/MDK-ARM/signal_generator/screen_main_animimg_1bt0.o b/MDK-ARM/signal_generator/screen_main_animimg_1bt0.o
index 5dfbc94a..e53ced80 100644
Binary files a/MDK-ARM/signal_generator/screen_main_animimg_1bt0.o and b/MDK-ARM/signal_generator/screen_main_animimg_1bt0.o differ
diff --git a/MDK-ARM/signal_generator/screen_main_animimg_1bt100.o b/MDK-ARM/signal_generator/screen_main_animimg_1bt100.o
index 225479af..123d8492 100644
Binary files a/MDK-ARM/signal_generator/screen_main_animimg_1bt100.o and b/MDK-ARM/signal_generator/screen_main_animimg_1bt100.o differ
diff --git a/MDK-ARM/signal_generator/screen_main_animimg_1bt20.o b/MDK-ARM/signal_generator/screen_main_animimg_1bt20.o
index 716c7c40..08c53ee3 100644
Binary files a/MDK-ARM/signal_generator/screen_main_animimg_1bt20.o and b/MDK-ARM/signal_generator/screen_main_animimg_1bt20.o differ
diff --git a/MDK-ARM/signal_generator/screen_main_animimg_1bt40.o b/MDK-ARM/signal_generator/screen_main_animimg_1bt40.o
index a9883ac7..4c69ad98 100644
Binary files a/MDK-ARM/signal_generator/screen_main_animimg_1bt40.o and b/MDK-ARM/signal_generator/screen_main_animimg_1bt40.o differ
diff --git a/MDK-ARM/signal_generator/screen_main_animimg_1bt60.o b/MDK-ARM/signal_generator/screen_main_animimg_1bt60.o
index 398d0065..4e43e301 100644
Binary files a/MDK-ARM/signal_generator/screen_main_animimg_1bt60.o and b/MDK-ARM/signal_generator/screen_main_animimg_1bt60.o differ
diff --git a/MDK-ARM/signal_generator/screen_main_animimg_1bt80.o b/MDK-ARM/signal_generator/screen_main_animimg_1bt80.o
index f5c0cf98..962dad45 100644
Binary files a/MDK-ARM/signal_generator/screen_main_animimg_1bt80.o and b/MDK-ARM/signal_generator/screen_main_animimg_1bt80.o differ
diff --git a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_0.o b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_0.o
index 6b345c69..ba0845c9 100644
Binary files a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_0.o and b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_0.o differ
diff --git a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_1.o b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_1.o
index 863e0357..6e8af379 100644
Binary files a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_1.o and b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_1.o differ
diff --git a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_2.o b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_2.o
index 78bc8bd5..1e96b7e9 100644
Binary files a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_2.o and b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_2.o differ
diff --git a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_3.o b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_3.o
index 37304696..74ab154a 100644
Binary files a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_3.o and b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_3.o differ
diff --git a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_4.o b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_4.o
index 405938e6..4cd68b89 100644
Binary files a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_4.o and b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_4.o differ
diff --git a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_5.o b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_5.o
index 363eff7b..297b66d9 100644
Binary files a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_5.o and b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_5.o differ
diff --git a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_6.o b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_6.o
index 0412b336..4c910474 100644
Binary files a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_6.o and b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_6.o differ
diff --git a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_7.o b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_7.o
index d7e4589e..31a20133 100644
Binary files a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_7.o and b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_7.o differ
diff --git a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_8.o b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_8.o
index 61bb9f17..17f61bb4 100644
Binary files a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_8.o and b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_8.o differ
diff --git a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_9.o b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_9.o
index 744ebbc3..5a38826d 100644
Binary files a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_9.o and b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_9.o differ
diff --git a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_null.o b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_null.o
index 5c20249d..b95d5b7a 100644
Binary files a/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_null.o and b/MDK-ARM/signal_generator/screen_main_animimg_2w_mok_null.o differ
diff --git a/MDK-ARM/signal_generator/setup_scr_screen_hidden.o b/MDK-ARM/signal_generator/setup_scr_screen_hidden.o
index 77360d6b..fbfc5d06 100644
Binary files a/MDK-ARM/signal_generator/setup_scr_screen_hidden.o and b/MDK-ARM/signal_generator/setup_scr_screen_hidden.o differ
diff --git a/MDK-ARM/signal_generator/setup_scr_screen_init.o b/MDK-ARM/signal_generator/setup_scr_screen_init.o
index 15dc9796..327aba85 100644
Binary files a/MDK-ARM/signal_generator/setup_scr_screen_init.o and b/MDK-ARM/signal_generator/setup_scr_screen_init.o differ
diff --git a/MDK-ARM/signal_generator/setup_scr_screen_main.o b/MDK-ARM/signal_generator/setup_scr_screen_main.o
index d72cdd6f..45405bcc 100644
Binary files a/MDK-ARM/signal_generator/setup_scr_screen_main.o and b/MDK-ARM/signal_generator/setup_scr_screen_main.o differ
diff --git a/MDK-ARM/signal_generator/setup_scr_screen_setting.o b/MDK-ARM/signal_generator/setup_scr_screen_setting.o
index 69b0be82..9db3f403 100644
Binary files a/MDK-ARM/signal_generator/setup_scr_screen_setting.o and b/MDK-ARM/signal_generator/setup_scr_screen_setting.o differ
diff --git a/MDK-ARM/signal_generator/sig24130.o b/MDK-ARM/signal_generator/sig24130.o
index 58f53be2..c5d26cb0 100644
Binary files a/MDK-ARM/signal_generator/sig24130.o and b/MDK-ARM/signal_generator/sig24130.o differ
diff --git a/MDK-ARM/signal_generator/signal_generator.axf b/MDK-ARM/signal_generator/signal_generator.axf
index 375ad392..b3eac5de 100644
Binary files a/MDK-ARM/signal_generator/signal_generator.axf and b/MDK-ARM/signal_generator/signal_generator.axf differ
diff --git a/MDK-ARM/signal_generator/signal_generator.build_log.htm b/MDK-ARM/signal_generator/signal_generator.build_log.htm
index b1a667db..694c0a26 100644
--- a/MDK-ARM/signal_generator/signal_generator.build_log.htm
+++ b/MDK-ARM/signal_generator/signal_generator.build_log.htm
@@ -27,10 +27,6 @@ Project File Date: 02/25/2025
Output:
*** Using Compiler 'V5.06 update 7 (build 960)', folder: 'E:\Softwares\Keil_v5\ARM\ARMCC\Bin'
Build target 'signal_generator'
-compiling setup_scr_screen_main.c...
-linking...
-Program Size: Code=207300 RO-data=156844 RW-data=1448 ZI-data=94208
-FromELF: creating hex file...
"signal_generator\signal_generator.axf" - 0 Error(s), 0 Warning(s).
Software Packages used:
@@ -55,7 +51,7 @@ Package Vendor: Keil
* Component: ARM::CMSIS:CORE@5.6.0
Include file: CMSIS/Core/Include/tz_context.h
-Build Time Elapsed: 00:00:04
+Build Time Elapsed: 00:00:03