diff --git a/PLSR/PLSR/Core/Src/tim.c b/PLSR/PLSR/Core/Src/tim.c index 67946e1..bafc71c 100644 --- a/PLSR/PLSR/Core/Src/tim.c +++ b/PLSR/PLSR/Core/Src/tim.c @@ -671,8 +671,8 @@ void PLSR_PWM_Start(void) switch(g_plsr_route.output_port) { case 0: // TIM10 - //__HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period / 2); // 设置占空比为50% - HAL_TIM_PWM_Start(&htim10, TIM_CHANNEL_1); + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period / 2); // 设置占空比为50% + //HAL_TIM_PWM_Start(&htim10, TIM_CHANNEL_1); break; case 1: // TIM11 @@ -715,27 +715,27 @@ void PLSR_PWM_Stop(void) switch(g_plsr_route.output_port) { case 0: // TIM10 - //__HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period); // - HAL_TIM_PWM_Stop(&htim10, TIM_CHANNEL_1); + __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, htim10.Init.Period); // + __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, htim10.Init.Period); // + __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, htim10.Init.Period); // + __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, htim10.Init.Period); // + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, 0xFFFF); // //HAL_TIM_PWM_Stop(&htim10, TIM_CHANNEL_1); break; } @@ -1148,6 +1148,7 @@ void Calculate_PluseNum_Simplified(PLSR_RouteConfig_t *route) // if(route->accel_pulse_count > 1) route->accel_pulse_count -= 1; } } + void Calculate_PluseNum(PLSR_RouteConfig_t *route) { int32_t part1_pulse_num = 0; // 第一部分脉冲数 @@ -1303,16 +1304,53 @@ void Calculate_PluseNum(PLSR_RouteConfig_t *route) part3_time = 0; } - // 确保总脉冲数不超过限制 + // 确保总脉冲数完全匹配 int32_t calculated_total = part1_pulse_num + part3_pulse_num; - if (calculated_total > total_pulses) + if (calculated_total != total_pulses) { - // 按比例调整 - if (part1_pulse_num > 0) { - part1_pulse_num = (part1_pulse_num * total_pulses) / calculated_total; + if (calculated_total > total_pulses) + { + // 脉冲数超出限制,按比例缩减 + if (part1_pulse_num > 0 && part3_pulse_num > 0) { + // 两个阶段都有脉冲,按比例分配 + part1_pulse_num = (part1_pulse_num * total_pulses) / calculated_total; + part3_pulse_num = total_pulses - part1_pulse_num; + } else if (part1_pulse_num > 0) { + // 只有第一阶段有脉冲 + part1_pulse_num = total_pulses; + } else if (part3_pulse_num > 0) { + // 只有第三阶段有脉冲 + part3_pulse_num = total_pulses; + } + } + else + { + // 脉冲数不足,将剩余脉冲分配给匀速阶段 + int32_t remaining_pulses = total_pulses - calculated_total; + + // 将剩余脉冲分配给第二阶段(匀速阶段) + // 这样既不影响加减速的数学精确性,又能充分利用所有脉冲 + part2_pulse_num = remaining_pulses; + + // 计算匀速阶段的时间 + if (vt > 0 && part2_pulse_num > 0) { + part2_time = (part2_pulse_num * 1000) / vt; + } + + // 更新第二阶段状态为匀速 + part2_state = PLSR_STATE_CONST; } - if (part3_pulse_num > 0) { - part3_pulse_num = total_pulses - part1_pulse_num; + + // 最终验证:确保总数完全匹配 + int32_t final_total = part1_pulse_num + part3_pulse_num; + if (final_total != total_pulses) { + // 如果还有差异,调整第一阶段 + int32_t adjustment = total_pulses - final_total; + part1_pulse_num += adjustment; + if (part1_pulse_num < 0) { + part3_pulse_num += part1_pulse_num; // 将负数转移给第三阶段 + part1_pulse_num = 0; + } } } } @@ -1369,6 +1407,7 @@ void Calculate_PluseNum(PLSR_RouteConfig_t *route) } } + /** * @brief 计算最优中间频率 * @param v0 起始频率 @@ -1613,14 +1652,11 @@ void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) } else { - // 第二部分完成且无减速阶段,当前段结束 - g_plsr_route.current_part = PLSR_PART_COMPLETE; PLSR_HandleSectionEnd(); } break; case PLSR_PART_3: - g_plsr_route.current_part = PLSR_PART_COMPLETE; PLSR_HandleSectionEnd(); break; @@ -1754,8 +1790,6 @@ void PLSR_Route_Init(PLSR_RouteConfig_t* route) */ void PLSR_Route_Start(PLSR_RouteConfig_t* route) { - - // 参数有效性检查 if (route == NULL) return; // 状态检查 - 避免重复启动 @@ -1938,6 +1972,7 @@ void PLSR_Section_StartNewSection(PLSR_RouteConfig_t* route) { if(g_plsr_mod_flag == 1) { + g_plsr_route.initial_freq = g_plsr_route.current_freq; // 更新加减速初始频率 if(route->current_part == PLSR_PART_2) //匀速过程被修改 { // 目标频率被修改,重新计算实际脉冲数 @@ -2122,13 +2157,6 @@ void PLSR_Section_StartNewSection(PLSR_RouteConfig_t* route) // 重置TIM2计数器 __HAL_TIM_SET_COUNTER(&htim2, 0); - // 设置PWM频率为当前段的起始频率 - if(route->current_freq > 0) - { - PLSR_PWM_SetFrequency(route->current_freq); - PLSR_PWM_Start(); - } - // 清除外部事件标志,确保新段开始时状态干净 PLSR_ClearExtEvent(route); @@ -2581,8 +2609,8 @@ void PLSR_TaskSectionSwitch(PLSR_RouteConfig_t* route) PLSR_Section_SwitchNext(route, 0); // 外部事件触发,传入0 /* 启动新段,设置新的脉冲参数和频率 */ PLSR_Section_StartNewSection(route); - // /* 启动PWM输出 */ - // PLSR_PWM_Start(); + /* 启动PWM输出 */ + PLSR_PWM_Start(); PLSR_ClearGpioTriggerFlag(); // 清除GPIO触发标志 } return; // 等待外部事件时不需要继续处理 @@ -2611,8 +2639,8 @@ void PLSR_TaskSectionSwitch(PLSR_RouteConfig_t* route) PLSR_Section_SwitchNext(route, 1); // 脉冲完成触发,传入1 /* 启动新段,设置新的脉冲参数和频率 */ PLSR_Section_StartNewSection(route); - // /* 启动PWM输出 */ - // PLSR_PWM_Start(); + /* 启动PWM输出 */ + PLSR_PWM_Start(); } } else @@ -2624,8 +2652,8 @@ void PLSR_TaskSectionSwitch(PLSR_RouteConfig_t* route) PLSR_Section_SwitchNext(route, 0); // 其他等待条件触发,传入0 /* 启动新段,设置新的脉冲参数和频率 */ PLSR_Section_StartNewSection(route); - // /* 启动PWM输出 */ - // PLSR_PWM_Start(); + /* 启动PWM输出 */ + PLSR_PWM_Start(); } /* 如果等待条件未满足,保持等待状态,等待下次检查 */ } diff --git a/PLSR/PLSR/EWARM/test.1.dep b/PLSR/PLSR/EWARM/test.1.dep index d1e4a10..dcf3957 100644 --- a/PLSR/PLSR/EWARM/test.1.dep +++ b/PLSR/PLSR/EWARM/test.1.dep @@ -5,526 +5,517 @@ test.1 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.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.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + $PROJ_DIR$\..\UCOS\Config\app_hooks.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c - $PROJ_DIR$\..\Core\Src\usart.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.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_uart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c - $PROJ_DIR$\..\Core\Src\main.c - $PROJ_DIR$\..\Core\Src\dma.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_flash.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + $PROJ_DIR$\startup_stm32f407xx.s + $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\..\Core\Src\dma.c $PROJ_DIR$\..\Core\Src\modbus_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c + $PROJ_DIR$\..\Core\Src\flash_save.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c + $PROJ_DIR$\..\Core\Src\main.c $PROJ_DIR$\..\Core\Src\modbus_log.c - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c - $PROJ_DIR$\..\Core\Src\tim.c - $PROJ_DIR$\startup_stm32f407xx.s - $PROJ_DIR$\..\Core\Src\flash_save.c - $TOOLKIT_DIR$\inc\c\stddef.h - $PROJ_DIR$\..\UCOS\Source\os_tmr.c - $PROJ_DIR$\..\UCOS\Source\os_q.c - $TOOLKIT_DIR$\inc\c\DLib_Product.h - $PROJ_DIR$\..\UCOS\Source\ucos_ii.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\modbus_crc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o - $TOOLKIT_DIR$\inc\c\stdarg.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et - $PROJ_DIR$\test.1\Obj\dma.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h - $TOOLKIT_DIR$\lib\dl7M_tlf.a - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c + $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c + $PROJ_DIR$\..\UCOS\Source\os_trace.h + $PROJ_DIR$\test.1\Exe\test.1.hex + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o $PROJ_DIR$\..\Core\Inc\modbus_crc.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et - $PROJ_DIR$\..\UCOS\Source\os_sem.c - $PROJ_DIR$\test.1\Obj\app_hooks.o - $TOOLKIT_DIR$\lib\rt7M_tl.a - $TOOLKIT_DIR$\lib\shb_l.a - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et - $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et - $TOOLKIT_DIR$\inc\c\ycheck.h - $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et - $PROJ_DIR$\..\UCOS\Source\os_mbox.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o - $TOOLKIT_DIR$\inc\c\ysizet.h + $PROJ_DIR$\test.1\Obj\dma.o $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\modbus_log.o - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et + $TOOLKIT_DIR$\inc\c\ctype.h + $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h $PROJ_DIR$\..\UCOS\Config\app_cfg.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h - $PROJ_DIR$\test.1\Obj\usart.o - $TOOLKIT_DIR$\inc\c\math.h - $PROJ_DIR$\test.1\Obj\gpio.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o - $PROJ_DIR$\..\Core\Inc\modbus_log.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o $PROJ_DIR$\test.1\Obj\ucos_ii.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et - $PROJ_DIR$\test.1\Obj\tim.__cstat.et - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et - $PROJ_DIR$\..\UCOS\Source\os_trace.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o - $PROJ_DIR$\..\UCOS\Source\os_mutex.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o - $PROJ_DIR$\..\UCOS\Source\os_task.c - $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o - $PROJ_DIR$\test.1\Obj\tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o - $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et - $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o - $PROJ_DIR$\test.1\Obj\os_cpu_a.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h + $PROJ_DIR$\test.1\Obj\gpio.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o + $PROJ_DIR$\..\UCOS\Source\os_flag.c $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et - $TOOLKIT_DIR$\inc\c\stdio.h - $PROJ_DIR$\stm32f407xx_flash.icf - $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h - $PROJ_DIR$\test.1\Obj\main.o - $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_mem.c + $PROJ_DIR$\..\UCOS\Source\ucos_ii.h + $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_flash_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o + $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o - $PROJ_DIR$\test.1\Obj\dma.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et - $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h - $TOOLKIT_DIR$\inc\c\iccarm_builtin.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o - $PROJ_DIR$\..\Core\Inc\main.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et - $PROJ_DIR$\..\UCOS\Source\os_flag.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h - $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et - $PROJ_DIR$\test.1\Obj\main.__cstat.et - $PROJ_DIR$\..\UCOS\Source\os_core.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o - $PROJ_DIR$\test.1\Exe\test.1.out - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h + $TOOLKIT_DIR$\lib\m7M_tls.a + $TOOLKIT_DIR$\inc\c\math.h + $PROJ_DIR$\..\UCOS\Ports\os_cpu.h + $PROJ_DIR$\..\UCOS\Config\os_cfg.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et - $TOOLKIT_DIR$\inc\c\DLib_Product_string.h - $PROJ_DIR$\test.1\List\test.1.map - $TOOLKIT_DIR$\inc\c\yvals.h - $PROJ_DIR$\..\UCOS\Source\os_time.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\modbus_crc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h - $PROJ_DIR$\..\Core\Inc\flash_save.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o - $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et - $PROJ_DIR$\test.1\Obj\os_dbg.o - $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h - $PROJ_DIR$\..\Core\Inc\usart.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et + $TOOLKIT_DIR$\lib\dl7M_tlf.a $TOOLKIT_DIR$\inc\c\stdint.h - $TOOLKIT_DIR$\inc\c\ctype.h - $PROJ_DIR$\..\UCOS\Source\os.h + $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o + $PROJ_DIR$\..\UCOS\Source\os_task.c + $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et - $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h - $PROJ_DIR$\..\UCOS\Config\os_cfg.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et + $PROJ_DIR$\..\Core\Inc\usart.h + $TOOLKIT_DIR$\inc\c\iccarm_builtin.h $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h - $PROJ_DIR$\..\UCOS\Ports\os_cpu.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o - $PROJ_DIR$\test.1\Obj\os_cpu_c.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et + $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et + $PROJ_DIR$\..\Core\Inc\dma.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h + $PROJ_DIR$\..\Core\Inc\gpio.h $TOOLKIT_DIR$\inc\c\DLib_float_setup.h + $PROJ_DIR$\test.1\List\test.1.map + $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h + $TOOLKIT_DIR$\inc\c\stdlib.h + $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h + $PROJ_DIR$\test.1\Obj\flash_save.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et - $TOOLKIT_DIR$\lib\m7M_tls.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o + $PROJ_DIR$\test.1\Obj\app_hooks.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h + $PROJ_DIR$\..\UCOS\Source\os_time.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et - $PROJ_DIR$\..\Core\Inc\gpio.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o - $PROJ_DIR$\..\UCOS\Source\os_mem.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o - $TOOLKIT_DIR$\inc\c\string.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o - $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et - $PROJ_DIR$\test.1\Obj\gpio.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h - $PROJ_DIR$\test.1\Obj\flash_save.o + $PROJ_DIR$\test.1\Obj\os_dbg.o $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et - $PROJ_DIR$\..\Core\Inc\tim.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c - $PROJ_DIR$\test.1\Obj\usart.__cstat.et - $TOOLKIT_DIR$\inc\c\stdlib.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c - $PROJ_DIR$\..\UCOS\Config\app_hooks.c - $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c - $PROJ_DIR$\test.1\Exe\test.1.hex - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o + $PROJ_DIR$\..\Core\Inc\flash_save.h $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et - $PROJ_DIR$\..\Core\Inc\dma.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et + $PROJ_DIR$\test.1\Obj\modbus_log.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__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.__cstat.et + $TOOLKIT_DIR$\inc\c\string.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o + $PROJ_DIR$\..\Core\Inc\tim.h + $TOOLKIT_DIR$\inc\c\ycheck.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o + $PROJ_DIR$\..\Core\Inc\modbus_log.h + $PROJ_DIR$\..\UCOS\Source\os_sem.c + $PROJ_DIR$\..\UCOS\Source\os_tmr.c + $TOOLKIT_DIR$\inc\c\ysizet.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et + $PROJ_DIR$\test.1\Obj\usart.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o + $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\usart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o + $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h - $PROJ_DIR$\..\UCOS\Ports\os_dbg.c - $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h + $PROJ_DIR$\test.1\Obj\main.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o + $TOOLKIT_DIR$\inc\c\stdio.h + $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o + $PROJ_DIR$\..\UCOS\Source\os_mbox.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h + $PROJ_DIR$\test.1\Obj\gpio.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o $PROJ_DIR$\..\UCOS\Source\ucos_ii.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o - $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h + $TOOLKIT_DIR$\inc\c\DLib_Product.h + $PROJ_DIR$\..\UCOS\Source\os_mutex.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o + $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et + $PROJ_DIR$\test.1\Obj\os_cpu_c.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h + $PROJ_DIR$\..\UCOS\Source\os.h + $PROJ_DIR$\test.1\Obj\tim.__cstat.et + $TOOLKIT_DIR$\lib\rt7M_tl.a + $TOOLKIT_DIR$\inc\c\yvals.h + $PROJ_DIR$\test.1\Obj\os_cpu_a.o + $PROJ_DIR$\..\Core\Inc\main.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\dma.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o + $PROJ_DIR$\test.1\Obj\main.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_core.c + $PROJ_DIR$\..\UCOS\Source\os_q.c + $TOOLKIT_DIR$\lib\shb_l.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o + $PROJ_DIR$\stm32f407xx_flash.icf + $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o + $PROJ_DIR$\test.1\Obj\tim.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h + $TOOLKIT_DIR$\inc\c\stddef.h [ROOT_NODE] ILINK - 145 151 + 149 115 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c ICCARM - 61 + 122 __cstat - 118 + 60 - - - ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c ICCARM - 188 + 230 __cstat - 218 + 65 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c ICCARM - 93 + 69 __cstat - 129 + 110 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c ICCARM - 190 + 183 __cstat - 176 + 153 - - - ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c ICCARM - 117 + 210 __cstat - 111 + 89 + + + ICCARM + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c + $PROJ_DIR$\..\UCOS\Config\app_hooks.c ICCARM - 144 + 125 __cstat - 177 + 118 ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 202 75 63 185 184 156 205 141 98 194 167 88 87 51 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c ICCARM - 173 + 217 __cstat - 125 + 137 - - - ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c ICCARM - 113 + 199 __cstat - 112 + 198 ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 75 63 185 184 156 205 141 98 194 167 88 87 51 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c ICCARM - 126 + 200 __cstat - 100 + 78 ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c ICCARM - 98 + 223 __cstat - 52 + 107 - - - ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c ICCARM - 92 + 134 __cstat - 124 + 81 ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 75 63 185 184 156 205 141 98 194 167 88 87 51 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c ICCARM - 49 + 229 __cstat - 186 + 76 ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + + + AARM + 206 + + + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c ICCARM - 102 + 91 __cstat - 184 + 72 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c ICCARM - 57 + 197 __cstat - 147 + 208 ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c ICCARM - 224 + 154 __cstat - 59 + 173 ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c ICCARM - 182 + 145 __cstat - 97 + 216 ICCARM - 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 192 116 146 204 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 @@ -533,559 +524,571 @@ ICCARM - 195 + 158 __cstat - 99 + 140 ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c ICCARM - 231 + 66 __cstat - 223 + 58 ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c ICCARM - 104 + 157 __cstat - 154 + 162 ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c ICCARM - 90 + 192 __cstat - 168 + 95 ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c ICCARM - 203 + 163 __cstat - 81 + 181 ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c ICCARM - 157 + 94 __cstat - 180 + 131 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c - + ICCARM - 139 - - - __cstat - 132 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c ICCARM - 108 + 188 __cstat - 197 + 93 ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c ICCARM - 79 + 219 __cstat - 209 + 73 ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c ICCARM - 58 + 224 __cstat - 149 + 187 - $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c ICCARM - 86 + 186 __cstat - 211 + 161 - - - ICCARM - 161 136 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 119 191 150 163 212 166 55 65 156 91 206 87 179 47 84 167 172 101 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c ICCARM - 66 + 227 __cstat - 205 + 111 - - - ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c ICCARM - 131 + 54 __cstat - 137 + 84 - - - ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c ICCARM - 219 + 196 __cstat - 165 + 148 ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c ICCARM - 48 + 124 __cstat - 95 + 102 ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c ICCARM - 114 + 99 __cstat - 67 + 123 - $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Core\Src\gpio.c ICCARM - 122 + 191 __cstat - 142 + 68 ICCARM - 136 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 187 206 161 119 191 150 163 212 166 55 65 156 91 87 179 47 84 167 172 101 221 + 113 207 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 155 103 184 152 132 61 117 62 185 55 136 164 86 114 75 63 88 87 51 - $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c ICCARM - 60 + 218 __cstat - 127 + 170 ICCARM - 221 136 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c ICCARM - 198 + 138 __cstat - 88 + 212 ICCARM - 187 136 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 206 161 119 191 150 163 212 166 55 65 156 91 87 179 47 84 167 172 101 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Core\Src\modbus_crc.c + $PROJ_DIR$\startup_stm32f407xx.s + + + AARM + 172 + + + + + $PROJ_DIR$\..\Core\Src\tim.c ICCARM - 53 + 228 __cstat - 109 + 203 ICCARM - 65 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 192 116 146 204 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 155 207 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 103 184 152 132 61 117 62 185 55 136 164 86 114 75 63 88 87 51 - $PROJ_DIR$\..\Core\Src\modbus_log.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c ICCARM - 82 + 80 __cstat - 73 + 160 ICCARM - 91 161 136 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 119 191 150 163 212 166 55 65 156 206 87 179 47 84 167 172 101 + 207 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c ICCARM - 222 + 159 __cstat - 72 + 151 ICCARM - 136 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c ICCARM - 77 + 176 __cstat - 175 + 146 ICCARM - 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c + $PROJ_DIR$\..\Core\Src\dma.c ICCARM - 89 + 57 __cstat - 130 + 209 ICCARM - 136 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 121 47 84 55 119 167 172 101 + 109 207 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Core\Src\modbus_crc.c ICCARM - 107 + 90 __cstat - 96 + 177 ICCARM - 206 136 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 161 119 191 150 163 212 166 55 65 156 91 87 179 47 84 167 172 101 + 55 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 231 71 182 120 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\startup_stm32f407xx.s + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c - AARM - 106 + ICCARM + 222 + + + __cstat + 79 + + + ICCARM + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 + + $PROJ_DIR$\..\Core\Src\flash_save.c ICCARM - 200 + 121 __cstat - 141 + 150 ICCARM - 156 192 116 146 204 148 83 160 162 74 152 110 133 46 193 183 171 134 232 170 78 43 80 225 62 64 201 217 178 85 208 228 194 155 199 169 128 140 161 136 119 191 150 163 212 166 55 65 91 206 87 179 47 84 167 172 101 + 136 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 103 207 184 152 132 61 117 62 185 55 164 155 86 114 75 63 88 87 51 - $PROJ_DIR$\test.1\Exe\test.1.out + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c - OBJCOPY - 216 + ICCARM + 226 - ILINK - 151 + __cstat + 82 - ILINK - 120 69 60 200 198 122 53 82 115 174 159 106 190 126 66 173 61 79 144 104 219 90 57 98 222 231 113 92 195 48 49 203 77 224 131 108 89 157 139 117 58 114 188 93 102 54 135 185 51 182 107 94 86 71 70 181 63 + ICCARM + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + $PROJ_DIR$\..\Core\Src\main.c ICCARM - 185 + 211 __cstat - 50 + 180 + + + ICCARM + 207 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 113 155 103 184 152 132 61 117 62 185 55 136 164 86 114 75 63 88 87 51 109 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + $PROJ_DIR$\..\Core\Src\modbus_log.c ICCARM - 135 + 147 __cstat - 207 + 101 + + + ICCARM + 164 103 207 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 184 152 132 61 117 62 185 55 136 155 86 114 75 63 88 87 51 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c ICCARM - 54 + 119 __cstat - 56 + 168 + + + ICCARM + 207 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 116 75 63 185 184 88 87 51 + + - $PROJ_DIR$\..\UCOS\Config\app_hooks.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c ICCARM - 69 + 171 __cstat - 123 + 175 ICCARM - 164 47 84 55 119 74 152 110 133 46 80 167 172 101 + 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $PROJ_DIR$\..\Core\Src\usart.c ICCARM @@ -1093,73 +1096,70 @@ __cstat - 75 + 169 ICCARM - 47 84 55 119 74 152 110 133 46 80 167 172 101 + 103 207 231 71 182 120 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 184 152 132 61 117 62 185 55 136 164 155 86 114 75 63 88 87 51 - $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c ICCARM - 159 + 130 __cstat - 196 + 142 ICCARM - 47 84 55 119 74 152 110 133 46 80 167 172 101 + 143 144 221 97 156 205 141 98 194 139 53 83 104 106 127 231 71 182 120 56 232 167 178 179 225 135 67 190 77 129 112 59 92 133 105 201 126 - $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + $PROJ_DIR$\test.1\Exe\test.1.out - AARM - 115 + OBJCOPY + 52 - - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c - - ICCARM - 51 + ILINK + 115 + + - __cstat - 220 + ILINK + 220 125 57 121 191 211 90 147 206 199 134 172 159 176 218 226 138 222 196 200 124 229 210 197 80 94 154 145 158 192 157 66 171 163 188 219 119 99 223 224 69 186 227 54 122 230 91 183 217 130 228 64 174 215 204 85 96 - + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c ICCARM - 94 + 64 __cstat - 158 + 108 ICCARM - 47 84 55 119 74 152 110 133 46 80 167 172 101 143 138 76 189 103 45 68 105 153 44 + 75 63 185 184 156 205 141 98 194 167 88 87 51 213 70 189 74 195 214 165 100 128 166 diff --git a/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim b/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim index 5401af1..8818744 100644 Binary files a/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim and b/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim differ