diff --git a/PLSR/PLSR/Core/Src/tim.c b/PLSR/PLSR/Core/Src/tim.c index b340191..fc7dd74 100644 --- a/PLSR/PLSR/Core/Src/tim.c +++ b/PLSR/PLSR/Core/Src/tim.c @@ -1468,8 +1468,7 @@ void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) { // TIM2中断:负责段切换逻辑 if(htim->Instance == TIM2) - { - + { // 立即停止PWM输出,防止多发脉冲 PLSR_PWM_Stop(); // 精确累加当前段已发送的脉冲数 @@ -1477,8 +1476,12 @@ void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) AllPluse += current_section_pulses; g_plsr_route.pulse_count = AllPluse; PLSR_UpdateGlobalPulseCount(AllPluse); - // 当前段脉冲发送完毕,进入等待状态 - g_plsr_route.run_state = PLSR_STATE_WAIT; + /*如果当前段不是最后一段且,等待条件为脉冲发送完成*/ + if(g_plsr_route.current_section_num < g_plsr_route.section_num + && g_plsr_route.section[g_plsr_route.current_section_num - 1].wait_condition.wait_type == PLSR_WAIT_PLUSEEND) + { + // 当前段脉冲发送完毕,进入等待状态 + g_plsr_route.run_state = PLSR_STATE_WAIT; // 检查等待条件是否满足 if (PLSR_Section_CheckWaitCondition(&g_plsr_route)) @@ -1486,14 +1489,6 @@ void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) // 等待条件满足,切换到下一段 PLSR_SectionConfig_t* current_section = &g_plsr_route.section[g_plsr_route.current_section_num - 1]; - if (current_section->next_section == 0 && g_plsr_route.current_section_num >= g_plsr_route.section_num) - { - // 当前段是最后一段或跳转段为0,路径结束 - PLSR_Route_Stop(&g_plsr_route); - return; - } - else if (current_section->next_section <= g_plsr_route.section_num) - { // 更新prevPulseCount为当前段的累计脉冲数 if (g_plsr_route.mode == PLSR_MODE_RELATIVE) { @@ -1560,14 +1555,131 @@ void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) PLSR_Route_Stop(&g_plsr_route); return; } + } + } + else + { + if(g_plsr_route.run_state == PLSR_STATE_ACCEL) + { + // 加速阶段完成,清零加速脉冲计数 + g_plsr_route.accel_pulse_count = 0; + + // 判断下一阶段:优先匀速,如果匀速脉冲数为0则直接进入减速 + if(g_plsr_route.const_pulse_count > 0) + { + // 进入匀速阶段 + g_plsr_route.run_state = PLSR_STATE_CONST; + __HAL_TIM_SetAutoreload(&htim2, g_plsr_route.const_pulse_count); + __HAL_TIM_SET_COUNTER(&htim2, 0); + PLSR_PWM_Start(); + } + else if(g_plsr_route.decel_pulse_count > 0) + { + // 无匀速阶段,直接进入减速 + g_plsr_route.run_state = PLSR_STATE_DECEL; + __HAL_TIM_SetAutoreload(&htim2, g_plsr_route.decel_pulse_count); + __HAL_TIM_SET_COUNTER(&htim2, 0); + PLSR_PWM_Start(); } else { - // 没有下一段,停止路径 + // 加速完成且无后续阶段,路径结束 PLSR_Route_Stop(&g_plsr_route); return; } } + else if(g_plsr_route.run_state == PLSR_STATE_CONST) + { + // 匀速阶段完成,清零匀速脉冲计数 + g_plsr_route.const_pulse_count = 0; + + // 进入减速阶段 + if(g_plsr_route.decel_pulse_count > 0) + { + g_plsr_route.run_state = PLSR_STATE_DECEL; + __HAL_TIM_SetAutoreload(&htim2, g_plsr_route.decel_pulse_count); + __HAL_TIM_SET_COUNTER(&htim2, 0); + PLSR_PWM_Start(); + } + else + { + // 匀速完成且无减速阶段,路径结束 + PLSR_Route_Stop(&g_plsr_route); + return; + } + } + else if(g_plsr_route.run_state == PLSR_STATE_DECEL) + { + if(g_plsr_route.current_section_num == g_plsr_route.section_num) + { + // 减速阶段完成,清零减速脉冲计数 + g_plsr_route.decel_pulse_count = 0; + + // 减速完成,路径结束 + PLSR_Route_Stop(&g_plsr_route); + return; + } + else + { + // 减速阶段完成,清零减速脉冲计数 + g_plsr_route.decel_pulse_count = 0; + + // 进入等待状态,等待下一段开始 + g_plsr_route.run_state = PLSR_STATE_WAIT; + // 检查等待条件是否满足 + if (PLSR_Section_CheckWaitCondition(&g_plsr_route)) + { + // 等待条件满足,切换到下一段 + PLSR_SectionConfig_t* current_section = &g_plsr_route.section[g_plsr_route.current_section_num - 1]; + if (current_section->next_section == 0 && g_plsr_route.current_section_num >= g_plsr_route.section_num) + { + // 当前段是最后一段同时跳转段为0,路径结束 + PLSR_Route_Stop(&g_plsr_route); + return; + } + // 检查是否有下一段可执行 + if (g_plsr_route.current_section_num < g_plsr_route.section_num) + { + // 更新prevPulseCount为当前段的累计脉冲数 + if (g_plsr_route.mode == PLSR_MODE_RELATIVE) + { + g_plsr_route.prevPulseCount = g_plsr_route.pulse_count; + } + // 切换到下一段 + PLSR_SectionConfig_t* next_section = &g_plsr_route.section[g_plsr_route.current_section_num]; + g_plsr_route.current_section_num++; + g_plsr_route.current_freq = next_section->target_freq; // 更新当前频率 + + // 启动新段 + PLSR_Section_StartNewSection(&g_plsr_route); + + // 计算新段需要发送的脉冲数 + uint32_t next_pulse_target = next_section->target_pulse; + + if (next_pulse_target > 0 && next_pulse_target <= 0xFFFFFFFF) + { + __HAL_TIM_SetAutoreload(&htim2, next_pulse_target); + __HAL_TIM_SET_COUNTER(&htim2, 0); + PLSR_PWM_Start(); + } + else + { + // 脉冲数异常,停止路径 + PLSR_Route_Stop(&g_plsr_route); + return; + } + } + else + { + // 没有下一段,路径结束 + PLSR_Route_Stop(&g_plsr_route); + return; + } + } + + } + } + } } // TIM6中断:负责加减速过程的频率更新、等待时间计时和实时脉冲计数更新 if(htim->Instance == TIM6) diff --git a/PLSR/PLSR/EWARM/test.1.dep b/PLSR/PLSR/EWARM/test.1.dep index 35c3f79..d0afbbc 100644 --- a/PLSR/PLSR/EWARM/test.1.dep +++ b/PLSR/PLSR/EWARM/test.1.dep @@ -5,851 +5,844 @@ test.1 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c + $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Core\Src\modbus_crc.c + $PROJ_DIR$\..\Core\Src\modbus_log.c + $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c + $PROJ_DIR$\startup_stm32f407xx.s + $PROJ_DIR$\..\Core\Src\flash_save.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c + $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c + $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Core\Src\main.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.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_ll_pwr.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.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_rcc_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.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_uart.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.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_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_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_i2c.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.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_flash.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.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\stm32f4xx_hal_timebase_tim.c - $PROJ_DIR$\..\Core\Src\dma.c - $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c - $PROJ_DIR$\..\Core\Src\tim.c - $PROJ_DIR$\startup_stm32f407xx.s - $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c + $TOOLKIT_DIR$\lib\shb_l.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o + $PROJ_DIR$\test.1\Obj\main.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Product.h + $PROJ_DIR$\test.1\Exe\test.1.hex + $PROJ_DIR$\test.1\Obj\tim.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o + $TOOLKIT_DIR$\inc\c\stdarg.h + $TOOLKIT_DIR$\lib\dl7M_tlf.a + $TOOLKIT_DIR$\inc\c\stddef.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.xcl + $PROJ_DIR$\..\UCOS\Source\os.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o + $PROJ_DIR$\test.1\Obj\modbus_crc.xcl + $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.xcl + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h + $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h + $PROJ_DIR$\..\UCOS\Source\os_task.c + $PROJ_DIR$\test.1\Obj\flash_save.xcl + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o + $TOOLKIT_DIR$\inc\c\ysizet.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h + $PROJ_DIR$\..\Core\Inc\flash_save.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_sem.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h + $PROJ_DIR$\test.1\Obj\os_cpu_a.o + $PROJ_DIR$\test.1\Obj\app_hooks.xcl + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h + $PROJ_DIR$\..\UCOS\Source\os_flag.c + $PROJ_DIR$\..\UCOS\Source\os_mbox.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et + $PROJ_DIR$\..\UCOS\Config\os_cfg.h + $PROJ_DIR$\test.1\Obj\ucos_ii.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o + $PROJ_DIR$\test.1\Obj\app_hooks.o + $TOOLKIT_DIR$\lib\m7M_tls.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et + $PROJ_DIR$\test.1\Obj\modbus_crc.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h + $PROJ_DIR$\test.1\Obj\os_dbg.xcl + $PROJ_DIR$\test.1\Obj\main.xcl + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o + $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.xcl + $PROJ_DIR$\..\Core\Inc\modbus_crc.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et + $TOOLKIT_DIR$\inc\c\ctype.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o + $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.xcl + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_float_setup.h + $PROJ_DIR$\test.1\List\test.1.map + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h + $TOOLKIT_DIR$\lib\rt7M_tl.a + $PROJ_DIR$\test.1\Obj\os_cpu_c.o + $PROJ_DIR$\test.1\Obj\dma.o + $PROJ_DIR$\test.1\Exe\test.1.out + $PROJ_DIR$\test.1\Obj\dma.__cstat.et + $PROJ_DIR$\..\UCOS\Source\os_time.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.xcl + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et + $PROJ_DIR$\stm32f407xx_flash.icf + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.xcl + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o + $PROJ_DIR$\test.1\Obj\main.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et + $PROJ_DIR$\test.1\Obj\usart.__cstat.et + $PROJ_DIR$\test.1\Obj\usart.xcl + $TOOLKIT_DIR$\inc\c\math.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h $TOOLKIT_DIR$\inc\c\ycheck.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h - $PROJ_DIR$\..\UCOS\Source\os_trace.h - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o $PROJ_DIR$\..\UCOS\Config\app_cfg.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.xcl $TOOLKIT_DIR$\inc\c\yvals.h - $PROJ_DIR$\test.1\Obj\gpio.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o - $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et + $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.xcl $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et + $TOOLKIT_DIR$\inc\c\stdint.h + $PROJ_DIR$\test.1\Obj\os_dbg.o + $PROJ_DIR$\..\Core\Inc\dma.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o + $PROJ_DIR$\..\UCOS\Ports\os_cpu.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.xcl $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h - $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $TOOLKIT_DIR$\inc\c\iccarm_builtin.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h - $PROJ_DIR$\test.1\Obj\os_cpu_c.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.xcl - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.xcl + $PROJ_DIR$\..\UCOS\Source\os_trace.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.xcl + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.xcl + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o $TOOLKIT_DIR$\inc\c\stdlib.h - $TOOLKIT_DIR$\inc\c\DLib_Product_string.h - $PROJ_DIR$\test.1\Obj\gpio.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o + $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.xcl $PROJ_DIR$\test.1\Obj\flash_save.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.xcl - $PROJ_DIR$\test.1\Obj\ucos_ii.xcl - $PROJ_DIR$\..\Core\Inc\modbus_log.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o + $PROJ_DIR$\test.1\Obj\gpio.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h + $TOOLKIT_DIR$\inc\c\string.h + $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et + $TOOLKIT_DIR$\inc\c\iccarm_builtin.h + $PROJ_DIR$\test.1\Obj\gpio.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.xcl - $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et + $PROJ_DIR$\test.1\Obj\os_cpu_c.xcl + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o + $TOOLKIT_DIR$\inc\c\stdio.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o + $PROJ_DIR$\..\Core\Inc\modbus_log.h + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $PROJ_DIR$\test.1\Obj\ucos_ii.xcl $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et $PROJ_DIR$\..\UCOS\Source\ucos_ii.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.xcl - $TOOLKIT_DIR$\inc\c\stdio.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.xcl - $PROJ_DIR$\..\UCOS\Source\os_mutex.c - $PROJ_DIR$\..\Core\Inc\main.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.xcl - $PROJ_DIR$\..\Core\Inc\gpio.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et - $TOOLKIT_DIR$\lib\shb_l.a - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.xcl - $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.xcl - $PROJ_DIR$\..\UCOS\Source\os_flag.c + $PROJ_DIR$\..\UCOS\Source\os_mutex.c $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et - $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h - $PROJ_DIR$\test.1\Obj\modbus_log.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.xcl $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o - $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o - $PROJ_DIR$\test.1\Obj\os_cpu_a.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o - $PROJ_DIR$\test.1\Obj\tim.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o - $PROJ_DIR$\test.1\Obj\os_dbg.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o - $PROJ_DIR$\test.1\Obj\main.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.xcl - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h - $PROJ_DIR$\test.1\Obj\main.__cstat.et + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o - $TOOLKIT_DIR$\lib\m7M_tls.a + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c $PROJ_DIR$\test.1\Obj\gpio.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o - $PROJ_DIR$\..\Core\Inc\modbus_crc.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.xcl - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h - $TOOLKIT_DIR$\inc\c\DLib_Product.h - $PROJ_DIR$\..\UCOS\Config\os_cfg.h - $PROJ_DIR$\test.1\Obj\flash_save.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.xcl - $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et - $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o - $PROJ_DIR$\test.1\Obj\ucos_ii.o - $PROJ_DIR$\..\Core\Inc\tim.h + $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + $PROJ_DIR$\..\UCOS\Config\app_hooks.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et + $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h + $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h + $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et + $PROJ_DIR$\..\Core\Inc\gpio.h + $PROJ_DIR$\..\UCOS\Source\os_q.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.xcl + $PROJ_DIR$\test.1\Obj\tim.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.xcl + $PROJ_DIR$\test.1\Obj\tim.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et + $PROJ_DIR$\..\Core\Inc\main.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et - $PROJ_DIR$\test.1\Obj\app_hooks.o - $PROJ_DIR$\..\UCOS\Source\os_sem.c - $PROJ_DIR$\..\UCOS\Source\os_q.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h $PROJ_DIR$\..\UCOS\Source\os_mem.c - $PROJ_DIR$\test.1\Obj\dma.xcl $PROJ_DIR$\..\UCOS\Source\os_tmr.c - $PROJ_DIR$\test.1\Obj\modbus_crc.o - $PROJ_DIR$\test.1\Obj\app_hooks.xcl + $PROJ_DIR$\..\Core\Inc\usart.h + $PROJ_DIR$\test.1\Obj\dma.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et $PROJ_DIR$\..\UCOS\Source\os_core.c - $PROJ_DIR$\test.1\Obj\tim.xcl - $PROJ_DIR$\..\UCOS\Source\os_mbox.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et + $PROJ_DIR$\..\Core\Inc\tim.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.xcl $PROJ_DIR$\test.1\Obj\usart.o $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et + $PROJ_DIR$\test.1\Obj\modbus_log.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et $PROJ_DIR$\test.1\Obj\modbus_log.xcl - $PROJ_DIR$\..\Core\Inc\usart.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h - $PROJ_DIR$\test.1\Obj\os_cpu_c.o - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o - $PROJ_DIR$\test.1\Obj\dma.__cstat.et - $PROJ_DIR$\test.1\Obj\os_dbg.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.xcl - $PROJ_DIR$\test.1\Obj\dma.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o - $PROJ_DIR$\test.1\List\test.1.map - $PROJ_DIR$\..\Core\Inc\dma.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o - $PROJ_DIR$\stm32f407xx_flash.icf - $PROJ_DIR$\..\UCOS\Source\os_time.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h - $PROJ_DIR$\test.1\Obj\tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h - $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et - $TOOLKIT_DIR$\inc\c\stdint.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et - $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et - $TOOLKIT_DIR$\inc\c\string.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.xcl - $TOOLKIT_DIR$\lib\dl7M_tlf.a - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o - $PROJ_DIR$\..\UCOS\Ports\os_cpu.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et - $PROJ_DIR$\test.1\Obj\usart.xcl - $PROJ_DIR$\test.1\Obj\usart.__cstat.et - $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h - $TOOLKIT_DIR$\inc\c\ctype.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h - $TOOLKIT_DIR$\inc\c\math.h - $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et - $TOOLKIT_DIR$\lib\rt7M_tl.a - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h - $PROJ_DIR$\test.1\Exe\test.1.hex - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.xcl - $TOOLKIT_DIR$\inc\c\DLib_float_setup.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h - $PROJ_DIR$\test.1\Exe\test.1.out - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et - $PROJ_DIR$\test.1\Obj\modbus_crc.xcl - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c - $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h - $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et - $PROJ_DIR$\..\UCOS\Config\app_hooks.c - $TOOLKIT_DIR$\inc\c\ysizet.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.xcl - $TOOLKIT_DIR$\inc\c\stddef.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o - $PROJ_DIR$\..\Core\Inc\flash_save.h - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o - $PROJ_DIR$\..\UCOS\Source\ucos_ii.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.xcl - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.xcl - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o - $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm - $PROJ_DIR$\test.1\Obj\main.o - $PROJ_DIR$\..\UCOS\Source\os_task.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et - $TOOLKIT_DIR$\inc\c\stdarg.h - $PROJ_DIR$\..\UCOS\Source\os.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c - $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c - $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.xcl [ROOT_NODE] ILINK - 251 215 + 125 120 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c ICCARM - 213 + 47 __cstat - 118 + 162 BICOMP - 107 + 131 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 262 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Core\Src\gpio.c ICCARM - 264 + 235 __cstat - 170 + 191 BICOMP - 268 + 199 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 252 262 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Core\Src\modbus_crc.c ICCARM - 217 + 96 __cstat - 132 + 220 BICOMP - 210 + 63 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 104 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 254 248 117 267 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + $PROJ_DIR$\..\Core\Src\modbus_log.c ICCARM - 209 + 279 __cstat - 173 + 180 BICOMP - 112 + 281 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c - + ICCARM - 144 - - - __cstat - 197 - - - BICOMP - 171 + 212 270 262 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 210 195 213 113 178 69 53 104 75 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c + $PROJ_DIR$\..\Core\Src\tim.c ICCARM - 138 + 259 __cstat - 67 + 51 BICOMP - 126 + 255 + + + ICCARM + 275 262 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 270 210 195 213 113 178 69 53 104 75 212 145 119 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c ICCARM - 84 + 177 __cstat - 161 + 280 BICOMP - 230 + 208 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c + $PROJ_DIR$\startup_stm32f407xx.s + + + AARM + 102 + + + + + $PROJ_DIR$\..\Core\Src\flash_save.c ICCARM - 136 + 189 __cstat - 222 + 115 BICOMP - 141 + 71 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 75 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 270 262 210 195 213 113 178 69 53 104 212 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c ICCARM - 54 + 139 __cstat - 76 + 247 BICOMP - 168 + 116 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 262 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 250 217 151 53 210 88 167 170 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Core\Src\usart.c ICCARM - 61 + 277 __cstat - 124 + 143 BICOMP - 55 + 144 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 270 262 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 210 195 213 113 178 69 53 104 75 212 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c ICCARM - 129 + 72 __cstat - 140 + 138 BICOMP - 105 + 58 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 254 248 117 267 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + $PROJ_DIR$\..\Core\Src\dma.c ICCARM - 99 + 124 __cstat - 208 + 126 BICOMP - 83 + 271 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 165 262 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Core\Src\main.c ICCARM - 273 + 140 __cstat - 190 + 48 BICOMP - 79 + 99 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 262 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 252 217 151 53 210 88 167 170 275 270 195 213 113 178 69 104 75 212 145 119 165 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c ICCARM - 178 + 256 __cstat - 69 + 76 BICOMP - 246 + 152 + + + ICCARM + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c ICCARM - 68 + 147 __cstat - 120 + 45 BICOMP - 269 + 174 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c ICCARM - 233 + 66 __cstat - 227 + 237 BICOMP - 90 + 141 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c ICCARM - 153 + 56 __cstat - 204 + 227 BICOMP - 179 + 229 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c - + ICCARM - 62 - - - __cstat - 86 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - - BICOMP - 172 - - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c ICCARM - 127 + 62 __cstat - 121 + 257 BICOMP - 58 + 157 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c ICCARM - 51 + 101 __cstat - 256 + 203 BICOMP - 93 + 67 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c ICCARM - 150 + 111 __cstat - 232 + 272 BICOMP - 200 + 129 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c ICCARM - 119 + 150 __cstat - 188 + 134 BICOMP - 211 + 204 - - - ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c ICCARM - 152 + 52 __cstat - 108 + 155 BICOMP - 196 + 90 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c ICCARM - 214 + 161 __cstat - 169 + 216 BICOMP - 198 + 103 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c ICCARM - 177 + 166 __cstat - 104 + 266 BICOMP - 114 + 258 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c ICCARM - 50 + 232 __cstat - 85 + 261 BICOMP - 154 + 91 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c ICCARM @@ -857,561 +850,568 @@ __cstat - 131 + 240 BICOMP - 159 + 65 + + + ICCARM + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 + + - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c ICCARM - 266 + 110 __cstat - 195 + 95 BICOMP - 270 + 185 ICCARM - 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 166 122 223 220 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c ICCARM - 249 + 190 __cstat - 162 + 46 BICOMP - 97 + 168 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c ICCARM - 146 + 107 __cstat - 113 + 79 BICOMP - 116 + 86 - - - ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c ICCARM - 72 + 236 __cstat - 252 + 112 BICOMP - 73 + 276 - - - ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c ICCARM - 78 + 109 __cstat - 87 + 223 BICOMP - 101 + 282 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Core\Src\flash_save.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c ICCARM - 89 + 211 __cstat - 242 + 201 BICOMP - 158 + 238 - - - ICCARM - 265 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 192 103 98 229 81 239 80 255 278 151 92 - - - $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c ICCARM - 148 + 78 __cstat - 57 + 193 BICOMP - 82 + 154 ICCARM - 106 103 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c ICCARM - 275 + 158 __cstat - 143 + 230 BICOMP - 139 + 160 ICCARM - 103 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 106 96 52 278 98 157 234 46 165 192 229 81 239 80 255 151 265 92 241 247 216 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Core\Src\modbus_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c ICCARM - 183 + 260 __cstat - 100 + 228 BICOMP - 253 + 159 ICCARM - 151 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 166 122 223 220 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Core\Src\modbus_log.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c ICCARM - 123 + 179 __cstat - 94 + 128 BICOMP - 191 + 218 ICCARM - 92 192 103 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 98 229 81 239 80 255 278 151 265 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c ICCARM - 53 + 219 __cstat - 111 + 264 BICOMP - 77 + 60 ICCARM - 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c ICCARM - 212 + 92 __cstat - 202 + 87 BICOMP - 181 + 226 ICCARM - 216 103 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c ICCARM - 201 + 171 __cstat - 133 + 182 BICOMP - 206 + 225 ICCARM - 103 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 128 96 52 278 98 157 234 46 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c ICCARM - 248 + 246 __cstat - 199 + 118 BICOMP - 207 + 181 ICCARM - 103 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c ICCARM - 221 + 114 __cstat - 135 + 278 BICOMP - 186 + 200 ICCARM - 165 103 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 192 98 229 81 239 80 255 278 151 265 92 241 247 + 254 248 117 267 187 172 184 163 149 153 148 196 49 121 241 136 198 105 175 83 55 73 108 68 80 207 176 133 194 132 74 206 202 146 249 97 100 - $PROJ_DIR$\startup_stm32f407xx.s + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c - AARM - 163 + ICCARM + 130 + + + __cstat + 274 + + + BICOMP + 221 - $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c ICCARM - 189 + 169 __cstat - 237 + 197 BICOMP - 236 + 265 - + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c + ICCARM - 192 103 166 122 223 220 47 48 60 226 44 56 64 238 156 240 125 205 65 160 74 193 262 260 244 250 145 66 49 224 45 272 155 63 70 257 110 167 142 98 229 81 239 80 255 278 151 265 92 + 106 - + + __cstat + 186 + + + BICOMP + 245 + + $PROJ_DIR$\test.1\Exe\test.1.out ILINK - 215 + 120 OBJCOPY - 245 + 50 ILINK - 218 174 212 89 148 275 183 123 130 194 203 163 150 68 129 249 84 136 72 54 61 99 233 217 248 127 119 152 146 213 177 78 53 273 264 214 201 209 144 263 153 50 62 138 178 51 59 134 75 266 221 164 189 109 243 147 231 + 135 93 124 189 235 140 96 279 81 123 164 102 78 219 263 110 190 52 179 161 158 246 147 256 47 260 62 66 56 109 92 171 177 114 111 166 139 130 232 107 236 211 169 106 101 150 192 61 209 72 259 89 277 44 122 94 54 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c ICCARM - 134 + 164 __cstat - 149 + 251 BICOMP - 95 + 98 + + + + + ICCARM + 217 151 53 210 149 153 148 196 49 73 88 167 170 + + + + + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + + + AARM + 81 - $PROJ_DIR$\..\UCOS\Config\app_hooks.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c ICCARM - 174 + 209 __cstat - 225 + 142 BICOMP - 184 + 188 - - - ICCARM - 279 96 52 278 98 44 56 64 238 156 260 157 234 46 - - $PROJ_DIR$\..\UCOS\Source\ucos_ii.c ICCARM - 164 + 89 __cstat - 228 + 156 BICOMP - 91 + 214 ICCARM - 96 52 278 98 44 56 64 238 156 260 157 234 46 185 117 187 180 102 176 175 276 219 182 + 217 151 53 210 149 153 148 196 49 73 88 167 170 273 84 85 268 222 253 77 70 127 269 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c ICCARM - 59 + 123 __cstat - 235 + 64 BICOMP - 261 + 205 - - - $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm - + - AARM - 130 + ICCARM + 217 151 53 210 149 153 148 196 49 73 88 167 170 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c ICCARM - 75 + 192 __cstat - 277 + 173 BICOMP - 88 + 137 - $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $PROJ_DIR$\..\UCOS\Config\app_hooks.c ICCARM - 194 + 93 __cstat - 258 + 183 BICOMP - 71 + 82 ICCARM - 96 52 278 98 44 56 64 238 156 260 157 234 46 + 59 217 151 53 210 149 153 148 196 49 73 88 167 170 - $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c ICCARM - 203 + 61 __cstat - 115 + 57 BICOMP - 137 + 215 - - - ICCARM - 96 52 278 98 44 56 64 238 156 260 157 234 46 - -