From 9125c6375b5340b2bbe49c435ca1c1ca94c96f9d Mon Sep 17 00:00:00 2001 From: JIU JIALIN <2339061402@qq.com> Date: Fri, 22 Aug 2025 19:51: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=E5=AF=BC=E8=87=B4=E5=8D=A1=E9=A1=BF?= =?UTF-8?q?=E7=9A=84bug,=E4=B8=94=E8=A7=A3=E5=86=B3=E4=B8=B4=E6=97=B6?= =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=A2=91=E7=8E=87=E4=BC=9A=E5=87=BA=E7=8E=B0?= =?UTF-8?q?=E8=B7=AF=E5=BE=84=E4=B8=8D=E7=BB=93=E6=9D=9F=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98,=E5=BD=93=E5=89=8D=E5=AD=98=E5=9C=A8=E9=97=AE?= =?UTF-8?q?=E9=A2=98:=201.=20=E9=AB=98=E9=A2=91=E6=97=B6=E4=BC=9A=E5=AF=BC?= =?UTF-8?q?=E8=87=B4=E6=8F=90=E5=89=8D=E5=8A=A0=E9=80=9F=E6=88=96=E8=80=85?= =?UTF-8?q?=E5=87=8F=E9=80=9F=E5=88=B0=E7=9B=AE=E6=A0=87=E9=A2=91=E7=8E=87?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98,=202.=20=E4=B8=B4=E6=97=B6=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E9=A2=91=E7=8E=87=E4=BC=9A=E5=AF=BC=E8=87=B4=E8=84=89?= =?UTF-8?q?=E5=86=B2=E5=A4=9A=E5=8F=91=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PLSR/PLSR/Core/Src/tim.c | 52 +- PLSR/PLSR/EWARM/settings/test.1.dnx | 24 +- PLSR/PLSR/EWARM/test.1.dep | 1260 ++++++++++++------------- PLSR/PLSR/EWARM/test.1/Exe/test.1.sim | Bin 39542 -> 40245 bytes 4 files changed, 677 insertions(+), 659 deletions(-) diff --git a/PLSR/PLSR/Core/Src/tim.c b/PLSR/PLSR/Core/Src/tim.c index fd84e34..255b07a 100644 --- a/PLSR/PLSR/Core/Src/tim.c +++ b/PLSR/PLSR/Core/Src/tim.c @@ -741,14 +741,31 @@ void PLSR_PWM_Stop(void) } -/** - * @brief 计算定时器参数 - * @param frequency: 目标频率(Hz) - * @param prescaler: 预分频器值指针 - * @param period: 周期值指针 - * @retval None - * @note 根据目标频率计算TIM10的预分频器和周期值 - */ +// /** +// * @brief 计算定时器参数 +// * @param frequency: 目标频率(Hz) +// * @param prescaler: 预分频器值指针 +// * @param period: 周期值指针 +// * @retval None +// * @note 根据目标频率计算TIM10的预分频器和周期值 +// */ +// static void PLSR_CalculateTimerParams(uint32_t frequency, uint16_t* prescaler, uint32_t* period) +// { +// if (frequency < PLSR_PWM_FREQ_MIN) frequency = PLSR_PWM_FREQ_MIN; +// if (frequency > PLSR_PWM_FREQ_MAX) frequency = PLSR_PWM_FREQ_MAX; +// uint32_t psc; uint32_t arr; uint32_t f = frequency; +// // PLSR_Calc_TimerParams((uint32_t)(f_hz + 0.5f), &psc, &arr); +// uint32_t timer_clock = 168000000; +// psc = 1; +// while (timer_clock / (psc + 1) / f > 65535) +// { +// psc++; if (psc > 0XFFFF) psc = 0XFFFF; +// } +// arr = (timer_clock / (psc + 1)) / f - 1; +// if (arr < 2) arr = 2; +// *prescaler = psc; +// *period = arr; +// } static void PLSR_CalculateTimerParams(uint32_t frequency, uint16_t* prescaler, uint32_t* period) { if (frequency < PLSR_PWM_FREQ_MIN) frequency = PLSR_PWM_FREQ_MIN; @@ -757,6 +774,7 @@ static void PLSR_CalculateTimerParams(uint32_t frequency, uint16_t* prescaler, u const uint32_t timer_clock = 168000000UL; // 定时器时钟 uint32_t divider = (timer_clock + frequency / 2) / frequency; // 四舍五入 + if (divider > 0xFFFFFFFF) divider = 0xFFFFFFFF; // 防止溢出 if (divider < 2) divider = 2; // 至少 2 // 限制 ARR <= 65535 @@ -772,6 +790,7 @@ static void PLSR_CalculateTimerParams(uint32_t frequency, uint16_t* prescaler, u } + /** * @brief 设置PWM频率 * @param frequency: PWM频率 (1Hz-100kHz) @@ -1536,10 +1555,11 @@ void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) (((uint32_t)ModbusSlave.holding_regs[256+(16*(g_plsr_route.current_section_num-1))]) | (uint32_t)ModbusSlave.holding_regs[257+(16*(g_plsr_route.current_section_num-1))]<<16); - if(g_plsr_route.section[g_plsr_route.current_section_num-1].target_freq != g_plsr_current_target_freq) + if((g_plsr_route.section[g_plsr_route.current_section_num-1].target_freq != g_plsr_current_target_freq) + && g_plsr_route.route_state == PLSR_ROUTE_RUNNING) { PLSR_PWM_Stop(); - AllPluse += current_tim2_count; // 累加当前段已发送的脉冲数 + AllPluse += __HAL_TIM_GET_COUNTER(&htim2); // 累加当前段已发送的脉冲数 PLSR_Section_StartNewSection(&g_plsr_route); ///<重新启动当前段 } @@ -2489,14 +2509,12 @@ void PLSR_Accel_Process(PLSR_RouteConfig_t* route) if (calculated_freq <= route->target_freq) { calculated_freq = route->target_freq; // 限制到目标频率 - - // 如果目标频率为0,说明减速到停止 - if (route->target_freq == 0) + if(route->target_freq == 0) { - route->run_state = PLSR_STATE_IDLE; // 切换到空闲状态 - PLSR_PWM_Stop(); // 停止PWM输出 - return; - } + PLSR_HandleSectionEnd(); // 处理段结束逻辑 + // 如果目标频率为0,停止PWM输出 + PLSR_PWM_Stop(); + } } // 只有当计算出的频率与当前频率不同时才更新PWM频率 diff --git a/PLSR/PLSR/EWARM/settings/test.1.dnx b/PLSR/PLSR/EWARM/settings/test.1.dnx index cb8a92a..c4e955d 100644 --- a/PLSR/PLSR/EWARM/settings/test.1.dnx +++ b/PLSR/PLSR/EWARM/settings/test.1.dnx @@ -14,10 +14,10 @@ 46232557 - 0 - 2 _ 0 _ 0 + 0 + 2 3785312791 @@ -84,6 +84,13 @@ _ "" _ 0 + + 0 + + + 0 + 0 + 0 0 @@ -129,6 +136,9 @@ 1 0 + + 0 + 0 3 @@ -142,14 +152,4 @@ 1 - - 0 - - - 0 - - - 0 - 0 - diff --git a/PLSR/PLSR/EWARM/test.1.dep b/PLSR/PLSR/EWARM/test.1.dep index 86f4d05..6f30f02 100644 --- a/PLSR/PLSR/EWARM/test.1.dep +++ b/PLSR/PLSR/EWARM/test.1.dep @@ -5,319 +5,328 @@ test.1 - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c + $PROJ_DIR$\startup_stm32f407xx.s + $PROJ_DIR$\..\Core\Src\flash_save.c $PROJ_DIR$\..\Core\Src\main.c - $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c + $PROJ_DIR$\..\Core\Src\modbus_crc.c + $PROJ_DIR$\..\Core\Src\modbus_log.c $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c $PROJ_DIR$\..\Core\Src\dma.c $PROJ_DIR$\..\Core\Src\gpio.c - $PROJ_DIR$\..\Core\Src\flash_save.c - $PROJ_DIR$\startup_stm32f407xx.s - $PROJ_DIR$\..\Core\Src\modbus_crc.c - $PROJ_DIR$\..\Core\Src\modbus_log.c $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c - $PROJ_DIR$\..\Core\Src\usart.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.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_gpio.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et - $PROJ_DIR$\stm32f407xx_flash.icf - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o - $PROJ_DIR$\test.1\Obj\flash_save.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.xcl + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.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$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.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_ll_dac.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c + $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_hal_flash_ex.c + $PROJ_DIR$\..\UCOS\Source\os_task.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o + $PROJ_DIR$\..\UCOS\Config\app_cfg.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.xcl + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.xcl + $PROJ_DIR$\..\UCOS\Config\os_cfg.h + $PROJ_DIR$\test.1\Obj\os_cpu_c.o $PROJ_DIR$\test.1\Obj\os_dbg.xcl - $PROJ_DIR$\test.1\Obj\app_hooks.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.xcl + $PROJ_DIR$\test.1\Obj\tim.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_flag.c + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_float_setup.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.xcl $PROJ_DIR$\test.1\Obj\gpio.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.xcl - $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et - $PROJ_DIR$\test.1\Obj\gpio.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.xcl - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o - $PROJ_DIR$\test.1\Exe\test.1.hex - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\os_cpu_c.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o - $TOOLKIT_DIR$\lib\shb_l.a - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o - $PROJ_DIR$\test.1\Obj\usart.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.xcl - $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.xcl - $TOOLKIT_DIR$\lib\rt7M_tl.a - $TOOLKIT_DIR$\lib\dl7M_tlf.a - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o - $PROJ_DIR$\test.1\Obj\main.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\os_cpu_a.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o - $PROJ_DIR$\test.1\Obj\main.__cstat.et - $TOOLKIT_DIR$\lib\m7M_tls.a - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o - $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et - $PROJ_DIR$\test.1\Obj\app_hooks.xcl - $PROJ_DIR$\test.1\Obj\ucos_ii.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o - $PROJ_DIR$\test.1\Obj\os_dbg.o - $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et - $PROJ_DIR$\test.1\Obj\modbus_log.o - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.xcl - $PROJ_DIR$\..\UCOS\Source\os_trace.h - $PROJ_DIR$\..\UCOS\Config\app_cfg.h - $PROJ_DIR$\..\Core\Inc\main.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h + $PROJ_DIR$\test.1\Obj\ucos_ii.xcl $PROJ_DIR$\test.1\Obj\modbus_crc.xcl - $TOOLKIT_DIR$\inc\c\stdint.h - $TOOLKIT_DIR$\inc\c\DLib_Product.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.xcl + $PROJ_DIR$\test.1\Obj\dma.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et + $PROJ_DIR$\..\Core\Inc\dma.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h + $PROJ_DIR$\..\Core\Inc\modbus_crc.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_mbox.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h $TOOLKIT_DIR$\inc\c\iccarm_builtin.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h - $PROJ_DIR$\..\Core\Inc\gpio.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et - $TOOLKIT_DIR$\inc\c\ycheck.h - $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et - $PROJ_DIR$\test.1\Obj\usart.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o - $PROJ_DIR$\..\UCOS\Source\ucos_ii.h - $TOOLKIT_DIR$\inc\c\ysizet.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h - $PROJ_DIR$\..\UCOS\Source\os.h - $TOOLKIT_DIR$\inc\c\stdarg.h - $PROJ_DIR$\..\Core\Inc\dma.h - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.xcl $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et - $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et - $PROJ_DIR$\test.1\Obj\ucos_ii.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et - $TOOLKIT_DIR$\inc\c\yvals.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.xcl $PROJ_DIR$\test.1\Obj\stm32f4xx_it.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et - $PROJ_DIR$\test.1\Obj\os_cpu_c.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.xcl - $PROJ_DIR$\test.1\Obj\modbus_crc.o - $PROJ_DIR$\test.1\Obj\dma.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.xcl - $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.xcl - $PROJ_DIR$\test.1\Obj\gpio.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o - $PROJ_DIR$\test.1\Obj\usart.__cstat.et - $PROJ_DIR$\test.1\Obj\main.o - $PROJ_DIR$\..\UCOS\Config\os_cfg.h + $PROJ_DIR$\test.1\Obj\os_cpu_a.o + $PROJ_DIR$\test.1\Obj\dma.__cstat.et + $PROJ_DIR$\test.1\Obj\tim.o + $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h + $PROJ_DIR$\..\UCOS\Source\os_mem.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o $TOOLKIT_DIR$\inc\c\stdlib.h - $PROJ_DIR$\..\UCOS\Source\os_core.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h - $TOOLKIT_DIR$\inc\c\ctype.h - $PROJ_DIR$\..\UCOS\Source\os_sem.c - $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $TOOLKIT_DIR$\inc\c\stdio.h - $PROJ_DIR$\..\UCOS\Source\os_mbox.c - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h - $PROJ_DIR$\..\UCOS\Source\os_time.c - $PROJ_DIR$\..\Core\Inc\modbus_log.h - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h - $TOOLKIT_DIR$\inc\c\stddef.h - $PROJ_DIR$\..\Core\Inc\tim.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h + $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.xcl + $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et + $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h - $PROJ_DIR$\..\UCOS\Ports\os_cpu.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et + $PROJ_DIR$\test.1\List\test.1.map + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h - $PROJ_DIR$\..\UCOS\Source\os_q.c - $PROJ_DIR$\..\UCOS\Source\os_task.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h - $PROJ_DIR$\..\UCOS\Source\os_flag.c - $PROJ_DIR$\..\UCOS\Source\os_tmr.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h - $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h - $PROJ_DIR$\..\Core\Inc\usart.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h - $PROJ_DIR$\..\UCOS\Source\os_mem.c + $PROJ_DIR$\test.1\Obj\modbus_log.xcl + $TOOLKIT_DIR$\lib\m7M_tls.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.xcl + $TOOLKIT_DIR$\inc\c\stdint.h + $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et + $PROJ_DIR$\test.1\Obj\usart.o + $PROJ_DIR$\..\UCOS\Source\os.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et $TOOLKIT_DIR$\inc\c\string.h - $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h - $PROJ_DIR$\..\UCOS\Source\os_mutex.c - $TOOLKIT_DIR$\inc\c\math.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h - $PROJ_DIR$\..\Core\Inc\modbus_crc.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h - $PROJ_DIR$\..\Core\Inc\flash_save.h - $TOOLKIT_DIR$\inc\c\DLib_float_setup.h - $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $TOOLKIT_DIR$\inc\c\stddef.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et + $TOOLKIT_DIR$\lib\shb_l.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o + $PROJ_DIR$\..\Core\Inc\tim.h + $TOOLKIT_DIR$\inc\c\math.h + $PROJ_DIR$\test.1\Obj\usart.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o + $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et + $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et + $TOOLKIT_DIR$\lib\rt7M_tl.a + $PROJ_DIR$\..\UCOS\Ports\os_cpu.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o + $PROJ_DIR$\test.1\Obj\main.xcl + $PROJ_DIR$\test.1\Exe\test.1.out + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o + $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h + $PROJ_DIR$\..\Core\Inc\main.h $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.xcl + $PROJ_DIR$\test.1\Obj\main.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o + $TOOLKIT_DIR$\lib\dl7M_tlf.a + $PROJ_DIR$\..\Core\Inc\gpio.h $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.xcl $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et - $PROJ_DIR$\test.1\Obj\tim.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o - $PROJ_DIR$\test.1\Obj\dma.xcl + $TOOLKIT_DIR$\inc\c\yvals.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o + $PROJ_DIR$\test.1\Exe\test.1.hex + $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o + $PROJ_DIR$\test.1\Obj\gpio.o + $PROJ_DIR$\..\UCOS\Source\ucos_ii.h + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.xcl + $PROJ_DIR$\test.1\Obj\usart.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o + $TOOLKIT_DIR$\inc\c\ycheck.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.xcl + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h + $PROJ_DIR$\..\Core\Inc\modbus_log.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.xcl + $PROJ_DIR$\test.1\Obj\flash_save.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.xcl $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.xcl + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.xcl + $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o + $PROJ_DIR$\test.1\Obj\main.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et + $PROJ_DIR$\test.1\Obj\modbus_crc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.xcl + $PROJ_DIR$\..\UCOS\Source\os_time.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_mutex.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_trace.h + $PROJ_DIR$\test.1\Obj\flash_save.o + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_q.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.xcl + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.xcl - $PROJ_DIR$\test.1\Obj\flash_save.xcl - $PROJ_DIR$\test.1\List\test.1.map - $PROJ_DIR$\test.1\Obj\modbus_log.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o - $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.xcl - $PROJ_DIR$\test.1\Exe\test.1.out - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et - $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm - $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $PROJ_DIR$\test.1\Obj\os_dbg.o $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.xcl + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o - $PROJ_DIR$\test.1\Obj\tim.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et + $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h + $TOOLKIT_DIR$\inc\c\DLib_Product.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.xcl $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.xcl - $PROJ_DIR$\test.1\Obj\tim.o - $PROJ_DIR$\test.1\Obj\dma.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o - $PROJ_DIR$\..\UCOS\Source\ucos_ii.c + $TOOLKIT_DIR$\inc\c\ctype.h + $PROJ_DIR$\..\UCOS\Source\os_core.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\stm32f407xx_flash.icf + $PROJ_DIR$\..\Core\Inc\usart.h + $PROJ_DIR$\test.1\Obj\dma.o $PROJ_DIR$\..\UCOS\Config\app_hooks.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o + $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_sem.c + $PROJ_DIR$\test.1\Obj\tim.__cstat.et + $PROJ_DIR$\test.1\Obj\os_cpu_c.xcl + $PROJ_DIR$\test.1\Obj\gpio.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.xcl + $PROJ_DIR$\test.1\Obj\app_hooks.xcl + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h + $PROJ_DIR$\test.1\Obj\ucos_ii.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.xcl + $PROJ_DIR$\test.1\Obj\modbus_log.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et + $TOOLKIT_DIR$\inc\c\stdio.h + $PROJ_DIR$\..\UCOS\Source\os_tmr.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o + $PROJ_DIR$\..\Core\Inc\flash_save.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o - $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o + $PROJ_DIR$\test.1\Obj\app_hooks.o + $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.__cstat.et + $TOOLKIT_DIR$\inc\c\ysizet.h [ROOT_NODE] ILINK - 245 235 + 161 113 - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c + $PROJ_DIR$\startup_stm32f407xx.s - ICCARM - 60 + AARM + 105 + + + + $PROJ_DIR$\..\Core\Src\flash_save.c + __cstat - 104 + 251 + + + ICCARM + 217 BICOMP - 106 + 196 ICCARM - 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 132 119 190 117 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 269 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 248 166 266 134 199 244 101 201 150 78 192 145 146 63 182 47 54 155 216 @@ -325,192 +334,183 @@ $PROJ_DIR$\..\Core\Src\main.c - ICCARM - 169 + __cstat + 203 - __cstat - 91 + ICCARM + 169 BICOMP - 80 + 160 ICCARM - 109 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 120 188 204 179 207 217 176 171 203 135 212 215 183 210 216 130 108 170 192 107 136 + 166 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 173 145 248 266 134 199 244 101 201 150 78 269 192 146 63 182 47 54 155 216 74 - $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c + $PROJ_DIR$\..\Core\Src\modbus_crc.c - ICCARM - 241 + __cstat + 104 - __cstat - 83 + ICCARM + 205 BICOMP - 153 + 70 ICCARM - 109 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 208 130 108 135 179 170 192 107 + 78 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 240 87 116 239 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 - $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Core\Src\modbus_log.c - ICCARM - 269 + __cstat + 102 - __cstat - 264 + ICCARM + 261 BICOMP - 225 + 118 ICCARM - 188 109 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 204 179 207 217 176 171 203 135 212 215 183 210 216 130 108 170 192 107 + 192 248 166 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 266 134 199 244 101 201 150 78 269 145 146 63 182 47 54 155 216 - $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Core\Src\tim.c - ICCARM - 161 + __cstat + 253 - __cstat - 270 + ICCARM + 96 BICOMP - 229 + 58 ICCARM - 136 109 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 145 166 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 248 266 134 199 244 101 201 150 78 269 192 146 63 182 47 54 155 216 - $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Core\Src\usart.c - ICCARM - 165 + __cstat + 147 - __cstat - 58 + ICCARM + 123 BICOMP - 55 + 185 ICCARM - 120 109 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 188 204 179 207 217 176 171 203 135 212 215 183 210 216 130 108 170 192 107 + 248 166 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 266 134 199 244 101 201 150 78 269 192 145 146 63 182 47 54 155 216 - $PROJ_DIR$\..\Core\Src\flash_save.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c - - ICCARM - 51 - __cstat - 69 - - - BICOMP - 234 + 61 - - ICCARM - 215 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 204 109 179 207 217 176 171 203 135 212 183 188 210 216 130 108 170 192 107 + 171 - - - - $PROJ_DIR$\startup_stm32f407xx.s - - AARM - 240 + BICOMP + 49 + + + ICCARM + 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 240 87 116 239 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 + + - $PROJ_DIR$\..\Core\Src\modbus_crc.c + $PROJ_DIR$\..\Core\Src\dma.c - ICCARM - 160 + __cstat + 95 - __cstat - 94 + ICCARM + 249 BICOMP - 111 + 72 ICCARM - 212 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 132 119 190 117 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 74 166 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 - $PROJ_DIR$\..\Core\Src\modbus_log.c + $PROJ_DIR$\..\Core\Src\gpio.c - ICCARM - 105 + __cstat + 255 - __cstat - 57 + ICCARM + 181 BICOMP - 236 + 65 ICCARM - 183 204 109 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 179 207 217 176 171 203 135 212 215 188 210 216 130 108 170 192 107 + 173 166 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 145 248 266 134 199 244 101 201 150 78 269 192 146 63 182 47 54 155 216 @@ -518,22 +518,22 @@ $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c - ICCARM - 49 + __cstat + 222 - __cstat - 279 + ICCARM + 91 BICOMP - 68 + 184 ICCARM - 109 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 166 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 @@ -541,108 +541,114 @@ $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c - ICCARM - 238 + __cstat + 79 - __cstat - 246 + ICCARM + 81 BICOMP - 268 + 243 ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 - $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c - ICCARM - 67 + __cstat + 235 - __cstat - 168 + ICCARM + 144 BICOMP - 127 + 90 ICCARM - 204 109 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 179 207 217 176 171 203 135 212 215 183 188 210 216 130 108 170 192 107 + 166 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 97 182 47 150 266 54 155 216 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c - ICCARM - 66 + __cstat + 73 - __cstat - 222 + ICCARM + 83 BICOMP - 118 + 99 + + + ICCARM + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c - ICCARM - 149 + __cstat + 194 - __cstat - 144 + ICCARM + 159 BICOMP - 158 + 53 ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c - ICCARM - 228 + __cstat + 51 - __cstat - 251 + ICCARM + 132 BICOMP - 128 + 200 ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 @@ -650,686 +656,680 @@ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c - ICCARM - 79 + __cstat + 274 - __cstat - 255 + ICCARM + 268 BICOMP - 72 + 156 ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c - ICCARM - 143 + __cstat + 112 - __cstat - 62 + ICCARM + 76 BICOMP - 156 + 120 ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c - ICCARM - 70 + __cstat + 130 - __cstat - 274 + ICCARM + 180 BICOMP - 147 + 64 ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c - ICCARM - 276 + __cstat + 186 - __cstat - 166 + ICCARM + 107 BICOMP - 231 + 88 ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c - ICCARM - 271 + __cstat + 125 - __cstat - 88 + ICCARM + 271 BICOMP - 227 + 75 ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c - ICCARM - 115 + __cstat + 215 - __cstat - 87 + ICCARM + 126 BICOMP - 244 + 168 ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c - ICCARM - 267 + __cstat + 89 - __cstat - 157 + ICCARM + 141 BICOMP - 254 + 50 - - - ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c - ICCARM - 247 + __cstat + 152 - __cstat - 81 + ICCARM + 115 BICOMP - 73 + 220 - - - ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c - ICCARM - 90 + __cstat + 281 - __cstat - 48 + ICCARM + 86 BICOMP - 59 + 232 ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 - $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 - 223 + __cstat + 209 - __cstat - 281 + ICCARM + 66 BICOMP - 250 + 48 ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c - ICCARM - 146 + __cstat + 162 - __cstat - 278 + ICCARM + 275 BICOMP - 52 + 57 ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c - ICCARM - 239 + __cstat + 139 - __cstat - 78 + ICCARM + 46 BICOMP - 262 + 190 - - - ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c - ICCARM - 282 + __cstat + 59 - __cstat - 150 + ICCARM + 188 BICOMP - 164 + 273 - - - ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c - ICCARM - 142 + __cstat + 92 - __cstat - 237 + ICCARM + 234 BICOMP - 71 + 195 - - - ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c - - ICCARM - 50 - __cstat - 101 + 68 + + + ICCARM + 163 BICOMP - 230 + 198 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c - ICCARM - 121 + __cstat + 62 - __cstat - 76 + ICCARM + 202 BICOMP - 97 + 256 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c - ICCARM - 280 + __cstat + 114 - __cstat - 249 + ICCARM + 67 BICOMP - 221 + 211 ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c - ICCARM - 232 + __cstat + 280 - __cstat - 103 + ICCARM + 109 BICOMP - 220 + 221 ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c - ICCARM - 167 + __cstat + 204 - __cstat - 154 + ICCARM + 262 BICOMP - 159 + 270 ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c - ICCARM - 275 + __cstat + 129 - __cstat - 102 + ICCARM + 170 BICOMP - 162 + 260 ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c - ICCARM - 248 + __cstat + 210 - __cstat - 139 + ICCARM + 264 BICOMP - 242 + 224 + + + ICCARM + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c - ICCARM - 266 + __cstat + 108 - __cstat - 243 + ICCARM + 100 BICOMP - 56 + 71 + + + ICCARM + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c - ICCARM - 64 + __cstat + 106 - __cstat - 122 + ICCARM + 148 BICOMP - 86 + 93 ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c - ICCARM - 263 + __cstat + 153 - __cstat - 47 + ICCARM + 45 BICOMP - 85 + 142 - - - ICCARM - 132 119 190 117 184 137 110 112 123 145 178 124 113 181 189 133 116 202 201 191 187 131 186 219 197 173 200 213 193 205 211 214 218 175 196 174 185 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c - ICCARM - 82 + __cstat + 175 - __cstat - 125 + ICCARM + 158 BICOMP - 151 + 242 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c - ICCARM - 84 + __cstat + 213 - __cstat - 224 + ICCARM + 228 BICOMP - 46 + 143 + + + ICCARM + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c - ICCARM - 148 + __cstat + 265 - __cstat - 260 + ICCARM + 206 BICOMP - 261 + 103 + + + ICCARM + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c - ICCARM - 93 + __cstat + 133 - __cstat - 226 + ICCARM + 177 BICOMP - 77 + 127 + + + ICCARM + 240 87 116 239 208 191 135 121 189 176 218 219 241 258 151 225 85 179 183 110 137 282 165 174 187 52 84 136 117 82 263 111 167 227 193 77 272 + + $PROJ_DIR$\test.1\Exe\test.1.out OBJCOPY - 61 + 178 ILINK - 235 + 113 ILINK - 45 54 161 51 165 169 160 105 89 155 99 240 70 64 280 247 271 149 263 143 115 146 228 79 49 267 276 90 223 239 142 232 238 282 167 275 241 50 266 121 248 82 84 93 148 66 114 98 129 60 269 96 67 65 74 92 75 + 247 276 249 217 181 169 205 261 94 55 230 105 86 67 83 76 66 159 180 177 170 132 109 268 91 262 275 107 271 264 100 228 81 148 126 206 144 163 45 234 141 115 46 188 202 158 131 207 279 171 96 259 123 140 154 119 172 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm - ICCARM - 114 + AARM + 94 + + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + __cstat - 126 + 237 - BICOMP - 138 + ICCARM + 131 - - - - $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm - - AARM - 89 + BICOMP + 197 - $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c - ICCARM - 155 + __cstat + 149 - __cstat - 163 + ICCARM + 230 BICOMP - 63 + 56 ICCARM - 130 108 135 179 123 145 178 124 113 131 170 192 107 + 182 47 150 266 189 176 218 219 241 282 54 155 216 - $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c - ICCARM - 99 + __cstat + 277 - __cstat - 100 + ICCARM + 259 BICOMP - 53 + 69 ICCARM - 130 108 135 179 123 145 178 124 113 131 170 192 107 + 182 47 150 266 189 176 218 219 241 282 54 155 216 245 60 80 98 214 223 252 44 212 267 @@ -1337,79 +1337,79 @@ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c - ICCARM - 98 + __cstat + 128 - __cstat - 252 + ICCARM + 207 BICOMP - 152 + 278 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c - ICCARM - 129 + __cstat + 122 - __cstat - 44 + ICCARM + 55 BICOMP - 233 + 254 + + + ICCARM + 182 47 150 266 189 176 218 219 241 282 54 155 216 + + - $PROJ_DIR$\..\UCOS\Source\ucos_ii.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c - ICCARM - 96 + __cstat + 138 - __cstat - 140 + ICCARM + 279 BICOMP - 141 + 157 - - - ICCARM - 130 108 135 179 123 145 178 124 113 131 170 192 107 172 198 180 206 209 194 177 195 182 199 - - $PROJ_DIR$\..\UCOS\Config\app_hooks.c - ICCARM - 54 + __cstat + 164 - __cstat - 277 + ICCARM + 276 BICOMP - 95 + 257 ICCARM - 134 130 108 135 179 123 145 178 124 113 131 170 192 107 + 124 182 47 150 266 189 176 218 219 241 282 54 155 216 diff --git a/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim b/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim index 2326973149508ceed6adb27cfb7021722b618d26..45526c18f947f615db942ef28ce95767875d34fd 100644 GIT binary patch delta 7985 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 T@y_WL7{piEk delta 7155 zcma)>3wTt;*~i~Gdpo(1Y(mK0aFT%8v;l)yx+ukEg%A)S+yoS1x#@x+i=akCcR|E} zSXV|gL9o#WDO%J>h!3@-MyoBgXg8piaxse{0fX%U(LKrDzWe;-mWcpP<~1Y1D^*a4mgFM^lAE8ul6epkR;KQa%f(c(v`QhS?uqm9lHz6RmvOSOfTVsH zopgz6BtL!~20tlAVDd{ZDI}?NJ-uZPL`fm&nSU{iNa`EWUVT&4++=MnZ28{&@_2`~ zeJrpjuBnR4MM|T~aj~;9=<+Fz^MnJhigvF;!(0Bt=;nmc4bi@>xh;=26<+pvOq}N$ zM&vW~o`lb{qQZ+Jt=EewQGS;pf53g+y^juLlDeo{hHF2z6OQpchLSv{+7osPQIx5t z5>Ng3Tw~sV>k?*+x|#C-#mrkVKEOC2Hxlb@FBlOW+!u)iJ)# zR3T4{4a0*g#@{dvmWRgj@GvIE&zm+#&qVnu^9a-S6iGGn7W4JynUGG0d5_s)&Vu-M zm^&;E^Pyx(eJ;#5SQN{Y7;Ej&cJfy&bJ=L#M_%MLQHN$+#!6=wz7f83Xw=rUyE-rAdAbgJ&}ZBwI26S}tQZ^Qc_Fhb1ZOMqRo) z$(A)b)#w^XQ?FcJ)S(^lIjWfY_XvMAsbucqSnFAJt*@n|nyE`7tku_|K-vq*y01gq zT#?~k>&!XU*Zrsb4sCs5s=F{R)zzV$C`_uQaub?An$Q`89oiwtr}I-?R+MNfOmd?s zepPaggUIbAWg+MQ9Q+G>UVSXv~PNdtN%8MqZt8zb8>#7>_UJetpezV#$`2w*?mwM(?siZo?4_EyGWy(__eW-6J z8&V+sKkJty>Ra^sM*dh@dQv~4ih_VtzmLD3-Z#tmlQttg{Qb22!CA!Wtz9W3`{jB= zL!C42n4v+gPs%qwNfo4)tu;1Gy0qFe>W0_Dm(*lGkELCivdcN^@UF0#eQ?gouSy@( zFKy$=bJo(6=hB!pch;y6&ZV-G=TiBK^nO22W%1DcQD4>QF?6`GYIId&fu*4-d_i6J zgAp;;KU|gYvh=53-r2+ab1)v$6D_9k&h$YyrJ}`Dy~W3z*Bxa?);aBmMf+>3pl84D zqNM7oc&HdHHzr!HERgkEXLp#vnNx65-c0g|L^ADHF`Tnzn$9lGMm)? zo;IS%5)@Ac8*86gMeyS60%N^xA***UJbS03=cZVFdaAO&!p^j8Q_q}d)3vq2}}D4 zUrUFUn#uziSF>xlA@izHq%MiGR?3nbH7iLObWR;*L^Dkne3Kk%qc0u`^mJ&x**5o| zmmp1H?iINV>v`1!%sqS_x#OYN_ zzUi)X+j1*ijw(|B-Cd6%VKzfRqz1edp*;~1vG4f}j2eLlVHYuu&&ryW{&`Fa+7zaq ziHUtl;csWPUQMeF$yO1XD}ELrMe$H#-$o=uuh(nkBoI;;*UXrJQp;@4fQaW6aR!t7v?b*7G%j|z8W;B(wWD;0b~;B! z=Z{)wan3l|C5&Ix;-Qbb5oTplua7--c?U=j$VUve%s@_%iaRtpg(j)NScd+9D5)Nc zrRcJjOzKB5lP;@}Ka9mYt*u10h{@A{UGHZ(M)8kmXcroqIn#z_XT*4Iwqn_tFMF6` z;lIhw$&BR6t|6#;5}wXP)zicS*;#BY{~~*!JR+IZ#>>qCo|;pXnu}V7py-b^pAX9! zf9=5}ral+R3p%R~@Abjm{dj&llA%9Oy5w7dtreQbBXUAR&^!gr`UrnBCqI>`zPJ=@ z+|1N9aURSm^6t}z>5$2<+3>E-?Jr>t*^|hflz+~Z8Qkq=Hp_9L+i51ZV~NmOf-kwp zIbrp(rW{*GJTxk9rb?_>vRUx1#raIUjtO};Z=KW7 zu4JO(13hbkwg<^}Z@VzFia(M2l@#sf59N*gm9<|IR)!0;jRBWC7FrOGg^ug<>w&OB zu~2*1)9Tk|T8-t?0wQJQ#=wn74CU7ZijIus-FXES`?KD;GsS&u{yTTR@A7NaR-b0K zzP)s<>$;#+>_d%@I@wZI-sd>>?JPbrKfC72ph3@gt8-K$V_}wasW9PODol*mO^jN$ z)|C-7>Lp+9>`ixdV(7A1i73lT-gk)x>{kBke7m&N%n#-({a%X}=|L?8(MQ7E75#mY zNAvr85B1pep<@A$+vU2@I_TWjlOAjOZo435_^E9gvx<#4S>K2){tj)SLA(;PpKzMp zp;cmAHU`Yknd=>e2EP|k379L?oUvTCf`M=9%6|C$sc@quB zViv+)Q`Xyq(*NuMc3Zmwu2K5n;~@gBxM60R}}+O3{;{=*dv{KW2xs7`=JQS%lvFxY~cI#n$Jq z=rSan;BW%nDn6L!kZ&5F;liva^*be;kq?ww>2DfMg=%-H)rEd59a{a+d=I7vBtN7+ z`j#m6y;TTRBH~lUN~}g)QQFx+m>t-m)f!msQ<`0Q61&Je_bC?@4;|0<_g4(|XbnH! zzkhaF^!gwQAjIUivtlvt?~R#>4_305WJJZ(XSOTbh0W4HEVM47=!Ffo!gkUN&p_cu zcat;uNTXXwIJ&os{lkt)@@yn2=yGpxngh4Hgat{D6lWqH1Xyuao(-?XS$UzCZ&$AM z-V~UpA83tON7f6oO|}P_tsf!}sk?9`N)J3fF4_HfwOCo}a+A>!;p=O-u*E|YB24u} z2I;ODZRPE*%Yn>zM6Bjm=(3O!a_e8`p* zaMlhe9)AOMNo@9zj0;&3l}=sh8Eb7Roj|y$ZQ_3`Dezv=!*H86(vm7F&O!Gi_1W$n z2n=NVrah}V9#Uf$I>l{5+$6*;!UI0V_9V6_DwG^zo3cXg070+@&)=N_PC*uPLyY#P zNPR%em-%0(m(2gVztfRx<%>$2rODmR`2*%KHlg|cfxl(x_eV_Vm!#es5x=YWRb^%A za}v5+b=@q!2)Y{*I)|TXhP8mWy@NuAv-sSia-Jrjyhluwy**iwnJ(|?L1F(LeAzE@*nIx{ z;=cToLAIn(`UeS8o4I9h|FTm3YEJ5Jv`lYXtfm^-l&Q>`bI z9KrV-O1^BbF7|mRl~G^{DGs~jAP+h4#Ym}HMoL~W$$^_m3Ea{Gw(Ub+rjmi7mlcRcW6yH;=9%}QKpbO0_S@TZ`w%uyMDz+ z(a`vAZk{nmdO6N-pD`i%b$xk6LuGM(V8+!WdEzlC{^Ei?3$W&juZ0`^yT$L2ZYnVr zS3%0@7Qf~C^FT=H-Qu^nn^(-tm4-xk)l8eDM!09@Qt7z}|8(ZH*^;`ThbcDC)wE^r zxGEg4OiV3}@WHbNNY)6SHfyjk8cNpqhFNzTC3S2MkIecO!kKRV?JXlAyw}a`w_XXM zsk?dpt^1g?0-qLd`$#g!`M+)(0sUZ&51!-jA|h$xp!~RIz^`vFB|na@R;FS%F3LZP zu58_pz)M!c@|8$y#a)7wPasbN zfjJ1qEg}H*(chtuG5*z@zD3VRuT`R<<|rW$R6%Npir?QwS*vJ`XV=tUEn=SdFjs*? zrq9stBT{dVISLlpzByu0)}JDEuAZB!=bAs(Z#lu5*_rrqf{fpywT%`tDk(8OaWYQ% zY8uqfBBJ>$qO>K(eUl5XAvF{=(H32ugVJi$QDCrrizd=ek@6VsZ3w|AvFUQfjwlaI zz8UuRLj6yTsLdpr`CXLTr%Z&?>!7|>FP#hZ1F$#h;>IC$&P%ZQOpw&Okv~<>m*K{p zQNDkQBb(H5_+rwb1^vRJk6DoAi1M_lmGJP&L_*`VB){(`dDs?`N8%3`n-NFe z0DJH!f>%Kk*bDZ7H^6@ICO8282-+HGf&31Hcfp^*LGV5}1U>`-@Dca~90kX~cfspZ z$U*QKI1SE#v*1f`9{dZO0BQq2>i(G=4{hy(nkun_X17;Yg+uH4 z)Wz3HZELuH@x4+_xLIEECQJUyGLj4K!k=#LYCd$Q)hIpP-TdkD7Yqmke~LG+Upa>* zKZ~P)6pV#7N1D&C+9D;Fqx2EI2CuvCOKHLuzN&Vld$)MS7tE70kGd{q QzPqq5W7`bz_f`%6A5^}?3jhEB