From 6abe5ed92f198903c6fa05b02554c9cb6da8daff Mon Sep 17 00:00:00 2001 From: JIU JIALIN <2339061402@qq.com> Date: Mon, 25 Aug 2025 11:35:30 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E4=B8=B4=E6=97=B6=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E9=A2=91=E7=8E=87PWM=E4=B8=8D=E5=90=AF=E5=8A=A8?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PLSR/PLSR/Core/Src/tim.c | 31 +- PLSR/PLSR/EWARM/settings/test.1.dnx | 4 +- PLSR/PLSR/EWARM/test.1.dep | 916 +++++++++++++------------- PLSR/PLSR/EWARM/test.1/Exe/test.1.sim | Bin 40096 -> 40058 bytes 4 files changed, 470 insertions(+), 481 deletions(-) diff --git a/PLSR/PLSR/Core/Src/tim.c b/PLSR/PLSR/Core/Src/tim.c index bafc71c..7a283e6 100644 --- a/PLSR/PLSR/Core/Src/tim.c +++ b/PLSR/PLSR/Core/Src/tim.c @@ -1311,14 +1311,19 @@ void Calculate_PluseNum(PLSR_RouteConfig_t *route) if (calculated_total > total_pulses) { // 脉冲数超出限制,按比例缩减 - if (part1_pulse_num > 0 && part3_pulse_num > 0) { + 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) { + } + else if (part1_pulse_num > 0) + { // 只有第一阶段有脉冲 part1_pulse_num = total_pulses; - } else if (part3_pulse_num > 0) { + } + else if (part3_pulse_num > 0) + { // 只有第三阶段有脉冲 part3_pulse_num = total_pulses; } @@ -1331,27 +1336,10 @@ void Calculate_PluseNum(PLSR_RouteConfig_t *route) // 将剩余脉冲分配给第二阶段(匀速阶段) // 这样既不影响加减速的数学精确性,又能充分利用所有脉冲 part2_pulse_num = remaining_pulses; - - // 计算匀速阶段的时间 - if (vt > 0 && part2_pulse_num > 0) { - part2_time = (part2_pulse_num * 1000) / vt; - } - + // 更新第二阶段状态为匀速 part2_state = PLSR_STATE_CONST; } - - // 最终验证:确保总数完全匹配 - 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; - } - } } } else @@ -1691,6 +1679,7 @@ void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) PLSR_PWM_Stop(); AllPluse += current_tim2_count; // 累加当前段已发送的脉冲数 PLSR_Section_StartNewSection(&g_plsr_route); ///<重新启动当前段 + PLSR_PWM_Start(); } // 处理加减速过程中的频率更新(使用新的直线加减速算法) diff --git a/PLSR/PLSR/EWARM/settings/test.1.dnx b/PLSR/PLSR/EWARM/settings/test.1.dnx index 3283f69..b53d4ee 100644 --- a/PLSR/PLSR/EWARM/settings/test.1.dnx +++ b/PLSR/PLSR/EWARM/settings/test.1.dnx @@ -12,12 +12,12 @@ 50 + 46232557 + _ 0 _ 0 0 2 - 46232557 - 1150792608 diff --git a/PLSR/PLSR/EWARM/test.1.dep b/PLSR/PLSR/EWARM/test.1.dep index dcf3957..f357581 100644 --- a/PLSR/PLSR/EWARM/test.1.dep +++ b/PLSR/PLSR/EWARM/test.1.dep @@ -5,251 +5,251 @@ test.1 - $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$\..\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_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_i2c_ex.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$\..\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$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Core\Src\modbus_crc.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.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$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c $PROJ_DIR$\startup_stm32f407xx.s - $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.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\main.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_hal_gpio.c + $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.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$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.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_it.c - $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$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h - $PROJ_DIR$\test.1\Obj\dma.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et - $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\Src\stm32f4xx_hal_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + $PROJ_DIR$\test.1\Obj\app_hooks.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h + $PROJ_DIR$\..\UCOS\Source\os_mem.c + $TOOLKIT_DIR$\inc\c\DLib_Product.h $PROJ_DIR$\test.1\Obj\ucos_ii.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\stm32f4xx_hal_tim_ex.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h + $PROJ_DIR$\..\Core\Inc\tim.h + $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_hal_flash_ramfunc.__cstat.et + $TOOLKIT_DIR$\inc\c\ycheck.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$\test.1\Obj\usart.o + $PROJ_DIR$\..\Core\Inc\usart.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o + $TOOLKIT_DIR$\lib\dl7M_tlf.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h - $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_flash.o + $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et + $PROJ_DIR$\test.1\Obj\modbus_log.__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$\..\Drivers\CMSIS\Include\cmsis_iccarm.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et - $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$\test.1\Obj\modbus_crc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o + $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.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 + $PROJ_DIR$\test.1\List\test.1.map + $TOOLKIT_DIR$\inc\c\string.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o $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 - $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\Include\mpu_armv7.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et + $TOOLKIT_DIR$\inc\c\ysizet.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o + $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_usart.__cstat.et + $PROJ_DIR$\..\UCOS\Ports\os_cpu.h + $TOOLKIT_DIR$\lib\rt7M_tl.a + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h + $TOOLKIT_DIR$\inc\c\math.h + $TOOLKIT_DIR$\lib\m7M_tls.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h $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$\stm32f407xx_flash.icf + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_trace.h + $TOOLKIT_DIR$\inc\c\ctype.h + $PROJ_DIR$\test.1\Obj\dma.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et + $TOOLKIT_DIR$\inc\c\stddef.h + $PROJ_DIR$\..\Core\Inc\modbus_crc.h + $PROJ_DIR$\..\UCOS\Config\os_cfg.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o + $PROJ_DIR$\..\UCOS\Source\ucos_ii.h + $PROJ_DIR$\..\UCOS\Source\os_task.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o $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 - $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$\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\os_dbg.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h - $PROJ_DIR$\..\Core\Inc\flash_save.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__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\stm32f4xx_ll_pwr.o $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o $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_tim.__cstat.et + $PROJ_DIR$\..\Core\Inc\dma.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h $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$\..\Drivers\CMSIS\Include\core_cm4.h $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_ll_exti.o + $PROJ_DIR$\test.1\Obj\main.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et $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$\test.1\Obj\dma.__cstat.et + $TOOLKIT_DIR$\inc\c\iccarm_builtin.h $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$\..\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 + $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et + $PROJ_DIR$\test.1\Obj\modbus_crc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.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$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et + $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_flag.c + $TOOLKIT_DIR$\inc\c\DLib_float_setup.h + $PROJ_DIR$\..\Core\Inc\gpio.h + $PROJ_DIR$\test.1\Obj\usart.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et + $PROJ_DIR$\test.1\Obj\modbus_log.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h + $PROJ_DIR$\..\Core\Inc\main.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h - $PROJ_DIR$\test.1\Obj\gpio.o + $PROJ_DIR$\test.1\Exe\test.1.out + $PROJ_DIR$\..\UCOS\Source\os_time.c + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o - $PROJ_DIR$\..\UCOS\Source\ucos_ii.c - $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$\..\UCOS\Source\os_q.c $PROJ_DIR$\test.1\Obj\os_cpu_c.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o + $PROJ_DIR$\test.1\Exe\test.1.hex + $PROJ_DIR$\..\Core\Inc\flash_save.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o + $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h $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 + $PROJ_DIR$\test.1\Obj\flash_save.o + $PROJ_DIR$\..\UCOS\Source\os_core.c $TOOLKIT_DIR$\inc\c\yvals.h + $PROJ_DIR$\..\UCOS\Source\os_sem.c + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o $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_ll_gpio.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o $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\os_dbg.o + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o + $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c + $PROJ_DIR$\..\UCOS\Source\os.h + $PROJ_DIR$\test.1\Obj\main.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c + $TOOLKIT_DIR$\inc\c\stdlib.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_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_ll_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c + $PROJ_DIR$\..\UCOS\Config\app_hooks.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et $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 + $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h + $PROJ_DIR$\..\UCOS\Source\os_mutex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et + $TOOLKIT_DIR$\inc\c\stdint.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h + $PROJ_DIR$\..\UCOS\Config\app_cfg.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et + $PROJ_DIR$\test.1\Obj\tim.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et + $TOOLKIT_DIR$\lib\shb_l.a + $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\tim.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o + $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et + $PROJ_DIR$\..\Core\Inc\modbus_log.h + $PROJ_DIR$\..\UCOS\Source\os_mbox.c + $PROJ_DIR$\test.1\Obj\gpio.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et [ROOT_NODE] ILINK - 149 115 + 140 57 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c ICCARM @@ -257,911 +257,911 @@ __cstat - 60 + 168 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c - + ICCARM - 230 - - - __cstat - 65 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c ICCARM - 69 + 209 __cstat - 110 + 129 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c - + ICCARM - 183 - - - __cstat - 153 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c ICCARM - 210 + 47 __cstat - 89 + 124 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 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\UCOS\Config\app_hooks.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c ICCARM - 125 + 60 __cstat - 118 + 217 ICCARM - 202 75 63 185 184 156 205 141 98 194 167 88 87 51 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c - - - ICCARM - 217 - - - __cstat - 137 - - - - - $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $PROJ_DIR$\..\Core\Src\modbus_crc.c ICCARM - 199 + 119 __cstat - 198 + 52 ICCARM - 75 63 185 184 156 205 141 98 194 167 88 87 51 + 87 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 154 50 208 37 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c ICCARM - 200 + 93 __cstat - 78 + 211 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 + 137 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 156 90 214 224 123 88 67 78 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c + $PROJ_DIR$\..\Core\Src\gpio.c ICCARM - 223 + 230 __cstat - 107 + 41 + + + ICCARM + 132 137 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 36 43 123 58 158 79 187 55 224 87 153 228 70 131 90 214 88 67 78 + + - $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c ICCARM - 134 + 45 __cstat - 81 + 82 ICCARM - 75 63 185 184 156 205 141 98 194 167 88 87 51 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c ICCARM - 229 + 178 __cstat - 76 + 54 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 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + $PROJ_DIR$\startup_stm32f407xx.s AARM - 206 + 219 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c ICCARM - 91 + 164 __cstat - 72 + 95 + + + ICCARM + 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 154 50 208 37 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c ICCARM - 197 + 155 __cstat - 208 + 221 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 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c ICCARM - 154 + 89 __cstat - 173 + 227 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 + 137 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + $PROJ_DIR$\..\Core\Src\main.c ICCARM - 145 + 109 __cstat - 216 + 183 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 + 137 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 132 36 43 123 58 158 79 187 55 224 87 153 228 70 131 90 214 88 67 78 101 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c ICCARM - 158 + 51 __cstat - 140 + 105 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 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c ICCARM - 66 + 145 __cstat - 58 + 39 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 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c ICCARM - 157 + 204 __cstat - 162 + 84 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 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c + $PROJ_DIR$\..\Core\Src\tim.c ICCARM - 192 + 222 __cstat - 95 + 216 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 + 36 137 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 43 123 58 158 79 187 55 224 87 153 228 70 131 90 214 88 67 78 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c ICCARM - 163 + 49 __cstat - 181 + 215 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 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + $PROJ_DIR$\..\Core\Src\dma.c ICCARM - 94 + 80 __cstat - 131 + 113 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 + 101 137 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c ICCARM - 188 + 125 __cstat - 93 + 107 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 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c + $PROJ_DIR$\..\Core\Src\flash_save.c ICCARM - 219 + 160 __cstat - 73 + 127 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 + 153 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 43 137 123 58 158 79 187 55 224 87 228 36 70 131 90 214 88 67 78 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c + $PROJ_DIR$\..\Core\Src\modbus_log.c ICCARM - 224 + 135 __cstat - 187 + 53 + + + ICCARM + 228 43 137 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 123 58 158 79 187 55 224 87 153 36 70 131 90 214 88 67 78 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c + $PROJ_DIR$\..\Core\Src\usart.c ICCARM - 186 + 42 __cstat - 161 + 133 + + + ICCARM + 43 137 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 123 58 158 79 187 55 224 87 153 228 36 70 131 90 214 88 67 78 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c ICCARM - 227 + 231 __cstat - 111 + 72 + + + ICCARM + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c ICCARM - 54 + 65 __cstat - 84 + 225 + + + ICCARM + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c ICCARM - 196 + 159 __cstat - 148 + 121 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 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c ICCARM - 124 + 102 __cstat - 102 + 59 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 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + $PROJ_DIR$\test.1\Exe\test.1.out - ICCARM - 99 + ILINK + 57 - __cstat - 123 + OBJCOPY + 152 + + + ILINK + 75 28 80 160 230 109 119 135 165 148 169 219 125 45 65 231 155 178 51 159 145 204 102 209 89 47 60 122 167 146 111 44 49 112 210 223 93 220 203 98 108 63 151 94 150 205 92 188 64 164 222 33 42 218 68 71 48 + + - $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c ICCARM - 191 + 33 __cstat - 68 + 74 ICCARM - 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 + 90 214 224 123 40 162 97 61 32 62 88 67 78 161 130 229 31 207 147 163 91 141 115 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c ICCARM - 218 + 169 __cstat - 170 + 175 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 + 90 214 224 123 40 162 97 61 32 62 88 67 78 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c ICCARM - 138 + 150 __cstat - 212 + 202 - - - 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$\startup_stm32f407xx.s + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm AARM - 172 + 165 - $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c ICCARM - 228 + 64 __cstat - 203 + 126 - - - ICCARM - 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\stm32f4xx_hal_msp.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c ICCARM - 80 + 63 __cstat - 160 + 166 - - - 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 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c ICCARM - 159 + 151 __cstat - 151 + 110 - - - 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_cortex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c ICCARM - 176 + 146 __cstat - 146 + 138 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 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c ICCARM - 57 + 44 __cstat - 209 + 34 ICCARM - 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 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Core\Src\modbus_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c ICCARM - 90 + 223 __cstat - 177 + 85 ICCARM - 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 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c ICCARM - 222 + 203 __cstat - 79 + 120 - + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + 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 + 188 - + + __cstat + 118 + + - $PROJ_DIR$\..\Core\Src\flash_save.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c ICCARM - 121 + 111 __cstat - 150 + 100 ICCARM - 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 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c ICCARM - 226 + 210 __cstat - 82 + 66 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 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c ICCARM - 211 + 205 __cstat - 180 + 83 - - - 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$\..\Core\Src\modbus_log.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c ICCARM - 147 + 92 __cstat - 101 + 77 - + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + 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 + 220 - + + __cstat + 128 + + - $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c ICCARM - 119 + 112 __cstat - 168 + 29 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 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c ICCARM - 171 + 94 __cstat - 175 + 149 - + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c + 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 + 98 - + + __cstat + 232 + + - $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c ICCARM - 174 + 167 __cstat - 169 + 46 ICCARM - 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 + 154 50 208 37 104 99 106 212 40 162 97 61 32 143 117 38 114 206 142 76 86 62 157 226 172 136 73 139 69 35 103 81 56 30 213 96 144 - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c + $PROJ_DIR$\..\UCOS\Config\app_hooks.c ICCARM - 130 + 28 __cstat - 142 + 116 ICCARM - 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 + 182 90 214 224 123 40 162 97 61 32 62 88 67 78 - $PROJ_DIR$\test.1\Exe\test.1.out + $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c - OBJCOPY - 52 + ICCARM + 148 - ILINK - 115 + __cstat + 179 - 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 + ICCARM + 90 214 224 123 40 162 97 61 32 62 88 67 78 - $PROJ_DIR$\..\UCOS\Source\ucos_ii.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c ICCARM - 64 + 108 __cstat - 108 + 134 - - - ICCARM - 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 8818744e32bdd818d1034d8adda3d52857ed5c83..98032c150b7715fad55a03080a9c7611191b4243 100644 GIT binary patch delta 2732 zcma);eNa~p?#-Qdw4EDlLMh1uJ{bWKXdWGF!yej3M(0nDXk2j}2G5VaH?s?zar)_q@BKfq+Z(Z~A4%v) z@$7OL9>-M9l2wxyz7?^1bwt^H>cHqO))6c1Ui6?o4=Dz2G{(%)NOld5>byV}5Lh-K zP(1(ZIhrw5c5+$7^HX8ZeUXugT~np%o{RX1XML(vyvCyW>=b=OI6G^)U0Q zQcSTCgU@LZ0$)i#-4p|i?I0&!IZ~#ulPwV^ABLUiZbY(cW_S2>e31?FOU9lZhD>(p zG@q1W(Ax~DdaF;0GwAFvS?%>n`p6tl8v@C9)AZIj(&$gu*?f{A*PRw+M*JHqi5|c* zR-kX?9uBb{{T~-;D0by4t_VOBp#w3Bj-IaQRL)yv2Qzeic&Ex9ZLWFnLG31cmRMAx z=|xzYr*pg~{T#qt7&u(}x=rUSvyU|+@LR-Y^$e;vggmY#G?lPlC0 zsI|2BK`eHmSZnD?Z4Ci__KhBI5f%M|tH8tsW)JZIITJ~P2a~^p>{VoMPv`$n`>e3N zCTy?L`{{oMK$}5sIy*jQa>ZVLP>-Bby(J&_;=8cvWJ9Bmnt%91H(MEVj^S zfs|26|9RQLHljMa9db9Tx8P+vbf zA-&FG^kWW3b37RQ%6clvb(SPQIt$b21VqcILf&QJQ^pr&Q)@k#w+ADu))za;NkxJbL-*H6T{4!5mfh zPAT8zu_pSJBjvj}k;dS$>ce5FyH(*ah%T#&!co@FSz}%Fx7?Te%}7PPO9Qv0%A+$t zN7i^VpH+;Vfo*Kp*cDjMz8;&63t3G3OkB+7#2axATN^(IP3%(a$-x!uexk_)q+t)Q z*`HV|9?0_Z;x1`1$iZdo>2bMpvIn$&Iang|)E3G}ZGkM(yKy+ZzW4=t$ea{Ixj~7c zCK_y|6jlAY8MgbW`Q#yQ&?nj7xg^C^ZD6hAW@U*6ovpq&#*3ozQVCUZP&<%kGpFQP z3oQ`n9*~1KB*rIA)mC|Upf{2gB)t@?l{vpz#6Xm+y!F3i$CEnvy8t3vmHaF9_mUhm zv5%57a0=^Ao`&~WOiF>eTb6@e?uwLlE_T7d8-DY4Fuz7OLJn52IE}3pjVQ9+;*^A_Au}j<%+zJIfm!s91gqF( zaT0E4ed0L$H`5v$xTp|&&nRLxJ7=7XciA1|c-lucHpX0)Q~l;`$$k-rgO}VbnGX?* z+>KdXDpa{wn>*Ba#%-Lc<8ZutO5VvttYqD@O=^+8O!C~S(#_E^Jxw4C5#CooEOhUv z+&CsCj#la0DExxG>6Vvga9H5ZSb2@dH{AEv?Bc5DSAwvIl(yPIh~EOj&R0OV`8Eg} z-T~o1#O>W6jM)RivkkOH{E67R7lh9pAfz>daP?gfez6~fVkZa=+WS1=qEDIA#2Ml& z(MFsnJ|;dPI*Gp!e?0^s4~Z`-mo zewye%jr{oyhayXmwEdMV) C+VO<| delta 2803 zcmZ{m3vg4%6+rJkJxNcN{Qt_9?PtjbQ7mEx3QmCH4;FSC213dw6H^rPsh~_Tg*Gxj z%h1LyjT<>jisa9P-wL6TfCQ8GQ0trcxX&4#|l^~`N+zc{t(355R^*&kT!%Q@D zcJJN2_wL>M_O0GtA_67h#0Jx|Ycm?>nR^aOP0k;itA#F$pGVbwB z`#O#th>jn^{>^p!Xp1Rcp&fIcZCrz@@eUcM9jV*k>a*_O*=Y_2+S<6txOu zC0bQszW{j#S%N&*M&}WI+8s38fodw6G+;l7`tRE47NY;*F;tHuGMsuF`!1vh@gQfA ze;^+qA0txMz1Ux&ual104+Sm{^c&1PFoE}J6=PV&guqC=OrU>k;Selh9N3n~9Kf@P z+`$}^Ecb`UZ7z=i4>(R7>mm_88XF%!H>T)J@aVd}iQP!gGI`U^3FGreAM-mH^=ltX z_GEN5cIv*)X$4J}ONiWH?s+G|g6X>8!OFpA&wjhI#+A|UR529LllzL?u z21C^0-l(+bZQ=1nN#G5-8-w(V(K4YO6KIYG`FkXY>P|F=x9Ckai>#-k?DL5qj)ETY zbUYK-BT8*MT_-mwYsDET@1h;@p?d=X5Rd8M9AW_o>srkePD0#{9IxTWMU?cpvaJ2kAO z0G^$&F~=voV=pn2z#!eHGFXO0&)q)A}7P@>aVby|(ZClu>cHkc&$`h@AxF%}mzqTHXUu_T~{PN%Z^gp5LWW{i=LPieV2 zM5^f=%`rwfO7CipEK_3c(ouv7D+3S%d<;H#JfKf7UYiY!(0k^l&89ZmAH3U8XUpeH z%asEJs*6;PeZq7AV@cpd!&QN`tDGfP&cSs6uXc2AR5%2BJJw`4T9JF1@Vm`j0~{z^ zo#Da2F7xR@h$p>--(^n4(Ld9vamiDcj<5iQMjU0Kz+Zu0GW6;mkOTYuUfSsqFGa*l z=EqkG0HcB_lXk>Ss!twK08Ei)6(G%`hWjegDjmeBbTySF^%0lSsmheMfC&OO?Q$nE zzW3mUUG7>qw6(Uh{O#~pff&ap=qY!wPH-sNNGspf%!s3eq@Ko z!YaejFh>$HHxCf<@#h*^6`wfmVp!Ujv|AQ>9;?9l=iavRpRLb&lcchdIrl*1;EopU>Wq3(zQf7)4 z3X`uK(Skt-@sSNl5s9n*(Gw8xygYhx73SsU_f8Na=^a_6^h>e~WxN?Mb77U-S-g7Z z>PDfmvjZ1t6sn*DYtbnD7)DpmSp&Rn4JnlMH44R@9!rW}N{{Vhc+|mT(cl*3eX@uK ze7A*FV=mIvd4aRjn8d~86kUW3c)iv?ci$L_Y}+ zsP%`6H%zi#s43oX*8=<`Yh{fXtO}L-Z5xPDOA}L5s4qon7|G%+wuqhWTXuz^d_RjD zUJhcgnyOMw^W#HGzZfhNS#0Nu1l!pnkJpGZtEud1yw~<(K2-- zmCKE|^f|N^gC^=upNco#?esbF^P(8^xF=@xF!6Ik+x^BJVEhf988JAE-p~AkoS`?e z7Lp@wlWrzMa_O3!jpPo!lJg9Cmrl&xjo18}xv!CITFU3)qg%yKPJS3Rf^-NCy%sAN zdG8n&>;OM8eP>AJw^&~)Q+U@}q#4F*v5p1*Nqu}X^Kh8{GLI*T^p(6x#7lefvT@z3 zc`dQ0MXlesE#1$o&kKk{GXE^-g~UmMWub+Jo_P=1IA$S^X3Ks)Av zu!sWjuE$TIdi*y+S%btO2}lx>f}|lCNG8G|x^{Qbx_eB_mm7hbUkhBpCU^dZ6Y7{H zD2oxD`d_?9Z0?J;Ww}hg%boAsNyt0&kn58C_gD{?`^DBSQlQ6B>|&8TfSi;Bd^dSb c5_vi)Mg1TR2+!Ow0asXlkv`jAz`P&xf8I~b%7