From 2b0671b85ba9c83c5cc0e8037bfccfa701c163d2 Mon Sep 17 00:00:00 2001
From: JIU JIALIN <2339061402@qq.com>
Date: Thu, 21 Aug 2025 15:28:33 +0800
Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E4=B8=B4=E6=97=B6=E4=BF=AE?=
=?UTF-8?q?=E6=94=B9=E9=A2=91=E7=8E=87=E7=9A=84bug,=E4=BD=86=E6=98=AF?=
=?UTF-8?q?=E8=84=89=E5=86=B2=E4=BC=9A=E5=A4=9A=E5=8F=91=E9=9C=80=E8=A6=81?=
=?UTF-8?q?=E8=A7=A3=E5=86=B3,=E8=A7=A3=E5=86=B3=E4=BA=86=E6=AE=B5?=
=?UTF-8?q?=E5=88=87=E6=8D=A2=E4=B8=8D=E5=87=8F=E9=80=9F=E7=9A=84bug?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
PLSR/PLSR/Core/Src/tim.c | 57 +-
PLSR/PLSR/EWARM/settings/test.1.dnx | 4 +-
PLSR/PLSR/EWARM/test.1.dep | 950 +++++++++++++-------------
PLSR/PLSR/EWARM/test.1/Exe/test.1.sim | Bin 39482 -> 39588 bytes
4 files changed, 508 insertions(+), 503 deletions(-)
diff --git a/PLSR/PLSR/Core/Src/tim.c b/PLSR/PLSR/Core/Src/tim.c
index 68e8976..3cbec02 100644
--- a/PLSR/PLSR/Core/Src/tim.c
+++ b/PLSR/PLSR/Core/Src/tim.c
@@ -743,7 +743,7 @@ static void PLSR_CalculateTimerParams(uint32_t frequency, uint16_t* prescaler, u
uint32_t psc;
uint32_t arr;
- uint32_t f = (uint32_t)(frequency + 0.5f);
+ uint32_t f = frequency;
// PLSR_Calc_TimerParams((uint32_t)(f_hz + 0.5f), &psc, &arr);
uint32_t timer_clock = 168000000;
@@ -1594,6 +1594,7 @@ void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim)
if(g_plsr_route.section[g_plsr_route.current_section_num-1].target_freq != g_plsr_current_target_freq)
{
+ PLSR_PWM_Stop();
AllPluse += current_tim2_count; // 累加当前段已发送的脉冲数
PLSR_Section_StartNewSection(&g_plsr_route); ///<重新启动当前段
}
@@ -2017,6 +2018,7 @@ void PLSR_Section_StartNewSection(PLSR_RouteConfig_t* route)
if(route->current_freq > 0)
{
PLSR_PWM_SetFrequency(route->current_freq);
+ PLSR_PWM_Start();
}
// 清除外部事件标志,确保新段开始时状态干净
@@ -2202,12 +2204,8 @@ uint32_t PLSR_Calculate_FreqByPosition(PLSR_RouteConfig_t* route, uint8_t is_acc
else
{
// 减速过程:使用全局脉冲计数器
- executed_pulses = g_plsr_route.decel_pulse_count - current_tim2_count;
- next_executed_pulses = executed_pulses-1;
- if(next_executed_pulses < 0)
- {
- next_executed_pulses = 0;
- }
+ executed_pulses = current_tim2_count;
+ next_executed_pulses = executed_pulses + 1;
}
// 检查是否需要重新计算:脉冲步数、加减速状态或段号发生变化时才重新计算
@@ -2219,7 +2217,6 @@ uint32_t PLSR_Calculate_FreqByPosition(PLSR_RouteConfig_t* route, uint8_t is_acc
return s_last_calculated_freq;
}
-
// 使用速度位移公式 vt^2 = v0^2 + 2ax 计算当前频率,其中v0使用initial_freq作为初始速度
uint32_t v0 = route->initial_freq; // 使用initial_freq作为初始速度v0
uint64_t a = 0;
@@ -2253,13 +2250,18 @@ uint32_t PLSR_Calculate_FreqByPosition(PLSR_RouteConfig_t* route, uint8_t is_acc
}
else
{
- uint64_t freq_squared_start = 2 * a * executed_pulses;
- freq_start = integer_sqrt_64(freq_squared_start);
-
+ uint64_t v0_squared = (uint64_t)v0 * v0;
+ if (v0_squared >= 2 * a * executed_pulses)
+ {
+ uint64_t freq_squared_start = v0_squared - 2 * a * executed_pulses;
+ freq_start = integer_sqrt_64(freq_squared_start);
+ }
+ else
+ {
+ freq_start = 0;
+ }
}
- }
-
-
+ }
// 计算当前脉冲结束时的频率(executed_pulses + 1位置)
if (is_accel)
{
@@ -2270,8 +2272,15 @@ uint32_t PLSR_Calculate_FreqByPosition(PLSR_RouteConfig_t* route, uint8_t is_acc
else
{
uint64_t v0_squared = (uint64_t)v0 * v0;
- uint64_t freq_squared_end = 2 * a * next_executed_pulses;
- freq_end = integer_sqrt_64(freq_squared_end);
+ if (v0_squared >= 2 * a * next_executed_pulses)
+ {
+ uint64_t freq_squared_end = v0_squared - 2 * a * next_executed_pulses;
+ freq_end = integer_sqrt_64(freq_squared_end);
+ }
+ else
+ {
+ freq_end = 0;
+ }
}
// 计算当前脉冲的平均频率
@@ -2279,10 +2288,6 @@ uint32_t PLSR_Calculate_FreqByPosition(PLSR_RouteConfig_t* route, uint8_t is_acc
// 更新全局变量(保存当前脉冲结束时的频率,供下次使用)
g_last_freq = freq_end;
- // if(executed_pulses > 61)
- // {
- // printf("freq_start: %lu, freq_end: %lu, calculated_freq: %lu\r\n", freq_start, freq_end, calculated_freq);
- // }
// 限制频率范围
if (calculated_freq < PLSR_PWM_FREQ_MIN)
@@ -2474,8 +2479,8 @@ void PLSR_TaskSectionSwitch(PLSR_RouteConfig_t* route)
PLSR_Section_SwitchNext(route, 0); // 外部事件触发,传入0
/* 启动新段,设置新的脉冲参数和频率 */
PLSR_Section_StartNewSection(route);
- /* 启动PWM输出 */
- PLSR_PWM_Start();
+ // /* 启动PWM输出 */
+ // PLSR_PWM_Start();
PLSR_ClearGpioTriggerFlag(); // 清除GPIO触发标志
}
return; // 等待外部事件时不需要继续处理
@@ -2504,8 +2509,8 @@ void PLSR_TaskSectionSwitch(PLSR_RouteConfig_t* route)
PLSR_Section_SwitchNext(route, 1); // 脉冲完成触发,传入1
/* 启动新段,设置新的脉冲参数和频率 */
PLSR_Section_StartNewSection(route);
- /* 启动PWM输出 */
- PLSR_PWM_Start();
+ // /* 启动PWM输出 */
+ // PLSR_PWM_Start();
}
}
else
@@ -2517,8 +2522,8 @@ void PLSR_TaskSectionSwitch(PLSR_RouteConfig_t* route)
PLSR_Section_SwitchNext(route, 0); // 其他等待条件触发,传入0
/* 启动新段,设置新的脉冲参数和频率 */
PLSR_Section_StartNewSection(route);
- /* 启动PWM输出 */
- PLSR_PWM_Start();
+ // /* 启动PWM输出 */
+ // PLSR_PWM_Start();
}
/* 如果等待条件未满足,保持等待状态,等待下次检查 */
}
diff --git a/PLSR/PLSR/EWARM/settings/test.1.dnx b/PLSR/PLSR/EWARM/settings/test.1.dnx
index def6f57..6cc2a2c 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
+
2012208745
diff --git a/PLSR/PLSR/EWARM/test.1.dep b/PLSR/PLSR/EWARM/test.1.dep
index d7c2896..e390453 100644
--- a/PLSR/PLSR/EWARM/test.1.dep
+++ b/PLSR/PLSR/EWARM/test.1.dep
@@ -5,312 +5,284 @@
test.1
- $PROJ_DIR$\startup_stm32f407xx.s
+ $PROJ_DIR$\..\Core\Src\modbus_log.c
$PROJ_DIR$\..\Core\Src\flash_save.c
- $PROJ_DIR$\..\Core\Src\gpio.c
- $PROJ_DIR$\..\Core\Src\main.c
$PROJ_DIR$\..\Core\Src\modbus_crc.c
+ $PROJ_DIR$\startup_stm32f407xx.s
+ $PROJ_DIR$\..\Core\Src\main.c
+ $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c
$PROJ_DIR$\..\Core\Src\stm32f4xx_it.c
+ $PROJ_DIR$\..\Core\Src\usart.c
+ $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c
$PROJ_DIR$\..\Core\Src\tim.c
- $PROJ_DIR$\..\Core\Src\modbus_log.c
$PROJ_DIR$\..\Core\Src\dma.c
- $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c
$PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c
- $PROJ_DIR$\..\Core\Src\usart.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c
+ $PROJ_DIR$\..\Core\Src\gpio.c
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c
- $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c
+ $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.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_ex.c
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.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$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et
- $TOOLKIT_DIR$\lib\rt7M_tl.a
- $TOOLKIT_DIR$\inc\c\DLib_float_setup.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o
- $TOOLKIT_DIR$\lib\dl7M_tlf.a
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o
- $PROJ_DIR$\test.1\Obj\usart.o
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h
- $PROJ_DIR$\..\Core\Inc\modbus_crc.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o
- $PROJ_DIR$\test.1\Obj\dma.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o
- $PROJ_DIR$\..\Core\Inc\main.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o
- $PROJ_DIR$\test.1\List\test.1.map
- $TOOLKIT_DIR$\inc\c\math.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o
- $PROJ_DIR$\..\UCOS\Config\os_cfg.h
- $PROJ_DIR$\..\UCOS\Source\os_core.c
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o
- $PROJ_DIR$\test.1\Obj\tim.o
- $TOOLKIT_DIR$\inc\c\DLib_Product.h
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.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_hal_pwr.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c
+ $PROJ_DIR$\..\UCOS\Config\app_hooks.c
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et
+ $PROJ_DIR$\..\UCOS\Config\app_cfg.h
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h
+ $TOOLKIT_DIR$\inc\c\iccarm_builtin.h
$TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h
- $PROJ_DIR$\test.1\Obj\os_cpu_a.o
- $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
- $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et
+ $PROJ_DIR$\test.1\Obj\usart.__cstat.et
+ $TOOLKIT_DIR$\inc\c\ysizet.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et
+ $PROJ_DIR$\..\UCOS\Source\os_mutex.c
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o
+ $TOOLKIT_DIR$\inc\c\stdio.h
+ $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et
+ $PROJ_DIR$\test.1\Obj\main.o
$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h
- $PROJ_DIR$\..\UCOS\Ports\os_cpu.h
- $TOOLKIT_DIR$\inc\c\stdint.h
- $TOOLKIT_DIR$\lib\m7M_tls.a
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.__cstat.et
- $PROJ_DIR$\test.1\Obj\os_dbg.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o
$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et
- $PROJ_DIR$\..\UCOS\Source\os_mutex.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et
- $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et
- $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h
- $PROJ_DIR$\..\Core\Inc\usart.h
- $PROJ_DIR$\..\UCOS\Source\os_time.c
+ $PROJ_DIR$\..\UCOS\Source\os.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o
+ $PROJ_DIR$\test.1\Obj\modbus_crc.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h
- $PROJ_DIR$\..\UCOS\Source\os_mem.c
- $PROJ_DIR$\..\UCOS\Source\ucos_ii.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et
+ $PROJ_DIR$\..\Core\Inc\usart.h
$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et
- $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h
- $PROJ_DIR$\..\UCOS\Source\os_tmr.c
+ $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h
+ $TOOLKIT_DIR$\inc\c\stdarg.h
+ $TOOLKIT_DIR$\inc\c\yvals.h
+ $PROJ_DIR$\..\Core\Inc\modbus_log.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et
$PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h
+ $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o
+ $PROJ_DIR$\test.1\Obj\dma.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et
+ $PROJ_DIR$\..\Core\Inc\tim.h
+ $TOOLKIT_DIR$\lib\m7M_tls.a
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et
+ $TOOLKIT_DIR$\inc\c\DLib_Product.h
+ $PROJ_DIR$\test.1\Obj\os_dbg.o
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o
- $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et
+ $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et
+ $PROJ_DIR$\..\UCOS\Source\os_time.c
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o
+ $PROJ_DIR$\test.1\Obj\modbus_log.o
+ $TOOLKIT_DIR$\inc\c\string.h
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h
$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o
- $PROJ_DIR$\..\UCOS\Config\app_cfg.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o
- $PROJ_DIR$\test.1\Obj\gpio.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o
- $PROJ_DIR$\stm32f407xx_flash.icf
- $TOOLKIT_DIR$\inc\c\DLib_Product_string.h
- $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et
- $TOOLKIT_DIR$\inc\c\ctype.h
- $PROJ_DIR$\test.1\Obj\ucos_ii.o
- $PROJ_DIR$\..\UCOS\Source\os_trace.h
- $PROJ_DIR$\..\Core\Inc\tim.h
+ $PROJ_DIR$\test.1\Obj\os_cpu_a.o
$PROJ_DIR$\..\UCOS\Source\os_flag.c
- $TOOLKIT_DIR$\inc\c\ysizet.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o
- $TOOLKIT_DIR$\inc\c\string.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o
- $TOOLKIT_DIR$\inc\c\stdio.h
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o
+ $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h
$PROJ_DIR$\..\UCOS\Source\os_q.c
- $PROJ_DIR$\test.1\Obj\modbus_log.o
$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o
- $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et
- $PROJ_DIR$\test.1\Obj\os_cpu_c.o
- $PROJ_DIR$\test.1\Obj\flash_save.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o
- $TOOLKIT_DIR$\inc\c\yvals.h
- $PROJ_DIR$\..\UCOS\Source\os_mbox.c
- $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et
- $TOOLKIT_DIR$\inc\c\stdarg.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o
- $TOOLKIT_DIR$\lib\shb_l.a
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et
+ $PROJ_DIR$\..\UCOS\Ports\os_cpu.h
+ $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h
- $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et
- $TOOLKIT_DIR$\inc\c\DLib_Defaults.h
- $PROJ_DIR$\test.1\Exe\test.1.hex
- $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o
- $PROJ_DIR$\test.1\Obj\main.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et
- $TOOLKIT_DIR$\inc\c\iccarm_builtin.h
- $PROJ_DIR$\test.1\Obj\dma.__cstat.et
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c
- $PROJ_DIR$\..\UCOS\Config\app_hooks.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c
- $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et
$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et
- $PROJ_DIR$\..\Core\Inc\gpio.h
- $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c
- $PROJ_DIR$\..\UCOS\Ports\os_dbg.c
- $PROJ_DIR$\..\UCOS\Source\ucos_ii.c
- $PROJ_DIR$\..\UCOS\Source\os_sem.c
- $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et
- $PROJ_DIR$\test.1\Obj\modbus_crc.o
- $PROJ_DIR$\..\Core\Inc\modbus_log.h
- $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et
- $PROJ_DIR$\..\UCOS\Source\os.h
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h
+ $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o
+ $PROJ_DIR$\test.1\Exe\test.1.out
+ $PROJ_DIR$\test.1\Obj\tim.o
+ $PROJ_DIR$\test.1\Obj\gpio.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o
+ $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h
+ $TOOLKIT_DIR$\inc\c\DLib_Defaults.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et
$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o
- $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o
- $PROJ_DIR$\test.1\Obj\tim.__cstat.et
- $PROJ_DIR$\..\Core\Inc\dma.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o
- $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et
- $PROJ_DIR$\..\UCOS\Source\os_task.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h
- $TOOLKIT_DIR$\inc\c\ycheck.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et
$TOOLKIT_DIR$\inc\c\DLib_Config_Full.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o
+ $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et
+ $PROJ_DIR$\test.1\Obj\tim.__cstat.et
+ $PROJ_DIR$\..\Core\Inc\gpio.h
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o
+ $TOOLKIT_DIR$\inc\c\stdint.h
+ $PROJ_DIR$\test.1\Exe\test.1.hex
+ $PROJ_DIR$\..\UCOS\Source\os_trace.h
$PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et
- $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h
- $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o
- $TOOLKIT_DIR$\inc\c\stddef.h
- $PROJ_DIR$\test.1\Obj\usart.__cstat.et
- $PROJ_DIR$\test.1\Obj\gpio.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et
+ $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o
+ $PROJ_DIR$\test.1\Obj\os_cpu_c.o
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o
+ $TOOLKIT_DIR$\inc\c\DLib_Product_string.h
+ $TOOLKIT_DIR$\inc\c\DLib_float_setup.h
$TOOLKIT_DIR$\inc\c\stdlib.h
+ $PROJ_DIR$\..\UCOS\Source\os_task.c
+ $TOOLKIT_DIR$\inc\c\ycheck.h
+ $PROJ_DIR$\test.1\Obj\main.__cstat.et
$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o
+ $PROJ_DIR$\..\Core\Inc\modbus_crc.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o
$PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o
+ $TOOLKIT_DIR$\lib\dl7M_tlf.a
$PROJ_DIR$\..\Core\Inc\flash_save.h
- $PROJ_DIR$\test.1\Exe\test.1.out
- $PROJ_DIR$\test.1\Obj\main.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o
+ $PROJ_DIR$\test.1\Obj\dma.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et
+ $TOOLKIT_DIR$\inc\c\stddef.h
+ $PROJ_DIR$\..\UCOS\Source\os_tmr.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h
+ $TOOLKIT_DIR$\lib\shb_l.a
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et
+ $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et
+ $PROJ_DIR$\stm32f407xx_flash.icf
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o
+ $TOOLKIT_DIR$\inc\c\ctype.h
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h
+ $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o
+ $PROJ_DIR$\..\UCOS\Source\os_mbox.c
+ $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et
+ $PROJ_DIR$\test.1\Obj\gpio.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h
$PROJ_DIR$\test.1\Obj\app_hooks.o
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h
+ $PROJ_DIR$\test.1\Obj\ucos_ii.o
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h
+ $PROJ_DIR$\..\UCOS\Source\os_mem.c
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et
+ $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o
+ $PROJ_DIR$\..\UCOS\Source\ucos_ii.c
+ $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et
+ $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h
+ $PROJ_DIR$\..\UCOS\Config\os_cfg.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o
+ $PROJ_DIR$\..\Core\Inc\main.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et
+ $PROJ_DIR$\..\UCOS\Ports\os_dbg.c
+ $PROJ_DIR$\..\UCOS\Source\os_sem.c
+ $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h
+ $PROJ_DIR$\test.1\Obj\usart.o
+ $PROJ_DIR$\test.1\Obj\flash_save.o
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h
+ $PROJ_DIR$\..\Core\Inc\dma.h
+ $PROJ_DIR$\..\UCOS\Source\os_core.c
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et
+ $TOOLKIT_DIR$\inc\c\math.h
+ $PROJ_DIR$\..\UCOS\Source\ucos_ii.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o
+ $TOOLKIT_DIR$\lib\rt7M_tl.a
+ $PROJ_DIR$\test.1\List\test.1.map
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et
+ $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c
[ROOT_NODE]
ILINK
- 229 63
-
-
-
-
- $PROJ_DIR$\startup_stm32f407xx.s
-
-
- AARM
- 212
-
-
-
-
- $PROJ_DIR$\..\Core\Src\flash_save.c
-
-
- ICCARM
- 150
-
-
- __cstat
- 163
+ 118 227
-
-
- ICCARM
- 228 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54 106 59 140 138 129 131 220 75 156 55 191 134 64 45 111 122 66 85 133
-
-
- $PROJ_DIR$\..\Core\Src\gpio.c
+ $PROJ_DIR$\..\Core\Src\modbus_log.c
ICCARM
- 125
+ 100
__cstat
- 215
+ 177
ICCARM
- 182 59 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54 134 106 140 138 129 131 220 75 156 55 228 191 64 45 111 122 66 85 133
+ 77 72 212 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 59 101 152 183 154 53 75 159 166 87 223 153 224 50 210 110 143
- $PROJ_DIR$\..\Core\Src\main.c
+ $PROJ_DIR$\..\Core\Src\flash_save.c
ICCARM
- 170
+ 218
__cstat
- 230
+ 96
ICCARM
- 59 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54 182 134 106 140 138 129 131 220 75 156 55 228 191 64 45 111 122 66 85 133 202
+ 166 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 72 212 59 101 152 183 154 53 75 159 77 87 223 153 224 50 210 110 143
@@ -319,412 +291,377 @@
ICCARM
- 190
+ 66
__cstat
- 130
+ 208
ICCARM
- 55 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 207 146 47 176 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 159 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 102 122 198 116 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c
+ $PROJ_DIR$\startup_stm32f407xx.s
- ICCARM
- 83
-
-
- __cstat
- 80
+ AARM
+ 117
-
-
- ICCARM
- 59 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54 204 111 122 156 140 66 85 133
-
-
- $PROJ_DIR$\..\Core\Src\tim.c
+ $PROJ_DIR$\..\Core\Src\main.c
ICCARM
- 69
+ 61
__cstat
- 201
+ 157
ICCARM
- 134 59 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54 106 140 138 129 131 220 75 156 55 228 191 64 45 111 122 66 85 133
+ 212 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 136 87 72 59 101 152 183 154 53 75 159 166 77 223 153 224 50 210 110 143 220
- $PROJ_DIR$\..\Core\Src\modbus_log.c
+ $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c
ICCARM
- 143
+ 182
__cstat
- 187
+ 171
ICCARM
- 191 106 59 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54 140 138 129 131 220 75 156 55 228 134 64 45 111 122 66 85 133
+ 212 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Core\Src\dma.c
+ $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c
ICCARM
- 57
+ 78
__cstat
- 173
+ 206
ICCARM
- 202 59 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 212 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 111 224 50 75 59 210 110 143
- $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c
+ $PROJ_DIR$\..\Core\Src\usart.c
ICCARM
- 56
+ 217
__cstat
- 188
+ 54
ICCARM
- 59 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 72 212 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 59 101 152 183 154 53 75 159 166 77 87 223 153 224 50 210 110 143
- $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c
+ $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c
ICCARM
- 127
+ 83
__cstat
- 92
+ 188
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 102 122 198 116 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Core\Src\usart.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c
ICCARM
- 53
+ 169
__cstat
- 214
+ 85
ICCARM
- 106 59 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54 140 138 129 131 220 75 156 55 228 191 134 64 45 111 122 66 85 133
-
-
-
-
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c
-
-
- ICCARM
- 145
-
-
- __cstat
- 81
-
-
-
-
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c
-
-
- ICCARM
- 123
-
-
- __cstat
- 96
-
-
-
-
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c
-
-
- ICCARM
- 93
-
-
- __cstat
- 227
-
-
-
-
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c
-
-
- ICCARM
- 157
-
-
- __cstat
- 222
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
-
+
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c
+ $PROJ_DIR$\..\Core\Src\tim.c
ICCARM
- 203
+ 119
__cstat
- 126
+ 135
+
+
+ ICCARM
+ 87 212 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 72 59 101 152 183 154 53 75 159 166 77 223 153 224 50 210 110 143
+
+
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c
+ $PROJ_DIR$\..\Core\Src\dma.c
ICCARM
- 74
+ 170
__cstat
- 103
+ 84
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 220 212 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c
ICCARM
- 216
+ 181
__cstat
- 148
+ 178
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c
+ $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c
ICCARM
- 68
+ 191
__cstat
- 113
+ 81
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c
ICCARM
- 217
+ 168
__cstat
- 161
+ 230
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c
ICCARM
- 192
+ 69
__cstat
- 155
+ 207
ICCARM
- 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 207 146 47 176 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c
ICCARM
- 48
+ 68
__cstat
- 189
+ 129
+
+
+ ICCARM
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
+
+
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c
+ $PROJ_DIR$\..\Core\Src\gpio.c
ICCARM
- 62
+ 120
__cstat
- 73
+ 189
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 136 212 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 87 72 59 101 152 183 154 53 75 159 166 77 223 153 224 50 210 110 143
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c
ICCARM
- 52
+ 112
__cstat
- 95
+ 125
+
+
+ ICCARM
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
+
+
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c
ICCARM
- 58
+ 148
__cstat
- 171
+ 49
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c
+ $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm
+
+
+ AARM
+ 104
+
+
+
+
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c
ICCARM
- 226
+ 133
__cstat
- 159
+ 79
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c
ICCARM
- 65
+ 167
__cstat
- 89
+ 138
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
@@ -733,382 +670,439 @@
ICCARM
- 152
+ 127
__cstat
- 51
+ 147
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c
ICCARM
- 169
+ 164
__cstat
- 221
+ 71
+
+
+ ICCARM
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
+
+
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c
ICCARM
- 72
+ 128
__cstat
- 60
+ 222
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c
ICCARM
- 124
+ 140
__cstat
- 193
+ 202
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c
ICCARM
- 137
+ 62
__cstat
- 199
+ 86
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c
ICCARM
- 139
+ 121
__cstat
- 99
+ 192
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c
ICCARM
- 160
+ 126
__cstat
- 225
+ 158
-
+
+
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c
+
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 89
-
+
+ __cstat
+ 95
+
+
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c
ICCARM
- 231
+ 151
__cstat
- 43
+ 114
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c
ICCARM
- 167
+ 58
__cstat
- 168
+ 213
+
+
+
+
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c
+
+
+ ICCARM
+ 103
+
+
+ __cstat
+ 73
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c
ICCARM
- 121
+ 98
__cstat
- 112
+ 146
+
+
+
+
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c
+
+
+ ICCARM
+ 106
+
+
+ __cstat
+ 228
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c
ICCARM
- 223
+ 130
__cstat
- 218
+ 91
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c
ICCARM
- 100
+ 225
__cstat
- 205
+ 67
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c
ICCARM
- 82
+ 180
__cstat
- 101
+ 163
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c
ICCARM
- 118
+ 186
__cstat
- 219
+ 229
-
+
+
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c
+
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 65
-
+
+ __cstat
+ 63
+
+
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c
ICCARM
- 196
+ 203
__cstat
- 91
+ 200
ICCARM
- 207 146 47 176 104 211 102 86 208 153 164 209 70 119 224 116 172 114 77 98 213 136 88 71 117 84 61 120 105 195 109 162 108 180 141 79 54
+ 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c
ICCARM
- 200
+ 211
__cstat
- 181
+ 131
- $PROJ_DIR$\..\UCOS\Config\app_hooks.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c
ICCARM
- 232
+ 160
__cstat
- 210
+ 56
-
+
+
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c
+
ICCARM
- 194 111 122 156 140 208 153 164 209 70 136 66 85 133
+ 99
-
+
+ __cstat
+ 139
+
+
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c
ICCARM
- 144
+ 80
__cstat
- 50
+ 115
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c
ICCARM
- 46
+ 109
__cstat
- 151
+ 231
- $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c
- AARM
- 76
+ ICCARM
+ 190
+
+
+ __cstat
+ 176
- $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c
+ $PROJ_DIR$\..\UCOS\Config\app_hooks.c
ICCARM
- 149
+ 194
__cstat
- 166
+ 144
ICCARM
- 111 122 156 140 208 153 164 209 70 136 66 85 133
+ 64 224 50 75 59 156 76 124 132 92 55 210 110 143
- $PROJ_DIR$\..\UCOS\Ports\os_dbg.c
+ $PROJ_DIR$\test.1\Exe\test.1.out
- ICCARM
- 90
+ OBJCOPY
+ 142
- __cstat
- 197
+ ILINK
+ 227
- ICCARM
- 111 122 156 140 208 153 164 209 70 136 66 85 133
+ ILINK
+ 179 194 170 218 120 61 66 100 104 149 93 117 169 181 168 69 68 127 112 121 180 148 133 164 182 203 128 103 151 167 140 106 191 130 62 225 78 126 211 190 89 98 58 186 65 160 99 80 109 83 119 196 217 175 226 88 165
@@ -1117,49 +1111,55 @@
ICCARM
- 132
+ 196
__cstat
- 78
+ 145
ICCARM
- 111 122 156 140 208 153 164 209 70 136 66 85 133 67 135 154 110 97 142 186 206 107 115
+ 224 50 75 59 156 76 124 132 92 55 210 110 143 221 105 187 199 57 108 215 155 97 173
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c
+ $PROJ_DIR$\..\UCOS\Ports\os_dbg.c
ICCARM
- 94
+ 93
__cstat
- 147
+ 60
+
+
+ ICCARM
+ 224 50 75 59 156 76 124 132 92 55 210 110 143
+
+
- $PROJ_DIR$\test.1\Exe\test.1.out
+ $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c
- OBJCOPY
- 165
+ ICCARM
+ 149
- ILINK
- 63
+ __cstat
+ 134
- ILINK
- 128 232 57 150 125 170 190 143 76 149 90 212 65 72 223 58 216 152 217 124 137 226 167 118 56 100 139 121 231 68 160 74 127 196 82 62 83 169 145 203 123 93 157 48 52 46 94 200 144 192 69 132 53 158 44 87 49
+ ICCARM
+ 224 50 75 59 156 76 124 132 92 55 210 110 143
diff --git a/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim b/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim
index c2332f9280c3baf125be111d9a8832d0d7d44665..d0862dbba30f7af049abe6fba3db075e60766747 100644
GIT binary patch
delta 3820
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