ENS1_BOOST.c
1
@@ -462,19 +490,4 @@
-
-
-
-
-
-
-
-
-
- ENS001_BASIC_PRJ
- 1
-
-
-
-
diff --git a/FWLIB/include/ENS1_SPI.h b/FWLIB/include/ENS1_SPI.h
index baa46e3..ccef3af 100644
--- a/FWLIB/include/ENS1_SPI.h
+++ b/FWLIB/include/ENS1_SPI.h
@@ -96,9 +96,9 @@ struct SPI_FIFO_Struct //
{
uint8_t TX_FIFO_TH; // 0 - 16 char
uint8_t RX_FIFO_TH; // 0 - 16 char
- bool FIFO_ENABLE_SET;
- bool TXDMA_SET; //ѡǷDMA(fifoǰ)
- bool RXDMA_SET;
+ int FIFO_ENABLE_SET;
+ int TXDMA_SET; //ѡǷDMA(fifoǰ)
+ int RXDMA_SET;
};
/* жʹܽṹ
@@ -193,7 +193,7 @@ extern uint8_t TX_FIFO_EMPTY(CMSDK_SPI_TypeDef* SPIx) ; //
extern uint8_t SPI_FIFO_STATE(CMSDK_SPI_TypeDef* SPIx);
extern uint8_t SPI_FIFO_ENABLE(CMSDK_SPI_TypeDef* SPIx ); //FIFOʹ
extern uint8_t SPI_FIFO_DISABLE(CMSDK_SPI_TypeDef* SPIx ); //FIFOʧ
-extern uint8_t SPI_FIFODMA_SET(CMSDK_SPI_TypeDef* SPIx ,bool TXDMA_SET ,bool RXDMA_SET); //DMA
+extern uint8_t SPI_FIFODMA_SET(CMSDK_SPI_TypeDef* SPIx ,int TXDMA_SET ,int RXDMA_SET); //DMA
extern uint8_t SPI_NSS_CHANNEL(CMSDK_SPI_TypeDef* SPIx ,NSS_CHANNEL_SEL NSSx ,FunctionalState ENorDIS); //nssͨѡ
extern uint8_t SPI_Config_init(CMSDK_SPI_TypeDef* SPIx , struct SPI_ModeConfig_Struct SPI_Config ,struct SPI_FIFO_Struct FIFO_Struct); //spiijʼ
extern uint8_t SPI_START(CMSDK_SPI_TypeDef* SPIx);
@@ -202,6 +202,6 @@ extern uint8_t SPI_STOP(CMSDK_SPI_TypeDef* SPIx);
extern uint16_t READ_SPI_RCVBuff(CMSDK_SPI_TypeDef* SPIx );
//д
extern void WRITE_SPI_THRBuff(CMSDK_SPI_TypeDef* SPIx,uint8_t data);
-extern uint8_t SPI_INT_SET(IRQn_Type IRQn, bool SPI_INT_ENABLE, uint8_t SPI_INT_BIT_SET);
+extern uint8_t SPI_INT_SET(IRQn_Type IRQn, int SPI_INT_ENABLE, uint8_t SPI_INT_BIT_SET);
#endif
diff --git a/FWLIB/include/ENS1_TIMER.h b/FWLIB/include/ENS1_TIMER.h
index e55b575..6d57f91 100644
--- a/FWLIB/include/ENS1_TIMER.h
+++ b/FWLIB/include/ENS1_TIMER.h
@@ -4,6 +4,7 @@
#include "my_header.h"
extern uint8_t ems_control_count; // 电刺激控制计数器
extern uint8_t ems_state ; // 电刺激状态:0=关闭,1=开启
+extern uint8_t led_state;
// 时间管理标志位结构体
typedef struct {
uint8_t T_1ms; // 1ms周期标志
diff --git a/FWLIB/include/ENS1_UART.h b/FWLIB/include/ENS1_UART.h
index ff395dc..476ac37 100644
--- a/FWLIB/include/ENS1_UART.h
+++ b/FWLIB/include/ENS1_UART.h
@@ -12,7 +12,7 @@
History:
1.V1.0
-Date:
+Date: -z
Author:
Modification: ����
*/
@@ -37,6 +37,10 @@ Modification: ����
#define InterruptEnable __enable_irq
typedef enum uartRcvfifoTrigger{byte_1=0 , bytes_4=1,bytes_8=2,bytes_14=3}uartRcvTrigger;
typedef enum {OverSamp_16 = 0,OverSamp_13}UART_OverSamp;
+// 外部变量声明(在main.c中定义)
+extern uint8_t uart_rx_buffer[64];
+extern uint8_t uart_rx_count;
+extern volatile uint8_t uart_data_ready;
@@ -176,7 +180,20 @@ void UART_Init(CMSDK_UART_TypeDef *CMSDK_UART, UART_InitStructure* uart_paraX);
void UART_ITConfig(CMSDK_UART_TypeDef *CMSDK_UART, UART_ITStructure* uart_paraX);
unsigned char UartPutc(CMSDK_UART_TypeDef *CMSDK_UART ,unsigned char my_ch);
void Uart_Send(CMSDK_UART_TypeDef *CMSDK_UART ,uint8_t *data, uint8_t len);
-
+typedef struct {
+ uint16_t function_code; // 功能码 (0x0003)
+ uint16_t data_length; // 数据长度 (0x0001)
+ uint8_t switch_type; // 开关状态以及电刺激类型
+ uint8_t intensity; // 强度值
+ uint16_t frequency; // 频率值
+ uint16_t duration; // 总持续时间 (ms)
+ uint16_t rest_time; // 休息时间 (ms)
+ uint16_t silent_time; // 静默时间 (ms)
+ uint8_t ramp_up_time; // 缓进时间
+ uint8_t hold_time; // 保持时间
+ uint8_t ramp_down_time; // 缓出时间
+ uint16_t crc16; // CRC16校验
+} UART_EMS_Packet_t;
diff --git a/FWLIB/source/ENS1_SPI.c b/FWLIB/source/ENS1_SPI.c
index ab73a2e..78098e1 100644
--- a/FWLIB/source/ENS1_SPI.c
+++ b/FWLIB/source/ENS1_SPI.c
@@ -83,16 +83,16 @@ uint8_t SPI_FIFO_DISABLE(CMSDK_SPI_TypeDef* SPIx )
return (uint8_t)(SPIx->FCR & 0x1) ;
}
-uint8_t SPI_FIFODMA_SET(CMSDK_SPI_TypeDef* SPIx ,bool TXDMA_SET ,bool RXDMA_SET)
+uint8_t SPI_FIFODMA_SET(CMSDK_SPI_TypeDef* SPIx ,int TXDMA_SET ,int RXDMA_SET)
{
- if(TXDMA_SET == true)
+ if(TXDMA_SET == 1)
SPIx->CTRL2 |= (1<<5);
- else if(TXDMA_SET == false)
+ else if(TXDMA_SET == 0)
SPIx->CTRL2 &=~ (1<<5);
- if(TXDMA_SET == true)
+ if(TXDMA_SET == 1)
SPIx->CTRL2 |= (1<<4);
- else if(TXDMA_SET == false)
+ else if(TXDMA_SET == 0)
SPIx->CTRL2 &=~ (1<<4);
return (uint8_t)((SPIx->CTRL2>>4)&0x3);
}
@@ -211,7 +211,7 @@ uint8_t SPI_Config_init(CMSDK_SPI_TypeDef* SPIx ,
SPIx->FCR |= (FIFO_Struct.RX_FIFO_TH << 2 );
CLR_TX_FIFO(SPIx) ;
CLR_RX_FIFO(SPIx) ;
- if(FIFO_Struct.FIFO_ENABLE_SET == true)
+ if(FIFO_Struct.FIFO_ENABLE_SET == 1)
SPI_FIFO_ENABLE(SPIx);
//SPI_FIFODMA_SET(SPIx ,FIFO_Struct.TXDMA_SET ,FIFO_Struct.RXDMA_SET);
return 0;
@@ -279,7 +279,7 @@ void WRITE_SPI_THRBuff(CMSDK_SPI_TypeDef* SPIx,uint8_t data)
}
/*------------------------------------------------------SPI?��?------------------------------------------------------*/
-uint8_t SPI_INT_SET(IRQn_Type IRQn, bool SPI_INT_ENABLE, uint8_t SPI_INT_BIT_SET)
+uint8_t SPI_INT_SET(IRQn_Type IRQn, int SPI_INT_ENABLE, uint8_t SPI_INT_BIT_SET)
{
NVIC_DisableIRQ(IRQn);
NVIC_ClearPendingIRQ(IRQn);
@@ -289,10 +289,10 @@ uint8_t SPI_INT_SET(IRQn_Type IRQn, bool SPI_INT_ENABLE, uint8_t SPI_INT_BIT_SET
}
else if(IRQn == SPI1_IRQn)
{
- CMSDK_SPI1->IER = ((CMSDK_SPI0->IER &~ (0xff)) | SPI_INT_BIT_SET);
+ CMSDK_SPI1->IER = ((CMSDK_SPI1->IER &~ (0xff)) | SPI_INT_BIT_SET);
}
- if(SPI_INT_ENABLE == true)
+ if(SPI_INT_ENABLE == 1)
{
NVIC_EnableIRQ(IRQn);
}
diff --git a/FWLIB/source/ENS1_TIMER.c b/FWLIB/source/ENS1_TIMER.c
index baad17b..5631b00 100644
--- a/FWLIB/source/ENS1_TIMER.c
+++ b/FWLIB/source/ENS1_TIMER.c
@@ -5,6 +5,7 @@
uint8_t ems_control_count = 0; // 电刺激控制计数器
uint8_t ems_state = 0; // 电刺激状态:0=关闭,1=开启
uint16_t time_count = 0;
+uint8_t led_state = 0;
void TIMER0_Init(uint32_t Int_Period) //形参,输入中断触发周期 (单位ms)
{
PCLK_Enable(TIMER0_PCLK_EN);
@@ -406,12 +407,12 @@ void Fuse_result(void)
time_flags->T_100ms = 0; // 清除标志位
}
+
if (time_flags->T_1s) {
- GPIO_Overturn(GPIO_19);
+
// 1s周期任务 - 超低频任务
- ems_control_count++; // 每秒递增计数器
-
-
+ ems_control_count++; // 每秒递增计数器,
+
// 间断性放电控制逻辑
if (ems_control_count <= 10) {
// 前10秒:开启电刺激
@@ -421,7 +422,7 @@ void Fuse_result(void)
EMS_Start(); // 启动电刺激
}
// 处理电刺激
-
+
} else if (ems_control_count <= 20) {
// 后10秒:关闭电刺激
if (ems_state == 1) {
diff --git a/FWLIB/source/ENS1_UART.c b/FWLIB/source/ENS1_UART.c
index 347fe07..b9405de 100644
--- a/FWLIB/source/ENS1_UART.c
+++ b/FWLIB/source/ENS1_UART.c
@@ -174,12 +174,33 @@ void UART_Init(CMSDK_UART_TypeDef *CMSDK_UART, UART_InitStructure* uart_paraX){
PCLK_Enable(UART0_PCLK_EN);
GPIO_AltFunction(UART0_RX , ALT_FUNC1); //rx
GPIO_AltFunction(UART0_TX , ALT_FUNC1); //tx
+
+ // 修复:正确配置GPIO方向
+ // GPIO2 (RX) 应该是输入
+ CMSDK_GPIO->OE &= ~(1 << UART0_RX); // 禁用输出
+ CMSDK_GPIO->IE |= (1 << UART0_RX); // 使能输入
+
+ // GPIO3 (TX) 应该是输出
+ CMSDK_GPIO->IE &= ~(1 << UART0_TX); // 禁用输入
+ CMSDK_GPIO->OE |= (1 << UART0_TX); // 使能输出
}
else if(CMSDK_UART == CMSDK_UART1)
{
PCLK_Enable(UART1_PCLK_EN);
GPIO_AltFunction(UART1_RX , ALT_FUNC1); //RX
GPIO_AltFunction(UART1_TX , ALT_FUNC1); //TX
+
+ // 修复:正确配置GPIO方向
+ // GPIO12 (RX) 应该是输入
+ CMSDK_GPIO->OE &= ~(1 << UART1_RX); // 禁用输出
+ CMSDK_GPIO->IE |= (1 << UART1_RX); // 使能输入
+
+ // GPIO13 (TX) 应该是输出
+ CMSDK_GPIO->IE &= ~(1 << UART1_TX); // 禁用输入
+ CMSDK_GPIO->OE |= (1 << UART1_TX); // 使能输出
+
+ // 确保TX引脚初始化为高电平
+ CMSDK_GPIO->DATAOUT |= (1 << UART1_TX);
}
/* 2 波特率设置*/
if(((CMSDK_UART->MDR)&0x00000001) == 0)
@@ -312,23 +333,69 @@ void UART0_Handler(void) {
return;
}
+// 外部变量声明(在main.c中定义)
+uint8_t uart_rx_buffer[64];
+uint8_t uart_rx_count;
+volatile uint8_t uart_data_ready;
+
+// 外部函数声明
+extern uint8_t ParseUART_EMS_Packet(uint8_t *data, uint16_t length, void *packet);
+extern void UpdateEMS_ConfigFromUART(void *packet);
+
+// 数据包结构体定义
+
+
void UART1_Handler(void) {
uint8_t rev_data = 0;
+ uint32_t ParamNumber = 0;
+
+ // 清除NVIC中断挂起位
NVIC_ClearPendingIRQ(UART1_IRQn);
- //接收线中断 有错误或者break
- if(UART_INT_TYPE(CMSDK_UART1) == INT_RCV_LINE_STATUS) {
- CMSDK_UART1->IER &= ~CMSDK_UART_IER_RLSI_EN_Msk;
+
+ // 检查中断类型
+ uint8_t int_type = UART_INT_TYPE(CMSDK_UART1);
+
+ // 接收线中断 - 有错误或者break
+ if(int_type == INT_RCV_LINE_STATUS) {
+ // 读取LSR寄存器清除错误状态
+ uint32_t lsr = CMSDK_UART1->LSR;
+ (void)lsr; // 避免未使用变量警告
}
- //数据就绪中断
- //接收超时中断
- if((UART_INT_TYPE(CMSDK_UART1) == INT_RCV_DATA_AVAILABLE) || (UART_INT_TYPE(CMSDK_UART1) == INT_CHAR_TIMEOUT_INDICATION)) {
-
- CMSDK_UART1->IER &= ~CMSDK_UART_IER_RDAI_EN_Msk;
- rev_data = CMSDK_UART1->RBR;
- UartPutc(CMSDK_UART1,rev_data);
- CMSDK_UART1->IER |= CMSDK_UART_IER_RDAI_EN_Msk;
- }
+ // 数据就绪中断或接收超时中断
+ if((int_type == INT_RCV_DATA_AVAILABLE) || (int_type == INT_CHAR_TIMEOUT_INDICATION)) {
+ ParamNumber = (CMSDK_UART1->FSR >> 16) & 0x1f;
+
+ for(uint32_t i = 0; i < ParamNumber; i++) {
+ rev_data = CMSDK_UART1->RBR; // 把接收到的数据取出来
+
+ // 将数据存储到缓冲区
+ if(uart_rx_count < sizeof(uart_rx_buffer)) {
+ uart_rx_buffer[uart_rx_count] = rev_data;
+ uart_rx_count++;
+ } else {
+ // 缓冲区溢出,重置
+ uart_rx_count = 0;
+ }
+ UartPutc(CMSDK_UART1, rev_data); // 把接收到的数据再发回去
+ }
+
+ // 检查是否收到完整数据包(19字节)
+ if(uart_rx_count >= 19) {
+ //printf("1");
+ // 解析数据包
+ UART_EMS_Packet_t ems_packet;
+ if(ParseUART_EMS_Packet(uart_rx_buffer, uart_rx_count, &ems_packet)) {
+ // 更新电刺激配置
+ UpdateEMS_ConfigFromUART(&ems_packet);
+ } else {
+ }
+ // 清除缓冲区
+ uart_rx_count = 0;
+ }
+ }
+
return;
}
+
diff --git a/FWLIB/source/ENS1_WAVEGEN.c b/FWLIB/source/ENS1_WAVEGEN.c
index 68f133a..f6c8f62 100644
--- a/FWLIB/source/ENS1_WAVEGEN.c
+++ b/FWLIB/source/ENS1_WAVEGEN.c
@@ -221,21 +221,21 @@ void EMS_Process_Ramp(void)
}
// 计算每个强度步进需要的毫秒数
- uint32_t ramp_up_ms = ems_config.ramp_up_time * 1000;
- uint32_t hold_ms = ems_config.hold_time * 1000;
- uint32_t ramp_down_ms = ems_config.ramp_down_time * 1000;
+ uint32_t ramp_up_ms = g_ems_config.ramp_up_time * 1000;
+ uint32_t hold_ms = g_ems_config.hold_time * 1000;
+ uint32_t ramp_down_ms = g_ems_config.ramp_down_time * 1000;
switch (g_ramp_phase)
{
case 0: // 缓进阶段
{
- if ( time_count <= ems_config.ramp_up_time*1000 )
+ if ( time_count <= g_ems_config.ramp_up_time*1000 )
{
// 计算当前应该达到的强度
- uint16_t target_intensity = (time_count * ems_config.intensity) / ramp_up_ms;
- if (target_intensity > ems_config.intensity) {
- target_intensity = ems_config.intensity;
+ uint16_t target_intensity = (time_count * g_ems_config.intensity) / ramp_up_ms;
+ if (target_intensity > g_ems_config.intensity) {
+ target_intensity = g_ems_config.intensity;
}
g_current_intensity = target_intensity;
}
@@ -243,7 +243,7 @@ void EMS_Process_Ramp(void)
{
// 缓进完成,进入保持阶段
g_ramp_phase = 1;
- g_current_intensity = ems_config.intensity; // 确保达到最大强度
+ g_current_intensity = g_ems_config.intensity; // 确保达到最大强度
}
break;
}
@@ -252,7 +252,7 @@ void EMS_Process_Ramp(void)
{
if(time_count <= (ramp_up_ms + hold_ms))
{
- g_current_intensity = ems_config.intensity;
+ g_current_intensity = g_ems_config.intensity;
}
else
{
@@ -270,10 +270,10 @@ void EMS_Process_Ramp(void)
uint32_t ramp_down_elapsed = time_count - ramp_down_start;
// 计算当前应该达到的强度(从最大值递减到0)
- uint16_t target_intensity = ems_config.intensity -
- (ramp_down_elapsed * ems_config.intensity) / ramp_down_ms;
+ uint16_t target_intensity = g_ems_config.intensity -
+ (ramp_down_elapsed * g_ems_config.intensity) / ramp_down_ms;
- if (target_intensity > ems_config.intensity) {
+ if (target_intensity > g_ems_config.intensity) {
target_intensity = 0;
}
g_current_intensity = target_intensity;
@@ -288,7 +288,6 @@ void EMS_Process_Ramp(void)
}
}
}
- // 注意:不要在这里重置time_count,让它继续计数
}
// 更新波形强度(不重新配置硬件)
diff --git a/JLinkLog.txt b/JLinkLog.txt
index 1f95e95..60bb477 100644
--- a/JLinkLog.txt
+++ b/JLinkLog.txt
@@ -1,2065 +1,953 @@
-T54E4 000:006.495 SEGGER J-Link V7.82 Log File
-T54E4 000:006.647 DLL Compiled: Oct 13 2022 13:32:51
-T54E4 000:006.652 Logging started @ 2025-09-11 02:36
-T54E4 000:006.656 - 6.658ms
-T54E4 000:006.665 JLINK_SetWarnOutHandler(...)
-T54E4 000:006.670 - 0.007ms
-T54E4 000:006.677 JLINK_OpenEx(...)
-T54E4 000:008.162 Firmware: J-Link Pro V4 V11 PLUS Feb compiled 20 2025 16:24:17
-T54E4 000:008.513 Firmware: J-Link Pro V4 V11 PLUS Feb compiled 20 2025 16:24:17
-T54E4 000:008.639 Decompressing FW timestamp took 95 us
-T54E4 000:011.301 Hardware: V11.00
-T54E4 000:011.316 S/N: 601024557
-T54E4 000:011.323 OEM: SEGGER
-T54E4 000:011.330 Feature(s): FlashBP, GDB, JFlash, FlashDL, RDI
-T54E4 000:012.507 USB speed mode: High speed (480 MBit/s)
-T54E4 000:012.885 TELNET listener socket opened on port 19021
-T54E4 000:012.990 WEBSRV WEBSRV_Init(): Starting webserver thread(s)
-T54E4 000:013.133 WEBSRV Webserver running on local port 19080
-T54E4 000:018.008 - 11.345ms returns "O.K."
-T54E4 000:018.046 JLINK_GetEmuCaps()
-T54E4 000:018.053 - 0.010ms returns 0xB9FF7BBF
-T54E4 000:018.066 JLINK_TIF_GetAvailable(...)
-T54E4 000:018.345 - 0.290ms
-T54E4 000:018.369 JLINK_SetErrorOutHandler(...)
-T54E4 000:018.375 - 0.009ms
-T54E4 000:018.400 JLINK_ExecCommand("ProjectFile = "E:\WeChat Files\wxid_2yspimlbsy4d22\xwechat_files\wxid_2yspimlbsy4d22_74fb\msg\file\2025-09\TIMER_DEMO\TIMER_DEMO\JLinkSettings.ini"", ...).
-T54E4 000:026.818 - 8.428ms returns 0x00
-T54E4 000:030.342 JLINK_ExecCommand("Device = ARMCM0", ...).
-T54E4 000:032.989 Device "CORTEX-M0" selected.
-T54E4 000:033.496 - 3.140ms returns 0x00
-T54E4 000:033.509 JLINK_ExecCommand("DisableConnectionTimeout", ...).
-T54E4 000:033.517 - 0.003ms returns 0x01
-T54E4 000:033.523 JLINK_GetHardwareVersion()
-T54E4 000:033.527 - 0.006ms returns 110000
-T54E4 000:033.536 JLINK_GetDLLVersion()
-T54E4 000:033.540 - 0.006ms returns 78200
-T54E4 000:033.546 JLINK_GetOEMString(...)
-T54E4 000:033.551 JLINK_GetFirmwareString(...)
-T54E4 000:033.556 - 0.006ms
-T54E4 000:041.721 JLINK_GetDLLVersion()
-T54E4 000:041.743 - 0.024ms returns 78200
-T54E4 000:041.750 JLINK_GetCompileDateTime()
-T54E4 000:041.754 - 0.006ms
-T54E4 000:044.284 JLINK_GetFirmwareString(...)
-T54E4 000:044.297 - 0.015ms
-T54E4 000:047.147 JLINK_GetHardwareVersion()
-T54E4 000:047.162 - 0.016ms returns 110000
-T54E4 000:049.796 JLINK_GetSN()
-T54E4 000:049.808 - 0.014ms returns 601024557
-T54E4 000:052.401 JLINK_GetOEMString(...)
-T54E4 000:057.917 JLINK_TIF_Select(JLINKARM_TIF_SWD)
-T54E4 000:059.283 - 1.373ms returns 0x00
-T54E4 000:059.296 JLINK_HasError()
-T54E4 000:059.309 JLINK_SetSpeed(5000)
-T54E4 000:059.936 - 0.631ms
-T54E4 000:059.946 JLINK_GetId()
-T54E4 000:063.653 Found SW-DP with ID 0x0BB11477
-T54E4 000:068.679 DPIDR: 0x0BB11477
-T54E4 000:071.408 CoreSight SoC-400 or earlier
-T54E4 000:074.090 Scanning AP map to find all available APs
-T54E4 000:077.652 AP[1]: Stopped AP scan as end of AP map has been reached
-T54E4 000:080.392 AP[0]: AHB-AP (IDR: 0x04770021)
-T54E4 000:083.112 Iterating through AP map to find AHB-AP to use
-T54E4 000:086.573 AP[0]: Core found
-T54E4 000:089.356 AP[0]: AHB-AP ROM base: 0xE00FF000
-T54E4 000:092.317 CPUID register: 0x410CC200. Implementer code: 0x41 (ARM)
-T54E4 000:094.931 Found Cortex-M0 r0p0, Little endian.
-T54E4 000:095.572 -- Max. mem block: 0x00005C40
-T54E4 000:096.193 CPU_ReadMem(4 bytes @ 0xE000EDF0)
-T54E4 000:096.555 CPU_WriteMem(4 bytes @ 0xE000EDF0)
-T54E4 000:096.930 CPU_ReadMem(4 bytes @ 0xE0002000)
-T54E4 000:100.200 FPUnit: 4 code (BP) slots and 0 literal slots
-T54E4 000:100.223 CPU_ReadMem(4 bytes @ 0xE000EDFC)
-T54E4 000:100.589 CPU_WriteMem(4 bytes @ 0xE000EDFC)
-T54E4 000:100.949 CPU_ReadMem(4 bytes @ 0xE0001000)
-T54E4 000:101.304 CPU_WriteMem(4 bytes @ 0xE0001000)
-T54E4 000:104.751 CoreSight components:
-T54E4 000:107.513 ROMTbl[0] @ E00FF000
-T54E4 000:107.530 CPU_ReadMem(64 bytes @ 0xE00FF000)
-T54E4 000:108.068 CPU_ReadMem(32 bytes @ 0xE000EFE0)
-T54E4 000:111.394 [0][0]: E000E000 CID B105E00D PID 000BB008 SCS
-T54E4 000:111.504 CPU_ReadMem(32 bytes @ 0xE0001FE0)
-T54E4 000:114.615 [0][1]: E0001000 CID B105E00D PID 000BB00A DWT
-T54E4 000:114.631 CPU_ReadMem(32 bytes @ 0xE0002FE0)
-T54E4 000:117.732 [0][2]: E0002000 CID B105E00D PID 000BB00B FPB
-T54E4 000:118.042 - 58.101ms returns 0x0BB11477
-T54E4 000:118.063 JLINK_GetDLLVersion()
-T54E4 000:118.068 - 0.007ms returns 78200
-T54E4 000:118.077 JLINK_CORE_GetFound()
-T54E4 000:118.081 - 0.006ms returns 0x60000FF
-T54E4 000:118.131 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX)
-T54E4 000:118.142 Value=0xE00FF000
-T54E4 000:118.148 - 0.019ms returns 0
-T54E4 000:120.779 JLINK_GetDebugInfo(0x100 = JLINKARM_ROM_TABLE_ADDR_INDEX)
-T54E4 000:120.791 Value=0xE00FF000
-T54E4 000:120.798 - 0.020ms returns 0
-T54E4 000:120.804 JLINK_GetDebugInfo(0x101 = JLINKARM_DEBUG_INFO_ETM_ADDR_INDEX)
-T54E4 000:120.808 Value=0x00000000
-T54E4 000:120.814 - 0.012ms returns 0
-T54E4 000:120.823 JLINK_ReadMemEx(0xE0041FF0, 0x10 Bytes, Flags = 0x02000004)
-T54E4 000:120.840 CPU_ReadMem(16 bytes @ 0xE0041FF0)
-T54E4 000:121.236 Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
-T54E4 000:121.254 - 0.434ms returns 16 (0x10)
-T54E4 000:121.264 JLINK_GetDebugInfo(0x102 = JLINKARM_DEBUG_INFO_MTB_ADDR_INDEX)
-T54E4 000:121.271 Value=0x00000000
-T54E4 000:121.279 - 0.017ms returns 0
-T54E4 000:121.286 JLINK_GetDebugInfo(0x103 = JLINKARM_DEBUG_INFO_TPIU_ADDR_INDEX)
-T54E4 000:121.292 Value=0x00000000
-T54E4 000:121.300 - 0.017ms returns 0
-T54E4 000:121.307 JLINK_ReadMemEx(0xE0040FF0, 0x10 Bytes, Flags = 0x02000004)
-T54E4 000:121.319 CPU_ReadMem(16 bytes @ 0xE0040FF0)
-T54E4 000:121.737 Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
-T54E4 000:121.751 - 0.446ms returns 16 (0x10)
-T54E4 000:121.761 JLINK_GetDebugInfo(0x104 = JLINKARM_DEBUG_INFO_ITM_ADDR_INDEX)
-T54E4 000:121.767 Value=0xE0000000
-T54E4 000:121.775 - 0.017ms returns 0
-T54E4 000:121.782 JLINK_GetDebugInfo(0x105 = JLINKARM_DEBUG_INFO_DWT_ADDR_INDEX)
-T54E4 000:121.788 Value=0xE0001000
-T54E4 000:121.796 - 0.016ms returns 0
-T54E4 000:121.802 JLINK_GetDebugInfo(0x106 = JLINKARM_DEBUG_INFO_FPB_ADDR_INDEX)
-T54E4 000:121.808 Value=0xE0002000
-T54E4 000:121.816 - 0.016ms returns 0
-T54E4 000:121.823 JLINK_GetDebugInfo(0x107 = JLINKARM_DEBUG_INFO_NVIC_ADDR_INDEX)
-T54E4 000:121.828 Value=0xE000E000
-T54E4 000:121.836 - 0.016ms returns 0
-T54E4 000:121.843 JLINK_GetDebugInfo(0x10C = JLINKARM_DEBUG_INFO_DBG_ADDR_INDEX)
-T54E4 000:121.849 Value=0xE000EDF0
-T54E4 000:121.857 - 0.016ms returns 0
-T54E4 000:121.864 JLINK_GetDebugInfo(0x01 = Unknown)
-T54E4 000:121.874 Value=0x00000000
-T54E4 000:121.882 - 0.021ms returns 0
-T54E4 000:121.889 JLINK_ReadMemU32(0xE000ED00, 0x1 Items)
-T54E4 000:121.900 CPU_ReadMem(4 bytes @ 0xE000ED00)
-T54E4 000:122.267 Data: 00 C2 0C 41
-T54E4 000:122.281 Debug reg: CPUID
-T54E4 000:122.290 - 0.403ms returns 1 (0x1)
-T54E4 000:122.299 JLINK_GetDebugInfo(0x10F = JLINKARM_DEBUG_INFO_HAS_CORTEX_M_SECURITY_EXT_INDEX)
-T54E4 000:122.305 Value=0x00000000
-T54E4 000:122.313 - 0.016ms returns 0
-T54E4 000:122.320 JLINK_HasError()
-T54E4 000:122.328 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)
-T54E4 000:122.334 - 0.008ms returns JLINKARM_CM3_RESET_TYPE_NORMAL
-T54E4 000:122.341 JLINK_Reset()
-T54E4 000:122.362 CPU is running
-T54E4 000:122.371 CPU_WriteMem(4 bytes @ 0xE000EDF0)
-T54E4 000:122.720 CPU is running
-T54E4 000:122.731 CPU_WriteMem(4 bytes @ 0xE000EDFC)
-T54E4 000:125.763 Reset: Halt core after reset via DEMCR.VC_CORERESET.
-T54E4 000:129.291 Reset: Reset device via AIRCR.SYSRESETREQ.
-T54E4 000:129.309 CPU is running
-T54E4 000:129.319 CPU_WriteMem(4 bytes @ 0xE000ED0C)
-T54E4 000:182.081 CPU_ReadMem(4 bytes @ 0xE000EDF0)
-T54E4 000:182.442 CPU_ReadMem(4 bytes @ 0xE000EDF0)
-T54E4 000:182.828 CPU is running
-T54E4 000:182.841 CPU_WriteMem(4 bytes @ 0xE000EDF0)
-T54E4 000:183.229 CPU is running
-T54E4 000:183.240 CPU_WriteMem(4 bytes @ 0xE000EDFC)
-T54E4 000:188.679 CPU_ReadMem(4 bytes @ 0xE000EDF0)
-T54E4 000:190.976 CPU_WriteMem(4 bytes @ 0xE0002000)
-T54E4 000:191.339 CPU_ReadMem(4 bytes @ 0xE000EDFC)
-T54E4 000:191.685 CPU_ReadMem(4 bytes @ 0xE0001000)
-T54E4 000:192.054 CPU_WriteMem(4 bytes @ 0xE0001000)
-T54E4 000:192.424 - 70.087ms
-T54E4 000:192.446 JLINK_Halt()
-T54E4 000:192.451 - 0.008ms returns 0x00
-T54E4 000:192.461 JLINK_ReadMemU32(0xE000EDF0, 0x1 Items)
-T54E4 000:192.472 CPU_ReadMem(4 bytes @ 0xE000EDF0)
-T54E4 000:192.800 Data: 03 00 03 00
-T54E4 000:192.810 Debug reg: DHCSR
-T54E4 000:192.817 - 0.358ms returns 1 (0x1)
-T54E4 000:192.869 JLINK_WriteU32_64(0xE000EDF0, 0xA05F0003)
-T54E4 000:192.879 Debug reg: DHCSR
-T54E4 000:193.061 CPU_WriteMem(4 bytes @ 0xE000EDF0)
-T54E4 000:193.447 - 0.585ms returns 0 (0x00000000)
-T54E4 000:193.461 JLINK_WriteU32_64(0xE000EDFC, 0x01000000)
-T54E4 000:193.467 Debug reg: DEMCR
-T54E4 000:193.481 CPU_WriteMem(4 bytes @ 0xE000EDFC)
-T54E4 000:193.842 - 0.387ms returns 0 (0x00000000)
-T54E4 000:207.559 JLINK_GetHWStatus(...)
-T54E4 000:207.905 - 0.355ms returns 0
-T54E4 000:216.321 JLINK_GetNumBPUnits(Type = 0xFFFFFF00)
-T54E4 000:216.344 - 0.025ms returns 0x04
-T54E4 000:216.352 JLINK_GetNumBPUnits(Type = 0xF0)
-T54E4 000:216.357 - 0.007ms returns 0x2000
-T54E4 000:216.369 JLINK_GetNumWPUnits()
-T54E4 000:216.373 - 0.006ms returns 2
-T54E4 000:224.479 JLINK_GetSpeed()
-T54E4 000:224.501 - 0.026ms returns 5000
-T54E4 000:230.194 JLINK_ReadMemU32(0xE000E004, 0x1 Items)
-T54E4 000:230.229 CPU_ReadMem(4 bytes @ 0xE000E004)
-T54E4 000:230.644 Data: 00 00 00 00
-T54E4 000:230.655 - 0.463ms returns 1 (0x1)
-T54E4 000:230.666 JLINK_Halt()
-T54E4 000:230.672 - 0.007ms returns 0x00
-T54E4 000:230.677 JLINK_IsHalted()
-T54E4 000:230.683 - 0.007ms returns TRUE
-T54E4 000:233.505 JLINK_WriteMem(0x20000000, 0xF4 Bytes, ...)
-T54E4 000:233.514 Data: 00 BE 0A E0 0D 78 2D 06 68 40 08 24 40 00 00 D3 ...
-T54E4 000:233.710 CPU_WriteMem(244 bytes @ 0x20000000)
-T54E4 000:234.772 - 1.278ms returns 0xF4
-T54E4 000:234.817 JLINK_HasError()
-T54E4 000:234.827 JLINK_WriteReg(R0, 0x10000000)
-T54E4 000:234.842 - 0.017ms returns 0
-T54E4 000:234.850 JLINK_WriteReg(R1, 0x00B71B00)
-T54E4 000:234.856 - 0.009ms returns 0
-T54E4 000:234.864 JLINK_WriteReg(R2, 0x00000001)
-T54E4 000:234.870 - 0.009ms returns 0
-T54E4 000:234.877 JLINK_WriteReg(R3, 0x00000000)
-T54E4 000:234.883 - 0.009ms returns 0
-T54E4 000:234.890 JLINK_WriteReg(R4, 0x00000000)
-T54E4 000:234.896 - 0.008ms returns 0
-T54E4 000:234.903 JLINK_WriteReg(R5, 0x00000000)
-T54E4 000:234.909 - 0.009ms returns 0
-T54E4 000:234.916 JLINK_WriteReg(R6, 0x00000000)
-T54E4 000:234.923 - 0.009ms returns 0
-T54E4 000:234.930 JLINK_WriteReg(R7, 0x00000000)
-T54E4 000:234.984 - 0.057ms returns 0
-T54E4 000:234.992 JLINK_WriteReg(R8, 0x00000000)
-T54E4 000:235.002 - 0.013ms returns 0
-T54E4 000:235.009 JLINK_WriteReg(R9, 0x200000EC)
-T54E4 000:235.015 - 0.008ms returns 0
-T54E4 000:235.022 JLINK_WriteReg(R10, 0x00000000)
-T54E4 000:235.029 - 0.008ms returns 0
-T54E4 000:235.036 JLINK_WriteReg(R11, 0x00000000)
-T54E4 000:235.042 - 0.009ms returns 0
-T54E4 000:235.049 JLINK_WriteReg(R12, 0x00000000)
-T54E4 000:235.055 - 0.008ms returns 0
-T54E4 000:235.061 JLINK_WriteReg(R13 (SP), 0x20002000)
-T54E4 000:235.068 - 0.009ms returns 0
-T54E4 000:235.075 JLINK_WriteReg(R14, 0x20000001)
-T54E4 000:235.081 - 0.008ms returns 0
-T54E4 000:235.088 JLINK_WriteReg(R15 (PC), 0x20000044)
-T54E4 000:235.097 - 0.011ms returns 0
-T54E4 000:235.104 JLINK_WriteReg(XPSR, 0x01000000)
-T54E4 000:235.111 - 0.009ms returns 0
-T54E4 000:235.118 JLINK_WriteReg(MSP, 0x20002000)
-T54E4 000:235.124 - 0.008ms returns 0
-T54E4 000:235.131 JLINK_WriteReg(PSP, 0x20002000)
-T54E4 000:235.137 - 0.008ms returns 0
-T54E4 000:235.144 JLINK_WriteReg(CFBP, 0x00000000)
-T54E4 000:235.150 - 0.009ms returns 0
-T54E4 000:235.157 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2)
-T54E4 000:235.169 CPU_ReadMem(4 bytes @ 0x20000000)
-T54E4 000:235.557 CPU_WriteMem(4 bytes @ 0x20000000)
-T54E4 000:235.953 CPU_ReadMem(4 bytes @ 0x20000000)
-T54E4 000:236.300 CPU_WriteMem(4 bytes @ 0x20000000)
-T54E4 000:236.681 CPU_ReadMem(2 bytes @ 0x20000000)
-T54E4 000:237.052 - 1.899ms returns 0x00000001
-T54E4 000:237.062 JLINK_Go()
-T54E4 000:237.069 CPU_WriteMem(2 bytes @ 0x20000000)
-T54E4 000:237.431 CPU_ReadMem(4 bytes @ 0xE0001000)
-T54E4 000:237.773 CPU_WriteMem(4 bytes @ 0xE0001000)
-T54E4 000:238.161 CPU_WriteMem(4 bytes @ 0xE0002008)
-T54E4 000:238.172 CPU_WriteMem(4 bytes @ 0xE000200C)
-T54E4 000:238.180 CPU_WriteMem(4 bytes @ 0xE0002010)
-T54E4 000:238.188 CPU_WriteMem(4 bytes @ 0xE0002014)
-T54E4 000:238.842 CPU_WriteMem(4 bytes @ 0xE0001004)
-T54E4 000:240.967 - 3.916ms
-T54E4 000:240.986 JLINK_IsHalted()
-T54E4 000:242.869 CPU_ReadMem(2 bytes @ 0x20000000)
-T54E4 000:243.241 - 2.265ms returns TRUE
-T54E4 000:243.275 JLINK_ReadReg(R15 (PC))
-T54E4 000:243.285 - 0.012ms returns 0x20000000
-T54E4 000:243.296 JLINK_ClrBPEx(BPHandle = 0x00000001)
-T54E4 000:243.303 - 0.009ms returns 0x00
-T54E4 000:243.313 JLINK_ReadReg(R0)
-T54E4 000:243.319 - 0.009ms returns 0x00000000
-T54E4 000:243.690 JLINK_HasError()
-T54E4 000:243.702 JLINK_WriteReg(R0, 0x10000000)
-T54E4 000:243.709 - 0.009ms returns 0
-T54E4 000:243.714 JLINK_WriteReg(R1, 0x00001000)
-T54E4 000:243.719 - 0.007ms returns 0
-T54E4 000:243.725 JLINK_WriteReg(R2, 0x000000FF)
-T54E4 000:243.729 - 0.006ms returns 0
-T54E4 000:243.735 JLINK_WriteReg(R3, 0x00000000)
-T54E4 000:243.739 - 0.006ms returns 0
-T54E4 000:243.744 JLINK_WriteReg(R4, 0x00000000)
-T54E4 000:243.749 - 0.006ms returns 0
-T54E4 000:243.754 JLINK_WriteReg(R5, 0x00000000)
-T54E4 000:243.759 - 0.006ms returns 0
-T54E4 000:243.764 JLINK_WriteReg(R6, 0x00000000)
-T54E4 000:243.769 - 0.006ms returns 0
-T54E4 000:243.774 JLINK_WriteReg(R7, 0x00000000)
-T54E4 000:243.779 - 0.007ms returns 0
-T54E4 000:243.784 JLINK_WriteReg(R8, 0x00000000)
-T54E4 000:243.789 - 0.006ms returns 0
-T54E4 000:243.794 JLINK_WriteReg(R9, 0x200000EC)
-T54E4 000:243.799 - 0.006ms returns 0
-T54E4 000:243.804 JLINK_WriteReg(R10, 0x00000000)
-T54E4 000:243.809 - 0.006ms returns 0
-T54E4 000:243.814 JLINK_WriteReg(R11, 0x00000000)
-T54E4 000:243.818 - 0.006ms returns 0
-T54E4 000:243.824 JLINK_WriteReg(R12, 0x00000000)
-T54E4 000:243.828 - 0.006ms returns 0
-T54E4 000:243.834 JLINK_WriteReg(R13 (SP), 0x20002000)
-T54E4 000:243.839 - 0.007ms returns 0
-T54E4 000:243.844 JLINK_WriteReg(R14, 0x20000001)
-T54E4 000:243.849 - 0.006ms returns 0
-T54E4 000:243.854 JLINK_WriteReg(R15 (PC), 0x20000020)
-T54E4 000:243.859 - 0.006ms returns 0
-T54E4 000:243.864 JLINK_WriteReg(XPSR, 0x01000000)
-T54E4 000:243.869 - 0.006ms returns 0
-T54E4 000:243.874 JLINK_WriteReg(MSP, 0x20002000)
-T54E4 000:243.878 - 0.006ms returns 0
-T54E4 000:243.884 JLINK_WriteReg(PSP, 0x20002000)
-T54E4 000:243.888 - 0.006ms returns 0
-T54E4 000:243.893 JLINK_WriteReg(CFBP, 0x00000000)
-T54E4 000:243.898 - 0.007ms returns 0
-T54E4 000:243.904 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2)
-T54E4 000:243.909 - 0.007ms returns 0x00000002
-T54E4 000:243.914 JLINK_Go()
-T54E4 000:243.923 CPU_ReadMem(4 bytes @ 0xE0001000)
-T54E4 000:246.033 - 2.128ms
-T54E4 000:246.049 JLINK_IsHalted()
-T54E4 000:246.404 - 0.359ms returns FALSE
-T54E4 000:246.415 JLINK_HasError()
-T54E4 000:258.342 JLINK_IsHalted()
-T54E4 000:260.414 CPU_ReadMem(2 bytes @ 0x20000000)
-T54E4 000:260.783 - 2.447ms returns TRUE
-T54E4 000:260.796 JLINK_ReadReg(R15 (PC))
-T54E4 000:260.806 - 0.012ms returns 0x20000000
-T54E4 000:260.813 JLINK_ClrBPEx(BPHandle = 0x00000002)
-T54E4 000:260.820 - 0.009ms returns 0x00
-T54E4 000:260.827 JLINK_ReadReg(R0)
-T54E4 000:260.833 - 0.009ms returns 0x00000000
-T54E4 000:261.400 JLINK_HasError()
-T54E4 000:261.417 JLINK_WriteReg(R0, 0x10001000)
-T54E4 000:261.426 - 0.012ms returns 0
-T54E4 000:261.434 JLINK_WriteReg(R1, 0x00001000)
-T54E4 000:261.440 - 0.009ms returns 0
-T54E4 000:261.447 JLINK_WriteReg(R2, 0x000000FF)
-T54E4 000:261.454 - 0.009ms returns 0
-T54E4 000:261.461 JLINK_WriteReg(R3, 0x00000000)
-T54E4 000:261.468 - 0.009ms returns 0
-T54E4 000:261.475 JLINK_WriteReg(R4, 0x00000000)
-T54E4 000:261.546 - 0.078ms returns 0
-T54E4 000:261.558 JLINK_WriteReg(R5, 0x00000000)
-T54E4 000:261.564 - 0.009ms returns 0
-T54E4 000:261.571 JLINK_WriteReg(R6, 0x00000000)
-T54E4 000:261.577 - 0.008ms returns 0
-T54E4 000:261.584 JLINK_WriteReg(R7, 0x00000000)
-T54E4 000:261.590 - 0.008ms returns 0
-T54E4 000:261.597 JLINK_WriteReg(R8, 0x00000000)
-T54E4 000:261.603 - 0.008ms returns 0
-T54E4 000:261.610 JLINK_WriteReg(R9, 0x200000EC)
-T54E4 000:261.616 - 0.008ms returns 0
-T54E4 000:261.623 JLINK_WriteReg(R10, 0x00000000)
-T54E4 000:261.629 - 0.008ms returns 0
-T54E4 000:261.636 JLINK_WriteReg(R11, 0x00000000)
-T54E4 000:261.642 - 0.008ms returns 0
-T54E4 000:261.649 JLINK_WriteReg(R12, 0x00000000)
-T54E4 000:261.655 - 0.008ms returns 0
-T54E4 000:261.662 JLINK_WriteReg(R13 (SP), 0x20002000)
-T54E4 000:261.669 - 0.009ms returns 0
-T54E4 000:261.676 JLINK_WriteReg(R14, 0x20000001)
-T54E4 000:261.682 - 0.009ms returns 0
-T54E4 000:261.689 JLINK_WriteReg(R15 (PC), 0x20000020)
-T54E4 000:261.696 - 0.009ms returns 0
-T54E4 000:261.703 JLINK_WriteReg(XPSR, 0x01000000)
-T54E4 000:261.709 - 0.009ms returns 0
-T54E4 000:261.716 JLINK_WriteReg(MSP, 0x20002000)
-T54E4 000:261.722 - 0.008ms returns 0
-T54E4 000:261.728 JLINK_WriteReg(PSP, 0x20002000)
-T54E4 000:261.733 - 0.006ms returns 0
-T54E4 000:261.738 JLINK_WriteReg(CFBP, 0x00000000)
-T54E4 000:261.743 - 0.006ms returns 0
-T54E4 000:261.748 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2)
-T54E4 000:261.754 - 0.008ms returns 0x00000003
-T54E4 000:261.759 JLINK_Go()
-T54E4 000:261.769 CPU_ReadMem(4 bytes @ 0xE0001000)
-T54E4 000:263.895 - 2.145ms
-T54E4 000:263.911 JLINK_IsHalted()
-T54E4 000:264.263 - 0.357ms returns FALSE
-T54E4 000:264.274 JLINK_HasError()
-T54E4 000:265.728 JLINK_IsHalted()
-T54E4 000:266.104 - 0.387ms returns FALSE
-T54E4 000:266.124 JLINK_HasError()
-T54E4 000:267.779 JLINK_IsHalted()
-T54E4 000:268.244 - 0.471ms returns FALSE
-T54E4 000:268.256 JLINK_HasError()
-T54E4 000:270.123 JLINK_IsHalted()
-T54E4 000:272.001 CPU_ReadMem(2 bytes @ 0x20000000)
-T54E4 000:272.372 - 2.255ms returns TRUE
-T54E4 000:272.385 JLINK_ReadReg(R15 (PC))
-T54E4 000:272.393 - 0.011ms returns 0x20000000
-T54E4 000:272.401 JLINK_ClrBPEx(BPHandle = 0x00000003)
-T54E4 000:272.407 - 0.009ms returns 0x00
-T54E4 000:272.415 JLINK_ReadReg(R0)
-T54E4 000:272.421 - 0.009ms returns 0x00000000
-T54E4 000:272.940 JLINK_HasError()
-T54E4 000:272.956 JLINK_WriteReg(R0, 0x10002000)
-T54E4 000:272.964 - 0.011ms returns 0
-T54E4 000:272.972 JLINK_WriteReg(R1, 0x00001000)
-T54E4 000:272.978 - 0.009ms returns 0
-T54E4 000:272.985 JLINK_WriteReg(R2, 0x000000FF)
-T54E4 000:272.991 - 0.008ms returns 0
-T54E4 000:272.998 JLINK_WriteReg(R3, 0x00000000)
-T54E4 000:273.004 - 0.008ms returns 0
-T54E4 000:273.011 JLINK_WriteReg(R4, 0x00000000)
-T54E4 000:273.017 - 0.008ms returns 0
-T54E4 000:273.024 JLINK_WriteReg(R5, 0x00000000)
-T54E4 000:273.030 - 0.008ms returns 0
-T54E4 000:273.048 JLINK_WriteReg(R6, 0x00000000)
-T54E4 000:273.054 - 0.009ms returns 0
-T54E4 000:273.061 JLINK_WriteReg(R7, 0x00000000)
-T54E4 000:273.067 - 0.009ms returns 0
-T54E4 000:273.074 JLINK_WriteReg(R8, 0x00000000)
-T54E4 000:273.080 - 0.009ms returns 0
-T54E4 000:273.087 JLINK_WriteReg(R9, 0x200000EC)
-T54E4 000:273.093 - 0.008ms returns 0
-T54E4 000:273.100 JLINK_WriteReg(R10, 0x00000000)
-T54E4 000:273.106 - 0.008ms returns 0
-T54E4 000:273.113 JLINK_WriteReg(R11, 0x00000000)
-T54E4 000:273.119 - 0.008ms returns 0
-T54E4 000:273.126 JLINK_WriteReg(R12, 0x00000000)
-T54E4 000:273.132 - 0.008ms returns 0
-T54E4 000:273.139 JLINK_WriteReg(R13 (SP), 0x20002000)
-T54E4 000:273.146 - 0.009ms returns 0
-T54E4 000:273.153 JLINK_WriteReg(R14, 0x20000001)
-T54E4 000:273.159 - 0.008ms returns 0
-T54E4 000:273.166 JLINK_WriteReg(R15 (PC), 0x20000020)
-T54E4 000:273.172 - 0.008ms returns 0
-T54E4 000:273.179 JLINK_WriteReg(XPSR, 0x01000000)
-T54E4 000:273.185 - 0.008ms returns 0
-T54E4 000:273.192 JLINK_WriteReg(MSP, 0x20002000)
-T54E4 000:273.198 - 0.008ms returns 0
-T54E4 000:273.205 JLINK_WriteReg(PSP, 0x20002000)
-T54E4 000:273.214 - 0.014ms returns 0
-T54E4 000:273.223 JLINK_WriteReg(CFBP, 0x00000000)
-T54E4 000:273.229 - 0.008ms returns 0
-T54E4 000:273.236 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2)
-T54E4 000:273.243 - 0.009ms returns 0x00000004
-T54E4 000:273.251 JLINK_Go()
-T54E4 000:273.262 CPU_ReadMem(4 bytes @ 0xE0001000)
-T54E4 000:275.366 - 2.123ms
-T54E4 000:275.380 JLINK_IsHalted()
-T54E4 000:275.726 - 0.351ms returns FALSE
-T54E4 000:275.737 JLINK_HasError()
-T54E4 000:277.643 JLINK_IsHalted()
-T54E4 000:278.017 - 0.379ms returns FALSE
-T54E4 000:278.029 JLINK_HasError()
-T54E4 000:279.647 JLINK_IsHalted()
-T54E4 000:280.016 - 0.375ms returns FALSE
-T54E4 000:280.029 JLINK_HasError()
-T54E4 000:281.887 JLINK_IsHalted()
-T54E4 000:283.764 CPU_ReadMem(2 bytes @ 0x20000000)
-T54E4 000:284.099 - 2.218ms returns TRUE
-T54E4 000:284.111 JLINK_ReadReg(R15 (PC))
-T54E4 000:284.120 - 0.011ms returns 0x20000000
-T54E4 000:284.128 JLINK_ClrBPEx(BPHandle = 0x00000004)
-T54E4 000:284.134 - 0.009ms returns 0x00
-T54E4 000:284.141 JLINK_ReadReg(R0)
-T54E4 000:284.147 - 0.009ms returns 0x00000000
-T54E4 000:284.498 JLINK_HasError()
-T54E4 000:284.514 JLINK_WriteReg(R0, 0x00000001)
-T54E4 000:284.523 - 0.012ms returns 0
-T54E4 000:284.531 JLINK_WriteReg(R1, 0x00001000)
-T54E4 000:284.537 - 0.009ms returns 0
-T54E4 000:284.544 JLINK_WriteReg(R2, 0x000000FF)
-T54E4 000:284.550 - 0.008ms returns 0
-T54E4 000:284.557 JLINK_WriteReg(R3, 0x00000000)
-T54E4 000:284.563 - 0.009ms returns 0
-T54E4 000:284.570 JLINK_WriteReg(R4, 0x00000000)
-T54E4 000:284.576 - 0.008ms returns 0
-T54E4 000:284.583 JLINK_WriteReg(R5, 0x00000000)
-T54E4 000:284.589 - 0.008ms returns 0
-T54E4 000:284.596 JLINK_WriteReg(R6, 0x00000000)
-T54E4 000:284.602 - 0.008ms returns 0
-T54E4 000:284.609 JLINK_WriteReg(R7, 0x00000000)
-T54E4 000:284.615 - 0.008ms returns 0
-T54E4 000:284.622 JLINK_WriteReg(R8, 0x00000000)
-T54E4 000:284.628 - 0.008ms returns 0
-T54E4 000:284.635 JLINK_WriteReg(R9, 0x200000EC)
-T54E4 000:284.641 - 0.008ms returns 0
-T54E4 000:284.650 JLINK_WriteReg(R10, 0x00000000)
-T54E4 000:284.664 - 0.019ms returns 0
-T54E4 000:284.676 JLINK_WriteReg(R11, 0x00000000)
-T54E4 000:284.684 - 0.010ms returns 0
-T54E4 000:284.691 JLINK_WriteReg(R12, 0x00000000)
-T54E4 000:284.697 - 0.008ms returns 0
-T54E4 000:284.704 JLINK_WriteReg(R13 (SP), 0x20002000)
-T54E4 000:284.711 - 0.009ms returns 0
-T54E4 000:284.718 JLINK_WriteReg(R14, 0x20000001)
-T54E4 000:284.724 - 0.008ms returns 0
-T54E4 000:284.731 JLINK_WriteReg(R15 (PC), 0x2000006E)
-T54E4 000:284.737 - 0.008ms returns 0
-T54E4 000:284.744 JLINK_WriteReg(XPSR, 0x01000000)
-T54E4 000:284.750 - 0.008ms returns 0
-T54E4 000:284.757 JLINK_WriteReg(MSP, 0x20002000)
-T54E4 000:284.763 - 0.008ms returns 0
-T54E4 000:284.770 JLINK_WriteReg(PSP, 0x20002000)
-T54E4 000:284.776 - 0.008ms returns 0
-T54E4 000:284.783 JLINK_WriteReg(CFBP, 0x00000000)
-T54E4 000:284.789 - 0.008ms returns 0
-T54E4 000:284.796 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2)
-T54E4 000:284.821 - 0.028ms returns 0x00000005
-T54E4 000:284.828 JLINK_Go()
-T54E4 000:284.838 CPU_ReadMem(4 bytes @ 0xE0001000)
-T54E4 000:286.980 - 2.159ms
-T54E4 000:286.994 JLINK_IsHalted()
-T54E4 000:288.869 CPU_ReadMem(2 bytes @ 0x20000000)
-T54E4 000:289.240 - 2.253ms returns TRUE
-T54E4 000:289.253 JLINK_ReadReg(R15 (PC))
-T54E4 000:289.260 - 0.009ms returns 0x20000000
-T54E4 000:289.267 JLINK_ClrBPEx(BPHandle = 0x00000005)
-T54E4 000:289.272 - 0.008ms returns 0x00
-T54E4 000:289.279 JLINK_ReadReg(R0)
-T54E4 000:289.284 - 0.007ms returns 0x00000000
-T54E4 000:348.281 JLINK_WriteMem(0x20000000, 0xF4 Bytes, ...)
-T54E4 000:348.297 Data: 00 BE 0A E0 0D 78 2D 06 68 40 08 24 40 00 00 D3 ...
-T54E4 000:348.318 CPU_WriteMem(244 bytes @ 0x20000000)
-T54E4 000:348.849 - 0.580ms returns 0xFFFFFFFF
-T54E4 000:348.896 JLINK_HasError()
-T54E4 000:348.907 JLINK_WriteReg(R0, 0x10000000)
-T54E4 000:348.917 - 0.013ms returns 0
-T54E4 000:348.926 JLINK_WriteReg(R1, 0x00B71B00)
-T54E4 000:348.933 - 0.010ms returns 0
-T54E4 000:348.941 JLINK_WriteReg(R2, 0x00000002)
-T54E4 000:348.953 - 0.017ms returns 0
-T54E4 000:348.963 JLINK_WriteReg(R3, 0x00000000)
-T54E4 000:348.970 - 0.009ms returns 0
-T54E4 000:348.978 JLINK_WriteReg(R4, 0x00000000)
-T54E4 000:348.984 - 0.009ms returns 0
-T54E4 000:348.992 JLINK_WriteReg(R5, 0x00000000)
-T54E4 000:348.998 - 0.009ms returns 0
-T54E4 000:349.006 JLINK_WriteReg(R6, 0x00000000)
-T54E4 000:349.012 - 0.009ms returns 0
-T54E4 000:349.020 JLINK_WriteReg(R7, 0x00000000)
-T54E4 000:349.026 - 0.009ms returns 0
-T54E4 000:349.034 JLINK_WriteReg(R8, 0x00000000)
-T54E4 000:349.041 - 0.010ms returns 0
-T54E4 000:349.048 JLINK_WriteReg(R9, 0x200000EC)
-T54E4 000:349.055 - 0.009ms returns 0
-T54E4 000:349.062 JLINK_WriteReg(R10, 0x00000000)
-T54E4 000:349.069 - 0.009ms returns 0
-T54E4 000:349.076 JLINK_WriteReg(R11, 0x00000000)
-T54E4 000:349.083 - 0.009ms returns 0
-T54E4 000:349.091 JLINK_WriteReg(R12, 0x00000000)
-T54E4 000:349.097 - 0.009ms returns 0
-T54E4 000:349.105 JLINK_WriteReg(R13 (SP), 0x20002000)
-T54E4 000:349.112 - 0.010ms returns 0
-T54E4 000:349.120 JLINK_WriteReg(R14, 0x20000001)
-T54E4 000:349.126 - 0.009ms returns 0
-T54E4 000:349.134 JLINK_WriteReg(R15 (PC), 0x20000044)
-T54E4 000:349.141 - 0.009ms returns 0
-T54E4 000:349.148 JLINK_WriteReg(XPSR, 0x01000000)
-T54E4 000:349.155 - 0.009ms returns 0
-T54E4 000:349.162 JLINK_WriteReg(MSP, 0x20002000)
-T54E4 000:349.169 - 0.009ms returns 0
-T54E4 000:349.177 JLINK_WriteReg(PSP, 0x20002000)
-T54E4 000:349.183 - 0.009ms returns 0
-T54E4 000:349.191 JLINK_WriteReg(CFBP, 0x00000000)
-T54E4 000:349.198 - 0.010ms returns 0
-T54E4 000:349.205 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2)
-T54E4 000:349.216 CPU_ReadMem(4 bytes @ 0x20000000)
-T54E4 000:349.607 CPU_WriteMem(4 bytes @ 0x20000000)
-T54E4 000:349.966 CPU_ReadMem(4 bytes @ 0x20000000)
-T54E4 000:350.310 CPU_WriteMem(4 bytes @ 0x20000000)
-T54E4 000:350.682 CPU_ReadMem(2 bytes @ 0x20000000)
-T54E4 000:351.037 - 1.841ms returns 0x00000006
-T54E4 000:351.054 JLINK_Go()
-T54E4 000:351.065 CPU_WriteMem(2 bytes @ 0x20000000)
-T54E4 000:351.457 CPU_ReadMem(4 bytes @ 0xE0001000)
-T54E4 000:353.524 - 2.480ms
-T54E4 000:353.542 JLINK_IsHalted()
-T54E4 000:355.416 CPU_ReadMem(2 bytes @ 0x20000000)
-T54E4 000:355.792 - 2.257ms returns TRUE
-T54E4 000:355.806 JLINK_ReadReg(R15 (PC))
-T54E4 000:355.814 - 0.011ms returns 0x20000000
-T54E4 000:355.822 JLINK_ClrBPEx(BPHandle = 0x00000006)
-T54E4 000:355.828 - 0.009ms returns 0x00
-T54E4 000:355.835 JLINK_ReadReg(R0)
-T54E4 000:355.841 - 0.009ms returns 0x00000000
-T54E4 000:356.187 JLINK_WriteMem(0x200000F4, 0x30C Bytes, ...)
-T54E4 000:356.201 Data: 98 02 00 20 D5 00 00 10 DD 00 00 10 DF 00 00 10 ...
-T54E4 000:356.218 CPU_WriteMem(780 bytes @ 0x200000F4)
-T54E4 000:358.789 - 2.613ms returns 0x30C
-T54E4 000:358.809 JLINK_WriteMem(0x20000400, 0x400 Bytes, ...)
-T54E4 000:358.817 Data: 10 B5 20 2A 04 DB 08 46 20 3A D0 40 00 21 10 BD ...
-T54E4 000:358.834 CPU_WriteMem(1024 bytes @ 0x20000400)
-T54E4 000:362.047 - 3.248ms returns 0x400
-T54E4 000:362.065 JLINK_WriteMem(0x20000800, 0x400 Bytes, ...)
-T54E4 000:362.071 Data: B4 42 F7 D3 FF F7 DA FC 90 20 00 10 B0 20 00 10 ...
-T54E4 000:362.092 CPU_WriteMem(1024 bytes @ 0x20000800)
-T54E4 000:365.343 - 3.287ms returns 0x400
-T54E4 000:365.359 JLINK_WriteMem(0x20000C00, 0x400 Bytes, ...)
-T54E4 000:365.365 Data: 5E 00 00 20 50 00 00 20 6C 00 00 20 68 00 00 20 ...
-T54E4 000:365.379 CPU_WriteMem(1024 bytes @ 0x20000C00)
-T54E4 000:368.628 - 3.281ms returns 0x400
-T54E4 000:368.648 JLINK_WriteMem(0x20001000, 0xF4 Bytes, ...)
-T54E4 000:368.654 Data: 70 B5 04 46 08 20 FF F7 D7 FF 15 20 FF F7 B6 FF ...
-T54E4 000:368.672 CPU_WriteMem(244 bytes @ 0x20001000)
-T54E4 000:369.745 - 1.104ms returns 0xF4
-T54E4 000:369.759 JLINK_HasError()
-T54E4 000:369.768 JLINK_WriteReg(R0, 0x10000000)
-T54E4 000:369.778 - 0.012ms returns 0
-T54E4 000:369.786 JLINK_WriteReg(R1, 0x00001000)
-T54E4 000:369.793 - 0.010ms returns 0
-T54E4 000:369.801 JLINK_WriteReg(R2, 0x200000F4)
-T54E4 000:369.807 - 0.009ms returns 0
-T54E4 000:369.819 JLINK_WriteReg(R3, 0x00000000)
-T54E4 000:369.829 - 0.012ms returns 0
-T54E4 000:369.836 JLINK_WriteReg(R4, 0x00000000)
-T54E4 000:369.843 - 0.009ms returns 0
-T54E4 000:369.850 JLINK_WriteReg(R5, 0x00000000)
-T54E4 000:369.857 - 0.009ms returns 0
-T54E4 000:369.864 JLINK_WriteReg(R6, 0x00000000)
-T54E4 000:369.871 - 0.009ms returns 0
-T54E4 000:369.878 JLINK_WriteReg(R7, 0x00000000)
-T54E4 000:369.885 - 0.009ms returns 0
-T54E4 000:369.892 JLINK_WriteReg(R8, 0x00000000)
-T54E4 000:369.899 - 0.009ms returns 0
-T54E4 000:369.907 JLINK_WriteReg(R9, 0x200000EC)
-T54E4 000:369.913 - 0.009ms returns 0
-T54E4 000:369.920 JLINK_WriteReg(R10, 0x00000000)
-T54E4 000:369.935 - 0.017ms returns 0
-T54E4 000:369.943 JLINK_WriteReg(R11, 0x00000000)
-T54E4 000:369.949 - 0.009ms returns 0
-T54E4 000:369.957 JLINK_WriteReg(R12, 0x00000000)
-T54E4 000:369.963 - 0.009ms returns 0
-T54E4 000:369.971 JLINK_WriteReg(R13 (SP), 0x20002000)
-T54E4 000:369.979 - 0.013ms returns 0
-T54E4 000:369.989 JLINK_WriteReg(R14, 0x20000001)
-T54E4 000:369.995 - 0.009ms returns 0
-T54E4 000:370.003 JLINK_WriteReg(R15 (PC), 0x200000B8)
-T54E4 000:370.010 - 0.010ms returns 0
-T54E4 000:370.018 JLINK_WriteReg(XPSR, 0x01000000)
-T54E4 000:370.024 - 0.009ms returns 0
-T54E4 000:370.032 JLINK_WriteReg(MSP, 0x20002000)
-T54E4 000:370.038 - 0.009ms returns 0
-T54E4 000:370.046 JLINK_WriteReg(PSP, 0x20002000)
-T54E4 000:370.052 - 0.009ms returns 0
-T54E4 000:370.060 JLINK_WriteReg(CFBP, 0x00000000)
-T54E4 000:370.066 - 0.009ms returns 0
-T54E4 000:370.074 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2)
-T54E4 000:370.082 - 0.010ms returns 0x00000007
-T54E4 000:370.089 JLINK_Go()
-T54E4 000:370.101 CPU_ReadMem(4 bytes @ 0xE0001000)
-T54E4 000:372.202 - 2.120ms
-T54E4 000:372.224 JLINK_IsHalted()
-T54E4 000:372.980 - 0.771ms returns FALSE
-T54E4 000:373.008 JLINK_HasError()
-T54E4 000:376.039 JLINK_IsHalted()
-T54E4 000:376.830 - 0.796ms returns FALSE
-T54E4 000:376.841 JLINK_HasError()
-T54E4 000:378.598 JLINK_IsHalted()
-T54E4 000:379.161 - 0.571ms returns FALSE
-T54E4 000:379.177 JLINK_HasError()
-T54E4 000:380.845 JLINK_IsHalted()
-T54E4 000:381.329 - 0.490ms returns FALSE
-T54E4 000:381.341 JLINK_HasError()
-T54E4 000:383.141 JLINK_IsHalted()
-T54E4 000:383.536 - 0.400ms returns FALSE
-T54E4 000:383.548 JLINK_HasError()
-T54E4 000:385.429 JLINK_IsHalted()
-T54E4 000:386.092 - 0.669ms returns FALSE
-T54E4 000:386.105 JLINK_HasError()
-T54E4 000:387.488 JLINK_IsHalted()
-T54E4 000:388.120 - 0.637ms returns FALSE
-T54E4 000:388.132 JLINK_HasError()
-T54E4 000:389.585 JLINK_IsHalted()
-T54E4 000:390.424 - 0.846ms returns FALSE
-T54E4 000:390.438 JLINK_HasError()
-T54E4 000:391.843 JLINK_IsHalted()
-T54E4 000:392.327 - 0.490ms returns FALSE
-T54E4 000:392.340 JLINK_HasError()
-T54E4 000:394.391 JLINK_IsHalted()
-T54E4 000:394.957 - 0.572ms returns FALSE
-T54E4 000:394.970 JLINK_HasError()
-T54E4 000:396.402 JLINK_IsHalted()
-T54E4 000:397.090 - 0.694ms returns FALSE
-T54E4 000:397.104 JLINK_HasError()
-T54E4 000:399.520 JLINK_IsHalted()
-T54E4 000:400.197 - 0.687ms returns FALSE
-T54E4 000:400.215 JLINK_HasError()
-T54E4 000:401.855 JLINK_IsHalted()
-T54E4 000:402.526 - 0.678ms returns FALSE
-T54E4 000:402.539 JLINK_HasError()
-T54E4 000:404.143 JLINK_IsHalted()
-T54E4 000:404.684 - 0.547ms returns FALSE
-T54E4 000:404.697 JLINK_HasError()
-T54E4 000:406.430 JLINK_IsHalted()
-T54E4 000:407.096 - 0.671ms returns FALSE
-T54E4 000:407.107 JLINK_HasError()
-T54E4 000:408.601 JLINK_IsHalted()
-T54E4 000:409.027 - 0.431ms returns FALSE
-T54E4 000:409.038 JLINK_HasError()
-T54E4 000:410.877 JLINK_IsHalted()
-T54E4 000:411.406 - 0.534ms returns FALSE
-T54E4 000:411.418 JLINK_HasError()
-T54E4 000:413.090 JLINK_IsHalted()
-T54E4 000:413.495 - 0.412ms returns FALSE
-T54E4 000:413.509 JLINK_HasError()
-T54E4 000:415.384 JLINK_IsHalted()
-T54E4 000:416.076 - 0.697ms returns FALSE
-T54E4 000:416.088 JLINK_HasError()
-T54E4 000:417.415 JLINK_IsHalted()
-T54E4 000:417.845 - 0.436ms returns FALSE
-T54E4 000:417.857 JLINK_HasError()
-T54E4 000:419.689 JLINK_IsHalted()
-T54E4 000:420.177 - 0.497ms returns FALSE
-T54E4 000:420.194 JLINK_HasError()
-T54E4 000:422.038 JLINK_IsHalted()
-T54E4 000:422.562 - 0.530ms returns FALSE
-T54E4 000:422.574 JLINK_HasError()
-T54E4 000:424.032 JLINK_IsHalted()
-T54E4 000:424.604 - 0.578ms returns FALSE
-T54E4 000:424.623 JLINK_HasError()
-T54E4 000:426.032 JLINK_IsHalted()
-T54E4 000:426.437 - 0.410ms returns FALSE
-T54E4 000:426.448 JLINK_HasError()
-T54E4 000:428.031 JLINK_IsHalted()
-T54E4 000:429.828 - 1.805ms returns FALSE
-T54E4 000:429.842 JLINK_HasError()
-T54E4 000:430.992 JLINK_IsHalted()
-T54E4 000:431.501 - 0.515ms returns FALSE
-T54E4 000:431.513 JLINK_HasError()
-T54E4 000:432.995 JLINK_IsHalted()
-T54E4 000:433.454 - 0.464ms returns FALSE
-T54E4 000:433.466 JLINK_HasError()
-T54E4 000:435.501 JLINK_IsHalted()
-T54E4 000:436.118 - 0.622ms returns FALSE
-T54E4 000:436.129 JLINK_HasError()
-T54E4 000:437.541 JLINK_IsHalted()
-T54E4 000:437.992 - 0.457ms returns FALSE
-T54E4 000:438.004 JLINK_HasError()
-T54E4 000:439.764 JLINK_IsHalted()
-T54E4 000:440.246 - 0.487ms returns FALSE
-T54E4 000:440.258 JLINK_HasError()
-T54E4 000:441.825 JLINK_IsHalted()
-T54E4 000:442.479 - 0.662ms returns FALSE
-T54E4 000:442.493 JLINK_HasError()
-T54E4 000:444.146 JLINK_IsHalted()
-T54E4 000:444.686 - 0.546ms returns FALSE
-T54E4 000:444.698 JLINK_HasError()
-T54E4 000:446.487 JLINK_IsHalted()
-T54E4 000:447.096 - 0.617ms returns FALSE
-T54E4 000:447.111 JLINK_HasError()
-T54E4 000:449.179 JLINK_IsHalted()
-T54E4 000:449.741 - 0.568ms returns FALSE
-T54E4 000:449.760 JLINK_HasError()
-T54E4 000:451.444 JLINK_IsHalted()
-T54E4 000:451.971 - 0.532ms returns FALSE
-T54E4 000:451.982 JLINK_HasError()
-T54E4 000:453.737 JLINK_IsHalted()
-T54E4 000:454.239 - 0.507ms returns FALSE
-T54E4 000:454.251 JLINK_HasError()
-T54E4 000:455.989 JLINK_IsHalted()
-T54E4 000:456.580 - 0.596ms returns FALSE
-T54E4 000:456.591 JLINK_HasError()
-T54E4 000:458.051 JLINK_IsHalted()
-T54E4 000:458.462 - 0.417ms returns FALSE
-T54E4 000:458.474 JLINK_HasError()
-T54E4 000:460.050 JLINK_IsHalted()
-T54E4 000:460.654 - 0.609ms returns FALSE
-T54E4 000:460.666 JLINK_HasError()
-T54E4 000:462.566 JLINK_IsHalted()
-T54E4 000:463.295 - 0.736ms returns FALSE
-T54E4 000:463.309 JLINK_HasError()
-T54E4 000:464.588 JLINK_IsHalted()
-T54E4 000:465.153 - 0.570ms returns FALSE
-T54E4 000:465.165 JLINK_HasError()
-T54E4 000:466.589 JLINK_IsHalted()
-T54E4 000:467.174 - 0.591ms returns FALSE
-T54E4 000:467.185 JLINK_HasError()
-T54E4 000:468.795 JLINK_IsHalted()
-T54E4 000:469.469 - 0.680ms returns FALSE
-T54E4 000:469.482 JLINK_HasError()
-T54E4 000:470.838 JLINK_IsHalted()
-T54E4 000:471.402 - 0.569ms returns FALSE
-T54E4 000:471.413 JLINK_HasError()
-T54E4 000:472.926 JLINK_IsHalted()
-T54E4 000:473.280 - 0.359ms returns FALSE
-T54E4 000:473.292 JLINK_HasError()
-T54E4 000:474.929 JLINK_IsHalted()
-T54E4 000:475.364 - 0.440ms returns FALSE
-T54E4 000:475.383 JLINK_HasError()
-T54E4 000:477.927 JLINK_IsHalted()
-T54E4 000:478.564 - 0.643ms returns FALSE
-T54E4 000:478.577 JLINK_HasError()
-T54E4 000:479.924 JLINK_IsHalted()
-T54E4 000:480.403 - 0.484ms returns FALSE
-T54E4 000:480.416 JLINK_HasError()
-T54E4 000:481.975 JLINK_IsHalted()
-T54E4 000:482.485 - 0.517ms returns FALSE
-T54E4 000:482.498 JLINK_HasError()
-T54E4 000:484.508 JLINK_IsHalted()
-T54E4 000:485.048 - 0.546ms returns FALSE
-T54E4 000:485.060 JLINK_HasError()
-T54E4 000:486.507 JLINK_IsHalted()
-T54E4 000:487.005 - 0.503ms returns FALSE
-T54E4 000:487.016 JLINK_HasError()
-T54E4 000:488.636 JLINK_IsHalted()
-T54E4 000:490.478 - 1.851ms returns FALSE
-T54E4 000:490.494 JLINK_HasError()
-T54E4 000:491.932 JLINK_IsHalted()
-T54E4 000:492.563 - 0.638ms returns FALSE
-T54E4 000:492.578 JLINK_HasError()
-T54E4 000:494.486 JLINK_IsHalted()
-T54E4 000:495.159 - 0.678ms returns FALSE
-T54E4 000:495.171 JLINK_HasError()
-T54E4 000:496.790 JLINK_IsHalted()
-T54E4 000:497.406 - 0.627ms returns FALSE
-T54E4 000:497.425 JLINK_HasError()
-T54E4 000:499.098 JLINK_IsHalted()
-T54E4 000:499.625 - 0.533ms returns FALSE
-T54E4 000:499.637 JLINK_HasError()
-T54E4 000:501.394 JLINK_IsHalted()
-T54E4 000:502.000 - 0.611ms returns FALSE
-T54E4 000:502.012 JLINK_HasError()
-T54E4 000:503.670 JLINK_IsHalted()
-T54E4 000:504.063 - 0.398ms returns FALSE
-T54E4 000:504.074 JLINK_HasError()
-T54E4 000:505.976 JLINK_IsHalted()
-T54E4 000:506.547 - 0.576ms returns FALSE
-T54E4 000:506.558 JLINK_HasError()
-T54E4 000:509.026 JLINK_IsHalted()
-T54E4 000:509.564 - 0.543ms returns FALSE
-T54E4 000:509.576 JLINK_HasError()
-T54E4 000:511.021 JLINK_IsHalted()
-T54E4 000:511.713 - 0.697ms returns FALSE
-T54E4 000:511.725 JLINK_HasError()
-T54E4 000:513.021 JLINK_IsHalted()
-T54E4 000:513.432 - 0.421ms returns FALSE
-T54E4 000:513.451 JLINK_HasError()
-T54E4 000:515.025 JLINK_IsHalted()
-T54E4 000:515.566 - 0.546ms returns FALSE
-T54E4 000:515.577 JLINK_HasError()
-T54E4 000:517.023 JLINK_IsHalted()
-T54E4 000:517.459 - 0.441ms returns FALSE
-T54E4 000:517.470 JLINK_HasError()
-T54E4 000:519.123 JLINK_IsHalted()
-T54E4 000:519.682 - 0.569ms returns FALSE
-T54E4 000:519.699 JLINK_HasError()
-T54E4 000:521.392 JLINK_IsHalted()
-T54E4 000:521.911 - 0.526ms returns FALSE
-T54E4 000:521.925 JLINK_HasError()
-T54E4 000:523.907 JLINK_IsHalted()
-T54E4 000:524.357 - 0.455ms returns FALSE
-T54E4 000:524.369 JLINK_HasError()
-T54E4 000:525.911 JLINK_IsHalted()
-T54E4 000:526.494 - 0.589ms returns FALSE
-T54E4 000:526.514 JLINK_HasError()
-T54E4 000:527.904 JLINK_IsHalted()
-T54E4 000:528.427 - 0.530ms returns FALSE
-T54E4 000:528.440 JLINK_HasError()
-T54E4 000:529.907 JLINK_IsHalted()
-T54E4 000:530.436 - 0.535ms returns FALSE
-T54E4 000:530.448 JLINK_HasError()
-T54E4 000:531.909 JLINK_IsHalted()
-T54E4 000:532.322 - 0.418ms returns FALSE
-T54E4 000:532.333 JLINK_HasError()
-T54E4 000:533.912 JLINK_IsHalted()
-T54E4 000:534.616 - 0.711ms returns FALSE
-T54E4 000:534.630 JLINK_HasError()
-T54E4 000:536.461 JLINK_IsHalted()
-T54E4 000:536.854 - 0.398ms returns FALSE
-T54E4 000:536.864 JLINK_HasError()
-T54E4 000:538.726 JLINK_IsHalted()
-T54E4 000:539.158 - 0.436ms returns FALSE
-T54E4 000:539.170 JLINK_HasError()
-T54E4 000:540.977 JLINK_IsHalted()
-T54E4 000:541.406 - 0.434ms returns FALSE
-T54E4 000:541.418 JLINK_HasError()
-T54E4 000:543.284 JLINK_IsHalted()
-T54E4 000:543.719 - 0.440ms returns FALSE
-T54E4 000:543.731 JLINK_HasError()
-T54E4 000:545.280 JLINK_IsHalted()
-T54E4 000:545.731 - 0.462ms returns FALSE
-T54E4 000:545.751 JLINK_HasError()
-T54E4 000:547.276 JLINK_IsHalted()
-T54E4 000:547.721 - 0.450ms returns FALSE
-T54E4 000:547.732 JLINK_HasError()
-T54E4 000:549.280 JLINK_IsHalted()
-T54E4 000:549.909 - 0.637ms returns FALSE
-T54E4 000:549.924 JLINK_HasError()
-T54E4 000:551.278 JLINK_IsHalted()
-T54E4 000:551.632 - 0.362ms returns FALSE
-T54E4 000:551.656 JLINK_HasError()
-T54E4 000:553.527 JLINK_IsHalted()
-T54E4 000:554.104 - 0.583ms returns FALSE
-T54E4 000:554.117 JLINK_HasError()
-T54E4 000:555.815 JLINK_IsHalted()
-T54E4 000:556.305 - 0.496ms returns FALSE
-T54E4 000:556.317 JLINK_HasError()
-T54E4 000:557.858 JLINK_IsHalted()
-T54E4 000:558.530 - 0.677ms returns FALSE
-T54E4 000:558.542 JLINK_HasError()
-T54E4 000:560.138 JLINK_IsHalted()
-T54E4 000:560.780 - 0.648ms returns FALSE
-T54E4 000:560.792 JLINK_HasError()
-T54E4 000:562.441 JLINK_IsHalted()
-T54E4 000:562.919 - 0.485ms returns FALSE
-T54E4 000:562.932 JLINK_HasError()
-T54E4 000:564.441 JLINK_IsHalted()
-T54E4 000:564.980 - 0.545ms returns FALSE
-T54E4 000:564.992 JLINK_HasError()
-T54E4 000:566.446 JLINK_IsHalted()
-T54E4 000:566.934 - 0.494ms returns FALSE
-T54E4 000:566.946 JLINK_HasError()
-T54E4 000:568.438 JLINK_IsHalted()
-T54E4 000:568.843 - 0.409ms returns FALSE
-T54E4 000:568.854 JLINK_HasError()
-T54E4 000:570.437 JLINK_IsHalted()
-T54E4 000:571.031 - 0.600ms returns FALSE
-T54E4 000:571.043 JLINK_HasError()
-T54E4 000:572.444 JLINK_IsHalted()
-T54E4 000:573.009 - 0.570ms returns FALSE
-T54E4 000:573.021 JLINK_HasError()
-T54E4 000:574.439 JLINK_IsHalted()
-T54E4 000:574.911 - 0.478ms returns FALSE
-T54E4 000:574.923 JLINK_HasError()
-T54E4 000:576.440 JLINK_IsHalted()
-T54E4 000:576.822 - 0.391ms returns FALSE
-T54E4 000:576.847 JLINK_HasError()
-T54E4 000:578.498 JLINK_IsHalted()
-T54E4 000:579.230 - 0.741ms returns FALSE
-T54E4 000:579.246 JLINK_HasError()
-T54E4 000:580.474 JLINK_IsHalted()
-T54E4 000:581.092 - 0.624ms returns FALSE
-T54E4 000:581.104 JLINK_HasError()
-T54E4 000:582.775 JLINK_IsHalted()
-T54E4 000:583.454 - 0.685ms returns FALSE
-T54E4 000:583.466 JLINK_HasError()
-T54E4 000:585.581 JLINK_IsHalted()
-T54E4 000:586.299 - 0.724ms returns FALSE
-T54E4 000:586.312 JLINK_HasError()
-T54E4 000:587.618 JLINK_IsHalted()
-T54E4 000:588.083 - 0.470ms returns FALSE
-T54E4 000:588.094 JLINK_HasError()
-T54E4 000:589.671 JLINK_IsHalted()
-T54E4 000:590.058 - 0.393ms returns FALSE
-T54E4 000:590.070 JLINK_HasError()
-T54E4 000:591.708 JLINK_IsHalted()
-T54E4 000:592.353 - 0.650ms returns FALSE
-T54E4 000:592.365 JLINK_HasError()
-T54E4 000:593.740 JLINK_IsHalted()
-T54E4 000:594.284 - 0.549ms returns FALSE
-T54E4 000:594.295 JLINK_HasError()
-T54E4 000:596.121 JLINK_IsHalted()
-T54E4 000:596.709 - 0.594ms returns FALSE
-T54E4 000:596.721 JLINK_HasError()
-T54E4 000:598.258 JLINK_IsHalted()
-T54E4 000:598.957 - 0.705ms returns FALSE
-T54E4 000:598.969 JLINK_HasError()
-T54E4 000:601.400 JLINK_IsHalted()
-T54E4 000:602.034 - 0.643ms returns FALSE
-T54E4 000:602.050 JLINK_HasError()
-T54E4 000:603.420 JLINK_IsHalted()
-T54E4 000:603.865 - 0.451ms returns FALSE
-T54E4 000:603.878 JLINK_HasError()
-T54E4 000:605.487 JLINK_IsHalted()
-T54E4 000:606.093 - 0.611ms returns FALSE
-T54E4 000:606.105 JLINK_HasError()
-T54E4 000:607.544 JLINK_IsHalted()
-T54E4 000:608.167 - 0.629ms returns FALSE
-T54E4 000:608.180 JLINK_HasError()
-T54E4 000:609.579 JLINK_IsHalted()
-T54E4 000:610.158 - 0.585ms returns FALSE
-T54E4 000:610.170 JLINK_HasError()
-T54E4 000:611.665 JLINK_IsHalted()
-T54E4 000:612.431 - 0.775ms returns FALSE
-T54E4 000:612.447 JLINK_HasError()
-T54E4 000:614.761 JLINK_IsHalted()
-T54E4 000:615.331 - 0.576ms returns FALSE
-T54E4 000:615.344 JLINK_HasError()
-T54E4 000:616.750 JLINK_IsHalted()
-T54E4 000:617.379 - 0.635ms returns FALSE
-T54E4 000:617.392 JLINK_HasError()
-T54E4 000:619.058 JLINK_IsHalted()
-T54E4 000:619.539 - 0.488ms returns FALSE
-T54E4 000:619.553 JLINK_HasError()
-T54E4 000:621.333 JLINK_IsHalted()
-T54E4 000:621.804 - 0.477ms returns FALSE
-T54E4 000:621.817 JLINK_HasError()
-T54E4 000:623.599 JLINK_IsHalted()
-T54E4 000:624.097 - 0.504ms returns FALSE
-T54E4 000:624.109 JLINK_HasError()
-T54E4 000:625.905 JLINK_IsHalted()
-T54E4 000:626.410 - 0.510ms returns FALSE
-T54E4 000:626.421 JLINK_HasError()
-T54E4 000:627.951 JLINK_IsHalted()
-T54E4 000:628.635 - 0.689ms returns FALSE
-T54E4 000:628.653 JLINK_HasError()
-T54E4 000:629.950 JLINK_IsHalted()
-T54E4 000:630.478 - 0.533ms returns FALSE
-T54E4 000:630.489 JLINK_HasError()
-T54E4 000:631.968 JLINK_IsHalted()
-T54E4 000:632.449 - 0.486ms returns FALSE
-T54E4 000:632.460 JLINK_HasError()
-T54E4 000:633.949 JLINK_IsHalted()
-T54E4 000:634.381 - 0.437ms returns FALSE
-T54E4 000:634.393 JLINK_HasError()
-T54E4 000:635.995 JLINK_IsHalted()
-T54E4 000:636.468 - 0.478ms returns FALSE
-T54E4 000:636.479 JLINK_HasError()
-T54E4 000:637.995 JLINK_IsHalted()
-T54E4 000:638.509 - 0.519ms returns FALSE
-T54E4 000:638.520 JLINK_HasError()
-T54E4 000:640.037 JLINK_IsHalted()
-T54E4 000:640.449 - 0.417ms returns FALSE
-T54E4 000:640.461 JLINK_HasError()
-T54E4 000:642.082 JLINK_IsHalted()
-T54E4 000:642.680 - 0.603ms returns FALSE
-T54E4 000:642.692 JLINK_HasError()
-T54E4 000:644.489 JLINK_IsHalted()
-T54E4 000:645.034 - 0.549ms returns FALSE
-T54E4 000:645.044 JLINK_HasError()
-T54E4 000:646.773 JLINK_IsHalted()
-T54E4 000:647.292 - 0.524ms returns FALSE
-T54E4 000:647.304 JLINK_HasError()
-T54E4 000:649.053 JLINK_IsHalted()
-T54E4 000:649.616 - 0.568ms returns FALSE
-T54E4 000:649.628 JLINK_HasError()
-T54E4 000:651.324 JLINK_IsHalted()
-T54E4 000:651.891 - 0.573ms returns FALSE
-T54E4 000:651.903 JLINK_HasError()
-T54E4 000:653.607 JLINK_IsHalted()
-T54E4 000:654.159 - 0.558ms returns FALSE
-T54E4 000:654.178 JLINK_HasError()
-T54E4 000:655.600 JLINK_IsHalted()
-T54E4 000:656.159 - 0.564ms returns FALSE
-T54E4 000:656.171 JLINK_HasError()
-T54E4 000:657.602 JLINK_IsHalted()
-T54E4 000:658.159 - 0.563ms returns FALSE
-T54E4 000:658.171 JLINK_HasError()
-T54E4 000:659.602 JLINK_IsHalted()
-T54E4 000:660.159 - 0.563ms returns FALSE
-T54E4 000:660.171 JLINK_HasError()
-T54E4 000:661.600 JLINK_IsHalted()
-T54E4 000:662.126 - 0.531ms returns FALSE
-T54E4 000:662.137 JLINK_HasError()
-T54E4 000:663.959 JLINK_IsHalted()
-T54E4 000:664.355 - 0.403ms returns FALSE
-T54E4 000:664.369 JLINK_HasError()
-T54E4 000:666.263 JLINK_IsHalted()
-T54E4 000:666.798 - 0.540ms returns FALSE
-T54E4 000:666.809 JLINK_HasError()
-T54E4 000:668.513 JLINK_IsHalted()
-T54E4 000:668.985 - 0.482ms returns FALSE
-T54E4 000:669.003 JLINK_HasError()
-T54E4 000:670.783 JLINK_IsHalted()
-T54E4 000:671.205 - 0.427ms returns FALSE
-T54E4 000:671.217 JLINK_HasError()
-T54E4 000:673.048 JLINK_IsHalted()
-T54E4 000:673.764 - 0.722ms returns FALSE
-T54E4 000:673.776 JLINK_HasError()
-T54E4 000:675.350 JLINK_IsHalted()
-T54E4 000:675.806 - 0.465ms returns FALSE
-T54E4 000:675.821 JLINK_HasError()
-T54E4 000:677.432 JLINK_IsHalted()
-T54E4 000:677.915 - 0.490ms returns FALSE
-T54E4 000:677.929 JLINK_HasError()
-T54E4 000:679.513 JLINK_IsHalted()
-T54E4 000:680.207 - 0.699ms returns FALSE
-T54E4 000:680.224 JLINK_HasError()
-T54E4 000:681.820 JLINK_IsHalted()
-T54E4 000:682.296 - 0.483ms returns FALSE
-T54E4 000:682.310 JLINK_HasError()
-T54E4 000:684.133 JLINK_IsHalted()
-T54E4 000:684.659 - 0.531ms returns FALSE
-T54E4 000:684.670 JLINK_HasError()
-T54E4 000:686.913 JLINK_IsHalted()
-T54E4 000:687.492 - 0.584ms returns FALSE
-T54E4 000:687.503 JLINK_HasError()
-T54E4 000:689.117 JLINK_IsHalted()
-T54E4 000:689.626 - 0.514ms returns FALSE
-T54E4 000:689.637 JLINK_HasError()
-T54E4 000:691.386 JLINK_IsHalted()
-T54E4 000:691.988 - 0.607ms returns FALSE
-T54E4 000:691.999 JLINK_HasError()
-T54E4 000:693.936 JLINK_IsHalted()
-T54E4 000:694.587 - 0.656ms returns FALSE
-T54E4 000:694.598 JLINK_HasError()
-T54E4 000:696.012 JLINK_IsHalted()
-T54E4 000:696.379 - 0.372ms returns FALSE
-T54E4 000:696.390 JLINK_HasError()
-T54E4 000:698.273 JLINK_IsHalted()
-T54E4 000:698.813 - 0.545ms returns FALSE
-T54E4 000:698.824 JLINK_HasError()
-T54E4 000:700.558 JLINK_IsHalted()
-T54E4 000:701.001 - 0.448ms returns FALSE
-T54E4 000:701.013 JLINK_HasError()
-T54E4 000:702.846 JLINK_IsHalted()
-T54E4 000:703.560 - 0.723ms returns FALSE
-T54E4 000:703.575 JLINK_HasError()
-T54E4 000:705.213 JLINK_IsHalted()
-T54E4 000:705.809 - 0.602ms returns FALSE
-T54E4 000:705.829 JLINK_HasError()
-T54E4 000:708.485 JLINK_IsHalted()
-T54E4 000:709.073 - 0.595ms returns FALSE
-T54E4 000:709.088 JLINK_HasError()
-T54E4 000:710.789 JLINK_IsHalted()
-T54E4 000:711.366 - 0.582ms returns FALSE
-T54E4 000:711.378 JLINK_HasError()
-T54E4 000:713.076 JLINK_IsHalted()
-T54E4 000:714.952 CPU_ReadMem(2 bytes @ 0x20000000)
-T54E4 000:715.335 - 2.266ms returns TRUE
-T54E4 000:715.349 JLINK_ReadReg(R15 (PC))
-T54E4 000:715.360 - 0.013ms returns 0x20000000
-T54E4 000:715.368 JLINK_ClrBPEx(BPHandle = 0x00000007)
-T54E4 000:715.376 - 0.010ms returns 0x00
-T54E4 000:715.384 JLINK_ReadReg(R0)
-T54E4 000:715.390 - 0.009ms returns 0x00000000
-T54E4 000:716.066 JLINK_WriteMem(0x200000F4, 0x30C Bytes, ...)
-T54E4 000:716.080 Data: 88 70 16 48 C0 78 0A 28 05 DB 00 20 13 49 C8 70 ...
-T54E4 000:716.111 CPU_WriteMem(780 bytes @ 0x200000F4)
-T54E4 000:718.734 - 2.675ms returns 0x30C
-T54E4 000:718.749 JLINK_WriteMem(0x20000400, 0x400 Bytes, ...)
-T54E4 000:718.756 Data: 01 28 00 D1 05 20 70 47 FF 07 00 00 F8 B5 04 46 ...
-T54E4 000:718.769 CPU_WriteMem(1024 bytes @ 0x20000400)
-T54E4 000:722.002 - 3.260ms returns 0x400
-T54E4 000:722.015 JLINK_WriteMem(0x20000800, 0x400 Bytes, ...)
-T54E4 000:722.022 Data: 01 46 1B B0 F0 BD 00 20 01 21 C9 07 1B B0 F0 BD ...
-T54E4 000:722.035 CPU_WriteMem(1024 bytes @ 0x20000800)
-T54E4 000:725.291 - 3.282ms returns 0x400
-T54E4 000:725.304 JLINK_WriteMem(0x20000C00, 0x400 Bytes, ...)
-T54E4 000:725.311 Data: 33 46 2A 46 FE F7 AE FC 02 46 0B 46 07 46 09 91 ...
-T54E4 000:725.332 CPU_WriteMem(1024 bytes @ 0x20000C00)
-T54E4 000:728.594 - 3.300ms returns 0x400
-T54E4 000:728.612 JLINK_WriteMem(0x20001000, 0xF4 Bytes, ...)
-T54E4 000:728.619 Data: 05 49 08 43 03 49 48 61 FF F7 96 FA 10 BD 00 00 ...
-T54E4 000:728.638 CPU_WriteMem(244 bytes @ 0x20001000)
-T54E4 000:729.720 - 1.116ms returns 0xF4
-T54E4 000:729.735 JLINK_HasError()
-T54E4 000:729.741 JLINK_WriteReg(R0, 0x10001000)
-T54E4 000:729.748 - 0.009ms returns 0
-T54E4 000:729.754 JLINK_WriteReg(R1, 0x00001000)
-T54E4 000:729.759 - 0.007ms returns 0
-T54E4 000:729.764 JLINK_WriteReg(R2, 0x200000F4)
-T54E4 000:729.768 - 0.006ms returns 0
-T54E4 000:729.773 JLINK_WriteReg(R3, 0x00000000)
-T54E4 000:729.778 - 0.006ms returns 0
-T54E4 000:729.783 JLINK_WriteReg(R4, 0x00000000)
-T54E4 000:729.787 - 0.006ms returns 0
-T54E4 000:729.792 JLINK_WriteReg(R5, 0x00000000)
-T54E4 000:729.797 - 0.006ms returns 0
-T54E4 000:729.802 JLINK_WriteReg(R6, 0x00000000)
-T54E4 000:729.806 - 0.006ms returns 0
-T54E4 000:729.811 JLINK_WriteReg(R7, 0x00000000)
-T54E4 000:729.816 - 0.006ms returns 0
-T54E4 000:729.821 JLINK_WriteReg(R8, 0x00000000)
-T54E4 000:729.825 - 0.006ms returns 0
-T54E4 000:729.830 JLINK_WriteReg(R9, 0x200000EC)
-T54E4 000:729.835 - 0.006ms returns 0
-T54E4 000:729.840 JLINK_WriteReg(R10, 0x00000000)
-T54E4 000:729.845 - 0.006ms returns 0
-T54E4 000:729.850 JLINK_WriteReg(R11, 0x00000000)
-T54E4 000:729.854 - 0.006ms returns 0
-T54E4 000:729.859 JLINK_WriteReg(R12, 0x00000000)
-T54E4 000:729.864 - 0.006ms returns 0
-T54E4 000:729.869 JLINK_WriteReg(R13 (SP), 0x20002000)
-T54E4 000:729.874 - 0.007ms returns 0
-T54E4 000:729.879 JLINK_WriteReg(R14, 0x20000001)
-T54E4 000:729.884 - 0.006ms returns 0
-T54E4 000:729.889 JLINK_WriteReg(R15 (PC), 0x200000B8)
-T54E4 000:729.893 - 0.006ms returns 0
-T54E4 000:729.898 JLINK_WriteReg(XPSR, 0x01000000)
-T54E4 000:729.903 - 0.006ms returns 0
-T54E4 000:729.908 JLINK_WriteReg(MSP, 0x20002000)
-T54E4 000:729.912 - 0.006ms returns 0
-T54E4 000:729.918 JLINK_WriteReg(PSP, 0x20002000)
-T54E4 000:729.922 - 0.006ms returns 0
-T54E4 000:729.927 JLINK_WriteReg(CFBP, 0x00000000)
-T54E4 000:729.932 - 0.006ms returns 0
-T54E4 000:729.937 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2)
-T54E4 000:729.943 - 0.008ms returns 0x00000008
-T54E4 000:729.949 JLINK_Go()
-T54E4 000:729.957 CPU_ReadMem(4 bytes @ 0xE0001000)
-T54E4 000:732.054 - 2.113ms
-T54E4 000:732.075 JLINK_IsHalted()
-T54E4 000:732.734 - 0.664ms returns FALSE
-T54E4 000:732.750 JLINK_HasError()
-T54E4 000:735.086 JLINK_IsHalted()
-T54E4 000:735.613 - 0.536ms returns FALSE
-T54E4 000:735.628 JLINK_HasError()
-T54E4 000:737.576 JLINK_IsHalted()
-T54E4 000:738.198 - 0.628ms returns FALSE
-T54E4 000:738.209 JLINK_HasError()
-T54E4 000:739.577 JLINK_IsHalted()
-T54E4 000:740.252 - 0.680ms returns FALSE
-T54E4 000:740.263 JLINK_HasError()
-T54E4 000:741.580 JLINK_IsHalted()
-T54E4 000:742.172 - 0.601ms returns FALSE
-T54E4 000:742.188 JLINK_HasError()
-T54E4 000:743.623 JLINK_IsHalted()
-T54E4 000:744.232 - 0.616ms returns FALSE
-T54E4 000:744.245 JLINK_HasError()
-T54E4 000:746.146 JLINK_IsHalted()
-T54E4 000:746.660 - 0.521ms returns FALSE
-T54E4 000:746.673 JLINK_HasError()
-T54E4 000:748.452 JLINK_IsHalted()
-T54E4 000:748.997 - 0.552ms returns FALSE
-T54E4 000:749.011 JLINK_HasError()
-T54E4 000:750.716 JLINK_IsHalted()
-T54E4 000:751.159 - 0.448ms returns FALSE
-T54E4 000:751.171 JLINK_HasError()
-T54E4 000:753.164 JLINK_IsHalted()
-T54E4 000:753.835 - 0.677ms returns FALSE
-T54E4 000:753.847 JLINK_HasError()
-T54E4 000:755.425 JLINK_IsHalted()
-T54E4 000:756.124 - 0.704ms returns FALSE
-T54E4 000:756.136 JLINK_HasError()
-T54E4 000:757.711 JLINK_IsHalted()
-T54E4 000:758.194 - 0.490ms returns FALSE
-T54E4 000:758.215 JLINK_HasError()
-T54E4 000:760.019 JLINK_IsHalted()
-T54E4 000:760.430 - 0.419ms returns FALSE
-T54E4 000:760.444 JLINK_HasError()
-T54E4 000:762.302 JLINK_IsHalted()
-T54E4 000:762.915 - 0.619ms returns FALSE
-T54E4 000:762.927 JLINK_HasError()
-T54E4 000:764.069 JLINK_IsHalted()
-T54E4 000:764.491 - 0.428ms returns FALSE
-T54E4 000:764.504 JLINK_HasError()
-T54E4 000:765.632 JLINK_IsHalted()
-T54E4 000:766.162 - 0.535ms returns FALSE
-T54E4 000:766.173 JLINK_HasError()
-T54E4 000:768.709 JLINK_IsHalted()
-T54E4 000:770.520 - 1.819ms returns FALSE
-T54E4 000:770.534 JLINK_HasError()
-T54E4 000:771.823 JLINK_IsHalted()
-T54E4 000:772.414 - 0.596ms returns FALSE
-T54E4 000:772.425 JLINK_HasError()
-T54E4 000:773.824 JLINK_IsHalted()
-T54E4 000:774.324 - 0.511ms returns FALSE
-T54E4 000:774.344 JLINK_HasError()
-T54E4 000:776.008 JLINK_IsHalted()
-T54E4 000:776.623 - 0.621ms returns FALSE
-T54E4 000:776.634 JLINK_HasError()
-T54E4 000:778.043 JLINK_IsHalted()
-T54E4 000:778.540 - 0.503ms returns FALSE
-T54E4 000:778.552 JLINK_HasError()
-T54E4 000:780.330 JLINK_IsHalted()
-T54E4 000:780.788 - 0.464ms returns FALSE
-T54E4 000:780.801 JLINK_HasError()
-T54E4 000:782.619 JLINK_IsHalted()
-T54E4 000:783.268 - 0.653ms returns FALSE
-T54E4 000:783.279 JLINK_HasError()
-T54E4 000:784.927 JLINK_IsHalted()
-T54E4 000:785.576 - 0.654ms returns FALSE
-T54E4 000:785.587 JLINK_HasError()
-T54E4 000:787.462 JLINK_IsHalted()
-T54E4 000:788.163 - 0.706ms returns FALSE
-T54E4 000:788.174 JLINK_HasError()
-T54E4 000:789.720 JLINK_IsHalted()
-T54E4 000:790.236 - 0.522ms returns FALSE
-T54E4 000:790.249 JLINK_HasError()
-T54E4 000:791.717 JLINK_IsHalted()
-T54E4 000:792.164 - 0.452ms returns FALSE
-T54E4 000:792.175 JLINK_HasError()
-T54E4 000:794.017 JLINK_IsHalted()
-T54E4 000:794.460 - 0.447ms returns FALSE
-T54E4 000:794.471 JLINK_HasError()
-T54E4 000:796.213 JLINK_IsHalted()
-T54E4 000:796.809 - 0.601ms returns FALSE
-T54E4 000:796.820 JLINK_HasError()
-T54E4 000:798.288 JLINK_IsHalted()
-T54E4 000:798.695 - 0.412ms returns FALSE
-T54E4 000:798.706 JLINK_HasError()
-T54E4 000:800.434 JLINK_IsHalted()
-T54E4 000:800.949 - 0.522ms returns FALSE
-T54E4 000:800.963 JLINK_HasError()
-T54E4 000:802.773 JLINK_IsHalted()
-T54E4 000:803.242 - 0.473ms returns FALSE
-T54E4 000:803.252 JLINK_HasError()
-T54E4 000:804.774 JLINK_IsHalted()
-T54E4 000:805.218 - 0.449ms returns FALSE
-T54E4 000:805.230 JLINK_HasError()
-T54E4 000:806.774 JLINK_IsHalted()
-T54E4 000:807.217 - 0.448ms returns FALSE
-T54E4 000:807.228 JLINK_HasError()
-T54E4 000:808.769 JLINK_IsHalted()
-T54E4 000:809.211 - 0.448ms returns FALSE
-T54E4 000:809.223 JLINK_HasError()
-T54E4 000:810.773 JLINK_IsHalted()
-T54E4 000:811.349 - 0.582ms returns FALSE
-T54E4 000:811.361 JLINK_HasError()
-T54E4 000:812.931 JLINK_IsHalted()
-T54E4 000:813.583 - 0.662ms returns FALSE
-T54E4 000:813.600 JLINK_HasError()
-T54E4 000:815.009 JLINK_IsHalted()
-T54E4 000:815.675 - 0.671ms returns FALSE
-T54E4 000:815.687 JLINK_HasError()
-T54E4 000:817.008 JLINK_IsHalted()
-T54E4 000:817.619 - 0.616ms returns FALSE
-T54E4 000:817.631 JLINK_HasError()
-T54E4 000:819.043 JLINK_IsHalted()
-T54E4 000:819.747 - 0.708ms returns FALSE
-T54E4 000:819.758 JLINK_HasError()
-T54E4 000:821.281 JLINK_IsHalted()
-T54E4 000:821.805 - 0.530ms returns FALSE
-T54E4 000:821.818 JLINK_HasError()
-T54E4 000:823.593 JLINK_IsHalted()
-T54E4 000:824.191 - 0.604ms returns FALSE
-T54E4 000:824.203 JLINK_HasError()
-T54E4 000:825.661 JLINK_IsHalted()
-T54E4 000:826.242 - 0.586ms returns FALSE
-T54E4 000:826.253 JLINK_HasError()
-T54E4 000:828.223 JLINK_IsHalted()
-T54E4 000:828.885 - 0.672ms returns FALSE
-T54E4 000:828.902 JLINK_HasError()
-T54E4 000:830.680 JLINK_IsHalted()
-T54E4 000:831.254 - 0.580ms returns FALSE
-T54E4 000:831.267 JLINK_HasError()
-T54E4 000:833.682 JLINK_IsHalted()
-T54E4 000:834.397 - 0.725ms returns FALSE
-T54E4 000:834.415 JLINK_HasError()
-T54E4 000:836.020 JLINK_IsHalted()
-T54E4 000:836.436 - 0.421ms returns FALSE
-T54E4 000:836.447 JLINK_HasError()
-T54E4 000:838.072 JLINK_IsHalted()
-T54E4 000:838.462 - 0.396ms returns FALSE
-T54E4 000:838.475 JLINK_HasError()
-T54E4 000:840.338 JLINK_IsHalted()
-T54E4 000:840.745 - 0.412ms returns FALSE
-T54E4 000:840.756 JLINK_HasError()
-T54E4 000:842.364 JLINK_IsHalted()
-T54E4 000:842.884 - 0.525ms returns FALSE
-T54E4 000:842.900 JLINK_HasError()
-T54E4 000:844.337 JLINK_IsHalted()
-T54E4 000:844.991 - 0.660ms returns FALSE
-T54E4 000:845.003 JLINK_HasError()
-T54E4 000:846.338 JLINK_IsHalted()
-T54E4 000:846.868 - 0.536ms returns FALSE
-T54E4 000:846.881 JLINK_HasError()
-T54E4 000:848.334 JLINK_IsHalted()
-T54E4 000:848.935 - 0.606ms returns FALSE
-T54E4 000:848.947 JLINK_HasError()
-T54E4 000:850.336 JLINK_IsHalted()
-T54E4 000:850.801 - 0.470ms returns FALSE
-T54E4 000:850.812 JLINK_HasError()
-T54E4 000:852.336 JLINK_IsHalted()
-T54E4 000:852.813 - 0.482ms returns FALSE
-T54E4 000:852.825 JLINK_HasError()
-T54E4 000:854.334 JLINK_IsHalted()
-T54E4 000:854.806 - 0.477ms returns FALSE
-T54E4 000:854.817 JLINK_HasError()
-T54E4 000:856.339 JLINK_IsHalted()
-T54E4 000:856.917 - 0.584ms returns FALSE
-T54E4 000:856.930 JLINK_HasError()
-T54E4 000:858.336 JLINK_IsHalted()
-T54E4 000:858.790 - 0.459ms returns FALSE
-T54E4 000:858.801 JLINK_HasError()
-T54E4 000:860.337 JLINK_IsHalted()
-T54E4 000:860.802 - 0.471ms returns FALSE
-T54E4 000:860.822 JLINK_HasError()
-T54E4 000:862.335 JLINK_IsHalted()
-T54E4 000:862.962 - 0.634ms returns FALSE
-T54E4 000:862.977 JLINK_HasError()
-T54E4 000:864.339 JLINK_IsHalted()
-T54E4 000:864.866 - 0.536ms returns FALSE
-T54E4 000:864.881 JLINK_HasError()
-T54E4 000:866.377 JLINK_IsHalted()
-T54E4 000:866.966 - 0.595ms returns FALSE
-T54E4 000:866.979 JLINK_HasError()
-T54E4 000:868.620 JLINK_IsHalted()
-T54E4 000:869.167 - 0.552ms returns FALSE
-T54E4 000:869.179 JLINK_HasError()
-T54E4 000:870.873 JLINK_IsHalted()
-T54E4 000:871.436 - 0.569ms returns FALSE
-T54E4 000:871.448 JLINK_HasError()
-T54E4 000:873.153 JLINK_IsHalted()
-T54E4 000:873.609 - 0.462ms returns FALSE
-T54E4 000:873.621 JLINK_HasError()
-T54E4 000:875.439 JLINK_IsHalted()
-T54E4 000:875.842 - 0.409ms returns FALSE
-T54E4 000:875.854 JLINK_HasError()
-T54E4 000:877.496 JLINK_IsHalted()
-T54E4 000:878.005 - 0.514ms returns FALSE
-T54E4 000:878.017 JLINK_HasError()
-T54E4 000:879.754 JLINK_IsHalted()
-T54E4 000:880.133 - 0.390ms returns FALSE
-T54E4 000:880.152 JLINK_HasError()
-T54E4 000:882.044 JLINK_IsHalted()
-T54E4 000:882.546 - 0.508ms returns FALSE
-T54E4 000:882.558 JLINK_HasError()
-T54E4 000:884.383 JLINK_IsHalted()
-T54E4 000:884.761 - 0.383ms returns FALSE
-T54E4 000:884.772 JLINK_HasError()
-T54E4 000:886.675 JLINK_IsHalted()
-T54E4 000:887.257 - 0.588ms returns FALSE
-T54E4 000:887.269 JLINK_HasError()
-T54E4 000:888.926 JLINK_IsHalted()
-T54E4 000:889.490 - 0.573ms returns FALSE
-T54E4 000:889.507 JLINK_HasError()
-T54E4 000:891.227 JLINK_IsHalted()
-T54E4 000:891.641 - 0.421ms returns FALSE
-T54E4 000:891.655 JLINK_HasError()
-T54E4 000:894.023 JLINK_IsHalted()
-T54E4 000:894.736 - 0.721ms returns FALSE
-T54E4 000:894.751 JLINK_HasError()
-T54E4 000:896.319 JLINK_IsHalted()
-T54E4 000:896.850 - 0.540ms returns FALSE
-T54E4 000:896.866 JLINK_HasError()
-T54E4 000:898.597 JLINK_IsHalted()
-T54E4 000:899.145 - 0.553ms returns FALSE
-T54E4 000:899.157 JLINK_HasError()
-T54E4 000:900.593 JLINK_IsHalted()
-T54E4 000:901.195 - 0.608ms returns FALSE
-T54E4 000:901.207 JLINK_HasError()
-T54E4 000:902.594 JLINK_IsHalted()
-T54E4 000:902.963 - 0.374ms returns FALSE
-T54E4 000:902.975 JLINK_HasError()
-T54E4 000:904.595 JLINK_IsHalted()
-T54E4 000:905.327 - 0.738ms returns FALSE
-T54E4 000:905.338 JLINK_HasError()
-T54E4 000:906.606 JLINK_IsHalted()
-T54E4 000:907.054 - 0.452ms returns FALSE
-T54E4 000:907.064 JLINK_HasError()
-T54E4 000:908.594 JLINK_IsHalted()
-T54E4 000:909.167 - 0.578ms returns FALSE
-T54E4 000:909.178 JLINK_HasError()
-T54E4 000:910.594 JLINK_IsHalted()
-T54E4 000:911.219 - 0.630ms returns FALSE
-T54E4 000:911.230 JLINK_HasError()
-T54E4 000:912.597 JLINK_IsHalted()
-T54E4 000:913.011 - 0.420ms returns FALSE
-T54E4 000:913.022 JLINK_HasError()
-T54E4 000:914.631 JLINK_IsHalted()
-T54E4 000:915.049 - 0.423ms returns FALSE
-T54E4 000:915.060 JLINK_HasError()
-T54E4 000:916.629 JLINK_IsHalted()
-T54E4 000:917.233 - 0.609ms returns FALSE
-T54E4 000:917.244 JLINK_HasError()
-T54E4 000:918.876 JLINK_IsHalted()
-T54E4 000:919.436 - 0.568ms returns FALSE
-T54E4 000:919.450 JLINK_HasError()
-T54E4 000:920.875 JLINK_IsHalted()
-T54E4 000:921.571 - 0.701ms returns FALSE
-T54E4 000:921.582 JLINK_HasError()
-T54E4 000:922.874 JLINK_IsHalted()
-T54E4 000:923.513 - 0.645ms returns FALSE
-T54E4 000:923.526 JLINK_HasError()
-T54E4 000:924.913 JLINK_IsHalted()
-T54E4 000:925.548 - 0.641ms returns FALSE
-T54E4 000:925.561 JLINK_HasError()
-T54E4 000:927.214 JLINK_IsHalted()
-T54E4 000:927.636 - 0.432ms returns FALSE
-T54E4 000:927.654 JLINK_HasError()
-T54E4 000:929.219 JLINK_IsHalted()
-T54E4 000:929.955 - 0.742ms returns FALSE
-T54E4 000:929.966 JLINK_HasError()
-T54E4 000:931.542 JLINK_IsHalted()
-T54E4 000:931.961 - 0.430ms returns FALSE
-T54E4 000:931.980 JLINK_HasError()
-T54E4 000:933.837 JLINK_IsHalted()
-T54E4 000:934.393 - 0.563ms returns FALSE
-T54E4 000:934.407 JLINK_HasError()
-T54E4 000:936.684 JLINK_IsHalted()
-T54E4 000:937.254 - 0.575ms returns FALSE
-T54E4 000:937.265 JLINK_HasError()
-T54E4 000:938.641 JLINK_IsHalted()
-T54E4 000:939.169 - 0.533ms returns FALSE
-T54E4 000:939.180 JLINK_HasError()
-T54E4 000:940.864 JLINK_IsHalted()
-T54E4 000:941.422 - 0.567ms returns FALSE
-T54E4 000:941.439 JLINK_HasError()
-T54E4 000:944.377 JLINK_IsHalted()
-T54E4 000:944.811 - 0.440ms returns FALSE
-T54E4 000:944.823 JLINK_HasError()
-T54E4 000:945.878 JLINK_IsHalted()
-T54E4 000:946.265 - 0.392ms returns FALSE
-T54E4 000:946.277 JLINK_HasError()
-T54E4 000:947.356 JLINK_IsHalted()
-T54E4 000:947.752 - 0.400ms returns FALSE
-T54E4 000:947.762 JLINK_HasError()
-T54E4 000:949.357 JLINK_IsHalted()
-T54E4 000:949.922 - 0.571ms returns FALSE
-T54E4 000:949.934 JLINK_HasError()
-T54E4 000:951.397 JLINK_IsHalted()
-T54E4 000:951.889 - 0.499ms returns FALSE
-T54E4 000:951.902 JLINK_HasError()
-T54E4 000:953.677 JLINK_IsHalted()
-T54E4 000:954.331 - 0.660ms returns FALSE
-T54E4 000:954.343 JLINK_HasError()
-T54E4 000:955.941 JLINK_IsHalted()
-T54E4 000:956.482 - 0.549ms returns FALSE
-T54E4 000:956.497 JLINK_HasError()
-T54E4 000:958.391 JLINK_IsHalted()
-T54E4 000:958.870 - 0.488ms returns FALSE
-T54E4 000:958.887 JLINK_HasError()
-T54E4 000:960.660 JLINK_IsHalted()
-T54E4 000:961.072 - 0.418ms returns FALSE
-T54E4 000:961.084 JLINK_HasError()
-T54E4 000:963.181 JLINK_IsHalted()
-T54E4 000:963.669 - 0.497ms returns FALSE
-T54E4 000:963.684 JLINK_HasError()
-T54E4 000:965.496 JLINK_IsHalted()
-T54E4 000:965.999 - 0.508ms returns FALSE
-T54E4 000:966.011 JLINK_HasError()
-T54E4 000:967.556 JLINK_IsHalted()
-T54E4 000:968.044 - 0.493ms returns FALSE
-T54E4 000:968.055 JLINK_HasError()
-T54E4 000:969.554 JLINK_IsHalted()
-T54E4 000:970.102 - 0.553ms returns FALSE
-T54E4 000:970.113 JLINK_HasError()
-T54E4 000:971.551 JLINK_IsHalted()
-T54E4 000:971.938 - 0.392ms returns FALSE
-T54E4 000:971.949 JLINK_HasError()
-T54E4 000:973.554 JLINK_IsHalted()
-T54E4 000:973.988 - 0.438ms returns FALSE
-T54E4 000:973.999 JLINK_HasError()
-T54E4 000:975.554 JLINK_IsHalted()
-T54E4 000:976.147 - 0.599ms returns FALSE
-T54E4 000:976.159 JLINK_HasError()
-T54E4 000:977.552 JLINK_IsHalted()
-T54E4 000:978.092 - 0.545ms returns FALSE
-T54E4 000:978.103 JLINK_HasError()
-T54E4 000:980.957 JLINK_IsHalted()
-T54E4 000:981.463 - 0.512ms returns FALSE
-T54E4 000:981.475 JLINK_HasError()
-T54E4 000:982.954 JLINK_IsHalted()
-T54E4 000:983.517 - 0.568ms returns FALSE
-T54E4 000:983.528 JLINK_HasError()
-T54E4 000:984.959 JLINK_IsHalted()
-T54E4 000:985.571 - 0.617ms returns FALSE
-T54E4 000:985.583 JLINK_HasError()
-T54E4 000:987.016 JLINK_IsHalted()
-T54E4 000:987.547 - 0.537ms returns FALSE
-T54E4 000:987.565 JLINK_HasError()
-T54E4 000:989.164 JLINK_IsHalted()
-T54E4 000:989.826 - 0.670ms returns FALSE
-T54E4 000:989.840 JLINK_HasError()
-T54E4 000:991.469 JLINK_IsHalted()
-T54E4 000:991.867 - 0.403ms returns FALSE
-T54E4 000:991.879 JLINK_HasError()
-T54E4 000:994.228 JLINK_IsHalted()
-T54E4 000:994.607 - 0.385ms returns FALSE
-T54E4 000:994.619 JLINK_HasError()
-T54E4 000:996.523 JLINK_IsHalted()
-T54E4 000:996.916 - 0.401ms returns FALSE
-T54E4 000:996.931 JLINK_HasError()
-T54E4 000:998.786 JLINK_IsHalted()
-T54E4 000:999.363 - 0.583ms returns FALSE
-T54E4 000:999.375 JLINK_HasError()
-T54E4 001:001.091 JLINK_IsHalted()
-T54E4 001:001.727 - 0.641ms returns FALSE
-T54E4 001:001.739 JLINK_HasError()
-T54E4 001:003.400 JLINK_IsHalted()
-T54E4 001:003.828 - 0.439ms returns FALSE
-T54E4 001:003.849 JLINK_HasError()
-T54E4 001:005.459 JLINK_IsHalted()
-T54E4 001:005.928 - 0.478ms returns FALSE
-T54E4 001:005.945 JLINK_HasError()
-T54E4 001:007.522 JLINK_IsHalted()
-T54E4 001:008.111 - 0.595ms returns FALSE
-T54E4 001:008.124 JLINK_HasError()
-T54E4 001:009.517 JLINK_IsHalted()
-T54E4 001:009.915 - 0.404ms returns FALSE
-T54E4 001:009.927 JLINK_HasError()
-T54E4 001:011.515 JLINK_IsHalted()
-T54E4 001:012.116 - 0.606ms returns FALSE
-T54E4 001:012.128 JLINK_HasError()
-T54E4 001:013.523 JLINK_IsHalted()
-T54E4 001:014.150 - 0.633ms returns FALSE
-T54E4 001:014.163 JLINK_HasError()
-T54E4 001:015.516 JLINK_IsHalted()
-T54E4 001:016.091 - 0.581ms returns FALSE
-T54E4 001:016.103 JLINK_HasError()
-T54E4 001:017.517 JLINK_IsHalted()
-T54E4 001:018.052 - 0.541ms returns FALSE
-T54E4 001:018.064 JLINK_HasError()
-T54E4 001:019.522 JLINK_IsHalted()
-T54E4 001:020.151 - 0.636ms returns FALSE
-T54E4 001:020.165 JLINK_HasError()
-T54E4 001:021.531 JLINK_IsHalted()
-T54E4 001:022.070 - 0.546ms returns FALSE
-T54E4 001:022.084 JLINK_HasError()
-T54E4 001:023.749 JLINK_IsHalted()
-T54E4 001:024.130 - 0.386ms returns FALSE
-T54E4 001:024.141 JLINK_HasError()
-T54E4 001:025.752 JLINK_IsHalted()
-T54E4 001:026.328 - 0.581ms returns FALSE
-T54E4 001:026.339 JLINK_HasError()
-T54E4 001:027.747 JLINK_IsHalted()
-T54E4 001:028.330 - 0.588ms returns FALSE
-T54E4 001:028.342 JLINK_HasError()
-T54E4 001:029.752 JLINK_IsHalted()
-T54E4 001:030.423 - 0.679ms returns FALSE
-T54E4 001:030.438 JLINK_HasError()
-T54E4 001:031.753 JLINK_IsHalted()
-T54E4 001:032.274 - 0.526ms returns FALSE
-T54E4 001:032.285 JLINK_HasError()
-T54E4 001:033.751 JLINK_IsHalted()
-T54E4 001:034.186 - 0.440ms returns FALSE
-T54E4 001:034.198 JLINK_HasError()
-T54E4 001:036.266 JLINK_IsHalted()
-T54E4 001:036.894 - 0.633ms returns FALSE
-T54E4 001:036.906 JLINK_HasError()
-T54E4 001:038.321 JLINK_IsHalted()
-T54E4 001:038.922 - 0.606ms returns FALSE
-T54E4 001:038.942 JLINK_HasError()
-T54E4 001:040.321 JLINK_IsHalted()
-T54E4 001:040.800 - 0.490ms returns FALSE
-T54E4 001:040.819 JLINK_HasError()
-T54E4 001:042.586 JLINK_IsHalted()
-T54E4 001:043.212 - 0.636ms returns FALSE
-T54E4 001:043.230 JLINK_HasError()
-T54E4 001:044.910 JLINK_IsHalted()
-T54E4 001:045.376 - 0.472ms returns FALSE
-T54E4 001:045.389 JLINK_HasError()
-T54E4 001:047.238 JLINK_IsHalted()
-T54E4 001:047.705 - 0.473ms returns FALSE
-T54E4 001:047.718 JLINK_HasError()
-T54E4 001:049.223 JLINK_IsHalted()
-T54E4 001:049.766 - 0.551ms returns FALSE
-T54E4 001:049.781 JLINK_HasError()
-T54E4 001:053.247 JLINK_IsHalted()
-T54E4 001:055.126 CPU_ReadMem(2 bytes @ 0x20000000)
-T54E4 001:055.477 - 2.240ms returns TRUE
-T54E4 001:055.495 JLINK_ReadReg(R15 (PC))
-T54E4 001:055.505 - 0.012ms returns 0x20000000
-T54E4 001:055.512 JLINK_ClrBPEx(BPHandle = 0x00000008)
-T54E4 001:055.519 - 0.009ms returns 0x00
-T54E4 001:055.527 JLINK_ReadReg(R0)
-T54E4 001:055.533 - 0.009ms returns 0x00000000
-T54E4 001:056.369 JLINK_WriteMem(0x200000F4, 0x30C Bytes, ...)
-T54E4 001:056.380 Data: 00 00 00 00 00 00 F0 3F 00 00 00 00 00 00 F8 3F ...
-T54E4 001:056.392 CPU_WriteMem(780 bytes @ 0x200000F4)
-T54E4 001:058.965 - 2.602ms returns 0x30C
-T54E4 001:058.977 JLINK_WriteMem(0x20000400, 0x400 Bytes, ...)
-T54E4 001:058.983 Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...
-T54E4 001:058.995 CPU_WriteMem(1024 bytes @ 0x20000400)
-T54E4 001:062.188 - 3.218ms returns 0x400
-T54E4 001:062.202 JLINK_WriteMem(0x20000800, 0x400 Bytes, ...)
-T54E4 001:062.208 Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...
-T54E4 001:062.221 CPU_WriteMem(1024 bytes @ 0x20000800)
-T54E4 001:065.429 - 3.234ms returns 0x400
-T54E4 001:065.453 JLINK_WriteMem(0x20000C00, 0x400 Bytes, ...)
-T54E4 001:065.463 Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...
-T54E4 001:065.476 CPU_WriteMem(1024 bytes @ 0x20000C00)
-T54E4 001:068.709 - 3.262ms returns 0x400
-T54E4 001:068.728 JLINK_WriteMem(0x20001000, 0xF4 Bytes, ...)
-T54E4 001:068.734 Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ...
-T54E4 001:068.746 CPU_WriteMem(244 bytes @ 0x20001000)
-T54E4 001:069.758 - 1.034ms returns 0xF4
-T54E4 001:069.780 JLINK_HasError()
-T54E4 001:069.828 JLINK_WriteReg(R0, 0x10002000)
-T54E4 001:069.838 - 0.012ms returns 0
-T54E4 001:069.845 JLINK_WriteReg(R1, 0x00000134)
-T54E4 001:069.851 - 0.008ms returns 0
-T54E4 001:069.857 JLINK_WriteReg(R2, 0x200000F4)
-T54E4 001:069.863 - 0.008ms returns 0
-T54E4 001:069.869 JLINK_WriteReg(R3, 0x00000000)
-T54E4 001:069.875 - 0.008ms returns 0
-T54E4 001:069.882 JLINK_WriteReg(R4, 0x00000000)
-T54E4 001:069.888 - 0.008ms returns 0
-T54E4 001:069.894 JLINK_WriteReg(R5, 0x00000000)
-T54E4 001:069.900 - 0.008ms returns 0
-T54E4 001:069.906 JLINK_WriteReg(R6, 0x00000000)
-T54E4 001:069.912 - 0.008ms returns 0
-T54E4 001:069.918 JLINK_WriteReg(R7, 0x00000000)
-T54E4 001:069.923 - 0.008ms returns 0
-T54E4 001:069.930 JLINK_WriteReg(R8, 0x00000000)
-T54E4 001:069.935 - 0.008ms returns 0
-T54E4 001:069.942 JLINK_WriteReg(R9, 0x200000EC)
-T54E4 001:069.947 - 0.008ms returns 0
-T54E4 001:069.954 JLINK_WriteReg(R10, 0x00000000)
-T54E4 001:069.959 - 0.008ms returns 0
-T54E4 001:069.966 JLINK_WriteReg(R11, 0x00000000)
-T54E4 001:069.971 - 0.008ms returns 0
-T54E4 001:069.977 JLINK_WriteReg(R12, 0x00000000)
-T54E4 001:069.983 - 0.008ms returns 0
-T54E4 001:069.989 JLINK_WriteReg(R13 (SP), 0x20002000)
-T54E4 001:069.995 - 0.008ms returns 0
-T54E4 001:070.002 JLINK_WriteReg(R14, 0x20000001)
-T54E4 001:070.007 - 0.008ms returns 0
-T54E4 001:070.014 JLINK_WriteReg(R15 (PC), 0x200000B8)
-T54E4 001:070.019 - 0.008ms returns 0
-T54E4 001:070.026 JLINK_WriteReg(XPSR, 0x01000000)
-T54E4 001:070.032 - 0.008ms returns 0
-T54E4 001:070.038 JLINK_WriteReg(MSP, 0x20002000)
-T54E4 001:070.044 - 0.008ms returns 0
-T54E4 001:070.050 JLINK_WriteReg(PSP, 0x20002000)
-T54E4 001:070.056 - 0.008ms returns 0
-T54E4 001:070.062 JLINK_WriteReg(CFBP, 0x00000000)
-T54E4 001:070.068 - 0.008ms returns 0
-T54E4 001:070.075 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2)
-T54E4 001:070.081 - 0.009ms returns 0x00000009
-T54E4 001:070.088 JLINK_Go()
-T54E4 001:070.099 CPU_ReadMem(4 bytes @ 0xE0001000)
-T54E4 001:072.146 - 2.063ms
-T54E4 001:072.156 JLINK_IsHalted()
-T54E4 001:072.613 - 0.461ms returns FALSE
-T54E4 001:072.623 JLINK_HasError()
-T54E4 001:075.046 JLINK_IsHalted()
-T54E4 001:075.591 - 0.552ms returns FALSE
-T54E4 001:075.605 JLINK_HasError()
-T54E4 001:077.048 JLINK_IsHalted()
-T54E4 001:077.453 - 0.410ms returns FALSE
-T54E4 001:077.464 JLINK_HasError()
-T54E4 001:079.048 JLINK_IsHalted()
-T54E4 001:079.543 - 0.499ms returns FALSE
-T54E4 001:079.553 JLINK_HasError()
-T54E4 001:081.046 JLINK_IsHalted()
-T54E4 001:081.627 - 0.587ms returns FALSE
-T54E4 001:081.639 JLINK_HasError()
-T54E4 001:083.048 JLINK_IsHalted()
-T54E4 001:083.605 - 0.562ms returns FALSE
-T54E4 001:083.616 JLINK_HasError()
-T54E4 001:085.553 JLINK_IsHalted()
-T54E4 001:085.915 - 0.367ms returns FALSE
-T54E4 001:085.926 JLINK_HasError()
-T54E4 001:087.558 JLINK_IsHalted()
-T54E4 001:087.916 - 0.363ms returns FALSE
-T54E4 001:087.927 JLINK_HasError()
-T54E4 001:089.553 JLINK_IsHalted()
-T54E4 001:089.988 - 0.441ms returns FALSE
-T54E4 001:090.000 JLINK_HasError()
-T54E4 001:092.455 JLINK_IsHalted()
-T54E4 001:093.244 - 0.794ms returns FALSE
-T54E4 001:093.256 JLINK_HasError()
-T54E4 001:094.500 JLINK_IsHalted()
-T54E4 001:094.923 - 0.429ms returns FALSE
-T54E4 001:094.942 JLINK_HasError()
-T54E4 001:097.187 JLINK_IsHalted()
-T54E4 001:097.728 - 0.545ms returns FALSE
-T54E4 001:097.737 JLINK_HasError()
-T54E4 001:099.191 JLINK_IsHalted()
-T54E4 001:099.693 - 0.508ms returns FALSE
-T54E4 001:099.705 JLINK_HasError()
-T54E4 001:101.185 JLINK_IsHalted()
-T54E4 001:103.028 CPU_ReadMem(2 bytes @ 0x20000000)
-T54E4 001:103.420 - 2.245ms returns TRUE
-T54E4 001:103.439 JLINK_ReadReg(R15 (PC))
-T54E4 001:103.448 - 0.011ms returns 0x20000000
-T54E4 001:103.455 JLINK_ClrBPEx(BPHandle = 0x00000009)
-T54E4 001:103.462 - 0.009ms returns 0x00
-T54E4 001:103.469 JLINK_ReadReg(R0)
-T54E4 001:103.476 - 0.009ms returns 0x00000000
-T54E4 001:103.483 JLINK_HasError()
-T54E4 001:103.491 JLINK_WriteReg(R0, 0x00000002)
-T54E4 001:103.497 - 0.009ms returns 0
-T54E4 001:103.504 JLINK_WriteReg(R1, 0x00000134)
-T54E4 001:103.510 - 0.008ms returns 0
-T54E4 001:103.517 JLINK_WriteReg(R2, 0x200000F4)
-T54E4 001:103.523 - 0.008ms returns 0
-T54E4 001:103.530 JLINK_WriteReg(R3, 0x00000000)
-T54E4 001:103.536 - 0.008ms returns 0
-T54E4 001:103.543 JLINK_WriteReg(R4, 0x00000000)
-T54E4 001:103.549 - 0.008ms returns 0
-T54E4 001:103.556 JLINK_WriteReg(R5, 0x00000000)
-T54E4 001:103.562 - 0.008ms returns 0
-T54E4 001:103.569 JLINK_WriteReg(R6, 0x00000000)
-T54E4 001:103.575 - 0.008ms returns 0
-T54E4 001:103.582 JLINK_WriteReg(R7, 0x00000000)
-T54E4 001:103.588 - 0.008ms returns 0
-T54E4 001:103.595 JLINK_WriteReg(R8, 0x00000000)
-T54E4 001:103.601 - 0.008ms returns 0
-T54E4 001:103.608 JLINK_WriteReg(R9, 0x200000EC)
-T54E4 001:103.614 - 0.008ms returns 0
-T54E4 001:103.621 JLINK_WriteReg(R10, 0x00000000)
-T54E4 001:103.627 - 0.008ms returns 0
-T54E4 001:103.634 JLINK_WriteReg(R11, 0x00000000)
-T54E4 001:103.640 - 0.009ms returns 0
-T54E4 001:103.647 JLINK_WriteReg(R12, 0x00000000)
-T54E4 001:103.653 - 0.008ms returns 0
-T54E4 001:103.660 JLINK_WriteReg(R13 (SP), 0x20002000)
-T54E4 001:103.666 - 0.009ms returns 0
-T54E4 001:103.673 JLINK_WriteReg(R14, 0x20000001)
-T54E4 001:103.679 - 0.009ms returns 0
-T54E4 001:103.686 JLINK_WriteReg(R15 (PC), 0x2000006E)
-T54E4 001:103.692 - 0.008ms returns 0
-T54E4 001:103.699 JLINK_WriteReg(XPSR, 0x01000000)
-T54E4 001:103.705 - 0.009ms returns 0
-T54E4 001:103.712 JLINK_WriteReg(MSP, 0x20002000)
-T54E4 001:103.718 - 0.008ms returns 0
-T54E4 001:103.725 JLINK_WriteReg(PSP, 0x20002000)
-T54E4 001:103.731 - 0.008ms returns 0
-T54E4 001:103.738 JLINK_WriteReg(CFBP, 0x00000000)
-T54E4 001:103.744 - 0.009ms returns 0
-T54E4 001:103.752 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2)
-T54E4 001:103.758 - 0.009ms returns 0x0000000A
-T54E4 001:103.766 JLINK_Go()
-T54E4 001:103.776 CPU_ReadMem(4 bytes @ 0xE0001000)
-T54E4 001:105.891 - 2.132ms
-T54E4 001:105.904 JLINK_IsHalted()
-T54E4 001:107.778 CPU_ReadMem(2 bytes @ 0x20000000)
-T54E4 001:108.128 - 2.229ms returns TRUE
-T54E4 001:108.139 JLINK_ReadReg(R15 (PC))
-T54E4 001:108.146 - 0.010ms returns 0x20000000
-T54E4 001:108.154 JLINK_ClrBPEx(BPHandle = 0x0000000A)
-T54E4 001:108.160 - 0.009ms returns 0x00
-T54E4 001:108.167 JLINK_ReadReg(R0)
-T54E4 001:108.174 - 0.009ms returns 0x00000000
-T54E4 001:167.357 JLINK_WriteMem(0x20000000, 0xF4 Bytes, ...)
-T54E4 001:167.372 Data: 00 BE 0A E0 0D 78 2D 06 68 40 08 24 40 00 00 D3 ...
-T54E4 001:167.394 CPU_WriteMem(244 bytes @ 0x20000000)
-T54E4 001:167.891 - 0.547ms returns 0xFFFFFFFF
-T54E4 001:167.937 JLINK_HasError()
-T54E4 001:167.949 JLINK_WriteReg(R0, 0x10000000)
-T54E4 001:167.959 - 0.013ms returns 0
-T54E4 001:167.967 JLINK_WriteReg(R1, 0x00B71B00)
-T54E4 001:167.976 - 0.011ms returns 0
-T54E4 001:167.983 JLINK_WriteReg(R2, 0x00000003)
-T54E4 001:167.990 - 0.009ms returns 0
-T54E4 001:167.998 JLINK_WriteReg(R3, 0x00000000)
-T54E4 001:168.004 - 0.009ms returns 0
-T54E4 001:168.012 JLINK_WriteReg(R4, 0x00000000)
-T54E4 001:168.019 - 0.009ms returns 0
-T54E4 001:168.026 JLINK_WriteReg(R5, 0x00000000)
-T54E4 001:168.033 - 0.009ms returns 0
-T54E4 001:168.040 JLINK_WriteReg(R6, 0x00000000)
-T54E4 001:168.047 - 0.009ms returns 0
-T54E4 001:168.054 JLINK_WriteReg(R7, 0x00000000)
-T54E4 001:168.061 - 0.009ms returns 0
-T54E4 001:168.068 JLINK_WriteReg(R8, 0x00000000)
-T54E4 001:168.075 - 0.009ms returns 0
-T54E4 001:168.082 JLINK_WriteReg(R9, 0x200000EC)
-T54E4 001:168.089 - 0.009ms returns 0
-T54E4 001:168.096 JLINK_WriteReg(R10, 0x00000000)
-T54E4 001:168.103 - 0.009ms returns 0
-T54E4 001:168.111 JLINK_WriteReg(R11, 0x00000000)
-T54E4 001:168.122 - 0.017ms returns 0
-T54E4 001:168.133 JLINK_WriteReg(R12, 0x00000000)
-T54E4 001:168.139 - 0.009ms returns 0
-T54E4 001:168.147 JLINK_WriteReg(R13 (SP), 0x20002000)
-T54E4 001:168.154 - 0.010ms returns 0
-T54E4 001:168.162 JLINK_WriteReg(R14, 0x20000001)
-T54E4 001:168.169 - 0.009ms returns 0
-T54E4 001:168.176 JLINK_WriteReg(R15 (PC), 0x20000044)
-T54E4 001:168.183 - 0.009ms returns 0
-T54E4 001:168.191 JLINK_WriteReg(XPSR, 0x01000000)
-T54E4 001:168.197 - 0.009ms returns 0
-T54E4 001:168.205 JLINK_WriteReg(MSP, 0x20002000)
-T54E4 001:168.211 - 0.009ms returns 0
-T54E4 001:168.219 JLINK_WriteReg(PSP, 0x20002000)
-T54E4 001:168.225 - 0.009ms returns 0
-T54E4 001:168.233 JLINK_WriteReg(CFBP, 0x00000000)
-T54E4 001:168.239 - 0.009ms returns 0
-T54E4 001:168.247 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2)
-T54E4 001:168.258 CPU_ReadMem(4 bytes @ 0x20000000)
-T54E4 001:168.676 CPU_WriteMem(4 bytes @ 0x20000000)
-T54E4 001:169.080 CPU_ReadMem(4 bytes @ 0x20000000)
-T54E4 001:169.472 CPU_WriteMem(4 bytes @ 0x20000000)
-T54E4 001:169.856 CPU_ReadMem(2 bytes @ 0x20000000)
-T54E4 001:170.220 - 1.977ms returns 0x0000000B
-T54E4 001:170.230 JLINK_Go()
-T54E4 001:170.239 CPU_WriteMem(2 bytes @ 0x20000000)
-T54E4 001:170.623 CPU_ReadMem(4 bytes @ 0xE0001000)
-T54E4 001:172.645 - 2.422ms
-T54E4 001:172.668 JLINK_IsHalted()
-T54E4 001:174.534 CPU_ReadMem(2 bytes @ 0x20000000)
-T54E4 001:174.919 - 2.260ms returns TRUE
-T54E4 001:174.942 JLINK_ReadReg(R15 (PC))
-T54E4 001:174.951 - 0.011ms returns 0x20000000
-T54E4 001:174.960 JLINK_ClrBPEx(BPHandle = 0x0000000B)
-T54E4 001:174.966 - 0.008ms returns 0x00
-T54E4 001:174.975 JLINK_ReadReg(R0)
-T54E4 001:174.981 - 0.008ms returns 0x00000000
-T54E4 001:174.990 JLINK_HasError()
-T54E4 001:174.996 JLINK_WriteReg(R0, 0xFFFFFFFF)
-T54E4 001:175.002 - 0.008ms returns 0
-T54E4 001:175.011 JLINK_WriteReg(R1, 0x10000000)
-T54E4 001:175.016 - 0.008ms returns 0
-T54E4 001:175.025 JLINK_WriteReg(R2, 0x00002134)
-T54E4 001:175.030 - 0.007ms returns 0
-T54E4 001:175.039 JLINK_WriteReg(R3, 0x04C11DB7)
-T54E4 001:175.044 - 0.007ms returns 0
-T54E4 001:175.053 JLINK_WriteReg(R4, 0x00000000)
-T54E4 001:175.058 - 0.008ms returns 0
-T54E4 001:175.067 JLINK_WriteReg(R5, 0x00000000)
-T54E4 001:175.072 - 0.008ms returns 0
-T54E4 001:175.081 JLINK_WriteReg(R6, 0x00000000)
-T54E4 001:175.086 - 0.008ms returns 0
-T54E4 001:175.095 JLINK_WriteReg(R7, 0x00000000)
-T54E4 001:175.100 - 0.008ms returns 0
-T54E4 001:175.109 JLINK_WriteReg(R8, 0x00000000)
-T54E4 001:175.115 - 0.008ms returns 0
-T54E4 001:175.121 JLINK_WriteReg(R9, 0x200000EC)
-T54E4 001:175.126 - 0.007ms returns 0
-T54E4 001:175.135 JLINK_WriteReg(R10, 0x00000000)
-T54E4 001:175.140 - 0.007ms returns 0
-T54E4 001:175.149 JLINK_WriteReg(R11, 0x00000000)
-T54E4 001:175.154 - 0.007ms returns 0
-T54E4 001:175.163 JLINK_WriteReg(R12, 0x00000000)
-T54E4 001:175.168 - 0.007ms returns 0
-T54E4 001:175.175 JLINK_WriteReg(R13 (SP), 0x20002000)
-T54E4 001:175.181 - 0.008ms returns 0
-T54E4 001:175.189 JLINK_WriteReg(R14, 0x20000001)
-T54E4 001:175.195 - 0.007ms returns 0
-T54E4 001:175.203 JLINK_WriteReg(R15 (PC), 0x20000002)
-T54E4 001:175.209 - 0.008ms returns 0
-T54E4 001:175.217 JLINK_WriteReg(XPSR, 0x01000000)
-T54E4 001:175.223 - 0.008ms returns 0
-T54E4 001:175.232 JLINK_WriteReg(MSP, 0x20002000)
-T54E4 001:175.237 - 0.007ms returns 0
-T54E4 001:175.244 JLINK_WriteReg(PSP, 0x20002000)
-T54E4 001:175.249 - 0.007ms returns 0
-T54E4 001:175.255 JLINK_WriteReg(CFBP, 0x00000000)
-T54E4 001:175.260 - 0.008ms returns 0
-T54E4 001:175.269 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2)
-T54E4 001:175.275 - 0.008ms returns 0x0000000C
-T54E4 001:175.285 JLINK_Go()
-T54E4 001:175.303 CPU_ReadMem(4 bytes @ 0xE0001000)
-T54E4 001:177.428 - 2.152ms
-T54E4 001:177.449 JLINK_IsHalted()
-T54E4 001:177.822 - 0.378ms returns FALSE
-T54E4 001:177.839 JLINK_HasError()
-T54E4 001:181.092 JLINK_IsHalted()
-T54E4 001:181.485 - 0.403ms returns FALSE
-T54E4 001:181.504 JLINK_HasError()
-T54E4 001:183.098 JLINK_IsHalted()
-T54E4 001:183.474 - 0.389ms returns FALSE
-T54E4 001:183.497 JLINK_HasError()
-T54E4 001:185.098 JLINK_IsHalted()
-T54E4 001:185.494 - 0.401ms returns FALSE
-T54E4 001:185.504 JLINK_HasError()
-T54E4 001:187.154 JLINK_IsHalted()
-T54E4 001:187.549 - 0.400ms returns FALSE
-T54E4 001:187.561 JLINK_HasError()
-T54E4 001:189.243 JLINK_IsHalted()
-T54E4 001:189.767 - 0.533ms returns FALSE
-T54E4 001:189.785 JLINK_HasError()
-T54E4 001:191.242 JLINK_IsHalted()
-T54E4 001:191.613 - 0.377ms returns FALSE
-T54E4 001:191.625 JLINK_HasError()
-T54E4 001:193.249 JLINK_IsHalted()
-T54E4 001:193.599 - 0.356ms returns FALSE
-T54E4 001:193.611 JLINK_HasError()
-T54E4 001:194.751 JLINK_IsHalted()
-T54E4 001:195.145 - 0.399ms returns FALSE
-T54E4 001:195.156 JLINK_HasError()
-T54E4 001:196.750 JLINK_IsHalted()
-T54E4 001:197.136 - 0.391ms returns FALSE
-T54E4 001:197.148 JLINK_HasError()
-T54E4 001:199.142 JLINK_IsHalted()
-T54E4 001:199.489 - 0.354ms returns FALSE
-T54E4 001:199.501 JLINK_HasError()
-T54E4 001:201.136 JLINK_IsHalted()
-T54E4 001:201.513 - 0.382ms returns FALSE
-T54E4 001:201.523 JLINK_HasError()
-T54E4 001:203.136 JLINK_IsHalted()
-T54E4 001:203.471 - 0.341ms returns FALSE
-T54E4 001:203.483 JLINK_HasError()
-T54E4 001:205.140 JLINK_IsHalted()
-T54E4 001:205.492 - 0.357ms returns FALSE
-T54E4 001:205.503 JLINK_HasError()
-T54E4 001:207.368 JLINK_IsHalted()
-T54E4 001:207.717 - 0.357ms returns FALSE
-T54E4 001:207.732 JLINK_HasError()
-T54E4 001:210.623 JLINK_IsHalted()
-T54E4 001:210.996 - 0.379ms returns FALSE
-T54E4 001:211.009 JLINK_HasError()
-T54E4 001:212.708 JLINK_IsHalted()
-T54E4 001:213.092 - 0.389ms returns FALSE
-T54E4 001:213.104 JLINK_HasError()
-T54E4 001:214.703 JLINK_IsHalted()
-T54E4 001:215.087 - 0.389ms returns FALSE
-T54E4 001:215.099 JLINK_HasError()
-T54E4 001:216.759 JLINK_IsHalted()
-T54E4 001:217.180 - 0.427ms returns FALSE
-T54E4 001:217.192 JLINK_HasError()
-T54E4 001:218.788 JLINK_IsHalted()
-T54E4 001:220.653 CPU_ReadMem(2 bytes @ 0x20000000)
-T54E4 001:221.187 - 2.409ms returns TRUE
-T54E4 001:221.207 JLINK_ReadReg(R15 (PC))
-T54E4 001:221.224 - 0.021ms returns 0x20000000
-T54E4 001:221.235 JLINK_ClrBPEx(BPHandle = 0x0000000C)
-T54E4 001:221.242 - 0.010ms returns 0x00
-T54E4 001:221.249 JLINK_ReadReg(R0)
-T54E4 001:221.256 - 0.009ms returns 0xC415C2AA
-T54E4 001:222.297 JLINK_HasError()
-T54E4 001:222.314 JLINK_WriteReg(R0, 0x00000003)
-T54E4 001:222.325 - 0.014ms returns 0
-T54E4 001:222.333 JLINK_WriteReg(R1, 0x10000000)
-T54E4 001:222.340 - 0.010ms returns 0
-T54E4 001:222.348 JLINK_WriteReg(R2, 0x00002134)
-T54E4 001:222.355 - 0.010ms returns 0
-T54E4 001:222.362 JLINK_WriteReg(R3, 0x04C11DB7)
-T54E4 001:222.367 - 0.008ms returns 0
-T54E4 001:222.374 JLINK_WriteReg(R4, 0x00000000)
-T54E4 001:222.379 - 0.007ms returns 0
-T54E4 001:222.385 JLINK_WriteReg(R5, 0x00000000)
-T54E4 001:222.390 - 0.007ms returns 0
-T54E4 001:222.397 JLINK_WriteReg(R6, 0x00000000)
-T54E4 001:222.402 - 0.007ms returns 0
-T54E4 001:222.408 JLINK_WriteReg(R7, 0x00000000)
-T54E4 001:222.413 - 0.007ms returns 0
-T54E4 001:222.419 JLINK_WriteReg(R8, 0x00000000)
-T54E4 001:222.424 - 0.007ms returns 0
-T54E4 001:222.430 JLINK_WriteReg(R9, 0x200000EC)
-T54E4 001:222.435 - 0.007ms returns 0
-T54E4 001:222.441 JLINK_WriteReg(R10, 0x00000000)
-T54E4 001:222.447 - 0.007ms returns 0
-T54E4 001:222.453 JLINK_WriteReg(R11, 0x00000000)
-T54E4 001:222.458 - 0.007ms returns 0
-T54E4 001:222.464 JLINK_WriteReg(R12, 0x00000000)
-T54E4 001:222.469 - 0.007ms returns 0
-T54E4 001:222.475 JLINK_WriteReg(R13 (SP), 0x20002000)
-T54E4 001:222.481 - 0.008ms returns 0
-T54E4 001:222.487 JLINK_WriteReg(R14, 0x20000001)
-T54E4 001:222.492 - 0.007ms returns 0
-T54E4 001:222.498 JLINK_WriteReg(R15 (PC), 0x2000006E)
-T54E4 001:222.504 - 0.007ms returns 0
-T54E4 001:222.510 JLINK_WriteReg(XPSR, 0x01000000)
-T54E4 001:222.515 - 0.007ms returns 0
-T54E4 001:222.521 JLINK_WriteReg(MSP, 0x20002000)
-T54E4 001:222.526 - 0.007ms returns 0
-T54E4 001:222.532 JLINK_WriteReg(PSP, 0x20002000)
-T54E4 001:222.537 - 0.007ms returns 0
-T54E4 001:222.543 JLINK_WriteReg(CFBP, 0x00000000)
-T54E4 001:222.553 - 0.013ms returns 0
-T54E4 001:222.561 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2)
-T54E4 001:222.567 - 0.008ms returns 0x0000000D
-T54E4 001:222.573 JLINK_Go()
-T54E4 001:222.584 CPU_ReadMem(4 bytes @ 0xE0001000)
-T54E4 001:224.775 - 2.212ms
-T54E4 001:224.793 JLINK_IsHalted()
-T54E4 001:226.651 CPU_ReadMem(2 bytes @ 0x20000000)
-T54E4 001:226.999 - 2.215ms returns TRUE
-T54E4 001:227.015 JLINK_ReadReg(R15 (PC))
-T54E4 001:227.024 - 0.012ms returns 0x20000000
-T54E4 001:227.032 JLINK_ClrBPEx(BPHandle = 0x0000000D)
-T54E4 001:227.039 - 0.009ms returns 0x00
-T54E4 001:227.046 JLINK_ReadReg(R0)
-T54E4 001:227.052 - 0.009ms returns 0x00000000
-T54E4 001:281.944 JLINK_WriteMemEx(0x20000000, 0x00000002 Bytes, Flags = 0x02000000)
-T54E4 001:281.968 Data: FE E7
-T54E4 001:281.990 CPU_WriteMem(2 bytes @ 0x20000000)
-T54E4 001:282.396 - 0.458ms returns 0x2
-T54E4 001:282.408 JLINK_HasError()
-T54E4 001:282.415 JLINK_HasError()
-T54E4 001:282.422 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL)
-T54E4 001:282.427 - 0.007ms returns JLINKARM_CM3_RESET_TYPE_NORMAL
-T54E4 001:282.433 JLINK_Reset()
-T54E4 001:282.442 CPU_ReadMem(4 bytes @ 0x20000000)
-T54E4 001:282.771 CPU_WriteMem(4 bytes @ 0x20000000)
-T54E4 001:283.174 CPU_WriteMem(4 bytes @ 0xE000EDF0)
-T54E4 001:283.550 CPU_WriteMem(4 bytes @ 0xE000EDFC)
-T54E4 001:287.119 Reset: Halt core after reset via DEMCR.VC_CORERESET.
-T54E4 001:290.599 Reset: Reset device via AIRCR.SYSRESETREQ.
-T54E4 001:290.621 CPU_WriteMem(4 bytes @ 0xE000ED0C)
-T54E4 001:343.412 CPU_ReadMem(4 bytes @ 0xE000EDF0)
-T54E4 001:343.774 CPU_ReadMem(4 bytes @ 0xE000EDF0)
-T54E4 001:344.153 CPU_WriteMem(4 bytes @ 0xE000EDF0)
-T54E4 001:344.508 CPU_WriteMem(4 bytes @ 0xE000EDFC)
-T54E4 001:350.374 CPU_ReadMem(4 bytes @ 0xE000EDF0)
-T54E4 001:352.990 CPU_WriteMem(4 bytes @ 0xE0002000)
-T54E4 001:353.356 CPU_ReadMem(4 bytes @ 0xE000EDFC)
-T54E4 001:353.716 CPU_ReadMem(4 bytes @ 0xE0001000)
-T54E4 001:354.074 CPU_WriteMem(4 bytes @ 0xE0001000)
-T54E4 001:354.460 - 72.032ms
-T54E4 001:354.485 JLINK_Go()
-T54E4 001:354.500 CPU_ReadMem(4 bytes @ 0xE0001000)
-T54E4 001:354.885 CPU_WriteMem(4 bytes @ 0xE0001000)
-T54E4 001:355.225 CPU_WriteMem(4 bytes @ 0xE0002008)
-T54E4 001:355.236 CPU_WriteMem(4 bytes @ 0xE000200C)
-T54E4 001:355.243 CPU_WriteMem(4 bytes @ 0xE0002010)
-T54E4 001:355.250 CPU_WriteMem(4 bytes @ 0xE0002014)
-T54E4 001:355.893 CPU_WriteMem(4 bytes @ 0xE0001004)
-T54E4 001:356.697 - 2.217ms
-T54E4 001:367.457 JLINK_Close()
-T54E4 001:367.936 CPU is running
-T54E4 001:367.958 CPU_WriteMem(4 bytes @ 0xE0002008)
-T54E4 001:368.359 CPU is running
-T54E4 001:368.372 CPU_WriteMem(4 bytes @ 0xE000200C)
-T54E4 001:368.745 CPU is running
-T54E4 001:368.755 CPU_WriteMem(4 bytes @ 0xE0002010)
-T54E4 001:369.098 CPU is running
-T54E4 001:369.108 CPU_WriteMem(4 bytes @ 0xE0002014)
-T54E4 001:380.755 - 13.320ms
-T54E4 001:380.782
-T54E4 001:380.788 Closed
+
+T5300 000:045 SEGGER J-Link V6.12a Log File (0001ms, 0020ms total)
+T5300 000:045 DLL Compiled: Dec 2 2016 16:44:26 (0001ms, 0020ms total)
+T5300 000:045 Logging started @ 2025-09-30 13:44 (0001ms, 0020ms total)
+T5300 000:046 JLINK_SetWarnOutHandler(...) (0000ms, 0020ms total)
+T5300 000:046 JLINK_OpenEx(...)
+Firmware: J-Link Vll compiled Jun 21 2023 09:20:55
+Hardware: V11.00
+S/N: 941000024
+Feature(s): RDI, FlashBP, FlashDL, JFlash, GDBWEBSRV Webserver running on local port 19080 (0012ms, 0032ms total)
+T5300 000:046 returns O.K. (0012ms, 0032ms total)
+T5300 000:058 JLINK_SetErrorOutHandler(...) (0000ms, 0032ms total)
+T5300 000:058 JLINK_ExecCommand("ProjectFile = "C:\Users\29096\Desktop\work\ůо\TIMER_DEMO\JLinkSettings.ini"", ...). returns 0x00 (0055ms, 0087ms total)
+T5300 000:119 JLINK_ExecCommand("Device = ARMCM0", ...). Device "CORTEX-M0" selected. returns 0x00 (0003ms, 0090ms total)
+T5300 000:122 JLINK_ExecCommand("DisableConnectionTimeout", ...). returns 0x01 (0000ms, 0090ms total)
+T5300 000:122 JLINK_GetHardwareVersion() returns 0x1ADB0 (0000ms, 0090ms total)
+T5300 000:122 JLINK_GetDLLVersion() returns 61201 (0000ms, 0090ms total)
+T5300 000:122 JLINK_GetFirmwareString(...) (0000ms, 0090ms total)
+T5300 000:134 JLINK_GetDLLVersion() returns 61201 (0000ms, 0090ms total)
+T5300 000:134 JLINK_GetCompileDateTime() (0000ms, 0090ms total)
+T5300 000:139 JLINK_GetFirmwareString(...) (0000ms, 0090ms total)
+T5300 000:142 JLINK_GetHardwareVersion() returns 0x1ADB0 (0000ms, 0090ms total)
+T5300 000:154 JLINK_TIF_Select(JLINKARM_TIF_SWD) returns 0x00 (0001ms, 0091ms total)
+T5300 000:155 JLINK_SetSpeed(500) (0000ms, 0091ms total)
+T5300 000:155 JLINK_GetId() >0x108 TIF>Found SWD-DP with ID 0x0BB11477 >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>AP-IDR: 0x04770021, Type: AHB-AP >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x28 TIF> >0x0D TIF> >0x21 TIF> >0x0D TIF> >0x21 TIF>
+Found Cortex-M0 r0p0, Little endian. -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE0002000)FPUnit: 4 code (BP) slots and 0 literal slots -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000)CoreSight components:ROMTbl 0 @ E00FF000 -- CPU_ReadMem(16 bytes @ 0xE00FF000) -- CPU_ReadMem(16 bytes @ 0xE000EFF0) -- CPU_ReadMem(16 bytes @ 0xE000EFE0)ROMTbl 0 [0]: FFF0F000, CID: B105E00D, PID: 000BB008 SCS
+ -- CPU_ReadMem(16 bytes @ 0xE0001FF0) -- CPU_ReadMem(16 bytes @ 0xE0001FE0)ROMTbl 0 [1]: FFF02000, CID: B105E00D, PID: 000BB00A DWT -- CPU_ReadMem(16 bytes @ 0xE0002FF0) -- CPU_ReadMem(16 bytes @ 0xE0002FE0)ROMTbl 0 [2]: FFF03000, CID: B105E00D, PID: 000BB00B FPB >0x0D TIF> >0x21 TIF> returns 0x0BB11477 (0056ms, 0147ms total)
+T5300 000:211 JLINK_GetDLLVersion() returns 61201 (0000ms, 0147ms total)
+T5300 000:211 JLINK_CORE_GetFound() returns 0x60000FF (0000ms, 0147ms total)
+T5300 000:211 JLINK_GetDebugInfo(0x100) -- Value=0xE00FF000 returns 0x00 (0000ms, 0147ms total)
+T5300 000:214 JLINK_ReadMem (0xE00FF000, 0x0020 Bytes, ...) -- CPU is running -- CPU_ReadMem(32 bytes @ 0xE00FF000) - Data: 03 F0 F0 FF 03 20 F0 FF 03 30 F0 FF 00 00 00 00 ... returns 0x00 (0002ms, 0149ms total)
+T5300 000:216 JLINK_ReadMem (0xE000EFF0, 0x0010 Bytes, ...) -- CPU is running -- CPU_ReadMem(16 bytes @ 0xE000EFF0) - Data: 0D 00 00 00 E0 00 00 00 05 00 00 00 B1 00 00 00 returns 0x00 (0001ms, 0150ms total)
+T5300 000:217 JLINK_ReadMem (0xE000EFD0, 0x0020 Bytes, ...) -- CPU is running -- CPU_ReadMem(32 bytes @ 0xE000EFD0) - Data: 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x00 (0001ms, 0151ms total)
+T5300 000:218 JLINK_ReadMem (0xE0001FF0, 0x0010 Bytes, ...) -- CPU is running -- CPU_ReadMem(16 bytes @ 0xE0001FF0) - Data: 0D 00 00 00 E0 00 00 00 05 00 00 00 B1 00 00 00 returns 0x00 (0001ms, 0152ms total)
+T5300 000:219 JLINK_ReadMem (0xE0001FD0, 0x0020 Bytes, ...) -- CPU is running -- CPU_ReadMem(32 bytes @ 0xE0001FD0) - Data: 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x00 (0001ms, 0153ms total)
+T5300 000:220 JLINK_ReadMem (0xE0002FF0, 0x0010 Bytes, ...) -- CPU is running -- CPU_ReadMem(16 bytes @ 0xE0002FF0) - Data: 0D 00 00 00 E0 00 00 00 05 00 00 00 B1 00 00 00 returns 0x00 (0002ms, 0155ms total)
+T5300 000:222 JLINK_ReadMem (0xE0002FD0, 0x0020 Bytes, ...) -- CPU is running -- CPU_ReadMem(32 bytes @ 0xE0002FD0) - Data: 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ... returns 0x00 (0001ms, 0156ms total)
+T5300 000:223 JLINK_ReadMemU32(0xE000ED00, 0x0001 Items, ...) -- CPU is running -- CPU_ReadMem(4 bytes @ 0xE000ED00) - Data: 00 C2 0C 41 returns 0x01 (0001ms, 0157ms total)
+T5300 000:224 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0157ms total)
+T5300 000:224 JLINK_Reset() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC) >0x35 TIF> -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000ED0C) -- CPU is running -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU is running -- CPU_ReadMem(4 bytes @ 0xE000EDF0)
+ -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0032ms, 0189ms total)
+T5300 000:256 JLINK_Halt() returns 0x00 (0000ms, 0189ms total)
+T5300 000:256 JLINK_IsHalted() returns TRUE (0000ms, 0189ms total)
+T5300 000:256 JLINK_ReadMemU32(0xE000EDF0, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) - Data: 03 00 03 00 returns 0x01 (0000ms, 0189ms total)
+T5300 000:256 JLINK_WriteU32(0xE000EDF0, 0xA05F0003) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) returns 0x00 (0001ms, 0190ms total)
+T5300 000:257 JLINK_WriteU32(0xE000EDFC, 0x01000000) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) returns 0x00 (0001ms, 0191ms total)
+T5300 000:270 JLINK_GetHWStatus(...) returns 0x00 (0001ms, 0192ms total)
+T5300 000:281 JLINK_GetNumBPUnits(Type = 0xFFFFFF00) returns 0x04 (0000ms, 0192ms total)
+T5300 000:281 JLINK_GetNumBPUnits(Type = 0xF0) returns 0x2000 (0000ms, 0192ms total)
+T5300 000:281 JLINK_GetNumWPUnits() returns 0x02 (0000ms, 0192ms total)
+T5300 000:289 JLINK_GetSpeed() returns 0x1F4 (0000ms, 0192ms total)
+T5300 000:297 JLINK_ReadMemU32(0xE000E004, 0x0001 Items, ...) -- CPU_ReadMem(4 bytes @ 0xE000E004) - Data: 00 00 00 00 returns 0x01 (0001ms, 0193ms total)
+T5300 000:298 JLINK_Halt() returns 0x00 (0000ms, 0193ms total)
+T5300 000:298 JLINK_IsHalted() returns TRUE (0000ms, 0193ms total)
+T5300 000:301 JLINK_WriteMem(0x20000000, 0x00F4 Bytes, ...) - Data: 00 BE 0A E0 0D 78 2D 06 68 40 08 24 40 00 00 D3 ... -- CPU_WriteMem(244 bytes @ 0x20000000) returns 0xF4 (0008ms, 0201ms total)
+T5300 000:309 JLINK_WriteReg(R0, 0x10000000) returns 0x00 (0000ms, 0201ms total)
+T5300 000:309 JLINK_WriteReg(R1, 0x00B71B00) returns 0x00 (0000ms, 0201ms total)
+T5300 000:309 JLINK_WriteReg(R2, 0x00000001) returns 0x00 (0000ms, 0201ms total)
+T5300 000:309 JLINK_WriteReg(R3, 0x00000000) returns 0x00 (0000ms, 0201ms total)
+T5300 000:309 JLINK_WriteReg(R4, 0x00000000) returns 0x00 (0000ms, 0201ms total)
+T5300 000:309 JLINK_WriteReg(R5, 0x00000000) returns 0x00 (0000ms, 0201ms total)
+T5300 000:309 JLINK_WriteReg(R6, 0x00000000) returns 0x00 (0000ms, 0201ms total)
+T5300 000:309 JLINK_WriteReg(R7, 0x00000000) returns 0x00 (0000ms, 0201ms total)
+T5300 000:309 JLINK_WriteReg(R8, 0x00000000) returns 0x00 (0000ms, 0201ms total)
+T5300 000:309 JLINK_WriteReg(R9, 0x200000EC) returns 0x00 (0000ms, 0201ms total)
+T5300 000:309 JLINK_WriteReg(R10, 0x00000000) returns 0x00 (0000ms, 0201ms total)
+T5300 000:309 JLINK_WriteReg(R11, 0x00000000) returns 0x00 (0001ms, 0202ms total)
+T5300 000:310 JLINK_WriteReg(R12, 0x00000000) returns 0x00 (0000ms, 0202ms total)
+T5300 000:310 JLINK_WriteReg(R13 (SP), 0x20002000) returns 0x00 (0000ms, 0202ms total)
+T5300 000:310 JLINK_WriteReg(R14, 0x20000001) returns 0x00 (0000ms, 0202ms total)
+T5300 000:310 JLINK_WriteReg(R15 (PC), 0x20000044) returns 0x00 (0000ms, 0202ms total)
+T5300 000:310 JLINK_WriteReg(XPSR, 0x01000000) returns 0x00 (0000ms, 0202ms total)
+T5300 000:310 JLINK_WriteReg(MSP, 0x20002000) returns 0x00 (0000ms, 0202ms total)
+T5300 000:310 JLINK_WriteReg(PSP, 0x20002000) returns 0x00 (0000ms, 0202ms total)
+T5300 000:310 JLINK_WriteReg(CFBP, 0x00000000) returns 0x00 (0000ms, 0202ms total)
+T5300 000:310 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) -- CPU_ReadMem(4 bytes @ 0x20000000) -- CPU_WriteMem(4 bytes @ 0x20000000) -- CPU_ReadMem(4 bytes @ 0x20000000) -- CPU_WriteMem(4 bytes @ 0x20000000) -- CPU_ReadMem(2 bytes @ 0x20000000) returns 0x00000001 (0004ms, 0206ms total)
+T5300 000:314 JLINK_Go() -- CPU_WriteMem(2 bytes @ 0x20000000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0015ms, 0221ms total)
+T5300 000:329 JLINK_IsHalted() -- CPU_ReadMem(2 bytes @ 0x20000000) returns TRUE (0012ms, 0233ms total)
+T5300 000:341 JLINK_ReadReg(R15 (PC)) returns 0x20000000 (0000ms, 0221ms total)
+T5300 000:341 JLINK_ClrBPEx(BPHandle = 0x00000001) returns 0x00 (0000ms, 0221ms total)
+T5300 000:341 JLINK_ReadReg(R0) returns 0x00000000 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(R0, 0x10000000) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(R1, 0x00001000) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(R2, 0x000000FF) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(R3, 0x00000000) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(R4, 0x00000000) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(R5, 0x00000000) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(R6, 0x00000000) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(R7, 0x00000000) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(R8, 0x00000000) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(R9, 0x200000EC) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(R10, 0x00000000) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(R11, 0x00000000) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(R12, 0x00000000) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(R13 (SP), 0x20002000) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(R14, 0x20000001) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(R15 (PC), 0x20000020) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(XPSR, 0x01000000) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(MSP, 0x20002000) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(PSP, 0x20002000) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_WriteReg(CFBP, 0x00000000) returns 0x00 (0000ms, 0221ms total)
+T5300 000:342 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) returns 0x00000002 (0000ms, 0221ms total)
+T5300 000:342 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0007ms, 0228ms total)
+T5300 000:349 JLINK_IsHalted() -- CPU_ReadMem(2 bytes @ 0x20000000) returns TRUE (0011ms, 0239ms total)
+T5300 000:360 JLINK_ReadReg(R15 (PC)) returns 0x20000000 (0000ms, 0228ms total)
+T5300 000:360 JLINK_ClrBPEx(BPHandle = 0x00000002) returns 0x00 (0001ms, 0229ms total)
+T5300 000:361 JLINK_ReadReg(R0) returns 0x00000001 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(R0, 0x10000000) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(R1, 0x00001000) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(R2, 0x000000FF) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(R3, 0x00000000) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(R4, 0x00000000) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(R5, 0x00000000) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(R6, 0x00000000) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(R7, 0x00000000) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(R8, 0x00000000) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(R9, 0x200000EC) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(R10, 0x00000000) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(R11, 0x00000000) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(R12, 0x00000000) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(R13 (SP), 0x20002000) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(R14, 0x20000001) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(R15 (PC), 0x2000009A) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(XPSR, 0x01000000) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(MSP, 0x20002000) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(PSP, 0x20002000) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_WriteReg(CFBP, 0x00000000) returns 0x00 (0000ms, 0229ms total)
+T5300 000:361 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) returns 0x00000003 (0000ms, 0229ms total)
+T5300 000:361 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0005ms, 0234ms total)
+T5300 000:366 JLINK_IsHalted() returns FALSE (0002ms, 0236ms total)
+T5300 000:402 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:405 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:408 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:412 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:416 JLINK_IsHalted() returns FALSE (0002ms, 0236ms total)
+T5300 000:424 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:427 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:432 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:434 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:439 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:441 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:446 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:449 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:452 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:454 JLINK_IsHalted() returns FALSE (0002ms, 0236ms total)
+T5300 000:458 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:460 JLINK_IsHalted() returns FALSE (0002ms, 0236ms total)
+T5300 000:463 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:469 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:473 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:476 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:481 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:484 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:487 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:490 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:499 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:503 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:506 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:511 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:514 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:519 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:523 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:525 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:528 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:531 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:535 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:538 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:540 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:542 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:546 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:549 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:554 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:558 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:563 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:566 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:569 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:574 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:582 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:585 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:589 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:595 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:598 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:601 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:604 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:607 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:611 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:613 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:617 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:620 JLINK_IsHalted() returns FALSE (0000ms, 0234ms total)
+T5300 000:623 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:625 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:629 JLINK_IsHalted() returns FALSE (0001ms, 0235ms total)
+T5300 000:634 JLINK_IsHalted() -- CPU_ReadMem(2 bytes @ 0x20000000) returns TRUE (0011ms, 0245ms total)
+T5300 000:645 JLINK_ReadReg(R15 (PC)) returns 0x20000000 (0000ms, 0234ms total)
+T5300 000:645 JLINK_ClrBPEx(BPHandle = 0x00000003) returns 0x00 (0000ms, 0234ms total)
+T5300 000:645 JLINK_ReadReg(R0) returns 0x00000000 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(R0, 0x10001000) returns 0x00 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(R1, 0x00001000) returns 0x00 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(R2, 0x000000FF) returns 0x00 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(R3, 0x00000000) returns 0x00 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(R4, 0x00000000) returns 0x00 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(R5, 0x00000000) returns 0x00 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(R6, 0x00000000) returns 0x00 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(R7, 0x00000000) returns 0x00 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(R8, 0x00000000) returns 0x00 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(R9, 0x200000EC) returns 0x00 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(R10, 0x00000000) returns 0x00 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(R11, 0x00000000) returns 0x00 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(R12, 0x00000000) returns 0x00 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(R13 (SP), 0x20002000) returns 0x00 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(R14, 0x20000001) returns 0x00 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(R15 (PC), 0x20000020) returns 0x00 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(XPSR, 0x01000000) returns 0x00 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(MSP, 0x20002000) returns 0x00 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(PSP, 0x20002000) returns 0x00 (0000ms, 0234ms total)
+T5300 000:646 JLINK_WriteReg(CFBP, 0x00000000) returns 0x00 (0001ms, 0235ms total)
+T5300 000:647 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) returns 0x00000004 (0000ms, 0235ms total)
+T5300 000:647 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0007ms, 0242ms total)
+T5300 000:654 JLINK_IsHalted() -- CPU_ReadMem(2 bytes @ 0x20000000) returns TRUE (0011ms, 0253ms total)
+T5300 000:665 JLINK_ReadReg(R15 (PC)) returns 0x20000000 (0000ms, 0242ms total)
+T5300 000:665 JLINK_ClrBPEx(BPHandle = 0x00000004) returns 0x00 (0000ms, 0242ms total)
+T5300 000:665 JLINK_ReadReg(R0) returns 0x00000001 (0000ms, 0242ms total)
+T5300 000:665 JLINK_WriteReg(R0, 0x10001000) returns 0x00 (0000ms, 0242ms total)
+T5300 000:665 JLINK_WriteReg(R1, 0x00001000) returns 0x00 (0000ms, 0242ms total)
+T5300 000:665 JLINK_WriteReg(R2, 0x000000FF) returns 0x00 (0000ms, 0242ms total)
+T5300 000:665 JLINK_WriteReg(R3, 0x00000000) returns 0x00 (0000ms, 0242ms total)
+T5300 000:665 JLINK_WriteReg(R4, 0x00000000) returns 0x00 (0000ms, 0242ms total)
+T5300 000:665 JLINK_WriteReg(R5, 0x00000000) returns 0x00 (0000ms, 0242ms total)
+T5300 000:665 JLINK_WriteReg(R6, 0x00000000) returns 0x00 (0000ms, 0242ms total)
+T5300 000:665 JLINK_WriteReg(R7, 0x00000000) returns 0x00 (0001ms, 0243ms total)
+T5300 000:666 JLINK_WriteReg(R8, 0x00000000) returns 0x00 (0000ms, 0243ms total)
+T5300 000:666 JLINK_WriteReg(R9, 0x200000EC) returns 0x00 (0000ms, 0243ms total)
+T5300 000:666 JLINK_WriteReg(R10, 0x00000000) returns 0x00 (0000ms, 0243ms total)
+T5300 000:666 JLINK_WriteReg(R11, 0x00000000) returns 0x00 (0000ms, 0243ms total)
+T5300 000:666 JLINK_WriteReg(R12, 0x00000000) returns 0x00 (0000ms, 0243ms total)
+T5300 000:666 JLINK_WriteReg(R13 (SP), 0x20002000) returns 0x00 (0000ms, 0243ms total)
+T5300 000:666 JLINK_WriteReg(R14, 0x20000001) returns 0x00 (0000ms, 0243ms total)
+T5300 000:666 JLINK_WriteReg(R15 (PC), 0x2000009A) returns 0x00 (0000ms, 0243ms total)
+T5300 000:666 JLINK_WriteReg(XPSR, 0x01000000) returns 0x00 (0000ms, 0243ms total)
+T5300 000:666 JLINK_WriteReg(MSP, 0x20002000) returns 0x00 (0000ms, 0243ms total)
+T5300 000:666 JLINK_WriteReg(PSP, 0x20002000) returns 0x00 (0000ms, 0243ms total)
+T5300 000:666 JLINK_WriteReg(CFBP, 0x00000000) returns 0x00 (0000ms, 0243ms total)
+T5300 000:666 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) returns 0x00000005 (0000ms, 0243ms total)
+T5300 000:666 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0005ms, 0248ms total)
+T5300 000:671 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:676 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:679 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:688 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:691 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:696 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:699 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:702 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:705 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:708 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:713 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:716 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:719 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:722 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:725 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:728 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:732 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:735 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:739 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:742 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:744 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:748 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:751 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:755 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:758 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:763 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:765 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:768 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:770 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:774 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:778 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:782 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:784 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:786 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:789 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:792 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:799 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:803 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:806 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:808 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:813 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:816 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:821 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:825 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:827 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:829 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:833 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:836 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:839 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:842 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:846 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:849 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:852 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:859 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:862 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:865 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:868 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:872 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:876 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:879 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:882 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:886 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:889 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:892 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:896 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:898 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:904 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:907 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:910 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:913 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:917 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:920 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:922 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:925 JLINK_IsHalted() returns FALSE (0001ms, 0249ms total)
+T5300 000:928 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:930 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:934 JLINK_IsHalted() returns FALSE (0000ms, 0248ms total)
+T5300 000:937 JLINK_IsHalted() -- CPU_ReadMem(2 bytes @ 0x20000000) returns TRUE (0012ms, 0260ms total)
+T5300 000:949 JLINK_ReadReg(R15 (PC)) returns 0x20000000 (0000ms, 0248ms total)
+T5300 000:949 JLINK_ClrBPEx(BPHandle = 0x00000005) returns 0x00 (0000ms, 0248ms total)
+T5300 000:949 JLINK_ReadReg(R0) returns 0x00000000 (0000ms, 0248ms total)
+T5300 000:949 JLINK_WriteReg(R0, 0x10002000) returns 0x00 (0000ms, 0248ms total)
+T5300 000:949 JLINK_WriteReg(R1, 0x00001000) returns 0x00 (0000ms, 0248ms total)
+T5300 000:949 JLINK_WriteReg(R2, 0x000000FF) returns 0x00 (0001ms, 0249ms total)
+T5300 000:950 JLINK_WriteReg(R3, 0x00000000) returns 0x00 (0000ms, 0249ms total)
+T5300 000:950 JLINK_WriteReg(R4, 0x00000000) returns 0x00 (0000ms, 0249ms total)
+T5300 000:950 JLINK_WriteReg(R5, 0x00000000) returns 0x00 (0000ms, 0249ms total)
+T5300 000:950 JLINK_WriteReg(R6, 0x00000000) returns 0x00 (0000ms, 0249ms total)
+T5300 000:950 JLINK_WriteReg(R7, 0x00000000) returns 0x00 (0000ms, 0249ms total)
+T5300 000:950 JLINK_WriteReg(R8, 0x00000000) returns 0x00 (0000ms, 0249ms total)
+T5300 000:950 JLINK_WriteReg(R9, 0x200000EC) returns 0x00 (0000ms, 0249ms total)
+T5300 000:950 JLINK_WriteReg(R10, 0x00000000) returns 0x00 (0000ms, 0249ms total)
+T5300 000:950 JLINK_WriteReg(R11, 0x00000000) returns 0x00 (0000ms, 0249ms total)
+T5300 000:950 JLINK_WriteReg(R12, 0x00000000) returns 0x00 (0000ms, 0249ms total)
+T5300 000:950 JLINK_WriteReg(R13 (SP), 0x20002000) returns 0x00 (0000ms, 0249ms total)
+T5300 000:950 JLINK_WriteReg(R14, 0x20000001) returns 0x00 (0000ms, 0249ms total)
+T5300 000:950 JLINK_WriteReg(R15 (PC), 0x20000020) returns 0x00 (0000ms, 0249ms total)
+T5300 000:950 JLINK_WriteReg(XPSR, 0x01000000) returns 0x00 (0000ms, 0249ms total)
+T5300 000:950 JLINK_WriteReg(MSP, 0x20002000) returns 0x00 (0000ms, 0249ms total)
+T5300 000:950 JLINK_WriteReg(PSP, 0x20002000) returns 0x00 (0000ms, 0249ms total)
+T5300 000:950 JLINK_WriteReg(CFBP, 0x00000000) returns 0x00 (0000ms, 0249ms total)
+T5300 000:950 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) returns 0x00000006 (0000ms, 0249ms total)
+T5300 000:950 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0006ms, 0255ms total)
+T5300 000:956 JLINK_IsHalted() -- CPU_ReadMem(2 bytes @ 0x20000000) returns TRUE (0013ms, 0268ms total)
+T5300 000:969 JLINK_ReadReg(R15 (PC)) returns 0x20000000 (0000ms, 0255ms total)
+T5300 000:969 JLINK_ClrBPEx(BPHandle = 0x00000006) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_ReadReg(R0) returns 0x00000001 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(R0, 0x10002000) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(R1, 0x00001000) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(R2, 0x000000FF) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(R3, 0x00000000) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(R4, 0x00000000) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(R5, 0x00000000) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(R6, 0x00000000) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(R7, 0x00000000) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(R8, 0x00000000) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(R9, 0x200000EC) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(R10, 0x00000000) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(R11, 0x00000000) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(R12, 0x00000000) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(R13 (SP), 0x20002000) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(R14, 0x20000001) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(R15 (PC), 0x2000009A) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(XPSR, 0x01000000) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(MSP, 0x20002000) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(PSP, 0x20002000) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_WriteReg(CFBP, 0x00000000) returns 0x00 (0000ms, 0255ms total)
+T5300 000:969 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) returns 0x00000007 (0000ms, 0255ms total)
+T5300 000:969 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0006ms, 0261ms total)
+T5300 000:975 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 000:980 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 000:982 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 000:985 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 000:988 JLINK_IsHalted() returns FALSE (0000ms, 0261ms total)
+T5300 000:991 JLINK_IsHalted() returns FALSE (0000ms, 0261ms total)
+T5300 000:995 JLINK_IsHalted() returns FALSE (0000ms, 0261ms total)
+T5300 000:997 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:000 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:003 JLINK_IsHalted() returns FALSE (0000ms, 0261ms total)
+T5300 001:006 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:013 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:016 JLINK_IsHalted() returns FALSE (0000ms, 0261ms total)
+T5300 001:018 JLINK_IsHalted() returns FALSE (0000ms, 0261ms total)
+T5300 001:020 JLINK_IsHalted() returns FALSE (0000ms, 0261ms total)
+T5300 001:024 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:027 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:030 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:032 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:035 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:040 JLINK_IsHalted() returns FALSE (0000ms, 0261ms total)
+T5300 001:043 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:046 JLINK_IsHalted() returns FALSE (0000ms, 0261ms total)
+T5300 001:048 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:051 JLINK_IsHalted() returns FALSE (0000ms, 0261ms total)
+T5300 001:054 JLINK_IsHalted() returns FALSE (0000ms, 0261ms total)
+T5300 001:059 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:062 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:065 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:068 JLINK_IsHalted() returns FALSE (0000ms, 0261ms total)
+T5300 001:071 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:074 JLINK_IsHalted() returns FALSE (0000ms, 0261ms total)
+T5300 001:077 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:080 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:083 JLINK_IsHalted() returns FALSE (0000ms, 0261ms total)
+T5300 001:087 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:090 JLINK_IsHalted() returns FALSE (0000ms, 0261ms total)
+T5300 001:092 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:094 JLINK_IsHalted() returns FALSE (0000ms, 0261ms total)
+T5300 001:096 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:099 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:102 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:105 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:107 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:111 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:113 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:116 JLINK_IsHalted() returns FALSE (0000ms, 0261ms total)
+T5300 001:119 JLINK_IsHalted() returns FALSE (0001ms, 0262ms total)
+T5300 001:122 JLINK_IsHalted() returns FALSE (0000ms, 0261ms total)
+T5300 001:124 JLINK_IsHalted() -- CPU_ReadMem(2 bytes @ 0x20000000) returns TRUE (0012ms, 0273ms total)
+T5300 001:136 JLINK_ReadReg(R15 (PC)) returns 0x20000000 (0000ms, 0261ms total)
+T5300 001:136 JLINK_ClrBPEx(BPHandle = 0x00000007) returns 0x00 (0000ms, 0261ms total)
+T5300 001:136 JLINK_ReadReg(R0) returns 0x00000000 (0000ms, 0261ms total)
+T5300 001:136 JLINK_WriteReg(R0, 0x00000001) returns 0x00 (0000ms, 0261ms total)
+T5300 001:136 JLINK_WriteReg(R1, 0x00001000) returns 0x00 (0000ms, 0261ms total)
+T5300 001:136 JLINK_WriteReg(R2, 0x000000FF) returns 0x00 (0001ms, 0262ms total)
+T5300 001:137 JLINK_WriteReg(R3, 0x00000000) returns 0x00 (0000ms, 0262ms total)
+T5300 001:137 JLINK_WriteReg(R4, 0x00000000) returns 0x00 (0000ms, 0262ms total)
+T5300 001:137 JLINK_WriteReg(R5, 0x00000000) returns 0x00 (0000ms, 0262ms total)
+T5300 001:137 JLINK_WriteReg(R6, 0x00000000) returns 0x00 (0000ms, 0262ms total)
+T5300 001:137 JLINK_WriteReg(R7, 0x00000000) returns 0x00 (0000ms, 0262ms total)
+T5300 001:137 JLINK_WriteReg(R8, 0x00000000) returns 0x00 (0000ms, 0262ms total)
+T5300 001:137 JLINK_WriteReg(R9, 0x200000EC) returns 0x00 (0000ms, 0262ms total)
+T5300 001:137 JLINK_WriteReg(R10, 0x00000000) returns 0x00 (0000ms, 0262ms total)
+T5300 001:137 JLINK_WriteReg(R11, 0x00000000) returns 0x00 (0000ms, 0262ms total)
+T5300 001:137 JLINK_WriteReg(R12, 0x00000000) returns 0x00 (0000ms, 0262ms total)
+T5300 001:137 JLINK_WriteReg(R13 (SP), 0x20002000) returns 0x00 (0000ms, 0262ms total)
+T5300 001:137 JLINK_WriteReg(R14, 0x20000001) returns 0x00 (0000ms, 0262ms total)
+T5300 001:137 JLINK_WriteReg(R15 (PC), 0x2000006E) returns 0x00 (0000ms, 0262ms total)
+T5300 001:137 JLINK_WriteReg(XPSR, 0x01000000) returns 0x00 (0000ms, 0262ms total)
+T5300 001:137 JLINK_WriteReg(MSP, 0x20002000) returns 0x00 (0000ms, 0262ms total)
+T5300 001:137 JLINK_WriteReg(PSP, 0x20002000) returns 0x00 (0000ms, 0262ms total)
+T5300 001:137 JLINK_WriteReg(CFBP, 0x00000000) returns 0x00 (0000ms, 0262ms total)
+T5300 001:137 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) returns 0x00000008 (0000ms, 0262ms total)
+T5300 001:137 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0007ms, 0269ms total)
+T5300 001:144 JLINK_IsHalted() -- CPU_ReadMem(2 bytes @ 0x20000000) returns TRUE (0011ms, 0280ms total)
+T5300 001:156 JLINK_ReadReg(R15 (PC)) returns 0x20000000 (0000ms, 0269ms total)
+T5300 001:156 JLINK_ClrBPEx(BPHandle = 0x00000008) returns 0x00 (0000ms, 0269ms total)
+T5300 001:156 JLINK_ReadReg(R0) returns 0x00000000 (0000ms, 0269ms total)
+T5300 001:215 JLINK_WriteMem(0x20000000, 0x00F4 Bytes, ...) - Data: 00 BE 0A E0 0D 78 2D 06 68 40 08 24 40 00 00 D3 ... -- CPU_WriteMem(244 bytes @ 0x20000000) returns 0xF4 (0008ms, 0277ms total)
+T5300 001:223 JLINK_WriteReg(R0, 0x10000000) returns 0x00 (0000ms, 0277ms total)
+T5300 001:223 JLINK_WriteReg(R1, 0x00B71B00) returns 0x00 (0000ms, 0277ms total)
+T5300 001:223 JLINK_WriteReg(R2, 0x00000002) returns 0x00 (0000ms, 0277ms total)
+T5300 001:223 JLINK_WriteReg(R3, 0x00000000) returns 0x00 (0000ms, 0277ms total)
+T5300 001:223 JLINK_WriteReg(R4, 0x00000000) returns 0x00 (0000ms, 0277ms total)
+T5300 001:223 JLINK_WriteReg(R5, 0x00000000) returns 0x00 (0000ms, 0277ms total)
+T5300 001:223 JLINK_WriteReg(R6, 0x00000000) returns 0x00 (0000ms, 0277ms total)
+T5300 001:223 JLINK_WriteReg(R7, 0x00000000) returns 0x00 (0000ms, 0277ms total)
+T5300 001:223 JLINK_WriteReg(R8, 0x00000000) returns 0x00 (0000ms, 0277ms total)
+T5300 001:223 JLINK_WriteReg(R9, 0x200000EC) returns 0x00 (0000ms, 0277ms total)
+T5300 001:223 JLINK_WriteReg(R10, 0x00000000) returns 0x00 (0000ms, 0277ms total)
+T5300 001:223 JLINK_WriteReg(R11, 0x00000000) returns 0x00 (0000ms, 0277ms total)
+T5300 001:223 JLINK_WriteReg(R12, 0x00000000) returns 0x00 (0000ms, 0277ms total)
+T5300 001:223 JLINK_WriteReg(R13 (SP), 0x20002000) returns 0x00 (0000ms, 0277ms total)
+T5300 001:223 JLINK_WriteReg(R14, 0x20000001) returns 0x00 (0000ms, 0277ms total)
+T5300 001:223 JLINK_WriteReg(R15 (PC), 0x20000044) returns 0x00 (0000ms, 0277ms total)
+T5300 001:223 JLINK_WriteReg(XPSR, 0x01000000) returns 0x00 (0000ms, 0277ms total)
+T5300 001:223 JLINK_WriteReg(MSP, 0x20002000) returns 0x00 (0000ms, 0277ms total)
+T5300 001:223 JLINK_WriteReg(PSP, 0x20002000) returns 0x00 (0001ms, 0278ms total)
+T5300 001:224 JLINK_WriteReg(CFBP, 0x00000000) returns 0x00 (0000ms, 0278ms total)
+T5300 001:224 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) -- CPU_ReadMem(4 bytes @ 0x20000000) -- CPU_WriteMem(4 bytes @ 0x20000000) -- CPU_ReadMem(4 bytes @ 0x20000000) -- CPU_WriteMem(4 bytes @ 0x20000000) -- CPU_ReadMem(2 bytes @ 0x20000000) returns 0x00000009 (0004ms, 0282ms total)
+T5300 001:228 JLINK_Go() -- CPU_WriteMem(2 bytes @ 0x20000000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0006ms, 0288ms total)
+T5300 001:235 JLINK_IsHalted() -- CPU_ReadMem(2 bytes @ 0x20000000) returns TRUE (0012ms, 0301ms total)
+T5300 001:247 JLINK_ReadReg(R15 (PC)) returns 0x20000000 (0000ms, 0289ms total)
+T5300 001:247 JLINK_ClrBPEx(BPHandle = 0x00000009) returns 0x00 (0000ms, 0289ms total)
+T5300 001:247 JLINK_ReadReg(R0) returns 0x00000000 (0000ms, 0289ms total)
+T5300 001:248 JLINK_WriteMem(0x200000F4, 0x030C Bytes, ...) - Data: E0 02 00 20 D9 00 00 10 E1 00 00 10 E3 00 00 10 ... -- CPU_WriteMem(780 bytes @ 0x200000F4) returns 0x30C (0020ms, 0309ms total)
+T5300 001:268 JLINK_WriteMem(0x20000400, 0x0400 Bytes, ...) - Data: CD FB FF FF F0 B5 1F B4 06 46 00 20 82 B0 05 46 ... -- CPU_WriteMem(1024 bytes @ 0x20000400) returns 0x400 (0027ms, 0336ms total)
+T5300 001:295 JLINK_WriteMem(0x20000800, 0x0400 Bytes, ...) - Data: 70 B5 4B 00 5B 08 03 43 0B D0 4B 00 5C 0D 00 26 ... -- CPU_WriteMem(1024 bytes @ 0x20000800) returns 0x400 (0027ms, 0363ms total)
+T5300 001:322 JLINK_WriteMem(0x20000C00, 0x0400 Bytes, ...) - Data: 2A 48 87 88 38 46 FF F7 A1 FB 2B 49 08 60 08 E0 ... -- CPU_WriteMem(1024 bytes @ 0x20000C00) returns 0x400 (0027ms, 0390ms total)
+T5300 001:349 JLINK_WriteMem(0x20001000, 0x00F4 Bytes, ...) - Data: 8A 40 10 43 01 4A 50 61 00 20 70 47 00 00 02 40 ... -- CPU_WriteMem(244 bytes @ 0x20001000) returns 0xF4 (0007ms, 0397ms total)
+T5300 001:356 JLINK_WriteReg(R0, 0x10000000) returns 0x00 (0000ms, 0397ms total)
+T5300 001:356 JLINK_WriteReg(R1, 0x00001000) returns 0x00 (0000ms, 0397ms total)
+T5300 001:356 JLINK_WriteReg(R2, 0x200000F4) returns 0x00 (0000ms, 0397ms total)
+T5300 001:356 JLINK_WriteReg(R3, 0x00000000) returns 0x00 (0000ms, 0397ms total)
+T5300 001:356 JLINK_WriteReg(R4, 0x00000000) returns 0x00 (0000ms, 0397ms total)
+T5300 001:356 JLINK_WriteReg(R5, 0x00000000) returns 0x00 (0001ms, 0398ms total)
+T5300 001:357 JLINK_WriteReg(R6, 0x00000000) returns 0x00 (0000ms, 0398ms total)
+T5300 001:357 JLINK_WriteReg(R7, 0x00000000) returns 0x00 (0000ms, 0398ms total)
+T5300 001:357 JLINK_WriteReg(R8, 0x00000000) returns 0x00 (0000ms, 0398ms total)
+T5300 001:357 JLINK_WriteReg(R9, 0x200000EC) returns 0x00 (0000ms, 0398ms total)
+T5300 001:357 JLINK_WriteReg(R10, 0x00000000) returns 0x00 (0000ms, 0398ms total)
+T5300 001:357 JLINK_WriteReg(R11, 0x00000000) returns 0x00 (0000ms, 0398ms total)
+T5300 001:357 JLINK_WriteReg(R12, 0x00000000) returns 0x00 (0000ms, 0398ms total)
+T5300 001:357 JLINK_WriteReg(R13 (SP), 0x20002000) returns 0x00 (0000ms, 0398ms total)
+T5300 001:357 JLINK_WriteReg(R14, 0x20000001) returns 0x00 (0000ms, 0398ms total)
+T5300 001:357 JLINK_WriteReg(R15 (PC), 0x200000B8) returns 0x00 (0000ms, 0398ms total)
+T5300 001:357 JLINK_WriteReg(XPSR, 0x01000000) returns 0x00 (0000ms, 0398ms total)
+T5300 001:357 JLINK_WriteReg(MSP, 0x20002000) returns 0x00 (0000ms, 0398ms total)
+T5300 001:357 JLINK_WriteReg(PSP, 0x20002000) returns 0x00 (0000ms, 0398ms total)
+T5300 001:357 JLINK_WriteReg(CFBP, 0x00000000) returns 0x00 (0000ms, 0398ms total)
+T5300 001:357 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) returns 0x0000000A (0000ms, 0398ms total)
+T5300 001:357 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0006ms, 0404ms total)
+T5300 001:363 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:371 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:375 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:379 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:383 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:388 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:391 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:396 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:401 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:404 JLINK_IsHalted() returns FALSE (0002ms, 0406ms total)
+T5300 001:409 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:413 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:417 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:420 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:424 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:427 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:432 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:435 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:439 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:442 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:446 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:449 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:454 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:459 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:462 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:466 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:470 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:480 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:483 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:486 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:490 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:493 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:496 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:499 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:503 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:506 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:509 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:512 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:515 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:518 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:522 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:524 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:526 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:530 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:533 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:535 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:539 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:542 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:545 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:548 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:551 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:554 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:557 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:560 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:563 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:566 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:570 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:573 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:575 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:577 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:587 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:590 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:593 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:598 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:603 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:606 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:609 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:612 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:616 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:619 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:623 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:626 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:628 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:632 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:635 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:640 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:643 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:648 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:652 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:654 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:657 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:662 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:665 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:668 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:671 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:675 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:678 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:680 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:683 JLINK_IsHalted() returns FALSE (0001ms, 0405ms total)
+T5300 001:686 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:690 JLINK_IsHalted() returns FALSE (0000ms, 0404ms total)
+T5300 001:697 JLINK_IsHalted() -- CPU_ReadMem(2 bytes @ 0x20000000) returns TRUE (0012ms, 0416ms total)
+T5300 001:709 JLINK_ReadReg(R15 (PC)) returns 0x20000000 (0000ms, 0404ms total)
+T5300 001:709 JLINK_ClrBPEx(BPHandle = 0x0000000A) returns 0x00 (0000ms, 0404ms total)
+T5300 001:709 JLINK_ReadReg(R0) returns 0x00000000 (0000ms, 0404ms total)
+T5300 001:710 JLINK_WriteMem(0x200000F4, 0x030C Bytes, ...) - Data: C8 60 04 48 00 68 40 1C 02 49 08 60 70 47 00 00 ... -- CPU_WriteMem(780 bytes @ 0x200000F4) returns 0x30C (0020ms, 0424ms total)
+T5300 001:730 JLINK_WriteMem(0x20000400, 0x0400 Bytes, ...) - Data: 40 69 89 14 08 43 37 49 48 61 08 46 40 69 61 14 ... -- CPU_WriteMem(1024 bytes @ 0x20000400) returns 0x400 (0028ms, 0452ms total)
+T5300 001:758 JLINK_WriteMem(0x20000800, 0x0400 Bytes, ...) - Data: 6D 1C 02 90 0B E0 02 99 0A 22 51 43 30 39 40 18 ... -- CPU_WriteMem(1024 bytes @ 0x20000800) returns 0x400 (0027ms, 0479ms total)
+T5300 001:785 JLINK_WriteMem(0x20000C00, 0x0400 Bytes, ...) - Data: 77 FC 70 BD 00 10 00 40 0E B5 FF F7 B7 F9 FE F7 ... -- CPU_WriteMem(1024 bytes @ 0x20000C00) returns 0x400 (0027ms, 0506ms total)
+T5300 001:812 JLINK_WriteMem(0x20001000, 0x00F4 Bytes, ...) - Data: 31 4A 32 4B FE F7 8B FB 2A 46 33 46 FE F7 90 FB ... -- CPU_WriteMem(244 bytes @ 0x20001000) returns 0xF4 (0007ms, 0513ms total)
+T5300 001:819 JLINK_WriteReg(R0, 0x10001000) returns 0x00 (0000ms, 0513ms total)
+T5300 001:819 JLINK_WriteReg(R1, 0x00001000) returns 0x00 (0000ms, 0513ms total)
+T5300 001:819 JLINK_WriteReg(R2, 0x200000F4) returns 0x00 (0000ms, 0513ms total)
+T5300 001:819 JLINK_WriteReg(R3, 0x00000000) returns 0x00 (0000ms, 0513ms total)
+T5300 001:819 JLINK_WriteReg(R4, 0x00000000) returns 0x00 (0001ms, 0514ms total)
+T5300 001:820 JLINK_WriteReg(R5, 0x00000000) returns 0x00 (0000ms, 0514ms total)
+T5300 001:820 JLINK_WriteReg(R6, 0x00000000) returns 0x00 (0000ms, 0514ms total)
+T5300 001:820 JLINK_WriteReg(R7, 0x00000000) returns 0x00 (0000ms, 0514ms total)
+T5300 001:820 JLINK_WriteReg(R8, 0x00000000) returns 0x00 (0000ms, 0514ms total)
+T5300 001:820 JLINK_WriteReg(R9, 0x200000EC) returns 0x00 (0000ms, 0514ms total)
+T5300 001:820 JLINK_WriteReg(R10, 0x00000000) returns 0x00 (0000ms, 0514ms total)
+T5300 001:820 JLINK_WriteReg(R11, 0x00000000) returns 0x00 (0000ms, 0514ms total)
+T5300 001:820 JLINK_WriteReg(R12, 0x00000000) returns 0x00 (0000ms, 0514ms total)
+T5300 001:820 JLINK_WriteReg(R13 (SP), 0x20002000) returns 0x00 (0000ms, 0514ms total)
+T5300 001:820 JLINK_WriteReg(R14, 0x20000001) returns 0x00 (0000ms, 0514ms total)
+T5300 001:820 JLINK_WriteReg(R15 (PC), 0x200000B8) returns 0x00 (0000ms, 0514ms total)
+T5300 001:820 JLINK_WriteReg(XPSR, 0x01000000) returns 0x00 (0000ms, 0514ms total)
+T5300 001:820 JLINK_WriteReg(MSP, 0x20002000) returns 0x00 (0000ms, 0514ms total)
+T5300 001:820 JLINK_WriteReg(PSP, 0x20002000) returns 0x00 (0000ms, 0514ms total)
+T5300 001:820 JLINK_WriteReg(CFBP, 0x00000000) returns 0x00 (0000ms, 0514ms total)
+T5300 001:820 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) returns 0x0000000B (0000ms, 0514ms total)
+T5300 001:820 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0007ms, 0521ms total)
+T5300 001:827 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:836 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:839 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:842 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:845 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:848 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:851 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:854 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:857 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:860 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:863 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:866 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:869 JLINK_IsHalted() returns FALSE (0002ms, 0523ms total)
+T5300 001:873 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:876 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:879 JLINK_IsHalted() returns FALSE (0000ms, 0521ms total)
+T5300 001:882 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:885 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:888 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:891 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:896 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:899 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:902 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:905 JLINK_IsHalted() returns FALSE (0000ms, 0521ms total)
+T5300 001:907 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:915 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:918 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:921 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:924 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:927 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:929 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:932 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:936 JLINK_IsHalted() returns FALSE (0000ms, 0521ms total)
+T5300 001:938 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:940 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:943 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:946 JLINK_IsHalted() returns FALSE (0000ms, 0521ms total)
+T5300 001:949 JLINK_IsHalted() returns FALSE (0000ms, 0521ms total)
+T5300 001:952 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:957 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:960 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:963 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:965 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:969 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:972 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:975 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:978 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:981 JLINK_IsHalted() returns FALSE (0002ms, 0523ms total)
+T5300 001:984 JLINK_IsHalted() returns FALSE (0000ms, 0521ms total)
+T5300 001:987 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:991 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:994 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 001:996 JLINK_IsHalted() returns FALSE (0000ms, 0521ms total)
+T5300 001:998 JLINK_IsHalted() returns FALSE (0000ms, 0521ms total)
+T5300 002:001 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:004 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:007 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:010 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:013 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:016 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:024 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:027 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:030 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:033 JLINK_IsHalted() returns FALSE (0000ms, 0521ms total)
+T5300 002:035 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:038 JLINK_IsHalted() returns FALSE (0000ms, 0521ms total)
+T5300 002:040 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:043 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:046 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:049 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:052 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:055 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:058 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:060 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:064 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:067 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:070 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:073 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:076 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:080 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:083 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:086 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:089 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:092 JLINK_IsHalted() returns FALSE (0000ms, 0521ms total)
+T5300 002:096 JLINK_IsHalted() returns FALSE (0000ms, 0521ms total)
+T5300 002:099 JLINK_IsHalted() returns FALSE (0000ms, 0521ms total)
+T5300 002:102 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:105 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:108 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:111 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:114 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:117 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:119 JLINK_IsHalted() returns FALSE (0002ms, 0523ms total)
+T5300 002:123 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:130 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:133 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:136 JLINK_IsHalted() returns FALSE (0000ms, 0521ms total)
+T5300 002:139 JLINK_IsHalted() returns FALSE (0002ms, 0523ms total)
+T5300 002:144 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:147 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:150 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:153 JLINK_IsHalted() returns FALSE (0000ms, 0521ms total)
+T5300 002:155 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:157 JLINK_IsHalted() returns FALSE (0000ms, 0521ms total)
+T5300 002:159 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:162 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:165 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:168 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:170 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:173 JLINK_IsHalted() returns FALSE (0000ms, 0521ms total)
+T5300 002:175 JLINK_IsHalted() returns FALSE (0001ms, 0522ms total)
+T5300 002:178 JLINK_IsHalted() -- CPU_ReadMem(2 bytes @ 0x20000000) returns TRUE (0011ms, 0532ms total)
+T5300 002:189 JLINK_ReadReg(R15 (PC)) returns 0x20000000 (0000ms, 0521ms total)
+T5300 002:189 JLINK_ClrBPEx(BPHandle = 0x0000000B) returns 0x00 (0000ms, 0521ms total)
+T5300 002:189 JLINK_ReadReg(R0) returns 0x00000000 (0000ms, 0521ms total)
+T5300 002:191 JLINK_WriteMem(0x200000F4, 0x030C Bytes, ...) - Data: 07 DA 35 22 30 46 39 46 FE F7 80 FB 06 46 34 20 ... -- CPU_WriteMem(780 bytes @ 0x200000F4) returns 0x30C (0021ms, 0542ms total)
+T5300 002:212 JLINK_WriteMem(0x20000400, 0x0400 Bytes, ...) - Data: FE F7 E2 F8 03 9B 04 9A FE F7 10 FA 1E D2 02 20 ... -- CPU_WriteMem(1024 bytes @ 0x20000400) returns 0x400 (0027ms, 0569ms total)
+T5300 002:239 JLINK_WriteMem(0x20000800, 0x0400 Bytes, ...) - Data: 55 55 D5 3F 01 41 1D A9 60 74 D1 3F 65 DB C9 93 ... -- CPU_WriteMem(1024 bytes @ 0x20000800) returns 0x400 (0027ms, 0596ms total)
+T5300 002:266 JLINK_WriteMem(0x20000C00, 0x0400 Bytes, ...) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ... -- CPU_WriteMem(1024 bytes @ 0x20000C00) returns 0x400 (0027ms, 0623ms total)
+T5300 002:293 JLINK_WriteMem(0x20001000, 0x00F4 Bytes, ...) - Data: FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ... -- CPU_WriteMem(244 bytes @ 0x20001000) returns 0xF4 (0008ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(R0, 0x10002000) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(R1, 0x00000804) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(R2, 0x200000F4) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(R3, 0x00000000) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(R4, 0x00000000) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(R5, 0x00000000) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(R6, 0x00000000) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(R7, 0x00000000) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(R8, 0x00000000) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(R9, 0x200000EC) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(R10, 0x00000000) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(R11, 0x00000000) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(R12, 0x00000000) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(R13 (SP), 0x20002000) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(R14, 0x20000001) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(R15 (PC), 0x200000B8) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(XPSR, 0x01000000) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(MSP, 0x20002000) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(PSP, 0x20002000) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_WriteReg(CFBP, 0x00000000) returns 0x00 (0000ms, 0631ms total)
+T5300 002:301 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) returns 0x0000000C (0000ms, 0631ms total)
+T5300 002:301 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0007ms, 0638ms total)
+T5300 002:308 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:316 JLINK_IsHalted() returns FALSE (0000ms, 0638ms total)
+T5300 002:318 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:321 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:324 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:326 JLINK_IsHalted() returns FALSE (0000ms, 0638ms total)
+T5300 002:330 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:334 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:337 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:340 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:343 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:349 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:351 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:354 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:357 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:360 JLINK_IsHalted() returns FALSE (0002ms, 0640ms total)
+T5300 002:364 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:367 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:370 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:373 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:376 JLINK_IsHalted() returns FALSE (0000ms, 0638ms total)
+T5300 002:378 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:381 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:384 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:387 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:390 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:395 JLINK_IsHalted() returns FALSE (0000ms, 0638ms total)
+T5300 002:398 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:402 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:404 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:408 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:411 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:414 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:417 JLINK_IsHalted() returns FALSE (0000ms, 0638ms total)
+T5300 002:420 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:423 JLINK_IsHalted() returns FALSE (0000ms, 0638ms total)
+T5300 002:425 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:428 JLINK_IsHalted() returns FALSE (0000ms, 0638ms total)
+T5300 002:431 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:434 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:437 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:440 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:443 JLINK_IsHalted() returns FALSE (0002ms, 0640ms total)
+T5300 002:447 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:450 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:452 JLINK_IsHalted() returns FALSE (0000ms, 0638ms total)
+T5300 002:460 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:463 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:466 JLINK_IsHalted() returns FALSE (0000ms, 0638ms total)
+T5300 002:468 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:471 JLINK_IsHalted() returns FALSE (0001ms, 0639ms total)
+T5300 002:474 JLINK_IsHalted() returns FALSE (0000ms, 0638ms total)
+T5300 002:476 JLINK_IsHalted() -- CPU_ReadMem(2 bytes @ 0x20000000) returns TRUE (0012ms, 0650ms total)
+T5300 002:488 JLINK_ReadReg(R15 (PC)) returns 0x20000000 (0000ms, 0638ms total)
+T5300 002:488 JLINK_ClrBPEx(BPHandle = 0x0000000C) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_ReadReg(R0) returns 0x00000000 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(R0, 0x00000002) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(R1, 0x00000804) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(R2, 0x200000F4) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(R3, 0x00000000) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(R4, 0x00000000) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(R5, 0x00000000) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(R6, 0x00000000) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(R7, 0x00000000) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(R8, 0x00000000) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(R9, 0x200000EC) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(R10, 0x00000000) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(R11, 0x00000000) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(R12, 0x00000000) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(R13 (SP), 0x20002000) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(R14, 0x20000001) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(R15 (PC), 0x2000006E) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(XPSR, 0x01000000) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(MSP, 0x20002000) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(PSP, 0x20002000) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_WriteReg(CFBP, 0x00000000) returns 0x00 (0000ms, 0638ms total)
+T5300 002:488 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) returns 0x0000000D (0000ms, 0638ms total)
+T5300 002:488 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0007ms, 0645ms total)
+T5300 002:495 JLINK_IsHalted() -- CPU_ReadMem(2 bytes @ 0x20000000) returns TRUE (0011ms, 0656ms total)
+T5300 002:506 JLINK_ReadReg(R15 (PC)) returns 0x20000000 (0000ms, 0645ms total)
+T5300 002:506 JLINK_ClrBPEx(BPHandle = 0x0000000D) returns 0x00 (0000ms, 0645ms total)
+T5300 002:506 JLINK_ReadReg(R0) returns 0x00000000 (0000ms, 0645ms total)
+T5300 002:569 JLINK_WriteMem(0x20000000, 0x00F4 Bytes, ...) - Data: 00 BE 0A E0 0D 78 2D 06 68 40 08 24 40 00 00 D3 ... -- CPU_WriteMem(244 bytes @ 0x20000000) returns 0xF4 (0006ms, 0651ms total)
+T5300 002:575 JLINK_WriteReg(R0, 0x10000000) returns 0x00 (0000ms, 0651ms total)
+T5300 002:575 JLINK_WriteReg(R1, 0x00B71B00) returns 0x00 (0000ms, 0651ms total)
+T5300 002:575 JLINK_WriteReg(R2, 0x00000003) returns 0x00 (0000ms, 0651ms total)
+T5300 002:575 JLINK_WriteReg(R3, 0x00000000) returns 0x00 (0000ms, 0651ms total)
+T5300 002:575 JLINK_WriteReg(R4, 0x00000000) returns 0x00 (0000ms, 0651ms total)
+T5300 002:575 JLINK_WriteReg(R5, 0x00000000) returns 0x00 (0000ms, 0651ms total)
+T5300 002:575 JLINK_WriteReg(R6, 0x00000000) returns 0x00 (0000ms, 0651ms total)
+T5300 002:575 JLINK_WriteReg(R7, 0x00000000) returns 0x00 (0000ms, 0651ms total)
+T5300 002:575 JLINK_WriteReg(R8, 0x00000000) returns 0x00 (0000ms, 0651ms total)
+T5300 002:575 JLINK_WriteReg(R9, 0x200000EC) returns 0x00 (0000ms, 0651ms total)
+T5300 002:575 JLINK_WriteReg(R10, 0x00000000) returns 0x00 (0000ms, 0651ms total)
+T5300 002:575 JLINK_WriteReg(R11, 0x00000000) returns 0x00 (0000ms, 0651ms total)
+T5300 002:575 JLINK_WriteReg(R12, 0x00000000) returns 0x00 (0000ms, 0651ms total)
+T5300 002:575 JLINK_WriteReg(R13 (SP), 0x20002000) returns 0x00 (0000ms, 0651ms total)
+T5300 002:575 JLINK_WriteReg(R14, 0x20000001) returns 0x00 (0000ms, 0651ms total)
+T5300 002:575 JLINK_WriteReg(R15 (PC), 0x20000044) returns 0x00 (0000ms, 0651ms total)
+T5300 002:575 JLINK_WriteReg(XPSR, 0x01000000) returns 0x00 (0000ms, 0651ms total)
+T5300 002:575 JLINK_WriteReg(MSP, 0x20002000) returns 0x00 (0000ms, 0651ms total)
+T5300 002:575 JLINK_WriteReg(PSP, 0x20002000) returns 0x00 (0002ms, 0653ms total)
+T5300 002:577 JLINK_WriteReg(CFBP, 0x00000000) returns 0x00 (0000ms, 0653ms total)
+T5300 002:577 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) -- CPU_ReadMem(4 bytes @ 0x20000000) -- CPU_WriteMem(4 bytes @ 0x20000000) -- CPU_ReadMem(4 bytes @ 0x20000000) -- CPU_WriteMem(4 bytes @ 0x20000000) -- CPU_ReadMem(2 bytes @ 0x20000000) returns 0x0000000E (0004ms, 0657ms total)
+T5300 002:581 JLINK_Go() -- CPU_WriteMem(2 bytes @ 0x20000000) -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0007ms, 0664ms total)
+T5300 002:588 JLINK_IsHalted() -- CPU_ReadMem(2 bytes @ 0x20000000) returns TRUE (0012ms, 0676ms total)
+T5300 002:600 JLINK_ReadReg(R15 (PC)) returns 0x20000000 (0000ms, 0664ms total)
+T5300 002:600 JLINK_ClrBPEx(BPHandle = 0x0000000E) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_ReadReg(R0) returns 0x00000000 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(R0, 0xFFFFFFFF) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(R1, 0x10000000) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(R2, 0x00002804) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(R3, 0x04C11DB7) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(R4, 0x00000000) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(R5, 0x00000000) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(R6, 0x00000000) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(R7, 0x00000000) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(R8, 0x00000000) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(R9, 0x200000EC) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(R10, 0x00000000) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(R11, 0x00000000) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(R12, 0x00000000) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(R13 (SP), 0x20002000) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(R14, 0x20000001) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(R15 (PC), 0x20000002) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(XPSR, 0x01000000) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(MSP, 0x20002000) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(PSP, 0x20002000) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_WriteReg(CFBP, 0x00000000) returns 0x00 (0000ms, 0664ms total)
+T5300 002:600 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) returns 0x0000000F (0000ms, 0664ms total)
+T5300 002:600 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0005ms, 0669ms total)
+T5300 002:605 JLINK_IsHalted() returns FALSE (0002ms, 0671ms total)
+T5300 002:617 JLINK_IsHalted() returns FALSE (0001ms, 0670ms total)
+T5300 002:620 JLINK_IsHalted() returns FALSE (0000ms, 0669ms total)
+T5300 002:623 JLINK_IsHalted() returns FALSE (0000ms, 0669ms total)
+T5300 002:625 JLINK_IsHalted() returns FALSE (0001ms, 0670ms total)
+T5300 002:628 JLINK_IsHalted() returns FALSE (0000ms, 0669ms total)
+T5300 002:630 JLINK_IsHalted() returns FALSE (0000ms, 0669ms total)
+T5300 002:632 JLINK_IsHalted() returns FALSE (0001ms, 0670ms total)
+T5300 002:635 JLINK_IsHalted() returns FALSE (0001ms, 0670ms total)
+T5300 002:638 JLINK_IsHalted() returns FALSE (0000ms, 0669ms total)
+T5300 002:643 JLINK_IsHalted() returns FALSE (0001ms, 0670ms total)
+T5300 002:646 JLINK_IsHalted() returns FALSE (0000ms, 0669ms total)
+T5300 002:649 JLINK_IsHalted() returns FALSE (0001ms, 0670ms total)
+T5300 002:652 JLINK_IsHalted() returns FALSE (0000ms, 0669ms total)
+T5300 002:654 JLINK_IsHalted() -- CPU_ReadMem(2 bytes @ 0x20000000) returns TRUE (0012ms, 0681ms total)
+T5300 002:666 JLINK_ReadReg(R15 (PC)) returns 0x20000000 (0000ms, 0669ms total)
+T5300 002:666 JLINK_ClrBPEx(BPHandle = 0x0000000F) returns 0x00 (0000ms, 0669ms total)
+T5300 002:666 JLINK_ReadReg(R0) returns 0x627DDFA5 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(R0, 0x00000003) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(R1, 0x10000000) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(R2, 0x00002804) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(R3, 0x04C11DB7) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(R4, 0x00000000) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(R5, 0x00000000) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(R6, 0x00000000) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(R7, 0x00000000) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(R8, 0x00000000) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(R9, 0x200000EC) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(R10, 0x00000000) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(R11, 0x00000000) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(R12, 0x00000000) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(R13 (SP), 0x20002000) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(R14, 0x20000001) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(R15 (PC), 0x2000006E) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(XPSR, 0x01000000) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(MSP, 0x20002000) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(PSP, 0x20002000) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_WriteReg(CFBP, 0x00000000) returns 0x00 (0000ms, 0669ms total)
+T5300 002:667 JLINK_SetBPEx(Addr = 0x20000000, Type = 0xFFFFFFF2) returns 0x00000010 (0000ms, 0669ms total)
+T5300 002:667 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0005ms, 0674ms total)
+T5300 002:672 JLINK_IsHalted() -- CPU_ReadMem(2 bytes @ 0x20000000) returns TRUE (0013ms, 0687ms total)
+T5300 002:685 JLINK_ReadReg(R15 (PC)) returns 0x20000000 (0000ms, 0674ms total)
+T5300 002:685 JLINK_ClrBPEx(BPHandle = 0x00000010) returns 0x00 (0000ms, 0674ms total)
+T5300 002:685 JLINK_ReadReg(R0) returns 0x00000000 (0000ms, 0674ms total)
+T5300 002:740 JLINK_WriteMem(0x20000000, 0x0002 Bytes, ...) - Data: FE E7 -- CPU_WriteMem(2 bytes @ 0x20000000) returns 0x02 (0001ms, 0675ms total)
+T5300 002:741 JLINK_SetResetType(JLINKARM_CM3_RESET_TYPE_NORMAL) returns JLINKARM_CM3_RESET_TYPE_NORMAL (0000ms, 0675ms total)
+T5300 002:741 JLINK_Reset() -- CPU_ReadMem(4 bytes @ 0x20000000) -- CPU_WriteMem(4 bytes @ 0x20000000) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) >0x35 TIF> -- CPU_WriteMem(4 bytes @ 0xE000ED0C) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE000EDFC) -- CPU is running -- CPU_ReadMem(4 bytes @ 0xE000EDF0) -- CPU_WriteMem(4 bytes @ 0xE0002000) -- CPU_ReadMem(4 bytes @ 0xE000EDFC)
+ -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) (0031ms, 0706ms total)
+T5300 002:772 JLINK_Go() -- CPU_ReadMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0001000) -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU_WriteMem(4 bytes @ 0xE0002014) -- CPU_WriteMem(4 bytes @ 0xE0001004) (0008ms, 0714ms total)
+T5300 002:792 JLINK_Close() -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002008) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE000200C) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002010) -- CPU is running -- CPU_WriteMem(4 bytes @ 0xE0002014) (0021ms, 0735ms total)
+T5300 002:792 (0021ms, 0735ms total)
+T5300 002:792 Closed (0021ms, 0735ms total)
diff --git a/Listings/ENS001_BASIC_PRJ.map b/Listings/ENS001_BASIC_PRJ.map
index af4fe6b..806232e 100644
--- a/Listings/ENS001_BASIC_PRJ.map
+++ b/Listings/ENS001_BASIC_PRJ.map
@@ -1,9 +1,25 @@
-Component: ARM Compiler 5.06 update 6 (build 750) Tool: armlink [4d35ed]
+Component: ARM Compiler 5.06 update 7 (build 960) Tool: armlink [4d3601]
==============================================================================
Section Cross References
+ mian.o(i.ParseUART_EMS_Packet) refers to mian.o(i.CalculateCRC16_CCITT_FALSE) for CalculateCRC16_CCITT_FALSE
+ mian.o(i.UART_ReceiveData) refers to ens1_uart.o(i.READ_UART_RCVBuff) for READ_UART_RCVBuff
+ mian.o(i.UART_ReceiveData) refers to ens1_uart.o(i.UART_RX_FIFO_EMPTY) for UART_RX_FIFO_EMPTY
+ mian.o(i.UART_ReceiveData) refers to ens1_uart.o(.data) for uart_rx_count
+ mian.o(i.UART_ReceiveData) refers to ens1_uart.o(.bss) for uart_rx_buffer
+ mian.o(i.UART_ReceiveDataFromISR) refers to ens1_uart.o(i.UART_RX_FIFO_EMPTY) for UART_RX_FIFO_EMPTY
+ mian.o(i.UART_ReceiveDataFromISR) refers to ens1_uart.o(i.READ_UART_RCVBuff) for READ_UART_RCVBuff
+ mian.o(i.UART_ReceiveDataFromISR) refers to ens1_uart.o(.data) for uart_rx_count
+ mian.o(i.UART_ReceiveDataFromISR) refers to ens1_uart.o(.bss) for uart_rx_buffer
+ mian.o(i.UART_SendData) refers to ens1_uart.o(i.UART_TX_FIFO_FULL) for UART_TX_FIFO_FULL
+ mian.o(i.UART_SendData) refers to ens1_uart.o(i.WRITE_UART_THRBuff) for WRITE_UART_THRBuff
+ mian.o(i.UpdateEMS_ConfigFromUART) refers to ens1_wavegen.o(i.EMS_Stop) for EMS_Stop
+ mian.o(i.UpdateEMS_ConfigFromUART) refers to printf8.o(i.__0printf$8) for __2printf
+ mian.o(i.UpdateEMS_ConfigFromUART) refers to ens1_wavegen.o(i.EMS_Configure) for EMS_Configure
+ mian.o(i.UpdateEMS_ConfigFromUART) refers to ens1_wavegen.o(i.EMS_Start) for EMS_Start
+ mian.o(i.UpdateEMS_ConfigFromUART) refers to mian.o(.constdata) for .constdata
mian.o(i.main) refers to ens1_mtp.o(i.MTP_init) for MTP_init
mian.o(i.main) refers to ens1_clock.o(i.ClockInit) for ClockInit
mian.o(i.main) refers to ens1_gpio.o(i.GPIO_IO_Init) for GPIO_IO_Init
@@ -23,6 +39,10 @@ Section Cross References
ens1_uart.o(i.UART1_Handler) refers to ens1_uart.o(i.NVIC_ClearPendingIRQ) for NVIC_ClearPendingIRQ
ens1_uart.o(i.UART1_Handler) refers to ens1_uart.o(i.UART_INT_TYPE) for UART_INT_TYPE
ens1_uart.o(i.UART1_Handler) refers to ens1_uart.o(i.UartPutc) for UartPutc
+ ens1_uart.o(i.UART1_Handler) refers to mian.o(i.ParseUART_EMS_Packet) for ParseUART_EMS_Packet
+ ens1_uart.o(i.UART1_Handler) refers to mian.o(i.UpdateEMS_ConfigFromUART) for UpdateEMS_ConfigFromUART
+ ens1_uart.o(i.UART1_Handler) refers to ens1_uart.o(.data) for uart_rx_count
+ ens1_uart.o(i.UART1_Handler) refers to ens1_uart.o(.bss) for uart_rx_buffer
ens1_uart.o(i.UART_ITConfig) refers to ens1_uart.o(i.NVIC_DisableIRQ) for NVIC_DisableIRQ
ens1_uart.o(i.UART_ITConfig) refers to ens1_uart.o(i.NVIC_ClearPendingIRQ) for NVIC_ClearPendingIRQ
ens1_uart.o(i.UART_ITConfig) refers to ens1_uart.o(i.NVIC_EnableIRQ) for NVIC_EnableIRQ
@@ -58,7 +78,6 @@ Section Cross References
ens1_timer.o(i.CMSDK_dualtimer_setup_periodic) refers to ens1_timer.o(i.CMSDK_dualtimer_irq_clear) for CMSDK_dualtimer_irq_clear
ens1_timer.o(i.Fuse_result) refers to ens1_timer.o(i.Time_Manager_GetFlags) for Time_Manager_GetFlags
ens1_timer.o(i.Fuse_result) refers to ens1_wavegen.o(i.EMS_Process) for EMS_Process
- ens1_timer.o(i.Fuse_result) refers to ens1_gpio.o(i.GPIO_Overturn) for GPIO_Overturn
ens1_timer.o(i.Fuse_result) refers to ens1_wavegen.o(i.EMS_Start) for EMS_Start
ens1_timer.o(i.Fuse_result) refers to ens1_wavegen.o(i.EMS_Stop) for EMS_Stop
ens1_timer.o(i.Fuse_result) refers to ens1_timer.o(.data) for ems_control_count
@@ -79,10 +98,10 @@ Section Cross References
ens1_timer.o(i.TIMER1_Init) refers to ens1_timer.o(i.CMSDK_timer_Init) for CMSDK_timer_Init
ens1_timer.o(i.TIMER1_Init) refers to ens1_timer.o(i.NVIC_EnableIRQ) for NVIC_EnableIRQ
ens1_timer.o(i.TIMER1_Init) refers to ens1_clock.o(.data) for APB_Clock_Freq
- ens1_timer.o(i.Time_Manager_ClearFlags) refers to memseta.o(.text) for __aeabi_memclr4
+ ens1_timer.o(i.Time_Manager_ClearFlags) refers to memseta.o(.text) for __aeabi_memclr
ens1_timer.o(i.Time_Manager_ClearFlags) refers to ens1_timer.o(.data) for g_time_flags
ens1_timer.o(i.Time_Manager_GetFlags) refers to ens1_timer.o(.data) for g_time_flags
- ens1_timer.o(i.Time_Manager_Init) refers to memseta.o(.text) for __aeabi_memclr4
+ ens1_timer.o(i.Time_Manager_Init) refers to memseta.o(.text) for __aeabi_memclr
ens1_timer.o(i.Time_Manager_Init) refers to ens1_timer.o(.data) for g_time_flags
ens1_timer.o(i.Time_Manager_Process) refers to ens1_timer.o(i.Fuse_result) for Fuse_result
ens1_timer.o(i.Time_Manager_Process) refers to ens1_timer.o(.data) for g_time_counters
@@ -155,13 +174,250 @@ Section Cross References
pow_x.o(i.__pow$lsc) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
pow_x.o(i.__pow$lsc) refers to pow_x.o(.constdata) for .constdata
pow_x.o(.constdata) refers (Special) to iusefp.o(.text) for __I$use$fp
- entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry10a.o(.ARM.Collect$$$$0000000D) for __rt_final_cpp
- entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry11a.o(.ARM.Collect$$$$0000000F) for __rt_final_exit
+ entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry10a.o(.ARM.Collect$$$$0000000F) for __rt_final_cpp
+ entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry11a.o(.ARM.Collect$$$$00000011) for __rt_final_exit
+ entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry12b.o(.ARM.Collect$$$$0000000E) for __rt_lib_shutdown_fini
entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry7b.o(.ARM.Collect$$$$00000008) for _main_clock
entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry8b.o(.ARM.Collect$$$$0000000A) for _main_cpp_init
entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry9a.o(.ARM.Collect$$$$0000000B) for _main_init
entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry5.o(.ARM.Collect$$$$00000004) for _main_scatterload
entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry2.o(.ARM.Collect$$$$00000001) for _main_stk
+ printfb.o(i.__0fprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
+ printfb.o(i.__0fprintf$bare) refers to retarget.o(i.fputc) for fputc
+ printfb.o(i.__0printf$bare) refers to printfb.o(i._printf_core) for _printf_core
+ printfb.o(i.__0printf$bare) refers to retarget.o(i.fputc) for fputc
+ printfb.o(i.__0printf$bare) refers to retarget.o(.data) for __stdout
+ printfb.o(i.__0snprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
+ printfb.o(i.__0snprintf$bare) refers to printfb.o(i._snputc) for _snputc
+ printfb.o(i.__0sprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
+ printfb.o(i.__0sprintf$bare) refers to printfb.o(i._sputc) for _sputc
+ printfb.o(i.__0vfprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
+ printfb.o(i.__0vfprintf$bare) refers to retarget.o(i.fputc) for fputc
+ printfb.o(i.__0vprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
+ printfb.o(i.__0vprintf$bare) refers to retarget.o(i.fputc) for fputc
+ printfb.o(i.__0vprintf$bare) refers to retarget.o(.data) for __stdout
+ printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
+ printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._snputc) for _snputc
+ printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
+ printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._sputc) for _sputc
+ printf0.o(i.__0fprintf$0) refers to printf0.o(i._printf_core) for _printf_core
+ printf0.o(i.__0fprintf$0) refers to retarget.o(i.fputc) for fputc
+ printf0.o(i.__0printf$0) refers to printf0.o(i._printf_core) for _printf_core
+ printf0.o(i.__0printf$0) refers to retarget.o(i.fputc) for fputc
+ printf0.o(i.__0printf$0) refers to retarget.o(.data) for __stdout
+ printf0.o(i.__0snprintf$0) refers to printf0.o(i._printf_core) for _printf_core
+ printf0.o(i.__0snprintf$0) refers to printf0.o(i._snputc) for _snputc
+ printf0.o(i.__0sprintf$0) refers to printf0.o(i._printf_core) for _printf_core
+ printf0.o(i.__0sprintf$0) refers to printf0.o(i._sputc) for _sputc
+ printf0.o(i.__0vfprintf$0) refers to printf0.o(i._printf_core) for _printf_core
+ printf0.o(i.__0vfprintf$0) refers to retarget.o(i.fputc) for fputc
+ printf0.o(i.__0vprintf$0) refers to printf0.o(i._printf_core) for _printf_core
+ printf0.o(i.__0vprintf$0) refers to retarget.o(i.fputc) for fputc
+ printf0.o(i.__0vprintf$0) refers to retarget.o(.data) for __stdout
+ printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._printf_core) for _printf_core
+ printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._snputc) for _snputc
+ printf0.o(i.__0vsprintf$0) refers to printf0.o(i._printf_core) for _printf_core
+ printf0.o(i.__0vsprintf$0) refers to printf0.o(i._sputc) for _sputc
+ printf1.o(i.__0fprintf$1) refers to printf1.o(i._printf_core) for _printf_core
+ printf1.o(i.__0fprintf$1) refers to retarget.o(i.fputc) for fputc
+ printf1.o(i.__0printf$1) refers to printf1.o(i._printf_core) for _printf_core
+ printf1.o(i.__0printf$1) refers to retarget.o(i.fputc) for fputc
+ printf1.o(i.__0printf$1) refers to retarget.o(.data) for __stdout
+ printf1.o(i.__0snprintf$1) refers to printf1.o(i._printf_core) for _printf_core
+ printf1.o(i.__0snprintf$1) refers to printf1.o(i._snputc) for _snputc
+ printf1.o(i.__0sprintf$1) refers to printf1.o(i._printf_core) for _printf_core
+ printf1.o(i.__0sprintf$1) refers to printf1.o(i._sputc) for _sputc
+ printf1.o(i.__0vfprintf$1) refers to printf1.o(i._printf_core) for _printf_core
+ printf1.o(i.__0vfprintf$1) refers to retarget.o(i.fputc) for fputc
+ printf1.o(i.__0vprintf$1) refers to printf1.o(i._printf_core) for _printf_core
+ printf1.o(i.__0vprintf$1) refers to retarget.o(i.fputc) for fputc
+ printf1.o(i.__0vprintf$1) refers to retarget.o(.data) for __stdout
+ printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._printf_core) for _printf_core
+ printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._snputc) for _snputc
+ printf1.o(i.__0vsprintf$1) refers to printf1.o(i._printf_core) for _printf_core
+ printf1.o(i.__0vsprintf$1) refers to printf1.o(i._sputc) for _sputc
+ printf1.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
+ printf2.o(i.__0fprintf$2) refers to printf2.o(i._printf_core) for _printf_core
+ printf2.o(i.__0fprintf$2) refers to retarget.o(i.fputc) for fputc
+ printf2.o(i.__0printf$2) refers to printf2.o(i._printf_core) for _printf_core
+ printf2.o(i.__0printf$2) refers to retarget.o(i.fputc) for fputc
+ printf2.o(i.__0printf$2) refers to retarget.o(.data) for __stdout
+ printf2.o(i.__0snprintf$2) refers to printf2.o(i._printf_core) for _printf_core
+ printf2.o(i.__0snprintf$2) refers to printf2.o(i._snputc) for _snputc
+ printf2.o(i.__0sprintf$2) refers to printf2.o(i._printf_core) for _printf_core
+ printf2.o(i.__0sprintf$2) refers to printf2.o(i._sputc) for _sputc
+ printf2.o(i.__0vfprintf$2) refers to printf2.o(i._printf_core) for _printf_core
+ printf2.o(i.__0vfprintf$2) refers to retarget.o(i.fputc) for fputc
+ printf2.o(i.__0vprintf$2) refers to printf2.o(i._printf_core) for _printf_core
+ printf2.o(i.__0vprintf$2) refers to retarget.o(i.fputc) for fputc
+ printf2.o(i.__0vprintf$2) refers to retarget.o(.data) for __stdout
+ printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._printf_core) for _printf_core
+ printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._snputc) for _snputc
+ printf2.o(i.__0vsprintf$2) refers to printf2.o(i._printf_core) for _printf_core
+ printf2.o(i.__0vsprintf$2) refers to printf2.o(i._sputc) for _sputc
+ printf3.o(i.__0fprintf$3) refers to printf3.o(i._printf_core) for _printf_core
+ printf3.o(i.__0fprintf$3) refers to retarget.o(i.fputc) for fputc
+ printf3.o(i.__0printf$3) refers to printf3.o(i._printf_core) for _printf_core
+ printf3.o(i.__0printf$3) refers to retarget.o(i.fputc) for fputc
+ printf3.o(i.__0printf$3) refers to retarget.o(.data) for __stdout
+ printf3.o(i.__0snprintf$3) refers to printf3.o(i._printf_core) for _printf_core
+ printf3.o(i.__0snprintf$3) refers to printf3.o(i._snputc) for _snputc
+ printf3.o(i.__0sprintf$3) refers to printf3.o(i._printf_core) for _printf_core
+ printf3.o(i.__0sprintf$3) refers to printf3.o(i._sputc) for _sputc
+ printf3.o(i.__0vfprintf$3) refers to printf3.o(i._printf_core) for _printf_core
+ printf3.o(i.__0vfprintf$3) refers to retarget.o(i.fputc) for fputc
+ printf3.o(i.__0vprintf$3) refers to printf3.o(i._printf_core) for _printf_core
+ printf3.o(i.__0vprintf$3) refers to retarget.o(i.fputc) for fputc
+ printf3.o(i.__0vprintf$3) refers to retarget.o(.data) for __stdout
+ printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._printf_core) for _printf_core
+ printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._snputc) for _snputc
+ printf3.o(i.__0vsprintf$3) refers to printf3.o(i._printf_core) for _printf_core
+ printf3.o(i.__0vsprintf$3) refers to printf3.o(i._sputc) for _sputc
+ printf3.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
+ printf4.o(i.__0fprintf$4) refers to printf4.o(i._printf_core) for _printf_core
+ printf4.o(i.__0fprintf$4) refers to retarget.o(i.fputc) for fputc
+ printf4.o(i.__0printf$4) refers to printf4.o(i._printf_core) for _printf_core
+ printf4.o(i.__0printf$4) refers to retarget.o(i.fputc) for fputc
+ printf4.o(i.__0printf$4) refers to retarget.o(.data) for __stdout
+ printf4.o(i.__0snprintf$4) refers to printf4.o(i._printf_core) for _printf_core
+ printf4.o(i.__0snprintf$4) refers to printf4.o(i._snputc) for _snputc
+ printf4.o(i.__0sprintf$4) refers to printf4.o(i._printf_core) for _printf_core
+ printf4.o(i.__0sprintf$4) refers to printf4.o(i._sputc) for _sputc
+ printf4.o(i.__0vfprintf$4) refers to printf4.o(i._printf_core) for _printf_core
+ printf4.o(i.__0vfprintf$4) refers to retarget.o(i.fputc) for fputc
+ printf4.o(i.__0vprintf$4) refers to printf4.o(i._printf_core) for _printf_core
+ printf4.o(i.__0vprintf$4) refers to retarget.o(i.fputc) for fputc
+ printf4.o(i.__0vprintf$4) refers to retarget.o(.data) for __stdout
+ printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._printf_core) for _printf_core
+ printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._snputc) for _snputc
+ printf4.o(i.__0vsprintf$4) refers to printf4.o(i._printf_core) for _printf_core
+ printf4.o(i.__0vsprintf$4) refers to printf4.o(i._sputc) for _sputc
+ printf4.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
+ printf5.o(i.__0fprintf$5) refers to printf5.o(i._printf_core) for _printf_core
+ printf5.o(i.__0fprintf$5) refers to retarget.o(i.fputc) for fputc
+ printf5.o(i.__0printf$5) refers to printf5.o(i._printf_core) for _printf_core
+ printf5.o(i.__0printf$5) refers to retarget.o(i.fputc) for fputc
+ printf5.o(i.__0printf$5) refers to retarget.o(.data) for __stdout
+ printf5.o(i.__0snprintf$5) refers to printf5.o(i._printf_core) for _printf_core
+ printf5.o(i.__0snprintf$5) refers to printf5.o(i._snputc) for _snputc
+ printf5.o(i.__0sprintf$5) refers to printf5.o(i._printf_core) for _printf_core
+ printf5.o(i.__0sprintf$5) refers to printf5.o(i._sputc) for _sputc
+ printf5.o(i.__0vfprintf$5) refers to printf5.o(i._printf_core) for _printf_core
+ printf5.o(i.__0vfprintf$5) refers to retarget.o(i.fputc) for fputc
+ printf5.o(i.__0vprintf$5) refers to printf5.o(i._printf_core) for _printf_core
+ printf5.o(i.__0vprintf$5) refers to retarget.o(i.fputc) for fputc
+ printf5.o(i.__0vprintf$5) refers to retarget.o(.data) for __stdout
+ printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._printf_core) for _printf_core
+ printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._snputc) for _snputc
+ printf5.o(i.__0vsprintf$5) refers to printf5.o(i._printf_core) for _printf_core
+ printf5.o(i.__0vsprintf$5) refers to printf5.o(i._sputc) for _sputc
+ printf5.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
+ printf6.o(i.__0fprintf$6) refers to printf6.o(i._printf_core) for _printf_core
+ printf6.o(i.__0fprintf$6) refers to retarget.o(i.fputc) for fputc
+ printf6.o(i.__0printf$6) refers to printf6.o(i._printf_core) for _printf_core
+ printf6.o(i.__0printf$6) refers to retarget.o(i.fputc) for fputc
+ printf6.o(i.__0printf$6) refers to retarget.o(.data) for __stdout
+ printf6.o(i.__0snprintf$6) refers to printf6.o(i._printf_core) for _printf_core
+ printf6.o(i.__0snprintf$6) refers to printf6.o(i._snputc) for _snputc
+ printf6.o(i.__0sprintf$6) refers to printf6.o(i._printf_core) for _printf_core
+ printf6.o(i.__0sprintf$6) refers to printf6.o(i._sputc) for _sputc
+ printf6.o(i.__0vfprintf$6) refers to printf6.o(i._printf_core) for _printf_core
+ printf6.o(i.__0vfprintf$6) refers to retarget.o(i.fputc) for fputc
+ printf6.o(i.__0vprintf$6) refers to printf6.o(i._printf_core) for _printf_core
+ printf6.o(i.__0vprintf$6) refers to retarget.o(i.fputc) for fputc
+ printf6.o(i.__0vprintf$6) refers to retarget.o(.data) for __stdout
+ printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._printf_core) for _printf_core
+ printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._snputc) for _snputc
+ printf6.o(i.__0vsprintf$6) refers to printf6.o(i._printf_core) for _printf_core
+ printf6.o(i.__0vsprintf$6) refers to printf6.o(i._sputc) for _sputc
+ printf6.o(i._printf_core) refers to printf6.o(i._printf_pre_padding) for _printf_pre_padding
+ printf6.o(i._printf_core) refers to printf6.o(i._printf_post_padding) for _printf_post_padding
+ printf6.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
+ printf7.o(i.__0fprintf$7) refers to printf7.o(i._printf_core) for _printf_core
+ printf7.o(i.__0fprintf$7) refers to retarget.o(i.fputc) for fputc
+ printf7.o(i.__0printf$7) refers to printf7.o(i._printf_core) for _printf_core
+ printf7.o(i.__0printf$7) refers to retarget.o(i.fputc) for fputc
+ printf7.o(i.__0printf$7) refers to retarget.o(.data) for __stdout
+ printf7.o(i.__0snprintf$7) refers to printf7.o(i._printf_core) for _printf_core
+ printf7.o(i.__0snprintf$7) refers to printf7.o(i._snputc) for _snputc
+ printf7.o(i.__0sprintf$7) refers to printf7.o(i._printf_core) for _printf_core
+ printf7.o(i.__0sprintf$7) refers to printf7.o(i._sputc) for _sputc
+ printf7.o(i.__0vfprintf$7) refers to printf7.o(i._printf_core) for _printf_core
+ printf7.o(i.__0vfprintf$7) refers to retarget.o(i.fputc) for fputc
+ printf7.o(i.__0vprintf$7) refers to printf7.o(i._printf_core) for _printf_core
+ printf7.o(i.__0vprintf$7) refers to retarget.o(i.fputc) for fputc
+ printf7.o(i.__0vprintf$7) refers to retarget.o(.data) for __stdout
+ printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._printf_core) for _printf_core
+ printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._snputc) for _snputc
+ printf7.o(i.__0vsprintf$7) refers to printf7.o(i._printf_core) for _printf_core
+ printf7.o(i.__0vsprintf$7) refers to printf7.o(i._sputc) for _sputc
+ printf7.o(i._printf_core) refers to printf7.o(i._printf_pre_padding) for _printf_pre_padding
+ printf7.o(i._printf_core) refers to printf7.o(i._printf_post_padding) for _printf_post_padding
+ printf7.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
+ printf8.o(i.__0fprintf$8) refers to printf8.o(i._printf_core) for _printf_core
+ printf8.o(i.__0fprintf$8) refers to retarget.o(i.fputc) for fputc
+ printf8.o(i.__0printf$8) refers to printf8.o(i._printf_core) for _printf_core
+ printf8.o(i.__0printf$8) refers to retarget.o(i.fputc) for fputc
+ printf8.o(i.__0printf$8) refers to retarget.o(.data) for __stdout
+ printf8.o(i.__0snprintf$8) refers to printf8.o(i._printf_core) for _printf_core
+ printf8.o(i.__0snprintf$8) refers to printf8.o(i._snputc) for _snputc
+ printf8.o(i.__0sprintf$8) refers to printf8.o(i._printf_core) for _printf_core
+ printf8.o(i.__0sprintf$8) refers to printf8.o(i._sputc) for _sputc
+ printf8.o(i.__0vfprintf$8) refers to printf8.o(i._printf_core) for _printf_core
+ printf8.o(i.__0vfprintf$8) refers to retarget.o(i.fputc) for fputc
+ printf8.o(i.__0vprintf$8) refers to printf8.o(i._printf_core) for _printf_core
+ printf8.o(i.__0vprintf$8) refers to retarget.o(i.fputc) for fputc
+ printf8.o(i.__0vprintf$8) refers to retarget.o(.data) for __stdout
+ printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._printf_core) for _printf_core
+ printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._snputc) for _snputc
+ printf8.o(i.__0vsprintf$8) refers to printf8.o(i._printf_core) for _printf_core
+ printf8.o(i.__0vsprintf$8) refers to printf8.o(i._sputc) for _sputc
+ printf8.o(i._printf_core) refers to printf8.o(i._printf_pre_padding) for _printf_pre_padding
+ printf8.o(i._printf_core) refers to printf8.o(i._printf_post_padding) for _printf_post_padding
+ printf8.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
+ printfa.o(i.__0fprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
+ printfa.o(i.__0fprintf) refers to printfa.o(i._printf_core) for _printf_core
+ printfa.o(i.__0fprintf) refers to retarget.o(i.fputc) for fputc
+ printfa.o(i.__0printf) refers (Special) to iusefp.o(.text) for __I$use$fp
+ printfa.o(i.__0printf) refers to printfa.o(i._printf_core) for _printf_core
+ printfa.o(i.__0printf) refers to retarget.o(i.fputc) for fputc
+ printfa.o(i.__0printf) refers to retarget.o(.data) for __stdout
+ printfa.o(i.__0snprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
+ printfa.o(i.__0snprintf) refers to printfa.o(i._printf_core) for _printf_core
+ printfa.o(i.__0snprintf) refers to printfa.o(i._snputc) for _snputc
+ printfa.o(i.__0sprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
+ printfa.o(i.__0sprintf) refers to printfa.o(i._printf_core) for _printf_core
+ printfa.o(i.__0sprintf) refers to printfa.o(i._sputc) for _sputc
+ printfa.o(i.__0vfprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
+ printfa.o(i.__0vfprintf) refers to printfa.o(i._printf_core) for _printf_core
+ printfa.o(i.__0vfprintf) refers to retarget.o(i.fputc) for fputc
+ printfa.o(i.__0vprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
+ printfa.o(i.__0vprintf) refers to printfa.o(i._printf_core) for _printf_core
+ printfa.o(i.__0vprintf) refers to retarget.o(i.fputc) for fputc
+ printfa.o(i.__0vprintf) refers to retarget.o(.data) for __stdout
+ printfa.o(i.__0vsnprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
+ printfa.o(i.__0vsnprintf) refers to printfa.o(i._printf_core) for _printf_core
+ printfa.o(i.__0vsnprintf) refers to printfa.o(i._snputc) for _snputc
+ printfa.o(i.__0vsprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
+ printfa.o(i.__0vsprintf) refers to printfa.o(i._printf_core) for _printf_core
+ printfa.o(i.__0vsprintf) refers to printfa.o(i._sputc) for _sputc
+ printfa.o(i._fp_digits) refers (Special) to iusefp.o(.text) for __I$use$fp
+ printfa.o(i._fp_digits) refers to dmul.o(.text) for __aeabi_dmul
+ printfa.o(i._fp_digits) refers to ddiv.o(.text) for __aeabi_ddiv
+ printfa.o(i._fp_digits) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
+ printfa.o(i._fp_digits) refers to dadd.o(.text) for __aeabi_dadd
+ printfa.o(i._fp_digits) refers to dfixul.o(.text) for __aeabi_d2ulz
+ printfa.o(i._fp_digits) refers to uldiv.o(.text) for __aeabi_uldivmod
+ printfa.o(i._printf_core) refers (Special) to iusefp.o(.text) for __I$use$fp
+ printfa.o(i._printf_core) refers to printfa.o(i._printf_pre_padding) for _printf_pre_padding
+ printfa.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
+ printfa.o(i._printf_core) refers to printfa.o(i._printf_post_padding) for _printf_post_padding
+ printfa.o(i._printf_core) refers to printfa.o(i._fp_digits) for _fp_digits
+ printfa.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
+ printfa.o(i._printf_post_padding) refers (Special) to iusefp.o(.text) for __I$use$fp
+ printfa.o(i._printf_pre_padding) refers (Special) to iusefp.o(.text) for __I$use$fp
+ printfa.o(i._snputc) refers (Special) to iusefp.o(.text) for __I$use$fp
+ printfa.o(i._sputc) refers (Special) to iusefp.o(.text) for __I$use$fp
malloc.o(i.free) refers to mvars.o(.data) for __microlib_freelist
malloc.o(i.malloc) refers to mvars.o(.data) for __microlib_freelist_initialised
malloc.o(i.malloc) refers to mvars.o(.data) for __microlib_freelist
@@ -238,6 +494,8 @@ Section Cross References
entry5.o(.ARM.Collect$$$$00000004) refers to init.o(.text) for __scatterload
entry9a.o(.ARM.Collect$$$$0000000B) refers to mian.o(i.main) for main
entry9b.o(.ARM.Collect$$$$0000000C) refers to mian.o(i.main) for main
+ uldiv.o(.text) refers to llushr.o(.text) for __aeabi_llsr
+ uldiv.o(.text) refers to llshl.o(.text) for __aeabi_llsl
errno.o(i.__aeabi_errno_addr) refers to errno.o(.data) for .data
errno.o(i.__read_errno) refers to errno.o(.data) for .data
errno.o(i.__set_errno) refers to errno.o(.data) for .data
@@ -248,6 +506,8 @@ Section Cross References
dadd.o(.text) refers to llsshr.o(.text) for __aeabi_lasr
dadd.o(.text) refers to depilogue.o(.text) for _double_epilogue
dmul.o(.text) refers to depilogue.o(.text) for _double_epilogue
+ dfixul.o(.text) refers to llushr.o(.text) for __aeabi_llsr
+ dfixul.o(.text) refers to llshl.o(.text) for __aeabi_llsl
init.o(.text) refers to entry5.o(.ARM.Collect$$$$00000004) for __main_after_scatterload
dsqrt.o(.text) refers to llushr.o(.text) for __aeabi_llsr
dsqrt.o(.text) refers to depilogue.o(.text) for _double_round
@@ -259,6 +519,9 @@ Removing Unused input sections from the image.
Removing mian.o(.rev16_text), (4 bytes).
Removing mian.o(.revsh_text), (4 bytes).
+ Removing mian.o(i.UART_ReceiveData), (88 bytes).
+ Removing mian.o(i.UART_ReceiveDataFromISR), (72 bytes).
+ Removing mian.o(i.UART_SendData), (28 bytes).
Removing ens1_uart.o(.rev16_text), (4 bytes).
Removing ens1_uart.o(.revsh_text), (4 bytes).
Removing ens1_uart.o(i.READ_UART_RCVBuff), (8 bytes).
@@ -281,7 +544,11 @@ Removing Unused input sections from the image.
Removing ens1_gpio.o(.revsh_text), (4 bytes).
Removing ens1_gpio.o(i.GPIO_AnalogChannel_Control), (52 bytes).
Removing ens1_gpio.o(i.GPIO_GetInputValue), (24 bytes).
+ Removing ens1_gpio.o(i.GPIO_GetOutputValue), (24 bytes).
Removing ens1_gpio.o(i.GPIO_IO_Select), (172 bytes).
+ Removing ens1_gpio.o(i.GPIO_Overturn), (40 bytes).
+ Removing ens1_gpio.o(i.GPIO_ResetOutput), (20 bytes).
+ Removing ens1_gpio.o(i.GPIO_SetOutput), (20 bytes).
Removing ens1_mtp.o(.rev16_text), (4 bytes).
Removing ens1_mtp.o(.revsh_text), (4 bytes).
Removing ens1_mtp.o(i.flash_buff_write), (40 bytes).
@@ -298,8 +565,6 @@ Removing Unused input sections from the image.
Removing retarget.o(i._sys_exit), (4 bytes).
Removing retarget.o(i._ttywrch), (20 bytes).
Removing retarget.o(i.ferror), (8 bytes).
- Removing retarget.o(i.fputc), (20 bytes).
- Removing retarget.o(.data), (8 bytes).
Removing ens1_timer.o(.rev16_text), (4 bytes).
Removing ens1_timer.o(.revsh_text), (4 bytes).
Removing ens1_timer.o(i.CMSDK_RTC_Config_Alarm), (116 bytes).
@@ -339,9 +604,10 @@ Removing Unused input sections from the image.
Removing system_cmsdk_cm0.o(.revsh_text), (4 bytes).
Removing system_cmsdk_cm0.o(i.SystemCoreClockUpdate), (16 bytes).
Removing startup_cmsdk_cm0.o(HEAP), (256 bytes).
+ Removing dfixul.o(.text), (64 bytes).
Removing cdcmple.o(.text), (40 bytes).
-83 unused section(s) (total 2018 bytes) removed from the image.
+89 unused section(s) (total 2346 bytes) removed from the image.
==============================================================================
@@ -351,40 +617,56 @@ Image Symbol Table
Symbol Name Value Ov Type Size Object(Section)
+ ../clib/microlib/division.c 0x00000000 Number 0 uldiv.o ABSOLUTE
../clib/microlib/division.c 0x00000000 Number 0 uidiv.o ABSOLUTE
../clib/microlib/errno.c 0x00000000 Number 0 errno.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7a.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry2.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11b.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11a.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10a.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry.o ABSOLUTE
../clib/microlib/init/entry.s 0x00000000 Number 0 entry10b.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9b.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9a.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8b.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8a.o ABSOLUTE
+ ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11a.o ABSOLUTE
+ ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11b.o ABSOLUTE
+ ../clib/microlib/init/entry.s 0x00000000 Number 0 entry.o ABSOLUTE
+ ../clib/microlib/init/entry.s 0x00000000 Number 0 entry12a.o ABSOLUTE
+ ../clib/microlib/init/entry.s 0x00000000 Number 0 entry12b.o ABSOLUTE
+ ../clib/microlib/init/entry.s 0x00000000 Number 0 entry2.o ABSOLUTE
../clib/microlib/init/entry.s 0x00000000 Number 0 entry5.o ABSOLUTE
+ ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7a.o ABSOLUTE
../clib/microlib/init/entry.s 0x00000000 Number 0 entry7b.o ABSOLUTE
+ ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8a.o ABSOLUTE
+ ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8b.o ABSOLUTE
+ ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9a.o ABSOLUTE
+ ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9b.o ABSOLUTE
+ ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10a.o ABSOLUTE
+ ../clib/microlib/longlong.c 0x00000000 Number 0 llushr.o ABSOLUTE
../clib/microlib/longlong.c 0x00000000 Number 0 llsshr.o ABSOLUTE
../clib/microlib/longlong.c 0x00000000 Number 0 llshl.o ABSOLUTE
- ../clib/microlib/longlong.c 0x00000000 Number 0 llushr.o ABSOLUTE
- ../clib/microlib/malloc/malloc.c 0x00000000 Number 0 mallocra.o ABSOLUTE
../clib/microlib/malloc/malloc.c 0x00000000 Number 0 malloc.o ABSOLUTE
../clib/microlib/malloc/malloc.c 0x00000000 Number 0 mallocr.o ABSOLUTE
../clib/microlib/malloc/malloc.c 0x00000000 Number 0 malloca.o ABSOLUTE
+ ../clib/microlib/malloc/malloc.c 0x00000000 Number 0 mallocra.o ABSOLUTE
../clib/microlib/malloc/mvars.c 0x00000000 Number 0 mvars.o ABSOLUTE
+ ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf5.o ABSOLUTE
+ ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf4.o ABSOLUTE
+ ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf2.o ABSOLUTE
+ ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf3.o ABSOLUTE
+ ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf0.o ABSOLUTE
+ ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfa.o ABSOLUTE
+ ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf8.o ABSOLUTE
+ ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfb.o ABSOLUTE
+ ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf7.o ABSOLUTE
+ ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf6.o ABSOLUTE
+ ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf1.o ABSOLUTE
+ ../clib/microlib/printf/stubs.s 0x00000000 Number 0 stubs.o ABSOLUTE
../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpyb.o ABSOLUTE
../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpya.o ABSOLUTE
../clib/microlib/string/memset.c 0x00000000 Number 0 memseta.o ABSOLUTE
- ../clib/microlib/stubs.s 0x00000000 Number 0 useno.o ABSOLUTE
../clib/microlib/stubs.s 0x00000000 Number 0 iusefp.o ABSOLUTE
+ ../clib/microlib/stubs.s 0x00000000 Number 0 useno.o ABSOLUTE
../fplib/microlib/fpadd.c 0x00000000 Number 0 dadd.o ABSOLUTE
../fplib/microlib/fpdiv.c 0x00000000 Number 0 ddiv.o ABSOLUTE
../fplib/microlib/fpepilogue.c 0x00000000 Number 0 depilogue.o ABSOLUTE
../fplib/microlib/fpepilogue.c 0x00000000 Number 0 fepilogue.o ABSOLUTE
../fplib/microlib/fpfix.c 0x00000000 Number 0 ffixui.o ABSOLUTE
../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixui.o ABSOLUTE
+ ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixul.o ABSOLUTE
../fplib/microlib/fpflt.c 0x00000000 Number 0 ffltui.o ABSOLUTE
../fplib/microlib/fpflt.c 0x00000000 Number 0 dflti.o ABSOLUTE
../fplib/microlib/fpflt.c 0x00000000 Number 0 dfltui.o ABSOLUTE
@@ -394,11 +676,11 @@ Image Symbol Table
../mathlib/dunder.c 0x00000000 Number 0 dunder.o ABSOLUTE
../mathlib/fpclassify.c 0x00000000 Number 0 fpclassify.o ABSOLUTE
../mathlib/poly.c 0x00000000 Number 0 poly.o ABSOLUTE
- ../mathlib/pow.c 0x00000000 Number 0 pow_x.o ABSOLUTE
../mathlib/pow.c 0x00000000 Number 0 pow.o ABSOLUTE
+ ../mathlib/pow.c 0x00000000 Number 0 pow_x.o ABSOLUTE
../mathlib/qnan.c 0x00000000 Number 0 qnan.o ABSOLUTE
- ../mathlib/sqrt.c 0x00000000 Number 0 sqrt.o ABSOLUTE
../mathlib/sqrt.c 0x00000000 Number 0 sqrt_x.o ABSOLUTE
+ ../mathlib/sqrt.c 0x00000000 Number 0 sqrt.o ABSOLUTE
CORE\ARM\startup_CMSDK_CM0.s 0x00000000 Number 0 startup_cmsdk_cm0.o ABSOLUTE
CORE\\system_CMSDK_CM0.c 0x00000000 Number 0 system_cmsdk_cm0.o ABSOLUTE
CORE\system_CMSDK_CM0.c 0x00000000 Number 0 system_cmsdk_cm0.o ABSOLUTE
@@ -432,122 +714,134 @@ Image Symbol Table
.ARM.Collect$$$$00000008 0x100000c8 Section 0 entry7b.o(.ARM.Collect$$$$00000008)
.ARM.Collect$$$$0000000A 0x100000c8 Section 0 entry8b.o(.ARM.Collect$$$$0000000A)
.ARM.Collect$$$$0000000B 0x100000c8 Section 8 entry9a.o(.ARM.Collect$$$$0000000B)
- .ARM.Collect$$$$0000000D 0x100000d0 Section 0 entry10a.o(.ARM.Collect$$$$0000000D)
- .ARM.Collect$$$$0000000F 0x100000d0 Section 0 entry11a.o(.ARM.Collect$$$$0000000F)
- .ARM.Collect$$$$00002712 0x100000d0 Section 4 entry2.o(.ARM.Collect$$$$00002712)
- __lit__00000000 0x100000d0 Data 4 entry2.o(.ARM.Collect$$$$00002712)
- .text 0x100000d4 Section 28 startup_cmsdk_cm0.o(.text)
- .text 0x100000f0 Section 0 uidiv.o(.text)
- .text 0x1000011c Section 0 memcpya.o(.text)
- .text 0x10000140 Section 0 memseta.o(.text)
- .text 0x10000164 Section 0 ddiv.o(.text)
- .text 0x10000254 Section 0 ffltui.o(.text)
- .text 0x10000264 Section 0 dflti.o(.text)
- .text 0x1000028c Section 0 dfltui.o(.text)
- .text 0x100002a8 Section 0 ffixui.o(.text)
- .text 0x100002d0 Section 0 dfixui.o(.text)
- .text 0x1000030c Section 0 llushr.o(.text)
- .text 0x1000032e Section 0 fepilogue.o(.text)
- .text 0x1000032e Section 0 iusefp.o(.text)
- .text 0x100003b0 Section 0 depilogue.o(.text)
- .text 0x10000470 Section 0 dadd.o(.text)
- .text 0x100005d4 Section 0 dmul.o(.text)
- .text 0x100006a4 Section 0 dscalb.o(.text)
- .text 0x100006d0 Section 40 cdrcmple.o(.text)
- .text 0x100006f8 Section 36 init.o(.text)
- .text 0x1000071c Section 0 llshl.o(.text)
- .text 0x1000073c Section 0 llsshr.o(.text)
- .text 0x10000762 Section 0 dsqrt.o(.text)
- i.CMSDK_timer_Init 0x10000804 Section 0 ens1_timer.o(i.CMSDK_timer_Init)
- i.ClockInit 0x10000820 Section 0 ens1_clock.o(i.ClockInit)
- i.ClockInitSet 0x10000838 Section 0 ens1_clock.o(i.ClockInitSet)
- i.EMS_Configure 0x1000099c Section 0 ens1_wavegen.o(i.EMS_Configure)
- i.EMS_Process 0x100009b4 Section 0 ens1_wavegen.o(i.EMS_Process)
- i.EMS_Process_Ramp 0x100009e4 Section 0 ens1_wavegen.o(i.EMS_Process_Ramp)
- i.EMS_Start 0x10000b1c Section 0 ens1_wavegen.o(i.EMS_Start)
- i.EMS_Stop 0x10000b24 Section 0 ens1_wavegen.o(i.EMS_Stop)
- i.Fuse_result 0x10000b5c Section 0 ens1_timer.o(i.Fuse_result)
- i.GPIO_AltFunction 0x10000c00 Section 0 ens1_gpio.o(i.GPIO_AltFunction)
- i.GPIO_GetOutputValue 0x10000c5c Section 0 ens1_gpio.o(i.GPIO_GetOutputValue)
- i.GPIO_IO_Init 0x10000c74 Section 0 ens1_gpio.o(i.GPIO_IO_Init)
- i.GPIO_Output 0x10000dd0 Section 0 ens1_gpio.o(i.GPIO_Output)
- i.GPIO_Overturn 0x10000df8 Section 0 ens1_gpio.o(i.GPIO_Overturn)
- i.GPIO_ResetOutput 0x10000e20 Section 0 ens1_gpio.o(i.GPIO_ResetOutput)
- i.GPIO_SetOutput 0x10000e34 Section 0 ens1_gpio.o(i.GPIO_SetOutput)
- i.MTP_init 0x10000e48 Section 0 ens1_mtp.o(i.MTP_init)
- i.NVIC_ClearPendingIRQ 0x10000e4c Section 0 ens1_uart.o(i.NVIC_ClearPendingIRQ)
- NVIC_ClearPendingIRQ 0x10000e4d Thumb Code 14 ens1_uart.o(i.NVIC_ClearPendingIRQ)
- i.NVIC_ClearPendingIRQ 0x10000e60 Section 0 ens1_timer.o(i.NVIC_ClearPendingIRQ)
- NVIC_ClearPendingIRQ 0x10000e61 Thumb Code 14 ens1_timer.o(i.NVIC_ClearPendingIRQ)
- i.NVIC_DisableIRQ 0x10000e74 Section 0 ens1_uart.o(i.NVIC_DisableIRQ)
- NVIC_DisableIRQ 0x10000e75 Thumb Code 14 ens1_uart.o(i.NVIC_DisableIRQ)
- i.NVIC_DisableIRQ 0x10000e88 Section 0 ens1_timer.o(i.NVIC_DisableIRQ)
- NVIC_DisableIRQ 0x10000e89 Thumb Code 14 ens1_timer.o(i.NVIC_DisableIRQ)
- i.NVIC_EnableIRQ 0x10000e9c Section 0 ens1_uart.o(i.NVIC_EnableIRQ)
- NVIC_EnableIRQ 0x10000e9d Thumb Code 14 ens1_uart.o(i.NVIC_EnableIRQ)
- i.NVIC_EnableIRQ 0x10000eb0 Section 0 ens1_timer.o(i.NVIC_EnableIRQ)
- NVIC_EnableIRQ 0x10000eb1 Thumb Code 14 ens1_timer.o(i.NVIC_EnableIRQ)
- i.PCLK_Enable 0x10000ec4 Section 0 ens1_clock.o(i.PCLK_Enable)
- i.SystemInit 0x10000edc Section 0 system_cmsdk_cm0.o(i.SystemInit)
- i.TIMER0_Handler 0x10000eec Section 0 ens1_timer.o(i.TIMER0_Handler)
- i.TIMER0_Init 0x10000f0c Section 0 ens1_timer.o(i.TIMER0_Init)
- i.TIMER1_Handler 0x10000f4c Section 0 ens1_timer.o(i.TIMER1_Handler)
- i.Time_Manager_GetFlags 0x10000f68 Section 0 ens1_timer.o(i.Time_Manager_GetFlags)
- i.Time_Manager_Init 0x10000f70 Section 0 ens1_timer.o(i.Time_Manager_Init)
- i.Time_Manager_Process 0x10000f8c Section 0 ens1_timer.o(i.Time_Manager_Process)
- i.UART0_Handler 0x10001064 Section 0 ens1_uart.o(i.UART0_Handler)
- i.UART1_Handler 0x100010d0 Section 0 ens1_uart.o(i.UART1_Handler)
- i.UARTLine_THREmpty 0x10001130 Section 0 ens1_uart.o(i.UARTLine_THREmpty)
- i.UART_INT_TYPE 0x1000113a Section 0 ens1_uart.o(i.UART_INT_TYPE)
- i.UART_ITConfig 0x10001144 Section 0 ens1_uart.o(i.UART_ITConfig)
- i.UART_Init 0x1000119c Section 0 ens1_uart.o(i.UART_Init)
- i.UartPutc 0x1000129c Section 0 ens1_uart.o(i.UartPutc)
- i.WRITE_UART_THRBuff 0x100012ba Section 0 ens1_uart.o(i.WRITE_UART_THRBuff)
- i.__ARM_clz 0x100012be Section 0 depilogue.o(i.__ARM_clz)
- i.__ARM_fpclassify 0x100012ec Section 0 fpclassify.o(i.__ARM_fpclassify)
- i.__kernel_poly 0x10001318 Section 0 poly.o(i.__kernel_poly)
- i.__mathlib_dbl_divzero 0x100013c4 Section 0 dunder.o(i.__mathlib_dbl_divzero)
- i.__mathlib_dbl_infnan2 0x100013d8 Section 0 dunder.o(i.__mathlib_dbl_infnan2)
- i.__mathlib_dbl_invalid 0x100013e0 Section 0 dunder.o(i.__mathlib_dbl_invalid)
- i.__mathlib_dbl_overflow 0x100013f0 Section 0 dunder.o(i.__mathlib_dbl_overflow)
- i.__mathlib_dbl_underflow 0x10001404 Section 0 dunder.o(i.__mathlib_dbl_underflow)
- i.__scatterload_copy 0x10001418 Section 14 handlers.o(i.__scatterload_copy)
- i.__scatterload_null 0x10001426 Section 2 handlers.o(i.__scatterload_null)
- i.__scatterload_zeroinit 0x10001428 Section 14 handlers.o(i.__scatterload_zeroinit)
- i.__set_errno 0x10001438 Section 0 errno.o(i.__set_errno)
- i.boost_voltage_select_55V 0x10001444 Section 0 ens1_boost.o(i.boost_voltage_select_55V)
- i.main 0x10001458 Section 0 mian.o(i.main)
- i.pow 0x100014bc Section 0 pow.o(i.pow)
- i.sqrt 0x10001eb8 Section 0 sqrt.o(i.sqrt)
- i.wavegen_Init 0x10001f00 Section 0 ens1_wavegen.o(i.wavegen_Init)
- i.wavegen_Start 0x10001f28 Section 0 ens1_wavegen.o(i.wavegen_Start)
- i.wavegen_Stop 0x10001f88 Section 0 ens1_wavegen.o(i.wavegen_Stop)
- i.wavegen_UpdateIntensity 0x10001f9e Section 0 ens1_wavegen.o(i.wavegen_UpdateIntensity)
- i.wavegen_driverA_sine_test 0x10001fb0 Section 0 ens1_wavegen.o(i.wavegen_driverA_sine_test)
- .constdata 0x10002000 Section 136 pow.o(.constdata)
- bp 0x10002000 Data 16 pow.o(.constdata)
- dp_h 0x10002010 Data 16 pow.o(.constdata)
- dp_l 0x10002020 Data 16 pow.o(.constdata)
- L 0x10002030 Data 48 pow.o(.constdata)
- P 0x10002060 Data 40 pow.o(.constdata)
- .constdata 0x10002088 Section 8 qnan.o(.constdata)
- .data 0x20000000 Section 30 ens1_uart.o(.data)
+ .ARM.Collect$$$$0000000E 0x100000d0 Section 4 entry12b.o(.ARM.Collect$$$$0000000E)
+ .ARM.Collect$$$$0000000F 0x100000d4 Section 0 entry10a.o(.ARM.Collect$$$$0000000F)
+ .ARM.Collect$$$$00000011 0x100000d4 Section 0 entry11a.o(.ARM.Collect$$$$00000011)
+ .ARM.Collect$$$$00002712 0x100000d4 Section 4 entry2.o(.ARM.Collect$$$$00002712)
+ __lit__00000000 0x100000d4 Data 4 entry2.o(.ARM.Collect$$$$00002712)
+ .text 0x100000d8 Section 28 startup_cmsdk_cm0.o(.text)
+ .text 0x100000f4 Section 0 uidiv.o(.text)
+ .text 0x10000120 Section 0 memcpya.o(.text)
+ .text 0x10000144 Section 0 memseta.o(.text)
+ .text 0x10000168 Section 0 ddiv.o(.text)
+ .text 0x10000258 Section 0 ffltui.o(.text)
+ .text 0x10000268 Section 0 dflti.o(.text)
+ .text 0x10000290 Section 0 dfltui.o(.text)
+ .text 0x100002ac Section 0 ffixui.o(.text)
+ .text 0x100002d4 Section 0 dfixui.o(.text)
+ .text 0x10000310 Section 0 uldiv.o(.text)
+ .text 0x10000370 Section 0 llushr.o(.text)
+ .text 0x10000392 Section 0 iusefp.o(.text)
+ .text 0x10000392 Section 0 fepilogue.o(.text)
+ .text 0x10000414 Section 0 depilogue.o(.text)
+ .text 0x100004d4 Section 0 dadd.o(.text)
+ .text 0x1000063c Section 0 dmul.o(.text)
+ .text 0x1000070c Section 0 dscalb.o(.text)
+ .text 0x10000738 Section 40 cdrcmple.o(.text)
+ .text 0x10000760 Section 36 init.o(.text)
+ .text 0x10000784 Section 0 llshl.o(.text)
+ .text 0x100007a4 Section 0 llsshr.o(.text)
+ .text 0x100007ca Section 0 dsqrt.o(.text)
+ i.CMSDK_timer_Init 0x1000086c Section 0 ens1_timer.o(i.CMSDK_timer_Init)
+ i.CalculateCRC16_CCITT_FALSE 0x10000888 Section 0 mian.o(i.CalculateCRC16_CCITT_FALSE)
+ i.ClockInit 0x100008d0 Section 0 ens1_clock.o(i.ClockInit)
+ i.ClockInitSet 0x100008e8 Section 0 ens1_clock.o(i.ClockInitSet)
+ i.EMS_Configure 0x10000a4c Section 0 ens1_wavegen.o(i.EMS_Configure)
+ i.EMS_Process 0x10000a64 Section 0 ens1_wavegen.o(i.EMS_Process)
+ i.EMS_Process_Ramp 0x10000a94 Section 0 ens1_wavegen.o(i.EMS_Process_Ramp)
+ i.EMS_Start 0x10000bc8 Section 0 ens1_wavegen.o(i.EMS_Start)
+ i.EMS_Stop 0x10000bd0 Section 0 ens1_wavegen.o(i.EMS_Stop)
+ i.Fuse_result 0x10000c08 Section 0 ens1_timer.o(i.Fuse_result)
+ i.GPIO_AltFunction 0x10000ca8 Section 0 ens1_gpio.o(i.GPIO_AltFunction)
+ i.GPIO_IO_Init 0x10000d04 Section 0 ens1_gpio.o(i.GPIO_IO_Init)
+ i.GPIO_Output 0x10000e60 Section 0 ens1_gpio.o(i.GPIO_Output)
+ i.MTP_init 0x10000e88 Section 0 ens1_mtp.o(i.MTP_init)
+ i.NVIC_ClearPendingIRQ 0x10000e8c Section 0 ens1_uart.o(i.NVIC_ClearPendingIRQ)
+ NVIC_ClearPendingIRQ 0x10000e8d Thumb Code 14 ens1_uart.o(i.NVIC_ClearPendingIRQ)
+ i.NVIC_ClearPendingIRQ 0x10000ea0 Section 0 ens1_timer.o(i.NVIC_ClearPendingIRQ)
+ NVIC_ClearPendingIRQ 0x10000ea1 Thumb Code 14 ens1_timer.o(i.NVIC_ClearPendingIRQ)
+ i.NVIC_DisableIRQ 0x10000eb4 Section 0 ens1_uart.o(i.NVIC_DisableIRQ)
+ NVIC_DisableIRQ 0x10000eb5 Thumb Code 14 ens1_uart.o(i.NVIC_DisableIRQ)
+ i.NVIC_DisableIRQ 0x10000ec8 Section 0 ens1_timer.o(i.NVIC_DisableIRQ)
+ NVIC_DisableIRQ 0x10000ec9 Thumb Code 14 ens1_timer.o(i.NVIC_DisableIRQ)
+ i.NVIC_EnableIRQ 0x10000edc Section 0 ens1_uart.o(i.NVIC_EnableIRQ)
+ NVIC_EnableIRQ 0x10000edd Thumb Code 14 ens1_uart.o(i.NVIC_EnableIRQ)
+ i.NVIC_EnableIRQ 0x10000ef0 Section 0 ens1_timer.o(i.NVIC_EnableIRQ)
+ NVIC_EnableIRQ 0x10000ef1 Thumb Code 14 ens1_timer.o(i.NVIC_EnableIRQ)
+ i.PCLK_Enable 0x10000f04 Section 0 ens1_clock.o(i.PCLK_Enable)
+ i.ParseUART_EMS_Packet 0x10000f1c Section 0 mian.o(i.ParseUART_EMS_Packet)
+ i.SystemInit 0x10000f8c Section 0 system_cmsdk_cm0.o(i.SystemInit)
+ i.TIMER0_Handler 0x10000f9c Section 0 ens1_timer.o(i.TIMER0_Handler)
+ i.TIMER0_Init 0x10000fbc Section 0 ens1_timer.o(i.TIMER0_Init)
+ i.TIMER1_Handler 0x10000ffc Section 0 ens1_timer.o(i.TIMER1_Handler)
+ i.Time_Manager_GetFlags 0x10001018 Section 0 ens1_timer.o(i.Time_Manager_GetFlags)
+ i.Time_Manager_Init 0x10001020 Section 0 ens1_timer.o(i.Time_Manager_Init)
+ i.Time_Manager_Process 0x1000103c Section 0 ens1_timer.o(i.Time_Manager_Process)
+ i.UART0_Handler 0x10001114 Section 0 ens1_uart.o(i.UART0_Handler)
+ i.UART1_Handler 0x10001180 Section 0 ens1_uart.o(i.UART1_Handler)
+ i.UARTLine_THREmpty 0x10001220 Section 0 ens1_uart.o(i.UARTLine_THREmpty)
+ i.UART_INT_TYPE 0x1000122a Section 0 ens1_uart.o(i.UART_INT_TYPE)
+ i.UART_ITConfig 0x10001234 Section 0 ens1_uart.o(i.UART_ITConfig)
+ i.UART_Init 0x1000128c Section 0 ens1_uart.o(i.UART_Init)
+ i.UartPutc 0x100013fc Section 0 ens1_uart.o(i.UartPutc)
+ i.UpdateEMS_ConfigFromUART 0x1000141c Section 0 mian.o(i.UpdateEMS_ConfigFromUART)
+ i.WRITE_UART_THRBuff 0x100014cc Section 0 ens1_uart.o(i.WRITE_UART_THRBuff)
+ i.__0printf$8 0x100014d0 Section 0 printf8.o(i.__0printf$8)
+ i.__ARM_clz 0x100014f0 Section 0 depilogue.o(i.__ARM_clz)
+ i.__ARM_fpclassify 0x10001520 Section 0 fpclassify.o(i.__ARM_fpclassify)
+ i.__kernel_poly 0x1000154c Section 0 poly.o(i.__kernel_poly)
+ i.__mathlib_dbl_divzero 0x100015f8 Section 0 dunder.o(i.__mathlib_dbl_divzero)
+ i.__mathlib_dbl_infnan2 0x1000160c Section 0 dunder.o(i.__mathlib_dbl_infnan2)
+ i.__mathlib_dbl_invalid 0x10001614 Section 0 dunder.o(i.__mathlib_dbl_invalid)
+ i.__mathlib_dbl_overflow 0x10001624 Section 0 dunder.o(i.__mathlib_dbl_overflow)
+ i.__mathlib_dbl_underflow 0x10001638 Section 0 dunder.o(i.__mathlib_dbl_underflow)
+ i.__scatterload_copy 0x1000164c Section 14 handlers.o(i.__scatterload_copy)
+ i.__scatterload_null 0x1000165a Section 2 handlers.o(i.__scatterload_null)
+ i.__scatterload_zeroinit 0x1000165c Section 14 handlers.o(i.__scatterload_zeroinit)
+ i.__set_errno 0x1000166c Section 0 errno.o(i.__set_errno)
+ i._printf_core 0x10001678 Section 0 printf8.o(i._printf_core)
+ _printf_core 0x10001679 Thumb Code 1020 printf8.o(i._printf_core)
+ i._printf_post_padding 0x10001aa0 Section 0 printf8.o(i._printf_post_padding)
+ _printf_post_padding 0x10001aa1 Thumb Code 32 printf8.o(i._printf_post_padding)
+ i._printf_pre_padding 0x10001ac0 Section 0 printf8.o(i._printf_pre_padding)
+ _printf_pre_padding 0x10001ac1 Thumb Code 44 printf8.o(i._printf_pre_padding)
+ i.boost_voltage_select_55V 0x10001aec Section 0 ens1_boost.o(i.boost_voltage_select_55V)
+ i.fputc 0x10001b00 Section 0 retarget.o(i.fputc)
+ i.main 0x10001b14 Section 0 mian.o(i.main)
+ i.pow 0x10001b78 Section 0 pow.o(i.pow)
+ i.sqrt 0x10002574 Section 0 sqrt.o(i.sqrt)
+ i.wavegen_Init 0x100025bc Section 0 ens1_wavegen.o(i.wavegen_Init)
+ i.wavegen_Start 0x100025e4 Section 0 ens1_wavegen.o(i.wavegen_Start)
+ i.wavegen_Stop 0x10002644 Section 0 ens1_wavegen.o(i.wavegen_Stop)
+ i.wavegen_UpdateIntensity 0x1000265a Section 0 ens1_wavegen.o(i.wavegen_UpdateIntensity)
+ i.wavegen_driverA_sine_test 0x1000266c Section 0 ens1_wavegen.o(i.wavegen_driverA_sine_test)
+ .constdata 0x100026b8 Section 14 mian.o(.constdata)
+ .constdata 0x100026c8 Section 136 pow.o(.constdata)
+ bp 0x100026c8 Data 16 pow.o(.constdata)
+ dp_h 0x100026d8 Data 16 pow.o(.constdata)
+ dp_l 0x100026e8 Data 16 pow.o(.constdata)
+ L 0x100026f8 Data 48 pow.o(.constdata)
+ P 0x10002728 Data 40 pow.o(.constdata)
+ .constdata 0x10002750 Section 8 qnan.o(.constdata)
+ .data 0x20000000 Section 32 ens1_uart.o(.data)
.data 0x20000020 Section 14 ens1_clock.o(.data)
- .data 0x20000030 Section 32 ens1_timer.o(.data)
- g_time_flags 0x20000034 Data 7 ens1_timer.o(.data)
- g_time_counters 0x2000003c Data 8 ens1_timer.o(.data)
- .data 0x20000050 Section 40 ens1_wavegen.o(.data)
- g_ems_running 0x2000005e Data 1 ens1_wavegen.o(.data)
- g_ems_count 0x20000060 Data 4 ens1_wavegen.o(.data)
- g_current_intensity 0x20000068 Data 4 ens1_wavegen.o(.data)
- g_ramp_phase 0x2000006c Data 1 ens1_wavegen.o(.data)
- g_wave_counter 0x20000070 Data 4 ens1_wavegen.o(.data)
- g_ramp_step_counter 0x20000074 Data 4 ens1_wavegen.o(.data)
- .data 0x20000078 Section 8 system_cmsdk_cm0.o(.data)
- .data 0x20000080 Section 4 errno.o(.data)
- _errno 0x20000080 Data 4 errno.o(.data)
- .bss 0x20000084 Section 14 ens1_wavegen.o(.bss)
- STACK 0x20000098 Section 512 startup_cmsdk_cm0.o(STACK)
+ .data 0x20000030 Section 8 retarget.o(.data)
+ .data 0x20000038 Section 32 ens1_timer.o(.data)
+ g_time_flags 0x2000003d Data 7 ens1_timer.o(.data)
+ g_time_counters 0x20000044 Data 8 ens1_timer.o(.data)
+ .data 0x20000058 Section 40 ens1_wavegen.o(.data)
+ g_ems_running 0x20000066 Data 1 ens1_wavegen.o(.data)
+ g_ems_count 0x20000068 Data 4 ens1_wavegen.o(.data)
+ g_current_intensity 0x20000070 Data 4 ens1_wavegen.o(.data)
+ g_ramp_phase 0x20000074 Data 1 ens1_wavegen.o(.data)
+ g_wave_counter 0x20000078 Data 4 ens1_wavegen.o(.data)
+ g_ramp_step_counter 0x2000007c Data 4 ens1_wavegen.o(.data)
+ .data 0x20000080 Section 8 system_cmsdk_cm0.o(.data)
+ .data 0x20000088 Section 4 errno.o(.data)
+ _errno 0x20000088 Data 4 errno.o(.data)
+ .bss 0x2000008c Section 64 ens1_uart.o(.bss)
+ .bss 0x200000cc Section 14 ens1_wavegen.o(.bss)
+ STACK 0x200000e0 Section 512 startup_cmsdk_cm0.o(STACK)
Global Symbols
@@ -563,6 +857,48 @@ Image Symbol Table
__use_no_semihosting 0x00000000 Number 0 useno.o ABSOLUTE
__use_no_semihosting_swi 0x00000000 Number 0 useno.o ABSOLUTE
__use_no_signal_handling 0x00000000 Number 0 useno.o ABSOLUTE
+ _printf_a 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_c 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_charcount 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_d 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_e 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_f 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_flags 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_fp_dec 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_fp_hex 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_g 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_i 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_int_dec 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_l 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_lc 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_ll 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_lld 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_lli 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_llo 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_llu 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_llx 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_longlong_dec 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_longlong_hex 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_longlong_oct 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_ls 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_mbtowc 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_n 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_o 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_p 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_percent 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_pre_padding 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_return_value 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_s 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_sizespec 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_str 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_truncate_signed 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_truncate_unsigned 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_u 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_wc 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_wctomb 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_widthprec 0x00000000 Number 0 stubs.o ABSOLUTE
+ _printf_x 0x00000000 Number 0 stubs.o ABSOLUTE
+ __arm_fini_ - Undefined Weak Reference
__cpp_initialize__aeabi_ - Undefined Weak Reference
__cxa_finalize - Undefined Weak Reference
__decompress - Undefined Weak Reference
@@ -578,149 +914,160 @@ Image Symbol Table
_main_clock 0x100000c9 Thumb Code 0 entry7b.o(.ARM.Collect$$$$00000008)
_main_cpp_init 0x100000c9 Thumb Code 0 entry8b.o(.ARM.Collect$$$$0000000A)
_main_init 0x100000c9 Thumb Code 0 entry9a.o(.ARM.Collect$$$$0000000B)
- __rt_final_cpp 0x100000d1 Thumb Code 0 entry10a.o(.ARM.Collect$$$$0000000D)
- __rt_final_exit 0x100000d1 Thumb Code 0 entry11a.o(.ARM.Collect$$$$0000000F)
- Reset_Handler 0x100000d5 Thumb Code 8 startup_cmsdk_cm0.o(.text)
- NMI_Handler 0x100000dd Thumb Code 2 startup_cmsdk_cm0.o(.text)
- HardFault_Handler 0x100000df Thumb Code 2 startup_cmsdk_cm0.o(.text)
- SVC_Handler 0x100000e1 Thumb Code 2 startup_cmsdk_cm0.o(.text)
- PendSV_Handler 0x100000e3 Thumb Code 2 startup_cmsdk_cm0.o(.text)
- SysTick_Handler 0x100000e5 Thumb Code 2 startup_cmsdk_cm0.o(.text)
- ADC_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- CHARGER_END_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- CHARGER_OK_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- COMP0_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- COMP1_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- DUALTIMER_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- GPIO0_7_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- GPIO16_23_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- GPIO8_15_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- I2C0_Error_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- I2C0_Event_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- I2C1_Error_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- I2C1_Event_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- LCD_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- LVD_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- MTP_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- OVER_TEMP_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- PWM_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- RTC_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- SPI0_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- SPI1_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- WG_DRV_Handler 0x100000e7 Thumb Code 0 startup_cmsdk_cm0.o(.text)
- __aeabi_uidiv 0x100000f1 Thumb Code 0 uidiv.o(.text)
- __aeabi_uidivmod 0x100000f1 Thumb Code 44 uidiv.o(.text)
- __aeabi_memcpy 0x1000011d Thumb Code 36 memcpya.o(.text)
- __aeabi_memcpy4 0x1000011d Thumb Code 0 memcpya.o(.text)
- __aeabi_memcpy8 0x1000011d Thumb Code 0 memcpya.o(.text)
- __aeabi_memset 0x10000141 Thumb Code 14 memseta.o(.text)
- __aeabi_memset4 0x10000141 Thumb Code 0 memseta.o(.text)
- __aeabi_memset8 0x10000141 Thumb Code 0 memseta.o(.text)
- __aeabi_memclr 0x1000014f Thumb Code 4 memseta.o(.text)
- __aeabi_memclr4 0x1000014f Thumb Code 0 memseta.o(.text)
- __aeabi_memclr8 0x1000014f Thumb Code 0 memseta.o(.text)
- _memset$wrapper 0x10000153 Thumb Code 18 memseta.o(.text)
- __aeabi_ddiv 0x10000165 Thumb Code 234 ddiv.o(.text)
- __aeabi_ui2f 0x10000255 Thumb Code 14 ffltui.o(.text)
- __aeabi_i2d 0x10000265 Thumb Code 34 dflti.o(.text)
- __aeabi_ui2d 0x1000028d Thumb Code 24 dfltui.o(.text)
- __aeabi_f2uiz 0x100002a9 Thumb Code 40 ffixui.o(.text)
- __aeabi_d2uiz 0x100002d1 Thumb Code 50 dfixui.o(.text)
- __aeabi_llsr 0x1000030d Thumb Code 34 llushr.o(.text)
- _ll_ushift_r 0x1000030d Thumb Code 0 llushr.o(.text)
- __I$use$fp 0x1000032f Thumb Code 0 iusefp.o(.text)
- _float_round 0x1000032f Thumb Code 16 fepilogue.o(.text)
- _float_epilogue 0x1000033f Thumb Code 114 fepilogue.o(.text)
- _double_round 0x100003b1 Thumb Code 26 depilogue.o(.text)
- _double_epilogue 0x100003cb Thumb Code 164 depilogue.o(.text)
- __aeabi_dadd 0x10000471 Thumb Code 328 dadd.o(.text)
- __aeabi_dsub 0x100005b9 Thumb Code 12 dadd.o(.text)
- __aeabi_drsub 0x100005c5 Thumb Code 12 dadd.o(.text)
- __aeabi_dmul 0x100005d5 Thumb Code 202 dmul.o(.text)
- __ARM_scalbn 0x100006a5 Thumb Code 44 dscalb.o(.text)
- scalbn 0x100006a5 Thumb Code 0 dscalb.o(.text)
- __aeabi_cdrcmple 0x100006d1 Thumb Code 38 cdrcmple.o(.text)
- __scatterload 0x100006f9 Thumb Code 28 init.o(.text)
- __scatterload_rt2 0x100006f9 Thumb Code 0 init.o(.text)
- __aeabi_llsl 0x1000071d Thumb Code 32 llshl.o(.text)
- _ll_shift_l 0x1000071d Thumb Code 0 llshl.o(.text)
- __aeabi_lasr 0x1000073d Thumb Code 38 llsshr.o(.text)
- _ll_sshift_r 0x1000073d Thumb Code 0 llsshr.o(.text)
- _dsqrt 0x10000763 Thumb Code 162 dsqrt.o(.text)
- CMSDK_timer_Init 0x10000805 Thumb Code 26 ens1_timer.o(i.CMSDK_timer_Init)
- ClockInit 0x10000821 Thumb Code 14 ens1_clock.o(i.ClockInit)
- ClockInitSet 0x10000839 Thumb Code 348 ens1_clock.o(i.ClockInitSet)
- EMS_Configure 0x1000099d Thumb Code 20 ens1_wavegen.o(i.EMS_Configure)
- EMS_Process 0x100009b5 Thumb Code 36 ens1_wavegen.o(i.EMS_Process)
- EMS_Process_Ramp 0x100009e5 Thumb Code 282 ens1_wavegen.o(i.EMS_Process_Ramp)
- EMS_Start 0x10000b1d Thumb Code 8 ens1_wavegen.o(i.EMS_Start)
- EMS_Stop 0x10000b25 Thumb Code 32 ens1_wavegen.o(i.EMS_Stop)
- Fuse_result 0x10000b5d Thumb Code 152 ens1_timer.o(i.Fuse_result)
- GPIO_AltFunction 0x10000c01 Thumb Code 86 ens1_gpio.o(i.GPIO_AltFunction)
- GPIO_GetOutputValue 0x10000c5d Thumb Code 18 ens1_gpio.o(i.GPIO_GetOutputValue)
- GPIO_IO_Init 0x10000c75 Thumb Code 342 ens1_gpio.o(i.GPIO_IO_Init)
- GPIO_Output 0x10000dd1 Thumb Code 36 ens1_gpio.o(i.GPIO_Output)
- GPIO_Overturn 0x10000df9 Thumb Code 40 ens1_gpio.o(i.GPIO_Overturn)
- GPIO_ResetOutput 0x10000e21 Thumb Code 16 ens1_gpio.o(i.GPIO_ResetOutput)
- GPIO_SetOutput 0x10000e35 Thumb Code 16 ens1_gpio.o(i.GPIO_SetOutput)
- MTP_init 0x10000e49 Thumb Code 4 ens1_mtp.o(i.MTP_init)
- PCLK_Enable 0x10000ec5 Thumb Code 20 ens1_clock.o(i.PCLK_Enable)
- SystemInit 0x10000edd Thumb Code 8 system_cmsdk_cm0.o(i.SystemInit)
- TIMER0_Handler 0x10000eed Thumb Code 24 ens1_timer.o(i.TIMER0_Handler)
- TIMER0_Init 0x10000f0d Thumb Code 56 ens1_timer.o(i.TIMER0_Init)
- TIMER1_Handler 0x10000f4d Thumb Code 18 ens1_timer.o(i.TIMER1_Handler)
- Time_Manager_GetFlags 0x10000f69 Thumb Code 4 ens1_timer.o(i.Time_Manager_GetFlags)
- Time_Manager_Init 0x10000f71 Thumb Code 20 ens1_timer.o(i.Time_Manager_Init)
- Time_Manager_Process 0x10000f8d Thumb Code 208 ens1_timer.o(i.Time_Manager_Process)
- UART0_Handler 0x10001065 Thumb Code 108 ens1_uart.o(i.UART0_Handler)
- UART1_Handler 0x100010d1 Thumb Code 92 ens1_uart.o(i.UART1_Handler)
- UARTLine_THREmpty 0x10001131 Thumb Code 10 ens1_uart.o(i.UARTLine_THREmpty)
- UART_INT_TYPE 0x1000113b Thumb Code 10 ens1_uart.o(i.UART_INT_TYPE)
- UART_ITConfig 0x10001145 Thumb Code 84 ens1_uart.o(i.UART_ITConfig)
- UART_Init 0x1000119d Thumb Code 248 ens1_uart.o(i.UART_Init)
- UartPutc 0x1000129d Thumb Code 30 ens1_uart.o(i.UartPutc)
- WRITE_UART_THRBuff 0x100012bb Thumb Code 4 ens1_uart.o(i.WRITE_UART_THRBuff)
- __ARM_clz 0x100012bf Thumb Code 46 depilogue.o(i.__ARM_clz)
- __ARM_fpclassify 0x100012ed Thumb Code 40 fpclassify.o(i.__ARM_fpclassify)
- __kernel_poly 0x10001319 Thumb Code 172 poly.o(i.__kernel_poly)
- __mathlib_dbl_divzero 0x100013c5 Thumb Code 16 dunder.o(i.__mathlib_dbl_divzero)
- __mathlib_dbl_infnan2 0x100013d9 Thumb Code 8 dunder.o(i.__mathlib_dbl_infnan2)
- __mathlib_dbl_invalid 0x100013e1 Thumb Code 16 dunder.o(i.__mathlib_dbl_invalid)
- __mathlib_dbl_overflow 0x100013f1 Thumb Code 16 dunder.o(i.__mathlib_dbl_overflow)
- __mathlib_dbl_underflow 0x10001405 Thumb Code 14 dunder.o(i.__mathlib_dbl_underflow)
- __scatterload_copy 0x10001419 Thumb Code 14 handlers.o(i.__scatterload_copy)
- __scatterload_null 0x10001427 Thumb Code 2 handlers.o(i.__scatterload_null)
- __scatterload_zeroinit 0x10001429 Thumb Code 14 handlers.o(i.__scatterload_zeroinit)
- __set_errno 0x10001439 Thumb Code 6 errno.o(i.__set_errno)
- boost_voltage_select_55V 0x10001445 Thumb Code 12 ens1_boost.o(i.boost_voltage_select_55V)
- main 0x10001459 Thumb Code 82 mian.o(i.main)
- pow 0x100014bd Thumb Code 2548 pow.o(i.pow)
- sqrt 0x10001eb9 Thumb Code 66 sqrt.o(i.sqrt)
- wavegen_Init 0x10001f01 Thumb Code 26 ens1_wavegen.o(i.wavegen_Init)
- wavegen_Start 0x10001f29 Thumb Code 68 ens1_wavegen.o(i.wavegen_Start)
- wavegen_Stop 0x10001f89 Thumb Code 22 ens1_wavegen.o(i.wavegen_Stop)
- wavegen_UpdateIntensity 0x10001f9f Thumb Code 18 ens1_wavegen.o(i.wavegen_UpdateIntensity)
- wavegen_driverA_sine_test 0x10001fb1 Thumb Code 76 ens1_wavegen.o(i.wavegen_driverA_sine_test)
- __mathlib_zero 0x10002088 Data 8 qnan.o(.constdata)
- Region$$Table$$Base 0x10002090 Number 0 anon$$obj.o(Region$$Table)
- Region$$Table$$Limit 0x100020b0 Number 0 anon$$obj.o(Region$$Table)
+ __rt_lib_shutdown_fini 0x100000d1 Thumb Code 0 entry12b.o(.ARM.Collect$$$$0000000E)
+ __rt_final_cpp 0x100000d5 Thumb Code 0 entry10a.o(.ARM.Collect$$$$0000000F)
+ __rt_final_exit 0x100000d5 Thumb Code 0 entry11a.o(.ARM.Collect$$$$00000011)
+ Reset_Handler 0x100000d9 Thumb Code 8 startup_cmsdk_cm0.o(.text)
+ NMI_Handler 0x100000e1 Thumb Code 2 startup_cmsdk_cm0.o(.text)
+ HardFault_Handler 0x100000e3 Thumb Code 2 startup_cmsdk_cm0.o(.text)
+ SVC_Handler 0x100000e5 Thumb Code 2 startup_cmsdk_cm0.o(.text)
+ PendSV_Handler 0x100000e7 Thumb Code 2 startup_cmsdk_cm0.o(.text)
+ SysTick_Handler 0x100000e9 Thumb Code 2 startup_cmsdk_cm0.o(.text)
+ ADC_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ CHARGER_END_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ CHARGER_OK_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ COMP0_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ COMP1_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ DUALTIMER_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ GPIO0_7_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ GPIO16_23_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ GPIO8_15_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ I2C0_Error_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ I2C0_Event_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ I2C1_Error_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ I2C1_Event_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ LCD_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ LVD_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ MTP_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ OVER_TEMP_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ PWM_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ RTC_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ SPI0_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ SPI1_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ WG_DRV_Handler 0x100000eb Thumb Code 0 startup_cmsdk_cm0.o(.text)
+ __aeabi_uidiv 0x100000f5 Thumb Code 0 uidiv.o(.text)
+ __aeabi_uidivmod 0x100000f5 Thumb Code 44 uidiv.o(.text)
+ __aeabi_memcpy 0x10000121 Thumb Code 36 memcpya.o(.text)
+ __aeabi_memcpy4 0x10000121 Thumb Code 0 memcpya.o(.text)
+ __aeabi_memcpy8 0x10000121 Thumb Code 0 memcpya.o(.text)
+ __aeabi_memset 0x10000145 Thumb Code 14 memseta.o(.text)
+ __aeabi_memset4 0x10000145 Thumb Code 0 memseta.o(.text)
+ __aeabi_memset8 0x10000145 Thumb Code 0 memseta.o(.text)
+ __aeabi_memclr 0x10000153 Thumb Code 4 memseta.o(.text)
+ __aeabi_memclr4 0x10000153 Thumb Code 0 memseta.o(.text)
+ __aeabi_memclr8 0x10000153 Thumb Code 0 memseta.o(.text)
+ _memset$wrapper 0x10000157 Thumb Code 18 memseta.o(.text)
+ __aeabi_ddiv 0x10000169 Thumb Code 234 ddiv.o(.text)
+ __aeabi_ui2f 0x10000259 Thumb Code 14 ffltui.o(.text)
+ __aeabi_i2d 0x10000269 Thumb Code 34 dflti.o(.text)
+ __aeabi_ui2d 0x10000291 Thumb Code 24 dfltui.o(.text)
+ __aeabi_f2uiz 0x100002ad Thumb Code 40 ffixui.o(.text)
+ __aeabi_d2uiz 0x100002d5 Thumb Code 50 dfixui.o(.text)
+ __aeabi_uldivmod 0x10000311 Thumb Code 96 uldiv.o(.text)
+ __aeabi_llsr 0x10000371 Thumb Code 34 llushr.o(.text)
+ _ll_ushift_r 0x10000371 Thumb Code 0 llushr.o(.text)
+ __I$use$fp 0x10000393 Thumb Code 0 iusefp.o(.text)
+ _float_round 0x10000393 Thumb Code 16 fepilogue.o(.text)
+ _float_epilogue 0x100003a3 Thumb Code 114 fepilogue.o(.text)
+ _double_round 0x10000415 Thumb Code 26 depilogue.o(.text)
+ _double_epilogue 0x1000042f Thumb Code 164 depilogue.o(.text)
+ __aeabi_dadd 0x100004d5 Thumb Code 330 dadd.o(.text)
+ __aeabi_dsub 0x1000061f Thumb Code 12 dadd.o(.text)
+ __aeabi_drsub 0x1000062b Thumb Code 12 dadd.o(.text)
+ __aeabi_dmul 0x1000063d Thumb Code 202 dmul.o(.text)
+ __ARM_scalbn 0x1000070d Thumb Code 44 dscalb.o(.text)
+ scalbn 0x1000070d Thumb Code 0 dscalb.o(.text)
+ __aeabi_cdrcmple 0x10000739 Thumb Code 38 cdrcmple.o(.text)
+ __scatterload 0x10000761 Thumb Code 28 init.o(.text)
+ __scatterload_rt2 0x10000761 Thumb Code 0 init.o(.text)
+ __aeabi_llsl 0x10000785 Thumb Code 32 llshl.o(.text)
+ _ll_shift_l 0x10000785 Thumb Code 0 llshl.o(.text)
+ __aeabi_lasr 0x100007a5 Thumb Code 38 llsshr.o(.text)
+ _ll_sshift_r 0x100007a5 Thumb Code 0 llsshr.o(.text)
+ _dsqrt 0x100007cb Thumb Code 162 dsqrt.o(.text)
+ CMSDK_timer_Init 0x1000086d Thumb Code 26 ens1_timer.o(i.CMSDK_timer_Init)
+ CalculateCRC16_CCITT_FALSE 0x10000889 Thumb Code 64 mian.o(i.CalculateCRC16_CCITT_FALSE)
+ ClockInit 0x100008d1 Thumb Code 14 ens1_clock.o(i.ClockInit)
+ ClockInitSet 0x100008e9 Thumb Code 348 ens1_clock.o(i.ClockInitSet)
+ EMS_Configure 0x10000a4d Thumb Code 20 ens1_wavegen.o(i.EMS_Configure)
+ EMS_Process 0x10000a65 Thumb Code 36 ens1_wavegen.o(i.EMS_Process)
+ EMS_Process_Ramp 0x10000a95 Thumb Code 282 ens1_wavegen.o(i.EMS_Process_Ramp)
+ EMS_Start 0x10000bc9 Thumb Code 8 ens1_wavegen.o(i.EMS_Start)
+ EMS_Stop 0x10000bd1 Thumb Code 32 ens1_wavegen.o(i.EMS_Stop)
+ Fuse_result 0x10000c09 Thumb Code 146 ens1_timer.o(i.Fuse_result)
+ GPIO_AltFunction 0x10000ca9 Thumb Code 86 ens1_gpio.o(i.GPIO_AltFunction)
+ GPIO_IO_Init 0x10000d05 Thumb Code 342 ens1_gpio.o(i.GPIO_IO_Init)
+ GPIO_Output 0x10000e61 Thumb Code 36 ens1_gpio.o(i.GPIO_Output)
+ MTP_init 0x10000e89 Thumb Code 4 ens1_mtp.o(i.MTP_init)
+ PCLK_Enable 0x10000f05 Thumb Code 20 ens1_clock.o(i.PCLK_Enable)
+ ParseUART_EMS_Packet 0x10000f1d Thumb Code 112 mian.o(i.ParseUART_EMS_Packet)
+ SystemInit 0x10000f8d Thumb Code 8 system_cmsdk_cm0.o(i.SystemInit)
+ TIMER0_Handler 0x10000f9d Thumb Code 24 ens1_timer.o(i.TIMER0_Handler)
+ TIMER0_Init 0x10000fbd Thumb Code 56 ens1_timer.o(i.TIMER0_Init)
+ TIMER1_Handler 0x10000ffd Thumb Code 18 ens1_timer.o(i.TIMER1_Handler)
+ Time_Manager_GetFlags 0x10001019 Thumb Code 4 ens1_timer.o(i.Time_Manager_GetFlags)
+ Time_Manager_Init 0x10001021 Thumb Code 20 ens1_timer.o(i.Time_Manager_Init)
+ Time_Manager_Process 0x1000103d Thumb Code 208 ens1_timer.o(i.Time_Manager_Process)
+ UART0_Handler 0x10001115 Thumb Code 108 ens1_uart.o(i.UART0_Handler)
+ UART1_Handler 0x10001181 Thumb Code 148 ens1_uart.o(i.UART1_Handler)
+ UARTLine_THREmpty 0x10001221 Thumb Code 10 ens1_uart.o(i.UARTLine_THREmpty)
+ UART_INT_TYPE 0x1000122b Thumb Code 10 ens1_uart.o(i.UART_INT_TYPE)
+ UART_ITConfig 0x10001235 Thumb Code 84 ens1_uart.o(i.UART_ITConfig)
+ UART_Init 0x1000128d Thumb Code 356 ens1_uart.o(i.UART_Init)
+ UartPutc 0x100013fd Thumb Code 30 ens1_uart.o(i.UartPutc)
+ UpdateEMS_ConfigFromUART 0x1000141d Thumb Code 160 mian.o(i.UpdateEMS_ConfigFromUART)
+ WRITE_UART_THRBuff 0x100014cd Thumb Code 4 ens1_uart.o(i.WRITE_UART_THRBuff)
+ __0printf$8 0x100014d1 Thumb Code 24 printf8.o(i.__0printf$8)
+ __1printf$8 0x100014d1 Thumb Code 0 printf8.o(i.__0printf$8)
+ __2printf 0x100014d1 Thumb Code 0 printf8.o(i.__0printf$8)
+ __ARM_clz 0x100014f1 Thumb Code 46 depilogue.o(i.__ARM_clz)
+ __ARM_fpclassify 0x10001521 Thumb Code 40 fpclassify.o(i.__ARM_fpclassify)
+ __kernel_poly 0x1000154d Thumb Code 172 poly.o(i.__kernel_poly)
+ __mathlib_dbl_divzero 0x100015f9 Thumb Code 16 dunder.o(i.__mathlib_dbl_divzero)
+ __mathlib_dbl_infnan2 0x1000160d Thumb Code 8 dunder.o(i.__mathlib_dbl_infnan2)
+ __mathlib_dbl_invalid 0x10001615 Thumb Code 16 dunder.o(i.__mathlib_dbl_invalid)
+ __mathlib_dbl_overflow 0x10001625 Thumb Code 16 dunder.o(i.__mathlib_dbl_overflow)
+ __mathlib_dbl_underflow 0x10001639 Thumb Code 14 dunder.o(i.__mathlib_dbl_underflow)
+ __scatterload_copy 0x1000164d Thumb Code 14 handlers.o(i.__scatterload_copy)
+ __scatterload_null 0x1000165b Thumb Code 2 handlers.o(i.__scatterload_null)
+ __scatterload_zeroinit 0x1000165d Thumb Code 14 handlers.o(i.__scatterload_zeroinit)
+ __set_errno 0x1000166d Thumb Code 6 errno.o(i.__set_errno)
+ boost_voltage_select_55V 0x10001aed Thumb Code 12 ens1_boost.o(i.boost_voltage_select_55V)
+ fputc 0x10001b01 Thumb Code 16 retarget.o(i.fputc)
+ main 0x10001b15 Thumb Code 82 mian.o(i.main)
+ pow 0x10001b79 Thumb Code 2548 pow.o(i.pow)
+ sqrt 0x10002575 Thumb Code 66 sqrt.o(i.sqrt)
+ wavegen_Init 0x100025bd Thumb Code 26 ens1_wavegen.o(i.wavegen_Init)
+ wavegen_Start 0x100025e5 Thumb Code 68 ens1_wavegen.o(i.wavegen_Start)
+ wavegen_Stop 0x10002645 Thumb Code 22 ens1_wavegen.o(i.wavegen_Stop)
+ wavegen_UpdateIntensity 0x1000265b Thumb Code 18 ens1_wavegen.o(i.wavegen_UpdateIntensity)
+ wavegen_driverA_sine_test 0x1000266d Thumb Code 76 ens1_wavegen.o(i.wavegen_driverA_sine_test)
+ __mathlib_zero 0x10002750 Data 8 qnan.o(.constdata)
+ Region$$Table$$Base 0x10002758 Number 0 anon$$obj.o(Region$$Table)
+ Region$$Table$$Limit 0x10002778 Number 0 anon$$obj.o(Region$$Table)
UART1_Fifo 0x20000000 Data 3 ens1_uart.o(.data)
UART1_Init 0x20000004 Data 24 ens1_uart.o(.data)
UART1_ITSet 0x2000001c Data 2 ens1_uart.o(.data)
+ uart_rx_count 0x2000001e Data 1 ens1_uart.o(.data)
+ uart_data_ready 0x2000001f Data 1 ens1_uart.o(.data)
APB_Clock_Freq 0x20000020 Data 4 ens1_clock.o(.data)
CLOCKCFG 0x20000024 Data 10 ens1_clock.o(.data)
- ems_control_count 0x20000030 Data 1 ens1_timer.o(.data)
- ems_state 0x20000031 Data 1 ens1_timer.o(.data)
- time_count 0x20000032 Data 2 ens1_timer.o(.data)
- timer0_irq_occurred 0x20000044 Data 4 ens1_timer.o(.data)
- time_flag 0x20000048 Data 4 ens1_timer.o(.data)
- timer1_irq_occurred 0x2000004c Data 4 ens1_timer.o(.data)
- ems_config 0x20000050 Data 14 ens1_wavegen.o(.data)
- waves_per_step 0x20000064 Data 4 ens1_wavegen.o(.data)
- SystemFrequency 0x20000078 Data 4 system_cmsdk_cm0.o(.data)
- SystemCoreClock 0x2000007c Data 4 system_cmsdk_cm0.o(.data)
- g_ems_config 0x20000084 Data 14 ens1_wavegen.o(.bss)
- __initial_sp 0x20000298 Data 0 startup_cmsdk_cm0.o(STACK)
+ __stdout 0x20000030 Data 4 retarget.o(.data)
+ __stdin 0x20000034 Data 4 retarget.o(.data)
+ ems_control_count 0x20000038 Data 1 ens1_timer.o(.data)
+ ems_state 0x20000039 Data 1 ens1_timer.o(.data)
+ time_count 0x2000003a Data 2 ens1_timer.o(.data)
+ led_state 0x2000003c Data 1 ens1_timer.o(.data)
+ timer0_irq_occurred 0x2000004c Data 4 ens1_timer.o(.data)
+ time_flag 0x20000050 Data 4 ens1_timer.o(.data)
+ timer1_irq_occurred 0x20000054 Data 4 ens1_timer.o(.data)
+ ems_config 0x20000058 Data 14 ens1_wavegen.o(.data)
+ waves_per_step 0x2000006c Data 4 ens1_wavegen.o(.data)
+ SystemFrequency 0x20000080 Data 4 system_cmsdk_cm0.o(.data)
+ SystemCoreClock 0x20000084 Data 4 system_cmsdk_cm0.o(.data)
+ uart_rx_buffer 0x2000008c Data 64 ens1_uart.o(.bss)
+ g_ems_config 0x200000cc Data 14 ens1_wavegen.o(.bss)
+ __initial_sp 0x200002e0 Data 0 startup_cmsdk_cm0.o(STACK)
@@ -730,129 +1077,139 @@ Memory Map of the image
Image Entry point : 0x100000c1
- Load Region LR_IROM1 (Base: 0x10000000, Size: 0x00002134, Max: 0x00008000, ABSOLUTE)
+ Load Region LR_IROM1 (Base: 0x10000000, Size: 0x00002804, Max: 0x00008000, ABSOLUTE)
- Execution Region ER_IROM1 (Exec base: 0x10000000, Load base: 0x10000000, Size: 0x000020b0, Max: 0x00008000, ABSOLUTE)
+ Execution Region ER_IROM1 (Base: 0x10000000, Size: 0x00002778, Max: 0x00008000, ABSOLUTE)
- Exec Addr Load Addr Size Type Attr Idx E Section Name Object
+ Base Addr Size Type Attr Idx E Section Name Object
- 0x10000000 0x10000000 0x000000c0 Data RO 943 RESET startup_cmsdk_cm0.o
- 0x100000c0 0x100000c0 0x00000000 Code RO 958 * .ARM.Collect$$$$00000000 mc_p.l(entry.o)
- 0x100000c0 0x100000c0 0x00000004 Code RO 1036 .ARM.Collect$$$$00000001 mc_p.l(entry2.o)
- 0x100000c4 0x100000c4 0x00000004 Code RO 1039 .ARM.Collect$$$$00000004 mc_p.l(entry5.o)
- 0x100000c8 0x100000c8 0x00000000 Code RO 1041 .ARM.Collect$$$$00000008 mc_p.l(entry7b.o)
- 0x100000c8 0x100000c8 0x00000000 Code RO 1043 .ARM.Collect$$$$0000000A mc_p.l(entry8b.o)
- 0x100000c8 0x100000c8 0x00000008 Code RO 1044 .ARM.Collect$$$$0000000B mc_p.l(entry9a.o)
- 0x100000d0 0x100000d0 0x00000000 Code RO 1046 .ARM.Collect$$$$0000000D mc_p.l(entry10a.o)
- 0x100000d0 0x100000d0 0x00000000 Code RO 1048 .ARM.Collect$$$$0000000F mc_p.l(entry11a.o)
- 0x100000d0 0x100000d0 0x00000004 Code RO 1037 .ARM.Collect$$$$00002712 mc_p.l(entry2.o)
- 0x100000d4 0x100000d4 0x0000001c Code RO 944 .text startup_cmsdk_cm0.o
- 0x100000f0 0x100000f0 0x0000002c Code RO 961 .text mc_p.l(uidiv.o)
- 0x1000011c 0x1000011c 0x00000024 Code RO 963 .text mc_p.l(memcpya.o)
- 0x10000140 0x10000140 0x00000024 Code RO 965 .text mc_p.l(memseta.o)
- 0x10000164 0x10000164 0x000000f0 Code RO 997 .text mf_p.l(ddiv.o)
- 0x10000254 0x10000254 0x0000000e Code RO 999 .text mf_p.l(ffltui.o)
- 0x10000262 0x10000262 0x00000002 PAD
- 0x10000264 0x10000264 0x00000028 Code RO 1001 .text mf_p.l(dflti.o)
- 0x1000028c 0x1000028c 0x0000001c Code RO 1003 .text mf_p.l(dfltui.o)
- 0x100002a8 0x100002a8 0x00000028 Code RO 1005 .text mf_p.l(ffixui.o)
- 0x100002d0 0x100002d0 0x0000003c Code RO 1007 .text mf_p.l(dfixui.o)
- 0x1000030c 0x1000030c 0x00000022 Code RO 1050 .text mc_p.l(llushr.o)
- 0x1000032e 0x1000032e 0x00000000 Code RO 1061 .text mc_p.l(iusefp.o)
- 0x1000032e 0x1000032e 0x00000082 Code RO 1062 .text mf_p.l(fepilogue.o)
- 0x100003b0 0x100003b0 0x000000be Code RO 1064 .text mf_p.l(depilogue.o)
- 0x1000046e 0x1000046e 0x00000002 PAD
- 0x10000470 0x10000470 0x00000164 Code RO 1068 .text mf_p.l(dadd.o)
- 0x100005d4 0x100005d4 0x000000d0 Code RO 1070 .text mf_p.l(dmul.o)
- 0x100006a4 0x100006a4 0x0000002c Code RO 1072 .text mf_p.l(dscalb.o)
- 0x100006d0 0x100006d0 0x00000028 Code RO 1074 .text mf_p.l(cdrcmple.o)
- 0x100006f8 0x100006f8 0x00000024 Code RO 1076 .text mc_p.l(init.o)
- 0x1000071c 0x1000071c 0x00000020 Code RO 1078 .text mc_p.l(llshl.o)
- 0x1000073c 0x1000073c 0x00000026 Code RO 1080 .text mc_p.l(llsshr.o)
- 0x10000762 0x10000762 0x000000a2 Code RO 1082 .text mf_p.l(dsqrt.o)
- 0x10000804 0x10000804 0x0000001a Code RO 549 i.CMSDK_timer_Init ens1_timer.o
- 0x1000081e 0x1000081e 0x00000002 PAD
- 0x10000820 0x10000820 0x00000018 Code RO 431 i.ClockInit ens1_clock.o
- 0x10000838 0x10000838 0x00000164 Code RO 432 i.ClockInitSet ens1_clock.o
- 0x1000099c 0x1000099c 0x00000018 Code RO 820 i.EMS_Configure ens1_wavegen.o
- 0x100009b4 0x100009b4 0x00000030 Code RO 821 i.EMS_Process ens1_wavegen.o
- 0x100009e4 0x100009e4 0x00000138 Code RO 822 i.EMS_Process_Ramp ens1_wavegen.o
- 0x10000b1c 0x10000b1c 0x00000008 Code RO 823 i.EMS_Start ens1_wavegen.o
- 0x10000b24 0x10000b24 0x00000038 Code RO 824 i.EMS_Stop ens1_wavegen.o
- 0x10000b5c 0x10000b5c 0x000000a4 Code RO 557 i.Fuse_result ens1_timer.o
- 0x10000c00 0x10000c00 0x0000005c Code RO 294 i.GPIO_AltFunction ens1_gpio.o
- 0x10000c5c 0x10000c5c 0x00000018 Code RO 297 i.GPIO_GetOutputValue ens1_gpio.o
- 0x10000c74 0x10000c74 0x0000015c Code RO 298 i.GPIO_IO_Init ens1_gpio.o
- 0x10000dd0 0x10000dd0 0x00000028 Code RO 300 i.GPIO_Output ens1_gpio.o
- 0x10000df8 0x10000df8 0x00000028 Code RO 301 i.GPIO_Overturn ens1_gpio.o
- 0x10000e20 0x10000e20 0x00000014 Code RO 302 i.GPIO_ResetOutput ens1_gpio.o
- 0x10000e34 0x10000e34 0x00000014 Code RO 303 i.GPIO_SetOutput ens1_gpio.o
- 0x10000e48 0x10000e48 0x00000004 Code RO 371 i.MTP_init ens1_mtp.o
- 0x10000e4c 0x10000e4c 0x00000014 Code RO 84 i.NVIC_ClearPendingIRQ ens1_uart.o
- 0x10000e60 0x10000e60 0x00000014 Code RO 558 i.NVIC_ClearPendingIRQ ens1_timer.o
- 0x10000e74 0x10000e74 0x00000014 Code RO 85 i.NVIC_DisableIRQ ens1_uart.o
- 0x10000e88 0x10000e88 0x00000014 Code RO 559 i.NVIC_DisableIRQ ens1_timer.o
- 0x10000e9c 0x10000e9c 0x00000014 Code RO 86 i.NVIC_EnableIRQ ens1_uart.o
- 0x10000eb0 0x10000eb0 0x00000014 Code RO 560 i.NVIC_EnableIRQ ens1_timer.o
- 0x10000ec4 0x10000ec4 0x00000018 Code RO 435 i.PCLK_Enable ens1_clock.o
- 0x10000edc 0x10000edc 0x00000010 Code RO 912 i.SystemInit system_cmsdk_cm0.o
- 0x10000eec 0x10000eec 0x00000020 Code RO 561 i.TIMER0_Handler ens1_timer.o
- 0x10000f0c 0x10000f0c 0x00000040 Code RO 562 i.TIMER0_Init ens1_timer.o
- 0x10000f4c 0x10000f4c 0x0000001c Code RO 563 i.TIMER1_Handler ens1_timer.o
- 0x10000f68 0x10000f68 0x00000008 Code RO 566 i.Time_Manager_GetFlags ens1_timer.o
- 0x10000f70 0x10000f70 0x0000001c Code RO 567 i.Time_Manager_Init ens1_timer.o
- 0x10000f8c 0x10000f8c 0x000000d8 Code RO 568 i.Time_Manager_Process ens1_timer.o
- 0x10001064 0x10001064 0x0000006c Code RO 88 i.UART0_Handler ens1_uart.o
- 0x100010d0 0x100010d0 0x00000060 Code RO 89 i.UART1_Handler ens1_uart.o
- 0x10001130 0x10001130 0x0000000a Code RO 91 i.UARTLine_THREmpty ens1_uart.o
- 0x1000113a 0x1000113a 0x0000000a Code RO 97 i.UART_INT_TYPE ens1_uart.o
- 0x10001144 0x10001144 0x00000058 Code RO 98 i.UART_ITConfig ens1_uart.o
- 0x1000119c 0x1000119c 0x00000100 Code RO 99 i.UART_Init ens1_uart.o
- 0x1000129c 0x1000129c 0x0000001e Code RO 108 i.UartPutc ens1_uart.o
- 0x100012ba 0x100012ba 0x00000004 Code RO 110 i.WRITE_UART_THRBuff ens1_uart.o
- 0x100012be 0x100012be 0x0000002e Code RO 1066 i.__ARM_clz mf_p.l(depilogue.o)
- 0x100012ec 0x100012ec 0x0000002c Code RO 1023 i.__ARM_fpclassify m_ps.l(fpclassify.o)
- 0x10001318 0x10001318 0x000000ac Code RO 1025 i.__kernel_poly m_ps.l(poly.o)
- 0x100013c4 0x100013c4 0x00000014 Code RO 1009 i.__mathlib_dbl_divzero m_ps.l(dunder.o)
- 0x100013d8 0x100013d8 0x00000008 Code RO 1011 i.__mathlib_dbl_infnan2 m_ps.l(dunder.o)
- 0x100013e0 0x100013e0 0x00000010 Code RO 1012 i.__mathlib_dbl_invalid m_ps.l(dunder.o)
- 0x100013f0 0x100013f0 0x00000014 Code RO 1013 i.__mathlib_dbl_overflow m_ps.l(dunder.o)
- 0x10001404 0x10001404 0x00000014 Code RO 1015 i.__mathlib_dbl_underflow m_ps.l(dunder.o)
- 0x10001418 0x10001418 0x0000000e Code RO 1088 i.__scatterload_copy mc_p.l(handlers.o)
- 0x10001426 0x10001426 0x00000002 Code RO 1089 i.__scatterload_null mc_p.l(handlers.o)
- 0x10001428 0x10001428 0x0000000e Code RO 1090 i.__scatterload_zeroinit mc_p.l(handlers.o)
- 0x10001436 0x10001436 0x00000002 PAD
- 0x10001438 0x10001438 0x0000000c Code RO 1056 i.__set_errno mc_p.l(errno.o)
- 0x10001444 0x10001444 0x00000014 Code RO 777 i.boost_voltage_select_55V ens1_boost.o
- 0x10001458 0x10001458 0x00000064 Code RO 3 i.main mian.o
- 0x100014bc 0x100014bc 0x000009fc Code RO 949 i.pow m_ps.l(pow.o)
- 0x10001eb8 0x10001eb8 0x00000048 Code RO 1029 i.sqrt m_ps.l(sqrt.o)
- 0x10001f00 0x10001f00 0x00000028 Code RO 826 i.wavegen_Init ens1_wavegen.o
- 0x10001f28 0x10001f28 0x00000060 Code RO 827 i.wavegen_Start ens1_wavegen.o
- 0x10001f88 0x10001f88 0x00000016 Code RO 828 i.wavegen_Stop ens1_wavegen.o
- 0x10001f9e 0x10001f9e 0x00000012 Code RO 829 i.wavegen_UpdateIntensity ens1_wavegen.o
- 0x10001fb0 0x10001fb0 0x0000004c Code RO 830 i.wavegen_driverA_sine_test ens1_wavegen.o
- 0x10001ffc 0x10001ffc 0x00000004 PAD
- 0x10002000 0x10002000 0x00000088 Data RO 950 .constdata m_ps.l(pow.o)
- 0x10002088 0x10002088 0x00000008 Data RO 1027 .constdata m_ps.l(qnan.o)
- 0x10002090 0x10002090 0x00000020 Data RO 1086 Region$$Table anon$$obj.o
+ 0x10000000 0x000000c0 Data RO 942 RESET startup_cmsdk_cm0.o
+ 0x100000c0 0x00000000 Code RO 957 * .ARM.Collect$$$$00000000 mc_p.l(entry.o)
+ 0x100000c0 0x00000004 Code RO 1296 .ARM.Collect$$$$00000001 mc_p.l(entry2.o)
+ 0x100000c4 0x00000004 Code RO 1299 .ARM.Collect$$$$00000004 mc_p.l(entry5.o)
+ 0x100000c8 0x00000000 Code RO 1301 .ARM.Collect$$$$00000008 mc_p.l(entry7b.o)
+ 0x100000c8 0x00000000 Code RO 1303 .ARM.Collect$$$$0000000A mc_p.l(entry8b.o)
+ 0x100000c8 0x00000008 Code RO 1304 .ARM.Collect$$$$0000000B mc_p.l(entry9a.o)
+ 0x100000d0 0x00000004 Code RO 1311 .ARM.Collect$$$$0000000E mc_p.l(entry12b.o)
+ 0x100000d4 0x00000000 Code RO 1306 .ARM.Collect$$$$0000000F mc_p.l(entry10a.o)
+ 0x100000d4 0x00000000 Code RO 1308 .ARM.Collect$$$$00000011 mc_p.l(entry11a.o)
+ 0x100000d4 0x00000004 Code RO 1297 .ARM.Collect$$$$00002712 mc_p.l(entry2.o)
+ 0x100000d8 0x0000001c Code RO 943 .text startup_cmsdk_cm0.o
+ 0x100000f4 0x0000002c Code RO 960 .text mc_p.l(uidiv.o)
+ 0x10000120 0x00000024 Code RO 962 .text mc_p.l(memcpya.o)
+ 0x10000144 0x00000024 Code RO 964 .text mc_p.l(memseta.o)
+ 0x10000168 0x000000f0 Code RO 1257 .text mf_p.l(ddiv.o)
+ 0x10000258 0x0000000e Code RO 1259 .text mf_p.l(ffltui.o)
+ 0x10000266 0x00000002 PAD
+ 0x10000268 0x00000028 Code RO 1261 .text mf_p.l(dflti.o)
+ 0x10000290 0x0000001c Code RO 1263 .text mf_p.l(dfltui.o)
+ 0x100002ac 0x00000028 Code RO 1265 .text mf_p.l(ffixui.o)
+ 0x100002d4 0x0000003c Code RO 1267 .text mf_p.l(dfixui.o)
+ 0x10000310 0x00000060 Code RO 1312 .text mc_p.l(uldiv.o)
+ 0x10000370 0x00000022 Code RO 1314 .text mc_p.l(llushr.o)
+ 0x10000392 0x00000000 Code RO 1325 .text mc_p.l(iusefp.o)
+ 0x10000392 0x00000082 Code RO 1326 .text mf_p.l(fepilogue.o)
+ 0x10000414 0x000000be Code RO 1328 .text mf_p.l(depilogue.o)
+ 0x100004d2 0x00000002 PAD
+ 0x100004d4 0x00000168 Code RO 1332 .text mf_p.l(dadd.o)
+ 0x1000063c 0x000000d0 Code RO 1334 .text mf_p.l(dmul.o)
+ 0x1000070c 0x0000002c Code RO 1336 .text mf_p.l(dscalb.o)
+ 0x10000738 0x00000028 Code RO 1340 .text mf_p.l(cdrcmple.o)
+ 0x10000760 0x00000024 Code RO 1342 .text mc_p.l(init.o)
+ 0x10000784 0x00000020 Code RO 1344 .text mc_p.l(llshl.o)
+ 0x100007a4 0x00000026 Code RO 1346 .text mc_p.l(llsshr.o)
+ 0x100007ca 0x000000a2 Code RO 1348 .text mf_p.l(dsqrt.o)
+ 0x1000086c 0x0000001a Code RO 557 i.CMSDK_timer_Init ens1_timer.o
+ 0x10000886 0x00000002 PAD
+ 0x10000888 0x00000048 Code RO 3 i.CalculateCRC16_CCITT_FALSE mian.o
+ 0x100008d0 0x00000018 Code RO 439 i.ClockInit ens1_clock.o
+ 0x100008e8 0x00000164 Code RO 440 i.ClockInitSet ens1_clock.o
+ 0x10000a4c 0x00000018 Code RO 822 i.EMS_Configure ens1_wavegen.o
+ 0x10000a64 0x00000030 Code RO 823 i.EMS_Process ens1_wavegen.o
+ 0x10000a94 0x00000134 Code RO 824 i.EMS_Process_Ramp ens1_wavegen.o
+ 0x10000bc8 0x00000008 Code RO 825 i.EMS_Start ens1_wavegen.o
+ 0x10000bd0 0x00000038 Code RO 826 i.EMS_Stop ens1_wavegen.o
+ 0x10000c08 0x000000a0 Code RO 565 i.Fuse_result ens1_timer.o
+ 0x10000ca8 0x0000005c Code RO 308 i.GPIO_AltFunction ens1_gpio.o
+ 0x10000d04 0x0000015c Code RO 312 i.GPIO_IO_Init ens1_gpio.o
+ 0x10000e60 0x00000028 Code RO 314 i.GPIO_Output ens1_gpio.o
+ 0x10000e88 0x00000004 Code RO 382 i.MTP_init ens1_mtp.o
+ 0x10000e8c 0x00000014 Code RO 121 i.NVIC_ClearPendingIRQ ens1_uart.o
+ 0x10000ea0 0x00000014 Code RO 566 i.NVIC_ClearPendingIRQ ens1_timer.o
+ 0x10000eb4 0x00000014 Code RO 122 i.NVIC_DisableIRQ ens1_uart.o
+ 0x10000ec8 0x00000014 Code RO 567 i.NVIC_DisableIRQ ens1_timer.o
+ 0x10000edc 0x00000014 Code RO 123 i.NVIC_EnableIRQ ens1_uart.o
+ 0x10000ef0 0x00000014 Code RO 568 i.NVIC_EnableIRQ ens1_timer.o
+ 0x10000f04 0x00000018 Code RO 443 i.PCLK_Enable ens1_clock.o
+ 0x10000f1c 0x00000070 Code RO 4 i.ParseUART_EMS_Packet mian.o
+ 0x10000f8c 0x00000010 Code RO 911 i.SystemInit system_cmsdk_cm0.o
+ 0x10000f9c 0x00000020 Code RO 569 i.TIMER0_Handler ens1_timer.o
+ 0x10000fbc 0x00000040 Code RO 570 i.TIMER0_Init ens1_timer.o
+ 0x10000ffc 0x0000001c Code RO 571 i.TIMER1_Handler ens1_timer.o
+ 0x10001018 0x00000008 Code RO 574 i.Time_Manager_GetFlags ens1_timer.o
+ 0x10001020 0x0000001c Code RO 575 i.Time_Manager_Init ens1_timer.o
+ 0x1000103c 0x000000d8 Code RO 576 i.Time_Manager_Process ens1_timer.o
+ 0x10001114 0x0000006c Code RO 125 i.UART0_Handler ens1_uart.o
+ 0x10001180 0x000000a0 Code RO 126 i.UART1_Handler ens1_uart.o
+ 0x10001220 0x0000000a Code RO 128 i.UARTLine_THREmpty ens1_uart.o
+ 0x1000122a 0x0000000a Code RO 134 i.UART_INT_TYPE ens1_uart.o
+ 0x10001234 0x00000058 Code RO 135 i.UART_ITConfig ens1_uart.o
+ 0x1000128c 0x00000170 Code RO 136 i.UART_Init ens1_uart.o
+ 0x100013fc 0x0000001e Code RO 145 i.UartPutc ens1_uart.o
+ 0x1000141a 0x00000002 PAD
+ 0x1000141c 0x000000b0 Code RO 8 i.UpdateEMS_ConfigFromUART mian.o
+ 0x100014cc 0x00000004 Code RO 147 i.WRITE_UART_THRBuff ens1_uart.o
+ 0x100014d0 0x00000020 Code RO 1175 i.__0printf$8 mc_p.l(printf8.o)
+ 0x100014f0 0x0000002e Code RO 1330 i.__ARM_clz mf_p.l(depilogue.o)
+ 0x1000151e 0x00000002 PAD
+ 0x10001520 0x0000002c Code RO 1283 i.__ARM_fpclassify m_ps.l(fpclassify.o)
+ 0x1000154c 0x000000ac Code RO 1285 i.__kernel_poly m_ps.l(poly.o)
+ 0x100015f8 0x00000014 Code RO 1269 i.__mathlib_dbl_divzero m_ps.l(dunder.o)
+ 0x1000160c 0x00000008 Code RO 1271 i.__mathlib_dbl_infnan2 m_ps.l(dunder.o)
+ 0x10001614 0x00000010 Code RO 1272 i.__mathlib_dbl_invalid m_ps.l(dunder.o)
+ 0x10001624 0x00000014 Code RO 1273 i.__mathlib_dbl_overflow m_ps.l(dunder.o)
+ 0x10001638 0x00000014 Code RO 1275 i.__mathlib_dbl_underflow m_ps.l(dunder.o)
+ 0x1000164c 0x0000000e Code RO 1354 i.__scatterload_copy mc_p.l(handlers.o)
+ 0x1000165a 0x00000002 Code RO 1355 i.__scatterload_null mc_p.l(handlers.o)
+ 0x1000165c 0x0000000e Code RO 1356 i.__scatterload_zeroinit mc_p.l(handlers.o)
+ 0x1000166a 0x00000002 PAD
+ 0x1000166c 0x0000000c Code RO 1320 i.__set_errno mc_p.l(errno.o)
+ 0x10001678 0x00000428 Code RO 1182 i._printf_core mc_p.l(printf8.o)
+ 0x10001aa0 0x00000020 Code RO 1183 i._printf_post_padding mc_p.l(printf8.o)
+ 0x10001ac0 0x0000002c Code RO 1184 i._printf_pre_padding mc_p.l(printf8.o)
+ 0x10001aec 0x00000014 Code RO 779 i.boost_voltage_select_55V ens1_boost.o
+ 0x10001b00 0x00000014 Code RO 492 i.fputc retarget.o
+ 0x10001b14 0x00000064 Code RO 9 i.main mian.o
+ 0x10001b78 0x000009fc Code RO 948 i.pow m_ps.l(pow.o)
+ 0x10002574 0x00000048 Code RO 1289 i.sqrt m_ps.l(sqrt.o)
+ 0x100025bc 0x00000028 Code RO 828 i.wavegen_Init ens1_wavegen.o
+ 0x100025e4 0x00000060 Code RO 829 i.wavegen_Start ens1_wavegen.o
+ 0x10002644 0x00000016 Code RO 830 i.wavegen_Stop ens1_wavegen.o
+ 0x1000265a 0x00000012 Code RO 831 i.wavegen_UpdateIntensity ens1_wavegen.o
+ 0x1000266c 0x0000004c Code RO 832 i.wavegen_driverA_sine_test ens1_wavegen.o
+ 0x100026b8 0x0000000e Data RO 10 .constdata mian.o
+ 0x100026c6 0x00000002 PAD
+ 0x100026c8 0x00000088 Data RO 949 .constdata m_ps.l(pow.o)
+ 0x10002750 0x00000008 Data RO 1287 .constdata m_ps.l(qnan.o)
+ 0x10002758 0x00000020 Data RO 1352 Region$$Table anon$$obj.o
- Execution Region RW_IRAM1 (Exec base: 0x20000000, Load base: 0x100020b0, Size: 0x00000298, Max: 0x00020000, ABSOLUTE)
+ Execution Region RW_IRAM1 (Base: 0x20000000, Size: 0x000002e0, Max: 0x00020000, ABSOLUTE)
- Exec Addr Load Addr Size Type Attr Idx E Section Name Object
+ Base Addr Size Type Attr Idx E Section Name Object
- 0x20000000 0x100020b0 0x0000001e Data RW 111 .data ens1_uart.o
- 0x2000001e 0x100020ce 0x00000002 PAD
- 0x20000020 0x100020d0 0x0000000e Data RW 436 .data ens1_clock.o
- 0x2000002e 0x100020de 0x00000002 PAD
- 0x20000030 0x100020e0 0x00000020 Data RW 570 .data ens1_timer.o
- 0x20000050 0x10002100 0x00000028 Data RW 832 .data ens1_wavegen.o
- 0x20000078 0x10002128 0x00000008 Data RW 913 .data system_cmsdk_cm0.o
- 0x20000080 0x10002130 0x00000004 Data RW 1057 .data mc_p.l(errno.o)
- 0x20000084 - 0x0000000e Zero RW 831 .bss ens1_wavegen.o
- 0x20000092 0x10002134 0x00000006 PAD
- 0x20000098 - 0x00000200 Zero RW 941 STACK startup_cmsdk_cm0.o
+ 0x20000000 0x00000020 Data RW 149 .data ens1_uart.o
+ 0x20000020 0x0000000e Data RW 444 .data ens1_clock.o
+ 0x2000002e 0x00000002 PAD
+ 0x20000030 0x00000008 Data RW 493 .data retarget.o
+ 0x20000038 0x00000020 Data RW 578 .data ens1_timer.o
+ 0x20000058 0x00000028 Data RW 834 .data ens1_wavegen.o
+ 0x20000080 0x00000008 Data RW 912 .data system_cmsdk_cm0.o
+ 0x20000088 0x00000004 Data RW 1321 .data mc_p.l(errno.o)
+ 0x2000008c 0x00000040 Zero RW 148 .bss ens1_uart.o
+ 0x200000cc 0x0000000e Zero RW 833 .bss ens1_wavegen.o
+ 0x200000da 0x00000006 PAD
+ 0x200000e0 0x00000200 Zero RW 940 STACK startup_cmsdk_cm0.o
==============================================================================
@@ -862,21 +1219,22 @@ Image component sizes
Code (inc. data) RO Data RW Data ZI Data Debug Object Name
- 20 8 0 0 0 411 ens1_boost.o
- 404 22 0 14 0 3371 ens1_clock.o
- 584 30 0 0 0 3766 ens1_gpio.o
- 4 0 0 0 0 391 ens1_mtp.o
- 626 76 0 32 0 13827 ens1_timer.o
- 662 34 0 30 0 52268 ens1_uart.o
- 700 112 0 40 14 8014 ens1_wavegen.o
- 100 18 0 0 0 42243 mian.o
- 28 8 192 0 512 576 startup_cmsdk_cm0.o
- 16 8 0 8 0 631 system_cmsdk_cm0.o
+ 20 8 0 0 0 435 ens1_boost.o
+ 404 22 0 14 0 3519 ens1_clock.o
+ 480 16 0 0 0 2036 ens1_gpio.o
+ 4 0 0 0 0 419 ens1_mtp.o
+ 622 78 0 32 0 7209 ens1_timer.o
+ 838 46 0 32 64 16313 ens1_uart.o
+ 696 108 0 40 14 7154 ens1_wavegen.o
+ 460 42 14 0 0 48121 mian.o
+ 20 4 0 8 0 2334 retarget.o
+ 28 8 192 0 512 596 startup_cmsdk_cm0.o
+ 16 8 0 8 0 679 system_cmsdk_cm0.o
----------------------------------------------------------------------
- 3150 316 224 128 532 125498 Object Totals
+ 3592 340 240 136 596 88815 Object Totals
0 0 32 0 0 0 (incl. Generated)
- 6 0 0 4 6 0 (incl. Padding)
+ 4 0 2 2 6 0 (incl. Padding)
----------------------------------------------------------------------
@@ -891,6 +1249,7 @@ Image component sizes
0 0 0 0 0 0 entry.o
0 0 0 0 0 0 entry10a.o
0 0 0 0 0 0 entry11a.o
+ 4 0 0 0 0 0 entry12b.o
8 4 0 0 0 0 entry2.o
4 0 0 0 0 0 entry5.o
0 0 0 0 0 0 entry7b.o
@@ -905,9 +1264,11 @@ Image component sizes
34 0 0 0 0 68 llushr.o
36 0 0 0 0 60 memcpya.o
36 0 0 0 0 100 memseta.o
+ 1172 52 0 0 0 324 printf8.o
44 0 0 0 0 72 uidiv.o
+ 96 0 0 0 0 84 uldiv.o
40 2 0 0 0 68 cdrcmple.o
- 356 4 0 0 0 140 dadd.o
+ 360 6 0 0 0 140 dadd.o
240 6 0 0 0 84 ddiv.o
236 0 0 0 0 216 depilogue.o
60 10 0 0 0 68 dfixui.o
@@ -921,19 +1282,19 @@ Image component sizes
14 0 0 0 0 68 ffltui.o
----------------------------------------------------------------------
- 4850 280 144 4 0 2580 Library Totals
- 6 0 0 0 0 0 (incl. Padding)
+ 6128 334 144 4 0 2988 Library Totals
+ 8 0 0 0 0 0 (incl. Padding)
----------------------------------------------------------------------
Code (inc. data) RO Data RW Data ZI Data Debug Library Name
2928 220 144 0 0 792 m_ps.l
- 318 22 0 4 0 564 mc_p.l
- 1598 38 0 0 0 1224 mf_p.l
+ 1590 74 0 4 0 972 mc_p.l
+ 1602 40 0 0 0 1224 mf_p.l
----------------------------------------------------------------------
- 4850 280 144 4 0 2580 Library Totals
+ 6128 334 144 4 0 2988 Library Totals
----------------------------------------------------------------------
@@ -942,15 +1303,15 @@ Image component sizes
Code (inc. data) RO Data RW Data ZI Data Debug
- 8000 596 368 132 532 125098 Grand Totals
- 8000 596 368 132 532 125098 ELF Image Totals
- 8000 596 368 132 0 0 ROM Totals
+ 9720 674 384 140 596 88603 Grand Totals
+ 9720 674 384 140 596 88603 ELF Image Totals
+ 9720 674 384 140 0 0 ROM Totals
==============================================================================
- Total RO Size (Code + RO Data) 8368 ( 8.17kB)
- Total RW Size (RW Data + ZI Data) 664 ( 0.65kB)
- Total ROM Size (Code + RO Data + RW Data) 8500 ( 8.30kB)
+ Total RO Size (Code + RO Data) 10104 ( 9.87kB)
+ Total RW Size (RW Data + ZI Data) 736 ( 0.72kB)
+ Total ROM Size (Code + RO Data + RW Data) 10244 ( 10.00kB)
==============================================================================
diff --git a/Listings/startup_cmsdk_cm0.lst b/Listings/startup_cmsdk_cm0.lst
index 0bd29a9..5586af7 100644
--- a/Listings/startup_cmsdk_cm0.lst
+++ b/Listings/startup_cmsdk_cm0.lst
@@ -297,11 +297,12 @@ ARM Macro Assembler Page 5
00000000
00000000
Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M0 --apcs=interw
-ork --depend=.\objects\startup_cmsdk_cm0.d -o.\objects\startup_cmsdk_cm0.o -ID:
-\Keil_v5\ARM\Packs\ARM\Cortex_DFP\1.1.0\Device\ARMCM0\Include -ID:\Keil_v5\ARM\
-Packs\ARM\Cortex_DFP\1.1.0\Device\ARM\ARMCM0\Include --predefine="__MICROLIB SE
-TA 1" --predefine="__UVISION_VERSION SETA 538" --predefine="ARMCM0 SETA 1" --li
-st=.\listings\startup_cmsdk_cm0.lst CORE\ARM\startup_CMSDK_CM0.s
+ork --depend=.\objects\startup_cmsdk_cm0.d -o.\objects\startup_cmsdk_cm0.o -IC:
+\Users\29096\Desktop\work\ůо\TIMER_DEMO\RTE -IC:\Users\29096\AppData\Local\
+Arm\Packs\ARM\CMSIS\5.8.0\Device\ARM\ARMCM0\Include -IC:\Keil_v5\ARM\CMSIS\Incl
+ude --predefine="__MICROLIB SETA 1" --predefine="__UVISION_VERSION SETA 514" --
+predefine="ARMCM0 SETA 1" --list=.\listings\startup_cmsdk_cm0.lst CORE\ARM\star
+tup_CMSDK_CM0.s
diff --git a/Objects/ENS001_BASIC_PRJ.axf b/Objects/ENS001_BASIC_PRJ.axf
index c658b4c..7b409bc 100644
Binary files a/Objects/ENS001_BASIC_PRJ.axf and b/Objects/ENS001_BASIC_PRJ.axf differ
diff --git a/Objects/ENS001_BASIC_PRJ.build_log.htm b/Objects/ENS001_BASIC_PRJ.build_log.htm
index 5eedd46..11f56a2 100644
--- a/Objects/ENS001_BASIC_PRJ.build_log.htm
+++ b/Objects/ENS001_BASIC_PRJ.build_log.htm
@@ -3,62 +3,42 @@
Vision Build Log
Tool Versions:
-IDE-Version: Vision V5.38.0.0
-Copyright (C) 2022 ARM Ltd and ARM Germany GmbH. All rights reserved.
-License Information: rick chen, hangzhouQX, LIC=RC93N-YY58Z-RAADM-X0YVM-V5YIY-0QTVL
+IDE-Version: Vision V5.14.2
+Copyright (C) 2015 ARM Ltd and ARM Germany GmbH. All rights reserved.
+License Information: s 2909605431@qq.com, s, LIC=CZLZX-HAP5E-WFDI7-E212L-HDEAA-ZXKD1
Tool Versions:
-Toolchain: MDK-ARM Plus Version: 5.38.0.0
-Toolchain Path: D:\Keil_v5\ARM\ARM_Compiler_5.06u7\Bin
-C Compiler: Armcc.exe V5.06 update 6 (build 750)
-Assembler: Armasm.exe V5.06 update 6 (build 750)
-Linker/Locator: ArmLink.exe V5.06 update 6 (build 750)
-Library Manager: ArmAr.exe V5.06 update 6 (build 750)
-Hex Converter: FromElf.exe V5.06 update 6 (build 750)
-CPU DLL: SARMCM3.DLL V5.38.0.0
-Dialog DLL: DARMCM1.DLL V1.19.6.0
-Target DLL: Segger\JL2CM3.dll V2.99.42.0
-Dialog DLL: TARMCM1.DLL V1.14.6.0
+Toolchain: MDK-ARM Standard Version: 5.36.0.0
+Toolchain Path: C:\Keil_v5\ARM\ARMCC\Bin
+C Compiler: Armcc.exe V5.06 update 7 (build 960)
+Assembler: Armasm.exe V5.06 update 7 (build 960)
+Linker/Locator: ArmLink.exe V5.06 update 7 (build 960)
+Library Manager: ArmAr.exe V5.06 update 7 (build 960)
+Hex Converter: FromElf.exe V5.06 update 7 (build 960)
+CPU DLL: SARMCM3.DLL V5.36.0.0
+Dialog DLL: DARMCM1.DLL V1.19.4.0
+Target DLL: Segger\JL2CM3.dll V2.99.15.0
+Dialog DLL: TARMCM1.DLL V1.14.4.0
Project:
-E:\WeChat Files\wxid_2yspimlbsy4d22\xwechat_files\wxid_2yspimlbsy4d22_74fb\msg\file\2025-09\TIMER_DEMO\TIMER_DEMO\ENS001_BASIC_PRJ.uvprojx
+C:\Users\29096\Desktop\work\ůо\TIMER_DEMO\ENS001_BASIC_PRJ.uvprojx
Project File Date: 08/15/2025
Output:
-*** Using Compiler 'V5.06 update 6 (build 750)', folder: 'D:\Keil_v5\ARM\ARM_Compiler_5.06u7\Bin'
+*** Using Compiler 'V5.06 update 7 (build 960)', folder: 'C:\Keil_v5\ARM\ARMCC\Bin'
Build target 'ENS001_BASIC_PRJ'
compiling mian.c...
-compiling ENS1_WAVEGEN.c...
-FWLIB\source\ENS1_WAVEGEN.c(54): warning: #177-D: variable "err_code" was declared but never referenced
- int err_code = 0;
-FWLIB\source\ENS1_WAVEGEN.c: 1 warning, 0 errors
-compiling ENS1_TIMER.c...
-FWLIB\source\ENS1_TIMER.c(389): warning: #223-D: function "EMS_Process" declared implicitly
- EMS_Process();
-FWLIB\source\ENS1_TIMER.c(410): warning: #223-D: function "GPIO_Overturn" declared implicitly
- GPIO_Overturn(GPIO_19);
-FWLIB\source\ENS1_TIMER.c(421): warning: #223-D: function "EMS_Start" declared implicitly
- EMS_Start(); // 启动电刺激
-FWLIB\source\ENS1_TIMER.c(430): warning: #223-D: function "EMS_Stop" declared implicitly
- EMS_Stop(); // 停止电刺激
-FWLIB\source\ENS1_TIMER.c: 4 warnings, 0 errors
+compiling ENS1_UART.c...
linking...
-Program Size: Code=8000 RO-data=368 RW-data=132 ZI-data=532
+Program Size: Code=9720 RO-data=384 RW-data=140 ZI-data=596
FromELF: creating hex file...
-".\Objects\ENS001_BASIC_PRJ.axf" - 0 Error(s), 5 Warning(s).
-
-Software Packages used:
-
-Package Vendor: ARM
- https://www.keil.com/pack/ARM.Cortex_DFP.1.1.0.pack
- ARM.Cortex_DFP.1.1.0
- ARM Cortex Reference Subsystems Device Family Pack
+".\Objects\ENS001_BASIC_PRJ.axf" - 0 Error(s), 0 Warning(s).
Collection of Component include folders:
- D:/Keil_v5/ARM/Packs/ARM/Cortex_DFP/1.1.0/Device/ARMCM0/Include
+ C:\Users\29096\Desktop\work\ůо\TIMER_DEMO\RTE
+ C:\Users\29096\AppData\Local\Arm\Packs\ARM\CMSIS\5.8.0\Device\ARM\ARMCM0\Include
Collection of Component Files used:
-Build Time Elapsed: 00:00:01