diff --git a/PLSR/PLSR/Core/Src/tim.c b/PLSR/PLSR/Core/Src/tim.c index 7b07c48..b602ff9 100644 --- a/PLSR/PLSR/Core/Src/tim.c +++ b/PLSR/PLSR/Core/Src/tim.c @@ -1740,7 +1740,7 @@ void PLSR_Section_SwitchNext(PLSR_RouteConfig_t* route, uint8_t is_pulse_complet // 清除新段的外部事件标志,确保每段都是干净的状态 PLSR_ClearExtEvent(route); - route->initial_freq = route->current_freq; + route->initial_freq = route->current_freq; //???? } @@ -2045,14 +2045,24 @@ void PLSR_TaskSectionSwitch(PLSR_RouteConfig_t* route) PLSR_SectionConfig_t* current_section = &route->section[route->current_section_num - 1]; if(current_section->wait_condition.wait_type == PLSR_WAIT_EXT_EVENT) { - route->current_freq = 0; - route->initial_freq = 0; - PLSR_Route_PWM_Stop(); + PLSR_Section_PWM_Stop(); /* 如果当前段等待外部事件,检查是否有事件触发 */ if (PLSR_Wait_CheckExtEvent(route)) { + /*检查是否完成,在外部事件这种特殊情况下对脉冲数进行计数*/ AllPulse += __HAL_TIM_GET_COUNTER(&htim2); // 累加当前段已发送的脉冲数 - + TotalSePulse = AllPulse; + if(PLSR_Section_CheckPulseComplete(route)) + { + route->current_freq = 0; + route->initial_freq = 0; + } + else + { + AllPulse -= 1; + TotalSePulse -= 1; + } + //PLSR_Route_PWM_Stop(); /* 检查当前段是否为最后一段 */ if (route->current_section_num >= route->section_num) { @@ -2061,7 +2071,7 @@ void PLSR_TaskSectionSwitch(PLSR_RouteConfig_t* route) route->run_state = PLSR_STATE_DECEL; // 设置为减速状态 route->initial_freq = route->current_freq; __HAL_TIM_SetAutoreload(&htim2, 0xffffff); - __HAL_TIM_SET_COUNTER(&htim2, 1); + __HAL_TIM_SET_COUNTER(&htim2, 0); /* 如果当前频率已经为0,直接停止 */ if (route->current_freq == 0) @@ -2077,6 +2087,7 @@ void PLSR_TaskSectionSwitch(PLSR_RouteConfig_t* route) } else { + __HAL_TIM_SET_COUNTER(&htim2, 0); /* 非最后一段,正常进行段切换 */ PLSR_Section_SwitchNext(route, 0); // 外部事件触发,传入0 /* 启动新段,设置新的脉冲参数和频率 */ @@ -2084,7 +2095,6 @@ void PLSR_TaskSectionSwitch(PLSR_RouteConfig_t* route) /* 启动PWM输出 */ PLSR_PWM_Start(); } - PLSR_ClearGpioTriggerFlag(); // 清除GPIO触发标志 } return; // 等待外部事件时不需要继续处理 diff --git a/PLSR/PLSR/EWARM/test.1.dep b/PLSR/PLSR/EWARM/test.1.dep index 0f40e18..6e3247d 100644 --- a/PLSR/PLSR/EWARM/test.1.dep +++ b/PLSR/PLSR/EWARM/test.1.dep @@ -5,1100 +5,1100 @@ test.1 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Core\Src\modbus_log.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c + $PROJ_DIR$\..\Core\Src\tools.c + $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c + $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\startup_stm32f407xx.s + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c + $PROJ_DIR$\..\Core\Src\modbus_crc.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c + $PROJ_DIR$\..\Core\Src\flash_save.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.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_flash_ramfunc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.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_flash_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c - $PROJ_DIR$\..\UCOS\Config\app_hooks.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.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_tim_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c + $PROJ_DIR$\..\UCOS\Config\app_hooks.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c - $PROJ_DIR$\..\Core\Src\dma.c - $PROJ_DIR$\..\Core\Src\modbus_crc.c - $PROJ_DIR$\..\Core\Src\gpio.c - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c - $PROJ_DIR$\..\Core\Src\flash_save.c - $PROJ_DIR$\..\Core\Src\main.c - $PROJ_DIR$\startup_stm32f407xx.s - $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c - $PROJ_DIR$\..\Core\Src\tim.c - $PROJ_DIR$\..\Core\Src\modbus_log.c - $PROJ_DIR$\..\Core\Src\tools.c - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c - $PROJ_DIR$\..\Core\Src\usart.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c - $PROJ_DIR$\..\UCOS\Source\os_q.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o - $PROJ_DIR$\test.1\Obj\ucos_ii.o - $PROJ_DIR$\..\UCOS\Source\os_mutex.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et - $TOOLKIT_DIR$\inc\c\iccarm_builtin.h - $PROJ_DIR$\..\Core\Inc\modbus_crc.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h - $PROJ_DIR$\stm32f407xx_flash.icf - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et - $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et - $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h - $PROJ_DIR$\..\Core\Inc\main.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et - $PROJ_DIR$\test.1\Obj\gpio.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o - $PROJ_DIR$\test.1\Obj\os_dbg.o - $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et - $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o - $TOOLKIT_DIR$\inc\c\stddef.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h - $PROJ_DIR$\..\UCOS\Source\os_flag.c - $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o - $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et - $PROJ_DIR$\..\UCOS\Source\os_time.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o - $PROJ_DIR$\..\Core\Inc\modbus_log.h - $TOOLKIT_DIR$\inc\c\ctype.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h - $PROJ_DIR$\test.1\Obj\flash_save.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o - $PROJ_DIR$\test.1\Obj\usart.__cstat.et - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o - $PROJ_DIR$\..\Core\Inc\usart.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $TOOLKIT_DIR$\inc\c\yvals.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et $TOOLKIT_DIR$\inc\c\string.h + $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h $PROJ_DIR$\..\UCOS\Ports\os_cpu.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h - $TOOLKIT_DIR$\lib\rt7M_tl.a - $PROJ_DIR$\test.1\Obj\os_cpu_a.o - $TOOLKIT_DIR$\inc\c\ysizet.h - $PROJ_DIR$\test.1\Obj\tim.o - $PROJ_DIR$\test.1\Exe\test.1.out + $PROJ_DIR$\test.1\Obj\app_hooks.o $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et - $PROJ_DIR$\..\UCOS\Config\app_cfg.h - $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et - $PROJ_DIR$\..\Core\Inc\dma.h $PROJ_DIR$\..\UCOS\Source\ucos_ii.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et + $PROJ_DIR$\test.1\Obj\tools.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o + $PROJ_DIR$\..\UCOS\Source\os_core.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o + $PROJ_DIR$\..\Core\Inc\usart.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h + $TOOLKIT_DIR$\lib\dl7M_tlf.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h + $PROJ_DIR$\..\Core\Inc\dma.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et + $PROJ_DIR$\test.1\Obj\modbus_crc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o $TOOLKIT_DIR$\inc\c\math.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h - $TOOLKIT_DIR$\inc\c\DLib_Product_string.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h - $PROJ_DIR$\..\UCOS\Config\os_cfg.h - $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et - $PROJ_DIR$\..\Core\Inc\flash_save.h - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h + $PROJ_DIR$\..\UCOS\Source\os_trace.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o $TOOLKIT_DIR$\inc\c\DLib_Product.h - $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\tools.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h - $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et $PROJ_DIR$\test.1\List\test.1.map - $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o - $PROJ_DIR$\..\UCOS\Source\os_core.c - $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o + $TOOLKIT_DIR$\inc\c\DLib_float_setup.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h + $TOOLKIT_DIR$\lib\shb_l.a + $TOOLKIT_DIR$\lib\m7M_tls.a + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o - $TOOLKIT_DIR$\inc\c\stdarg.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o - $PROJ_DIR$\test.1\Obj\app_hooks.o - $TOOLKIT_DIR$\inc\c\stdio.h $PROJ_DIR$\..\UCOS\Source\os_task.c - $TOOLKIT_DIR$\inc\c\yvals.h - $PROJ_DIR$\test.1\Obj\tools.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o - $TOOLKIT_DIR$\inc\c\ycheck.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h - $TOOLKIT_DIR$\inc\c\DLib_float_setup.h - $PROJ_DIR$\test.1\Obj\main.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h - $PROJ_DIR$\..\UCOS\Source\os_sem.c + $PROJ_DIR$\..\Core\Inc\flash_save.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o + $PROJ_DIR$\stm32f407xx_flash.icf + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h + $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et + $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et - $PROJ_DIR$\test.1\Obj\main.o - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o + $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o + $PROJ_DIR$\..\UCOS\Source\os_flag.c + $TOOLKIT_DIR$\inc\c\iccarm_builtin.h + $PROJ_DIR$\..\UCOS\Source\os_mbox.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et $TOOLKIT_DIR$\inc\c\iar_intrinsics_common.h - $PROJ_DIR$\..\UCOS\Source\os_trace.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o + $PROJ_DIR$\test.1\Obj\usart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o + $PROJ_DIR$\test.1\Obj\flash_save.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o + $PROJ_DIR$\test.1\Obj\os_cpu_a.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o + $PROJ_DIR$\..\UCOS\Source\os_mem.c + $TOOLKIT_DIR$\inc\c\stddef.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et + $PROJ_DIR$\test.1\Obj\main.o + $PROJ_DIR$\..\Core\Inc\tim.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h + $PROJ_DIR$\..\UCOS\Source\os_time.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o + $PROJ_DIR$\test.1\Obj\main.__cstat.et + $TOOLKIT_DIR$\inc\c\ysizet.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o + $PROJ_DIR$\test.1\Exe\test.1.out $PROJ_DIR$\..\UCOS\Source\os.h - $TOOLKIT_DIR$\lib\shb_l.a - $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\test.1\Obj\usart.__cstat.et + $TOOLKIT_DIR$\inc\c\stdlib.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et - $PROJ_DIR$\..\Core\Inc\gpio.h - $PROJ_DIR$\test.1\Obj\modbus_log.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h - $PROJ_DIR$\test.1\Obj\dma.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et - $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm - $PROJ_DIR$\..\UCOS\Source\os_mbox.c - $TOOLKIT_DIR$\lib\m7M_tls.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o + $TOOLKIT_DIR$\inc\c\intrinsics.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et - $PROJ_DIR$\test.1\Obj\gpio.o - $PROJ_DIR$\..\UCOS\Source\ucos_ii.c + $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h + $PROJ_DIR$\..\UCOS\Source\os_tmr.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et $TOOLKIT_DIR$\inc\c\stdint.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o - $TOOLKIT_DIR$\lib\dl7M_tlf.a - $PROJ_DIR$\test.1\Exe\test.1.hex - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h - $PROJ_DIR$\test.1\Obj\modbus_crc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et - $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o - $TOOLKIT_DIR$\inc\c\intrinsics.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o + $PROJ_DIR$\..\UCOS\Config\os_cfg.h $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h - $PROJ_DIR$\test.1\Obj\usart.o - $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h - $TOOLKIT_DIR$\inc\c\stdlib.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o + $PROJ_DIR$\test.1\Obj\tim.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et + $PROJ_DIR$\test.1\Exe\test.1.hex + $PROJ_DIR$\test.1\Obj\dma.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o - $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et - $PROJ_DIR$\test.1\Obj\dma.o - $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o $PROJ_DIR$\test.1\Obj\tim.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et - $PROJ_DIR$\..\Core\Inc\tim.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h - $PROJ_DIR$\..\UCOS\Source\os_tmr.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o + $PROJ_DIR$\test.1\Obj\os_dbg.o $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et - $PROJ_DIR$\..\UCOS\Source\os_mem.c - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o + $PROJ_DIR$\..\UCOS\Source\os_sem.c + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c $PROJ_DIR$\test.1\Obj\os_cpu_c.o + $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h + $PROJ_DIR$\test.1\Obj\gpio.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et + $TOOLKIT_DIR$\lib\rt7M_tl.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o + $PROJ_DIR$\test.1\Obj\gpio.o + $TOOLKIT_DIR$\inc\c\ctype.h + $PROJ_DIR$\..\Core\Inc\modbus_crc.h + $PROJ_DIR$\..\UCOS\Source\os_q.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et + $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_mutex.c + $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h + $PROJ_DIR$\..\Core\Inc\gpio.h + $PROJ_DIR$\test.1\Obj\dma.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et + $PROJ_DIR$\..\Core\Inc\modbus_log.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h + $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h + $PROJ_DIR$\..\UCOS\Config\app_cfg.h + $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_dma_ex.o + $PROJ_DIR$\test.1\Obj\ucos_ii.o + $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h + $TOOLKIT_DIR$\inc\c\stdio.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h + $TOOLKIT_DIR$\inc\c\ycheck.h + $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h + $PROJ_DIR$\..\Core\Inc\main.h + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o + $PROJ_DIR$\test.1\Obj\modbus_log.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h [ROOT_NODE] ILINK - 118 143 + 136 87 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Core\Src\modbus_log.c - __cstat - 104 + ICCARM + 235 - ICCARM - 202 + __cstat + 102 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 217 67 232 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 227 55 51 204 139 220 106 205 96 127 80 88 62 221 159 59 81 212 143 112 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c - - __cstat - 126 - ICCARM - 175 + 79 - - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c - __cstat - 222 + 140 + + ICCARM - 194 + 232 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c - - __cstat - 119 - ICCARM - 236 + 68 - - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c - __cstat - 225 + 187 + + ICCARM - 142 + 232 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 103 62 221 106 227 159 59 81 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Core\Src\tools.c - __cstat - 217 + ICCARM + 63 - ICCARM - 80 + __cstat + 85 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 127 232 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 67 227 55 51 204 139 220 106 205 96 217 80 88 62 221 159 59 81 212 143 112 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + $PROJ_DIR$\..\Core\Src\dma.c - __cstat - 185 + ICCARM + 213 - ICCARM - 156 + __cstat + 168 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 75 232 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + $PROJ_DIR$\..\Core\Src\main.c - __cstat - 72 + ICCARM + 126 - ICCARM - 203 + __cstat + 133 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 232 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 212 127 67 227 55 51 204 139 220 106 205 96 217 80 88 62 221 159 59 81 143 112 75 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Core\Src\usart.c - __cstat - 128 + ICCARM + 113 - ICCARM - 232 + __cstat + 138 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 67 232 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 227 55 51 204 139 220 106 205 96 217 127 80 88 62 221 159 59 81 212 143 112 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + $PROJ_DIR$\..\Core\Src\gpio.c - __cstat - 81 + ICCARM + 203 - ICCARM - 107 + __cstat + 181 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 212 232 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 127 67 227 55 51 204 139 220 106 205 96 217 80 88 62 221 159 59 81 143 112 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c - - __cstat - 227 - ICCARM - 153 + 107 - - - - $PROJ_DIR$\..\UCOS\Config\app_hooks.c - __cstat - 219 - - - ICCARM - 157 + 233 ICCARM - 176 124 120 151 158 164 160 78 89 136 116 132 111 174 + 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 218 145 180 231 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c + $PROJ_DIR$\..\Core\Src\tim.c - __cstat - 205 + ICCARM + 164 - ICCARM - 141 + __cstat + 171 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 127 232 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 67 227 55 51 204 139 220 106 205 96 217 80 88 62 221 159 59 81 212 143 112 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c - __cstat - 50 + ICCARM + 119 - ICCARM - 68 + __cstat + 169 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c - - __cstat - 59 - ICCARM - 94 + 118 - - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c - __cstat - 199 - - - ICCARM - 163 + 152 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + $PROJ_DIR$\startup_stm32f407xx.s - __cstat - 75 - - - ICCARM - 149 + AARM + 230 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c - __cstat - 189 + ICCARM + 94 - ICCARM - 105 + __cstat + 104 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c - __cstat - 109 + ICCARM + 182 - ICCARM - 206 + __cstat + 157 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Core\Src\modbus_crc.c - __cstat - 65 + ICCARM + 77 - ICCARM - 228 + __cstat + 195 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 205 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 218 145 180 231 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c - - __cstat - 90 - ICCARM - 112 + 236 - - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c - __cstat - 233 + 179 + + ICCARM - 53 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + $PROJ_DIR$\..\Core\Src\flash_save.c - __cstat - 215 + ICCARM + 117 - ICCARM - 218 + __cstat + 50 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 96 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 205 55 51 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c - __cstat - 122 + ICCARM + 115 - ICCARM - 207 + __cstat + 214 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c - __cstat - 155 + ICCARM + 234 - ICCARM - 162 + __cstat + 128 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c - __cstat - 69 + ICCARM + 196 - ICCARM - 154 + __cstat + 125 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c - __cstat - 82 + ICCARM + 150 - ICCARM - 146 + __cstat + 111 - + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 183 - + + __cstat + 199 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c - __cstat - 212 + ICCARM + 165 - ICCARM - 223 + __cstat + 201 - + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 64 + + + __cstat + 223 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c - __cstat - 97 + ICCARM + 135 - ICCARM - 101 + __cstat + 153 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c - __cstat - 200 + ICCARM + 222 - ICCARM - 84 + __cstat + 173 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + + ICCARM + 98 + __cstat - 70 + 151 + + ICCARM - 182 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c - __cstat - 216 + ICCARM + 132 - ICCARM - 231 + __cstat + 161 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c - __cstat - 184 + ICCARM + 78 - ICCARM - 220 + __cstat + 185 ICCARM - 123 67 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Core\Src\modbus_crc.c + $PROJ_DIR$\..\UCOS\Config\app_hooks.c - __cstat - 64 + ICCARM + 60 - ICCARM - 198 + __cstat + 208 ICCARM - 58 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 168 140 60 51 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 137 62 221 106 227 229 52 93 211 83 134 159 59 81 - $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c - __cstat - 73 + ICCARM + 82 - ICCARM - 190 + __cstat + 209 ICCARM - 180 67 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 226 106 158 110 130 96 211 221 151 58 134 95 127 166 124 120 132 111 174 204 173 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c - __cstat - 179 + ICCARM + 122 - ICCARM - 193 + __cstat + 76 ICCARM - 67 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Core\Src\flash_save.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + + ICCARM + 114 + __cstat - 91 + 61 + + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + ICCARM - 100 + 116 + + + __cstat + 193 ICCARM - 134 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 58 110 130 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c - __cstat - 167 + ICCARM + 224 - ICCARM - 171 + __cstat + 190 ICCARM - 67 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 180 226 106 158 110 130 96 211 221 151 58 134 95 127 166 124 120 132 111 174 204 173 123 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\startup_stm32f407xx.s + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c - AARM - 88 + ICCARM + 89 - - - - $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c - __cstat - 56 - - - ICCARM - 145 + 144 ICCARM - 67 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 83 124 120 151 158 132 111 174 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c - __cstat - 224 + ICCARM + 73 - ICCARM - 117 + __cstat + 86 ICCARM - 226 67 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 106 158 110 130 96 211 221 151 58 134 95 127 166 124 120 132 111 174 180 204 173 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Core\Src\modbus_log.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c - __cstat - 148 + ICCARM + 142 - ICCARM - 181 + __cstat + 207 - + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c + ICCARM - 95 106 67 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 158 110 130 96 211 221 151 58 134 226 127 166 124 120 132 111 174 180 204 173 + 147 - + + __cstat + 166 + + - $PROJ_DIR$\..\Core\Src\tools.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c - __cstat - 138 + ICCARM + 178 - ICCARM - 161 + __cstat + 131 ICCARM - 226 67 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 106 158 110 130 96 211 221 151 58 134 95 127 166 124 120 132 111 174 180 204 173 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c + + ICCARM + 66 + __cstat - 172 + 69 + + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + ICCARM - 98 + 163 + + + __cstat + 170 ICCARM - 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 168 140 60 51 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c - __cstat - 63 + ICCARM + 105 - ICCARM - 52 + __cstat + 198 - + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 202 - + + __cstat + 192 + + - $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c - __cstat - 102 + ICCARM + 158 - ICCARM - 209 + __cstat + 156 ICCARM - 106 67 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 158 110 130 96 211 221 151 58 134 95 226 127 166 124 120 132 111 174 180 204 173 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c - __cstat - 74 + ICCARM + 155 - ICCARM - 76 + __cstat + 216 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c - __cstat - 71 + ICCARM + 141 - ICCARM - 93 + __cstat + 54 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c - __cstat - 170 + ICCARM + 57 - ICCARM - 150 + __cstat + 148 ICCARM - 168 140 60 51 103 208 210 192 164 160 78 89 136 229 152 235 57 66 135 108 85 116 183 62 213 131 129 197 125 214 86 113 139 137 79 99 165 + 218 145 180 231 101 160 162 149 229 52 93 211 83 129 100 215 109 226 188 70 124 134 74 71 228 219 197 97 154 237 184 121 53 90 189 84 58 @@ -1107,17 +1107,17 @@ ILINK - 143 + 87 OBJCOPY - 196 + 167 ILINK - 61 157 220 100 190 171 198 181 115 237 77 88 76 93 150 163 218 146 206 107 80 156 231 228 193 154 202 203 232 141 207 68 52 162 223 105 145 236 101 175 149 84 182 194 112 94 142 153 53 98 117 161 54 209 177 114 188 195 + 99 60 213 117 203 126 77 235 120 176 172 230 119 118 94 182 224 82 122 57 163 98 132 155 79 115 158 116 234 178 73 78 236 141 196 89 68 114 142 150 183 147 66 165 64 105 202 135 222 107 164 63 225 113 91 186 92 72 @@ -1125,65 +1125,65 @@ $PROJ_DIR$\..\UCOS\Ports\os_dbg.c - __cstat - 144 + ICCARM + 172 - ICCARM - 77 + __cstat + 191 ICCARM - 124 120 151 158 164 160 78 89 136 116 132 111 174 + 62 221 106 227 229 52 93 211 83 134 159 59 81 - $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c - AARM - 115 + ICCARM + 176 - - - - $PROJ_DIR$\..\UCOS\Source\ucos_ii.c - __cstat - 121 - - - ICCARM - 54 + 56 ICCARM - 124 120 151 158 164 160 78 89 136 116 132 111 174 147 87 187 234 55 49 169 159 92 230 + 62 221 106 227 229 52 93 211 83 134 159 59 81 - $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm - __cstat - 133 + AARM + 120 + + + + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c + ICCARM - 237 + 225 + + + __cstat + 49 ICCARM - 124 120 151 158 164 160 78 89 136 116 132 111 174 + 62 221 106 227 229 52 93 211 83 134 159 59 81 65 108 110 123 210 206 174 95 130 146 diff --git a/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim b/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim index d214811..b49bbe3 100644 Binary files a/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim and b/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim differ