diff --git a/PLSR/PLSR/Core/Src/tim.c b/PLSR/PLSR/Core/Src/tim.c index 3cbec02..ff27e88 100644 --- a/PLSR/PLSR/Core/Src/tim.c +++ b/PLSR/PLSR/Core/Src/tim.c @@ -647,8 +647,11 @@ void PLSR_PWM_Init(void) MX_TIM14_Init(); MX_TIM2_Init(); // TIM2恢复用于脉冲计数 MX_TIM6_Init(); - // 停止PWM输出 - HAL_TIM_PWM_Stop(&htim10, TIM_CHANNEL_1); + + HAL_TIM_PWM_Start(&htim10, TIM_CHANNEL_1); + HAL_TIM_PWM_Start(&htim11, TIM_CHANNEL_1); + HAL_TIM_PWM_Start(&htim13, TIM_CHANNEL_1); + HAL_TIM_PWM_Start(&htim14, TIM_CHANNEL_1); BackupSRAM_RestoreData(); } @@ -667,23 +670,28 @@ void PLSR_PWM_Start(void) switch(g_plsr_route.output_port) { case 0: // TIM10 - HAL_TIM_PWM_Start_IT(&htim10, TIM_CHANNEL_1); + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period / 2); // 设置占空比为50% + //HAL_TIM_PWM_Start_IT(&htim10, TIM_CHANNEL_1); break; case 1: // TIM11 - HAL_TIM_PWM_Start_IT(&htim11, TIM_CHANNEL_1); + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period / 2); + //HAL_TIM_PWM_Start_IT(&htim11, TIM_CHANNEL_1); break; case 2: // TIM13 - HAL_TIM_PWM_Start_IT(&htim13, TIM_CHANNEL_1); + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period / 2); + //HAL_TIM_PWM_Start_IT(&htim13, TIM_CHANNEL_1); break; case 3: // TIM14 - HAL_TIM_PWM_Start_IT(&htim14, TIM_CHANNEL_1); + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period / 2); + //HAL_TIM_PWM_Start_IT(&htim14, TIM_CHANNEL_1); break; default: // 默认使用TIM10 - HAL_TIM_PWM_Start_IT(&htim10, TIM_CHANNEL_1); + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period / 2); + //HAL_TIM_PWM_Start_IT(&htim10, TIM_CHANNEL_1); break; } } @@ -706,23 +714,28 @@ void PLSR_PWM_Stop(void) switch(g_plsr_route.output_port) { case 0: // TIM10 - HAL_TIM_PWM_Stop(&htim10, TIM_CHANNEL_1); + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period); // + //HAL_TIM_PWM_Stop(&htim10, TIM_CHANNEL_1); break; case 1: // TIM11 - HAL_TIM_PWM_Stop(&htim11, TIM_CHANNEL_1); + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period); // + //HAL_TIM_PWM_Stop(&htim11, TIM_CHANNEL_1); break; case 2: // TIM13 - HAL_TIM_PWM_Stop(&htim13, TIM_CHANNEL_1); + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period); // + //HAL_TIM_PWM_Stop(&htim13, TIM_CHANNEL_1); break; case 3: // TIM14 - HAL_TIM_PWM_Stop(&htim14, TIM_CHANNEL_1); + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period); // + //HAL_TIM_PWM_Stop(&htim14, TIM_CHANNEL_1); break; default: // 默认使用TIM10 - HAL_TIM_PWM_Stop(&htim10, TIM_CHANNEL_1); + __HAL_TIM_SET_COMPARE(&htim10, TIM_CHANNEL_1, htim10.Init.Period); // + //HAL_TIM_PWM_Stop(&htim10, TIM_CHANNEL_1); break; } } @@ -997,7 +1010,7 @@ static void PLSR_UpdateGlobalPulseCount(int32_t current_pulse_count) s_last_total_pulse = current_pulse_count; } // 将32位全局累加脉冲计数分解为两个16位寄存器(支持负数) - int32_t signed_count = g_plsr_total_pulse_count; // 使用有符号数进行计算 + int32_t signed_count = g_plsr_location; // 使用有符号数进行计算 ModbusSlave.holding_regs[0x1000] = signed_count & 0xFFFF; // 低16位 ModbusSlave.holding_regs[0x1001] = (signed_count >> 16) & 0xFFFF; // 高16位 } @@ -1250,7 +1263,8 @@ void Calculate_PluseNum(PLSR_RouteConfig_t *route) // 计算第一部分:v0 -> vt PLSR_RunState_t part1_state = PLSR_STATE_CONST; // 默认匀速 - if (v0 < vt) { + if (v0 < vt) + { // 需要加速 part1_state = PLSR_STATE_ACCEL; part1_time = (vt - v0) / a; @@ -1260,7 +1274,8 @@ void Calculate_PluseNum(PLSR_RouteConfig_t *route) part1_pulse_num = (uint32_t)(temp_calc / 2000); if(part1_pulse_num == 0) part1_pulse_num = 1; // 防止为0 } - else if (v0 > vt) { + else if (v0 > vt) + { // 需要减速 part1_state = PLSR_STATE_DECEL; part1_time = (v0 - vt) / d; @@ -1279,7 +1294,8 @@ void Calculate_PluseNum(PLSR_RouteConfig_t *route) // 计算第三部分:vt -> 0(必须减速到0) PLSR_RunState_t part3_state = PLSR_STATE_DECEL; - if (vt > 0) { + if (vt > 0) + { part3_time = vt / d; if (part3_time == 0) part3_time = 1; @@ -1287,7 +1303,9 @@ void Calculate_PluseNum(PLSR_RouteConfig_t *route) uint64_t temp_calc = (uint64_t)vt * part3_time; part3_pulse_num = (uint32_t)(temp_calc / 2000); if(part3_pulse_num == 0) part3_pulse_num = 1; // 防止为0 - } else { + } + else + { // 目标频率已经是0,无需第三部分 part3_pulse_num = 0; part3_time = 0; @@ -1309,7 +1327,6 @@ void Calculate_PluseNum(PLSR_RouteConfig_t *route) else if (used_pulses > total_pulses) { // 脉冲数不足,需要调整运动参数 // 策略:优先保证能减速到0,然后调整第一部分 - if (part3_pulse_num <= total_pulses) { // 第三部分可以完成,调整第一部分 int32_t remaining_pulses = total_pulses - part3_pulse_num; diff --git a/PLSR/PLSR/EWARM/test.1.dep b/PLSR/PLSR/EWARM/test.1.dep index e390453..f05e7f9 100644 --- a/PLSR/PLSR/EWARM/test.1.dep +++ b/PLSR/PLSR/EWARM/test.1.dep @@ -5,265 +5,265 @@ test.1 - $PROJ_DIR$\..\Core\Src\modbus_log.c + $PROJ_DIR$\startup_stm32f407xx.s + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c $PROJ_DIR$\..\Core\Src\flash_save.c + $PROJ_DIR$\..\Core\Src\tim.c $PROJ_DIR$\..\Core\Src\modbus_crc.c - $PROJ_DIR$\startup_stm32f407xx.s - $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Core\Src\modbus_log.c $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.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\usart.c - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c - $PROJ_DIR$\..\Core\Src\tim.c - $PROJ_DIR$\..\Core\Src\dma.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.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$\..\Core\Src\gpio.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$\..\UCOS\Ports\os_cpu_a.asm - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.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$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c - $PROJ_DIR$\..\UCOS\Config\app_hooks.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + $TOOLKIT_DIR$\inc\c\yvals.h + $PROJ_DIR$\..\UCOS\Source\os_mutex.c + $TOOLKIT_DIR$\inc\c\DLib_Product.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o + $PROJ_DIR$\..\UCOS\Source\os.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o $PROJ_DIR$\..\UCOS\Config\app_cfg.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h + $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.__cstat.et $TOOLKIT_DIR$\inc\c\iccarm_builtin.h - $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h - $PROJ_DIR$\test.1\Obj\usart.__cstat.et - $TOOLKIT_DIR$\inc\c\ysizet.h $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.__cstat.et - $PROJ_DIR$\..\UCOS\Source\os_mutex.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o - $TOOLKIT_DIR$\inc\c\stdio.h - $PROJ_DIR$\test.1\Obj\os_dbg.__cstat.et - $PROJ_DIR$\test.1\Obj\main.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o + $PROJ_DIR$\test.1\Obj\flash_save.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.__cstat.et - $PROJ_DIR$\..\UCOS\Source\os.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rcc.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.__cstat.et $PROJ_DIR$\test.1\Obj\modbus_crc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.o $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.__cstat.et - $PROJ_DIR$\..\Core\Inc\usart.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.__cstat.et - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h - $TOOLKIT_DIR$\inc\c\stdarg.h - $TOOLKIT_DIR$\inc\c\yvals.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.__cstat.et + $PROJ_DIR$\test.1\Obj\os_dbg.o + $PROJ_DIR$\test.1\Obj\usart.__cstat.et + $TOOLKIT_DIR$\inc\c\ysizet.h + $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h + $TOOLKIT_DIR$\inc\c\stdio.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_cortex.h + $PROJ_DIR$\test.1\Obj\main.o $PROJ_DIR$\..\Core\Inc\modbus_log.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h - $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o - $PROJ_DIR$\test.1\Obj\dma.__cstat.et $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et - $PROJ_DIR$\..\Core\Inc\tim.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.o + $PROJ_DIR$\test.1\Obj\dma.__cstat.et $TOOLKIT_DIR$\lib\m7M_tls.a - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_exti.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et - $TOOLKIT_DIR$\inc\c\DLib_Product.h - $PROJ_DIR$\test.1\Obj\os_dbg.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\flash_save.__cstat.et + $PROJ_DIR$\..\Core\Inc\tim.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h + $TOOLKIT_DIR$\inc\c\string.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_usart.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et $PROJ_DIR$\..\UCOS\Source\os_time.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.o $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.o - $PROJ_DIR$\test.1\Obj\modbus_log.o - $TOOLKIT_DIR$\inc\c\string.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal.h $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc.o - $PROJ_DIR$\test.1\Obj\os_cpu_a.o - $PROJ_DIR$\..\UCOS\Source\os_flag.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h - $PROJ_DIR$\..\UCOS\Source\os_q.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o - $PROJ_DIR$\..\UCOS\Ports\os_cpu.h - $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h - $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o - $PROJ_DIR$\test.1\Exe\test.1.out - $PROJ_DIR$\test.1\Obj\tim.o - $PROJ_DIR$\test.1\Obj\gpio.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o - $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h - $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et - $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o - $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et - $PROJ_DIR$\test.1\Obj\tim.__cstat.et - $PROJ_DIR$\..\Core\Inc\gpio.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o - $TOOLKIT_DIR$\inc\c\stdint.h - $PROJ_DIR$\test.1\Exe\test.1.hex - $PROJ_DIR$\..\UCOS\Source\os_trace.h - $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et - $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o - $PROJ_DIR$\test.1\Obj\os_cpu_c.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o - $TOOLKIT_DIR$\inc\c\DLib_Product_string.h - $TOOLKIT_DIR$\inc\c\DLib_float_setup.h - $TOOLKIT_DIR$\inc\c\stdlib.h - $PROJ_DIR$\..\UCOS\Source\os_task.c - $TOOLKIT_DIR$\inc\c\ycheck.h - $PROJ_DIR$\test.1\Obj\main.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et - $PROJ_DIR$\..\Core\Inc\modbus_crc.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o - $TOOLKIT_DIR$\lib\dl7M_tlf.a - $PROJ_DIR$\..\Core\Inc\flash_save.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o - $PROJ_DIR$\test.1\Obj\dma.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.__cstat.et + $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\..\Core\Inc\main.h + $PROJ_DIR$\..\UCOS\Source\os_mem.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.__cstat.et + $PROJ_DIR$\..\Core\Inc\usart.h + $PROJ_DIR$\test.1\Obj\system_stm32f4xx.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_exti.h + $PROJ_DIR$\test.1\Obj\modbus_log.o $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.__cstat.et - $TOOLKIT_DIR$\inc\c\stddef.h - $PROJ_DIR$\..\UCOS\Source\os_tmr.c + $PROJ_DIR$\stm32f407xx_flash.icf + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_rng.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\ucos_ii.o + $PROJ_DIR$\test.1\Obj\main.__cstat.et + $TOOLKIT_DIR$\inc\c\stddef.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h $TOOLKIT_DIR$\lib\shb_l.a $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_tim.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.o $PROJ_DIR$\test.1\Obj\modbus_log.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et - $PROJ_DIR$\stm32f407xx_flash.icf - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o - $TOOLKIT_DIR$\inc\c\ctype.h - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o + $PROJ_DIR$\test.1\Obj\app_hooks.o + $TOOLKIT_DIR$\inc\c\ycheck.h $PROJ_DIR$\..\UCOS\Source\os_mbox.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.o $PROJ_DIR$\test.1\Obj\system_stm32f4xx.__cstat.et + $TOOLKIT_DIR$\inc\c\ctype.h + $PROJ_DIR$\..\Core\Inc\modbus_crc.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.o $PROJ_DIR$\test.1\Obj\gpio.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dma.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.__cstat.et - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash.h - $PROJ_DIR$\test.1\Obj\app_hooks.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_gpio.h - $PROJ_DIR$\test.1\Obj\ucos_ii.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.o + $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ex.h $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc.h - $PROJ_DIR$\..\UCOS\Source\os_mem.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o - $PROJ_DIR$\..\UCOS\Source\ucos_ii.c - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_timebase_tim.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_uart.h + $PROJ_DIR$\..\UCOS\Source\ucos_ii.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h $PROJ_DIR$\test.1\Obj\modbus_crc.__cstat.et $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma_ex.h - $PROJ_DIR$\..\UCOS\Config\os_cfg.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o - $PROJ_DIR$\..\Core\Inc\main.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et - $PROJ_DIR$\..\UCOS\Ports\os_dbg.c - $PROJ_DIR$\..\UCOS\Source\os_sem.c - $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h - $PROJ_DIR$\test.1\Obj\usart.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et + $PROJ_DIR$\test.1\List\test.1.map + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\system_stm32f4xx.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal.o + $PROJ_DIR$\test.1\Obj\dma.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.o + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f4xx.h $PROJ_DIR$\test.1\Obj\flash_save.o - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_dma.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.__cstat.et $PROJ_DIR$\..\Core\Inc\dma.h - $PROJ_DIR$\..\UCOS\Source\os_core.c - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr.o $TOOLKIT_DIR$\inc\c\math.h - $PROJ_DIR$\..\UCOS\Source\ucos_ii.h - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o + $PROJ_DIR$\test.1\Obj\usart.o + $PROJ_DIR$\..\UCOS\Source\os_core.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_it.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.o + $PROJ_DIR$\..\UCOS\Source\os_sem.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_cortex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_msp.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_i2c.__cstat.et + $PROJ_DIR$\..\UCOS\Config\os_cfg.h + $PROJ_DIR$\..\UCOS\Source\os_tmr.c $TOOLKIT_DIR$\lib\rt7M_tl.a - $PROJ_DIR$\test.1\List\test.1.map - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_pwr.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_crc.__cstat.et - $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_wwdg.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_rcc_ex.h + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $PROJ_DIR$\test.1\Obj\os_cpu_c.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_rcc_ex.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.o + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\test.1\Obj\tim.__cstat.et + $PROJ_DIR$\..\UCOS\Config\app_hooks.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_tim_ex.o + $PROJ_DIR$\..\Core\Inc\stm32f4xx_hal_conf.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_pwr_ex.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_tim.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ex.o + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32F4xx\Include\stm32f407xx.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c.o + $PROJ_DIR$\test.1\Obj\os_cpu_a.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash.__cstat.et + $PROJ_DIR$\..\UCOS\Ports\os_cpu.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_usart.o $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_flash_ramfunc.h + $PROJ_DIR$\..\Core\Inc\stm32f4xx_it.h + $PROJ_DIR$\test.1\Obj\startup_stm32f407xx.o + $PROJ_DIR$\test.1\Exe\test.1.out + $PROJ_DIR$\test.1\Obj\tim.o + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_def.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_uart.o + $PROJ_DIR$\..\UCOS\Source\os_flag.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_dac.__cstat.et + $PROJ_DIR$\test.1\Obj\ucos_ii.__cstat.et + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h + $PROJ_DIR$\test.1\Obj\app_hooks.__cstat.et + $PROJ_DIR$\..\Core\Inc\gpio.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_spi.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_crc.o + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.o + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_flash_ramfunc.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_sram.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h + $PROJ_DIR$\..\UCOS\Source\os_trace.h + $PROJ_DIR$\..\Core\Inc\flash_save.h + $PROJ_DIR$\test.1\Obj\os_cpu_c.o + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h + $TOOLKIT_DIR$\inc\c\DLib_float_setup.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_i2c_ex.o + $TOOLKIT_DIR$\inc\c\stdlib.h + $PROJ_DIR$\test.1\Obj\gpio.o + $PROJ_DIR$\..\UCOS\Source\os_task.c + $PROJ_DIR$\..\UCOS\Source\os_q.c + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_dma_ex.__cstat.et + $TOOLKIT_DIR$\lib\dl7M_tlf.a + $TOOLKIT_DIR$\inc\c\stdint.h + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Inc\stm32f4xx_hal_pwr_ex.h + $PROJ_DIR$\test.1\Obj\stm32f4xx_ll_gpio.__cstat.et + $PROJ_DIR$\test.1\Exe\test.1.hex + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_exti.__cstat.et + $PROJ_DIR$\test.1\Obj\stm32f4xx_hal_gpio.o - [ROOT_NODE] + $PROJ_DIR$\startup_stm32f407xx.s - ILINK - 118 227 + AARM + 195 - $PROJ_DIR$\..\Core\Src\modbus_log.c + $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c ICCARM - 100 + 104 __cstat - 177 + 127 ICCARM - 77 72 212 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 59 101 152 183 154 53 75 159 166 87 223 153 224 50 210 110 143 + 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 77 182 136 199 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 @@ -272,50 +272,41 @@ ICCARM - 218 + 151 __cstat - 96 + 58 ICCARM - 166 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 72 212 59 101 152 183 154 53 75 159 77 87 223 153 224 50 210 110 143 + 216 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 103 99 69 89 210 128 221 68 98 129 74 85 155 219 139 52 166 190 215 - $PROJ_DIR$\..\Core\Src\modbus_crc.c + $PROJ_DIR$\..\Core\Src\tim.c ICCARM - 66 + 197 __cstat - 208 + 178 ICCARM - 159 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 102 122 198 116 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 85 99 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 103 69 89 210 128 221 68 98 129 216 74 155 219 139 52 166 190 215 - $PROJ_DIR$\startup_stm32f407xx.s - - - AARM - 117 - - - - - $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Core\Src\modbus_crc.c ICCARM @@ -323,845 +314,854 @@ __cstat - 157 - - - - - ICCARM - 212 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 136 87 72 59 101 152 183 154 53 75 159 166 77 223 153 224 50 210 110 143 220 - - - - - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c - - - ICCARM - 182 - - - __cstat - 171 + 142 ICCARM - 212 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 129 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 77 182 136 199 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c + $PROJ_DIR$\..\Core\Src\modbus_log.c ICCARM - 78 + 106 __cstat - 206 + 122 ICCARM - 212 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 111 224 50 75 59 210 110 143 + 74 103 99 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 69 89 210 128 221 68 98 129 216 85 155 219 139 52 166 190 215 - $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_msp.c ICCARM - 217 + 163 __cstat - 54 + 107 ICCARM - 72 212 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 59 101 152 183 154 53 75 159 166 77 87 223 153 224 50 210 110 143 + 99 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Core\Src\system_stm32f4xx.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c ICCARM - 83 + 137 __cstat - 188 + 102 ICCARM - 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 102 122 198 116 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c + $PROJ_DIR$\..\Core\Src\dma.c ICCARM - 169 + 148 __cstat - 85 + 83 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 153 99 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Core\Src\stm32f4xx_it.c ICCARM - 119 + 82 __cstat - 135 + 159 ICCARM - 87 212 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 72 59 101 152 183 154 53 75 159 166 77 223 153 224 50 210 110 143 + 99 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 194 139 52 98 69 166 190 215 - $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Core\Src\usart.c ICCARM - 170 + 156 __cstat - 84 + 66 ICCARM - 220 212 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 103 99 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 69 89 210 128 221 68 98 129 216 74 85 155 219 139 52 166 190 215 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c + $PROJ_DIR$\..\Core\Src\gpio.c ICCARM - 181 + 222 __cstat - 178 + 132 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 207 99 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 85 103 69 89 210 128 221 68 98 129 216 74 155 219 139 52 166 190 215 - $PROJ_DIR$\..\Core\Src\stm32f4xx_hal_timebase_tim.c + $PROJ_DIR$\..\Core\Src\main.c ICCARM - 191 + 73 __cstat - 81 + 115 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 99 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 207 85 103 69 89 210 128 221 68 98 129 216 74 155 219 139 52 166 190 215 153 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c ICCARM - 168 + 121 __cstat - 230 + 173 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c ICCARM - 69 + 51 __cstat - 207 + 90 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c ICCARM - 68 + 183 __cstat - 129 + 144 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c ICCARM - 120 + 185 __cstat - 189 + 113 ICCARM - 136 212 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 87 72 59 101 152 183 154 53 75 159 166 77 223 153 224 50 210 110 143 + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c ICCARM - 112 + 220 __cstat - 125 + 63 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c ICCARM - 148 + 57 __cstat - 49 + 78 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm - - - AARM - 104 - - - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c ICCARM - 133 + 149 __cstat - 79 + 162 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c ICCARM - 167 + 75 __cstat - 138 + 225 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c ICCARM - 127 + 154 __cstat - 147 + 152 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c ICCARM - 164 + 96 __cstat - 71 + 50 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_sram.c ICCARM - 128 + 140 __cstat - 222 + 213 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c ICCARM - 140 + 169 __cstat - 202 + 64 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_usart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c ICCARM - 62 + 209 __cstat - 86 + 130 - - - ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 - - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_i2c.c ICCARM - 121 + 187 __cstat - 192 + 79 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_crc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c ICCARM - 126 + 232 __cstat - 158 + 60 + + + ICCARM + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c ICCARM - 89 + 158 __cstat - 95 + 203 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c ICCARM - 151 + 181 __cstat - 114 + 86 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c ICCARM - 58 + 112 __cstat - 213 + 119 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_exti.c ICCARM - 103 + 71 __cstat - 73 + 54 - - - ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_gpio.c ICCARM - 98 + 76 __cstat - 146 + 229 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c ICCARM - 106 + 147 __cstat - 228 + 80 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c ICCARM - 130 + 211 __cstat - 91 + 231 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_wwdg.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_tim.c ICCARM - 225 + 131 __cstat - 67 + 164 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_i2c.c ICCARM - 180 + 70 __cstat - 163 + 165 - - - ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 - - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_pwr.c ICCARM - 186 + 133 __cstat - 229 + 81 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c ICCARM - 65 + 111 __cstat - 63 + 56 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_crc.c ICCARM - 203 + 160 __cstat - 200 + 93 ICCARM - 102 122 198 116 201 107 216 141 156 76 124 132 92 74 161 82 52 185 205 162 172 55 123 195 94 90 219 209 51 193 197 113 70 137 150 174 184 + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dac.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c ICCARM - 211 + 174 __cstat - 131 + 189 + + + ICCARM + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rng.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c ICCARM - 160 + 126 __cstat - 56 + 212 + + + ICCARM + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c ICCARM - 99 + 201 __cstat - 139 + 97 + + + ICCARM + 77 182 136 199 150 186 87 227 124 44 171 214 46 88 218 91 55 134 146 205 116 67 170 117 49 105 141 143 72 109 135 193 62 228 120 110 138 + + - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_rcc.c ICCARM - 80 + 47 __cstat - 115 + 59 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + [ROOT_NODE] + + + ILINK + 196 145 + + + + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_spi.c ICCARM - 109 + 95 __cstat - 231 + 208 - $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_dma.c + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_tim.c ICCARM - 190 + 101 __cstat - 176 + 184 - $PROJ_DIR$\..\UCOS\Config\app_hooks.c + $PROJ_DIR$\..\UCOS\Ports\os_dbg.c ICCARM - 194 + 65 __cstat - 144 + 53 ICCARM - 64 224 50 75 59 156 76 124 132 92 55 210 110 143 + 139 52 98 69 124 44 171 214 46 67 166 190 215 - $PROJ_DIR$\test.1\Exe\test.1.out + $PROJ_DIR$\..\UCOS\Config\app_hooks.c - OBJCOPY - 142 + ICCARM + 123 - ILINK - 227 + __cstat + 206 - ILINK - 179 194 170 218 120 61 66 100 104 149 93 117 169 181 168 69 68 127 112 121 180 148 133 164 182 203 128 103 151 167 140 106 191 130 62 225 78 126 211 190 89 98 58 186 65 160 99 80 109 83 119 196 217 175 226 88 165 + ICCARM + 48 139 52 98 69 124 44 171 214 46 67 166 190 215 - $PROJ_DIR$\..\UCOS\Source\ucos_ii.c + $PROJ_DIR$\..\UCOS\Ports\os_cpu_a.asm + + + AARM + 188 + + + + + $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c ICCARM - 196 + 217 __cstat - 145 + 172 ICCARM - 224 50 75 59 156 76 124 132 92 55 210 110 143 221 105 187 199 57 108 215 155 97 173 + 139 52 98 69 124 44 171 214 46 67 166 190 215 - $PROJ_DIR$\..\UCOS\Ports\os_dbg.c + $PROJ_DIR$\test.1\Exe\test.1.out - ICCARM - 93 + ILINK + 145 - __cstat - 60 + OBJCOPY + 230 - ICCARM - 224 50 75 59 156 76 124 132 92 55 210 110 143 + ILINK + 108 123 148 151 222 73 61 106 188 217 65 195 147 149 160 57 75 211 174 185 126 232 187 220 163 154 183 96 121 140 131 181 137 201 51 169 82 209 158 112 71 76 70 133 47 111 95 101 191 104 197 114 156 118 168 84 226 - $PROJ_DIR$\..\UCOS\Ports\os_cpu_c.c + $PROJ_DIR$\..\UCOS\Source\ucos_ii.c ICCARM - 149 + 114 __cstat - 134 + 204 ICCARM - 224 50 75 59 156 76 124 132 92 55 210 110 143 + 139 52 98 69 124 44 171 214 46 67 166 190 215 157 202 125 100 45 224 161 223 94 167 + + $PROJ_DIR$\..\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_ll_usart.c + + + ICCARM + 191 + + + __cstat + 92 + + + diff --git a/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim b/PLSR/PLSR/EWARM/test.1/Exe/test.1.sim index d0862db..eaeff64 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