From b035971da0209426ef5dc617ecf2f6e4cc2d0bed Mon Sep 17 00:00:00 2001 From: JIU JIALIN <2339061402@qq.com> Date: Sat, 30 Aug 2025 15:42:54 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E5=A4=96=E9=83=A8=E4=BA=8B?= =?UTF-8?q?=E4=BB=B6=E8=A7=A6=E5=8F=91=E7=BB=93=E6=9D=9F=E5=AF=BC=E8=87=B4?= =?UTF-8?q?=E7=BB=93=E6=9D=9F=E7=8A=B6=E6=80=81=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PLSR/PLSR/Core/Src/tim.c | 27 +- PLSR/PLSR/EWARM/test.1.dep | 1112 ++++++++++++------------- PLSR/PLSR/EWARM/test.1/Exe/test.1.sim | Bin 41770 -> 41856 bytes 3 files changed, 576 insertions(+), 563 deletions(-) diff --git a/PLSR/PLSR/Core/Src/tim.c b/PLSR/PLSR/Core/Src/tim.c index 75e9efd..d1e1228 100644 --- a/PLSR/PLSR/Core/Src/tim.c +++ b/PLSR/PLSR/Core/Src/tim.c @@ -637,7 +637,7 @@ void PLSR_PWM_Start(void) */ void PLSR_Section_PWM_Stop(void) { - StopFlag = 1; + StopFlag = 1; /*为确保PLSR_PWM_SetFrequency函数不意外启动脉冲输出*/ // 根据output_port选择目标定时器并停止PWM输出 switch(PlsrRoute.output_port) { @@ -875,21 +875,28 @@ void PLSR_HandleSectionEnd(void) PlsrRoute.decel_pulse_count = 0; if(PlsrRoute.mode == PLSR_MODE_RELATIVE) { - if(current_section->target_pulse > 0) + if(PLSR_Section_CheckPulseComplete(&PlsrRoute) == 1) { - SectionUpdatePluse += current_section->target_pulse; + if(current_section->target_pulse > 0) + { + SectionUpdatePluse += current_section->target_pulse; + } + else + { + SectionUpdatePluse -= current_section->target_pulse; + } } else { - SectionUpdatePluse -= current_section->target_pulse; + SectionUpdatePluse = PlsrTotalPulseCount; } } - // 重置部分状态 PlsrRoute.current_part = PLSR_PART_COMPLETE; // 检查是否为最后一段且下一段为0(路径结束) - if(PlsrRoute.current_section_num >= PlsrRoute.section_num + if((PlsrRoute.current_section_num >= PlsrRoute.section_num && PlsrRoute.section[PlsrRoute.current_section_num - 1].next_section == 0) + || PlsrRoute.current_section_num >= PlsrRoute.section_num && PlsrRoute.section_num == 1) { // 最后一段完成,路径结束 PLSR_Route_Stop(&PlsrRoute); @@ -1906,6 +1913,11 @@ void PLSR_Accel_Process(PLSR_RouteConfig_t* route) PLSR_PWM_SetFrequency(route->current_freq); return; } + else if(route->run_state == PLSR_STATE_DECEL && route->current_freq <= route->target_freq && route->target_freq == 0) + { + PLSR_HandleSectionEnd(); + return; + } // ==================== 加速处理 ==================== if (route->run_state == PLSR_STATE_ACCEL) @@ -2087,7 +2099,7 @@ void PLSR_TaskSectionSwitch(PLSR_RouteConfig_t* route) __HAL_TIM_SET_COUNTER(&htim2, 0); /* 如果当前频率已经为0,直接停止 */ - if (route->current_freq == 0) + if (route->current_freq <= 0) { route->route_state = PLSR_ROUTE_COMPLETED; PLSR_Route_Stop(route); @@ -2109,6 +2121,7 @@ void PLSR_TaskSectionSwitch(PLSR_RouteConfig_t* route) PLSR_PWM_Start(); } PLSR_ClearGpioTriggerFlag(); // 清除GPIO触发标志 + return ; } return; // 等待外部事件时不需要继续处理 } diff --git a/PLSR/PLSR/EWARM/test.1.dep b/PLSR/PLSR/EWARM/test.1.dep index d648537..d203ae7 100644 --- a/PLSR/PLSR/EWARM/test.1.dep +++ b/PLSR/PLSR/EWARM/test.1.dep @@ -5,412 +5,437 @@ test.1 + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.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_hal_flash.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.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_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Core\Src\tools.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\startup_stm32f407xx.s + $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Core\Src\flash_save.c + $PROJ_DIR$\..\Core\Src\main.c $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Core\Src\modbus_log.c $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c - $PROJ_DIR$\startup_stm32f407xx.s + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c + $PROJ_DIR$\..\Core\Src\modbus_crc.c $PROJ_DIR$\..\Core\Src\tim.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c - $PROJ_DIR$\..\Core\Src\modbus_crc.c - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c $PROJ_DIR$\..\Core\Src\usart.c - $PROJ_DIR$\..\Core\Src\dma.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c - $PROJ_DIR$\..\Core\Src\tools.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.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$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c - $PROJ_DIR$\..\Core\Src\modbus_log.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c - $PROJ_DIR$\..\Core\Src\main.c - $PROJ_DIR$\..\Core\Src\flash_save.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o - $PROJ_DIR$\..\UCOS\Source\os_trace.h - $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h - $PROJ_DIR$\..\Core\Inc\dma.h + $PROJ_DIR$\..\UCOS\Source\ucos_ii.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o + $PROJ_DIR$\..\UCOS\Source\os_mem.c $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.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\stm32f4xx_hal_cortex.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h + $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et + $TOOLKIT_DIR$\inc\c\string.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h + $TOOLKIT_DIR$\inc\c\ctype.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h + $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et + $PROJ_DIR$\test.1\Obj\tools.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o + $PROJ_DIR$\..\UCOS\Source\os_task.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h + $PROJ_DIR$\test.1\Exe\test.1.hex + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o + $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_mutex.c + $TOOLKIT_DIR$\lib\dl7M_tlf.a + $PROJ_DIR$\test.1\Obj\main.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_sem.c + $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h + $PROJ_DIR$\test.1\Obj\gpio.o + $PROJ_DIR$\test.1\Obj\tim.__cstat.et + $PROJ_DIR$\..\Core\Inc\modbus_log.h + $TOOLKIT_DIR$\inc\c\iccarm_builtin.h + $PROJ_DIR$\test.1\Obj\modbus_crc.o + $PROJ_DIR$\test.1\Obj\tim.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Product.h + $PROJ_DIR$\..\Core\Inc\usart.h + $TOOLKIT_DIR$\lib\m7M_tls.a + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o + $PROJ_DIR$\test.1\Obj\usart.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_flag.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o + $PROJ_DIR$\test.1\Obj\usart.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o - $PROJ_DIR$\stm32f407xx_flash.icf - $PROJ_DIR$\..\UCOS\Source\os.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et - $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et + $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et + $PROJ_DIR$\test.1\Obj\flash_save.o + $PROJ_DIR$\..\UCOS\Source\os_q.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h $PROJ_DIR$\..\UCOS\Source\os_core.c $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et - $TOOLKIT_DIR$\inc\c\stddef.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et - $PROJ_DIR$\test.1\Obj\dma.__cstat.et - $PROJ_DIR$\..\UCOS\Source\os_task.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h - $TOOLKIT_DIR$\inc\c\yvals.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h - $PROJ_DIR$\test.1\Obj\main.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h - $PROJ_DIR$\..\UCOS\Ports\os_cpu.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et - $PROJ_DIR$\..\UCOS\Config\os_cfg.h - $PROJ_DIR$\test.1\Obj\os_cpu_a.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o - $PROJ_DIR$\..\Core\Inc\flash_save.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et + $PROJ_DIR$\test.1\List\test.1.map + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et + $PROJ_DIR$\test.1\Obj\tools.o + $TOOLKIT_DIR$\lib\shb_l.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o + $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et $PROJ_DIR$\test.1\Obj\gpio.__cstat.et - $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et - $PROJ_DIR$\test.1\Obj\os_dbg.o - $TOOLKIT_DIR$\inc\c\stdarg.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o + $PROJ_DIR$\..\UCOS\Ports\os_cpu.h + $PROJ_DIR$\test.1\Exe\test.1.out + $PROJ_DIR$\test.1\Obj\main.o + $PROJ_DIR$\test.1\Obj\dma.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o + $PROJ_DIR$\..\UCOS\Source\os_trace.h $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o $PROJ_DIR$\..\UCOS\Source\os_mbox.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o + $PROJ_DIR$\test.1\Obj\dma.__cstat.et + $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o + $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et $TOOLKIT_DIR$\inc\c\DLib_float_setup.h - $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et - $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et - $TOOLKIT_DIR$\inc\c\ysizet.h - $PROJ_DIR$\test.1\Obj\ucos_ii.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et - $PROJ_DIR$\..\UCOS\Config\app_cfg.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et - $PROJ_DIR$\..\UCOS\Source\os_time.c - $PROJ_DIR$\test.1\Obj\usart.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et - $PROJ_DIR$\test.1\Obj\app_hooks.o - $PROJ_DIR$\..\Core\Inc\tim.h - $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et + $PROJ_DIR$\test.1\Obj\os_cpu_a.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h + $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_ll_rcc.o + $TOOLKIT_DIR$\inc\c\iar_intrinsics_common.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et + $PROJ_DIR$\..\Core\Inc\dma.h + $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\test.1\Obj\os_dbg.o + $TOOLKIT_DIR$\inc\c\stddef.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h + $PROJ_DIR$\stm32f407xx_flash.icf $TOOLKIT_DIR$\inc\c\stdio.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o - $PROJ_DIR$\test.1\Obj\tools.o - $TOOLKIT_DIR$\inc\c\intrinsics.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o - $PROJ_DIR$\test.1\Obj\flash_save.o - $TOOLKIT_DIR$\inc\c\stdint.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o - $TOOLKIT_DIR$\lib\dl7M_tlf.a - $PROJ_DIR$\..\Core\Inc\usart.h - $TOOLKIT_DIR$\inc\c\stdlib.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et $PROJ_DIR$\test.1\Obj\os_cpu_c.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.__cstat.et - $PROJ_DIR$\..\UCOS\Source\os_tmr.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o - $TOOLKIT_DIR$\inc\c\math.h - $PROJ_DIR$\..\UCOS\Source\os_sem.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et - $TOOLKIT_DIR$\inc\c\ctype.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o - $PROJ_DIR$\test.1\Obj\modbus_log.o + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et + $TOOLKIT_DIR$\inc\c\ysizet.h + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $PROJ_DIR$\..\Core\Inc\tim.h $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et - $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o - $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h - $PROJ_DIR$\test.1\Obj\gpio.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os.h + $PROJ_DIR$\..\UCOS\Config\os_cfg.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o $PROJ_DIR$\..\Core\Inc\gpio.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o - $TOOLKIT_DIR$\inc\c\ycheck.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o - $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o + $TOOLKIT_DIR$\lib\rt7M_tl.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et + $PROJ_DIR$\..\Core\Inc\flash_save.h + $PROJ_DIR$\..\UCOS\Source\os_time.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h $PROJ_DIR$\..\Core\Inc\main.h - $TOOLKIT_DIR$\inc\c\DLib_Product_string.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h - $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_tim.c - $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.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_crc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c - $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm - $PROJ_DIR$\..\UCOS\Ports\os_dbg.c - $TOOLKIT_DIR$\lib\shb_l.a - $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c - $PROJ_DIR$\..\UCOS\Source\ucos_ii.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_usart.c - $PROJ_DIR$\..\UCOS\Config\app_hooks.c - $PROJ_DIR$\test.1\Obj\tim.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o - $PROJ_DIR$\..\UCOS\Source\os_q.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h + $PROJ_DIR$\test.1\Obj\modbus_log.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o - $PROJ_DIR$\test.1\Obj\dma.o - $PROJ_DIR$\test.1\Obj\usart.o - $PROJ_DIR$\test.1\List\test.1.map - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et - $TOOLKIT_DIR$\inc\c\string.h - $PROJ_DIR$\..\Core\Inc\modbus_log.h - $PROJ_DIR$\..\UCOS\Source\os_mutex.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et - $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o - $PROJ_DIR$\..\UCOS\Source\os_flag.c - $PROJ_DIR$\test.1\Obj\main.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o - $TOOLKIT_DIR$\lib\m7M_tls.a - $PROJ_DIR$\test.1\Obj\tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et - $PROJ_DIR$\test.1\Obj\modbus_crc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\tools.__cstat.et - $PROJ_DIR$\..\UCOS\Source\ucos_ii.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o - $PROJ_DIR$\test.1\Exe\test.1.hex - $TOOLKIT_DIR$\lib\rt7M_tl.a - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h - $PROJ_DIR$\..\UCOS\Source\os_mem.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o - $TOOLKIT_DIR$\inc\c\iar_intrinsics_common.h - $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o - $TOOLKIT_DIR$\inc\c\iccarm_builtin.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h - $TOOLKIT_DIR$\inc\c\DLib_Product.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et - $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h - $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et + $TOOLKIT_DIR$\inc\c\stdlib.h + $PROJ_DIR$\test.1\Obj\ucos_ii.o $PROJ_DIR$\..\Core\Inc\modbus_crc.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o - $PROJ_DIR$\test.1\Exe\test.1.out - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o + $PROJ_DIR$\test.1\Obj\app_hooks.o + $TOOLKIT_DIR$\inc\c\intrinsics.h + $PROJ_DIR$\..\UCOS\Source\os_tmr.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o + $PROJ_DIR$\..\UCOS\Config\app_hooks.c + $TOOLKIT_DIR$\inc\c\yvals.h + $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h + $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et + $TOOLKIT_DIR$\inc\c\stdint.h + $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $TOOLKIT_DIR$\inc\c\ycheck.h + $PROJ_DIR$\..\UCOS\Config\app_cfg.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h + $TOOLKIT_DIR$\inc\c\math.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et + $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\startup_stm32f407xx.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et [ROOT_NODE] ILINK - 235 184 + 140 132 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c - ICCARM - 93 + __cstat + 106 - __cstat - 82 + ICCARM + 119 ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c - - ICCARM - 130 - __cstat - 64 + 60 - - ICCARM - 132 142 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 97 109 100 187 143 120 110 231 67 233 63 188 117 79 205 89 60 57 29 103 217 + 49 - + - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c + + __cstat + 233 + ICCARM - 111 + 75 + + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + __cstat - 34 + 118 - - ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 164 - + - $PROJ_DIR$\startup_stm32f407xx.s + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c - AARM - 125 + __cstat + 70 + + + ICCARM + 172 - $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c - ICCARM - 185 + __cstat + 180 - __cstat - 223 + ICCARM + 179 ICCARM - 142 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 128 205 89 67 100 60 57 29 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + + __cstat + 98 + ICCARM - 197 + 182 + + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + __cstat - 170 + 88 + + + ICCARM + 156 ICCARM - 97 142 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 109 100 187 143 120 110 231 67 233 63 188 117 79 205 89 60 57 29 132 103 217 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c - ICCARM - 70 + __cstat + 64 - __cstat - 114 + ICCARM + 206 ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c + + __cstat + 190 + ICCARM - 37 + 113 + + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + __cstat - 85 + 167 - - ICCARM - 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 180 83 76 221 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 146 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c - ICCARM - 33 + __cstat + 62 - __cstat - 232 + ICCARM + 112 ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 @@ -418,341 +443,330 @@ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c - ICCARM - 116 + __cstat + 133 - __cstat - 201 + ICCARM + 211 ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Core\Src\modbus_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c - - ICCARM - 202 - __cstat - 225 + 222 - - ICCARM - 233 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 180 83 76 221 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 117 - + - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c - ICCARM - 141 + __cstat + 130 - __cstat - 224 + ICCARM + 153 ICCARM - 142 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c - ICCARM - 183 + __cstat + 76 - __cstat - 92 + ICCARM + 194 ICCARM - 109 142 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 100 187 143 120 110 231 67 233 63 188 97 117 79 205 89 60 57 29 132 103 217 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c - ICCARM - 182 + __cstat + 84 - __cstat - 50 + ICCARM + 224 ICCARM - 32 142 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c - - ICCARM - 146 - __cstat - 119 + 198 - - ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 97 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c - ICCARM - 131 + __cstat + 114 - __cstat - 171 + ICCARM + 149 ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c - ICCARM - 35 + __cstat + 131 - __cstat - 90 + ICCARM + 56 ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Core\Src\tools.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c - ICCARM - 102 + __cstat + 177 - __cstat - 204 + ICCARM + 120 ICCARM - 97 142 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 109 100 187 143 120 110 231 67 233 63 188 117 79 205 89 60 57 29 132 103 217 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c - - ICCARM - 234 - __cstat - 88 + 184 - - ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 51 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c - ICCARM - 113 + __cstat + 221 - __cstat - 228 + ICCARM + 166 ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c - ICCARM - 219 + __cstat + 50 - __cstat - 190 + ICCARM + 74 ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + + __cstat + 234 + ICCARM - 107 + 72 + + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c + __cstat - 236 + 163 - - ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 129 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c - ICCARM - 77 + __cstat + 237 - __cstat - 99 + ICCARM + 201 ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Core\Src\modbus_log.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c - ICCARM - 123 + __cstat + 143 - __cstat - 65 + ICCARM + 53 ICCARM - 188 109 142 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 100 187 143 120 110 231 67 233 63 97 117 79 205 89 60 57 29 132 103 217 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c - ICCARM - 181 + __cstat + 79 - __cstat - 186 + ICCARM + 212 ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c - ICCARM - 55 + __cstat + 63 - __cstat - 194 + ICCARM + 235 ICCARM - 142 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 132 97 109 100 187 143 120 110 231 67 233 63 188 117 79 205 89 60 57 29 103 217 32 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Core\Src\flash_save.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c - ICCARM - 105 + __cstat + 124 - __cstat - 30 + ICCARM + 217 ICCARM - 63 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 233 187 143 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 @@ -760,430 +774,416 @@ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c - ICCARM - 199 + __cstat + 81 - __cstat - 203 + ICCARM + 187 ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c + $PROJ_DIR$\..\Core\Src\tools.c - - ICCARM - 101 - __cstat - 84 + 71 - - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c - ICCARM - 46 + 134 + + - __cstat - 59 + ICCARM + 189 203 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 100 176 59 186 66 207 90 169 209 199 93 232 158 48 230 193 139 147 195 214 165 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c - ICCARM - 58 + __cstat + 159 - __cstat - 126 + ICCARM + 108 ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 203 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c - ICCARM - 36 + __cstat + 54 - __cstat - 174 + ICCARM + 136 ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + $PROJ_DIR$\startup_stm32f407xx.s - ICCARM - 69 - - - __cstat - 47 + AARM + 236 - $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $PROJ_DIR$\..\Core\Src\dma.c - ICCARM - 112 + __cstat + 154 - __cstat - 44 + ICCARM + 142 ICCARM - 205 89 67 100 137 53 139 98 222 86 60 57 29 + 168 203 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c + $PROJ_DIR$\..\Core\Src\flash_save.c - ICCARM - 192 + __cstat + 115 - __cstat - 124 + ICCARM + 125 + + + ICCARM + 199 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 209 59 186 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Core\Src\main.c - ICCARM - 176 + __cstat + 87 - __cstat - 208 + ICCARM + 141 ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 203 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 195 189 100 176 59 186 66 207 90 169 209 199 93 232 158 48 230 193 139 147 214 165 168 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + $PROJ_DIR$\..\Core\Src\gpio.c - - ICCARM - 28 - __cstat - 42 + 138 - - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c - ICCARM - 136 + 91 + + - __cstat - 94 + ICCARM + 195 203 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 189 100 176 59 186 66 207 90 169 209 199 93 232 158 48 230 193 139 147 214 165 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + $PROJ_DIR$\..\Core\Src\modbus_log.c - ICCARM - 122 + __cstat + 155 - __cstat - 207 + ICCARM + 204 + + + ICCARM + 93 100 203 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 176 59 186 66 207 90 169 209 199 189 232 158 48 230 193 139 147 195 214 165 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c - ICCARM - 127 + __cstat + 173 - __cstat - 140 + ICCARM + 82 ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c - ICCARM - 178 + __cstat + 102 - __cstat - 95 + ICCARM + 183 - - - $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm - + - AARM - 61 + ICCARM + 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 80 83 205 123 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - + - $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c - ICCARM - 66 + __cstat + 145 - __cstat - 80 + ICCARM + 104 ICCARM - 205 89 67 100 137 53 139 98 222 86 60 57 29 + 203 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 68 48 230 169 176 193 139 147 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Core\Src\modbus_crc.c - ICCARM - 104 + __cstat + 58 - __cstat - 214 + ICCARM + 95 ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 209 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 80 83 205 123 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Core\Src\tim.c - ICCARM - 216 + __cstat + 92 - __cstat - 133 + ICCARM + 96 ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 189 203 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 100 176 59 186 66 207 90 169 209 199 93 232 158 48 230 193 139 147 195 214 165 - $PROJ_DIR$\..\UCOS\Source\ucos_ii.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c - ICCARM - 87 + __cstat + 191 - __cstat - 218 + ICCARM + 144 ICCARM - 205 89 67 100 137 53 139 98 222 86 60 57 29 45 193 78 213 189 179 118 51 91 115 + 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c + $PROJ_DIR$\..\Core\Src\usart.c - - ICCARM - 68 - __cstat - 198 + 105 - - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c - ICCARM - 138 + 109 + + - __cstat - 229 + ICCARM + 100 203 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 176 59 186 66 207 90 169 209 199 93 189 232 158 48 230 193 139 147 195 214 165 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\test.1\Exe\test.1.out - ICCARM - 206 + OBJCOPY + 78 - __cstat - 75 + ILINK + 132 + + + ILINK + 175 213 142 125 91 141 95 204 160 178 170 236 144 136 206 53 153 211 179 212 235 56 217 187 108 156 201 224 120 149 194 166 82 74 119 112 104 72 97 113 51 49 129 75 164 172 182 146 117 183 96 134 208 109 135 197 101 86 + + - $PROJ_DIR$\..\UCOS\Config\app_hooks.c + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c - ICCARM - 96 + __cstat + 226 - __cstat - 43 + ICCARM + 170 ICCARM - 39 205 89 67 100 137 53 139 98 222 86 60 57 29 + 48 230 169 176 229 219 188 220 99 185 193 139 147 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm - ICCARM - 195 - - - __cstat - 49 + AARM + 160 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c + $PROJ_DIR$\..\UCOS\Config\app_hooks.c - ICCARM - 209 + __cstat + 157 - __cstat - 237 + ICCARM + 213 ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 192 48 230 169 176 229 219 188 220 99 185 193 139 147 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c - ICCARM - 62 + __cstat + 137 - __cstat - 40 + ICCARM + 208 ICCARM - 180 83 76 221 72 200 191 106 137 53 139 98 222 31 121 73 220 162 135 215 48 86 52 227 81 56 54 71 41 134 226 230 177 147 129 74 212 + 48 230 169 176 229 219 188 220 99 185 193 139 147 128 107 150 52 85 126 89 73 200 215 - $PROJ_DIR$\test.1\Exe\test.1.out + $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c - ILINK - 184 + __cstat + 116 - OBJCOPY - 210 + ICCARM + 178 - ILINK - 38 96 182 105 130 55 202 123 61 112 66 125 70 35 181 33 234 116 146 131 113 219 107 199 141 77 93 127 209 62 176 58 111 216 104 36 185 136 195 192 138 178 46 101 28 68 122 69 206 37 197 102 87 183 161 211 196 108 + ICCARM + 48 230 169 176 229 219 188 220 99 185 193 139 147 diff --git a/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim b/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim index c5393405c0dd4e0028fd0d7e782c3ed788a04705..b63397af9c5b177feb58211c4a3a3d4eb80164f8 100644 GIT binary patch delta 4184 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 delta 4234 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 ZHkOr8feQ{Ke943F3}iD8+|6y8{y#djSXKZ4