diff --git a/PLSR/PLSR/Core/Src/main.c b/PLSR/PLSR/Core/Src/main.c index 6172bb3..2e0c63b 100644 --- a/PLSR/PLSR/Core/Src/main.c +++ b/PLSR/PLSR/Core/Src/main.c @@ -262,20 +262,29 @@ static void KeyTask(void *p_arg) (void)p_arg; OSTimeDly(2000); //<等待硬件完全初始化. - + uint8_t startflag = 0; // 初始化PLSR路径配置 PLSR_Route_Init(&g_plsr_route); - PLSR_Route_Start(&g_plsr_route); + //PLSR_Route_Start(&g_plsr_route); while (1) { - // 按键任务现在只负责按键检测和简单的控制逻辑 - // 段切换逻辑已移至专用的高优先级段切换任务中处理 - - // 可以在这里添加按键检测、LED控制等简单功能 - // 例如:检测按键状态、更新LED显示等 - - OSTimeDlyHMSM(0, 0, 0, 10); /* 延时10ms */ + if(ModbusSlave.holding_regs[0x2000] == 1) //按下发送脉冲按钮后,向0x3000地址写1,松手写2,设置地址偏移为0x1000,所以这里值为0x2000 + { + startflag = 1; + g_plsr_route.route_state = PLSR_ROUTE_IDLE; + } + else + { + if(startflag == 1) + { + PLSR_Route_Init(&g_plsr_route); + PLSR_Route_Start(&g_plsr_route); + startflag = 0; + //PLSR_Section_Process(&g_plsr_route); + } + } + OSTimeDlyHMSM(0, 0, 0, 10); /* 延时10ms */ } } diff --git a/PLSR/PLSR/Core/Src/tim.c b/PLSR/PLSR/Core/Src/tim.c index abfa0b4..fe8469e 100644 --- a/PLSR/PLSR/Core/Src/tim.c +++ b/PLSR/PLSR/Core/Src/tim.c @@ -1703,41 +1703,6 @@ void PLSR_Route_Start(PLSR_RouteConfig_t* route) // 启动第一段 PLSR_Section_StartNewSection(route); - // 计算第一段需要发送的脉冲数 - PLSR_SectionConfig_t* first_section = &route->section[route->current_section_num - 1]; - uint32_t first_pulse_target; - if (route->mode == PLSR_MODE_RELATIVE) - { - // 相对模式:每段发送指定的脉冲数 - first_pulse_target = first_section->target_pulse; - } - else - { - // 绝对模式:发送到绝对位置所需的脉冲数 - // 第一段从0位置开始,所以脉冲数就是目标位置 - first_pulse_target = first_section->target_pulse; - } - - // 确保脉冲数有效 - if (first_pulse_target > 0 && first_pulse_target <= 0xFFFF) - { - __HAL_TIM_SetAutoreload(&htim2, first_pulse_target); - } - else - { - // 脉冲数无效,设置为1避免除零错误 - __HAL_TIM_SetAutoreload(&htim2, 1); - } - - // 重置TIM2计数器 - __HAL_TIM_SET_COUNTER(&htim2, 0); - - if(route->start_freq > 0) - { - PLSR_PWM_SetFrequency(route->start_freq); // 设置初始PWM频率 - PLSR_PWM_Start(); // 立即启动PWM输出 - } - // 启动定时器 PLSR_TIM6_Start(); // 启动TIM6用于频率更新和等待时间计时 HAL_TIM_Base_Start_IT(&htim2); // 启动TIM2中断用于段切换 @@ -1843,6 +1808,8 @@ void PLSR_Section_StartNewSection(PLSR_RouteConfig_t* route) // 设置本段的目标频率到路径控制结构体中 route->target_freq = current_section->target_freq; + if(current_section->section_num != route->section_num) + { // 根据等待条件决定运行状态和TIM2设置 if(current_section->wait_condition.wait_type == PLSR_WAIT_PLUSEEND) { @@ -1888,6 +1855,25 @@ void PLSR_Section_StartNewSection(PLSR_RouteConfig_t* route) __HAL_TIM_SetAutoreload(&htim2, route->decel_pulse_count); } } + } + else + { + if(route->run_state == PLSR_STATE_ACCEL) + { + // 如果是加速状态,设置TIM2自动重装值为加速脉冲数 + __HAL_TIM_SetAutoreload(&htim2, route->accel_pulse_count); + } + else if(route->run_state == PLSR_STATE_CONST) + { + // 如果是匀速状态,设置TIM2自动重装值为匀速脉冲数 + __HAL_TIM_SetAutoreload(&htim2, route->const_pulse_count); + } + else if(route->run_state == PLSR_STATE_DECEL) + { + // 如果是减速状态,设置TIM2自动重装值为减速脉冲数 + __HAL_TIM_SetAutoreload(&htim2, route->decel_pulse_count); + } + } // 重置TIM2计数器 __HAL_TIM_SET_COUNTER(&htim2, 0); diff --git a/PLSR/PLSR/EWARM/test.1.dep b/PLSR/PLSR/EWARM/test.1.dep index a5bb912..4d3d5b8 100644 --- a/PLSR/PLSR/EWARM/test.1.dep +++ b/PLSR/PLSR/EWARM/test.1.dep @@ -5,1240 +5,1240 @@ test.1 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c + $PROJ_DIR$\..\Core\Src\flash_save.c + $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Core\Src\modbus_log.c + $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Core\Src\usart.c $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_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_ll_i2c.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\startup_stm32f407xx.s + $PROJ_DIR$\..\Core\Src\modbus_crc.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.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.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_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c - $PROJ_DIR$\startup_stm32f407xx.s - $PROJ_DIR$\..\Core\Src\flash_save.c - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c - $PROJ_DIR$\..\Core\Src\tim.c - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c - $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c - $PROJ_DIR$\..\Core\Src\usart.c - $PROJ_DIR$\..\Core\Src\gpio.c - $PROJ_DIR$\..\Core\Src\main.c - $PROJ_DIR$\..\Core\Src\dma.c - $PROJ_DIR$\..\Core\Src\modbus_crc.c - $PROJ_DIR$\..\Core\Src\modbus_log.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.xcl - $PROJ_DIR$\test.1\Obj\gpio.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et - $PROJ_DIR$\test.1\Obj\tim.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o + $TOOLKIT_DIR$\inc\c\math.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o - $PROJ_DIR$\test.1\Obj\tim.o - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o + $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.xcl - $PROJ_DIR$\test.1\Obj\dma.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et - $PROJ_DIR$\test.1\Exe\test.1.out - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.xcl - $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et - $PROJ_DIR$\test.1\Obj\usart.xcl - $PROJ_DIR$\test.1\Obj\gpio.o - $PROJ_DIR$\test.1\Obj\os_dbg.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.xcl + $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.xcl + $PROJ_DIR$\test.1\Obj\os_dbg.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.xcl + $TOOLKIT_DIR$\inc\c\ycheck.h + $PROJ_DIR$\test.1\Obj\flash_save.o + $PROJ_DIR$\test.1\List\test.1.map + $PROJ_DIR$\..\UCOS\Source\os_trace.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h + $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o + $PROJ_DIR$\test.1\Obj\dma.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o + $TOOLKIT_DIR$\inc\c\DLib_Product.h $PROJ_DIR$\test.1\Exe\test.1.hex - $PROJ_DIR$\test.1\Obj\modbus_crc.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.xcl + $PROJ_DIR$\test.1\Obj\gpio.xcl + $TOOLKIT_DIR$\inc\c\DLib_float_setup.h + $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et + $TOOLKIT_DIR$\inc\c\stdlib.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o - $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h - $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o - $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o - $TOOLKIT_DIR$\inc\c\ycheck.h - $PROJ_DIR$\..\Core\Inc\main.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h - $TOOLKIT_DIR$\inc\c\stdint.h - $PROJ_DIR$\..\UCOS\Source\os_flag.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o + $PROJ_DIR$\test.1\Obj\modbus_crc.xcl + $PROJ_DIR$\..\UCOS\Source\os_mutex.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.xcl $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o - $TOOLKIT_DIR$\inc\c\yvals.h - $PROJ_DIR$\..\Core\Inc\gpio.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h - $PROJ_DIR$\..\Core\Inc\dma.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.xcl - $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h - $TOOLKIT_DIR$\inc\c\string.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et - $PROJ_DIR$\..\UCOS\Source\os_mbox.c - $PROJ_DIR$\..\UCOS\Source\os_sem.c - $PROJ_DIR$\..\Core\Inc\flash_save.h - $PROJ_DIR$\..\UCOS\Source\os_time.c - $TOOLKIT_DIR$\inc\c\DLib_Product_string.h - $PROJ_DIR$\..\UCOS\Source\os_mem.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.xcl - $TOOLKIT_DIR$\lib\shb_l.a - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.xcl - $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_i2c_ex.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.xcl $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et - $PROJ_DIR$\..\UCOS\Source\os_task.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.xcl - $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o - $TOOLKIT_DIR$\lib\dl7M_tlf.a - $PROJ_DIR$\..\Core\Inc\usart.h - $TOOLKIT_DIR$\lib\rt7M_tl.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h + $PROJ_DIR$\test.1\Obj\os_dbg.o $TOOLKIT_DIR$\inc\c\ctype.h - $PROJ_DIR$\stm32f407xx_flash.icf + $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o + $PROJ_DIR$\test.1\Obj\usart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o $TOOLKIT_DIR$\lib\m7M_tls.a - $PROJ_DIR$\..\UCOS\Source\os_mutex.c - $PROJ_DIR$\..\UCOS\Source\os_q.c - $PROJ_DIR$\..\Core\Inc\modbus_log.h - $TOOLKIT_DIR$\inc\c\stdlib.h - $PROJ_DIR$\..\UCOS\Source\os_tmr.c - $PROJ_DIR$\..\Core\Inc\modbus_crc.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.xcl + $TOOLKIT_DIR$\inc\c\string.h + $PROJ_DIR$\test.1\Obj\usart.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et + $TOOLKIT_DIR$\lib\shb_l.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o + $PROJ_DIR$\test.1\Obj\os_cpu_c.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_core.c $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.xcl + $PROJ_DIR$\test.1\Obj\gpio.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.xcl $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o - $PROJ_DIR$\test.1\Obj\flash_save.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.xcl - $PROJ_DIR$\test.1\Obj\dma.__cstat.et - $PROJ_DIR$\test.1\Obj\main.__cstat.et - $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o - $PROJ_DIR$\test.1\Obj\ucos_ii.o - $PROJ_DIR$\test.1\Obj\dma.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o - $PROJ_DIR$\test.1\Obj\modbus_log.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et - $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et + $PROJ_DIR$\..\UCOS\Config\app_cfg.h + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o + $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.xcl + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.xcl + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $PROJ_DIR$\..\UCOS\Source\os_task.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.xcl + $PROJ_DIR$\test.1\Obj\main.xcl $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h - $PROJ_DIR$\..\UCOS\Source\os_core.c - $PROJ_DIR$\..\UCOS\Config\os_cfg.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.xcl - $TOOLKIT_DIR$\inc\c\stdio.h - $PROJ_DIR$\..\UCOS\Source\os_trace.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h - $PROJ_DIR$\..\UCOS\Source\ucos_ii.h - $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o + $PROJ_DIR$\test.1\Obj\dma.o + $PROJ_DIR$\test.1\Obj\main.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.xcl $PROJ_DIR$\test.1\Obj\modbus_log.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h - $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.xcl + $PROJ_DIR$\..\UCOS\Source\os_q.c + $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.xcl $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et - $PROJ_DIR$\..\UCOS\Config\app_cfg.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.xcl $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o + $PROJ_DIR$\stm32f407xx_flash.icf + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o + $PROJ_DIR$\test.1\Obj\modbus_crc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o + $PROJ_DIR$\test.1\Obj\tim.xcl + $PROJ_DIR$\..\Core\Inc\gpio.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o + $TOOLKIT_DIR$\lib\dl7M_tlf.a + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h + $PROJ_DIR$\..\UCOS\Source\os_mem.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o + $PROJ_DIR$\test.1\Obj\ucos_ii.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h $PROJ_DIR$\test.1\Obj\stm32f4xx_it.xcl - $TOOLKIT_DIR$\inc\c\ysizet.h - $PROJ_DIR$\..\UCOS\Ports\os_cpu.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h + $PROJ_DIR$\test.1\Obj\modbus_log.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h + $PROJ_DIR$\test.1\Obj\dma.xcl + $PROJ_DIR$\..\Core\Inc\usart.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.xcl $PROJ_DIR$\..\UCOS\Source\os.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h - $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h - $TOOLKIT_DIR$\inc\c\math.h + $PROJ_DIR$\test.1\Obj\tim.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o $PROJ_DIR$\..\Core\Inc\tim.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h - $TOOLKIT_DIR$\inc\c\iccarm_builtin.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h - $TOOLKIT_DIR$\inc\c\stddef.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h - $TOOLKIT_DIR$\inc\c\DLib_Product.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h - $TOOLKIT_DIR$\inc\c\DLib_float_setup.h - $PROJ_DIR$\..\UCOS\Config\app_hooks.c - $PROJ_DIR$\test.1\Obj\ucos_ii.xcl - $PROJ_DIR$\test.1\Obj\main.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\os_dbg.xcl + $PROJ_DIR$\test.1\Exe\test.1.out + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et + $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et + $PROJ_DIR$\..\Core\Inc\modbus_crc.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.xcl + $PROJ_DIR$\..\UCOS\Ports\os_cpu.h $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.xcl - $PROJ_DIR$\test.1\Obj\app_hooks.xcl - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o - $PROJ_DIR$\test.1\Obj\os_cpu_a.o + $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o + $PROJ_DIR$\..\UCOS\Source\os_sem.c + $PROJ_DIR$\..\Core\Inc\dma.h + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $PROJ_DIR$\..\Core\Inc\flash_save.h + $PROJ_DIR$\..\Core\Inc\modbus_log.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c - $PROJ_DIR$\test.1\Obj\gpio.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et $PROJ_DIR$\..\UCOS\Source\ucos_ii.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et - $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm - $PROJ_DIR$\test.1\List\test.1.map - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.xcl + $PROJ_DIR$\..\UCOS\Source\os_flag.c + $PROJ_DIR$\test.1\Obj\os_cpu_a.o + $PROJ_DIR$\test.1\Obj\usart.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_time.c + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.xcl + $TOOLKIT_DIR$\inc\c\iccarm_builtin.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o + $TOOLKIT_DIR$\inc\c\stdint.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + $PROJ_DIR$\test.1\Obj\app_hooks.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.xcl - $PROJ_DIR$\..\UCOS\Ports\os_dbg.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o + $PROJ_DIR$\test.1\Obj\tim.__cstat.et $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.xcl - $PROJ_DIR$\test.1\Obj\tim.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o - $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\..\UCOS\Config\app_hooks.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + $PROJ_DIR$\..\UCOS\Source\os_tmr.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et + $PROJ_DIR$\test.1\Obj\main.o + $PROJ_DIR$\..\UCOS\Source\os_mbox.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.xcl + $PROJ_DIR$\test.1\Obj\app_hooks.xcl + $TOOLKIT_DIR$\inc\c\yvals.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o - $PROJ_DIR$\test.1\Obj\main.xcl - $PROJ_DIR$\test.1\Obj\app_hooks.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.__cstat.et + $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et - $PROJ_DIR$\test.1\Obj\os_cpu_c.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o - $PROJ_DIR$\test.1\Obj\usart.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o + $TOOLKIT_DIR$\inc\c\stddef.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h + $PROJ_DIR$\..\Core\Inc\main.h + $TOOLKIT_DIR$\inc\c\stdio.h + $TOOLKIT_DIR$\inc\c\ysizet.h $PROJ_DIR$\test.1\Obj\flash_save.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et - $PROJ_DIR$\test.1\Obj\os_cpu_c.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.xcl - $PROJ_DIR$\test.1\Obj\modbus_crc.o - $PROJ_DIR$\test.1\Obj\usart.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o + $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h + $PROJ_DIR$\..\UCOS\Config\os_cfg.h + $PROJ_DIR$\..\UCOS\Source\ucos_ii.h + $PROJ_DIR$\test.1\Obj\ucos_ii.xcl + $TOOLKIT_DIR$\lib\rt7M_tl.a + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et + $PROJ_DIR$\test.1\Obj\os_cpu_c.o + $PROJ_DIR$\test.1\Obj\gpio.__cstat.et [ROOT_NODE] ILINK - 63 240 + 201 58 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c ICCARM - 49 + 136 - __cstat - 238 + BICOMP + 163 - BICOMP - 44 + __cstat + 97 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 270 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c ICCARM - 272 + 95 - __cstat - 106 + BICOMP + 55 - BICOMP - 148 + __cstat + 231 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c ICCARM - 57 + 98 - __cstat - 75 + BICOMP + 188 - BICOMP - 263 + __cstat + 90 ICCARM - 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 101 82 97 88 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 270 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 204 276 132 164 271 275 211 59 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Core\Src\flash_save.c ICCARM - 89 + 57 - __cstat - 67 + BICOMP + 273 - BICOMP - 228 + __cstat + 127 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 217 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 195 270 271 108 145 93 77 187 164 209 218 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c + $PROJ_DIR$\..\Core\Src\main.c ICCARM - 163 + 251 - __cstat - 144 + BICOMP + 148 - BICOMP - 74 + __cstat + 153 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 270 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 175 276 132 164 271 275 211 59 200 195 108 145 93 77 187 209 217 218 44 73 215 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c + $PROJ_DIR$\..\Core\Src\modbus_log.c ICCARM - 161 + 156 - __cstat - 243 + BICOMP + 189 - BICOMP - 257 + __cstat + 74 + + + ICCARM + 218 195 270 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 271 108 145 93 77 187 164 209 217 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c + $PROJ_DIR$\..\Core\Src\tim.c ICCARM - 55 + 198 - __cstat - 125 + BICOMP + 174 - BICOMP - 103 + __cstat + 242 + + + ICCARM + 200 270 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 195 271 108 145 93 77 187 164 209 217 218 44 73 276 132 275 211 59 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + $PROJ_DIR$\..\Core\Src\usart.c ICCARM - 118 + 99 - __cstat - 253 + BICOMP + 109 - BICOMP - 246 + __cstat + 228 + + + ICCARM + 195 270 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 271 108 145 93 77 187 164 209 217 218 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c ICCARM - 226 + 133 - __cstat - 166 + BICOMP + 137 - BICOMP - 260 + __cstat + 61 + + + ICCARM + 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 139 260 245 279 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c + $PROJ_DIR$\..\Core\Src\dma.c ICCARM - 146 + 152 - __cstat - 53 + BICOMP + 194 - BICOMP - 247 + __cstat + 68 + + + ICCARM + 215 270 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\..\Core\Src\gpio.c ICCARM - 98 + 129 - __cstat - 249 + BICOMP + 72 - BICOMP - 254 + __cstat + 282 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 175 270 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + $PROJ_DIR$\startup_stm32f407xx.s - ICCARM - 264 - - - __cstat - 236 - - - BICOMP - 274 + AARM + 213 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c + $PROJ_DIR$\..\Core\Src\modbus_crc.c ICCARM - 223 + 170 - __cstat - 47 + BICOMP + 80 - BICOMP - 122 + __cstat + 134 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 209 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 139 260 245 279 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $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 - 149 + 167 - __cstat - 252 + BICOMP + 147 - BICOMP - 59 + __cstat + 160 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c ICCARM - 139 + 104 - __cstat - 157 + BICOMP + 142 - BICOMP - 151 + __cstat + 208 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c ICCARM - 262 + 112 - __cstat - 241 + BICOMP + 87 - BICOMP - 54 + __cstat + 259 + + + ICCARM + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c ICCARM - 235 + 75 - __cstat - 175 + BICOMP + 267 - BICOMP - 279 + __cstat + 101 + + + ICCARM + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c ICCARM - 140 + 106 - __cstat - 58 + BICOMP + 49 - BICOMP - 165 + __cstat + 186 + + + ICCARM + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c ICCARM - 158 + 78 - __cstat - 190 + BICOMP + 110 - BICOMP - 66 + __cstat + 115 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c ICCARM - 81 + 144 - __cstat - 268 + BICOMP + 100 - BICOMP - 278 + __cstat + 96 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c ICCARM - 258 + 177 - __cstat - 77 + BICOMP + 210 - BICOMP - 113 + __cstat + 119 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c ICCARM - 92 + 135 - __cstat - 52 + BICOMP + 140 - BICOMP - 142 + __cstat + 250 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c ICCARM - 86 + 165 - __cstat - 224 + BICOMP + 107 - BICOMP - 80 + __cstat + 185 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c ICCARM - 231 + 83 - __cstat + BICOMP 124 - BICOMP - 141 + __cstat + 76 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c ICCARM - 270 + 244 - __cstat - 155 + BICOMP + 141 - BICOMP - 176 + __cstat + 62 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c ICCARM - 93 + 69 - __cstat - 145 + BICOMP + 82 - BICOMP - 69 + __cstat + 125 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c ICCARM - 126 + 199 - __cstat - 275 + BICOMP + 155 - BICOMP - 76 + __cstat + 121 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c ICCARM - 50 + 131 - __cstat - 68 + BICOMP + 130 - BICOMP - 267 + __cstat + 191 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c ICCARM - 179 + 241 - __cstat - 256 + BICOMP + 161 - BICOMP - 119 + __cstat + 89 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c ICCARM - 188 + 46 - __cstat - 120 + BICOMP + 265 - BICOMP - 261 + __cstat + 203 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c ICCARM - 164 + 166 - __cstat - 65 + BICOMP + 196 - BICOMP - 277 + __cstat + 184 ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c ICCARM - 189 + 212 - __cstat - 156 + BICOMP + 150 - BICOMP - 115 + __cstat + 205 - + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c + ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 171 + + + BICOMP + 111 - - - - $PROJ_DIR$\startup_stm32f407xx.s - - AARM + __cstat 154 - $PROJ_DIR$\..\Core\Src\flash_save.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c ICCARM - 150 - - - __cstat - 143 + 234 BICOMP - 273 + 190 - - - ICCARM - 109 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 128 91 177 105 111 130 136 104 192 138 135 + __cstat + 48 - + - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c ICCARM - 147 - - - __cstat - 245 + 268 BICOMP - 45 + 232 - - - ICCARM - 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + __cstat + 240 - + - $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c ICCARM - 56 - - - __cstat - 48 + 219 BICOMP - 255 + 128 - - - ICCARM - 205 91 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 128 177 105 111 130 136 104 192 138 109 135 204 219 181 191 174 195 178 + __cstat + 222 - + - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c ICCARM - 168 + 67 - __cstat - 62 + BICOMP + 85 - BICOMP - 60 + __cstat + 238 ICCARM - 91 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c ICCARM - 64 + 173 - __cstat - 170 + BICOMP + 102 - BICOMP - 193 + __cstat + 114 ICCARM - 91 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 185 181 191 192 177 174 195 178 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c ICCARM - 281 + 117 - __cstat - 271 + BICOMP + 157 - BICOMP - 71 + __cstat + 52 ICCARM - 128 91 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 177 105 111 130 136 104 192 138 109 135 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 - $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c ICCARM - 72 - - - __cstat - 234 + 122 BICOMP - 46 + 239 - - - ICCARM - 100 91 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + __cstat + 103 - + - $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c ICCARM - 222 - - - __cstat - 153 + 207 BICOMP - 265 + 225 - - - ICCARM - 91 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 100 181 191 192 177 174 195 178 205 128 105 111 130 136 104 138 109 135 204 219 102 + __cstat + 280 - + - $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c ICCARM - 160 - - - __cstat - 152 + 151 BICOMP - 61 + 206 - - - ICCARM - 102 91 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + __cstat + 51 - + - $PROJ_DIR$\..\Core\Src\modbus_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c ICCARM - 280 - - - __cstat - 70 + 169 BICOMP - 79 + 253 - - - ICCARM - 138 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 101 82 97 88 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 + __cstat + 176 - + - $PROJ_DIR$\..\Core\Src\modbus_log.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c ICCARM - 183 + 162 - __cstat - 182 + BICOMP + 258 - BICOMP - 162 + __cstat + 262 ICCARM - 135 128 91 101 82 97 88 94 83 85 95 90 99 87 84 214 200 199 211 208 215 172 187 212 194 218 209 206 202 216 197 207 180 184 171 217 210 203 213 186 177 105 111 130 136 104 192 138 109 + 139 260 245 279 138 120 50 235 56 255 216 263 70 230 45 118 233 274 149 64 266 272 91 65 172 84 192 269 264 220 179 183 257 256 261 193 143 @@ -1247,169 +1247,169 @@ OBJCOPY - 78 + 71 ILINK - 240 + 58 ILINK - 131 266 160 150 72 222 280 183 232 269 73 154 179 98 270 223 149 258 188 164 158 81 93 49 168 189 92 126 86 231 50 139 147 272 89 163 64 264 161 55 118 226 146 262 235 140 250 282 114 57 56 159 281 116 129 132 127 + 168 237 152 57 129 251 170 156 227 281 92 213 112 83 106 75 131 135 162 104 173 78 244 67 136 144 167 69 177 165 46 199 95 117 241 166 98 268 219 151 122 212 171 207 169 234 88 79 181 133 198 182 99 116 278 105 178 - $PROJ_DIR$\..\UCOS\Config\app_hooks.c + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c ICCARM - 266 + 92 - __cstat - 123 + BICOMP + 54 - BICOMP - 229 + __cstat + 66 ICCARM - 198 181 191 192 177 90 99 87 84 214 194 174 195 178 + 276 132 164 271 56 255 216 263 70 272 275 211 59 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c ICCARM - 114 + 281 - __cstat - 244 + BICOMP + 123 - BICOMP - 51 + __cstat + 159 + + + ICCARM + 276 132 164 271 56 255 216 263 70 272 275 211 59 + + - $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c ICCARM - 269 + 182 - __cstat - 259 + BICOMP + 277 - BICOMP - 276 + __cstat + 94 ICCARM - 181 191 192 177 90 99 87 84 214 194 174 195 178 + 276 132 164 271 56 255 216 263 70 272 275 211 59 126 226 252 180 81 158 214 146 229 249 - $PROJ_DIR$\..\UCOS\Source\ucos_ii.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c ICCARM - 159 - - - __cstat - 167 + 79 BICOMP - 221 + 86 - - - ICCARM - 181 191 192 177 90 99 87 84 214 194 174 195 178 173 96 107 112 133 134 108 121 110 137 + __cstat + 113 - + - $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c - AARM - 232 + ICCARM + 88 + + + BICOMP + 202 + + + __cstat + 60 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c ICCARM - 282 + 181 - __cstat - 169 + BICOMP + 53 - BICOMP - 227 + __cstat + 63 - $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\..\UCOS\Config\app_hooks.c ICCARM - 73 + 237 - __cstat - 201 + BICOMP + 254 - BICOMP - 225 + __cstat + 47 ICCARM - 181 191 192 177 90 99 87 84 214 194 174 195 178 + 197 276 132 164 271 56 255 216 263 70 272 275 211 59 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm - ICCARM - 250 - - - __cstat - 196 - - - BICOMP - 117 + AARM + 227 diff --git a/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim b/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim index 7c71ca3..92b22af 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