diff --git a/PLSR/PLSR/Core/Src/tim.c b/PLSR/PLSR/Core/Src/tim.c
index ff27e88..880254a 100644
--- a/PLSR/PLSR/Core/Src/tim.c
+++ b/PLSR/PLSR/Core/Src/tim.c
@@ -648,10 +648,10 @@ void PLSR_PWM_Init(void)
MX_TIM2_Init(); // TIM2恢复用于脉冲计数
MX_TIM6_Init();
- 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);
+ // __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period); // 确保PWM停止,避免意外输出
+ // __HAL_TIM_SET_COMPARE(&htim11, TIM_CHANNEL_1, htim11.Init.Period); // 确保PWM停止,避免意外输出
+ // __HAL_TIM_SET_COMPARE(&htim13, TIM_CHANNEL_1, htim13.Init.Period); // 确保PWM停止,避免意外输出
+ // __HAL_TIM_SET_COMPARE(&htim14, TIM_CHANNEL_1, htim14.Init.Period); // 确保PWM停止,避免意外输出
BackupSRAM_RestoreData();
}
@@ -1706,6 +1706,7 @@ void PLSR_Route_Init(PLSR_RouteConfig_t* route)
g_last_freq = 0; // 清零上一次计算的频率
PLSR_TIM6_SetUpdateFreq(50); //初始化TIM6更新频率为1000us(1ms)
+ PLSR_PWM_Stop(); // 确保PWM停止,避免意外输出
}
/**
@@ -1743,6 +1744,10 @@ void PLSR_Route_Start(PLSR_RouteConfig_t* route)
// 启动定时器
PLSR_TIM6_Start(); // 启动TIM6用于频率更新和等待时间计时
HAL_TIM_Base_Start_IT(&htim2); // 启动TIM2中断用于段切换
+ 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);
}
/**
@@ -2306,12 +2311,7 @@ uint32_t PLSR_Calculate_FreqByPosition(PLSR_RouteConfig_t* route, uint8_t is_acc
// 更新全局变量(保存当前脉冲结束时的频率,供下次使用)
g_last_freq = freq_end;
- // 限制频率范围
- if (calculated_freq < PLSR_PWM_FREQ_MIN)
- {
- calculated_freq = PLSR_PWM_FREQ_MIN;
- }
- else if (calculated_freq > PLSR_PWM_FREQ_MAX)
+ if (calculated_freq > PLSR_PWM_FREQ_MAX)
{
calculated_freq = PLSR_PWM_FREQ_MAX;
}
diff --git a/PLSR/PLSR/EWARM/settings/test.1.dnx b/PLSR/PLSR/EWARM/settings/test.1.dnx
index 6cc2a2c..def6f57 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 f05e7f9..328cbd0 100644
--- a/PLSR/PLSR/EWARM/test.1.dep
+++ b/PLSR/PLSR/EWARM/test.1.dep
@@ -5,1163 +5,1163 @@
test.1
- $PROJ_DIR$\startup_stm32f407xx.s
- $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c
- $PROJ_DIR$\..\Core\Src\flash_save.c
+ $PROJ_DIR$\..\Core\Src\modbus_log.c
$PROJ_DIR$\..\Core\Src\tim.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$\..\Core\Src\modbus_log.c
+ $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c
$PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c
- $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c
$PROJ_DIR$\..\Core\Src\dma.c
$PROJ_DIR$\..\Core\Src\stm32f4xx_it.c
+ $PROJ_DIR$\startup_stm32f407xx.s
$PROJ_DIR$\..\Core\Src\usart.c
- $PROJ_DIR$\..\Core\Src\gpio.c
- $PROJ_DIR$\..\Core\Src\main.c
+ $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.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_ll_gpio.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_sram.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c
$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c
- $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_spi.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.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_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$\test.1\Obj\os_dbg.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et
- $TOOLKIT_DIR$\inc\c\iccarm_builtin.h
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c
+ $PROJ_DIR$\..\UCOS\Source\ucos_ii.h
+ $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h
+ $PROJ_DIR$\test.1\Obj\gpio.o
+ $TOOLKIT_DIR$\lib\rt7M_tl.a
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h
$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et
+ $PROJ_DIR$\..\UCOS\Source\os_mem.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et
$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$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et
- $PROJ_DIR$\test.1\Obj\modbus_crc.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$\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_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$\..\UCOS\Config\app_cfg.h
+ $PROJ_DIR$\..\Core\Inc\modbus_crc.h
+ $TOOLKIT_DIR$\lib\dl7M_tlf.a
$PROJ_DIR$\test.1\Obj\stm32f4xx_hal.__cstat.et
- $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$\..\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_spi.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et
- $TOOLKIT_DIR$\inc\c\stdarg.h
+ $PROJ_DIR$\..\UCOS\Source\os_tmr.c
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o
+ $PROJ_DIR$\..\Core\Inc\dma.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o
+ $TOOLKIT_DIR$\inc\c\stdlib.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o
$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
- $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
+ $TOOLKIT_DIR$\lib\m7M_tls.a
+ $PROJ_DIR$\test.1\Obj\tim.o
+ $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h
$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\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
+ $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h
+ $PROJ_DIR$\test.1\Obj\os_dbg.o
+ $PROJ_DIR$\test.1\Obj\tim.__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_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$\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$\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$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h
+ $PROJ_DIR$\..\UCOS\Config\os_cfg.h
$PROJ_DIR$\test.1\Obj\flash_save.o
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et
- $PROJ_DIR$\..\Core\Inc\dma.h
- $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o
+ $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et
$TOOLKIT_DIR$\inc\c\math.h
- $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\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\modbus_crc.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o
$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_ll_gpio.o
+ $TOOLKIT_DIR$\lib\shb_l.a
$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et
+ $PROJ_DIR$\test.1\Exe\test.1.hex
+ $PROJ_DIR$\test.1\Obj\dma.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o
+ $PROJ_DIR$\test.1\Exe\test.1.out
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.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$\..\Core\Inc\stm32f4xx_it.h
+ $PROJ_DIR$\..\UCOS\Source\os_mutex.c
+ $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o
+ $TOOLKIT_DIR$\inc\c\ysizet.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o
+ $TOOLKIT_DIR$\inc\c\iccarm_builtin.h
+ $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o
+ $PROJ_DIR$\test.1\Obj\modbus_crc.o
$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et
- $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et
+ $TOOLKIT_DIR$\inc\c\string.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et
$TOOLKIT_DIR$\inc\c\DLib_Product_string.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et
+ $PROJ_DIR$\test.1\Obj\ucos_ii.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o
+ $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et
+ $PROJ_DIR$\test.1\Obj\os_cpu_a.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o
+ $PROJ_DIR$\..\UCOS\Source\os_sem.c
+ $PROJ_DIR$\test.1\Obj\gpio.__cstat.et
$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$\..\Drivers\CMSIS\Include\cmsis_compiler.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o
+ $PROJ_DIR$\..\Core\Inc\tim.h
+ $PROJ_DIR$\..\Core\Inc\usart.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et
+ $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h
$PROJ_DIR$\..\UCOS\Source\os_trace.h
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h
+ $PROJ_DIR$\..\UCOS\Source\os.h
+ $TOOLKIT_DIR$\inc\c\stdint.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h
+ $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o
+ $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et
+ $PROJ_DIR$\..\UCOS\Source\os_time.c
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.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
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o
+ $TOOLKIT_DIR$\inc\c\ycheck.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et
+ $TOOLKIT_DIR$\inc\c\yvals.h
+ $PROJ_DIR$\test.1\Obj\main.o
+ $PROJ_DIR$\test.1\Obj\modbus_log.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o
+ $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c
+ $PROJ_DIR$\test.1\Obj\app_hooks.o
+ $PROJ_DIR$\..\UCOS\Config\app_hooks.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h
+ $PROJ_DIR$\..\Core\Inc\gpio.h
+ $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et
+ $PROJ_DIR$\stm32f407xx_flash.icf
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et
+ $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et
+ $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o
+ $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.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$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h
+ $PROJ_DIR$\test.1\Obj\usart.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et
+ $PROJ_DIR$\test.1\List\test.1.map
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h
+ $PROJ_DIR$\test.1\Obj\os_cpu_c.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o
+ $PROJ_DIR$\..\UCOS\Source\os_core.c
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et
+ $PROJ_DIR$\..\UCOS\Ports\os_cpu.h
+ $PROJ_DIR$\..\UCOS\Ports\os_dbg.c
+ $PROJ_DIR$\..\UCOS\Source\ucos_ii.c
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et
+ $PROJ_DIR$\test.1\Obj\dma.__cstat.et
+ $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et
+ $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h
+ $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et
+ $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h
+ $TOOLKIT_DIR$\inc\c\DLib_Defaults.h
+ $TOOLKIT_DIR$\inc\c\DLib_Product.h
+ $PROJ_DIR$\test.1\Obj\usart.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h
+ $PROJ_DIR$\..\UCOS\Source\os_mbox.c
+ $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o
+ $TOOLKIT_DIR$\inc\c\stdarg.h
$PROJ_DIR$\..\UCOS\Source\os_task.c
+ $TOOLKIT_DIR$\inc\c\stdio.h
+ $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et
$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
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o
+ $TOOLKIT_DIR$\inc\c\stddef.h
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o
+ $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et
- $PROJ_DIR$\startup_stm32f407xx.s
+ [ROOT_NODE]
- AARM
- 195
+ ILINK
+ 102 192
- $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c
+ $PROJ_DIR$\..\Core\Src\modbus_log.c
ICCARM
- 104
+ 169
__cstat
- 127
+ 208
ICCARM
- 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
+ 59 137 72 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103 224 119 123 81 69 214 222 61 157 136 90 187 47 60 84 199 143
- $PROJ_DIR$\..\Core\Src\flash_save.c
+ $PROJ_DIR$\..\Core\Src\tim.c
ICCARM
- 151
+ 75
__cstat
- 58
+ 80
ICCARM
- 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
+ 136 72 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103 137 224 119 123 81 69 214 222 61 157 59 90 187 47 60 84 199 143
- $PROJ_DIR$\..\Core\Src\tim.c
+ $PROJ_DIR$\..\Core\Src\flash_save.c
ICCARM
- 197
+ 85
__cstat
- 178
+ 152
ICCARM
- 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
+ 157 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103 137 72 224 119 123 81 69 214 222 61 59 136 90 187 47 60 84 199 143
- $PROJ_DIR$\..\Core\Src\modbus_crc.c
+ $PROJ_DIR$\..\Core\Src\gpio.c
ICCARM
- 61
+ 50
__cstat
- 142
+ 132
ICCARM
- 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
+ 175 72 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103 136 137 224 119 123 81 69 214 222 61 157 59 90 187 47 60 84 199 143
- $PROJ_DIR$\..\Core\Src\modbus_log.c
+ $PROJ_DIR$\..\Core\Src\main.c
ICCARM
- 106
+ 168
__cstat
- 122
+ 77
ICCARM
- 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
+ 72 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103 175 136 137 224 119 123 81 69 214 222 61 157 59 90 187 47 60 84 199 143 66
- $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c
+ $PROJ_DIR$\..\Core\Src\modbus_crc.c
ICCARM
- 163
+ 116
__cstat
- 107
+ 92
ICCARM
- 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
+ 61 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 149 180 193 83 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c
+ $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c
ICCARM
- 137
+ 109
__cstat
- 102
+ 225
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
+ 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 149 180 193 83 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Core\Src\dma.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c
ICCARM
- 148
+ 158
__cstat
- 83
+ 63
ICCARM
- 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
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c
+ $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c
ICCARM
- 82
+ 184
__cstat
- 159
+ 73
ICCARM
- 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
+ 72 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Core\Src\usart.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c
ICCARM
- 156
+ 93
__cstat
- 66
+ 153
ICCARM
- 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
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Core\Src\gpio.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c
ICCARM
- 222
+ 138
__cstat
- 132
+ 182
ICCARM
- 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
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Core\Src\main.c
+ $PROJ_DIR$\..\Core\Src\dma.c
ICCARM
- 73
+ 100
__cstat
- 115
+ 207
ICCARM
- 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
+ 66 72 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c
+ $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c
ICCARM
- 121
+ 159
__cstat
- 173
+ 204
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
+ 72 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103 107 47 60 222 224 84 199 143
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c
-
-
- ICCARM
- 51
-
-
- __cstat
- 90
-
-
-
+ $PROJ_DIR$\startup_stm32f407xx.s
+
- 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
+ AARM
+ 221
-
+
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c
+ $PROJ_DIR$\..\Core\Src\usart.c
ICCARM
- 183
+ 217
__cstat
- 144
+ 190
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
+ 137 72 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103 224 119 123 81 69 214 222 61 157 59 136 90 187 47 60 84 199 143
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c
+ $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c
ICCARM
- 185
+ 82
__cstat
- 113
+ 227
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
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c
ICCARM
- 220
+ 95
__cstat
- 63
+ 124
-
-
- 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_hal_dma.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c
ICCARM
- 57
+ 115
__cstat
- 78
+ 202
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
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c
ICCARM
- 149
+ 130
__cstat
- 162
+ 111
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
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c
ICCARM
- 75
+ 178
__cstat
- 225
+ 70
-
-
- 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_hal_pwr.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c
ICCARM
- 154
+ 151
__cstat
- 152
+ 191
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
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c
ICCARM
- 96
+ 161
__cstat
- 50
+ 179
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
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c
ICCARM
- 140
+ 148
__cstat
- 213
+ 197
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
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c
ICCARM
- 169
+ 105
__cstat
- 64
+ 98
-
-
- 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_crc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c
ICCARM
- 209
+ 68
__cstat
- 130
+ 147
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c
ICCARM
- 187
+ 218
__cstat
- 79
+ 53
-
-
- 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_hal_gpio.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c
ICCARM
- 232
+ 97
__cstat
- 60
+ 87
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
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c
ICCARM
- 158
+ 88
__cstat
- 203
+ 117
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c
ICCARM
- 181
+ 71
__cstat
- 86
+ 126
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
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c
ICCARM
- 112
+ 101
__cstat
- 119
+ 122
+
+
+ ICCARM
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
+
+
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c
ICCARM
- 71
+ 163
__cstat
- 54
+ 166
+
+
+ ICCARM
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
+
+
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c
ICCARM
- 76
+ 91
__cstat
- 229
+ 165
+
+
+ ICCARM
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
+
+
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c
ICCARM
- 147
+ 94
__cstat
- 80
+ 120
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
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c
ICCARM
- 211
+ 58
__cstat
- 231
+ 141
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
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c
ICCARM
- 131
+ 135
__cstat
- 164
+ 57
-
-
- 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_i2c.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c
ICCARM
- 70
+ 112
__cstat
- 165
+ 140
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c
ICCARM
- 133
+ 170
__cstat
- 81
+ 118
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c
ICCARM
- 111
+ 127
__cstat
- 56
+ 206
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c
ICCARM
- 160
+ 155
__cstat
- 93
+ 213
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
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c
ICCARM
- 174
+ 231
__cstat
- 189
+ 89
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
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c
ICCARM
- 126
+ 195
__cstat
- 212
+ 188
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
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c
ICCARM
- 201
+ 209
__cstat
- 97
+ 210
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
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c
ICCARM
- 47
+ 104
__cstat
- 59
+ 160
-
-
- [ROOT_NODE]
-
+
- ILINK
- 196 145
+ ICCARM
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
-
+
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c
ICCARM
- 95
+ 65
__cstat
- 208
+ 198
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c
ICCARM
- 101
+ 133
__cstat
- 184
+ 121
+
+
+ ICCARM
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
+
+
- $PROJ_DIR$\..\UCOS\Ports\os_dbg.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c
ICCARM
- 65
+ 229
__cstat
- 53
+ 181
ICCARM
- 139 52 98 69 124 44 171 214 46 67 166 190 215
+ 149 180 193 83 86 114 150 146 162 167 215 211 216 142 134 78 113 48 76 144 230 110 186 203 226 56 156 205 139 174 164 49 52 189 55 219 103
- $PROJ_DIR$\..\UCOS\Config\app_hooks.c
+ $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c
ICCARM
- 123
+ 67
__cstat
- 206
+ 232
-
-
- ICCARM
- 48 139 52 98 69 124 44 171 214 46 67 166 190 215
-
-
- $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm
+ $PROJ_DIR$\test.1\Exe\test.1.out
- AARM
- 188
+ ILINK
+ 192
+
+
+ OBJCOPY
+ 99
+
+
+ ILINK
+ 177 172 100 85 50 168 116 169 129 194 79 221 158 93 138 58 161 133 195 94 101 71 209 155 184 163 130 229 115 151 148 104 82 97 231 91 159 178 65 67 135 95 105 68 127 218 88 112 170 109 75 125 217 96 51 74 62
+
+
$PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c
ICCARM
- 217
+ 194
__cstat
- 172
+ 185
ICCARM
- 139 52 98 69 124 44 171 214 46 67 166 190 215
+ 47 60 222 224 162 167 215 211 216 110 84 199 143
- $PROJ_DIR$\test.1\Exe\test.1.out
+ $PROJ_DIR$\..\UCOS\Config\app_hooks.c
- ILINK
- 145
+ ICCARM
+ 172
- OBJCOPY
- 230
+ __cstat
+ 128
- 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
+ ICCARM
+ 145 47 60 222 224 162 167 215 211 216 110 84 199 143
- $PROJ_DIR$\..\UCOS\Source\ucos_ii.c
+ $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm
+
+
+ AARM
+ 129
+
+
+
+
+ $PROJ_DIR$\..\UCOS\Ports\os_dbg.c
ICCARM
- 114
+ 79
__cstat
- 204
+ 176
ICCARM
- 139 52 98 69 124 44 171 214 46 67 166 190 215 157 202 125 100 45 224 161 223 94 167
+ 47 60 222 224 162 167 215 211 216 110 84 199 143
- $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c
+ $PROJ_DIR$\..\UCOS\Source\ucos_ii.c
ICCARM
- 191
+ 125
__cstat
- 92
+ 212
+
+
+ ICCARM
+ 47 60 222 224 162 167 215 211 216 110 84 199 143 196 106 220 54 108 228 131 223 154 64
+
+
diff --git a/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim b/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim
index eaeff64..741a8ae 100644
Binary files a/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim and b/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim differ