From 83b25c81b8055312312d5ed41fe0bbac7fbcc133 Mon Sep 17 00:00:00 2001
From: JIU JIALIN <2339061402@qq.com>
Date: Thu, 21 Aug 2025 16:19:54 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9PWM=E5=81=9C=E6=AD=A2?=
=?UTF-8?q?=E5=92=8C=E5=90=AF=E5=8A=A8=E9=80=BB=E8=BE=91?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
PLSR/PLSR/Core/Src/tim.c | 53 +-
PLSR/PLSR/EWARM/test.1.dep | 868 +++++++++++++-------------
PLSR/PLSR/EWARM/test.1/Exe/test.1.sim | Bin 39588 -> 39354 bytes
3 files changed, 469 insertions(+), 452 deletions(-)
diff --git a/PLSR/PLSR/Core/Src/tim.c b/PLSR/PLSR/Core/Src/tim.c
index 3cbec02..ff27e88 100644
--- a/PLSR/PLSR/Core/Src/tim.c
+++ b/PLSR/PLSR/Core/Src/tim.c
@@ -647,8 +647,11 @@ void PLSR_PWM_Init(void)
MX_TIM14_Init();
MX_TIM2_Init(); // TIM2恢复用于脉冲计数
MX_TIM6_Init();
- // 停止PWM输出
- HAL_TIM_PWM_Stop(&htim10, TIM_CHANNEL_1);
+
+ HAL_TIM_PWM_Start(&htim10, TIM_CHANNEL_1);
+ HAL_TIM_PWM_Start(&htim11, TIM_CHANNEL_1);
+ HAL_TIM_PWM_Start(&htim13, TIM_CHANNEL_1);
+ HAL_TIM_PWM_Start(&htim14, TIM_CHANNEL_1);
BackupSRAM_RestoreData();
}
@@ -667,23 +670,28 @@ void PLSR_PWM_Start(void)
switch(g_plsr_route.output_port)
{
case 0: // TIM10
- HAL_TIM_PWM_Start_IT(&htim10, TIM_CHANNEL_1);
+ __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period / 2); // 设置占空比为50%
+ //HAL_TIM_PWM_Start_IT(&htim10, TIM_CHANNEL_1);
break;
case 1: // TIM11
- HAL_TIM_PWM_Start_IT(&htim11, TIM_CHANNEL_1);
+ __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period / 2);
+ //HAL_TIM_PWM_Start_IT(&htim11, TIM_CHANNEL_1);
break;
case 2: // TIM13
- HAL_TIM_PWM_Start_IT(&htim13, TIM_CHANNEL_1);
+ __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period / 2);
+ //HAL_TIM_PWM_Start_IT(&htim13, TIM_CHANNEL_1);
break;
case 3: // TIM14
- HAL_TIM_PWM_Start_IT(&htim14, TIM_CHANNEL_1);
+ __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period / 2);
+ //HAL_TIM_PWM_Start_IT(&htim14, TIM_CHANNEL_1);
break;
default: // 默认使用TIM10
- HAL_TIM_PWM_Start_IT(&htim10, TIM_CHANNEL_1);
+ __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period / 2);
+ //HAL_TIM_PWM_Start_IT(&htim10, TIM_CHANNEL_1);
break;
}
}
@@ -706,23 +714,28 @@ void PLSR_PWM_Stop(void)
switch(g_plsr_route.output_port)
{
case 0: // TIM10
- HAL_TIM_PWM_Stop(&htim10, TIM_CHANNEL_1);
+ __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period); //
+ //HAL_TIM_PWM_Stop(&htim10, TIM_CHANNEL_1);
break;
case 1: // TIM11
- HAL_TIM_PWM_Stop(&htim11, TIM_CHANNEL_1);
+ __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period); //
+ //HAL_TIM_PWM_Stop(&htim11, TIM_CHANNEL_1);
break;
case 2: // TIM13
- HAL_TIM_PWM_Stop(&htim13, TIM_CHANNEL_1);
+ __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period); //
+ //HAL_TIM_PWM_Stop(&htim13, TIM_CHANNEL_1);
break;
case 3: // TIM14
- HAL_TIM_PWM_Stop(&htim14, TIM_CHANNEL_1);
+ __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period); //
+ //HAL_TIM_PWM_Stop(&htim14, TIM_CHANNEL_1);
break;
default: // 默认使用TIM10
- HAL_TIM_PWM_Stop(&htim10, TIM_CHANNEL_1);
+ __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period); //
+ //HAL_TIM_PWM_Stop(&htim10, TIM_CHANNEL_1);
break;
}
}
@@ -997,7 +1010,7 @@ static void PLSR_UpdateGlobalPulseCount(int32_t current_pulse_count)
s_last_total_pulse = current_pulse_count;
}
// 将32位全局累加脉冲计数分解为两个16位寄存器(支持负数)
- int32_t signed_count = g_plsr_total_pulse_count; // 使用有符号数进行计算
+ int32_t signed_count = g_plsr_location; // 使用有符号数进行计算
ModbusSlave.holding_regs[0x1000] = signed_count & 0xFFFF; // 低16位
ModbusSlave.holding_regs[0x1001] = (signed_count >> 16) & 0xFFFF; // 高16位
}
@@ -1250,7 +1263,8 @@ void Calculate_PluseNum(PLSR_RouteConfig_t *route)
// 计算第一部分:v0 -> vt
PLSR_RunState_t part1_state = PLSR_STATE_CONST; // 默认匀速
- if (v0 < vt) {
+ if (v0 < vt)
+ {
// 需要加速
part1_state = PLSR_STATE_ACCEL;
part1_time = (vt - v0) / a;
@@ -1260,7 +1274,8 @@ void Calculate_PluseNum(PLSR_RouteConfig_t *route)
part1_pulse_num = (uint32_t)(temp_calc / 2000);
if(part1_pulse_num == 0) part1_pulse_num = 1; // 防止为0
}
- else if (v0 > vt) {
+ else if (v0 > vt)
+ {
// 需要减速
part1_state = PLSR_STATE_DECEL;
part1_time = (v0 - vt) / d;
@@ -1279,7 +1294,8 @@ void Calculate_PluseNum(PLSR_RouteConfig_t *route)
// 计算第三部分:vt -> 0(必须减速到0)
PLSR_RunState_t part3_state = PLSR_STATE_DECEL;
- if (vt > 0) {
+ if (vt > 0)
+ {
part3_time = vt / d;
if (part3_time == 0) part3_time = 1;
@@ -1287,7 +1303,9 @@ void Calculate_PluseNum(PLSR_RouteConfig_t *route)
uint64_t temp_calc = (uint64_t)vt * part3_time;
part3_pulse_num = (uint32_t)(temp_calc / 2000);
if(part3_pulse_num == 0) part3_pulse_num = 1; // 防止为0
- } else {
+ }
+ else
+ {
// 目标频率已经是0,无需第三部分
part3_pulse_num = 0;
part3_time = 0;
@@ -1309,7 +1327,6 @@ void Calculate_PluseNum(PLSR_RouteConfig_t *route)
else if (used_pulses > total_pulses) {
// 脉冲数不足,需要调整运动参数
// 策略:优先保证能减速到0,然后调整第一部分
-
if (part3_pulse_num <= total_pulses) {
// 第三部分可以完成,调整第一部分
int32_t remaining_pulses = total_pulses - part3_pulse_num;
diff --git a/PLSR/PLSR/EWARM/test.1.dep b/PLSR/PLSR/EWARM/test.1.dep
index e390453..f05e7f9 100644
--- a/PLSR/PLSR/EWARM/test.1.dep
+++ b/PLSR/PLSR/EWARM/test.1.dep
@@ -5,265 +5,265 @@
test.1
- $PROJ_DIR$\..\Core\Src\modbus_log.c
+ $PROJ_DIR$\startup_stm32f407xx.s
+ $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c
$PROJ_DIR$\..\Core\Src\flash_save.c
+ $PROJ_DIR$\..\Core\Src\tim.c
$PROJ_DIR$\..\Core\Src\modbus_crc.c
- $PROJ_DIR$\startup_stm32f407xx.s
- $PROJ_DIR$\..\Core\Src\main.c
+ $PROJ_DIR$\..\Core\Src\modbus_log.c
$PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c
+ $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c
+ $PROJ_DIR$\..\Core\Src\dma.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\dma.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c
- $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.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$\..\Core\Src\gpio.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.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_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$\..\Core\Src\main.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.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_sram.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.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_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$\..\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_hal.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.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$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c
+ $TOOLKIT_DIR$\inc\c\yvals.h
+ $PROJ_DIR$\..\UCOS\Source\os_mutex.c
+ $TOOLKIT_DIR$\inc\c\DLib_Product.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o
+ $PROJ_DIR$\..\UCOS\Source\os.h
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o
$PROJ_DIR$\..\UCOS\Config\app_cfg.h
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h
+ $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et
$TOOLKIT_DIR$\inc\c\iccarm_builtin.h
- $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h
- $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_hal_dma.o
+ $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et
$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et
- $PROJ_DIR$\..\UCOS\Source\os.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et
$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$\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$\..\Drivers\CMSIS\Include\cmsis_version.h
- $TOOLKIT_DIR$\inc\c\stdarg.h
- $TOOLKIT_DIR$\inc\c\yvals.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et
+ $PROJ_DIR$\test.1\Obj\os_dbg.o
+ $PROJ_DIR$\test.1\Obj\usart.__cstat.et
+ $TOOLKIT_DIR$\inc\c\ysizet.h
+ $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h
+ $TOOLKIT_DIR$\inc\c\stdio.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h
+ $PROJ_DIR$\test.1\Obj\main.o
$PROJ_DIR$\..\Core\Inc\modbus_log.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et
$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
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o
+ $PROJ_DIR$\test.1\Obj\dma.__cstat.et
$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_ll_exti.__cstat.et
- $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et
+ $PROJ_DIR$\..\Core\Inc\tim.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et
+ $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h
+ $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h
+ $TOOLKIT_DIR$\inc\c\string.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et
+ $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__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$\test.1\Obj\os_cpu_a.o
- $PROJ_DIR$\..\UCOS\Source\os_flag.c
- $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\stm32f4xx_ll_usart.o
- $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\stm32f4xx_hal_rcc_ex.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et
- $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\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$\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$\..\Core\Inc\modbus_crc.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o
- $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h
- $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\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_uart.__cstat.et
+ $TOOLKIT_DIR$\inc\c\stdarg.h
+ $PROJ_DIR$\..\Core\Inc\main.h
+ $PROJ_DIR$\..\UCOS\Source\os_mem.c
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et
+ $PROJ_DIR$\..\Core\Inc\usart.h
+ $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h
+ $PROJ_DIR$\test.1\Obj\modbus_log.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$\stm32f407xx_flash.icf
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et
+ $PROJ_DIR$\test.1\Obj\ucos_ii.o
+ $PROJ_DIR$\test.1\Obj\main.__cstat.et
+ $TOOLKIT_DIR$\inc\c\stddef.h
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h
$TOOLKIT_DIR$\lib\shb_l.a
$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o
$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$\test.1\Obj\app_hooks.o
+ $TOOLKIT_DIR$\inc\c\ycheck.h
$PROJ_DIR$\..\UCOS\Source\os_mbox.c
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o
$PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et
+ $TOOLKIT_DIR$\inc\c\ctype.h
+ $PROJ_DIR$\..\Core\Inc\modbus_crc.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o
$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$\test.1\Obj\stm32f4xx_ll_pwr.o
+ $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h
$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\stm32f4xx_hal_timebase_tim.o
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h
+ $PROJ_DIR$\..\UCOS\Source\ucos_ii.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h
$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\stm32f4xx_hal_pwr_ex.__cstat.et
+ $PROJ_DIR$\test.1\List\test.1.map
+ $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o
+ $PROJ_DIR$\test.1\Obj\dma.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o
+ $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h
$PROJ_DIR$\test.1\Obj\flash_save.o
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et
$PROJ_DIR$\..\Core\Inc\dma.h
- $PROJ_DIR$\..\UCOS\Source\os_core.c
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o
$TOOLKIT_DIR$\inc\c\math.h
- $PROJ_DIR$\..\UCOS\Source\ucos_ii.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o
+ $PROJ_DIR$\test.1\Obj\usart.o
+ $PROJ_DIR$\..\UCOS\Source\os_core.c
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o
+ $PROJ_DIR$\..\UCOS\Source\os_sem.c
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et
+ $PROJ_DIR$\..\UCOS\Config\os_cfg.h
+ $PROJ_DIR$\..\UCOS\Source\os_tmr.c
$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$\test.1\Obj\stm32f4xx_hal_wwdg.o
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h
+ $TOOLKIT_DIR$\inc\c\DLib_Defaults.h
+ $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c
+ $PROJ_DIR$\..\UCOS\Ports\os_dbg.c
+ $PROJ_DIR$\test.1\Obj\tim.__cstat.et
+ $PROJ_DIR$\..\UCOS\Config\app_hooks.c
+ $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o
+ $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o
+ $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o
+ $PROJ_DIR$\test.1\Obj\os_cpu_a.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et
+ $PROJ_DIR$\..\UCOS\Ports\os_cpu.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o
$PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h
+ $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.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$\..\UCOS\Source\ucos_ii.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$\test.1\Obj\stm32f4xx_hal_uart.o
+ $PROJ_DIR$\..\UCOS\Source\os_flag.c
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et
+ $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h
+ $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et
+ $PROJ_DIR$\..\Core\Inc\gpio.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o
+ $TOOLKIT_DIR$\inc\c\DLib_Product_string.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et
+ $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h
+ $PROJ_DIR$\..\UCOS\Source\os_trace.h
+ $PROJ_DIR$\..\Core\Inc\flash_save.h
+ $PROJ_DIR$\test.1\Obj\os_cpu_c.o
+ $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h
+ $TOOLKIT_DIR$\inc\c\DLib_float_setup.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o
+ $TOOLKIT_DIR$\inc\c\stdlib.h
+ $PROJ_DIR$\test.1\Obj\gpio.o
+ $PROJ_DIR$\..\UCOS\Source\os_task.c
+ $PROJ_DIR$\..\UCOS\Source\os_q.c
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et
+ $TOOLKIT_DIR$\lib\dl7M_tlf.a
+ $TOOLKIT_DIR$\inc\c\stdint.h
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et
+ $PROJ_DIR$\test.1\Exe\test.1.hex
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o
- [ROOT_NODE]
+ $PROJ_DIR$\startup_stm32f407xx.s
- ILINK
- 118 227
+ AARM
+ 195
- $PROJ_DIR$\..\Core\Src\modbus_log.c
+ $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c
ICCARM
- 100
+ 104
__cstat
- 177
+ 127
ICCARM
- 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
+ 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 77 182 136 199 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
@@ -272,50 +272,41 @@
ICCARM
- 218
+ 151
__cstat
- 96
+ 58
ICCARM
- 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
+ 216 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 103 99 69 89 210 128 221 68 98 129 74 85 155 219 139 52 166 190 215
- $PROJ_DIR$\..\Core\Src\modbus_crc.c
+ $PROJ_DIR$\..\Core\Src\tim.c
ICCARM
- 66
+ 197
__cstat
- 208
+ 178
ICCARM
- 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
+ 85 99 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 103 69 89 210 128 221 68 98 129 216 74 155 219 139 52 166 190 215
- $PROJ_DIR$\startup_stm32f407xx.s
-
-
- AARM
- 117
-
-
-
-
- $PROJ_DIR$\..\Core\Src\main.c
+ $PROJ_DIR$\..\Core\Src\modbus_crc.c
ICCARM
@@ -323,845 +314,854 @@
__cstat
- 157
-
-
-
-
- ICCARM
- 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\stm32f4xx_hal_msp.c
-
-
- ICCARM
- 182
-
-
- __cstat
- 171
+ 142
ICCARM
- 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
+ 129 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 77 182 136 199 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c
+ $PROJ_DIR$\..\Core\Src\modbus_log.c
ICCARM
- 78
+ 106
__cstat
- 206
+ 122
ICCARM
- 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
+ 74 103 99 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 69 89 210 128 221 68 98 129 216 85 155 219 139 52 166 190 215
- $PROJ_DIR$\..\Core\Src\usart.c
+ $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c
ICCARM
- 217
+ 163
__cstat
- 54
+ 107
ICCARM
- 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
+ 99 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c
+ $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c
ICCARM
- 83
+ 137
__cstat
- 188
+ 102
ICCARM
- 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
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c
+ $PROJ_DIR$\..\Core\Src\dma.c
ICCARM
- 169
+ 148
__cstat
- 85
+ 83
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
+ 153 99 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Core\Src\tim.c
+ $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c
ICCARM
- 119
+ 82
__cstat
- 135
+ 159
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
+ 99 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 194 139 52 98 69 166 190 215
- $PROJ_DIR$\..\Core\Src\dma.c
+ $PROJ_DIR$\..\Core\Src\usart.c
ICCARM
- 170
+ 156
__cstat
- 84
+ 66
ICCARM
- 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
+ 103 99 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 69 89 210 128 221 68 98 129 216 74 85 155 219 139 52 166 190 215
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c
+ $PROJ_DIR$\..\Core\Src\gpio.c
ICCARM
- 181
+ 222
__cstat
- 178
+ 132
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
+ 207 99 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 85 103 69 89 210 128 221 68 98 129 216 74 155 219 139 52 166 190 215
- $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c
+ $PROJ_DIR$\..\Core\Src\main.c
ICCARM
- 191
+ 73
__cstat
- 81
+ 115
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
+ 99 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 207 85 103 69 89 210 128 221 68 98 129 216 74 155 219 139 52 166 190 215 153
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c
ICCARM
- 168
+ 121
__cstat
- 230
+ 173
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
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c
ICCARM
- 69
+ 51
__cstat
- 207
+ 90
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
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c
ICCARM
- 68
+ 183
__cstat
- 129
+ 144
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
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Core\Src\gpio.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c
ICCARM
- 120
+ 185
__cstat
- 189
+ 113
ICCARM
- 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
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c
ICCARM
- 112
+ 220
__cstat
- 125
+ 63
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
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c
ICCARM
- 148
+ 57
__cstat
- 49
+ 78
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
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm
-
-
- AARM
- 104
-
-
-
-
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c
ICCARM
- 133
+ 149
__cstat
- 79
+ 162
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
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c
ICCARM
- 167
+ 75
__cstat
- 138
+ 225
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
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c
ICCARM
- 127
+ 154
__cstat
- 147
+ 152
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
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c
ICCARM
- 164
+ 96
__cstat
- 71
+ 50
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
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c
ICCARM
- 128
+ 140
__cstat
- 222
+ 213
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
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c
ICCARM
- 140
+ 169
__cstat
- 202
+ 64
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
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c
ICCARM
- 62
+ 209
__cstat
- 86
+ 130
-
-
- 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_flash_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c
ICCARM
- 121
+ 187
__cstat
- 192
+ 79
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
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c
ICCARM
- 126
+ 232
__cstat
- 158
+ 60
+
+
+ ICCARM
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
+
+
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c
ICCARM
- 89
+ 158
__cstat
- 95
+ 203
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c
ICCARM
- 151
+ 181
__cstat
- 114
+ 86
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
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c
ICCARM
- 58
+ 112
__cstat
- 213
+ 119
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c
ICCARM
- 103
+ 71
__cstat
- 73
+ 54
-
-
- 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_ll_gpio.c
ICCARM
- 98
+ 76
__cstat
- 146
+ 229
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c
ICCARM
- 106
+ 147
__cstat
- 228
+ 80
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
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c
ICCARM
- 130
+ 211
__cstat
- 91
+ 231
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
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c
ICCARM
- 225
+ 131
__cstat
- 67
+ 164
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
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c
ICCARM
- 180
+ 70
__cstat
- 163
+ 165
-
-
- 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_ll_pwr.c
ICCARM
- 186
+ 133
__cstat
- 229
+ 81
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c
ICCARM
- 65
+ 111
__cstat
- 63
+ 56
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c
ICCARM
- 203
+ 160
__cstat
- 200
+ 93
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
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c
ICCARM
- 211
+ 174
__cstat
- 131
+ 189
+
+
+ ICCARM
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
+
+
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c
ICCARM
- 160
+ 126
__cstat
- 56
+ 212
+
+
+ ICCARM
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
+
+
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c
ICCARM
- 99
+ 201
__cstat
- 139
+ 97
+
+
+ ICCARM
+ 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138
+
+
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c
ICCARM
- 80
+ 47
__cstat
- 115
+ 59
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c
+ [ROOT_NODE]
+
+
+ ILINK
+ 196 145
+
+
+
+
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c
ICCARM
- 109
+ 95
__cstat
- 231
+ 208
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c
ICCARM
- 190
+ 101
__cstat
- 176
+ 184
- $PROJ_DIR$\..\UCOS\Config\app_hooks.c
+ $PROJ_DIR$\..\UCOS\Ports\os_dbg.c
ICCARM
- 194
+ 65
__cstat
- 144
+ 53
ICCARM
- 64 224 50 75 59 156 76 124 132 92 55 210 110 143
+ 139 52 98 69 124 44 171 214 46 67 166 190 215
- $PROJ_DIR$\test.1\Exe\test.1.out
+ $PROJ_DIR$\..\UCOS\Config\app_hooks.c
- OBJCOPY
- 142
+ ICCARM
+ 123
- ILINK
- 227
+ __cstat
+ 206
- 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
+ ICCARM
+ 48 139 52 98 69 124 44 171 214 46 67 166 190 215
- $PROJ_DIR$\..\UCOS\Source\ucos_ii.c
+ $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm
+
+
+ AARM
+ 188
+
+
+
+
+ $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c
ICCARM
- 196
+ 217
__cstat
- 145
+ 172
ICCARM
- 224 50 75 59 156 76 124 132 92 55 210 110 143 221 105 187 199 57 108 215 155 97 173
+ 139 52 98 69 124 44 171 214 46 67 166 190 215
- $PROJ_DIR$\..\UCOS\Ports\os_dbg.c
+ $PROJ_DIR$\test.1\Exe\test.1.out
- ICCARM
- 93
+ ILINK
+ 145
- __cstat
- 60
+ OBJCOPY
+ 230
- ICCARM
- 224 50 75 59 156 76 124 132 92 55 210 110 143
+ ILINK
+ 108 123 148 151 222 73 61 106 188 217 65 195 147 149 160 57 75 211 174 185 126 232 187 220 163 154 183 96 121 140 131 181 137 201 51 169 82 209 158 112 71 76 70 133 47 111 95 101 191 104 197 114 156 118 168 84 226
- $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c
+ $PROJ_DIR$\..\UCOS\Source\ucos_ii.c
ICCARM
- 149
+ 114
__cstat
- 134
+ 204
ICCARM
- 224 50 75 59 156 76 124 132 92 55 210 110 143
+ 139 52 98 69 124 44 171 214 46 67 166 190 215 157 202 125 100 45 224 161 223 94 167
+
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c
+
+
+ ICCARM
+ 191
+
+
+ __cstat
+ 92
+
+
+
diff --git a/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim b/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim
index d0862dbba30f7af049abe6fba3db075e60766747..eaeff646c10acce2f4afdef8ba108f049a4a2d66 100644
GIT binary patch
delta 2961
zcmZve3vd(18OL|ml6;b7A-}NY7bhE>voQvm6dVEp8?X%lTNpwg13@Vc2nIW*ofw)z
zWJmx*Ajnz3b^{Y=!X$J^2YhG}5=_aEX8IsOO4=#yl+iImOG$^$L7n<6>(RfYE6|5#
ze)s+N+wc2!?{2kwZ~NJYGV^*D)wPo3Z{Q6=C?!PDTk1g~_Vy8>_Ye^{I16Op2dRt)
z*Z1K&ulqlOy$piL{T=uNxDIZBKZD!g4!8@x_Tn-MqJZ`j!3fMC6J&ur-~c7S2_}I`
z(0-T*Q(&)Rpy{yR1Ybix4m$_bfrVfZSPGVbr$GoY-+^5XwxEXhS%~Mr2G9;RgBQRL
z!FI3%>;iki0niKLC~_Ef3JMIsnqiN@o&YDoDexXR3;f_b7y=)IUw|US{|ffAe$w0S
zup}PiZ8Y!n^W$`yx3j6-P0B;sCf$0P$~!X^?g?pay2q{CRp=o~{FePfXCq!*B@GfW
zQweFcl6@tAiIUw-MWPU~v(fI~ea7x2W$d&_sJbF9KyPYD=;nAxvo@{a
zEv#hC{y33nfT^9)mSN&zK3wOe`G{x$MjtyR5~fy#Q!&p(iAdn5z743u)Ne;q{?@4J
zjD4us|6qhHjL_c*_-~lw370;`WB-+3qvuP}oS_2$o-@VwXLu_X(v~2937?QQVRgBl
zpB_!j{)*lrQ8#8&cdus}#hh4b&Sj~YO&U$j?C%kg5cRoH0rUIM5l&%*YYl+EkycXh
zmsl$P*NCU;L4AbF5gte@n0i}Fbq*$rRsNr1?I`9!F^@@fFXwNjISPKN7kn*QaJgP^
zPpaU1dcm$_!8_Xj&TcviY72q!-vvALg00Dd`Fg>pk_FA1^@6kb4MS1Za8&f1x!c_`
z9gBqcLfTfIX>`yw{)lmkRBL4F$_ObV&SH_N<70`d6ce%JhI4!B^Yjd>k#92=7Db{n
z&~1ygDv5wk9tu$SSz}S%ji>|t|A@{^_V=SdQ!jAZKt0QbyPeccJoe%4#H#6^n2g%`
zP!uL+a%8T8$ExS8;E$Rf$z6yW2x$WR#qb+(3&jTBVXAWUWH9yI*t%q)D>)Ckuko{{
z$&Ll+eSK^}ve$>+58j9BqdzAG8goL*@Bz{1oeygl9N^*2#f
zi4teR{zg_0s?GIJ5nHjDJBq-r+LqCen!
z&E?*%*wA0q9o_yi+`BD8hr0bD)JiD(xsbM?I?J=8KL3w7p38+HZFaHMQ|z$1L)r($
z=B=dC7zkxXm#5Wky~uWi?vtR-(zXP)(ldVTYt}B$XTA))(CzcFA>|k
zM6R?@N}uJEGe+6XF_XeeL=qdRl&3lx4fFutQsSiB_&~|zoOMx&
zTpFZOMbPabQh6XYa-ILaWIla@7nSay9sF47SZ2kjLy>-zuOv!{{N#ia({_%EZV~Y$
z7`tW18!B8Rpv3}$hpBmCitX4yHZ~AvZWDorkIG%5jgEV3l!>osbBMD9xoVEgoy(|w
zN%Udo+Au%loagQI8;O;WY8E`KJxMYYLsHEpCPhf9d4wv5wK_s^d{D7nA=QQ;6L%r@
z(qI;%Q?0pZS&)%x%|k0qNkr8p?zqfJB+O#pSV%i=mpnc7hJb|i(J%VysW(WI=h&se
z#NSHt%-iI`$yDWWwIu?b@Fcdll4Qardry5qQnf+lB$XS=mQ+np=A?2#rG`lOGJ}$*
z+hbSLiHVqMtcV~Umr6;cM{pYz`@>Bfr$ch{q+H6r6_eX4E*M#9jF(j}&KV5n;>@Br
zVdEpG!-?&7J-_>CK0i|3!}7vhoN|$6MYuAhRG^V*cy%=qZmN-JyF9gKx|!8RdQ=Sd?j`E$-?~aXV@g@*&wivh~0g>r}-RPJSsogvW*#{
zBNk1*xU4qA=0X5I)fUn8pcLmiOSd3cQ8vvI}z4^IUTZV<6wrR
z9Xh`w(dO2!ub8h_*1A?sV6%_Nt|RNHji;rc2bc@wtgiDzdv(nD6{h6@Tf+6WMk8FTG(Y
A1^@s6
delta 3187
zcmZ{m3v5%@8OOhKVmmjE6Py>=A%W|J!p#W6bd*PV)Cn{Rlt2h$EfSP$gv=lw0a0Ko
z)ae8?v^=t&5|RKdbTH`DY9W_Ml#vOhRi&aWHYTP((ZS?K>Egt%{jYu7rh8cW
z`TW1{eBXCIpL2chy`b`w-Q44uS5`}jPseT|#)u@{3LYeRXB$a750T^n$G{ul1W0Cl
z_x&sQPU-&B7=H_Tkb4=t2R;BF0Ux*lz5qADEpd>gdhSC#1Yd!#!2pN?)=rWUq=5{O
z1@geMR+8)(e}`2HF*?94=tnS?fC*p{cnnMjvp^ZRikK%c&I7AZqZ;GlcJfF|A(nv^
z;3r@;SOeCBP2f53bFdTq14UlMXh(tF7{7+S7vp~LOK=FZgJa+XI0fDU?|`!)6?xql
z-vvG3a(e;x2;u|q5%2+RXK!HqqFo$kPESo$aUB)=Lksk=s;am#BOu)V&|KZ)(#M&Y
zp+Nku^SL(%-M6r_pQEUZ@RiRjwNv>NW-bk^J
z=+Fxq5(Vez1*76xihW|SUhhFfYwls_zngQQ-sevO<2Uu5)$3hB4hyF0^)74m((dBe
zwIl2lw+th*ZbxNz=T}XOCgBpH7Juj&kzus6xni7gf?_lB;D-?^B1eJDgZpCI_v85~9ITGq*1jg~nrR!8hfDF7f)wbvzNuG?CEU1@Mq6r
z3q@g0C3A_@IXBH^aUM`)?Ixx!$Sq=QnAn(C&CH@F&(65|S>9+iWmME2D6hEQ)#UJp
zI@4Hicr+_vFY0UBso>Ae9DFgO^^8AQ^R>CRX8-2nl4a#*g;>j1gYsE3-&y!$rujJ;zBZCaLPy?;4
zAV+Q$!DAm(TjfkPOda6zuFx!U6e2g+uBwj3%z8aK)OmkUoO8H5)4GjhAu4i^g2>qs
z1;=H`ZZ0=?HAPU&mwY^2>LMizURqn$o0TP%r~5SR>YZCAl^da5>zsHHl(?(v|9=d*
zU6PAR+)^Et8c=t)Co~(Ik`*u{&CnCD%mGQaT(D9C2n&@#k^E>+sN1BqJB~`ZuNArJ
z$kfymWI~pvT*Lych-bLLF}Wk4EyU$LL)Ou(Z`Sc7CzA_l6WT&JM#bbcDCu5Fv3e~^
zo_A!x>AvKy338g`zEU?_w+snum~Kf4OVTZC!eVGXm8NOUD@%L~yX?d+?+fF0gQ*je8O|ZaE?ol;ChEAnABl;%%!lb2j+}lH>{&Y+(!#L?<={Es2EcHs_gi1hD@tJiC$rDx7W0A8461L$m1ZOcb-zGl8U
z?b(kF{7joFt=hvqFDxYKJmP-6m899*Nb0I5$<$0z2gu$_lKEwl9tT@r!5sJ$T-Zkv
zKS)vq7;GV_;Z>40;N|V&VUq5EKjZ!EFCYN^3T}ft;2!uAJOKX$!FF0D^+NQ4e}NDf
z1Q8Ge)IpK~n1BS#z`GU?We>@j&{mKQa=~z51Noo;i~<%QcZkM@wb|Dqzo@9G(5}1T
zzN(6Fe=MRtXxPBb{p(43Y6ISmH>&k(y3)kl#E##t{F