Pārlūkot izejas kodu

修复逻辑更改后绝对模式失效的问题

master
JIU JIALIN pirms 1 mēnesi
vecāks
revīzija
a90a5297c2
4 mainītis faili ar 298 papildinājumiem un 303 dzēšanām
  1. +33
    -38
      PLSR/PLSR/Core/Src/tim.c
  2. +2
    -2
      PLSR/PLSR/EWARM/settings/test.1.dnx
  3. +263
    -263
      PLSR/PLSR/EWARM/test.1.dep
  4. Binārs
      PLSR/PLSR/EWARM/test.1/Exe/test.1.sim

+ 33
- 38
PLSR/PLSR/Core/Src/tim.c Parādīt failu

@@ -1109,7 +1109,16 @@ void Calculate_PluseNum_Simplified(PLSR_RouteConfig_t *route)
uint32_t vt = current_section->target_freq; // 目标频率
uint32_t a = route->accel_rate; // 加速度
uint32_t d = route->decel_rate; // 减速度
uint32_t total_pulses = current_section->target_pulse; // 总脉冲数
uint32_t total_pulses = 0;
if(route->mode == PLSR_MODE_RELATIVE)
{
total_pulses = current_section->target_pulse; // 总脉冲数
}
else
{
total_pulses = current_section->target_pulse - route->pulse_count; // 总脉冲数
}
// 防止除零错误
if (a == 0) a = 1;
@@ -1255,7 +1264,15 @@ void Calculate_PluseNum(PLSR_RouteConfig_t *route)
uint32_t vf = 0; // 最终频率(必须为0)
uint32_t a = route->accel_rate; // 加速度
uint32_t d = route->decel_rate; // 减速度
uint32_t total_pulses = current_section->target_pulse; // 总脉冲数
uint32_t total_pulses = 0;
if(route->mode == PLSR_MODE_RELATIVE)
{
total_pulses = current_section->target_pulse; // 总脉冲数
}
else
{
total_pulses = current_section->target_pulse - route->pulse_count; // 总脉冲数
}
// 防止除零错误
if (a == 0) a = 1;
@@ -1673,6 +1690,15 @@ void PLSR_Route_Init(PLSR_RouteConfig_t* route)
route->freq_step = 0; // 频率步进值:清零
route->wait_start_tick = 0; // 等待开始时刻:清零
route->act_start_tick = 0; // ACT开始时刻:清零
// 初始化模式相关参数
route->prevPulseCount = 0; // 累积脉冲计数:清零
route->pulse_count = 0; // 当前脉冲计数:清零
// 模式验证:确保mode字段有效
if (route->mode != PLSR_MODE_RELATIVE && route->mode != PLSR_MODE_ABSOLUTE) {
route->mode = PLSR_MODE_RELATIVE; // 默认使用相对模式
}

PLSR_TIM6_SetUpdateFreq(100); //初始化TIM6更新频率为1000us
}
@@ -1697,8 +1723,6 @@ void PLSR_Route_Start(PLSR_RouteConfig_t* route)
route->route_state = PLSR_ROUTE_RUNNING; // 设置路径状态为运行中
route->current_section_num = route->start_section; // 从起始段开始执行
route->current_freq = route->start_freq; // 设置当前频率为起始频率
route->pulse_count = 0; // 清零脉冲计数
route->prevPulseCount = 0; // 清零上一段脉冲计数
route->run_state = PLSR_STATE_IDLE; // 设置运行状态为空闲
// 重置全局脉冲计数器
@@ -1737,9 +1761,6 @@ void PLSR_Route_Stop(PLSR_RouteConfig_t* route)
// 重置计数器
__HAL_TIM_SET_COUNTER(&htim2, 0);
// 注意:不重置AllPluse,保持累计脉冲数
// AllPluse = 0; // 注释掉,避免重复加速问题
//route->pulse_count = 0;
route->prevPulseCount = 0;
route->freq_step = 0;
@@ -1961,7 +1982,11 @@ void PLSR_Section_SwitchNext(PLSR_RouteConfig_t* route)
PLSR_SectionConfig_t* current_section = &route->section[route->current_section_num - 1];
uint8_t next_section_num = current_section->next_section;
route->prevPulseCount += current_section->target_pulse;
// 只在相对模式下累加脉冲计数,绝对模式下不累加
if (route->mode == PLSR_MODE_RELATIVE) {
route->prevPulseCount += current_section->target_pulse;
}
// 绝对模式下prevPulseCount保持不变,因为每段的target_pulse已经是绝对位置
// 检查下一段是否有效
if (next_section_num-1 == 0 || next_section_num > PLSR_MAX_SECTIONS)
{
@@ -2137,36 +2162,6 @@ void PLSR_ChackWait_End(PLSR_RouteConfig_t* route)
}
}

/**
* @brief 检查脉冲是否完成
* @param route: 路径控制结构体指针
* @retval 1: 完成, 0: 未完成
*/
uint8_t PLSR_Section_CheckPulseComplete(PLSR_RouteConfig_t* route)
{
if (route == NULL) return 0;
PLSR_SectionConfig_t* current_section = &route->section[route->current_section_num - 1];
// 根据等待条件类型检查
if (current_section->wait_condition.wait_type == PLSR_WAIT_PLUSEEND ||
current_section->wait_condition.wait_type == PLSR_WAIT_EXT_OR_END)
{
uint32_t target_pulse;
if (route->mode == PLSR_MODE_RELATIVE)
{
target_pulse = current_section->target_pulse + route->prevPulseCount; //1000 2000 3000 2->3 2000+1000 route->pulse_count>=3000
}
else
{
target_pulse = current_section->target_pulse;
}
return (route->pulse_count >= target_pulse) ? 1 : 0;
}
return 0;
}

/**
* @brief 获取任务通知标志


+ 2
- 2
PLSR/PLSR/EWARM/settings/test.1.dnx Parādīt failu

@@ -12,12 +12,12 @@
<ByteLimit>50</ByteLimit>
</Stack>
<StLinkDriver>
<stlinkserialNo>46232557</stlinkserialNo>
<stlinkfoundProbes />
<CStepIntDis>_ 0</CStepIntDis>
<LeaveTargetRunning>_ 0</LeaveTargetRunning>
<stlinkResetStyle>0</stlinkResetStyle>
<stlinkResetStrategy>2</stlinkResetStrategy>
<stlinkserialNo>46232557</stlinkserialNo>
<stlinkfoundProbes />
</StLinkDriver>
<DebugChecksum>
<Checksum>2012208745</Checksum>


+ 263
- 263
PLSR/PLSR/EWARM/test.1.dep Parādīt failu

@@ -5,677 +5,677 @@
<configuration>
<name>test.1</name>
<outputs>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c</file>
<file>$PROJ_DIR$\..\Core\Src\modbus_crc.c</file>
<file>$PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c</file>
<file>$PROJ_DIR$\..\Core\Src\gpio.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c</file>
<file>$PROJ_DIR$\..\Core\Src\flash_save.c</file>
<file>$PROJ_DIR$\..\Core\Src\usart.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c</file>
<file>$PROJ_DIR$\..\Core\Src\system_stm32f4xx.c</file>
<file>$PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c</file>
<file>$PROJ_DIR$\..\Core\Src\stm32f4xx_it.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c</file>
<file>$PROJ_DIR$\..\Core\Src\main.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c</file>
<file>$PROJ_DIR$\..\Core\Src\modbus_log.c</file>
<file>$PROJ_DIR$\startup_stm32f407xx.s</file>
<file>$PROJ_DIR$\..\Core\Src\dma.c</file>
<file>$PROJ_DIR$\..\Core\Src\tim.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c</file>
<file>$PROJ_DIR$\..\Core\Src\system_stm32f4xx.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c</file>
<file>$PROJ_DIR$\..\UCOS\Config\app_hooks.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c</file>
<file>$PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c</file>
<file>$PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm</file>
<file>$PROJ_DIR$\..\UCOS\Ports\os_dbg.c</file>
<file>$PROJ_DIR$\..\UCOS\Source\ucos_ii.c</file>
<file>$TOOLKIT_DIR$\inc\c\DLib_Defaults.h</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c</file>
<file>$PROJ_DIR$\..\Core\Src\usart.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c</file>
<file>$PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c</file>
<file>$PROJ_DIR$\..\Core\Src\tim.c</file>
<file>$PROJ_DIR$\startup_stm32f407xx.s</file>
<file>$PROJ_DIR$\..\Core\Src\dma.c</file>
<file>$PROJ_DIR$\..\Core\Src\modbus_crc.c</file>
<file>$PROJ_DIR$\..\Core\Src\main.c</file>
<file>$PROJ_DIR$\..\Core\Src\modbus_log.c</file>
<file>$PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c</file>
<file>$PROJ_DIR$\..\Core\Src\stm32f4xx_it.c</file>
<file>$PROJ_DIR$\..\Core\Src\flash_save.c</file>
<file>$PROJ_DIR$\..\Core\Src\gpio.c</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o</file>
<file>$TOOLKIT_DIR$\inc\c\stdint.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o</file>
<file>$PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h</file>
<file>$TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h</file>
<file>$PROJ_DIR$\test.1\Obj\system_stm32f4xx.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o</file>
<file>$TOOLKIT_DIR$\inc\c\yvals.h</file>
<file>$PROJ_DIR$\..\UCOS\Source\ucos_ii.h</file>
<file>$PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o</file>
<file>$TOOLKIT_DIR$\lib\dl7M_tlf.a</file>
<file>$PROJ_DIR$\..\Core\Inc\flash_save.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o</file>
<file>$TOOLKIT_DIR$\inc\c\DLib_Defaults.h</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h</file>
<file>$PROJ_DIR$\..\UCOS\Config\os_cfg.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o</file>
<file>$PROJ_DIR$\test.1\Obj\system_stm32f4xx.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o</file>
<file>$PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h</file>
<file>$PROJ_DIR$\..\Core\Inc\tim.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o</file>
<file>$PROJ_DIR$\..\UCOS\Source\ucos_ii.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o</file>
<file>$PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o</file>
<file>$TOOLKIT_DIR$\inc\c\yvals.h</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h</file>
<file>$PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h</file>
<file>$PROJ_DIR$\test.1\Exe\test.1.hex</file>
<file>$TOOLKIT_DIR$\inc\c\stdio.h</file>
<file>$TOOLKIT_DIR$\lib\shb_l.a</file>
<file>$TOOLKIT_DIR$\inc\c\stddef.h</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h</file>
<file>$PROJ_DIR$\test.1\Obj\modbus_log.o</file>
<file>$TOOLKIT_DIR$\inc\c\DLib_Product.h</file>
<file>$PROJ_DIR$\test.1\Obj\dma.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o</file>
<file>$PROJ_DIR$\..\Core\Inc\main.h</file>
<file>$PROJ_DIR$\test.1\Exe\test.1.out</file>
<file>$TOOLKIT_DIR$\inc\c\DLib_Product_string.h</file>
<file>$PROJ_DIR$\test.1\Obj\usart.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h</file>
<file>$TOOLKIT_DIR$\lib\m7M_tls.a</file>
<file>$PROJ_DIR$\test.1\Exe\test.1.hex</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h</file>
<file>$PROJ_DIR$\..\Core\Inc\main.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h</file>
<file>$PROJ_DIR$\..\UCOS\Source\os_trace.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o</file>
<file>$PROJ_DIR$\test.1\Obj\tim.o</file>
<file>$PROJ_DIR$\..\UCOS\Config\app_cfg.h</file>
<file>$PROJ_DIR$\..\Core\Inc\tim.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_it.o</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o</file>
<file>$PROJ_DIR$\..\Core\Inc\flash_save.h</file>
<file>$PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h</file>
<file>$TOOLKIT_DIR$\inc\c\stdlib.h</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h</file>
<file>$TOOLKIT_DIR$\lib\m7M_tls.a</file>
<file>$TOOLKIT_DIR$\inc\c\DLib_Product_string.h</file>
<file>$PROJ_DIR$\stm32f407xx_flash.icf</file>
<file>$TOOLKIT_DIR$\inc\c\ctype.h</file>
<file>$TOOLKIT_DIR$\lib\shb_l.a</file>
<file>$PROJ_DIR$\..\Core\Inc\usart.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o</file>
<file>$PROJ_DIR$\..\UCOS\Source\os_trace.h</file>
<file>$PROJ_DIR$\..\UCOS\Config\app_cfg.h</file>
<file>$PROJ_DIR$\test.1\Obj\ucos_ii.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o</file>
<file>$TOOLKIT_DIR$\inc\c\stdlib.h</file>
<file>$PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h</file>
<file>$TOOLKIT_DIR$\inc\c\ctype.h</file>
<file>$PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o</file>
<file>$PROJ_DIR$\test.1\Obj\tim.o</file>
<file>$TOOLKIT_DIR$\inc\c\stdio.h</file>
<file>$TOOLKIT_DIR$\inc\c\stddef.h</file>
<file>$PROJ_DIR$\stm32f407xx_flash.icf</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h</file>
<file>$PROJ_DIR$\test.1\List\test.1.map</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o</file>
<file>$TOOLKIT_DIR$\inc\c\DLib_float_setup.h</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o</file>
<file>$PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h</file>
<file>$TOOLKIT_DIR$\inc\c\ysizet.h</file>
<file>$PROJ_DIR$\test.1\Obj\app_hooks.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o</file>
<file>$PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm</file>
<file>$PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o</file>
<file>$PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h</file>
<file>$PROJ_DIR$\test.1\Obj\os_dbg.o</file>
<file>$PROJ_DIR$\test.1\Obj\modbus_crc.o</file>
<file>$PROJ_DIR$\..\UCOS\Ports\os_dbg.c</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o</file>
<file>$PROJ_DIR$\..\Core\Inc\modbus_log.h</file>
<file>$PROJ_DIR$\..\UCOS\Config\app_hooks.c</file>
<file>$PROJ_DIR$\test.1\Obj\flash_save.o</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h</file>
<file>$PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c</file>
<file>$PROJ_DIR$\..\UCOS\Source\ucos_ii.c</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o</file>
<file>$PROJ_DIR$\test.1\Obj\main.o</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c</file>
<file>$TOOLKIT_DIR$\lib\rt7M_tl.a</file>
<file>$PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o</file>
<file>$TOOLKIT_DIR$\inc\c\math.h</file>
<file>$PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o</file>
<file>$PROJ_DIR$\test.1\Obj\os_cpu_a.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o</file>
<file>$PROJ_DIR$\..\UCOS\Ports\os_cpu.h</file>
<file>$TOOLKIT_DIR$\inc\c\iccarm_builtin.h</file>
<file>$PROJ_DIR$\test.1\List\test.1.map</file>
<file>$TOOLKIT_DIR$\inc\c\math.h</file>
<file>$PROJ_DIR$\test.1\Obj\gpio.o</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h</file>
<file>$PROJ_DIR$\..\Core\Inc\modbus_crc.h</file>
<file>$TOOLKIT_DIR$\inc\c\stdarg.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o</file>
<file>$PROJ_DIR$\test.1\Obj\modbus_log.o</file>
<file>$PROJ_DIR$\test.1\Obj\os_cpu_c.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h</file>
<file>$TOOLKIT_DIR$\inc\c\DLib_Config_Full.h</file>
<file>$TOOLKIT_DIR$\inc\c\ycheck.h</file>
<file>$PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o</file>
<file>$PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o</file>
<file>$PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h</file>
<file>$TOOLKIT_DIR$\inc\c\string.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o</file>
<file>$PROJ_DIR$\test.1\Obj\os_dbg.o</file>
<file>$TOOLKIT_DIR$\inc\c\DLib_float_setup.h</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o</file>
<file>$PROJ_DIR$\test.1\Obj\os_cpu_c.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o</file>
<file>$PROJ_DIR$\..\Core\Inc\usart.h</file>
<file>$PROJ_DIR$\test.1\Obj\flash_save.o</file>
<file>$PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o</file>
<file>$TOOLKIT_DIR$\inc\c\stdarg.h</file>
<file>$TOOLKIT_DIR$\inc\c\ysizet.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o</file>
<file>$PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h</file>
<file>$TOOLKIT_DIR$\lib\dl7M_tlf.a</file>
<file>$PROJ_DIR$\..\Core\Inc\modbus_log.h</file>
<file>$PROJ_DIR$\..\UCOS\Ports\os_cpu.h</file>
<file>$PROJ_DIR$\test.1\Exe\test.1.out</file>
<file>$TOOLKIT_DIR$\inc\c\string.h</file>
<file>$PROJ_DIR$\test.1\Obj\dma.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o</file>
<file>$TOOLKIT_DIR$\inc\c\ycheck.h</file>
<file>$TOOLKIT_DIR$\inc\c\DLib_Config_Full.h</file>
<file>$PROJ_DIR$\test.1\Obj\modbus_crc.o</file>
<file>$PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o</file>
<file>$PROJ_DIR$\test.1\Obj\usart.o</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h</file>
<file>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h</file>
<file>$PROJ_DIR$\test.1\Obj\main.o</file>
<file>$PROJ_DIR$\test.1\Obj\app_hooks.o</file>
<file>$PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o</file>
<file>$PROJ_DIR$\test.1\Obj\os_cpu_a.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o</file>
<file>$PROJ_DIR$\test.1\Obj\stm32f4xx_it.o</file>
</outputs>
<file>
<name>[ROOT_NODE]</name>
<outputs>
<tool>
<name>ILINK</name>
<file> 152 113</file>
<file> 81 139</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 155</file>
<file> 162</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 132</file>
<file> 136</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Core\Src\modbus_crc.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 158</file>
<file> 121</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 58</file>
<file> 65</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Core\Src\gpio.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 126</file>
<file> 54</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 122</file>
<file> 157</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 89</file>
<file> 84</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 86</file>
<file> 56</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Core\Src\flash_save.c</name>
<name>$PROJ_DIR$\..\Core\Src\system_stm32f4xx.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 140</file>
<file> 64</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Core\Src\usart.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 163</file>
<file> 132</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 66</file>
<file> 50</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Core\Src\system_stm32f4xx.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 56</file>
<file> 158</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 67</file>
<file> 79</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Core\Src\stm32f4xx_it.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 93</file>
<file> 108</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 83</file>
<file> 164</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Core\Src\main.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 166</file>
<file> 98</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c</name>
<name>$PROJ_DIR$\..\Core\Src\usart.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 162</file>
<file> 83</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Core\Src\modbus_log.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 129</file>
<file> 71</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\startup_stm32f407xx.s</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c</name>
<outputs>
<tool>
<name>AARM</name>
<file> 147</file>
<name>ICCARM</name>
<file> 151</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Core\Src\dma.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 154</file>
<file> 156</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Core\Src\tim.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 90</file>
<file> 73</file>
</tool>
</outputs>
<inputs>
<tool>
<name>ICCARM</name>
<file> 92 85 136 74 165 112 105 141 120 54 156 72 37 157 82 64 159 168 125 117 107 65 78 145 109 133 87 84 70 38 69 110 164 73 148 79 94 121 97 139 76 153 99 106 104 55 144 127 96 150 119 115 62 91 59 151 88</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 63</file>
<file> 43</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 114</file>
<file> 112</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 137</file>
<file> 130</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 81</file>
<file> 60</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 134</file>
<file> 45</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 146</file>
<file> 85</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 123</file>
<file> 119</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\UCOS\Config\app_hooks.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 167</file>
<file> 69</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 111</file>
<file> 78</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 130</file>
<file> 153</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 60</file>
<file> 165</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c</name>
<name>$PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 61</file>
<file> 68</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c</name>
<name>$PROJ_DIR$\..\Core\Src\tim.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 71</file>
<file> 102</file>
</tool>
</outputs>
<inputs>
<tool>
<name>ICCARM</name>
<file> 67 80 160 48 131 142 149 92 152 44 148 51 61 147 76 53 109 115 138 154 66 74 104 110 106 161 91 90 55 46 62 150 127 70 120 86 87 146 94 97 103 155 82 95 93 49 144 143 58 122 140 159 52 100 63 137 99</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm</name>
<name>$PROJ_DIR$\startup_stm32f407xx.s</name>
<outputs>
<tool>
<name>AARM</name>
<file> 124</file>
<file> 114</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\UCOS\Ports\os_dbg.c</name>
<name>$PROJ_DIR$\..\Core\Src\dma.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 135</file>
<file> 77</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\UCOS\Source\ucos_ii.c</name>
<name>$PROJ_DIR$\..\Core\Src\modbus_crc.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 102</file>
<file> 117</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c</name>
<name>$PROJ_DIR$\..\Core\Src\main.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 108</file>
<file> 133</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c</name>
<name>$PROJ_DIR$\..\Core\Src\modbus_log.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 57</file>
<file> 75</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c</name>
<name>$PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 131</file>
<file> 72</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c</name>
<name>$PROJ_DIR$\..\Core\Src\stm32f4xx_it.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 103</file>
<file> 168</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c</name>
<name>$PROJ_DIR$\..\Core\Src\flash_save.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 95</file>
<file> 124</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c</name>
<name>$PROJ_DIR$\..\Core\Src\gpio.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 80</file>
<file> 141</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c</name>
<name>$PROJ_DIR$\test.1\Exe\test.1.out</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 128</file>
<name>ILINK</name>
<file> 139</file>
</tool>
<tool>
<name>OBJCOPY</name>
<file> 89</file>
</tool>
</outputs>
<inputs>
<tool>
<name>ILINK</name>
<file> 105 111 77 124 141 133 117 75 166 163 116 114 73 156 71 54 84 121 157 158 65 162 112 45 68 79 151 50 98 136 108 43 72 85 130 164 168 56 60 132 119 78 69 153 165 145 47 167 59 64 102 101 83 96 135 88 57</file>
</tool>
</inputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 160</file>
<file> 145</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c</name>
<name>$PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 161</file>
<name>AARM</name>
<file> 166</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c</name>
<name>$PROJ_DIR$\..\UCOS\Ports\os_dbg.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 118</file>
<file> 116</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c</name>
<name>$PROJ_DIR$\..\UCOS\Config\app_hooks.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 138</file>
<file> 111</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 143</file>
<file> 47</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 101</file>
<file> 59</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c</name>
<name>$PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 68</file>
<file> 163</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c</name>
<name>$PROJ_DIR$\..\UCOS\Source\ucos_ii.c</name>
<outputs>
<tool>
<name>ICCARM</name>
<file> 142</file>
<file> 101</file>
</tool>
</outputs>
</file>
<file>
<name>$PROJ_DIR$\test.1\Exe\test.1.out</name>
<name>$PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c</name>
<outputs>
<tool>
<name>OBJCOPY</name>
<file> 75</file>
</tool>
<tool>
<name>ILINK</name>
<file> 113</file>
<name>ICCARM</name>
<file> 167</file>
</tool>
</outputs>
<inputs>
<tool>
<name>ILINK</name>
<file> 100 167 154 140 126 166 158 129 124 130 135 147 63 114 66 89 83 162 155 132 86 122 161 60 58 108 118 81 101 146 160 68 67 80 131 137 93 95 103 138 143 142 61 111 134 128 71 123 57 56 90 102 163 77 116 98 149</file>
</tool>
</inputs>
</file>
</configuration>
</project>

Binārs
PLSR/PLSR/EWARM/test.1/Exe/test.1.sim Parādīt failu


Notiek ielāde…
Atcelt
Saglabāt