From d6f77f3fe8cba23572e7fa92b4ced36a294c715a Mon Sep 17 00:00:00 2001 From: JIU JIALIN <2339061402@qq.com> Date: Sat, 30 Aug 2025 16:35:48 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=9A=E8=BF=87=E6=AD=A5=E9=95=BF=E6=96=B9?= =?UTF-8?q?=E5=BC=8F=E8=A7=A3=E5=86=B3=E9=A2=91=E7=8E=87=E8=BF=87=E9=AB=98?= =?UTF-8?q?=E6=97=B6,=E5=9B=A0=E4=B8=BA=E9=A9=B1=E5=8A=A8=E8=83=BD?= =?UTF-8?q?=E5=8A=9B=E5=BD=B1=E5=93=8D=E5=AF=BC=E8=87=B4=E9=AB=98=E7=94=B5?= =?UTF-8?q?=E5=B9=B3=E7=BF=BB=E8=BD=AC=E8=BE=83=E6=85=A2=E5=AF=BC=E8=87=B4?= =?UTF-8?q?=E5=8D=A0=E7=A9=BA=E6=AF=94=E5=BC=82=E5=B8=B8=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PLSR/PLSR/Core/Inc/tim.h | 1 + PLSR/PLSR/Core/Src/tim.c | 30 +- PLSR/PLSR/EWARM/settings/test.1.dnx | 4 +- PLSR/PLSR/EWARM/test.1.dep | 1092 ++++++++++++------------- PLSR/PLSR/EWARM/test.1/Exe/test.1.sim | Bin 41856 -> 41982 bytes 5 files changed, 566 insertions(+), 561 deletions(-) diff --git a/PLSR/PLSR/Core/Inc/tim.h b/PLSR/PLSR/Core/Inc/tim.h index 0909042..c3bf05e 100644 --- a/PLSR/PLSR/Core/Inc/tim.h +++ b/PLSR/PLSR/Core/Inc/tim.h @@ -210,6 +210,7 @@ void PLSR_Section_PWM_Stop(void); void PLSR_Route_PWM_Stop(); void PLSR_PWM_SetFrequency(uint32_t frequency); void PLSR_CalculateTimerParams(uint32_t frequency, uint16_t* prescaler, uint32_t* period); +void PLSR_Fix_Compensated(uint32_t frequency, uint32_t* ccr); // ==================== PLSR路径控制函数 ==================== void PLSR_Route_Init(PLSR_RouteConfig_t* route); //<路径初始化 diff --git a/PLSR/PLSR/Core/Src/tim.c b/PLSR/PLSR/Core/Src/tim.c index d1e1228..e9ba84f 100644 --- a/PLSR/PLSR/Core/Src/tim.c +++ b/PLSR/PLSR/Core/Src/tim.c @@ -141,7 +141,7 @@ void MX_TIM10_Init(void) htim10.Init.Prescaler = 83; // 预分频器设置为83,计数频率为1MHz htim10.Init.CounterMode = TIM_COUNTERMODE_UP; htim10.Init.Period = 9999; - htim10.Init.ClockDivision = TIM_CLOCKDIVISION_DIV2; + htim10.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1; htim10.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_ENABLE; if (HAL_TIM_Base_Init(&htim10) != HAL_OK) { @@ -403,7 +403,7 @@ void HAL_TIM_MspPostInit(TIM_HandleTypeDef* timHandle) GPIO_InitStruct.Pin = GPIO_PIN_6; GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; GPIO_InitStruct.Pull = GPIO_NOPULL; - GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH; GPIO_InitStruct.Alternate = GPIO_AF3_TIM10; HAL_GPIO_Init(GPIOF, &GPIO_InitStruct); @@ -597,28 +597,30 @@ void PLSR_PWM_Start(void) { if (PlsrRoute.route_state == PLSR_ROUTE_RUNNING) //<只有在路径运行状态下才可以进行pwm输出 { + uint32_t ccr = (htim10.Init.Period + 1) / 2; + PLSR_Fix_Compensated(PlsrRoute.current_freq,&ccr); StopFlag = 0; // 根据output_port选择目标定时器并启动PWM输出 switch(PlsrRoute.output_port) { case 0: // TIM10 - __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period / 2); // 设置占空比为50% + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, ccr); // 设置占空比为50% break; case 1: // TIM11 - __HAL_TIM_SET_COMPARE(&htim11, TIM_CHANNEL_1, htim11.Init.Period / 2); // 设置占空比为50% + __HAL_TIM_SET_COMPARE(&htim11, TIM_CHANNEL_1, ccr); // 设置占空比为50% break; case 2: // TIM13 - __HAL_TIM_SET_COMPARE(&htim13, TIM_CHANNEL_1, htim13.Init.Period / 2); // 设置占空比为50% + __HAL_TIM_SET_COMPARE(&htim13, TIM_CHANNEL_1, ccr); // 设置占空比为50% break; case 3: // TIM14 - __HAL_TIM_SET_COMPARE(&htim14, TIM_CHANNEL_1, htim14.Init.Period / 2); // 设置占空比为50% + __HAL_TIM_SET_COMPARE(&htim14, TIM_CHANNEL_1, ccr); // 设置占空比为50% break; default: // 默认使用TIM10 - __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period / 2); // 设置占空比为50% + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, ccr); // 设置占空比为50% break; } } @@ -709,6 +711,7 @@ void PLSR_PWM_SetFrequency(uint32_t frequency) { uint16_t prescaler = 0; // 预分频器值 uint32_t period = 0; // 自动重载值(周期) + uint32_t ccr = 0; // 频率范围检查 - 确保频率在1hz到100khz范围内 if(frequency < PLSR_PWM_FREQ_MIN || frequency > PLSR_PWM_FREQ_MAX) @@ -718,7 +721,8 @@ void PLSR_PWM_SetFrequency(uint32_t frequency) // 计算最佳定时器参数 - 根据目标频率计算预分频器和周期值 PLSR_CalculateTimerParams(frequency, &prescaler, &period); - + ccr = (period + 1) / 2; + PLSR_Fix_Compensated(frequency,&ccr); // 参数有效性检查 - 防止period为0导致除零错误 if(period == 0) { @@ -731,35 +735,35 @@ void PLSR_PWM_SetFrequency(uint32_t frequency) __HAL_TIM_SET_PRESCALER(&htim10, prescaler); __HAL_TIM_SET_AUTORELOAD(&htim10, period); if(StopFlag == 0) - __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, period / 2); + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, ccr); break; case 1: // TIM11 __HAL_TIM_SET_PRESCALER(&htim11, prescaler); __HAL_TIM_SET_AUTORELOAD(&htim11, period); if(StopFlag == 0) - __HAL_TIM_SET_COMPARE(&htim11, TIM_CHANNEL_1, period / 2); + __HAL_TIM_SET_COMPARE(&htim11, TIM_CHANNEL_1, ccr); break; case 2: // TIM13 __HAL_TIM_SET_PRESCALER(&htim13, prescaler); __HAL_TIM_SET_AUTORELOAD(&htim13, period); if(StopFlag == 0) - __HAL_TIM_SET_COMPARE(&htim13, TIM_CHANNEL_1, period / 2); + __HAL_TIM_SET_COMPARE(&htim13, TIM_CHANNEL_1, ccr); break; case 3: // TIM14 __HAL_TIM_SET_PRESCALER(&htim14, prescaler); __HAL_TIM_SET_AUTORELOAD(&htim14, period); if(StopFlag == 0) - __HAL_TIM_SET_COMPARE(&htim14, TIM_CHANNEL_1, period / 2); + __HAL_TIM_SET_COMPARE(&htim14, TIM_CHANNEL_1, ccr); break; default: // 默认使用TIM10 __HAL_TIM_SET_PRESCALER(&htim10, prescaler); __HAL_TIM_SET_AUTORELOAD(&htim10, period); if(StopFlag == 0) - __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, period / 2); + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, ccr); break; } diff --git a/PLSR/PLSR/EWARM/settings/test.1.dnx b/PLSR/PLSR/EWARM/settings/test.1.dnx index 6036b0f..bdf21f1 100644 --- a/PLSR/PLSR/EWARM/settings/test.1.dnx +++ b/PLSR/PLSR/EWARM/settings/test.1.dnx @@ -12,12 +12,12 @@ 50 + 46232557 + _ 0 _ 0 0 2 - 46232557 - 630028761 diff --git a/PLSR/PLSR/EWARM/test.1.dep b/PLSR/PLSR/EWARM/test.1.dep index d203ae7..9fc4fbc 100644 --- a/PLSR/PLSR/EWARM/test.1.dep +++ b/PLSR/PLSR/EWARM/test.1.dep @@ -5,526 +5,558 @@ test.1 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Core\Src\flash_save.c + $PROJ_DIR$\..\Core\Src\modbus_log.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c + $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c + $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Core\Src\tools.c + $PROJ_DIR$\startup_stm32f407xx.s + $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Core\Src\modbus_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c - $PROJ_DIR$\..\Core\Src\tools.c - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c - $PROJ_DIR$\startup_stm32f407xx.s - $PROJ_DIR$\..\Core\Src\dma.c - $PROJ_DIR$\..\Core\Src\flash_save.c - $PROJ_DIR$\..\Core\Src\main.c - $PROJ_DIR$\..\Core\Src\gpio.c - $PROJ_DIR$\..\Core\Src\modbus_log.c - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c - $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c - $PROJ_DIR$\..\Core\Src\modbus_crc.c - $PROJ_DIR$\..\Core\Src\tim.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c - $PROJ_DIR$\..\Core\Src\usart.c - $PROJ_DIR$\..\UCOS\Source\ucos_ii.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o - $PROJ_DIR$\..\UCOS\Source\os_mem.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h - $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et - $TOOLKIT_DIR$\inc\c\string.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et + $TOOLKIT_DIR$\inc\c\stdlib.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et + $PROJ_DIR$\test.1\Exe\test.1.out + $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h - $TOOLKIT_DIR$\inc\c\ctype.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h - $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et - $PROJ_DIR$\test.1\Obj\tools.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o - $PROJ_DIR$\..\UCOS\Source\os_task.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h - $PROJ_DIR$\test.1\Exe\test.1.hex - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o - $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et - $PROJ_DIR$\..\UCOS\Source\os_mutex.c - $TOOLKIT_DIR$\lib\dl7M_tlf.a - $PROJ_DIR$\test.1\Obj\main.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et - $PROJ_DIR$\..\UCOS\Source\os_sem.c - $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h - $PROJ_DIR$\test.1\Obj\gpio.o - $PROJ_DIR$\test.1\Obj\tim.__cstat.et - $PROJ_DIR$\..\Core\Inc\modbus_log.h - $TOOLKIT_DIR$\inc\c\iccarm_builtin.h - $PROJ_DIR$\test.1\Obj\modbus_crc.o - $PROJ_DIR$\test.1\Obj\tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et - $TOOLKIT_DIR$\inc\c\DLib_Product.h - $PROJ_DIR$\..\Core\Inc\usart.h - $TOOLKIT_DIR$\lib\m7M_tls.a $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o - $PROJ_DIR$\test.1\Obj\usart.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et - $PROJ_DIR$\..\UCOS\Source\os_flag.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o - $PROJ_DIR$\test.1\Obj\usart.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et - $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et - $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et - $PROJ_DIR$\test.1\Obj\flash_save.o - $PROJ_DIR$\..\UCOS\Source\os_q.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h + $PROJ_DIR$\test.1\Obj\main.o + $PROJ_DIR$\..\UCOS\Source\os_mutex.c $PROJ_DIR$\..\UCOS\Source\os_core.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o + $PROJ_DIR$\..\UCOS\Source\ucos_ii.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et - $PROJ_DIR$\test.1\List\test.1.map - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et - $PROJ_DIR$\test.1\Obj\tools.o - $TOOLKIT_DIR$\lib\shb_l.a - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o - $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et - $PROJ_DIR$\test.1\Obj\gpio.__cstat.et - $PROJ_DIR$\..\UCOS\Ports\os_cpu.h - $PROJ_DIR$\test.1\Exe\test.1.out - $PROJ_DIR$\test.1\Obj\main.o - $PROJ_DIR$\test.1\Obj\dma.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o - $PROJ_DIR$\..\UCOS\Source\os_trace.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o - $PROJ_DIR$\..\UCOS\Source\os_mbox.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o - $PROJ_DIR$\test.1\Obj\dma.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o + $PROJ_DIR$\..\UCOS\Source\os.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o - $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et - $TOOLKIT_DIR$\inc\c\DLib_float_setup.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et - $PROJ_DIR$\test.1\Obj\os_cpu_a.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o - $TOOLKIT_DIR$\inc\c\iar_intrinsics_common.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o + $PROJ_DIR$\..\Core\Inc\tim.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et + $PROJ_DIR$\..\UCOS\Ports\os_cpu.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h + $PROJ_DIR$\..\UCOS\Source\os_time.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h $PROJ_DIR$\..\Core\Inc\dma.h - $TOOLKIT_DIR$\inc\c\stdarg.h - $PROJ_DIR$\test.1\Obj\os_dbg.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o + $PROJ_DIR$\..\Core\Inc\modbus_log.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h + $PROJ_DIR$\test.1\Obj\tools.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o $TOOLKIT_DIR$\inc\c\stddef.h + $TOOLKIT_DIR$\inc\c\ctype.h + $PROJ_DIR$\..\UCOS\Config\app_cfg.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o + $PROJ_DIR$\..\UCOS\Config\os_cfg.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o + $TOOLKIT_DIR$\lib\rt7M_tl.a $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h - $PROJ_DIR$\stm32f407xx_flash.icf - $TOOLKIT_DIR$\inc\c\stdio.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o $PROJ_DIR$\test.1\Obj\os_cpu_c.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et + $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h + $PROJ_DIR$\test.1\Obj\gpio.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h + $PROJ_DIR$\test.1\Obj\dma.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o + $PROJ_DIR$\test.1\Obj\usart.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h + $TOOLKIT_DIR$\inc\c\iccarm_builtin.h + $PROJ_DIR$\test.1\Exe\test.1.hex + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et + $PROJ_DIR$\test.1\Obj\modbus_crc.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et - $TOOLKIT_DIR$\inc\c\ysizet.h - $TOOLKIT_DIR$\inc\c\DLib_Product_string.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o - $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $PROJ_DIR$\..\Core\Inc\tim.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.__cstat.et - $PROJ_DIR$\..\UCOS\Source\os.h - $PROJ_DIR$\..\UCOS\Config\os_cfg.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o - $PROJ_DIR$\..\Core\Inc\gpio.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et + $TOOLKIT_DIR$\inc\c\stdint.h + $TOOLKIT_DIR$\inc\c\math.h $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h - $TOOLKIT_DIR$\lib\rt7M_tl.a + $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o + $TOOLKIT_DIR$\inc\c\intrinsics.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h + $PROJ_DIR$\test.1\Obj\tools.__cstat.et + $PROJ_DIR$\stm32f407xx_flash.icf + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o + $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o + $PROJ_DIR$\test.1\Obj\os_cpu_a.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o + $PROJ_DIR$\test.1\Obj\os_dbg.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h + $PROJ_DIR$\test.1\Obj\app_hooks.o + $PROJ_DIR$\..\UCOS\Source\os_mem.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o + $PROJ_DIR$\..\Core\Inc\usart.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o + $TOOLKIT_DIR$\lib\shb_l.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et $PROJ_DIR$\..\Core\Inc\flash_save.h - $PROJ_DIR$\..\UCOS\Source\os_time.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h + $PROJ_DIR$\test.1\Obj\tim.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_tmr.c + $TOOLKIT_DIR$\inc\c\DLib_Product.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o + $TOOLKIT_DIR$\inc\c\ysizet.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et + $TOOLKIT_DIR$\inc\c\string.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_float_setup.h + $PROJ_DIR$\test.1\Obj\main.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h + $TOOLKIT_DIR$\lib\dl7M_tlf.a + $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_flag.c + $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et $PROJ_DIR$\..\Core\Inc\main.h + $PROJ_DIR$\test.1\Obj\dma.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_trace.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o + $PROJ_DIR$\..\UCOS\Source\os_q.c + $PROJ_DIR$\test.1\Obj\gpio.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h + $PROJ_DIR$\test.1\Obj\usart.o + $PROJ_DIR$\test.1\Obj\flash_save.o $PROJ_DIR$\test.1\Obj\modbus_log.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o - $TOOLKIT_DIR$\inc\c\stdlib.h - $PROJ_DIR$\test.1\Obj\ucos_ii.o - $PROJ_DIR$\..\Core\Inc\modbus_crc.h - $PROJ_DIR$\..\UCOS\Ports\os_dbg.c $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o - $PROJ_DIR$\test.1\Obj\app_hooks.o - $TOOLKIT_DIR$\inc\c\intrinsics.h - $PROJ_DIR$\..\UCOS\Source\os_tmr.c - $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o - $PROJ_DIR$\..\UCOS\Config\app_hooks.c + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $PROJ_DIR$\..\UCOS\Source\os_mbox.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et + $PROJ_DIR$\..\Core\Inc\gpio.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o + $PROJ_DIR$\test.1\Obj\tim.o + $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h $TOOLKIT_DIR$\inc\c\yvals.h - $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et - $PROJ_DIR$\..\UCOS\Source\ucos_ii.c $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h - $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et - $TOOLKIT_DIR$\inc\c\stdint.h - $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o + $PROJ_DIR$\..\UCOS\Source\os_task.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $TOOLKIT_DIR$\lib\m7M_tls.a + $TOOLKIT_DIR$\inc\c\iar_intrinsics_common.h + $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c $TOOLKIT_DIR$\inc\c\ycheck.h - $PROJ_DIR$\..\UCOS\Config\app_cfg.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h - $TOOLKIT_DIR$\inc\c\math.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o + $PROJ_DIR$\..\Core\Inc\modbus_crc.h + $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et + $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $PROJ_DIR$\..\UCOS\Source\os_sem.c + $PROJ_DIR$\test.1\List\test.1.map + $TOOLKIT_DIR$\inc\c\stdio.h + $PROJ_DIR$\test.1\Obj\ucos_ii.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + $PROJ_DIR$\..\UCOS\Config\app_hooks.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o - $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_spi.__cstat.et [ROOT_NODE] ILINK - 140 132 + 48 224 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Core\Src\flash_save.c - __cstat - 106 + ICCARM + 193 - ICCARM - 119 + __cstat + 177 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 157 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 220 170 160 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c + $PROJ_DIR$\..\Core\Src\modbus_log.c - - __cstat - 60 - ICCARM - 49 + 194 - - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c - __cstat - 233 + 61 + + ICCARM - 75 + 80 151 180 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 225 170 160 85 44 217 135 220 157 62 122 172 55 86 88 67 184 199 129 216 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c + + ICCARM + 139 + __cstat - 118 + 234 + + ICCARM - 164 + 180 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 96 55 86 135 225 88 67 184 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c + $PROJ_DIR$\..\Core\Src\usart.c + + ICCARM + 192 + __cstat - 70 + 103 + + ICCARM - 172 + 151 180 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 225 170 160 85 44 217 135 220 157 80 62 122 172 55 86 88 67 184 199 129 216 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c + $PROJ_DIR$\..\Core\Src\main.c - __cstat - 180 + ICCARM + 52 - ICCARM - 179 + __cstat + 173 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 180 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 199 62 151 225 170 160 85 44 217 135 220 157 80 122 172 55 86 88 67 184 129 216 73 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c + + ICCARM + 105 + __cstat - 98 + 71 + + ICCARM - 182 + 180 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c - __cstat - 88 + ICCARM + 92 - ICCARM - 156 + __cstat + 231 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\Core\Src\tim.c - __cstat - 64 + ICCARM + 201 - ICCARM - 206 + __cstat + 158 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 62 180 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 151 225 170 160 85 44 217 135 220 157 80 122 172 55 86 88 67 184 199 129 216 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c + $PROJ_DIR$\..\Core\Src\tools.c + + ICCARM + 82 + __cstat - 190 + 131 + + ICCARM - 113 + 62 180 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 151 225 170 160 85 44 217 135 220 157 80 122 172 55 86 88 67 184 199 129 216 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + $PROJ_DIR$\startup_stm32f407xx.s - __cstat - 167 - - - ICCARM - 146 + AARM + 235 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c + $PROJ_DIR$\..\Core\Src\dma.c - __cstat - 62 + ICCARM + 101 - ICCARM - 112 + __cstat + 181 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 73 180 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c + $PROJ_DIR$\..\Core\Src\gpio.c - __cstat - 133 + ICCARM + 188 - ICCARM - 211 + __cstat + 97 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 199 180 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 62 151 225 170 160 85 44 217 135 220 157 80 122 172 55 86 88 67 184 129 216 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\..\Core\Src\modbus_crc.c + + ICCARM + 113 + __cstat - 222 + 221 + + ICCARM - 117 + 220 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 228 236 63 208 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c - __cstat - 130 + ICCARM + 125 - ICCARM - 153 + __cstat + 110 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c + + ICCARM + 79 + __cstat - 76 + 106 + + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + ICCARM - 194 + 98 + + + __cstat + 198 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c - __cstat - 84 + ICCARM + 57 - ICCARM - 224 + __cstat + 149 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 @@ -532,592 +564,579 @@ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c - __cstat - 198 + ICCARM + 207 - ICCARM - 97 + __cstat + 155 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c - __cstat - 114 + ICCARM + 200 - ICCARM - 149 + __cstat + 99 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c - __cstat - 131 + ICCARM + 128 - ICCARM - 56 + __cstat + 227 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + + ICCARM + 152 + __cstat - 177 + 68 + + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + ICCARM - 120 + 77 + + + __cstat + 78 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c + + ICCARM + 75 + __cstat - 184 + 76 + + ICCARM - 51 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c - __cstat - 221 + ICCARM + 150 - ICCARM - 166 + __cstat + 185 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c - __cstat - 50 + ICCARM + 143 - ICCARM - 74 + __cstat + 45 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c - __cstat - 234 + ICCARM + 104 - ICCARM - 72 + __cstat + 206 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c - __cstat - 163 + ICCARM + 167 - ICCARM - 129 + __cstat + 171 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c - - __cstat - 237 - ICCARM - 201 + 87 - - - ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + __cstat + 141 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c - - __cstat - 143 - ICCARM - 53 + 212 - - - ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + __cstat + 47 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c - __cstat - 79 + ICCARM + 232 - ICCARM - 212 + __cstat + 51 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 228 236 63 208 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c - __cstat - 63 + ICCARM + 115 - ICCARM - 235 + __cstat + 156 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c - __cstat - 124 + ICCARM + 65 - ICCARM - 217 + __cstat + 161 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c - __cstat - 81 + ICCARM + 195 - ICCARM - 187 + __cstat + 117 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Core\Src\tools.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c - - __cstat - 71 - ICCARM 134 + + __cstat + 136 + ICCARM - 189 203 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 100 176 59 186 66 207 90 169 209 199 93 232 158 48 230 193 139 147 195 214 165 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c - __cstat - 159 + ICCARM + 93 - ICCARM - 108 + __cstat + 111 ICCARM - 203 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c - __cstat - 54 + ICCARM + 89 - ICCARM - 136 + __cstat + 56 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\startup_stm32f407xx.s + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c - AARM - 236 + ICCARM + 138 - - - - $PROJ_DIR$\..\Core\Src\dma.c - __cstat - 154 - - - ICCARM - 142 + 165 ICCARM - 168 203 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Core\Src\flash_save.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c - __cstat - 115 + ICCARM + 166 - ICCARM - 125 + __cstat + 119 ICCARM - 199 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 209 59 186 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c - __cstat - 87 + ICCARM + 64 - ICCARM - 141 + __cstat + 116 ICCARM - 203 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 195 189 100 176 59 186 66 207 90 169 209 199 93 232 158 48 230 193 139 147 214 165 168 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c - __cstat - 138 + ICCARM + 83 - ICCARM - 91 + __cstat + 112 ICCARM - 195 203 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 189 100 176 59 186 66 207 90 169 209 199 93 232 158 48 230 193 139 147 214 165 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Core\Src\modbus_log.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c - __cstat - 155 + ICCARM + 205 - ICCARM - 204 + __cstat + 118 ICCARM - 93 100 203 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 176 59 186 66 207 90 169 209 199 189 232 158 48 230 193 139 147 195 214 165 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c - __cstat - 173 + ICCARM + 133 - ICCARM - 82 + __cstat + 95 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c - __cstat + ICCARM 102 - ICCARM + __cstat 183 - - - ICCARM - 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 80 83 205 123 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 - - - $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c - __cstat - 145 + ICCARM + 186 - ICCARM - 104 + __cstat + 159 ICCARM - 203 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 68 48 230 169 176 193 139 147 + 228 236 63 208 190 175 50 121 219 204 196 107 163 130 60 69 108 59 123 127 84 168 114 189 137 164 191 145 100 142 46 72 203 81 126 146 174 - $PROJ_DIR$\..\Core\Src\modbus_crc.c + $PROJ_DIR$\test.1\Exe\test.1.out - __cstat - 58 + OBJCOPY + 109 - ICCARM - 95 + ILINK + 224 - ICCARM - 209 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 80 83 205 123 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + ILINK + 132 147 101 193 188 52 113 194 140 94 144 235 64 128 150 65 89 195 115 186 134 138 143 200 105 83 77 205 93 75 98 125 92 166 133 57 139 102 207 104 152 167 79 87 212 91 74 154 182 232 201 82 226 192 153 90 215 176 - $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c - __cstat - 92 + ICCARM + 91 - ICCARM - 96 + __cstat + 169 - + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + ICCARM - 189 203 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 100 176 59 186 66 207 90 169 209 199 93 232 158 48 230 193 139 147 195 214 165 + 154 - + + __cstat + 66 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c - __cstat - 191 + ICCARM + 226 - ICCARM - 144 + __cstat + 179 ICCARM - 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 + 55 86 135 225 219 204 196 107 163 168 88 67 184 54 178 197 148 53 187 223 213 70 162 - $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c - - __cstat - 105 - ICCARM - 109 + 182 - - - ICCARM - 100 203 80 83 205 123 122 57 65 227 229 219 188 220 99 174 202 225 94 69 196 67 171 185 151 161 127 231 162 148 121 77 61 152 55 110 181 111 103 176 59 186 66 207 90 169 209 199 93 189 232 158 48 230 193 139 147 195 214 165 + __cstat + 120 - + - $PROJ_DIR$\test.1\Exe\test.1.out + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c - OBJCOPY - 78 + ICCARM + 74 - ILINK - 132 + __cstat + 237 - - - ILINK - 175 213 142 125 91 141 95 204 160 178 170 236 144 136 206 53 153 211 179 212 235 56 217 187 108 156 201 224 120 149 194 166 82 74 119 112 104 72 97 113 51 49 129 75 164 172 182 146 117 183 96 134 208 109 135 197 101 86 - - - $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c - __cstat - 226 + ICCARM + 94 - ICCARM - 170 + __cstat + 202 ICCARM - 48 230 169 176 229 219 188 220 99 185 193 139 147 + 55 86 135 225 219 204 196 107 163 168 88 67 184 @@ -1126,64 +1145,45 @@ AARM - 160 + 140 $PROJ_DIR$\..\UCOS\Config\app_hooks.c - - __cstat - 157 - - - ICCARM - 213 - - - ICCARM - 192 48 230 169 176 229 219 188 220 99 185 193 139 147 + 147 - - - - $PROJ_DIR$\..\UCOS\Source\ucos_ii.c - __cstat - 137 - - - ICCARM - 208 + 49 ICCARM - 48 230 169 176 229 219 188 220 99 185 193 139 147 128 107 150 52 85 126 89 73 200 215 + 58 55 86 135 225 219 204 196 107 163 168 88 67 184 - $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c - __cstat - 116 + ICCARM + 144 - ICCARM - 178 + __cstat + 124 ICCARM - 48 230 169 176 229 219 188 220 99 185 193 139 147 + 55 86 135 225 219 204 196 107 163 168 88 67 184 diff --git a/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim b/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim index b63397af9c5b177feb58211c4a3a3d4eb80164f8..bbc3feb816730c8e4ac58440e3c90b9f7c8ad7f7 100644 GIT binary patch delta 4198 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 PA3Qdbo!D8xP2BlE-V_N)