From 7a118dba9390215402a692d9e0598109f5c50356 Mon Sep 17 00:00:00 2001 From: JIU JIALIN <2339061402@qq.com> Date: Tue, 26 Aug 2025 11:38:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=84=89=E5=86=B2=E5=A4=9A?= =?UTF-8?q?=E5=8F=91bug,=E6=B2=A1=E6=9C=89=E8=80=83=E8=99=91=E5=88=B00?= =?UTF-8?q?=E4=B9=9F=E5=B1=9E=E4=BA=8ECNT=E8=AE=A1=E6=95=B0=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PLSR/PLSR/Core/Inc/tim.h | 3 +- PLSR/PLSR/Core/Src/tim.c | 77 +- PLSR/PLSR/EWARM/test.1.dep | 1294 ++++++++++++------------- PLSR/PLSR/EWARM/test.1/Exe/test.1.sim | Bin 40294 -> 40406 bytes 4 files changed, 705 insertions(+), 669 deletions(-) diff --git a/PLSR/PLSR/Core/Inc/tim.h b/PLSR/PLSR/Core/Inc/tim.h index 1604998..b46a9e6 100644 --- a/PLSR/PLSR/Core/Inc/tim.h +++ b/PLSR/PLSR/Core/Inc/tim.h @@ -222,7 +222,8 @@ typedef enum { // ==================== PWM控制函数 ==================== void PLSR_PWM_Init(void); void PLSR_PWM_Start(void); -void PLSR_PWM_Stop(void); +void PLSR_Section_PWM_Stop(void); +void PLSR_Route_PWM_Stop(); void PLSR_PWM_SetFrequency(uint32_t frequency); // ==================== PLSR路径控制函数 ==================== diff --git a/PLSR/PLSR/Core/Src/tim.c b/PLSR/PLSR/Core/Src/tim.c index d7eec5c..c4322bc 100644 --- a/PLSR/PLSR/Core/Src/tim.c +++ b/PLSR/PLSR/Core/Src/tim.c @@ -143,7 +143,7 @@ void MX_TIM2_Init(void) } // 配置外部时钟源 - ETR模式 sClockSourceConfig.ClockSource = TIM_CLOCKSOURCE_ETRMODE2; // 外部时钟模式2 - sClockSourceConfig.ClockPolarity = TIM_CLOCKPOLARITY_NONINVERTED; // 下降沿触发 + sClockSourceConfig.ClockPolarity = TIM_CLOCKPOLARITY_NONINVERTED; // 上升沿触发 sClockSourceConfig.ClockPrescaler = TIM_CLOCKPRESCALER_DIV1; // 不分频 sClockSourceConfig.ClockFilter = 0; // 无滤波 if (HAL_TIM_ConfigClockSource(&htim2, &sClockSourceConfig) != HAL_OK) @@ -704,38 +704,69 @@ void PLSR_PWM_Start(void) * @retval None * @note 根据g_plsr_route.output_port选择目标定时器:0-TIM10, 1-TIM11, 2-TIM13, 3-TIM14 */ -void PLSR_PWM_Stop(void) +void PLSR_Section_PWM_Stop(void) { // 根据output_port选择目标定时器并停止PWM输出 switch(g_plsr_route.output_port) { case 0: // TIM10 - __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, 0xFFFF); // + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, 0); // //HAL_TIM_PWM_Stop(&htim10, TIM_CHANNEL_1); break; case 1: // TIM11 - __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, 0xFFFF); // + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, 0); // //HAL_TIM_PWM_Stop(&htim11, TIM_CHANNEL_1); break; case 2: // TIM13 - __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, 0xFFFF); // + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, 0); // //HAL_TIM_PWM_Stop(&htim13, TIM_CHANNEL_1); break; case 3: // TIM14 - __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, 0xFFFF); // + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, 0); // //HAL_TIM_PWM_Stop(&htim14, TIM_CHANNEL_1); break; default: // 默认使用TIM10 - __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, 0xFFFF); // + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, 0); // //HAL_TIM_PWM_Stop(&htim10, TIM_CHANNEL_1); break; } } +void PLSR_Route_PWM_Stop() +{ + // 根据output_port选择目标定时器并停止PWM输出 + switch(g_plsr_route.output_port) + { + case 0: // TIM10 + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, 0xFFFF); // + //HAL_TIM_PWM_Stop(&htim10, TIM_CHANNEL_1); + break; + + case 1: // TIM11 + //__HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, 0xFFFF); // + HAL_TIM_PWM_Stop(&htim11, TIM_CHANNEL_1); + break; + + case 2: // TIM13 + //__HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, 0xFFFF); // + HAL_TIM_PWM_Stop(&htim13, TIM_CHANNEL_1); + break; + + case 3: // TIM14 + //__HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, 0xFFFF); // + HAL_TIM_PWM_Stop(&htim14, TIM_CHANNEL_1); + break; + + default: // 默认使用TIM10 + //__HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, 0xFFFF); // + HAL_TIM_PWM_Stop(&htim10, TIM_CHANNEL_1); + break; + } +} /** * @brief 计算定时器参数 @@ -1529,10 +1560,10 @@ void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) // TIM2中断:负责段切换逻辑 if(htim->Instance == TIM2) { - PLSR_PWM_Stop(); + PLSR_Section_PWM_Stop(); // 精确累加当前段已发送的脉冲数 int32_t current_section_pulses = __HAL_TIM_GetAutoreload(&htim2); - AllPluse += current_section_pulses; + AllPluse += current_section_pulses + 1; g_plsr_route.pulse_count = AllPluse; PLSR_UpdateGlobalPulseCount(AllPluse); // 三部分状态机处理 @@ -1546,11 +1577,13 @@ void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) g_plsr_route.current_part = PLSR_PART_2; g_plsr_route.run_state = g_plsr_route.part2_state; g_plsr_route.target_freq = g_plsr_route.part2_target_freq; - g_plsr_route.initial_freq = g_plsr_route.current_freq; // 更新加减速初始频率 + g_plsr_route.initial_freq = g_plsr_route.part2_target_freq; // 更新加减速初始频率 g_last_freq = 0; // 清零g_last_freq,防止频率计算时的累加效果 - PLSR_PWM_SetFrequency(g_plsr_route.target_freq); - __HAL_TIM_SetAutoreload(&htim2, g_plsr_route.const_pulse_count); + + g_plsr_route.current_freq = g_plsr_route.target_freq; + PLSR_PWM_SetFrequency(g_plsr_route.current_freq); + __HAL_TIM_SetAutoreload(&htim2, g_plsr_route.const_pulse_count - 1); __HAL_TIM_SET_COUNTER(&htim2, 0); PLSR_PWM_Start(); break; @@ -1563,7 +1596,7 @@ void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) g_plsr_route.target_freq = g_plsr_route.part3_target_freq; g_plsr_route.initial_freq = g_plsr_route.current_freq; // 更新加减速初始频率 g_last_freq = 0; // 清零g_last_freq,防止频率计算时的累加效果 - __HAL_TIM_SetAutoreload(&htim2, g_plsr_route.decel_pulse_count); + __HAL_TIM_SetAutoreload(&htim2, g_plsr_route.decel_pulse_count - 1); __HAL_TIM_SET_COUNTER(&htim2, 0); PLSR_PWM_Start(); break; @@ -1584,7 +1617,7 @@ void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) g_plsr_route.run_state = g_plsr_route.part3_state; g_plsr_route.target_freq = g_plsr_route.part3_target_freq; - __HAL_TIM_SetAutoreload(&htim2, g_plsr_route.decel_pulse_count); + __HAL_TIM_SetAutoreload(&htim2, g_plsr_route.decel_pulse_count - 1); __HAL_TIM_SET_COUNTER(&htim2, 0); PLSR_PWM_Start(); break; @@ -1627,7 +1660,7 @@ void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) if(g_plsr_route.section[g_plsr_route.current_section_num-1].target_freq != g_plsr_current_target_freq) { g_plsr_mod_flag = 1; // 标记当前段目标频率被修改 - PLSR_PWM_Stop(); + PLSR_Section_PWM_Stop(); AllPluse += current_tim2_count; // 累加当前段已发送的脉冲数 PLSR_Section_StartNewSection(&g_plsr_route); ///<重新启动当前段 PLSR_PWM_Start(); @@ -1720,7 +1753,7 @@ void PLSR_Route_Init(PLSR_RouteConfig_t* route) g_last_freq = 0; // 清零上一次计算的频率 PLSR_TIM6_SetUpdateFreq(100); //初始化TIM6更新频率为1000us(1ms) - PLSR_PWM_Stop(); // 确保PWM停止,避免意外输出 + //PLSR_Section_PWM_Stop(); // 确保PWM停止,避免意外输出 } /** @@ -1773,7 +1806,7 @@ void PLSR_Route_Stop(PLSR_RouteConfig_t* route) if (route == NULL) return; // 停止PWM输出和定时器 - PLSR_PWM_Stop(); + PLSR_Route_PWM_Stop(); PLSR_TIM6_Stop(); HAL_TIM_Base_Stop_IT(&htim2); // 停止TIM2中断 @@ -2119,7 +2152,7 @@ void PLSR_SetupThreePartExecution(PLSR_RouteConfig_t* route) route->part1_state == PLSR_STATE_DECEL || route->part1_state == PLSR_STATE_CONST) { - __HAL_TIM_SetAutoreload(&htim2, route->accel_pulse_count); + __HAL_TIM_SetAutoreload(&htim2, route->accel_pulse_count - 1); route->run_state = route->part1_state; route->target_freq = route->part1_target_freq; return; // 设置完成,退出函数 @@ -2136,7 +2169,7 @@ void PLSR_SetupThreePartExecution(PLSR_RouteConfig_t* route) // 第二部分:匀速 if(route->const_pulse_count > 0) { - __HAL_TIM_SetAutoreload(&htim2, route->const_pulse_count); + __HAL_TIM_SetAutoreload(&htim2, route->const_pulse_count - 1); route->run_state = route->part2_state; // 通常是PLSR_STATE_CONST route->target_freq = route->part2_target_freq; return; // 设置完成,退出函数 @@ -2153,7 +2186,7 @@ void PLSR_SetupThreePartExecution(PLSR_RouteConfig_t* route) // 第三部分:减速到0 if(route->decel_pulse_count > 0) { - __HAL_TIM_SetAutoreload(&htim2, route->decel_pulse_count); + __HAL_TIM_SetAutoreload(&htim2, route->decel_pulse_count - 1); route->run_state = route->part3_state; // 通常是PLSR_STATE_DECEL route->target_freq = route->part3_target_freq; // 通常是0 return; // 设置完成,退出函数 @@ -2444,6 +2477,8 @@ void PLSR_Accel_Process(PLSR_RouteConfig_t* route) { case 0: HAL_TIM_PWM_Start(&htim10, TIM_CHANNEL_1); + // 触发更新事件 - 立即将新参数加载到影子寄存器 + HAL_TIM_GenerateEvent(&htim10, TIM_EVENTSOURCE_UPDATE); break; case 1: HAL_TIM_PWM_Start(&htim11, TIM_CHANNEL_1); @@ -2585,7 +2620,7 @@ void PLSR_TaskSectionSwitch(PLSR_RouteConfig_t* route) { /* 路径结束 */ route->route_state = PLSR_ROUTE_COMPLETED; - PLSR_PWM_Stop(); + PLSR_Route_PWM_Stop(); return; } diff --git a/PLSR/PLSR/EWARM/test.1.dep b/PLSR/PLSR/EWARM/test.1.dep index 4d2ecb4..185b029 100644 --- a/PLSR/PLSR/EWARM/test.1.dep +++ b/PLSR/PLSR/EWARM/test.1.dep @@ -5,1266 +5,1276 @@ test.1 - $PROJ_DIR$\..\Core\Src\modbus_log.c - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c - $PROJ_DIR$\startup_stm32f407xx.s - $PROJ_DIR$\..\Core\Src\dma.c - $PROJ_DIR$\..\Core\Src\flash_save.c - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c - $PROJ_DIR$\..\Core\Src\main.c - $PROJ_DIR$\..\Core\Src\tim.c - $PROJ_DIR$\..\Core\Src\gpio.c - $PROJ_DIR$\..\Core\Src\modbus_crc.c - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c - $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c - $PROJ_DIR$\..\Core\Src\usart.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c - $PROJ_DIR$\..\UCOS\Config\app_cfg.h - $PROJ_DIR$\test.1\Obj\modbus_crc.xcl + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c + $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Core\Src\modbus_log.c + $PROJ_DIR$\startup_stm32f407xx.s + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c + $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c + $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Core\Src\flash_save.c + $PROJ_DIR$\..\Core\Src\modbus_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o + $PROJ_DIR$\..\UCOS\Source\os_q.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.xcl $PROJ_DIR$\..\UCOS\Source\os.h - $PROJ_DIR$\test.1\Obj\os_cpu_c.o $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.xcl - $PROJ_DIR$\..\UCOS\Config\os_cfg.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h - $TOOLKIT_DIR$\inc\c\yvals.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o - $PROJ_DIR$\..\UCOS\Source\os_q.c - $PROJ_DIR$\..\UCOS\Source\os_mbox.c + $TOOLKIT_DIR$\lib\dl7M_tlf.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.xcl + $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h + $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o + $PROJ_DIR$\test.1\Obj\gpio.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o - $PROJ_DIR$\test.1\Obj\app_hooks.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o + $PROJ_DIR$\..\UCOS\Source\os_task.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.xcl $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et + $TOOLKIT_DIR$\inc\c\stdlib.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et + $PROJ_DIR$\..\UCOS\Config\app_cfg.h $PROJ_DIR$\test.1\Obj\system_stm32f4xx.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o + $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et + $PROJ_DIR$\test.1\Obj\os_cpu_c.xcl + $TOOLKIT_DIR$\inc\c\ycheck.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.xcl + $TOOLKIT_DIR$\inc\c\DLib_Product.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et + $TOOLKIT_DIR$\lib\rt7M_tl.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.xcl + $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et + $PROJ_DIR$\test.1\Exe\test.1.out + $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et + $PROJ_DIR$\test.1\Obj\modbus_crc.xcl $PROJ_DIR$\test.1\Exe\test.1.hex - $PROJ_DIR$\test.1\Obj\main.__cstat.et - $TOOLKIT_DIR$\lib\m7M_tls.a - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.xcl - $PROJ_DIR$\..\Core\Inc\dma.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o - $PROJ_DIR$\..\Core\Inc\tim.h - $PROJ_DIR$\..\Core\Inc\modbus_log.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h + $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.xcl - $PROJ_DIR$\test.1\Obj\gpio.o - $PROJ_DIR$\test.1\Obj\main.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.xcl - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h - $PROJ_DIR$\test.1\Obj\flash_save.xcl + $PROJ_DIR$\test.1\Obj\usart.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.xcl + $PROJ_DIR$\..\Core\Inc\usart.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o $PROJ_DIR$\..\Core\Inc\flash_save.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o + $PROJ_DIR$\..\Core\Inc\modbus_log.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o - $PROJ_DIR$\test.1\Obj\gpio.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o - $PROJ_DIR$\test.1\Obj\modbus_crc.o - $TOOLKIT_DIR$\inc\c\iccarm_builtin.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et - $TOOLKIT_DIR$\inc\c\ycheck.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o - $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.xcl + $PROJ_DIR$\test.1\Obj\modbus_log.xcl + $PROJ_DIR$\..\UCOS\Source\os_trace.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et + $PROJ_DIR$\test.1\Obj\main.__cstat.et + $PROJ_DIR$\test.1\List\test.1.map $PROJ_DIR$\..\UCOS\Source\os_time.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.xcl - $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et - $PROJ_DIR$\test.1\Obj\usart.__cstat.et - $TOOLKIT_DIR$\inc\c\math.h - $PROJ_DIR$\test.1\Obj\dma.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o - $PROJ_DIR$\test.1\Obj\dma.__cstat.et - $TOOLKIT_DIR$\inc\c\string.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et + $PROJ_DIR$\test.1\Obj\main.xcl + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h $PROJ_DIR$\test.1\Obj\os_cpu_a.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et - $PROJ_DIR$\..\UCOS\Source\os_mem.c - $TOOLKIT_DIR$\inc\c\stdint.h + $PROJ_DIR$\test.1\Obj\modbus_log.o $TOOLKIT_DIR$\inc\c\DLib_float_setup.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.xcl - $PROJ_DIR$\test.1\Obj\tim.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et - $TOOLKIT_DIR$\inc\c\DLib_Product.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.xcl - $PROJ_DIR$\..\Core\Inc\main.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h - $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h - $PROJ_DIR$\..\UCOS\Source\os_trace.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et + $TOOLKIT_DIR$\inc\c\math.h $PROJ_DIR$\..\Core\Inc\modbus_crc.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o - $PROJ_DIR$\test.1\Obj\ucos_ii.xcl - $PROJ_DIR$\..\UCOS\Source\os_mutex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et - $TOOLKIT_DIR$\lib\dl7M_tlf.a - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o - $PROJ_DIR$\test.1\Obj\os_dbg.xcl - $PROJ_DIR$\test.1\Obj\os_cpu_c.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h - $PROJ_DIR$\test.1\Obj\ucos_ii.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et - $PROJ_DIR$\test.1\Obj\flash_save.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o - $PROJ_DIR$\test.1\Obj\tim.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.xcl + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h + $TOOLKIT_DIR$\inc\c\string.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et $TOOLKIT_DIR$\inc\c\DLib_Product_string.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o - $PROJ_DIR$\..\UCOS\Source\os_flag.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.xcl - $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o - $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et + $PROJ_DIR$\test.1\Obj\modbus_crc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.xcl + $TOOLKIT_DIR$\inc\c\iccarm_builtin.h + $TOOLKIT_DIR$\lib\m7M_tls.a + $PROJ_DIR$\..\UCOS\Source\os_tmr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et + $PROJ_DIR$\..\UCOS\Source\ucos_ii.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h + $TOOLKIT_DIR$\inc\c\ctype.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o - $PROJ_DIR$\test.1\Obj\os_dbg.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et + $PROJ_DIR$\stm32f407xx_flash.icf + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.xcl + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.xcl - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h - $PROJ_DIR$\test.1\Obj\usart.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.xcl + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.xcl $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o - $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.xcl - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o + $PROJ_DIR$\test.1\Obj\tim.__cstat.et + $PROJ_DIR$\test.1\Obj\gpio.__cstat.et + $TOOLKIT_DIR$\inc\c\stdint.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.xcl + $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et + $PROJ_DIR$\test.1\Obj\dma.xcl + $PROJ_DIR$\test.1\Obj\flash_save.o + $PROJ_DIR$\..\UCOS\Ports\os_cpu.h + $PROJ_DIR$\..\UCOS\Config\os_cfg.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o + $TOOLKIT_DIR$\inc\c\stdio.h + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.xcl + $TOOLKIT_DIR$\inc\c\yvals.h + $PROJ_DIR$\test.1\Obj\ucos_ii.xcl + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.xcl + $PROJ_DIR$\..\Core\Inc\dma.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o - $TOOLKIT_DIR$\lib\shb_l.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h + $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.xcl $PROJ_DIR$\..\UCOS\Source\os_sem.c + $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h + $PROJ_DIR$\test.1\Obj\flash_save.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.xcl - $PROJ_DIR$\..\UCOS\Source\os_task.c - $PROJ_DIR$\..\UCOS\Ports\os_cpu.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et - $TOOLKIT_DIR$\inc\c\ctype.h - $PROJ_DIR$\test.1\Obj\usart.xcl - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o - $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et - $TOOLKIT_DIR$\inc\c\stdio.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.xcl - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et - $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et - $TOOLKIT_DIR$\inc\c\stdarg.h - $PROJ_DIR$\test.1\Obj\dma.xcl - $PROJ_DIR$\test.1\Obj\modbus_log.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.xcl - $TOOLKIT_DIR$\lib\rt7M_tl.a - $PROJ_DIR$\test.1\Obj\tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o + $PROJ_DIR$\test.1\Obj\os_dbg.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h + $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.xcl + $PROJ_DIR$\..\UCOS\Source\os_mbox.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.xcl $PROJ_DIR$\test.1\Obj\app_hooks.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o + $TOOLKIT_DIR$\lib\shb_l.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.__cstat.et + $PROJ_DIR$\test.1\Obj\tim.o + $PROJ_DIR$\test.1\Obj\os_cpu_c.o + $PROJ_DIR$\..\UCOS\Source\os_mutex.c + $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_mem.c + $PROJ_DIR$\..\UCOS\Source\os_flag.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et + $PROJ_DIR$\test.1\Obj\usart.__cstat.et + $PROJ_DIR$\test.1\Obj\main.o $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.xcl - $PROJ_DIR$\stm32f407xx_flash.icf - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et - $PROJ_DIR$\..\UCOS\Source\ucos_ii.h - $TOOLKIT_DIR$\inc\c\ysizet.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et - $PROJ_DIR$\test.1\Obj\modbus_log.o + $PROJ_DIR$\test.1\Obj\app_hooks.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o - $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et - $PROJ_DIR$\..\Core\Inc\usart.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et - $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.xcl + $TOOLKIT_DIR$\inc\c\ysizet.h + $PROJ_DIR$\test.1\Obj\usart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.xcl $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h - $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h - $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h - $PROJ_DIR$\..\UCOS\Source\os_tmr.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.xcl - $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o + $PROJ_DIR$\test.1\Obj\tim.xcl $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c - $PROJ_DIR$\..\UCOS\Source\os_core.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o - $PROJ_DIR$\test.1\Obj\gpio.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.__cstat.et - $TOOLKIT_DIR$\inc\c\stdlib.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o - $PROJ_DIR$\test.1\List\test.1.map - $PROJ_DIR$\test.1\Obj\main.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.xcl - $PROJ_DIR$\..\Core\Inc\gpio.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o + $PROJ_DIR$\..\Core\Inc\main.h + $PROJ_DIR$\test.1\Obj\dma.o + $PROJ_DIR$\..\Core\Inc\tim.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h + $PROJ_DIR$\test.1\Obj\gpio.o $TOOLKIT_DIR$\inc\c\stddef.h - $PROJ_DIR$\..\UCOS\Source\ucos_ii.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.xcl $PROJ_DIR$\..\UCOS\Config\app_hooks.c - $PROJ_DIR$\..\UCOS\Ports\os_dbg.c - $PROJ_DIR$\test.1\Exe\test.1.out - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\test.1\Obj\os_dbg.o + $PROJ_DIR$\test.1\Obj\dma.__cstat.et + $PROJ_DIR$\..\Core\Inc\gpio.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h + $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.xcl + $PROJ_DIR$\..\UCOS\Source\os_core.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c + $PROJ_DIR$\test.1\Obj\ucos_ii.o [ROOT_NODE] ILINK - 278 269 + 89 115 - $PROJ_DIR$\..\Core\Src\modbus_log.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c - __cstat - 248 + ICCARM + 166 - ICCARM - 239 + __cstat + 216 BICOMP - 224 + 233 ICCARM - 77 242 134 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 211 112 165 202 264 138 222 141 87 76 108 121 236 45 51 200 139 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c - __cstat - 70 + ICCARM + 224 - ICCARM - 66 + __cstat + 95 BICOMP - 64 + 165 ICCARM - 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 146 173 216 71 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c - __cstat - 263 + ICCARM + 179 - ICCARM - 169 + __cstat + 225 BICOMP - 185 + 68 ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\startup_stm32f407xx.s + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c - AARM - 172 + ICCARM + 192 - - - - $PROJ_DIR$\..\Core\Src\dma.c - __cstat - 111 - - - ICCARM - 109 + 253 BICOMP - 223 + 100 ICCARM - 74 134 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Core\Src\flash_save.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c - __cstat - 221 + ICCARM + 86 - ICCARM - 159 + __cstat + 70 BICOMP - 86 + 161 ICCARM - 87 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 242 134 211 112 165 202 264 138 222 141 77 76 108 121 236 45 51 200 139 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c - __cstat - 220 + ICCARM + 183 - ICCARM - 161 + __cstat + 170 BICOMP - 132 + 151 ICCARM - 134 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c - __cstat - 68 + ICCARM + 241 - ICCARM - 83 + __cstat + 242 BICOMP - 270 + 203 ICCARM - 134 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 272 76 242 211 112 165 202 264 138 222 141 87 77 108 121 236 45 51 200 139 74 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c - __cstat - 126 + ICCARM + 107 - ICCARM - 228 + __cstat + 112 BICOMP - 162 + 213 ICCARM - 76 134 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 242 211 112 165 202 264 138 222 141 87 77 108 121 236 45 51 200 139 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c + + ICCARM + 222 + __cstat - 262 + 108 + + BICOMP + 102 + + + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + ICCARM - 82 + 146 + + + __cstat + 204 BICOMP - 91 + 135 ICCARM - 272 134 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 76 242 211 112 165 202 264 138 222 141 87 77 108 121 236 45 51 200 139 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Core\Src\modbus_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c - __cstat - 101 + ICCARM + 150 - ICCARM - 94 + __cstat + 234 BICOMP - 46 + 109 - - - ICCARM - 141 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 146 173 216 71 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 - - - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c - __cstat - 255 + ICCARM + 266 - ICCARM - 123 + __cstat + 51 BICOMP - 231 + 212 ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c - __cstat - 92 + ICCARM + 103 - ICCARM - 177 + __cstat + 113 BICOMP - 133 + 157 ICCARM - 134 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 247 236 45 222 211 51 200 139 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c - __cstat - 107 + ICCARM + 178 - ICCARM - 184 + __cstat + 122 BICOMP - 203 + 144 ICCARM - 242 134 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 211 112 165 202 264 138 222 141 87 77 76 108 121 236 45 51 200 139 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c - __cstat - 238 + ICCARM + 193 - ICCARM - 110 + __cstat + 251 BICOMP - 225 + 202 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c - __cstat - 128 + ICCARM + 57 - ICCARM - 143 + __cstat + 145 BICOMP - 233 + 171 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c - __cstat - 163 + ICCARM + 48 - ICCARM - 136 + __cstat + 143 BICOMP - 105 + 60 - - - ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c - __cstat - 131 + ICCARM + 160 - ICCARM - 175 + __cstat + 219 BICOMP - 182 + 59 - - - ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c - __cstat - 207 + ICCARM + 62 - ICCARM - 212 + __cstat + 71 BICOMP - 130 + 264 ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c - __cstat - 63 + ICCARM + 267 - ICCARM - 57 + __cstat + 129 BICOMP - 279 + 155 ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c - __cstat - 282 + ICCARM + 149 - ICCARM - 217 + __cstat + 240 BICOMP - 164 + 64 ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c - __cstat - 113 + ICCARM + 94 - ICCARM - 151 + __cstat + 191 BICOMP - 280 + 277 ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c - __cstat - 192 + ICCARM + 67 - ICCARM - 261 + __cstat + 244 BICOMP - 117 + 197 ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c - __cstat - 219 + ICCARM + 63 - ICCARM - 52 + __cstat + 127 BICOMP - 84 + 87 - - - ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c - __cstat - 96 + ICCARM + 257 - ICCARM - 75 + __cstat + 208 BICOMP - 53 + 72 - - - ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c - __cstat - 174 + ICCARM + 133 - ICCARM - 152 + __cstat + 226 BICOMP - 266 + 81 ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c - __cstat - 148 + ICCARM + 128 - ICCARM - 186 + __cstat + 73 BICOMP - 124 + 83 ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c - __cstat - 78 + ICCARM + 201 - ICCARM - 100 + __cstat + 84 BICOMP - 229 + 53 - - - ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c - __cstat - 118 + ICCARM + 211 - ICCARM - 135 + __cstat + 152 BICOMP - 252 + 239 ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c - __cstat - 122 + ICCARM + 154 - ICCARM + __cstat 268 BICOMP - 125 + 184 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c - - - __cstat - 176 - + ICCARM - 267 - - - BICOMP - 50 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c - __cstat - 215 + ICCARM + 45 - ICCARM - 90 + __cstat + 196 BICOMP - 271 + 77 + + + ICCARM + 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 215 97 96 139 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c - __cstat - 65 + ICCARM + 269 - ICCARM - 193 + __cstat + 177 BICOMP - 166 + 246 ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + $PROJ_DIR$\..\Core\Src\dma.c - __cstat - 206 + ICCARM + 259 - ICCARM - 89 + __cstat + 272 BICOMP - 62 + 173 ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 190 258 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Core\Src\modbus_log.c - __cstat - 201 + ICCARM + 120 - ICCARM - 93 + __cstat + 276 BICOMP - 181 + 110 ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 105 101 258 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 180 126 130 148 74 210 54 124 104 260 123 121 142 76 176 175 111 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c + $PROJ_DIR$\startup_stm32f407xx.s - __cstat - 210 + AARM + 56 + + + + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c + ICCARM - 60 + 217 + + + __cstat + 75 BICOMP - 226 + 49 ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 258 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c - __cstat - 158 + ICCARM + 206 - ICCARM - 194 + __cstat + 91 BICOMP - 73 + 237 + + + ICCARM + 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c + $PROJ_DIR$\..\Core\Src\gpio.c - __cstat - 243 + ICCARM + 262 - ICCARM - 281 + __cstat + 168 BICOMP - 171 + 58 + + + ICCARM + 273 258 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 260 101 180 126 130 148 74 210 54 124 104 105 123 121 142 76 176 175 111 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c - __cstat - 155 + ICCARM + 65 - ICCARM - 189 + __cstat + 141 BICOMP - 198 + 249 + + + ICCARM + 258 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 275 142 76 54 180 176 175 111 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c + $PROJ_DIR$\..\Core\Src\tim.c - __cstat - 116 + ICCARM + 227 - ICCARM - 54 + __cstat + 167 BICOMP - 213 + 255 ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 260 258 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 101 180 126 130 148 74 210 54 124 104 105 123 121 142 76 176 175 111 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Core\Src\main.c - __cstat - 142 + ICCARM + 236 - ICCARM - 240 + __cstat + 114 BICOMP - 188 + 117 ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 258 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 273 260 101 180 126 130 148 74 210 54 124 104 105 123 121 142 76 176 175 111 190 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Core\Src\usart.c - __cstat - 49 + ICCARM + 248 - ICCARM - 160 + __cstat + 235 BICOMP - 256 + 99 ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 101 258 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 180 126 130 148 74 210 54 124 104 105 260 123 121 142 76 176 175 111 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c + $PROJ_DIR$\..\Core\Src\flash_save.c - __cstat - 98 + ICCARM + 174 - ICCARM - 88 + __cstat + 90 BICOMP - 190 + 200 + + + ICCARM + 104 215 97 96 139 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 101 258 180 126 130 148 74 210 54 124 105 260 123 121 142 76 176 175 111 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + $PROJ_DIR$\..\Core\Src\modbus_crc.c - __cstat - 232 + ICCARM + 134 - ICCARM + __cstat 195 BICOMP - 72 + 92 ICCARM - 146 173 216 71 214 180 147 120 97 56 79 246 129 183 205 168 95 245 99 260 273 237 140 137 156 250 55 191 103 249 85 259 179 80 204 115 127 + 124 181 163 199 169 80 185 98 250 82 209 159 140 136 131 118 215 97 96 139 147 263 247 44 194 132 182 158 47 205 187 188 162 55 218 245 125 261 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + $PROJ_DIR$\test.1\Exe\test.1.out - __cstat - 235 + ILINK + 115 - ICCARM - 167 + OBJCOPY + 93 + + - BICOMP - 150 + ILINK + 153 221 259 174 262 236 134 120 119 228 271 56 133 211 267 224 128 62 269 166 266 146 107 179 217 192 86 103 154 183 149 94 206 241 67 178 65 193 222 150 63 257 57 48 160 201 106 243 254 45 227 282 248 223 85 137 52 - + - $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c - AARM - 114 + ICCARM + 243 + + + __cstat + 69 + + + BICOMP + 189 @@ -1272,144 +1282,134 @@ $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c - __cstat - 187 + ICCARM + 228 - ICCARM - 48 + __cstat + 88 BICOMP - 154 + 79 ICCARM - 236 45 222 211 97 56 79 246 129 237 51 200 139 + 142 76 54 180 80 185 98 250 82 247 176 175 111 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\..\UCOS\Config\app_hooks.c - - __cstat - 102 - ICCARM - 208 - - - BICOMP - 81 + 221 - - - - $PROJ_DIR$\..\UCOS\Source\ucos_ii.c - __cstat - 241 - - - ICCARM - 157 + 172 BICOMP - 144 + 238 ICCARM - 236 45 222 211 97 56 79 246 129 237 51 200 139 258 170 59 119 145 58 197 199 104 251 + 50 142 76 54 180 80 185 98 250 82 247 176 175 111 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c - __cstat - 244 + ICCARM + 254 - ICCARM - 218 + __cstat + 61 BICOMP - 253 + 220 - $PROJ_DIR$\..\UCOS\Config\app_hooks.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c - __cstat + ICCARM 106 - ICCARM - 230 + __cstat + 156 BICOMP - 61 + 164 - + + + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + - ICCARM - 47 236 45 222 211 97 56 79 246 129 237 51 200 139 + AARM + 119 - + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c - __cstat - 209 + ICCARM + 271 - ICCARM - 178 + __cstat + 78 BICOMP - 153 + 207 ICCARM - 236 45 222 211 97 56 79 246 129 237 51 200 139 + 142 76 54 180 80 185 98 250 82 247 176 175 111 - $PROJ_DIR$\test.1\Exe\test.1.out + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c - ILINK - 269 + ICCARM + 282 - OBJCOPY - 67 + __cstat + 230 + + + BICOMP + 186 - ILINK - 234 230 109 159 82 83 94 239 114 48 178 172 169 193 135 54 57 60 136 186 160 152 89 100 161 195 93 261 217 212 175 75 123 240 151 52 177 189 268 267 90 194 281 88 167 110 143 218 208 66 228 157 184 196 227 69 149 + ICCARM + 142 76 54 180 80 185 98 250 82 247 176 175 111 278 232 214 231 229 46 198 66 116 138 diff --git a/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim b/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim index 744b0b2e09cac6bffcdf7b105db64fa2350e27ee..e5b0a8380a86813bd0ee672547a46374ff5aa14c 100644 GIT binary patch delta 3876 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 Ywv