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 b63397a..bbc3feb 100644
Binary files a/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim and b/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim differ