diff --git a/PLSR/PLSR/Core/Src/tim.c b/PLSR/PLSR/Core/Src/tim.c index 33f3d39..5ba763b 100644 --- a/PLSR/PLSR/Core/Src/tim.c +++ b/PLSR/PLSR/Core/Src/tim.c @@ -1546,14 +1546,16 @@ void PLSR_HandleSectionEnd(void) // 非最后一段,进入等待状态准备切换到下一段 g_plsr_route.run_state = PLSR_STATE_WAIT; - if(g_plsr_route.section[g_plsr_route.current_section_num].wait_condition.wait_type != PLSR_WAIT_PLUSEEND) + if(g_plsr_route.section[g_plsr_route.current_section_num - 1].wait_condition.wait_type == PLSR_WAIT_PLUSEEND) { - g_plsr_route.current_freq = g_plsr_route.section[g_plsr_route.current_section_num].target_freq; + g_plsr_route.current_freq = g_plsr_route.section[g_plsr_route.current_section_num - 1].target_freq; + } else { // 否则设置为0,表示停止 - g_plsr_route.target_freq = 0; + g_plsr_route.current_freq = 0; + g_plsr_route.initial_freq = 0; } PLSR_SectionSwitchSignal(); @@ -2412,31 +2414,15 @@ uint32_t PLSR_Calculate_FreqByPosition(PLSR_RouteConfig_t* route, uint8_t is_acc int32_t current_tim2_count = __HAL_TIM_GET_COUNTER(&htim2); int32_t executed_pulses = 0; int32_t next_executed_pulses = 0; - // 计算当前部分已经执行的脉冲数 - // if(is_accel == 0) - // { - // // 减速过程:使用全局脉冲计数器 - // if((current_tim2_count - 1) < 0) - // { - // executed_pulses = 0; - // } - // else - // { - // executed_pulses = current_tim2_count - 1; - // } - // } - // else - // { - // executed_pulses = current_tim2_count; - // } - if((current_tim2_count - 1) < 0) - { - executed_pulses = 0; - } - else - { - executed_pulses = current_tim2_count - 1; - } + + if((current_tim2_count - 1) < 0) + { + executed_pulses = 0; + } + else + { + executed_pulses = current_tim2_count - 1; + } next_executed_pulses = executed_pulses + 1; // 检查是否需要重新计算:脉冲步数、加减速状态或段号发生变化时才重新计算 diff --git a/PLSR/PLSR/EWARM/test.1.dep b/PLSR/PLSR/EWARM/test.1.dep index b6a0658..b710fb9 100644 --- a/PLSR/PLSR/EWARM/test.1.dep +++ b/PLSR/PLSR/EWARM/test.1.dep @@ -5,539 +5,525 @@ test.1 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c - $PROJ_DIR$\..\Core\Src\tim.c - $PROJ_DIR$\startup_stm32f407xx.s $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c - $PROJ_DIR$\..\Core\Src\modbus_log.c - $PROJ_DIR$\..\Core\Src\modbus_crc.c - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c - $PROJ_DIR$\..\Core\Src\dma.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c - $PROJ_DIR$\..\Core\Src\flash_save.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c - $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c + $PROJ_DIR$\..\Core\Src\tim.c $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Core\Src\modbus_crc.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c + $PROJ_DIR$\startup_stm32f407xx.s + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\..\Core\Src\dma.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c + $PROJ_DIR$\..\Core\Src\flash_save.c $PROJ_DIR$\..\Core\Src\gpio.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c + $PROJ_DIR$\..\Core\Src\modbus_log.c + $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.xcl + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.xcl + $PROJ_DIR$\..\Core\Inc\gpio.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et + $PROJ_DIR$\test.1\Obj\usart.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o + $PROJ_DIR$\test.1\Obj\main.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o + $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.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_sram.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.xcl + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o - $PROJ_DIR$\..\UCOS\Source\os_trace.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.xcl - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o + $PROJ_DIR$\test.1\Obj\ucos_ii.o + $TOOLKIT_DIR$\inc\c\math.h + $PROJ_DIR$\..\Core\Inc\dma.h + $TOOLKIT_DIR$\lib\rt7M_tl.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h + $PROJ_DIR$\test.1\Obj\os_dbg.o + $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h + $PROJ_DIR$\test.1\Obj\gpio.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et + $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et $TOOLKIT_DIR$\inc\c\stdio.h - $PROJ_DIR$\..\Core\Inc\modbus_log.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h - $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o - $PROJ_DIR$\..\Core\Inc\flash_save.h - $PROJ_DIR$\test.1\Obj\os_cpu_c.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.xcl - $TOOLKIT_DIR$\lib\m7M_tls.a - $PROJ_DIR$\test.1\Obj\main.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o - $PROJ_DIR$\test.1\Obj\flash_save.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et - $PROJ_DIR$\test.1\Exe\test.1.out - $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $PROJ_DIR$\test.1\Obj\flash_save.xcl - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et + $PROJ_DIR$\test.1\Obj\usart.xcl + $PROJ_DIR$\..\UCOS\Config\app_cfg.h + $TOOLKIT_DIR$\inc\c\DLib_float_setup.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et - $PROJ_DIR$\test.1\Obj\main.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.xcl - $PROJ_DIR$\test.1\Obj\gpio.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o - $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h - $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et - $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h - $PROJ_DIR$\test.1\Obj\os_dbg.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et - $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et - $TOOLKIT_DIR$\inc\c\yvals.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\usart.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o + $PROJ_DIR$\..\UCOS\Config\os_cfg.h + $PROJ_DIR$\test.1\Obj\tim.o + $PROJ_DIR$\..\UCOS\Source\os.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et - $TOOLKIT_DIR$\inc\c\DLib_Product.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et - $PROJ_DIR$\test.1\Obj\modbus_log.xcl - $PROJ_DIR$\..\Core\Inc\dma.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et - $PROJ_DIR$\test.1\Obj\tim.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.xcl - $PROJ_DIR$\test.1\Obj\app_hooks.o - $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h - $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o + $PROJ_DIR$\test.1\Exe\test.1.hex + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et + $PROJ_DIR$\test.1\Obj\os_cpu_a.o + $TOOLKIT_DIR$\inc\c\DLib_Product.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h - $PROJ_DIR$\test.1\Obj\ucos_ii.xcl - $TOOLKIT_DIR$\inc\c\stdint.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.xcl - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.xcl + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o + $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.xcl $PROJ_DIR$\test.1\Obj\main.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h - $PROJ_DIR$\test.1\Obj\usart.xcl - $PROJ_DIR$\test.1\Obj\dma.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.xcl - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h + $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.xcl + $TOOLKIT_DIR$\inc\c\stdlib.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.xcl + $PROJ_DIR$\test.1\List\test.1.map + $PROJ_DIR$\..\Core\Inc\modbus_crc.h $PROJ_DIR$\test.1\Obj\gpio.xcl - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h - $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et - $TOOLKIT_DIR$\inc\c\stddef.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o - $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et + $TOOLKIT_DIR$\inc\c\yvals.h + $PROJ_DIR$\test.1\Obj\modbus_log.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h + $TOOLKIT_DIR$\inc\c\stdint.h + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et $TOOLKIT_DIR$\inc\c\iccarm_builtin.h - $PROJ_DIR$\test.1\Obj\dma.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o - $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.xcl - $PROJ_DIR$\test.1\Obj\os_dbg.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.xcl - $PROJ_DIR$\test.1\Obj\os_cpu_a.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.xcl - $TOOLKIT_DIR$\inc\c\ysizet.h - $PROJ_DIR$\test.1\Obj\gpio.__cstat.et - $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_rcc_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.xcl - $PROJ_DIR$\..\Core\Inc\usart.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h - $PROJ_DIR$\..\Core\Inc\modbus_crc.h + $PROJ_DIR$\test.1\Obj\main.o + $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et + $PROJ_DIR$\..\UCOS\Source\ucos_ii.h + $PROJ_DIR$\test.1\Obj\os_cpu_c.o $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h - $PROJ_DIR$\test.1\Obj\usart.__cstat.et - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o + $PROJ_DIR$\..\Core\Inc\main.h $PROJ_DIR$\test.1\Obj\app_hooks.xcl - $TOOLKIT_DIR$\inc\c\DLib_float_setup.h - $PROJ_DIR$\..\Core\Inc\gpio.h - $TOOLKIT_DIR$\inc\c\ycheck.h - $PROJ_DIR$\test.1\Obj\modbus_crc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et - $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.xcl - $PROJ_DIR$\test.1\Obj\modbus_crc.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.xcl - $PROJ_DIR$\stm32f407xx_flash.icf - $PROJ_DIR$\..\Core\Inc\tim.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et + $PROJ_DIR$\test.1\Obj\ucos_ii.xcl + $PROJ_DIR$\test.1\Obj\dma.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.xcl + $PROJ_DIR$\..\Core\Inc\flash_save.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et + $TOOLKIT_DIR$\inc\c\stddef.h + $PROJ_DIR$\..\Core\Inc\modbus_log.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o + $PROJ_DIR$\test.1\Obj\flash_save.o + $PROJ_DIR$\test.1\Obj\os_dbg.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h $PROJ_DIR$\test.1\Obj\tim.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o - $PROJ_DIR$\..\UCOS\Source\os.h - $PROJ_DIR$\test.1\Exe\test.1.hex - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.xcl - $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et + $PROJ_DIR$\test.1\Obj\modbus_crc.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et + $TOOLKIT_DIR$\inc\c\ycheck.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.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.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et - $PROJ_DIR$\test.1\Obj\tim.o - $PROJ_DIR$\test.1\Obj\dma.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o - $TOOLKIT_DIR$\inc\c\math.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et - $TOOLKIT_DIR$\lib\shb_l.a - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.xcl + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h $TOOLKIT_DIR$\inc\c\string.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o - $PROJ_DIR$\..\UCOS\Source\ucos_ii.h - $TOOLKIT_DIR$\inc\c\stdlib.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.xcl + $PROJ_DIR$\test.1\Obj\modbus_crc.o + $PROJ_DIR$\test.1\Obj\dma.o + $PROJ_DIR$\stm32f407xx_flash.icf + $PROJ_DIR$\test.1\Obj\gpio.__cstat.et + $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.xcl + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.xcl - $PROJ_DIR$\..\UCOS\Ports\os_dbg.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o + $PROJ_DIR$\test.1\Exe\test.1.out + $PROJ_DIR$\test.1\Obj\tim.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et + $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et $PROJ_DIR$\..\UCOS\Ports\os_cpu.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c - $PROJ_DIR$\..\UCOS\Config\app_hooks.c - $PROJ_DIR$\..\UCOS\Source\ucos_ii.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.xcl + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h + $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c - $PROJ_DIR$\..\UCOS\Config\os_cfg.h - $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_rng.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + $PROJ_DIR$\..\UCOS\Config\app_hooks.c $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.xcl - $PROJ_DIR$\test.1\List\test.1.map - $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.xcl + $PROJ_DIR$\test.1\Obj\dma.xcl $PROJ_DIR$\test.1\Obj\os_cpu_c.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o - $TOOLKIT_DIR$\lib\rt7M_tl.a - $TOOLKIT_DIR$\inc\c\stdarg.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.xcl - $PROJ_DIR$\..\Core\Inc\main.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\UCOS\Source\os_trace.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.xcl $TOOLKIT_DIR$\lib\dl7M_tlf.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.xcl + $PROJ_DIR$\..\Core\Inc\tim.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.xcl + $PROJ_DIR$\test.1\Obj\app_hooks.o + $PROJ_DIR$\test.1\Obj\usart.o + $PROJ_DIR$\..\Core\Inc\usart.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et + $PROJ_DIR$\test.1\Obj\flash_save.xcl + $TOOLKIT_DIR$\lib\shb_l.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et + $TOOLKIT_DIR$\inc\c\ysizet.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h + $PROJ_DIR$\test.1\Obj\modbus_log.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.xcl + $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o $TOOLKIT_DIR$\inc\c\ctype.h - $PROJ_DIR$\test.1\Obj\ucos_ii.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.xcl - $PROJ_DIR$\..\UCOS\Config\app_cfg.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.xcl + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et + $TOOLKIT_DIR$\lib\m7M_tls.a + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.xcl $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o - $PROJ_DIR$\test.1\Obj\modbus_log.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.xcl - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o [ROOT_NODE] ILINK - 56 242 + 187 114 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c ICCARM - 70 + 205 - __cstat - 73 + BICOMP + 264 - BICOMP - 143 + __cstat + 241 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c ICCARM - 271 - - - __cstat - 126 + 263 BICOMP - 253 + 157 - - - ICCARM - 159 71 257 161 124 80 134 109 167 78 57 74 90 34 83 84 131 203 111 122 127 148 97 146 198 116 256 107 91 186 36 113 60 82 44 101 197 + __cstat + 163 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c ICCARM - 266 + 145 - __cstat - 31 + BICOMP + 183 - BICOMP - 120 + __cstat + 54 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c ICCARM - 212 + 185 - __cstat - 215 + BICOMP + 120 - BICOMP - 147 + __cstat + 271 + + + ICCARM + 202 39 104 142 47 258 42 128 168 122 129 109 93 169 173 164 131 106 61 44 155 256 79 242 66 127 56 73 257 174 208 182 189 87 184 72 43 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c ICCARM - 128 + 80 - __cstat - 169 + BICOMP + 27 - BICOMP - 98 + __cstat + 81 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c ICCARM - 68 + 82 - __cstat - 194 + BICOMP + 113 - BICOMP - 259 + __cstat + 130 + + + ICCARM + 202 39 104 142 47 258 42 128 168 122 129 109 93 169 173 164 131 106 61 44 155 256 79 242 66 127 56 73 257 174 208 182 189 87 184 72 43 + + - $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c ICCARM - 188 + 78 - __cstat - 96 + BICOMP + 30 - BICOMP - 178 + __cstat + 154 ICCARM - 176 254 159 71 257 161 124 80 134 109 167 78 57 74 90 34 83 84 131 203 111 122 127 148 97 146 198 116 256 107 91 186 36 113 60 82 44 101 197 156 39 202 243 260 206 170 248 160 47 40 192 165 205 264 229 211 30 + 202 39 104 142 47 258 42 128 168 122 129 109 93 169 173 164 131 106 61 44 155 256 79 242 66 127 56 73 257 174 208 182 189 87 184 72 43 - $PROJ_DIR$\startup_stm32f407xx.s - - - AARM - 100 - - - - - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c ICCARM - 196 + 110 - __cstat - 145 + BICOMP + 133 - BICOMP - 69 + __cstat + 255 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c ICCARM - 35 + 251 - __cstat - 151 + BICOMP + 53 - BICOMP - 155 + __cstat + 143 ICCARM - 159 71 257 161 124 80 134 109 167 78 57 74 90 34 83 84 131 203 111 122 127 148 97 146 198 116 256 107 91 186 36 113 60 82 44 101 197 + 202 39 104 142 47 258 42 128 168 122 129 109 93 169 173 164 131 106 61 44 155 256 79 242 66 127 56 73 257 174 208 182 189 87 184 72 43 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c ICCARM - 106 + 102 - __cstat - 153 + BICOMP + 86 - BICOMP + __cstat 33 - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c + $PROJ_DIR$\..\Core\Src\tim.c ICCARM - 246 - - - __cstat - 255 + 84 BICOMP - 88 - - - - - $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c - - - ICCARM - 150 + 165 __cstat - 49 + 188 + + - BICOMP - 110 + ICCARM + 246 146 202 39 104 142 47 258 42 128 168 122 129 109 93 169 173 164 131 106 61 44 155 256 79 242 66 127 56 73 257 174 208 182 189 87 184 72 43 250 65 175 95 266 112 204 96 115 153 156 50 71 140 70 83 192 228 - + - $PROJ_DIR$\..\Core\Src\modbus_log.c + $PROJ_DIR$\..\Core\Src\main.c ICCARM - 267 + 138 - __cstat - 183 + BICOMP + 37 - BICOMP - 93 + __cstat + 108 ICCARM - 40 156 254 159 71 257 161 124 80 134 109 167 78 57 74 90 34 83 84 131 203 111 122 127 148 97 146 198 116 256 107 91 186 36 113 60 82 44 101 197 39 202 243 260 206 170 248 160 47 176 192 165 205 264 229 211 30 + 146 202 39 104 142 47 258 42 128 168 122 129 109 93 169 173 164 131 106 61 44 155 256 79 242 66 127 56 73 257 174 208 182 189 87 184 72 43 28 246 250 65 175 95 266 112 204 96 115 153 156 50 71 140 70 83 192 228 51 @@ -546,747 +532,761 @@ ICCARM - 168 + 177 - __cstat - 129 + BICOMP + 166 - BICOMP - 172 + __cstat + 64 ICCARM - 160 124 80 134 109 167 78 57 74 90 34 83 84 131 203 111 159 71 257 161 122 127 148 97 146 198 116 256 107 91 186 36 113 60 82 44 101 197 + 115 47 258 42 128 168 122 129 109 93 169 173 164 131 106 61 202 39 104 142 44 155 256 79 242 66 127 56 73 257 174 208 182 189 87 184 72 43 - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c ICCARM - 135 + 162 - __cstat - 59 + BICOMP + 103 - BICOMP - 163 + __cstat + 190 + + + ICCARM + 202 39 104 142 47 258 42 128 168 122 129 109 93 169 173 164 131 106 61 44 155 256 79 242 66 127 56 73 257 174 208 182 189 87 184 72 43 + + - $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c ICCARM - 189 + 126 - __cstat - 118 + BICOMP + 46 - BICOMP - 132 + __cstat + 151 ICCARM - 94 254 159 71 257 161 124 80 134 109 167 78 57 74 90 34 83 84 131 203 111 122 127 148 97 146 198 116 256 107 91 186 36 113 60 82 44 101 197 + 202 39 104 142 47 258 42 128 168 122 129 109 93 169 173 164 131 106 61 44 155 256 79 242 66 127 56 73 257 174 208 182 189 87 184 72 43 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c ICCARM - 191 - - - __cstat - 92 + 98 BICOMP - 137 + 100 - - - ICCARM - 159 71 257 161 124 80 134 109 167 78 57 74 90 34 83 84 131 203 111 122 127 148 97 146 198 116 256 107 91 186 36 113 60 82 44 101 197 + __cstat + 233 - + - $PROJ_DIR$\..\Core\Src\flash_save.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c ICCARM - 54 + 265 - __cstat - 77 + BICOMP + 152 - BICOMP - 58 + __cstat + 260 ICCARM - 47 159 71 257 161 124 80 134 109 167 78 57 74 90 34 83 84 131 203 111 122 127 148 97 146 198 116 256 107 91 186 36 113 60 82 44 101 197 156 254 39 202 243 260 206 170 248 160 40 176 192 165 205 264 229 211 30 + 202 39 104 142 47 258 42 128 168 122 129 109 93 169 173 164 131 106 61 44 155 256 79 242 66 127 56 73 257 174 208 182 189 87 184 72 43 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c ICCARM - 67 + 158 - __cstat - 265 + BICOMP + 193 - BICOMP - 270 + __cstat + 31 - + + + $PROJ_DIR$\startup_stm32f407xx.s + - ICCARM - 159 71 257 161 124 80 134 109 167 78 57 74 90 34 83 84 131 203 111 122 127 148 97 146 198 116 256 107 91 186 36 113 60 82 44 101 197 + AARM + 58 - + - $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c ICCARM - 81 + 40 - __cstat - 162 + BICOMP + 107 - BICOMP - 117 + __cstat + 161 + + + ICCARM + 202 39 104 142 47 258 42 128 168 122 129 109 93 169 173 164 131 106 61 44 155 256 79 242 66 127 56 73 257 174 208 182 189 87 184 72 43 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + $PROJ_DIR$\..\Core\Src\dma.c ICCARM - 114 + 178 - __cstat - 103 + BICOMP + 225 - BICOMP - 268 + __cstat + 149 ICCARM - 159 71 257 161 124 80 134 109 167 78 57 74 90 34 83 84 131 203 111 122 127 148 97 146 198 116 256 107 91 186 36 113 60 82 44 101 197 + 51 146 202 39 104 142 47 258 42 128 168 122 129 109 93 169 173 164 131 106 61 44 155 256 79 242 66 127 56 73 257 174 208 182 189 87 184 72 43 - $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c ICCARM - 52 + 207 - __cstat - 115 + BICOMP + 77 - BICOMP - 63 + __cstat + 34 ICCARM - 254 159 71 257 161 124 80 134 109 167 78 57 74 90 34 83 84 131 203 111 122 127 148 97 146 198 116 256 107 91 186 36 113 60 82 44 101 197 166 176 156 39 202 243 260 206 170 248 160 47 40 192 165 205 264 229 211 30 94 + 202 39 104 142 47 258 42 128 168 122 129 109 93 169 173 164 131 106 61 44 155 256 79 242 66 127 56 73 257 174 208 182 189 87 184 72 43 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\Core\Src\flash_save.c ICCARM - 204 + 159 - __cstat - 185 + BICOMP + 253 - BICOMP - 50 + __cstat + 262 ICCARM - 159 71 257 161 124 80 134 109 167 78 57 74 90 34 83 84 131 203 111 122 127 148 97 146 198 116 256 107 91 186 36 113 60 82 44 101 197 + 153 202 39 104 142 47 258 42 128 168 122 129 109 93 169 173 164 131 106 61 44 155 256 79 242 66 127 56 73 257 174 208 182 189 87 184 72 43 250 146 65 175 95 266 112 204 96 115 156 246 50 71 140 70 83 192 228 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c + $PROJ_DIR$\..\Core\Src\gpio.c ICCARM - 37 + 62 - __cstat - 221 + BICOMP + 116 - BICOMP - 121 + __cstat + 180 ICCARM - 159 71 257 161 124 80 134 109 167 78 57 74 90 34 83 84 131 203 111 122 127 148 97 146 198 116 256 107 91 186 36 113 60 82 44 101 197 + 28 146 202 39 104 142 47 258 42 128 168 122 129 109 93 169 173 164 131 106 61 44 155 256 79 242 66 127 56 73 257 174 208 182 189 87 184 72 43 246 250 65 175 95 266 112 204 96 115 153 156 50 71 140 70 83 192 228 - $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Core\Src\modbus_log.c ICCARM - 65 - - - __cstat - 149 + 259 BICOMP 123 + + __cstat + 191 + ICCARM - 166 254 159 71 257 161 124 80 134 109 167 78 57 74 90 34 83 84 131 203 111 122 127 148 97 146 198 116 256 107 91 186 36 113 60 82 44 101 197 176 156 39 202 243 260 206 170 248 160 47 40 192 165 205 264 229 211 30 + 156 250 146 202 39 104 142 47 258 42 128 168 122 129 109 93 169 173 164 131 106 61 44 155 256 79 242 66 127 56 73 257 174 208 182 189 87 184 72 43 65 175 95 266 112 204 96 115 153 246 50 71 140 70 83 192 228 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c + $PROJ_DIR$\..\Core\Src\usart.c ICCARM - 29 + 249 + + + BICOMP + 69 __cstat - 87 + 35 + + + + $PROJ_DIR$\test.1\Exe\test.1.out + - BICOMP - 41 + ILINK + 114 + + + OBJCOPY + 90 - ICCARM - 159 71 257 161 124 80 134 109 167 78 57 74 90 34 83 84 131 203 111 122 127 148 97 146 198 116 256 107 91 186 36 113 60 82 44 101 197 + ILINK + 179 248 178 159 62 138 177 259 92 141 57 58 185 40 162 207 82 265 78 126 251 110 98 158 263 205 99 119 36 206 97 170 102 195 38 196 145 29 101 200 134 60 230 135 136 171 94 124 89 80 84 49 249 254 52 269 244 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c ICCARM - 219 + 136 - __cstat - 55 + BICOMP + 48 - BICOMP - 139 + __cstat + 105 - + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + ICCARM - 159 71 257 161 124 80 134 109 167 78 57 74 90 34 83 84 131 203 111 122 127 148 97 146 198 116 256 107 91 186 36 113 60 82 44 101 197 + 119 - + + BICOMP + 150 + + + __cstat + 132 + + - $PROJ_DIR$\test.1\Exe\test.1.out + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c - ILINK - 242 + ICCARM + 99 - OBJCOPY - 181 + BICOMP + 144 - - - ILINK - 175 99 189 54 65 52 168 267 140 48 75 100 67 191 204 37 114 29 219 35 271 266 212 128 196 68 106 70 152 158 262 61 246 200 216 173 150 179 105 42 46 210 53 85 133 184 252 66 193 135 188 261 81 195 247 51 258 + __cstat + 55 - + - $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c ICCARM - 75 - - - __cstat - 72 + 206 BICOMP - 138 + 45 - - - ICCARM - 205 264 248 39 167 78 57 74 90 148 229 211 30 + __cstat + 268 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c ICCARM - 262 + 171 - __cstat - 250 + BICOMP + 201 - BICOMP - 157 + __cstat + 75 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c ICCARM - 216 + 196 - __cstat - 43 + BICOMP + 137 - BICOMP - 32 + __cstat + 252 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c + $PROJ_DIR$\..\UCOS\Config\app_hooks.c ICCARM - 152 + 248 + + + BICOMP + 147 __cstat - 79 + 203 + + - BICOMP - 141 + ICCARM + 85 140 70 96 65 168 122 129 109 93 256 83 192 228 + + + + + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + + + AARM + 92 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c ICCARM - 66 + 38 - __cstat - 95 + BICOMP + 172 - BICOMP - 263 + __cstat + 167 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c ICCARM - 85 + 230 - __cstat - 207 + BICOMP + 261 - BICOMP - 86 + __cstat + 91 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c ICCARM - 210 + 94 - __cstat - 130 + BICOMP + 245 - BICOMP - 64 + __cstat + 76 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c ICCARM - 105 + 124 - __cstat - 119 + BICOMP + 243 - BICOMP - 251 + __cstat + 88 - $PROJ_DIR$\..\UCOS\Config\app_hooks.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c ICCARM - 99 + 141 - __cstat - 125 + BICOMP + 226 - BICOMP - 164 + __cstat + 139 ICCARM - 180 205 264 248 39 167 78 57 74 90 148 229 211 30 + 140 70 96 65 168 122 129 109 93 256 83 192 228 - $PROJ_DIR$\..\UCOS\Source\ucos_ii.c + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c ICCARM - 261 - - - __cstat - 102 + 57 BICOMP - 108 - - - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c - - - ICCARM - 158 + 160 __cstat - 249 + 32 + + - BICOMP - 182 + ICCARM + 140 70 96 65 168 122 129 109 93 256 83 192 228 - + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c ICCARM - 61 + 49 - __cstat - 104 + BICOMP + 148 - BICOMP - 171 + __cstat + 181 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c ICCARM - 53 + 195 - __cstat - 201 + BICOMP + 270 - BICOMP - 142 + __cstat + 63 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c ICCARM - 200 + 89 - __cstat - 187 + BICOMP + 198 - BICOMP - 174 + __cstat + 41 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c ICCARM - 179 + 101 - __cstat - 38 + BICOMP + 111 - BICOMP - 241 + __cstat + 68 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c ICCARM - 173 + 200 - __cstat - 76 + BICOMP + 224 - BICOMP - 136 + __cstat + 199 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c ICCARM - 133 - - - __cstat - 112 + 60 BICOMP - 28 + 247 - - - - $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm - - AARM - 140 + __cstat + 117 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c ICCARM - 42 + 97 - __cstat - 89 + BICOMP + 267 - BICOMP - 269 + __cstat + 121 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c ICCARM - 184 + 29 - __cstat - 177 + BICOMP + 118 - BICOMP - 144 + __cstat + 59 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c ICCARM - 46 + 135 - __cstat - 245 + BICOMP + 125 - BICOMP - 208 + __cstat + 74 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c ICCARM - 252 + 134 - __cstat - 62 + BICOMP + 186 - BICOMP - 199 + __cstat + 67 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c ICCARM - 193 + 170 - __cstat - 190 + BICOMP + 176 - BICOMP - 154 + __cstat + 194 - $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c ICCARM - 48 - - - __cstat - 45 + 36 BICOMP - 244 + 26 - - - ICCARM - 205 264 248 39 167 78 57 74 90 148 229 211 30 + __cstat + 197 - + diff --git a/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim b/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim index 94baae3..a636123 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 diff --git a/PLSR/PLSR/EWARM/test.1/Obj/.ninja_log b/PLSR/PLSR/EWARM/test.1/Obj/.ninja_log index ae2d0cd..dd73591 100644 --- a/PLSR/PLSR/EWARM/test.1/Obj/.ninja_log +++ b/PLSR/PLSR/EWARM/test.1/Obj/.ninja_log @@ -1,163 +1,83 @@ # ninja log v5 -1013 1054 7779861820108337 stm32f4xx_ll_rng.pbi 5e12b9ea00d0b826 -1021 1161 7779861821182703 stm32f4xx_ll_gpio.pbi df8b54563945d41d -71 449 7779861813850872 stm32f4xx_hal_flash_ex.pbi ac2d035774fe6a2e -37 447 7779861813544432 stm32f4xx_hal_pwr.pbi b347497fce55b6a8 -40 110 7779861741834617 stm32f4xx_ll_pwr.pbi 952cb4e4f4edb65b -1161 1203 7779861821528246 stm32f4xx_ll_tim.pbi b88554c6464192f5 -35 70 7779861810233397 test.1_part7.pbi 67c64030b23c9b51 -1509 2280 7779861831819622 test.1_part3.pbi 2c7780fc3f88c160 -1105 1508 7779861824494900 stm32f4xx_hal_rcc_ex.pbi c1d751d24d77a2df -1347 1526 7779861824823103 app_hooks.pbi ffd399489d189d5a -1406 1505 7779861824392235 os_cpu_c.pbi eb75b848b406ea34 -1017 1405 7779861823625776 stm32f4xx_hal_pwr_ex.pbi b84426bf5a4ce0cf -1513 2193 7779861831278616 test.1_part4.pbi b15d70d6e2dea5ca -509 1017 7779861819629362 stm32f4xx_hal_rcc.pbi 50976e6b18f3b8bc -1102 1512 7779861824535881 stm32f4xx_hal_usart.pbi b368fafd8b8b8bb9 -41 502 7779861814490065 stm32f4xx_hal_tim.pbi 71840baae88d57c4 -1238 1323 7779861822325668 stm32f4xx_ll_dac.pbi 7dfc4be0933cdfaf -2014 2487 7762488664073707 uart.pbi 5ce52444157923c9 -4225 5863 7779861867860323 test.1.pbw f11e09b552b4c82f -453 505 7779861814452836 stm32f4xx_ll_crc.pbi dcf41d4b97590765 -44 108 7779861741857195 stm32f4xx_ll_rcc.pbi fb9ace481decf8ab -108 137 7779861742525843 stm32f4xx_ll_spi.pbi ce805017b70a4f43 -1443 1933 7779861828858434 stm32f4xx_hal_msp.pbi 8144db72f01a260b -1338 1408 7779861823307915 stm32f4xx_ll_usart.pbi 783190689e783d9 -32 92 7779861810495653 os_dbg.pbi f7287a072fe86a55 -932 1012 7779861819294899 stm32f4xx_ll_dma.pbi f9e6142ede2883b4 -2446 2943 7779861838958368 stm32f4xx_hal_crc.pbi 881b29e4c80746b3 -1203 1238 7779861821954241 stm32f4xx_ll_exti.pbi 883a2fd463949e02 -38 279 7779861743899362 ucos_ii.pbi 4e0ab25e0060431e -1323 1346 7779861822970547 test.1_part5.pbi 41f12be61ce67c27 -33 161 7779861742761254 stm32f4xx_ll_i2c.pbi 7f1151d8874c40c9 -2194 2590 7779861835461735 stm32f4xx_hal.pbi a073c739b6b34173 -43 508 7779861814651326 stm32f4xx_hal_sram.pbi 4652c5af4efd4e19 -1526 1558 7779861825167426 test.1_part6.pbi b9d684e502f25afa -506 1020 7779861819696914 stm32f4xx_hal_flash.pbi eccf13860e1d0c6a -39 452 7779861813860856 stm32f4xx_hal_tim_ex.pbi 3c68a2e86514987f -935 1338 7779861822934621 stm32f4xx_hal_wwdg.pbi fca2b44f67349f99 -455 931 7779861818869641 stm32f4xx_hal_flash_ramfunc.pbi ae498685b336a49c -450 1102 7779861820224077 stm32f4xx_hal_uart.pbi e7ca7ebbb4330340 -35 454 7762489045860992 timer.pbi 8f8acc6a162957f -503 1105 7779861820376041 stm32f4xx_hal_i2c.pbi 74395538aa12fa10 -2543 2956 7779861839130096 stm32f4xx_hal_dma.pbi 2d6aa8f3983bf80a -2591 2979 7779861839306732 stm32f4xx_hal_timebase_tim.pbi b6f5ce0feaca8054 -447 935 7779861818832924 stm32f4xx_hal_i2c_ex.pbi 7798e48f8e6ef374 -1891 2449 7779861834031794 stm32f4xx_hal_dma_ex.pbi 1960c5ab56ffede7 -2198 2702 7779861836459235 main.pbi 9c0a6aa02351636a -1054 1443 7779861823997789 stm32f4xx_hal_exti.pbi 373789209d565f00 -1506 2045 7779861829818472 stm32f4xx_it.pbi d01766022cb163bc -2281 2704 7779861836354539 stm32f4xx_hal_cortex.pbi 2c6d2473a153fb5a -2045 2445 7779861834000533 system_stm32f4xx.pbi f50e519d7e78a5de -2907 3311 7779861842662104 gpio.pbi a088b5271f02118a -92 455 7779861814098863 stm32f4xx_hal_gpio.pbi 53b438f48be9a8d0 -3311 3867 7779861848210744 test.1_part0.pbi 60db414ccd7a80f4 -3868 4224 7779861851816528 test.1.pbd 363d5d355a216cdf -2980 3544 7779861845016785 test.1_part1.pbi 72148e63fe682e2f -2956 3506 7779861844584390 test.1_part2.pbi 932c7a5b50912170 -1408 1889 7779861828454414 dma.pbi 4f5ebe00ac67ed57 -1559 2197 7779861831399466 tim.pbi f07c6d790a519d93 -1933 2543 7779861834937382 usart.pbi 7c2d93866867ab60 -2449 2907 7779861838637874 modbus_log.pbi 596603da5f343c45 -2705 3194 7779861840940120 flash_save.pbi dc7405226be28cc6 -2702 3097 7779861840206324 modbus_crc.pbi 9b76681ddf289794 -39 66 7779864077801756 stm32f4xx_ll_rcc.pbi fb9ace481decf8ab -41 95 7779864078080814 os_cpu_c.pbi eb75b848b406ea34 -37 180 7779864078808381 stm32f4xx_ll_crc.pbi dcf41d4b97590765 -180 211 7779864079236951 stm32f4xx_ll_i2c.pbi 7f1151d8874c40c9 -212 242 7779864079545921 stm32f4xx_ll_pwr.pbi 952cb4e4f4edb65b -31 394 7779864081011018 stm32f4xx_hal_sram.pbi 4652c5af4efd4e19 -34 397 7779864080991086 stm32f4xx_hal_flash_ramfunc.pbi ae498685b336a49c +888 917 7779864086288437 stm32f4xx_ll_rng.pbi 5e12b9ea00d0b826 +917 985 7779864086587439 stm32f4xx_ll_gpio.pbi df8b54563945d41d 243 401 7779864080921316 stm32f4xx_ll_tim.pbi b88554c6464192f5 -43 425 7779864081170493 stm32f4xx_hal_i2c.pbi 74395538aa12fa10 -67 428 7779864081220326 stm32f4xx_hal_i2c_ex.pbi 7798e48f8e6ef374 +2003 2332 7779864100361377 stm32f4xx_hal_flash_ex.pbi ac2d035774fe6a2e +781 1102 7779864088132275 stm32f4xx_hal_pwr.pbi b347497fce55b6a8 +212 242 7779864079545921 stm32f4xx_ll_pwr.pbi 952cb4e4f4edb65b +1067 1099 7779864088122309 test.1_part7.pbi 67c64030b23c9b51 +1102 1727 7779864093883046 test.1_part3.pbi 2c7780fc3f88c160 +451 781 7779864084888048 stm32f4xx_hal_rcc_ex.pbi c1d751d24d77a2df 394 451 7779864081648875 app_hooks.pbi ffd399489d189d5a -397 454 7779864081678775 os_dbg.pbi f7287a072fe86a55 +1096 1627 7779864093404651 test.1_part4.pbi b15d70d6e2dea5ca +426 887 7779864085810070 stm32f4xx_hal_pwr_ex.pbi b84426bf5a4ce0cf +41 95 7779864078080814 os_cpu_c.pbi eb75b848b406ea34 +428 783 7779864084878102 stm32f4xx_hal_rcc.pbi 50976e6b18f3b8bc 95 533 7779864082326621 stm32f4xx_hal_tim.pbi 71840baae88d57c4 +737 1070 7779864087653873 stm32f4xx_hal_usart.pbi b368fafd8b8b8bb9 +1258 2822 7779891595710928 test.1.pbw f11e09b552b4c82f +2014 2487 7762488664073707 uart.pbi 5ce52444157923c9 533 562 7779864082755179 stm32f4xx_ll_dac.pbi 7dfc4be0933cdfaf -402 737 7779864084329914 stm32f4xx_hal_gpio.pbi 53b438f48be9a8d0 -451 781 7779864084888048 stm32f4xx_hal_rcc_ex.pbi c1d751d24d77a2df -428 783 7779864084878102 stm32f4xx_hal_rcc.pbi 50976e6b18f3b8bc -455 835 7779864085276750 stm32f4xx_hal_uart.pbi e7ca7ebbb4330340 -426 887 7779864085810070 stm32f4xx_hal_pwr_ex.pbi b84426bf5a4ce0cf -562 915 7779864086228662 stm32f4xx_hal_tim_ex.pbi 3c68a2e86514987f -888 917 7779864086288437 stm32f4xx_ll_rng.pbi 5e12b9ea00d0b826 -917 985 7779864086587439 stm32f4xx_ll_gpio.pbi df8b54563945d41d -835 988 7779864086836620 stm32f4xx_ll_exti.pbi 883a2fd463949e02 +37 180 7779864078808381 stm32f4xx_ll_crc.pbi dcf41d4b97590765 +39 66 7779864077801756 stm32f4xx_ll_rcc.pbi fb9ace481decf8ab +1411 1888 7779864095427880 stm32f4xx_hal_msp.pbi 8144db72f01a260b 988 1018 7779864087315011 stm32f4xx_ll_spi.pbi ce805017b70a4f43 +397 454 7779864081678775 os_dbg.pbi f7287a072fe86a55 985 1022 7779864087315011 stm32f4xx_ll_usart.pbi 783190689e783d9 -1022 1064 7779864087623976 test.1_part6.pbi b9d684e502f25afa -915 1067 7779864087484440 ucos_ii.pbi 4e0ab25e0060431e -737 1070 7779864087653873 stm32f4xx_hal_usart.pbi b368fafd8b8b8bb9 +1087 1561 7779864092427902 stm32f4xx_hal_crc.pbi 881b29e4c80746b3 1018 1072 7779864087614016 stm32f4xx_ll_dma.pbi f9e6142ede2883b4 +835 988 7779864086836620 stm32f4xx_ll_exti.pbi 883a2fd463949e02 1073 1086 7779864087982776 test.1_part5.pbi 41f12be61ce67c27 -784 1096 7779864088092417 stm32f4xx_hal_wwdg.pbi fca2b44f67349f99 -1067 1099 7779864088122309 test.1_part7.pbi 67c64030b23c9b51 -781 1102 7779864088132275 stm32f4xx_hal_pwr.pbi b347497fce55b6a8 +915 1067 7779864087484440 ucos_ii.pbi 4e0ab25e0060431e 1065 1411 7779864091241871 stm32f4xx_hal.pbi a073c739b6b34173 -1070 1415 7779864091281756 stm32f4xx_hal_cortex.pbi 2c6d2473a153fb5a -1099 1558 7779864092248503 main.pbi 9c0a6aa02351636a -1087 1561 7779864092427902 stm32f4xx_hal_crc.pbi 881b29e4c80746b3 -1096 1627 7779864093404651 test.1_part4.pbi b15d70d6e2dea5ca -1102 1727 7779864093883046 test.1_part3.pbi 2c7780fc3f88c160 -1416 1884 7779864095776716 stm32f4xx_it.pbi d01766022cb163bc -1411 1888 7779864095427880 stm32f4xx_hal_msp.pbi 8144db72f01a260b +180 211 7779864079236951 stm32f4xx_ll_i2c.pbi 7f1151d8874c40c9 +31 394 7779864081011018 stm32f4xx_hal_sram.pbi 4652c5af4efd4e19 +1928 2249 7779864099623837 stm32f4xx_hal_flash.pbi eccf13860e1d0c6a +1022 1064 7779864087623976 test.1_part6.pbi b9d684e502f25afa +562 915 7779864086228662 stm32f4xx_hal_tim_ex.pbi 3c68a2e86514987f +34 397 7779864080991086 stm32f4xx_hal_flash_ramfunc.pbi ae498685b336a49c +784 1096 7779864088092417 stm32f4xx_hal_wwdg.pbi fca2b44f67349f99 +455 835 7779864085276750 stm32f4xx_hal_uart.pbi e7ca7ebbb4330340 +35 454 7762489045860992 timer.pbi 8f8acc6a162957f +43 425 7779864081170493 stm32f4xx_hal_i2c.pbi 74395538aa12fa10 1558 1928 7779864096055799 stm32f4xx_hal_dma.pbi 2d6aa8f3983bf80a -1561 2003 7779864096922881 usart.pbi 7c2d93866867ab60 -1628 2074 7779864097311580 gpio.pbi a088b5271f02118a +2329 2853 7779864104816466 stm32f4xx_hal_timebase_tim.pbi b6f5ce0feaca8054 1728 2077 7779864097620538 stm32f4xx_hal_dma_ex.pbi 1960c5ab56ffede7 -1884 2191 7779864099025844 system_stm32f4xx.pbi f50e519d7e78a5de -1928 2249 7779864099623837 stm32f4xx_hal_flash.pbi eccf13860e1d0c6a +67 428 7779864081220326 stm32f4xx_hal_i2c_ex.pbi 7798e48f8e6ef374 1889 2329 7779864100421194 stm32f4xx_hal_exti.pbi 373789209d565f00 -2003 2332 7779864100361377 stm32f4xx_hal_flash_ex.pbi ac2d035774fe6a2e -2077 2403 7779864101049066 modbus_crc.pbi 9b76681ddf289794 -2075 2466 7779864101716839 modbus_log.pbi 596603da5f343c45 +1099 1558 7779864092248503 main.pbi 9c0a6aa02351636a +1416 1884 7779864095776716 stm32f4xx_it.pbi d01766022cb163bc +1070 1415 7779864091281756 stm32f4xx_hal_cortex.pbi 2c6d2473a153fb5a +1884 2191 7779864099025844 system_stm32f4xx.pbi f50e519d7e78a5de +1628 2074 7779864097311580 gpio.pbi a088b5271f02118a +920 1258 7779891580405582 test.1.pbd 363d5d355a216cdf +2725 3265 7779864109759959 test.1_part0.pbi 60db414ccd7a80f4 +402 737 7779864084329914 stm32f4xx_hal_gpio.pbi 53b438f48be9a8d0 +402 919 7779891577026902 test.1_part1.pbi 72148e63fe682e2f +2332 2890 7779864105902840 test.1_part2.pbi 932c7a5b50912170 2191 2534 7779864102454373 dma.pbi 4f5ebe00ac67ed57 +33 401 7779891571834254 tim.pbi f07c6d790a519d93 +1561 2003 7779864096922881 usart.pbi 7c2d93866867ab60 +2075 2466 7779864101716839 modbus_log.pbi 596603da5f343c45 +2077 2403 7779864101049066 modbus_crc.pbi 9b76681ddf289794 2250 2725 7779864103859675 flash_save.pbi dc7405226be28cc6 -2404 2853 7779864105334755 tim.pbi f07c6d790a519d93 -2329 2853 7779864104816466 stm32f4xx_hal_timebase_tim.pbi b6f5ce0feaca8054 -2332 2890 7779864105902840 test.1_part2.pbi 932c7a5b50912170 -2725 3265 7779864109759959 test.1_part0.pbi 60db414ccd7a80f4 -2853 3381 7779864110945970 test.1_part1.pbi 72148e63fe682e2f -3381 3725 7779864114394463 test.1.pbd 363d5d355a216cdf -3726 5380 7779864130605606 test.1.pbw f11e09b552b4c82f -33 529 7779865513084254 tim.pbi f07c6d790a519d93 -530 1064 7779865518446322 test.1_part1.pbi 72148e63fe682e2f -1065 1414 7779865521944605 test.1.pbd 363d5d355a216cdf -1415 3026 7779865537731812 test.1.pbw f11e09b552b4c82f -45 415 7779867390986574 tim.pbi f07c6d790a519d93 -416 938 7779867396229030 test.1_part1.pbi 72148e63fe682e2f -939 1288 7779867399716524 test.1.pbd 363d5d355a216cdf -1288 2850 7779867415014999 test.1.pbw f11e09b552b4c82f -31 401 7779867708175670 tim.pbi f07c6d790a519d93 -401 924 7779867713413656 test.1_part1.pbi 72148e63fe682e2f -925 1262 7779867716792354 test.1.pbd 363d5d355a216cdf -1263 2832 7779867732161355 test.1.pbw f11e09b552b4c82f -32 532 7779870407206005 tim.pbi f07c6d790a519d93 -533 1077 7779870412657752 test.1_part1.pbi 72148e63fe682e2f -1077 1421 7779870416096260 test.1.pbd 363d5d355a216cdf -1421 3077 7779870432269862 test.1.pbw f11e09b552b4c82f -32 427 7779870459322967 tim.pbi f07c6d790a519d93 -428 1019 7779870465260114 test.1_part1.pbi 72148e63fe682e2f -1020 1462 7779870469379557 test.1.pbd 363d5d355a216cdf -1463 3235 7779870487007516 test.1.pbw f11e09b552b4c82f -32 403 7779870759764967 tim.pbi f07c6d790a519d93 -403 928 7779870765018040 test.1_part1.pbi 72148e63fe682e2f -928 1277 7779870768495782 test.1.pbd 363d5d355a216cdf -1278 2933 7779870784711677 test.1.pbw f11e09b552b4c82f -32 399 7779871180931990 tim.pbi f07c6d790a519d93 -399 919 7779871186144559 test.1_part1.pbi 72148e63fe682e2f -920 1256 7779871189513288 test.1.pbd 363d5d355a216cdf -1257 2817 7779871204800851 test.1.pbw f11e09b552b4c82f -32 404 7779871415998380 tim.pbi f07c6d790a519d93 -404 935 7779871421320557 test.1_part1.pbi 72148e63fe682e2f -935 1286 7779871424798927 test.1.pbd 363d5d355a216cdf -1287 2903 7779871440645942 test.1.pbw f11e09b552b4c82f -32 523 7779871878913129 tim.pbi f07c6d790a519d93 -523 1070 7779871884384826 test.1_part1.pbi 72148e63fe682e2f -1071 1415 7779871887904017 test.1.pbd 363d5d355a216cdf -1415 3023 7779871903662251 test.1.pbw f11e09b552b4c82f -34 406 7779872443065275 tim.pbi f07c6d790a519d93 -407 935 7779872448357586 test.1_part1.pbi 72148e63fe682e2f -935 1325 7779872452264502 test.1.pbd 363d5d355a216cdf -1325 2978 7779872468341389 test.1.pbw f11e09b552b4c82f +33 404 7779895154680307 tim.pbi f07c6d790a519d93 +404 923 7779895159888052 test.1_part1.pbi 72148e63fe682e2f +924 1272 7779895163346472 test.1.pbd 363d5d355a216cdf +1273 2835 7779895178675206 test.1.pbw f11e09b552b4c82f +47 518 7779895804014075 tim.pbi f07c6d790a519d93 +519 1107 7779895809839578 test.1_part1.pbi 72148e63fe682e2f +1107 1466 7779895813689518 test.1.pbd 363d5d355a216cdf +1466 3114 7779895829746730 test.1.pbw f11e09b552b4c82f +35 422 7779896370555654 tim.pbi f07c6d790a519d93 +422 952 7779896375867886 test.1_part1.pbi 72148e63fe682e2f +953 1298 7779896379326313 test.1.pbd 363d5d355a216cdf +1299 2879 7779896394799603 test.1.pbw f11e09b552b4c82f +33 440 7779896565405484 tim.pbi f07c6d790a519d93 +440 991 7779896570917038 test.1_part1.pbi 72148e63fe682e2f +991 1332 7779896574325634 test.1.pbd 363d5d355a216cdf +1332 3019 7779896590528358 test.1.pbw f11e09b552b4c82f +34 437 7779898424332537 tim.pbi f07c6d790a519d93 +437 971 7779898429684634 test.1_part1.pbi 72148e63fe682e2f +972 1396 7779898433906931 test.1.pbd 363d5d355a216cdf +1397 3014 7779898449772061 test.1.pbw f11e09b552b4c82f diff --git a/PLSR/PLSR/EWARM/test.1/Obj/test.1.pbd b/PLSR/PLSR/EWARM/test.1/Obj/test.1.pbd index beeb888..694a099 100644 Binary files a/PLSR/PLSR/EWARM/test.1/Obj/test.1.pbd and b/PLSR/PLSR/EWARM/test.1/Obj/test.1.pbd differ diff --git a/PLSR/PLSR/EWARM/test.1/Obj/test.1.pbd.browse b/PLSR/PLSR/EWARM/test.1/Obj/test.1.pbd.browse index beeb888..694a099 100644 Binary files a/PLSR/PLSR/EWARM/test.1/Obj/test.1.pbd.browse and b/PLSR/PLSR/EWARM/test.1/Obj/test.1.pbd.browse differ diff --git a/PLSR/PLSR/EWARM/test.1/Obj/test.1.pbw b/PLSR/PLSR/EWARM/test.1/Obj/test.1.pbw index 4cb001d..89d2562 100644 --- a/PLSR/PLSR/EWARM/test.1/Obj/test.1.pbw +++ b/PLSR/PLSR/EWARM/test.1/Obj/test.1.pbw @@ -307496,7 +307496,7 @@ "display": "void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *)", "location": { "column": "6", - "line": "1563", + "line": "1565", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "HAL_TIM_PeriodElapsedCallback", @@ -307504,13 +307504,13 @@ "scope": null }, { - "ID": "c:tim.c@53865@F@HAL_TIM_PeriodElapsedCallback@current_section_pulses", + "ID": "c:tim.c@53920@F@HAL_TIM_PeriodElapsedCallback@current_section_pulses", "What": "Variable", "defdec": "Def", "display": "current_section_pulses", "location": { "column": "13", - "line": "1577", + "line": "1579", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "current_section_pulses", @@ -307518,13 +307518,13 @@ "scope": null }, { - "ID": "c:tim.c@57525@F@HAL_TIM_PeriodElapsedCallback@arr_freq", + "ID": "c:tim.c@57580@F@HAL_TIM_PeriodElapsedCallback@arr_freq", "What": "Variable", "defdec": "Def", "display": "arr_freq", "location": { "column": "34", - "line": "1645", + "line": "1647", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "arr_freq", @@ -307532,13 +307532,13 @@ "scope": null }, { - "ID": "c:tim.c@59294@F@HAL_TIM_PeriodElapsedCallback@arr_freq", + "ID": "c:tim.c@59349@F@HAL_TIM_PeriodElapsedCallback@arr_freq", "What": "Variable", "defdec": "Def", "display": "arr_freq", "location": { "column": "34", - "line": "1682", + "line": "1684", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "arr_freq", @@ -307546,13 +307546,13 @@ "scope": null }, { - "ID": "c:tim.c@60340@F@HAL_TIM_PeriodElapsedCallback@current_tim2_count", + "ID": "c:tim.c@60395@F@HAL_TIM_PeriodElapsedCallback@current_tim2_count", "What": "Variable", "defdec": "Def", "display": "current_tim2_count", "location": { "column": "14", - "line": "1713", + "line": "1715", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "current_tim2_count", @@ -307560,13 +307560,13 @@ "scope": null }, { - "ID": "c:tim.c@60460@F@HAL_TIM_PeriodElapsedCallback@current_pulse_count", + "ID": "c:tim.c@60515@F@HAL_TIM_PeriodElapsedCallback@current_pulse_count", "What": "Variable", "defdec": "Def", "display": "current_pulse_count", "location": { "column": "13", - "line": "1716", + "line": "1718", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "current_pulse_count", @@ -307580,7 +307580,7 @@ "display": "void PLSR_Route_Set(PLSR_RouteConfig_t *)", "location": { "column": "6", - "line": "1746", + "line": "1748", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_Route_Set", @@ -307588,13 +307588,13 @@ "scope": null }, { - "ID": "c:tim.c@63336@F@PLSR_Route_Set@i", + "ID": "c:tim.c@63391@F@PLSR_Route_Set@i", "What": "Variable", "defdec": "Def", "display": "i", "location": { "column": "18", - "line": "1772", + "line": "1774", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "i", @@ -307608,7 +307608,7 @@ "display": "void PLSR_Route_Init(PLSR_RouteConfig_t *)", "location": { "column": "6", - "line": "1783", + "line": "1785", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_Route_Init", @@ -307622,7 +307622,7 @@ "display": "void PLSR_Route_Start(PLSR_RouteConfig_t *)", "location": { "column": "6", - "line": "1820", + "line": "1822", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_Route_Start", @@ -307636,7 +307636,7 @@ "display": "void PLSR_Route_Stop(PLSR_RouteConfig_t *)", "location": { "column": "6", - "line": "1892", + "line": "1894", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_Route_Stop", @@ -307650,7 +307650,7 @@ "display": "uint8_t PLSR_SetDirectionPin(PLSR_RouteConfig_t *, PLSR_SectionConfig_t *)", "location": { "column": "16", - "line": "1935", + "line": "1937", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_SetDirectionPin", @@ -307658,13 +307658,13 @@ "scope": null }, { - "ID": "c:tim.c@70606@F@PLSR_SetDirectionPin@dir_pin_state", + "ID": "c:tim.c@70661@F@PLSR_SetDirectionPin@dir_pin_state", "What": "Variable", "defdec": "Def", "display": "dir_pin_state", "location": { "column": "19", - "line": "1940", + "line": "1942", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "dir_pin_state", @@ -307672,13 +307672,13 @@ "scope": null }, { - "ID": "c:tim.c@70745@F@PLSR_SetDirectionPin@is_forward", + "ID": "c:tim.c@70800@F@PLSR_SetDirectionPin@is_forward", "What": "Variable", "defdec": "Def", "display": "is_forward", "location": { "column": "13", - "line": "1943", + "line": "1945", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "is_forward", @@ -307686,13 +307686,13 @@ "scope": null }, { - "ID": "c:tim.c@71020@F@PLSR_SetDirectionPin@direction_changed", + "ID": "c:tim.c@71075@F@PLSR_SetDirectionPin@direction_changed", "What": "Variable", "defdec": "Def", "display": "direction_changed", "location": { "column": "13", - "line": "1954", + "line": "1956", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "direction_changed", @@ -307706,7 +307706,7 @@ "display": "void PLSR_Section_StartNewSection(PLSR_RouteConfig_t *)", "location": { "column": "6", - "line": "2017", + "line": "2019", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_Section_StartNewSection", @@ -307714,13 +307714,13 @@ "scope": null }, { - "ID": "c:tim.c@72958@F@PLSR_Section_StartNewSection@current_section", + "ID": "c:tim.c@73013@F@PLSR_Section_StartNewSection@current_section", "What": "Variable", "defdec": "Def", "display": "current_section", "location": { "column": "27", - "line": "2020", + "line": "2022", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "current_section", @@ -307728,13 +307728,13 @@ "scope": null }, { - "ID": "c:tim.c@74702@F@PLSR_Section_StartNewSection@direction_changed", + "ID": "c:tim.c@74757@F@PLSR_Section_StartNewSection@direction_changed", "What": "Variable", "defdec": "Def", "display": "direction_changed", "location": { "column": "13", - "line": "2062", + "line": "2064", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "direction_changed", @@ -307748,7 +307748,7 @@ "display": "void PLSR_SetupThreePartExecution(PLSR_RouteConfig_t *)", "location": { "column": "6", - "line": "2198", + "line": "2200", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_SetupThreePartExecution", @@ -307756,13 +307756,13 @@ "scope": null }, { - "ID": "c:tim.c@81440@F@PLSR_SetupThreePartExecution@arr_freq", + "ID": "c:tim.c@81495@F@PLSR_SetupThreePartExecution@arr_freq", "What": "Variable", "defdec": "Def", "display": "arr_freq", "location": { "column": "34", - "line": "2215", + "line": "2217", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "arr_freq", @@ -307770,13 +307770,13 @@ "scope": null }, { - "ID": "c:tim.c@82158@F@PLSR_SetupThreePartExecution@arr_freq", + "ID": "c:tim.c@82213@F@PLSR_SetupThreePartExecution@arr_freq", "What": "Variable", "defdec": "Def", "display": "arr_freq", "location": { "column": "34", - "line": "2228", + "line": "2230", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "arr_freq", @@ -307790,7 +307790,7 @@ "display": "void PLSR_Section_SwitchNext(PLSR_RouteConfig_t *, uint8_t)", "location": { "column": "6", - "line": "2331", + "line": "2333", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_Section_SwitchNext", @@ -307798,13 +307798,13 @@ "scope": null }, { - "ID": "c:tim.c@86966@F@PLSR_Section_SwitchNext@current_section", + "ID": "c:tim.c@87021@F@PLSR_Section_SwitchNext@current_section", "What": "Variable", "defdec": "Def", "display": "current_section", "location": { "column": "27", - "line": "2335", + "line": "2337", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "current_section", @@ -307812,13 +307812,13 @@ "scope": null }, { - "ID": "c:tim.c@87060@F@PLSR_Section_SwitchNext@next_section_num", + "ID": "c:tim.c@87115@F@PLSR_Section_SwitchNext@next_section_num", "What": "Variable", "defdec": "Def", "display": "next_section_num", "location": { "column": "13", - "line": "2336", + "line": "2338", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "next_section_num", @@ -307826,13 +307826,13 @@ "scope": null }, { - "ID": "c:tim.c@87308@F@PLSR_Section_SwitchNext@actual_total", + "ID": "c:tim.c@87363@F@PLSR_Section_SwitchNext@actual_total", "What": "Variable", "defdec": "Def", "display": "actual_total", "location": { "column": "21", - "line": "2343", + "line": "2345", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "actual_total", @@ -307846,7 +307846,7 @@ "display": "uint32_t PLSR_Calculate_FreqByPosition(PLSR_RouteConfig_t *, uint8_t)", "location": { "column": "10", - "line": "2398", + "line": "2400", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_Calculate_FreqByPosition", @@ -307854,13 +307854,13 @@ "scope": null }, { - "ID": "c:tim.c@89514@F@PLSR_Calculate_FreqByPosition@s_last_executed_pulses", + "ID": "c:tim.c@89569@F@PLSR_Calculate_FreqByPosition@s_last_executed_pulses", "What": "Variable", "defdec": "Def", "display": "s_last_executed_pulses", "location": { "column": "21", - "line": "2403", + "line": "2405", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "s_last_executed_pulses", @@ -307868,13 +307868,13 @@ "scope": null }, { - "ID": "c:tim.c@89598@F@PLSR_Calculate_FreqByPosition@s_last_calculated_freq", + "ID": "c:tim.c@89653@F@PLSR_Calculate_FreqByPosition@s_last_calculated_freq", "What": "Variable", "defdec": "Def", "display": "s_last_calculated_freq", "location": { "column": "21", - "line": "2404", + "line": "2406", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "s_last_calculated_freq", @@ -307882,13 +307882,13 @@ "scope": null }, { - "ID": "c:tim.c@89647@F@PLSR_Calculate_FreqByPosition@s_last_is_accel", + "ID": "c:tim.c@89702@F@PLSR_Calculate_FreqByPosition@s_last_is_accel", "What": "Variable", "defdec": "Def", "display": "s_last_is_accel", "location": { "column": "20", - "line": "2405", + "line": "2407", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "s_last_is_accel", @@ -307896,13 +307896,13 @@ "scope": null }, { - "ID": "c:tim.c@89717@F@PLSR_Calculate_FreqByPosition@s_last_section_num", + "ID": "c:tim.c@89772@F@PLSR_Calculate_FreqByPosition@s_last_section_num", "What": "Variable", "defdec": "Def", "display": "s_last_section_num", "location": { "column": "20", - "line": "2406", + "line": "2408", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "s_last_section_num", @@ -307910,13 +307910,13 @@ "scope": null }, { - "ID": "c:tim.c@89826@F@PLSR_Calculate_FreqByPosition@current_section", + "ID": "c:tim.c@89881@F@PLSR_Calculate_FreqByPosition@current_section", "What": "Variable", "defdec": "Def", "display": "current_section", "location": { "column": "27", - "line": "2409", + "line": "2411", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "current_section", @@ -307924,13 +307924,13 @@ "scope": null }, { - "ID": "c:tim.c@89959@F@PLSR_Calculate_FreqByPosition@current_tim2_count", + "ID": "c:tim.c@90014@F@PLSR_Calculate_FreqByPosition@current_tim2_count", "What": "Variable", "defdec": "Def", "display": "current_tim2_count", "location": { "column": "13", - "line": "2412", + "line": "2414", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "current_tim2_count", @@ -307938,13 +307938,13 @@ "scope": null }, { - "ID": "c:tim.c@90024@F@PLSR_Calculate_FreqByPosition@executed_pulses", + "ID": "c:tim.c@90079@F@PLSR_Calculate_FreqByPosition@executed_pulses", "What": "Variable", "defdec": "Def", "display": "executed_pulses", "location": { "column": "13", - "line": "2413", + "line": "2415", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "executed_pulses", @@ -307952,13 +307952,13 @@ "scope": null }, { - "ID": "c:tim.c@90058@F@PLSR_Calculate_FreqByPosition@next_executed_pulses", + "ID": "c:tim.c@90113@F@PLSR_Calculate_FreqByPosition@next_executed_pulses", "What": "Variable", "defdec": "Def", "display": "next_executed_pulses", "location": { "column": "13", - "line": "2414", + "line": "2416", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "next_executed_pulses", @@ -307966,13 +307966,13 @@ "scope": null }, { - "ID": "c:tim.c@91317@F@PLSR_Calculate_FreqByPosition@v0", + "ID": "c:tim.c@90895@F@PLSR_Calculate_FreqByPosition@v0", "What": "Variable", "defdec": "Def", "display": "v0", "location": { "column": "14", - "line": "2452", + "line": "2438", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "v0", @@ -307980,13 +307980,13 @@ "scope": null }, { - "ID": "c:tim.c@91399@F@PLSR_Calculate_FreqByPosition@a", + "ID": "c:tim.c@90977@F@PLSR_Calculate_FreqByPosition@a", "What": "Variable", "defdec": "Def", "display": "a", "location": { "column": "14", - "line": "2453", + "line": "2439", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "a", @@ -307994,13 +307994,13 @@ "scope": null }, { - "ID": "c:tim.c@91701@F@PLSR_Calculate_FreqByPosition@freq_start", + "ID": "c:tim.c@91279@F@PLSR_Calculate_FreqByPosition@freq_start", "What": "Variable", "defdec": "Def", "display": "freq_start", "location": { "column": "14", - "line": "2466", + "line": "2452", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "freq_start", @@ -308008,13 +308008,13 @@ "scope": null }, { - "ID": "c:tim.c@91766@F@PLSR_Calculate_FreqByPosition@freq_end", + "ID": "c:tim.c@91344@F@PLSR_Calculate_FreqByPosition@freq_end", "What": "Variable", "defdec": "Def", "display": "freq_end", "location": { "column": "14", - "line": "2467", + "line": "2453", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "freq_end", @@ -308022,13 +308022,13 @@ "scope": null }, { - "ID": "c:tim.c@92090@F@PLSR_Calculate_FreqByPosition@v0_squared", + "ID": "c:tim.c@91668@F@PLSR_Calculate_FreqByPosition@v0_squared", "What": "Variable", "defdec": "Def", "display": "v0_squared", "location": { "column": "22", - "line": "2478", + "line": "2464", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "v0_squared", @@ -308036,13 +308036,13 @@ "scope": null }, { - "ID": "c:tim.c@92144@F@PLSR_Calculate_FreqByPosition@freq_squared_start", + "ID": "c:tim.c@91722@F@PLSR_Calculate_FreqByPosition@freq_squared_start", "What": "Variable", "defdec": "Def", "display": "freq_squared_start", "location": { "column": "22", - "line": "2479", + "line": "2465", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "freq_squared_start", @@ -308050,13 +308050,13 @@ "scope": null }, { - "ID": "c:tim.c@92326@F@PLSR_Calculate_FreqByPosition@v0_squared", + "ID": "c:tim.c@91904@F@PLSR_Calculate_FreqByPosition@v0_squared", "What": "Variable", "defdec": "Def", "display": "v0_squared", "location": { "column": "22", - "line": "2484", + "line": "2470", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "v0_squared", @@ -308064,13 +308064,13 @@ "scope": null }, { - "ID": "c:tim.c@92456@F@PLSR_Calculate_FreqByPosition@freq_squared_start", + "ID": "c:tim.c@92034@F@PLSR_Calculate_FreqByPosition@freq_squared_start", "What": "Variable", "defdec": "Def", "display": "freq_squared_start", "location": { "column": "26", - "line": "2487", + "line": "2473", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "freq_squared_start", @@ -308078,13 +308078,13 @@ "scope": null }, { - "ID": "c:tim.c@92821@F@PLSR_Calculate_FreqByPosition@v0_squared", + "ID": "c:tim.c@92399@F@PLSR_Calculate_FreqByPosition@v0_squared", "What": "Variable", "defdec": "Def", "display": "v0_squared", "location": { "column": "18", - "line": "2499", + "line": "2485", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "v0_squared", @@ -308092,13 +308092,13 @@ "scope": null }, { - "ID": "c:tim.c@92871@F@PLSR_Calculate_FreqByPosition@freq_squared_end", + "ID": "c:tim.c@92449@F@PLSR_Calculate_FreqByPosition@freq_squared_end", "What": "Variable", "defdec": "Def", "display": "freq_squared_end", "location": { "column": "18", - "line": "2500", + "line": "2486", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "freq_squared_end", @@ -308106,13 +308106,13 @@ "scope": null }, { - "ID": "c:tim.c@93032@F@PLSR_Calculate_FreqByPosition@v0_squared", + "ID": "c:tim.c@92610@F@PLSR_Calculate_FreqByPosition@v0_squared", "What": "Variable", "defdec": "Def", "display": "v0_squared", "location": { "column": "18", - "line": "2505", + "line": "2491", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "v0_squared", @@ -308120,13 +308120,13 @@ "scope": null }, { - "ID": "c:tim.c@93155@F@PLSR_Calculate_FreqByPosition@freq_squared_end", + "ID": "c:tim.c@92733@F@PLSR_Calculate_FreqByPosition@freq_squared_end", "What": "Variable", "defdec": "Def", "display": "freq_squared_end", "location": { "column": "22", - "line": "2508", + "line": "2494", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "freq_squared_end", @@ -308134,13 +308134,13 @@ "scope": null }, { - "ID": "c:tim.c@93421@F@PLSR_Calculate_FreqByPosition@calculated_freq", + "ID": "c:tim.c@92999@F@PLSR_Calculate_FreqByPosition@calculated_freq", "What": "Variable", "defdec": "Def", "display": "calculated_freq", "location": { "column": "14", - "line": "2518", + "line": "2504", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "calculated_freq", @@ -308154,7 +308154,7 @@ "display": "void PLSR_Accel_Process(PLSR_RouteConfig_t *)", "location": { "column": "6", - "line": "2539", + "line": "2525", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_Accel_Process", @@ -308162,13 +308162,13 @@ "scope": null }, { - "ID": "c:tim.c@94988@F@PLSR_Accel_Process@calculated_freq", + "ID": "c:tim.c@94566@F@PLSR_Accel_Process@calculated_freq", "What": "Variable", "defdec": "Def", "display": "calculated_freq", "location": { "column": "18", - "line": "2564", + "line": "2550", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "calculated_freq", @@ -308176,13 +308176,13 @@ "scope": null }, { - "ID": "c:tim.c@96760@F@PLSR_Accel_Process@calculated_freq", + "ID": "c:tim.c@96338@F@PLSR_Accel_Process@calculated_freq", "What": "Variable", "defdec": "Def", "display": "calculated_freq", "location": { "column": "18", - "line": "2609", + "line": "2595", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "calculated_freq", @@ -308196,7 +308196,7 @@ "display": "void PLSR_Accel_UpdateRates(PLSR_RouteConfig_t *)", "location": { "column": "6", - "line": "2643", + "line": "2629", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_Accel_UpdateRates", @@ -308210,7 +308210,7 @@ "display": "void PLSR_Accel_SetDefaultParams(PLSR_RouteConfig_t *, uint32_t, uint32_t)", "location": { "column": "6", - "line": "2676", + "line": "2662", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_Accel_SetDefaultParams", @@ -308224,7 +308224,7 @@ "display": "void PLSR_TaskSectionSwitch(PLSR_RouteConfig_t *)", "location": { "column": "6", - "line": "2695", + "line": "2681", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_TaskSectionSwitch", @@ -308232,13 +308232,13 @@ "scope": null }, { - "ID": "c:tim.c@99549@F@PLSR_TaskSectionSwitch@current_section", + "ID": "c:tim.c@99127@F@PLSR_TaskSectionSwitch@current_section", "What": "Variable", "defdec": "Def", "display": "current_section", "location": { "column": "27", - "line": "2699", + "line": "2685", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "current_section", @@ -308252,7 +308252,7 @@ "display": "uint8_t PLSR_Section_CheckPulseComplete(PLSR_RouteConfig_t *)", "location": { "column": "9", - "line": "2793", + "line": "2779", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_Section_CheckPulseComplete", @@ -308260,13 +308260,13 @@ "scope": null }, { - "ID": "c:tim.c@103526@F@PLSR_Section_CheckPulseComplete@current_section", + "ID": "c:tim.c@103104@F@PLSR_Section_CheckPulseComplete@current_section", "What": "Variable", "defdec": "Def", "display": "current_section", "location": { "column": "27", - "line": "2797", + "line": "2783", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "current_section", @@ -308274,13 +308274,13 @@ "scope": null }, { - "ID": "c:tim.c@103837@F@PLSR_Section_CheckPulseComplete@target_pulse", + "ID": "c:tim.c@103415@F@PLSR_Section_CheckPulseComplete@target_pulse", "What": "Variable", "defdec": "Def", "display": "target_pulse", "location": { "column": "21", - "line": "2803", + "line": "2789", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "target_pulse", @@ -308294,7 +308294,7 @@ "display": "uint8_t PLSR_Section_CheckWaitCondition(PLSR_RouteConfig_t *)", "location": { "column": "9", - "line": "2818", + "line": "2804", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_Section_CheckWaitCondition", @@ -308302,13 +308302,13 @@ "scope": null }, { - "ID": "c:tim.c@104518@F@PLSR_Section_CheckWaitCondition@current_section", + "ID": "c:tim.c@104096@F@PLSR_Section_CheckWaitCondition@current_section", "What": "Variable", "defdec": "Def", "display": "current_section", "location": { "column": "27", - "line": "2824", + "line": "2810", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "current_section", @@ -308316,13 +308316,13 @@ "scope": null }, { - "ID": "c:tim.c@104612@F@PLSR_Section_CheckWaitCondition@wait_cond", + "ID": "c:tim.c@104190@F@PLSR_Section_CheckWaitCondition@wait_cond", "What": "Variable", "defdec": "Def", "display": "wait_cond", "location": { "column": "27", - "line": "2825", + "line": "2811", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "wait_cond", @@ -308336,7 +308336,7 @@ "display": "uint8_t PLSR_Wait_CheckExtEvent(PLSR_RouteConfig_t *)", "location": { "column": "9", - "line": "2860", + "line": "2846", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_Wait_CheckExtEvent", @@ -308344,13 +308344,13 @@ "scope": null }, { - "ID": "c:tim.c@106150@F@PLSR_Wait_CheckExtEvent@current_section", + "ID": "c:tim.c@105728@F@PLSR_Wait_CheckExtEvent@current_section", "What": "Variable", "defdec": "Def", "display": "current_section", "location": { "column": "27", - "line": "2864", + "line": "2850", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "current_section", @@ -308358,13 +308358,13 @@ "scope": null }, { - "ID": "c:tim.c@106244@F@PLSR_Wait_CheckExtEvent@wait_cond", + "ID": "c:tim.c@105822@F@PLSR_Wait_CheckExtEvent@wait_cond", "What": "Variable", "defdec": "Def", "display": "wait_cond", "location": { "column": "27", - "line": "2865", + "line": "2851", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "wait_cond", @@ -308378,7 +308378,7 @@ "display": "void PLSR_SetExtEvent(PLSR_RouteConfig_t *)", "location": { "column": "6", - "line": "2877", + "line": "2863", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_SetExtEvent", @@ -308386,13 +308386,13 @@ "scope": null }, { - "ID": "c:tim.c@106685@F@PLSR_SetExtEvent@current_section", + "ID": "c:tim.c@106263@F@PLSR_SetExtEvent@current_section", "What": "Variable", "defdec": "Def", "display": "current_section", "location": { "column": "27", - "line": "2881", + "line": "2867", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "current_section", @@ -308400,13 +308400,13 @@ "scope": null }, { - "ID": "c:tim.c@106779@F@PLSR_SetExtEvent@wait_cond", + "ID": "c:tim.c@106357@F@PLSR_SetExtEvent@wait_cond", "What": "Variable", "defdec": "Def", "display": "wait_cond", "location": { "column": "27", - "line": "2882", + "line": "2868", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "wait_cond", @@ -308420,7 +308420,7 @@ "display": "void PLSR_ClearExtEvent(PLSR_RouteConfig_t *)", "location": { "column": "6", - "line": "2889", + "line": "2875", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_ClearExtEvent", @@ -308428,13 +308428,13 @@ "scope": null }, { - "ID": "c:tim.c@107100@F@PLSR_ClearExtEvent@current_section", + "ID": "c:tim.c@106678@F@PLSR_ClearExtEvent@current_section", "What": "Variable", "defdec": "Def", "display": "current_section", "location": { "column": "27", - "line": "2893", + "line": "2879", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "current_section", @@ -308442,13 +308442,13 @@ "scope": null }, { - "ID": "c:tim.c@107194@F@PLSR_ClearExtEvent@wait_cond", + "ID": "c:tim.c@106772@F@PLSR_ClearExtEvent@wait_cond", "What": "Variable", "defdec": "Def", "display": "wait_cond", "location": { "column": "27", - "line": "2894", + "line": "2880", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "wait_cond", @@ -308462,7 +308462,7 @@ "display": "s_section_switch_sem", "location": { "column": "18", - "line": "2905", + "line": "2891", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "s_section_switch_sem", @@ -308476,7 +308476,7 @@ "display": "void PLSR_SectionSwitchInit(void)", "location": { "column": "6", - "line": "2913", + "line": "2899", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_SectionSwitchInit", @@ -308490,7 +308490,7 @@ "display": "void PLSR_SectionSwitchSignal(void)", "location": { "column": "6", - "line": "2930", + "line": "2916", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_SectionSwitchSignal", @@ -308504,7 +308504,7 @@ "display": "void PLSR_SectionSwitchTask(void *)", "location": { "column": "6", - "line": "2944", + "line": "2930", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "PLSR_SectionSwitchTask", @@ -308512,13 +308512,13 @@ "scope": null }, { - "ID": "c:tim.c@108526@F@PLSR_SectionSwitchTask@err", + "ID": "c:tim.c@108104@F@PLSR_SectionSwitchTask@err", "What": "Variable", "defdec": "Def", "display": "err", "location": { "column": "11", - "line": "2946", + "line": "2932", "path": "e:\\Users\\Mortal\\Desktop\\Train_Camp_PLSR\\PLSR\\PLSR\\Core\\Src\\tim.c" }, "name": "err", diff --git a/PLSR/PLSR/EWARM/test.1/Obj/test.1_part1.pbi b/PLSR/PLSR/EWARM/test.1/Obj/test.1_part1.pbi index 458272c..99b47cb 100644 Binary files a/PLSR/PLSR/EWARM/test.1/Obj/test.1_part1.pbi and b/PLSR/PLSR/EWARM/test.1/Obj/test.1_part1.pbi differ diff --git a/PLSR/PLSR/EWARM/test.1/Obj/tim.pbi b/PLSR/PLSR/EWARM/test.1/Obj/tim.pbi index 7b773a7..60fba67 100644 Binary files a/PLSR/PLSR/EWARM/test.1/Obj/tim.pbi and b/PLSR/PLSR/EWARM/test.1/Obj/tim.pbi differ