From a355221fa4dd15015080d0f00aea749ad3b3aa4d Mon Sep 17 00:00:00 2001 From: JIU JIALIN <2339061402@qq.com> Date: Sat, 30 Aug 2025 15:02:55 +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=87=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PLSR/PLSR/Core/Src/tim.c | 46 +- PLSR/PLSR/EWARM/test.1.dep | 920 +++++++++++++------------- PLSR/PLSR/EWARM/test.1/Exe/test.1.sim | Bin 41742 -> 41770 bytes 3 files changed, 489 insertions(+), 477 deletions(-) diff --git a/PLSR/PLSR/Core/Src/tim.c b/PLSR/PLSR/Core/Src/tim.c index b602ff9..6b613ca 100644 --- a/PLSR/PLSR/Core/Src/tim.c +++ b/PLSR/PLSR/Core/Src/tim.c @@ -33,7 +33,7 @@ uint32_t PlsrCurrentTargetFreq = 0; // 当前段目标频率频率(Hz),用于 static uint8_t s_last_direction = 0xFF; // 初始值设为无效值,确保第一次总是认为有方向变化 uint8_t PlsrModFlag = 0xff; static uint8_t FirstFlag = 0; -uint32_t TotalSePulse = 0; +uint32_t SectionUpdatePluse = 0; uint8_t StopFlag = 0; // ==================== PLSR内部变量 ==================== @@ -831,7 +831,7 @@ void PLSR_TIM6_Stop(void) HAL_TIM_Base_Stop_IT(&htim6); } -static int32_t AllPulse = 0; //总脉冲个数 +static int32_t PartUpdatePluse = 0; //总脉冲个数 static int32_t s_last_total_pulse = 0; //上次记录的总脉冲数,用于实时累加 @@ -867,10 +867,23 @@ static void PLSR_UpdateGlobalPulseCount(int32_t current_pulse_count) void PLSR_HandleSectionEnd(void) { + // 获取当前段的配置指针(段号从1开始,数组索引从0开始) + PLSR_SectionConfig_t* current_section = &PlsrRoute.section[PlsrRoute.current_section_num - 1]; // 清零所有部分的脉冲计数 PlsrRoute.accel_pulse_count = 0; PlsrRoute.const_pulse_count = 0; PlsrRoute.decel_pulse_count = 0; + if(PlsrRoute.mode == PLSR_MODE_RELATIVE) + { + if(current_section->target_pulse > 0) + { + SectionUpdatePluse += current_section->target_pulse; + } + else + { + SectionUpdatePluse -= current_section->target_pulse; + } + } // 重置部分状态 PlsrRoute.current_part = PLSR_PART_COMPLETE; @@ -920,9 +933,9 @@ void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) current_section_pulses -= 1; PlsrModFlag = 0; } - AllPulse += current_section_pulses; - PlsrRoute.pulse_count = AllPulse; - PLSR_UpdateGlobalPulseCount(AllPulse); + PartUpdatePluse += current_section_pulses; + PlsrRoute.pulse_count = PartUpdatePluse; + PLSR_UpdateGlobalPulseCount(PartUpdatePluse); // 三部分状态机处理 switch(PlsrRoute.current_part) { @@ -1059,7 +1072,7 @@ void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) uint32_t current_tim2_count = __HAL_TIM_GET_COUNTER(&htim2); // 计算当前段已发送的总脉冲数 - int32_t current_pulse_count = AllPulse + current_tim2_count; + int32_t current_pulse_count = PartUpdatePluse + current_tim2_count; PlsrRoute.pulse_count = current_pulse_count; // 实时累加脉冲增量到全局计数器(根据方向逻辑决定递增或递减) PLSR_UpdateGlobalPulseCount(current_pulse_count); @@ -1080,7 +1093,7 @@ void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) { PlsrModFlag = 1; // 标记当前段目标频率被修改 PLSR_Section_PWM_Stop(); - AllPulse += current_tim2_count; // 累加当前段已发送的脉冲数 + PartUpdatePluse += current_tim2_count; // 累加当前段已发送的脉冲数 PLSR_Section_StartNewSection(&PlsrRoute); ///<重新启动当前段 PLSR_PWM_Start(); } @@ -1205,7 +1218,7 @@ void PLSR_Route_Start(PLSR_RouteConfig_t* route) route->run_state = PLSR_STATE_IDLE; // 设置运行状态为空闲 // 重置全局脉冲计数器 - AllPulse = 0; + PartUpdatePluse = 0; FirstFlag = 0; // 重置静态变量,确保每次启动效果一致 @@ -1400,10 +1413,10 @@ uint8_t PLSR_Section_StartNewSection(PLSR_RouteConfig_t* route) PlsrRoute.initial_freq = PlsrRoute.current_freq; // 更新加减速初始频率 if(current_section->target_pulse > 0) - current_section->actual_pulse = TotalSePulse + current_section->target_pulse - PlsrTotalPulseCount; + current_section->actual_pulse = SectionUpdatePluse + current_section->target_pulse - PlsrTotalPulseCount; else - current_section->actual_pulse = TotalSePulse + (-current_section->target_pulse) - PlsrTotalPulseCount; - + current_section->actual_pulse = SectionUpdatePluse + (-current_section->target_pulse) - PlsrTotalPulseCount; + current_section->actual_pulse += 1; } else @@ -1719,13 +1732,12 @@ void PLSR_Section_SwitchNext(PLSR_RouteConfig_t* route, uint8_t is_pulse_complet // 脉冲完成触发:累加整个目标脉冲数 route->prevPulseCount += actual_total; - TotalSePulse += actual_total; } else { // 外部事件触发:直接使用全局脉冲计数器作为累计脉冲数 route->prevPulseCount = PlsrTotalPulseCount; - TotalSePulse = PlsrTotalPulseCount; + SectionUpdatePluse = PlsrTotalPulseCount; } } if(next_section_num == 0) @@ -2050,8 +2062,8 @@ void PLSR_TaskSectionSwitch(PLSR_RouteConfig_t* route) if (PLSR_Wait_CheckExtEvent(route)) { /*检查是否完成,在外部事件这种特殊情况下对脉冲数进行计数*/ - AllPulse += __HAL_TIM_GET_COUNTER(&htim2); // 累加当前段已发送的脉冲数 - TotalSePulse = AllPulse; + PartUpdatePluse += __HAL_TIM_GET_COUNTER(&htim2); // 累加当前段已发送的脉冲数 + SectionUpdatePluse = PartUpdatePluse; if(PLSR_Section_CheckPulseComplete(route)) { route->current_freq = 0; @@ -2059,8 +2071,8 @@ void PLSR_TaskSectionSwitch(PLSR_RouteConfig_t* route) } else { - AllPulse -= 1; - TotalSePulse -= 1; + PartUpdatePluse -= 1; + SectionUpdatePluse -= 1; } //PLSR_Route_PWM_Stop(); /* 检查当前段是否为最后一段 */ diff --git a/PLSR/PLSR/EWARM/test.1.dep b/PLSR/PLSR/EWARM/test.1.dep index 6e3247d..d648537 100644 --- a/PLSR/PLSR/EWARM/test.1.dep +++ b/PLSR/PLSR/EWARM/test.1.dep @@ -5,512 +5,493 @@ test.1 - $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$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c $PROJ_DIR$\..\Core\Src\gpio.c - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c + $PROJ_DIR$\startup_stm32f407xx.s + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.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$\..\Core\Src\system_stm32f4xx.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_rcc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.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$\..\UCOS\Config\app_hooks.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_ll_crc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.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_wwdg.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.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_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_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$\..\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\stm32f4xx_ll_rcc.o + $PROJ_DIR$\..\UCOS\Source\os_trace.h $PROJ_DIR$\test.1\Obj\flash_save.__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$\..\Drivers\CMSIS\Include\cmsis_version.h + $PROJ_DIR$\..\Core\Inc\dma.h + $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_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_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\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\app_hooks.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et - $PROJ_DIR$\..\UCOS\Source\ucos_ii.h - $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$\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 - $PROJ_DIR$\..\Core\Inc\dma.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et - $PROJ_DIR$\test.1\Obj\modbus_crc.o + $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_hal_msp.o - $TOOLKIT_DIR$\inc\c\math.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_tim_ex.h - $PROJ_DIR$\test.1\Obj\tools.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et - $PROJ_DIR$\test.1\List\test.1.map - $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 - $PROJ_DIR$\..\UCOS\Source\os_task.c + $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$\..\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\gpio.__cstat.et $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\stm32f4xx_ll_rng.o + $PROJ_DIR$\test.1\Obj\os_dbg.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$\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_ll_rng.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.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 + $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$\..\UCOS\Source\os_mbox.c + $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\stm32f4xx_ll_tim.o - $PROJ_DIR$\test.1\Exe\test.1.out - $PROJ_DIR$\..\UCOS\Source\os.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 - $TOOLKIT_DIR$\inc\c\stdlib.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o + $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 + $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_wwdg.__cstat.et - $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 + $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_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_hal_pwr_ex.o - $PROJ_DIR$\..\UCOS\Config\os_cfg.h - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h - $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_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\os_cpu_c.o $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\tim.__cstat.et - $PROJ_DIR$\test.1\Obj\os_dbg.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__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$\..\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_flash.__cstat.et + $TOOLKIT_DIR$\inc\c\ctype.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o + $PROJ_DIR$\test.1\Obj\modbus_log.o + $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 - $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$\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\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\gpio.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.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 + $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$\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\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$\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$\..\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$\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$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o $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$\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$\..\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$\..\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_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_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\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 + $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 + $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 [ROOT_NODE] ILINK - 136 87 + 235 184 - $PROJ_DIR$\..\Core\Src\modbus_log.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c ICCARM - 235 + 93 __cstat - 102 + 82 ICCARM - 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 + 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 - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c + $PROJ_DIR$\..\Core\Src\gpio.c ICCARM - 79 + 130 __cstat - 140 + 64 ICCARM - 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 + 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 - $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c ICCARM - 68 + 111 __cstat - 187 + 34 ICCARM - 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 + 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 - $PROJ_DIR$\..\Core\Src\tools.c + $PROJ_DIR$\startup_stm32f407xx.s - ICCARM - 63 - - - __cstat - 85 + AARM + 125 - - - ICCARM - 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$\..\Core\Src\dma.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c ICCARM - 213 + 185 __cstat - 168 + 223 ICCARM - 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 + 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 - $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Core\Src\tim.c ICCARM - 126 + 197 __cstat - 133 + 170 ICCARM - 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 + 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 - $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c ICCARM - 113 + 70 __cstat - 138 + 114 ICCARM - 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 + 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 - $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c ICCARM - 203 + 37 __cstat - 181 + 85 ICCARM - 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 + 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 - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c ICCARM - 107 + 33 __cstat - 233 + 232 ICCARM - 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 + 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 - $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c ICCARM - 164 + 116 __cstat - 171 + 201 ICCARM - 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 + 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 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + $PROJ_DIR$\..\Core\Src\modbus_crc.c ICCARM - 119 + 202 __cstat - 169 + 225 ICCARM - 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 + 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 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c ICCARM - 118 + 141 __cstat - 152 + 224 ICCARM - 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 + 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 - $PROJ_DIR$\startup_stm32f407xx.s - - - AARM - 230 - - - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\Core\Src\usart.c ICCARM - 94 + 183 __cstat - 104 + 92 ICCARM - 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 + 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 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c + $PROJ_DIR$\..\Core\Src\dma.c ICCARM @@ -518,94 +499,94 @@ __cstat - 157 + 50 ICCARM - 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 + 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 - $PROJ_DIR$\..\Core\Src\modbus_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c ICCARM - 77 + 146 __cstat - 195 + 119 ICCARM - 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 + 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 - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c ICCARM - 236 + 131 __cstat - 179 + 171 ICCARM - 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 + 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 - $PROJ_DIR$\..\Core\Src\flash_save.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c ICCARM - 117 + 35 __cstat - 50 + 90 ICCARM - 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 + 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 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + $PROJ_DIR$\..\Core\Src\tools.c ICCARM - 115 + 102 __cstat - 214 + 204 ICCARM - 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 + 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 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c ICCARM @@ -613,577 +594,596 @@ __cstat - 128 + 88 ICCARM - 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 + 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 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c ICCARM - 196 + 113 __cstat - 125 + 228 ICCARM - 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 + 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 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c ICCARM - 150 + 219 __cstat - 111 + 190 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c - + ICCARM - 183 - - - __cstat - 199 + 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 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c ICCARM - 165 + 107 __cstat - 201 + 236 + + + 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 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c ICCARM - 64 + 77 __cstat - 223 + 99 + + + 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 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + $PROJ_DIR$\..\Core\Src\modbus_log.c ICCARM - 135 + 123 __cstat - 153 + 65 + + + 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 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c ICCARM - 222 + 181 __cstat - 173 + 186 + + + 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 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + $PROJ_DIR$\..\Core\Src\main.c ICCARM - 98 + 55 __cstat - 151 + 194 ICCARM - 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 + 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 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + $PROJ_DIR$\..\Core\Src\flash_save.c ICCARM - 132 + 105 __cstat - 161 + 30 ICCARM - 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 + 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 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c ICCARM - 78 + 199 __cstat - 185 + 203 ICCARM - 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 + 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 - $PROJ_DIR$\..\UCOS\Config\app_hooks.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c ICCARM - 60 + 101 __cstat - 208 + 84 - + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c + ICCARM - 137 62 221 106 227 229 52 93 211 83 134 159 59 81 + 46 - + + __cstat + 59 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c ICCARM - 82 + 58 __cstat - 209 + 126 ICCARM - 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 + 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 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c ICCARM - 122 + 36 __cstat - 76 + 174 ICCARM - 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 + 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 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c ICCARM - 114 + 69 __cstat - 61 + 47 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c ICCARM - 116 + 112 __cstat - 193 + 44 ICCARM - 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 89 67 100 137 53 139 98 222 86 60 57 29 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c ICCARM - 224 + 192 __cstat - 190 + 124 - - - ICCARM - 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_wwdg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c ICCARM - 89 + 176 __cstat - 144 + 208 ICCARM - 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 + 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 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c ICCARM - 73 + 28 __cstat - 86 + 42 - - - ICCARM - 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_dac.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c ICCARM - 142 + 136 __cstat - 207 + 94 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c ICCARM - 147 + 122 __cstat - 166 + 207 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c ICCARM - 178 + 127 __cstat - 131 + 140 ICCARM - 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 + 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 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c ICCARM - 66 + 178 __cstat - 69 + 95 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + + + AARM + 61 + + + + + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c ICCARM - 163 + 66 __cstat - 170 + 80 ICCARM - 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 89 67 100 137 53 139 98 222 86 60 57 29 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c ICCARM - 105 + 104 __cstat - 198 + 214 + + + 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 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c ICCARM - 202 + 216 __cstat - 192 + 133 + + + 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 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c ICCARM - 158 + 87 __cstat - 156 + 218 ICCARM - 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 89 67 100 137 53 139 98 222 86 60 57 29 45 193 78 213 189 179 118 51 91 115 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c ICCARM - 155 + 68 __cstat - 216 + 198 - - - ICCARM - 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_ll_exti.c ICCARM - 141 + 138 __cstat - 54 + 229 - + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + ICCARM - 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 + 206 - + + __cstat + 75 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + $PROJ_DIR$\..\UCOS\Config\app_hooks.c ICCARM - 57 + 96 __cstat - 148 + 43 ICCARM - 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 + 39 205 89 67 100 137 53 139 98 222 86 60 57 29 - $PROJ_DIR$\test.1\Exe\test.1.out + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c - ILINK - 87 + ICCARM + 195 - OBJCOPY - 167 + __cstat + 49 - - - ILINK - 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 - - - $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c ICCARM - 172 + 209 __cstat - 191 + 237 ICCARM - 62 221 106 227 229 52 93 211 83 134 159 59 81 + 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 - $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c ICCARM - 176 + 62 __cstat - 56 + 40 ICCARM - 62 221 106 227 229 52 93 211 83 134 159 59 81 + 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 - $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm - - - AARM - 120 - - - - - $PROJ_DIR$\..\UCOS\Source\ucos_ii.c + $PROJ_DIR$\test.1\Exe\test.1.out - ICCARM - 225 + ILINK + 184 - __cstat - 49 + OBJCOPY + 210 - ICCARM - 62 221 106 227 229 52 93 211 83 134 159 59 81 65 108 110 123 210 206 174 95 130 146 + 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 diff --git a/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim b/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim index b49bbe34bbd04aa5d5b80d24465b3ce01f453d54..c5393405c0dd4e0028fd0d7e782c3ed788a04705 100644 GIT binary patch delta 4316 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 delta 4171 zcmZ8k4Rll09l!TAX42_P6s2A(Rrr-;!n!;oNq@pW90K^MHOE;SGQh81}gH zYeHXQtUn2D29Udh@cBRyPy$Q>rT|lca$p8f+tE0=;V6t-AmpH3hxTPv0sbo54&XIl z3$PW~0lW$91t!2|AKE_w{{Zhr`)8mJI0}3K90xw$(GkvUo(qeMkXq1whxQS)SJB=8 zZUPa2?!+_!BajFr16IHeEQftIS|^YTagx#8+XA8T zZcBuRu%t>AwnYMpmmQ^}9yuK$BK2|d$Z*|tGKXs?LL8t2^zGbUfpBuaGHj6;CIUe} zZC`{KoNNdW_tS8Ex24a~dnbAWqT6Z$3eTo;_OczZ5zY?&*#FDHVgJtuQ~PYa>$@Gd zvnz%F;h6yI;6|0Liuu1YsAir$H0-s1(2Z=$ueB9ZScF{mMVvkH1^70>cfl>+C*HqRGtF0u`3?-Ib5Se%)0t$( z;$0k2Guo^0sB|foRY%fLExJ#{Y-fZ8sr#z8uEej_H=vw0F|W=>KVn;SMR}r$ll6mS zG;ulvPW~XQ{(cSzBxY-?u*O`LuHCeN={lF?sv+_EJt-R`#y2fZ$ZJBpsT~1&gy)E$sy3Dcg$JlH7ywq)j>aZI! z+A19A*JCD~?4-WH-i9eG9(Y0vH0KA}IV?54z+MS$?Leib-EMEI$d37%+5Gq-dpLoU z#|}6(?J;O?MLx#1#uw=iK^wAE;4yfK(Sy1o)S^-0wPujY$hM$sChrX_7uB6>5^Fy4umJBShGzsJ~d)!Z;t+%G6px`qu=X zs-oIW@oJcK5%FngihqzwkuL+OO!Lh}HBPetZ?*D9vYLo-e$wUQ)!EiVb6C@y=6|f2 z3Qd=$IrtNe2+b-@)AkdMx*`)*4Ry0@qdm1XLFdjTbH^?p8Bj=ztBT5RvRY$KGl}$F zkXyXH6KbgJ8lZjN-V(4jFw4P!GNv$DYN^QhPpb6S%z(1pVU`?rvm4nsjH^k$9&_Yl zeL9R6&N541XPVs>SjbsM?Bi91snRZGv&BTR(o&?IN@uay*!c}rL7lKpG0|vf zfH}>R=#y-|IXf{S=5-+w4b`(2b4JN~LptR6u9oScAwepsZL3)5|5*)@W;_*8PAr-% zU9qE1tsg0(r<6oP&#~j?0_tTq%;O7us9sw|vabu{=)^>ydS)u^yeAqO7b%uRTd~_! zMdV2X(a-{w`9iS4dvHNkX~2ZP370jU>(Z#CiQ}s*`yI= z~|xq*87!wa{PdiIxAb0 zCgRCfeW$bIBc{^z%#f609T~CodDJ6ZxYXCF;FTpV^1Z>PB^5L~GI+Oo@z@-^M{Pan zygQ1v9T$~a{LAUX{c^0mjs>b|P%SUtW*2U=pvG{}7ZM>qX7`EK*NM^+G2WjcPIL)<;VdF(`e{aSVUiHG#c74=uyvxgSZIcT&3Dn3VhMf zxxr}Y7{0Sh7OIx_vB{R4l0(=pYU*iP%0eR%+`x9V)u!sT@$M2enm}AG?2JnGqNR+R zWn@PzBTemA-V+y8=hw)ZX+x|(Rz)zm|UzN#hyCHNF>)&s@4!( zB-K`^{qs|%&?BrP#hUbvvNkBLA>y-s^>Oqz>rMHNma<)`)95^QHucE|_DIxOjN;jE z>PfD(JgL|;tChOggVr4CV9#0e>2uj%vY>#2t=&sa?F zVP9lCK$BUKZOzPng(DY^CvT#J6CNOtgE9 zTRId&G9rSTy795vM95mC#xC1N(=L`|cNVRWHU@_m%;l#}0e9&eLwe$t)>Tj}+=F=c ztgF!Za2P zS+I)(cyKsZfqgv?JwH+#H%`pN8%Z5^zBcZj3IoPfGaw>|^P8e1XgL_P9MG5KQ&Y)_ zM$fCq`3%{d`Dp&;Ayiua2LEQv_Wi!DdiE5l7`wULHpPwG=!H`0BSl*ac^zAyxiFUv zj0g^e(uc4+gc9|J(S~0cQInWEI21Atak8HovYc}k4vp6KJ?9hG=*1D({X`yzQ8Ii~ z^O>pn6u{@JNMcac-U}`78;)3}X&um>(jE#|Cibk&YNGTl_Lbv*w7%!l>=qqO?3q8h zPfwTjSj8)pZeaRx`E*my_;C{q^k7e8$u2AR^&5<@9<4u!e`AmJjIVy$l(-hO9XR12 z!Y4iZ>+efS+zpY(B-O{2t;f(Xilfi;JTVMnu{59a7*9rd{;I1yhZ`(rn&+sqg7z{QWsKmdB zRX`0e6PN|e2Ic_uz&zj~V8Kpe;(rP9F!1P3CM-+0EdgBycz~6_34sWLx;1An6O1pR zV-?WWvwzto&N%)V!oLVS*0XCxkIC2pTJ|hN_N(VFp-T7tX1ze$d-}K4arzrbOW%{X vqnGAwL;ziVlwKpRq**8-8_X$mmK>L!h7u7faJ_kiFPy%M#qG-F+BW_l!mvDJ