diff --git a/CablePositioning_APP_V1.0/Core/Inc/dau.h b/CablePositioning_APP_V1.0/Core/Inc/dau.h index 89069c4..c63ed07 100644 --- a/CablePositioning_APP_V1.0/Core/Inc/dau.h +++ b/CablePositioning_APP_V1.0/Core/Inc/dau.h @@ -253,7 +253,6 @@ extern uint8_t dau_adj_state; /* Extern functions ----------------------------------------------------------*/ extern void dau_init(void); -extern void dau_adj_init(void); extern void dau_spi_rw(int8_t rw, uint16_t addr, uint16_t len); extern void dau_show(void); diff --git a/CablePositioning_APP_V1.0/Core/Src/cli.c b/CablePositioning_APP_V1.0/Core/Src/cli.c index 1b81ca6..ff074f1 100644 --- a/CablePositioning_APP_V1.0/Core/Src/cli.c +++ b/CablePositioning_APP_V1.0/Core/Src/cli.c @@ -866,8 +866,6 @@ void _cli_init(void) /* 命令行线程开始函数. */ void cli_start(void const * argument) { - - /******** START INIT ********/ /* 以下代码是freeRTOS启动后第一个运行的任务,因为优先级最高,且最早创建.所以需要在freeRTOS启动后再初始化 * 的地方统一放在下面这段地方. */ @@ -898,15 +896,8 @@ void cli_start(void const * argument) /* 初始化 ADC 采样任务. */ ADC_init(); - if (IS_MONITOR_BIT_SET(dev_config.flag, DEV_FLAG_ADJ)) - { - dau_adj_init(); - } - else - { - /* 初始化 DAU 任务. */ - dau_init(); - } + /* 初始化 DAU 任务. */ + dau_init(); /* 初始化无线通讯任务. */ if (!IS_MONITOR_BIT_SET(dev_config.flag, DEV_FLAG_ADJ) diff --git a/CablePositioning_APP_V1.0/Core/Src/dau.c b/CablePositioning_APP_V1.0/Core/Src/dau.c index a2b7238..ede33fb 100644 --- a/CablePositioning_APP_V1.0/Core/Src/dau.c +++ b/CablePositioning_APP_V1.0/Core/Src/dau.c @@ -592,57 +592,6 @@ int32_t _dau_wave_col_defect(void) vty_print("#D reg end addr %x\r\n", addr); MONITOR_BITMAP_SET(dau_ctrl.col_flag, DAU_COL_FLAG_REG_DEFECT); return rv; - -#if 0 - uint8_t i = 0; - uint8_t j = 0; - uint8_t is_exceed = FALSE; - uint32_t addr = 0; - int32_t rv = HAL_ERROR; - - /* 比较缺陷波形是否超过阈值 */ - //E_RETURN(_dau_reg_read_port_state()); - for(i = 0; i < DAU_PORT_DEFECT_CNT; i++) - { - dau_ctrl.reg_defect_max[i] = 100 +i; - if (dau_ctrl.reg_defect_max[i] > dev_config.wave_threshold) - { - is_exceed = TRUE; - } - } - /* 没有超过阈值并没有强制录波直接返回 */ - if (!is_exceed && !IS_MONITOR_BIT_SET(dau_ctrl.col_flag, DAU_COL_FLAG_WAVE_FORCE)) - { - MONITOR_BITMAP_RESET(dau_ctrl.col_flag, DAU_COL_FLAG_REG_DEFECT); - return HAL_OK; - } - - /* 擦除 flash */ - addr = dau_ctrl.addr_reg; - vty_print("#D3 %x\r\n", addr); - for(i = 0; i < 2; i++) - { - E_RETURN(spi_flash_erase(addr, SPI_CMD_BLOCK64_ERASE)); - addr += SPI_FLASH_BLOCK64_SIZE; - } - - /* 数据地址应该是被擦除过的地址 (当前地址向前偏移 128k). */ - addr = dau_ctrl.addr_reg; - /* 读取缺陷数据 */ - for(i = 0; i < DAU_PORT_DEFECT_CNT; i++) - { - memset(&dau_ctrl.buf_dau_rx[2], i, DAU_PKT_FAULT_BYTE_CNT); - for(j = 0; j < DAU_PKT_DEFECT_CNT; j++) - { - E_RETURN(spi_flash_write(addr, &dau_ctrl.buf_dau_rx[2], DAU_PKT_DEFECT_BYTE_CNT)); - addr += DAU_PKT_DEFECT_BYTE_CNT; - } - } - - vty_print("#D4 %x\r\n", addr); - MONITOR_BITMAP_SET(dau_ctrl.col_flag, DAU_COL_FLAG_REG_DEFECT); - return rv; -#endif } /* description: 工频波形采集 @@ -1063,10 +1012,6 @@ static void _dau_init(void) HAL_GPIO_WritePin(DAU_RST_GPIO_Port, DAU_RST_Pin, GPIO_PIN_SET); HAL_GPIO_WritePin(POWER_DAU_GPIO_Port, POWER_DAU_Pin, GPIO_PIN_SET); osDelay(2000); - //common_watchdog_set(COM_WDG_DAU); - //osDelay(10000); - //common_watchdog_set(COM_WDG_DAU); - //osDelay(10000); /* 读取 FPGA 版本信息 */ if (HAL_OK == _dau_reg_read_global_state()) @@ -1203,6 +1148,25 @@ int32_t _dau_adj_reg_write_port(uint32_t port) return rv; } +/* description: 缺陷波形采集 + param: + return: HAL_xxx */ +int32_t _dau_adj_wave_col_defect(void) +{ + uint8_t i = 0; + int32_t rv = HAL_ERROR; + + /* 比较缺陷波形是否超过阈值 */ + E_RETURN(_dau_reg_read_port_state()); + for(i = 0; i < DAU_PORT_DEFECT_CNT; i++) + { + dau_ctrl.reg_defect_max[i] = abs(dau_ctrl.reg_port_state.DMAX[i]); + } + /* 直接返回 */ + MONITOR_BITMAP_RESET(dau_ctrl.col_flag, DAU_COL_FLAG_REG_DEFECT); + return HAL_OK; +} + /* description: 寄存器触发波形采集 param: return: HAL_xxx */ @@ -1211,73 +1175,12 @@ int32_t _dau_adj_wave_col_trigger_by_reg(void) int32_t rv = HAL_ERROR; E_RETURN(_dau_wave_col_start()); + E_RETURN(_dau_adj_wave_col_defect()); E_RETURN(_dau_wave_col_power(DAU_SOURCE_REG)); -#if 0 - uint16_t *buf = (uint16_t*)(&dau_ctrl.buf_dau_rx[2]); - uint32_t addr = dau_ctrl.addr_reg; - uint8_t i = 0; - uint8_t j = 0; - uint16_t k = 0; - //for(i = 0; i < DAU_PORT_DEFECT_CNT; i++) - for(i = 0; i < 1; i++) - { - common_watchdog_set(COM_WDG_DAU); - vty_print("DEFECT %x %d\r\n", addr, i); - for(j = 0; j < DAU_PKT_DEFECT_CNT; j++) - { - spi_flash_read(addr, &dau_ctrl.buf_dau_rx[2], 1024); - addr += DAU_PKT_DEFECT_BYTE_CNT; - for(k = 0; k < 512;) - { - common_watchdog_set(COM_WDG_DAU); - vty_print("%04x ", buf[k++]); - if(0 == k % 32) - { - osDelay(100); - vty_print("\r\n"); - } - } - if(k % 32 != 0) - { - osDelay(100); - vty_print("\r\n"); - } - } - vty_print("\r\n"); - } -#endif -#if 1 - uint16_t *buf = (uint16_t*)(&dau_ctrl.buf_dau_rx[2]); - uint8_t i = 0; - uint8_t j = 0; - uint16_t k = 0; - //for(i = 5; i < DAU_PORT_POWER_CNT; i++) - for(i = 5; i < 6; i++) - { - common_watchdog_set(COM_WDG_DAU); - vty_print("POWER %d\r\n", i); - buf = (uint16_t*)dau_ctrl.reg_power[i]; - for(j = 0; j < DAU_PKT_POWER_CNT; j++) - { - for(k = 0; k < 512;) - { - vty_print("%-04x ", buf[k++]); - if(0 == (j*512+k ) % 40) - { - osDelay(100); - vty_print("\r\n"); - } - } - buf += 512; - } - vty_print("\r\n"); - } -#endif return rv; } - /* description: DAU 校准任务循环 param: return: */ @@ -1335,6 +1238,7 @@ static void _dau_adj_start(void *argument) _dau_reg_write_port(i); } + /* 重启 FPGA 触发故障采集 */ HAL_GPIO_WritePin(POWER_DAU_GPIO_Port, POWER_DAU_Pin, GPIO_PIN_RESET); HAL_GPIO_WritePin(DAU_RST_GPIO_Port, DAU_RST_Pin, GPIO_PIN_RESET); osDelay(1000); @@ -1343,8 +1247,7 @@ static void _dau_adj_start(void *argument) osDelay(2000); /* 触发阈值 */ - //*temp = 0x2800; - *temp = 0x0; + *temp = 0x2800; _dau_reg_write(DAU_REG_ADDR_GCFTTR, sizeof(uint16_t)); /* 开启 */ osDelay(500); @@ -1377,6 +1280,146 @@ static void _dau_adj_start(void *argument) } } +/* description: 故障触发波形采集 + param: + return: HAL_xxx */ +int32_t _dau_continue_wave_col_trigger_by_fault(void) +{ + int32_t rv = HAL_ERROR; + + /* 没有触发直接退出 */ + if (!((dau_ctrl.reg_global.GFTR & DAU_GFTR_FAULT_Msk) >> DAU_GFTR_FAULT_Pos)) + { + return HAL_OK; + } + + /* 采集波形 */ + E_RETURN(_dau_wave_col_fault()); + E_RETURN(_dau_wave_col_power(DAU_SOURCE_FAULT)); + _dau_power_calculate(DAU_SOURCE_FAULT); +#if 0 + uint16_t *buf = (uint16_t*)(&dau_ctrl.buf_dau_rx[2]); + uint8_t i = 0; + uint8_t j = 0; + uint16_t k = 0; + uint32_t addr = dau_ctrl.addr_fault; + + for(i = 0; i < 1; i++) + { + common_watchdog_set(COM_WDG_DAU); + vty_print("FAULT %x %d\r\n", addr, i); + for(j = 0; j < DAU_PKT_FAULT_CNT; j++) + //for(j = 0; j < 1; j++) + { + spi_flash_read(addr, &dau_ctrl.buf_dau_rx[2], 1024); + addr += DAU_PKT_FAULT_BYTE_CNT; + for(k = 0; k < 512;) + { + common_watchdog_set(COM_WDG_DAU); + vty_print("%04x ", buf[k++]); + if(0 == k % 32) + { + osDelay(100); + vty_print("\r\n"); + } + } + if(k % 32 != 0) + { + osDelay(100); + vty_print("\r\n"); + } + } + vty_print("\r\n"); + } +#endif +#if 0 + uint16_t *buf = NULL; + uint8_t i = 0; + uint8_t j = 0; + uint16_t k = 0; + + for(i = 0; i < DAU_PORT_POWER_CNT; i++) + { + common_watchdog_set(COM_WDG_DAU); + vty_print("POWER %d\r\n", i); + buf = (uint16_t*)dau_ctrl.fault_power[i]; + for(j = 0; j < DAU_PKT_POWER_CNT; j++) + { + for(k = 0; k < 512;) + { + vty_print("%-04x ", buf[k++]); + if(0 == (j*512+k ) % 40) + { + osDelay(100); + vty_print("\r\n"); + } + } + buf += 512; + } + vty_print("\r\n"); + } +#endif + return HAL_OK; +} + +/* description: DAU 主任务循环 + param: + return: */ +static void _dau_continue_start(void *argument) +{ + int32_t rv = HAL_ERROR; + + /* 状态初始化 */ + _dau_init(); + vty_print("DAU start...\r\n"); + + for (;;) + { + common_watchdog_set(COM_WDG_DAU); + osDelay(4250); + + /* 读取全局状态寄存器 */ + rv = _dau_reg_read_global_state(); + if (rv != HAL_OK) + { + continue; + } + + /* utc 对时处理 */ + _dau_utc(); + + /* 故障电流采集 */ + _dau_continue_wave_col_trigger_by_fault(); + + /* 循环工频缺陷电流采集 */ + _dau_adj_wave_col_trigger_by_reg(); + _dau_power_calculate(DAU_SOURCE_REG); + + /* 处理升级 */ + if (dau_ctrl.update_flag) + { + flash_log_write(FLASH_LOG_TYPE_NOTIFY, "FPGA update start!\r\n"); + dau_ctrl.update_flag = FALSE; + if (HAL_OK == _dau_update()) + { + dau_ctrl.update_rt = DAU_UPD_OK; + dau_ctrl.update_rt_dbg = DAU_UPD_OK; + } + else + { + dau_ctrl.update_rt = DAU_UPD_ERROR; + dau_ctrl.update_rt_dbg = DAU_UPD_ERROR; + } + flash_log_write(FLASH_LOG_TYPE_NOTIFY, "FPGA update %s!\r\n", dau_ctrl.update_rt == 1 ? "OK" : "ERROR"); + } + + if (IS_MONITOR_BIT_SET(dau_ctrl.reg_flag, DAU_REG_PORT_WRITE)) + { + MONITOR_BITMAP_RESET(dau_ctrl.reg_flag, DAU_REG_PORT_WRITE); + _dau_reg_write_port(dau_ctrl.reg_data); + } + } +} /* description: GPS 报文处理 ($GNZDA,235949.012,05,01,1980,,*4F) param: @@ -1518,20 +1561,22 @@ static void _dau_gps_start(void *argument) return: */ void dau_init(void) { - dau_ctrl.dau_handle = osThreadNew(_dau_start, NULL, &dau_attributes); - dau_ctrl.gps_handle = osThreadNew(_dau_gps_start, NULL, &dau_gps_attributes); -} - -/* description: DAU 采集校准任务初始化 - param: - return: */ -void dau_adj_init(void) -{ - dau_ctrl.dau_handle = osThreadNew(_dau_adj_start, NULL, &dau_adj_attributes); + if (IS_MONITOR_BIT_SET(dev_config.flag, DEV_FLAG_ADJ)) + { + dau_ctrl.dau_handle = osThreadNew(_dau_adj_start, NULL, &dau_adj_attributes); + } + else if(IS_MONITOR_BIT_SET(dev_config.flag, DEV_FLAG_FACTORY)) + { + dau_ctrl.dau_handle = osThreadNew(_dau_continue_start, NULL, &dau_adj_attributes); + } + else + { + /* 初始化 DAU 任务. */ + dau_ctrl.dau_handle = osThreadNew(_dau_start, NULL, &dau_attributes); + } dau_ctrl.gps_handle = osThreadNew(_dau_gps_start, NULL, &dau_gps_attributes); } - /* description: spi 接口测试函数 param: return: */ diff --git a/CablePositioning_APP_V1.0/EWARM/CableMonitor_APP_V3.2.dep b/CablePositioning_APP_V1.0/EWARM/CableMonitor_APP_V3.2.dep index 5864ba3..b1254ab 100644 --- a/CablePositioning_APP_V1.0/EWARM/CableMonitor_APP_V3.2.dep +++ b/CablePositioning_APP_V1.0/EWARM/CableMonitor_APP_V3.2.dep @@ -5,1979 +5,1988 @@ CableMonitor_APP_V3.2 + $PROJ_DIR$\..\Core\Src\FreeRTOS_CLI.c + $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Core\Src\stm32l4xx_hal_msp.c + $PROJ_DIR$\..\Core\Src\flash_if.c + $PROJ_DIR$\..\Core\Src\cli.c $PROJ_DIR$\..\Core\Src\common.c $PROJ_DIR$\..\Core\Src\dau.c + $PROJ_DIR$\..\Core\Src\freertos.c + $PROJ_DIR$\..\Core\Src\RS485_debug.c + $PROJ_DIR$\..\Core\Src\adc.c + $PROJ_DIR$\..\Core\Src\rtc.c + $PROJ_DIR$\..\Core\Src\spi.c + $PROJ_DIR$\..\Core\Src\tim.c $PROJ_DIR$\..\Core\Src\ADC_collect.c - $PROJ_DIR$\..\Core\Src\dev_config.c + $PROJ_DIR$\..\Core\Src\flash_log.c + $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Core\Src\stm32l4xx_it.c + $PROJ_DIR$\..\Core\Src\wireless.c $PROJ_DIR$\startup_stm32l496xx.s - $PROJ_DIR$\..\Core\Src\cli.c - $PROJ_DIR$\..\Core\Src\FreeRTOS_CLI.c - $PROJ_DIR$\..\Core\Src\rtc.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Core\Src\dev_config.c + $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\list.c $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ex.c - $PROJ_DIR$\..\Core\Src\RS485_debug.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ramfunc.c $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c.c - $PROJ_DIR$\..\Core\Src\tim.c - $PROJ_DIR$\..\Core\Src\usart.c - $PROJ_DIR$\..\Core\Src\flash_log.c - $PROJ_DIR$\..\Core\Src\stm32l4xx_hal_msp.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\queue.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma.c $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma_ex.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c - $PROJ_DIR$\..\Core\Src\stm32l4xx_it.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_exti.c $PROJ_DIR$\..\Core\Src\system_stm32l4xx.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_gpio.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal.c - $PROJ_DIR$\..\Core\Src\adc.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c - $PROJ_DIR$\..\Core\Src\dma.c - $PROJ_DIR$\..\Core\Src\gpio.c - $PROJ_DIR$\..\Core\Src\spi.c - $PROJ_DIR$\..\Core\Src\flash_if.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc_ex.c $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc_ex.c - $PROJ_DIR$\..\Core\Src\wireless.c - $PROJ_DIR$\..\Core\Src\main.c - $PROJ_DIR$\..\Core\Src\freertos.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\event_groups.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\common.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_debug.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\event_groups.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma_ex.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h - $PROJ_DIR$\..\Core\Inc\position.h - $PROJ_DIR$\..\Core\Inc\main.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h - $PROJ_DIR$\..\Core\Inc\RS485_sensor.h - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cli.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\FreeRTOS_CLI.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dma.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\rtc.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\FreeRTOS_CLI.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\freertos.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_it.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\gpio.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc_ex.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Exe\CableMonitor_APP_V3.2.out - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cmsis_os2.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_msp.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\event_groups.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim.pbi - $PROJ_DIR$\..\Core\Inc\recording_wave.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\ADC_collect.__cstat.et - $TOOLKIT_DIR$\inc\c\yvals.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stream_buffer.__cstat.et - $PROJ_DIR$\..\Core\Inc\stm32l4xx_hal_conf.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_gpio.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_exti.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\FreeRTOS_CLI.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\adc.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_gpio.pbi - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\list.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\adc.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\wireless.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tasks.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cmsis_os2.o - $PROJ_DIR$\..\Core\Inc\flash_if.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_cortex.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc.pbi - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\croutine.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_gpio.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_cortex.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\rtc.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\port.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h + $TOOLKIT_DIR$\inc\c\stdio.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\adc.pbi + $PROJ_DIR$\stm32l496xx_flash.icf + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi.__cstat.et + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\freertos_os2.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart_ex.o + $TOOLKIT_DIR$\inc\c\time.h + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\main.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc.o + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma_ex.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\main.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_exti.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_if.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\timers.__cstat.et + $PROJ_DIR$\..\Core\Inc\adc.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi.pbi + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc_ex.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_it.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr_ex.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tim.__cstat.et + $PROJ_DIR$\..\Core\Inc\ADC_collect.h + $PROJ_DIR$\..\Core\Inc\stm32l4xx_it.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc.pbi $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\spi.__cstat.et - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\freertos_mpool.h - $PROJ_DIR$\..\Core\Src\position.c - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\position.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stream_buffer.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dau.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal.__cstat.et - $TOOLKIT_DIR$\lib\shb_l.a - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dma.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tim.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c_ex.o + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\semphr.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc_ex.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim_ex.__cstat.et - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\projdefs.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_it.pbi $PROJ_DIR$\..\Core\Src\recording_wave.c - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc_ex.pbi + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\portable.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dau.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim_ex.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\spi.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tim.o $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ex.o - $TOOLKIT_DIR$\inc\c\time32.h - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\semphr.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr_ex.__cstat.et - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\portable.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dma.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\queue.__cstat.et $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_if.pbi + $PROJ_DIR$\..\Core\Src\position.c $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rtc.h - $TOOLKIT_DIR$\inc\c\time.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_if.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h - $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\port.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\rtc.__cstat.et - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\main.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma_ex.__cstat.et - $PROJ_DIR$\..\Core\Inc\stm32l4xx_it.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi.pbi - $PROJ_DIR$\..\Core\Inc\adc.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\timers.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc.o - $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tim.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\main.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart_ex.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_it.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr_ex.pbi - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_exti.pbi - $TOOLKIT_DIR$\inc\c\stdio.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc_ex.__cstat.et - $PROJ_DIR$\..\Core\Inc\ADC_collect.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\adc.pbi - $PROJ_DIR$\stm32l496xx_flash.icf - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi.__cstat.et - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\freertos_os2.h - $TOOLKIT_DIR$\inc\c\string.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\event_groups.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\list.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma_ex.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\recording_wave.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\position.pbi + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\freertos_mpool.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c_ex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc_ex.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc_ex.o + $TOOLKIT_DIR$\inc\c\time32.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stream_buffer.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr_ex.__cstat.et + $TOOLKIT_DIR$\lib\shb_l.a + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\projdefs.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\freertos.__cstat.et + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_sensor.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\gpio.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart_ex.pbi + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cli.__cstat.et + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\deprecated_definitions.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi_ex.__cstat.et + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h + $PROJ_DIR$\..\Core\Inc\dau.h + $PROJ_DIR$\..\Core\Inc\dma.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h + $PROJ_DIR$\..\Core\Inc\wireless.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cli.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_msp.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\position.__cstat.et + $PROJ_DIR$\..\Core\Inc\gpio.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart_ex.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_log.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi_ex.o + $PROJ_DIR$\..\Core\Src\RS485_sensor.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dev_config.__cstat.et + $PROJ_DIR$\..\Core\Inc\RS485_debug.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dev_config.pbi + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\ADC_collect.pbi $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tasks.o - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\system_stm32l4xx.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_if.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\list.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\main.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\ADC_collect.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\timers.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_cortex.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart_ex.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\timers.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portasm.s - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_if.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim_ex.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\tasks.c $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\heap_4.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_log.pbi + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma_ex.pbi + $TOOLKIT_DIR$\inc\c\string.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\system_stm32l4xx.pbi $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_debug.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc_ex.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\list.c - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc.__cstat.et - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\port.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_exti.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr_ex.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\croutine.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\queue.c - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ex.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\ADC_collect.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc_ex.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\event_groups.pbi $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\usart.o + $TOOLKIT_DIR$\inc\c\stddef.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\heap_4.__cstat.et $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\croutine.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_log.pbi $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_gpio.o - $TOOLKIT_DIR$\inc\c\stddef.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\croutine.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\wireless.pbi $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\system_stm32l4xx.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_gpio.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ex.__cstat.et $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\list.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\recording_wave.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c.pbi $TOOLKIT_DIR$\lib\m7M_tls.a $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cli.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart_ex.pbi - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h - $PROJ_DIR$\..\Core\Inc\wireless.h - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\deprecated_definitions.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_msp.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\freertos.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dev_config.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_log.o - $PROJ_DIR$\..\Core\Src\RS485_sensor.c - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\gpio.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\position.__cstat.et - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h - $PROJ_DIR$\..\Core\Inc\dau.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi_ex.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_sensor.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h - $PROJ_DIR$\..\Core\Inc\dma.h - $PROJ_DIR$\..\Core\Inc\RS485_debug.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dev_config.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cli.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h - $PROJ_DIR$\..\Core\Inc\gpio.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart_ex.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\ADC_collect.pbi - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi_ex.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_cortex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\portasm.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.__cstat.et + $TOOLKIT_DIR$\inc\c\stdint.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi_ex.pbi + $PROJ_DIR$\..\Core\Inc\FreeRTOS_CLI.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_debug.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\queue.o - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\stack_macros.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr_ex.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc_ex.pbi $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr.__cstat.et $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\stream_buffer.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h - $PROJ_DIR$\CableMonitor_APP_V3.2\List\CableMonitor_APP_V3.2.map $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\spi.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\queue.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\usart.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\common.pbi $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\wireless.o + $PROJ_DIR$\CableMonitor_APP_V3.2\List\CableMonitor_APP_V3.2.map $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c_ex.__cstat.et - $TOOLKIT_DIR$\inc\c\stdlib.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\portasm.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim_ex.pbi + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\stack_macros.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash.pbi - $PROJ_DIR$\..\Core\Inc\FreeRTOS_CLI.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stream_buffer.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.__cstat.et - $TOOLKIT_DIR$\inc\c\stdint.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\common.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc_ex.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr.__cstat.et $PROJ_DIR$\..\Core\Inc\common.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\croutine.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\usart.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stream_buffer.pbi $PROJ_DIR$\..\Core\Inc\FreeRTOSConfig.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi_ex.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h - $TOOLKIT_DIR$\inc\c\iar_intrinsics_common.h - $PROJ_DIR$\..\Core\Inc\usart.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\spi.pbi + $TOOLKIT_DIR$\inc\c\stdlib.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_cortex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\recording_wave.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash.o + $PROJ_DIR$\..\Core\Inc\flash_log.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\croutine.__cstat.et $TOOLKIT_DIR$\lib\rt7M_tl.a - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c_ex.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tasks.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rtc_ex.h $TOOLKIT_DIR$\inc\c\DLib_Product_string.h - $PROJ_DIR$\..\Core\Inc\dev_config.h - $TOOLKIT_DIR$\inc\c\iccarm_builtin.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tim.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dev_config.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\port.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dma.__cstat.et + $PROJ_DIR$\..\Core\Inc\usart.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_msp.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cmsis_os2.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc_ex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h + $TOOLKIT_DIR$\inc\c\iar_intrinsics_common.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rtc_ex.h + $TOOLKIT_DIR$\inc\c\iccarm_builtin.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\system_stm32l4xx.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dev_config.o - $PROJ_DIR$\..\Core\Inc\flash_log.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.pbi - $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\spi.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_log.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc_ex.o + $PROJ_DIR$\..\Core\Inc\dev_config.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cmsis_os2.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c_ex.pbi + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\rtc.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma.__cstat.et - $TOOLKIT_DIR$\lib\dl7M_tlf.a - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\recording_wave.__cstat.et $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\position.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\croutine.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\gpio.pbi - $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tasks.pbi + $TOOLKIT_DIR$\lib\dl7M_tlf.a + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_log.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dma.__cstat.et + $PROJ_DIR$\..\Core\Inc\flash_if.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_cortex.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc.pbi + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\wireless.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc_ex.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stream_buffer.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_gpio.pbi + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\adc.o + $PROJ_DIR$\..\Core\Inc\recording_wave.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_msp.o + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\list.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Exe\CableMonitor_APP_V3.2.out + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cmsis_os2.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\event_groups.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_exti.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\FreeRTOS_CLI.pbi + $PROJ_DIR$\..\Core\Inc\stm32l4xx_hal_conf.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tasks.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart.pbi + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cmsis_os2.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\ADC_collect.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_gpio.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\adc.__cstat.et + $TOOLKIT_DIR$\inc\c\yvals.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\timers.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\tasks.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\common.__cstat.et + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.c + $PROJ_DIR$\..\Core\Inc\main.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\port.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal.pbi + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma_ex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dma.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\rtc.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\FreeRTOS_CLI.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\FreeRTOS_CLI.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h + $PROJ_DIR$\..\Core\Inc\RS485_sensor.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_it.__cstat.et + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\event_groups.o + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portasm.s + $PROJ_DIR$\..\Core\Inc\position.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr.o + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\event_groups.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_debug.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cli.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\freertos.pbi + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\gpio.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\queue.pbi + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h + $TOOLKIT_DIR$\inc\c\DLib_float_setup.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_exti.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\freertos.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Exe\CableMonitor_APP_V3.2.bin + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\recording_wave.pbi + $PROJ_DIR$\..\Core\Inc\rtc.h + $PROJ_DIR$\..\Core\Inc\spi.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_sensor.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Product.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim_ex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\CableMonitor_APP_V3.2.pbd $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\heap_4.pbi $PROJ_DIR$\..\Core\Inc\tim.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\gpio.pbi $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\startup_stm32l496xx.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi.o - $TOOLKIT_DIR$\inc\c\math.h - $TOOLKIT_DIR$\inc\c\ycheck.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portmacro.h - $TOOLKIT_DIR$\inc\c\ysizet.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc_ex.__cstat.et + $PROJ_DIR$\..\Core\Inc\cli.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dau.pbi + $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\heap_4.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc_ex.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portmacro.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h + $TOOLKIT_DIR$\inc\c\math.h $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\usart.__cstat.et + $TOOLKIT_DIR$\inc\c\ycheck.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ex.pbi - $PROJ_DIR$\..\Core\Inc\cli.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\timers.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc_ex.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dau.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\port.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\common.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dau.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\port.o $TOOLKIT_DIR$\inc\c\intrinsics.h + $TOOLKIT_DIR$\inc\c\ysizet.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\startup_stm32l496xx.o $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_cortex.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\CableMonitor_APP_V3.2.pbd - $PROJ_DIR$\..\Core\Inc\rtc.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Exe\CableMonitor_APP_V3.2.bin - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\freertos.o - $TOOLKIT_DIR$\inc\c\DLib_float_setup.h - $PROJ_DIR$\..\Core\Inc\spi.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\recording_wave.pbi - $TOOLKIT_DIR$\inc\c\DLib_Product.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim_ex.o - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\queue.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_exti.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_sensor.__cstat.et - $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h + $TOOLKIT_DIR$\inc\c\stdarg.h [ROOT_NODE] ILINK - 63 253 + 259 195 - $PROJ_DIR$\..\Core\Src\common.c + $PROJ_DIR$\..\Core\Src\FreeRTOS_CLI.c - - BICOMP - 258 - ICCARM - 330 + 287 __cstat - 38 + 286 + + + BICOMP + 263 ICCARM - 148 315 72 128 292 343 318 157 280 275 45 60 74 254 68 115 131 140 268 320 81 228 282 350 311 122 201 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 93 271 111 120 214 317 332 274 240 345 49 212 223 336 125 117 269 281 290 324 + 156 337 272 67 225 317 347 217 181 246 164 207 115 91 125 332 346 228 226 126 307 292 183 203 128 117 - $PROJ_DIR$\..\Core\Src\dau.c + $PROJ_DIR$\..\Core\Src\dma.c - - BICOMP - 327 - ICCARM - 101 + 99 __cstat - 331 + 241 - - BICOMP - 72 280 281 318 340 201 68 314 224 343 315 233 268 345 240 157 275 290 230 128 292 306 115 60 140 320 333 93 223 111 317 282 212 45 261 125 341 269 89 150 213 117 74 254 293 273 127 250 47 329 67 124 215 337 231 122 131 311 81 228 235 87 138 56 279 43 203 148 350 227 238 271 120 214 332 274 49 + 284 + + ICCARM - 148 315 72 128 292 343 318 261 306 157 280 125 117 314 340 341 45 60 74 254 68 115 131 140 268 320 81 228 282 350 311 122 201 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 275 269 212 93 271 111 120 214 317 332 274 240 345 49 223 281 290 89 150 224 213 230 + 130 279 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 267 97 301 181 272 279 56 131 164 305 228 337 123 264 190 235 184 68 188 304 331 252 104 121 318 122 101 64 324 335 257 67 225 317 146 347 132 273 76 349 288 227 302 154 130 142 - $PROJ_DIR$\..\Core\Src\ADC_collect.c + $PROJ_DIR$\..\Core\Src\stm32l4xx_hal_msp.c - - BICOMP - 239 - ICCARM - 166 + 256 __cstat - 71 + 222 + + + BICOMP + 135 ICCARM - 148 315 72 128 292 343 318 261 306 157 280 136 45 60 74 254 68 115 131 140 268 320 81 228 282 350 311 122 201 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 269 212 93 271 111 120 214 317 332 274 240 345 49 223 281 290 150 + 279 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 272 164 267 301 131 181 305 228 337 123 97 56 264 190 235 184 68 188 304 331 252 104 121 318 122 101 64 324 335 257 67 225 317 146 347 132 273 76 349 288 227 302 154 279 142 - $PROJ_DIR$\..\Core\Src\dev_config.c + $PROJ_DIR$\..\Core\Src\flash_if.c - - BICOMP - 232 - ICCARM - 289 + 72 __cstat - 218 + 149 - - BICOMP - 332 292 282 49 128 233 268 350 318 68 269 72 201 138 56 203 345 45 89 343 315 115 60 140 235 87 279 43 271 214 148 212 281 290 280 74 254 293 273 127 250 47 329 67 124 215 337 231 122 131 311 320 81 228 333 120 274 157 227 238 93 223 111 317 240 + 102 + + ICCARM - 157 315 72 128 292 343 318 280 148 45 60 74 254 68 115 131 140 268 320 81 228 282 350 311 122 201 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 212 93 271 111 120 214 317 332 274 240 345 49 223 269 281 290 89 + 128 246 164 337 272 67 225 317 347 181 207 115 91 125 332 346 228 226 126 307 292 117 315 279 301 264 190 267 97 64 56 335 257 146 305 324 101 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 203 242 - - $PROJ_DIR$\startup_stm32l496xx.s - - - AARM - 312 - - - $PROJ_DIR$\..\Core\Src\cli.c - - BICOMP - 210 - ICCARM - 50 + 299 __cstat - 234 + 124 + + + BICOMP + 134 ICCARM - 148 315 72 128 292 343 318 157 280 125 117 45 60 74 254 68 115 131 140 268 320 81 228 282 350 311 122 201 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 93 271 111 120 214 317 332 274 240 345 49 212 223 275 310 336 269 281 290 265 324 89 213 150 230 224 + 57 337 272 67 225 317 347 156 217 63 111 279 301 264 190 267 97 64 56 181 335 257 146 228 305 324 101 164 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 246 207 115 91 125 332 346 226 126 307 292 128 117 221 322 314 203 232 214 183 326 242 133 82 144 129 + + + BICOMP + 67 257 331 301 133 337 267 221 225 264 184 318 146 349 246 279 232 129 272 190 188 104 64 351 307 314 326 144 347 317 111 235 68 304 252 121 122 101 324 335 181 214 156 63 128 322 203 183 242 82 217 131 97 164 56 305 228 132 273 76 288 227 302 154 115 332 126 57 123 142 207 91 125 346 226 292 117 - $PROJ_DIR$\..\Core\Src\FreeRTOS_CLI.c + $PROJ_DIR$\..\Core\Src\common.c - - BICOMP - 78 - ICCARM - 55 + 342 __cstat - 52 + 277 + + + BICOMP + 200 ICCARM - 157 315 72 128 292 343 318 280 268 93 201 271 111 120 214 317 332 282 274 240 345 49 265 269 212 223 + 57 337 272 67 225 317 347 156 217 221 279 301 264 190 267 97 64 56 181 335 257 146 228 305 324 101 164 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 246 207 115 91 125 332 346 226 126 307 292 128 117 314 63 111 203 232 214 326 - $PROJ_DIR$\..\Core\Src\rtc.c + $PROJ_DIR$\..\Core\Src\dau.c - - BICOMP - 297 - ICCARM - 54 + 93 __cstat - 130 + 343 - - BICOMP - 250 72 235 254 124 131 315 87 68 273 329 337 81 343 228 138 56 117 45 74 293 127 47 67 215 231 122 311 320 128 292 268 318 333 125 60 233 115 201 140 350 282 227 238 336 279 43 203 + 327 + + ICCARM - 336 45 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 125 117 + 57 337 272 67 225 317 347 209 328 156 217 63 111 334 308 315 279 301 264 190 267 97 64 56 181 335 257 146 228 305 324 101 164 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 221 203 128 246 207 115 91 125 332 346 226 126 307 292 117 232 214 242 82 129 133 144 + + + BICOMP + 104 214 272 301 190 64 232 337 279 188 334 129 347 264 184 331 318 267 128 346 292 156 221 144 111 235 68 304 252 121 122 101 324 181 97 207 125 164 246 307 209 63 315 203 242 82 133 67 225 317 328 217 308 131 56 305 228 123 142 91 226 57 335 257 146 132 273 76 349 288 227 302 154 117 115 332 126 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Core\Src\freertos.c - - BICOMP - 247 - ICCARM - 296 + 311 __cstat - 319 + 116 - - BICOMP - 235 250 72 68 254 124 131 315 87 333 273 329 337 81 343 228 138 74 293 127 47 67 215 231 122 311 320 128 292 268 318 233 115 201 60 140 350 282 56 279 43 203 227 238 + 300 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 246 164 337 272 67 225 317 347 181 207 115 91 125 332 346 228 226 126 307 292 279 301 264 190 267 97 64 56 335 257 146 305 324 101 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 128 117 + + + BICOMP + 188 267 301 337 272 226 190 104 64 349 181 115 67 225 264 184 331 318 257 279 347 317 125 346 292 235 68 304 252 121 122 101 324 335 97 307 128 164 207 91 332 126 228 131 56 305 146 132 273 76 288 227 302 154 246 123 142 117 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ex.c + $PROJ_DIR$\..\Core\Src\RS485_debug.c - - BICOMP - 323 - ICCARM - 116 + 185 __cstat - 194 + 158 - - BICOMP - 72 250 235 68 254 124 131 315 87 333 273 329 337 81 343 228 138 74 293 127 47 67 215 231 122 311 320 128 292 268 318 233 115 201 60 140 350 282 56 279 43 203 227 238 + 298 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 57 337 272 67 225 317 347 156 217 334 308 221 279 301 264 190 267 97 64 56 181 335 257 146 228 305 324 101 164 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 314 63 111 203 128 246 207 115 91 125 332 346 226 126 307 292 117 232 214 144 82 133 242 129 + + + BICOMP + 337 214 304 279 101 82 272 235 121 267 63 246 314 129 347 68 252 122 324 128 346 292 334 232 242 217 308 301 264 190 184 188 331 104 318 64 257 146 349 207 125 164 156 221 203 144 133 67 225 317 131 97 56 181 335 132 273 76 288 227 302 154 307 91 226 57 305 228 123 142 111 117 115 332 126 - $PROJ_DIR$\..\Core\Src\RS485_debug.c + $PROJ_DIR$\..\Core\Src\adc.c - BICOMP - 40 + ICCARM + 254 __cstat - 182 + 271 - - BICOMP - 315 47 268 68 93 122 117 150 72 293 215 345 336 224 318 127 67 231 311 238 240 314 281 89 280 340 60 74 254 273 250 329 124 337 131 227 223 111 317 282 45 157 275 269 230 213 290 128 292 343 233 115 201 140 350 212 148 320 81 228 235 87 138 333 56 279 43 203 125 271 120 214 332 274 49 + 58 + + ICCARM - 148 315 72 128 292 343 318 157 280 314 340 275 45 60 74 254 68 115 131 140 268 320 81 228 282 350 311 122 201 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 269 212 93 271 111 120 214 317 332 274 240 345 49 223 281 290 230 150 213 89 224 + 74 279 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 203 128 246 207 115 91 125 332 346 226 126 307 292 117 82 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Core\Src\rtc.c - - BICOMP - 291 - ICCARM - 199 + 285 __cstat - 267 + 54 - - BICOMP - 231 72 127 68 74 67 311 333 293 47 215 122 320 315 128 292 268 318 254 273 250 329 124 337 131 81 343 228 235 87 138 56 233 115 201 60 140 350 282 227 279 43 203 238 + 236 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 314 279 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 63 111 + + + BICOMP + 188 272 132 190 104 64 337 273 267 184 331 318 257 317 146 76 288 111 279 264 235 68 304 252 121 122 101 324 335 67 225 181 347 349 63 301 131 97 164 56 305 228 123 142 314 227 302 154 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c.c + $PROJ_DIR$\..\Core\Src\spi.c - - BICOMP - 207 - ICCARM - 94 + 231 __cstat - 75 + 95 - - BICOMP - 201 68 72 233 268 350 282 315 227 115 60 140 74 254 293 273 127 250 47 329 67 124 215 337 231 122 131 311 320 81 128 292 343 228 318 235 87 138 333 56 279 43 203 238 + 208 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 315 279 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 203 128 246 207 115 91 125 332 346 226 126 307 292 117 129 $PROJ_DIR$\..\Core\Src\tim.c - - BICOMP - 283 - ICCARM - 106 + 96 __cstat - 141 + 81 + + + BICOMP + 218 ICCARM - 310 45 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 269 212 93 271 111 120 214 317 332 274 240 345 49 223 281 290 150 + 322 279 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 203 128 246 207 115 91 125 332 346 226 126 307 292 117 232 214 82 - $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Core\Src\ADC_collect.c - - BICOMP - 257 - ICCARM - 196 + 159 __cstat - 322 + 269 + + + BICOMP + 147 ICCARM - 275 45 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 157 280 269 212 93 271 111 120 214 317 332 274 240 345 49 223 281 290 213 230 324 150 224 + 57 337 272 67 225 317 347 209 328 156 217 74 279 301 264 190 267 97 64 56 181 335 257 146 228 305 324 101 164 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 203 128 246 207 115 91 125 332 346 226 126 307 292 117 232 214 82 $PROJ_DIR$\..\Core\Src\flash_log.c - - BICOMP - 181 - ICCARM - 219 + 139 __cstat - 295 + 240 + + + BICOMP + 167 ICCARM - 148 315 72 128 292 343 318 157 280 212 93 201 268 271 111 120 214 317 332 282 274 240 345 49 223 336 45 60 74 254 68 115 131 140 320 81 228 350 311 122 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 125 117 269 281 290 89 + 57 337 272 67 225 317 347 156 217 128 246 164 181 207 115 91 125 332 346 228 226 126 307 292 117 314 279 301 264 190 267 97 64 56 335 257 146 305 324 101 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 63 111 203 232 214 242 - $PROJ_DIR$\..\Core\Src\stm32l4xx_hal_msp.c + $PROJ_DIR$\..\Core\Src\usart.c - - BICOMP - 216 - ICCARM - 65 + 163 __cstat - 286 + 336 - - BICOMP - 72 201 68 60 233 268 350 282 315 227 115 140 74 254 293 273 127 250 47 329 67 124 215 337 231 122 131 311 320 81 128 292 343 228 318 235 87 138 333 56 279 43 203 45 238 + 205 + + ICCARM - 45 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 221 279 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 156 217 203 128 246 207 115 91 125 332 346 226 126 307 292 117 232 214 133 144 326 82 129 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc.c + $PROJ_DIR$\..\Core\Src\stm32l4xx_it.c - - BICOMP - 152 - ICCARM - 347 + 78 __cstat - 308 + 291 - - BICOMP - 215 318 293 320 292 68 47 122 315 128 268 333 74 127 67 231 311 72 254 273 250 329 124 337 131 81 343 228 235 87 138 233 115 201 60 140 350 282 56 279 43 203 227 238 + 89 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 279 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 83 246 207 115 91 125 332 346 226 126 307 292 + + + BICOMP + 115 337 301 131 181 305 228 267 164 272 142 246 97 56 123 83 307 264 190 235 184 68 188 304 331 252 104 121 318 122 101 64 324 335 257 67 225 317 146 347 132 273 76 125 346 279 349 288 227 302 154 207 91 332 126 226 292 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc.c + $PROJ_DIR$\..\Core\Src\wireless.c - - BICOMP - 300 - ICCARM - 39 + 194 __cstat - 248 + 247 - - BICOMP - 343 273 337 138 68 329 81 228 333 254 250 124 131 315 72 235 87 74 293 127 47 67 215 231 122 311 320 128 292 268 318 233 115 201 60 140 350 282 56 279 43 203 227 238 + 170 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 57 337 272 67 225 317 347 156 217 63 111 221 279 301 264 190 267 97 64 56 181 335 257 146 228 305 324 101 164 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 74 322 314 203 128 246 207 115 91 125 332 346 226 126 307 292 117 133 232 214 82 242 144 129 + + + BICOMP + 272 307 68 122 133 337 252 324 273 214 279 246 74 144 347 235 304 121 101 132 227 302 128 346 292 63 314 82 129 217 301 264 190 184 188 331 104 318 64 335 181 76 267 288 154 207 125 164 156 221 322 203 232 242 67 225 317 111 131 97 56 257 146 349 91 226 57 305 228 123 142 117 115 332 126 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c_ex.c + $PROJ_DIR$\startup_stm32l496xx.s - BICOMP - 277 + AARM + 348 + + + + $PROJ_DIR$\..\Core\Src\main.c + ICCARM - 107 + 70 __cstat - 260 + 65 - - BICOMP - 201 68 72 233 268 350 282 315 227 115 60 140 74 254 293 273 127 250 47 329 67 124 215 337 231 122 131 311 320 81 128 292 343 228 318 235 87 138 333 56 279 43 203 238 + 151 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 279 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 128 246 207 115 91 125 332 346 226 126 307 292 117 74 130 314 63 111 315 322 221 137 + + + BICOMP + 181 301 288 272 267 154 137 97 111 314 56 126 63 74 322 131 164 305 228 337 227 302 115 332 347 128 130 315 221 264 190 235 184 68 188 304 331 252 104 121 318 122 101 64 324 335 257 67 225 317 146 132 273 76 349 307 279 123 142 246 117 207 91 125 346 226 292 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma.c + $PROJ_DIR$\..\Core\Src\dev_config.c - - BICOMP - 108 - ICCARM - 91 + 219 __cstat - 298 + 143 - - BICOMP - 74 67 311 68 333 127 231 72 293 47 215 122 320 315 128 292 268 318 254 273 250 329 124 337 131 81 343 228 235 87 138 233 115 201 60 140 350 282 227 56 279 43 203 238 + 145 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 156 337 272 67 225 317 347 217 57 279 301 264 190 267 97 64 56 181 335 257 146 228 305 324 101 164 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 128 246 207 115 91 125 332 346 226 126 307 292 117 203 232 214 242 + + + BICOMP + 346 225 228 292 67 131 181 305 347 267 203 272 164 76 288 154 307 279 242 317 337 97 301 56 132 273 227 302 207 125 57 128 232 214 217 264 190 235 184 68 188 304 331 252 104 121 318 122 101 64 324 335 257 146 349 91 226 156 123 142 246 117 115 332 126 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma_ex.c + $PROJ_DIR$\..\Core\Src\gpio.c - - BICOMP - 160 - ICCARM - 42 + 119 __cstat - 133 + 303 - - BICOMP - 201 68 72 233 268 350 282 315 227 115 60 140 74 254 293 273 127 250 47 329 67 124 215 337 231 122 131 311 320 81 128 292 343 228 318 235 87 138 333 56 279 43 203 238 + 323 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 137 279 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 267 279 56 97 349 301 181 272 131 164 305 228 337 264 190 235 184 68 188 304 331 252 104 121 318 122 101 64 324 335 257 67 225 317 146 347 132 273 76 288 227 302 154 137 123 142 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\list.c - - BICOMP - 151 - ICCARM - 51 + 150 __cstat - 249 + 258 - - BICOMP - 68 282 233 268 350 227 315 201 72 115 60 140 74 254 293 273 127 250 47 329 67 124 215 337 231 122 131 311 320 81 128 292 343 228 318 235 87 138 333 56 279 43 203 238 + 174 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 209 337 272 67 225 317 347 328 246 164 181 207 115 91 125 332 346 228 226 126 292 + + + BICOMP + 337 91 292 347 67 317 164 181 246 272 328 225 207 125 346 228 209 115 332 126 226 - $PROJ_DIR$\..\Core\Src\stm32l4xx_it.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ex.c - - BICOMP - 112 - ICCARM - 144 + 98 __cstat - 59 + 173 - - BICOMP - 111 315 60 233 268 350 282 68 201 72 238 93 115 140 227 134 345 74 254 293 273 127 250 47 329 67 124 215 337 231 122 131 311 320 81 128 292 343 228 318 235 87 138 214 332 45 333 56 279 43 203 271 120 317 240 274 49 + 338 + + ICCARM - 45 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 134 93 271 111 120 214 317 332 274 240 345 49 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 272 188 132 267 190 104 64 337 273 349 184 331 318 257 317 146 76 264 235 68 304 252 121 122 101 324 335 67 225 181 347 131 97 164 301 56 305 228 288 227 302 154 123 142 - $PROJ_DIR$\..\Core\Src\system_stm32l4xx.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c.c - - BICOMP - 164 - ICCARM - 205 + 92 __cstat - 288 + 253 - - BICOMP - 235 293 60 268 215 72 68 47 122 315 87 140 74 127 67 231 138 56 350 282 254 273 250 329 124 337 318 333 131 311 320 81 128 292 343 228 233 115 201 227 279 43 203 238 + 176 + + ICCARM - 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 60 74 254 68 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 164 267 272 131 181 305 228 337 123 97 301 56 264 190 235 184 68 188 304 331 252 104 121 318 122 101 64 324 335 257 67 225 317 146 347 132 273 76 349 288 227 302 154 142 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_gpio.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\queue.c - - BICOMP - 80 - ICCARM - 200 + 191 __cstat - 76 + 100 - - BICOMP - 315 68 233 268 350 282 227 201 72 115 60 140 74 254 293 273 127 250 47 329 67 124 215 337 231 122 131 311 320 81 128 292 343 228 318 235 87 138 333 56 279 43 203 238 + 306 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 209 337 272 67 225 317 347 328 156 217 246 164 181 207 115 91 125 332 346 228 226 126 307 292 53 + + + BICOMP + 126 272 347 307 328 225 115 332 226 317 337 217 181 156 246 53 67 164 207 91 125 346 228 292 209 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c - - BICOMP - 46 - ICCARM - 307 + 112 __cstat - 102 + 249 - - BICOMP - 72 201 68 233 268 350 282 315 227 115 60 140 74 254 293 273 127 250 47 329 67 124 215 337 231 122 131 311 320 81 128 292 343 228 318 235 87 138 333 56 279 43 203 238 + 206 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 181 337 272 67 225 317 156 347 217 246 164 207 115 91 125 332 346 228 226 126 307 292 189 + + + BICOMP + 91 272 307 337 347 164 67 217 207 332 126 226 292 156 246 189 225 317 181 115 125 346 228 - $PROJ_DIR$\..\Core\Src\adc.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc.c - - BICOMP - 153 - ICCARM - 79 + 276 __cstat - 83 + 187 + + + BICOMP + 211 ICCARM - 136 45 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 269 212 93 271 111 120 214 317 332 274 240 345 49 223 150 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 317 184 318 76 267 331 257 146 349 190 188 104 64 337 272 132 273 264 235 68 304 252 121 122 101 324 335 67 225 181 347 131 97 164 301 56 305 228 288 227 302 154 123 142 $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c + + ICCARM + 213 + + + __cstat + 178 + BICOMP - 264 + 199 + + + + + ICCARM + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 228 267 131 181 305 123 337 164 272 97 301 56 264 190 235 184 68 188 304 331 252 104 121 318 122 101 64 324 335 257 67 225 317 146 347 132 273 76 349 288 227 302 154 142 + + + + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma.c + ICCARM - 304 + 244 __cstat - 209 + 224 - - BICOMP - 282 68 233 268 350 227 315 201 72 115 60 140 74 254 293 273 127 250 47 329 67 124 215 337 231 122 131 311 320 81 128 292 343 228 318 235 87 138 333 56 279 43 203 238 + 88 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 264 252 324 267 349 68 122 272 235 304 121 101 335 337 67 225 181 347 190 184 188 331 104 318 64 257 317 146 132 273 76 131 97 164 301 56 305 228 123 288 227 302 154 142 - $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma_ex.c - BICOMP - 53 + ICCARM + 283 - ICCARM - 105 + __cstat + 69 - __cstat - 285 + BICOMP + 155 - BICOMP - 68 115 60 268 72 45 140 233 201 350 282 315 227 74 254 293 273 127 250 47 329 67 124 215 337 231 122 131 311 320 81 128 292 343 228 318 235 87 138 333 56 279 43 203 229 238 + ICCARM + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 - ICCARM - 229 45 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + BICOMP + 164 267 272 131 181 305 228 337 123 97 301 56 264 190 235 184 68 188 304 331 252 104 121 318 122 101 64 324 335 257 67 225 317 146 347 132 273 76 349 288 227 302 154 142 - $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_exti.c - - BICOMP - 305 - ICCARM - 221 + 262 __cstat - 61 + 310 - - BICOMP - 68 45 140 115 333 60 268 72 233 201 350 282 315 74 254 293 273 127 250 47 329 67 124 215 337 231 122 131 311 320 81 128 292 343 228 318 235 87 138 56 279 43 203 236 227 238 + 71 + + ICCARM - 236 45 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 267 301 181 272 97 56 131 164 305 228 337 123 264 190 235 184 68 188 304 331 252 104 121 318 122 101 64 324 335 257 67 225 317 146 347 132 273 76 349 288 227 302 154 142 - $PROJ_DIR$\..\Core\Src\spi.c + $PROJ_DIR$\..\Core\Src\system_stm32l4xx.c - - BICOMP - 255 - ICCARM - 294 + 171 __cstat - 96 + 229 + + + BICOMP + 157 ICCARM - 341 45 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 269 212 93 271 111 120 214 317 332 274 240 345 49 223 224 + 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 301 264 190 267 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 132 235 301 181 121 272 267 304 101 337 273 56 264 68 252 122 76 288 305 228 190 184 188 331 104 318 347 349 64 324 335 257 67 225 317 146 131 97 164 123 227 302 154 142 - $PROJ_DIR$\..\Core\Src\flash_if.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ramfunc.c - - BICOMP - 123 - ICCARM - 126 + 168 __cstat - 176 + 180 + + + BICOMP + 230 ICCARM - 212 93 201 315 72 128 292 343 318 268 271 111 120 214 317 332 282 274 240 345 49 223 341 45 60 74 254 68 115 131 140 320 81 228 350 311 122 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 269 89 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 122 272 68 267 264 252 324 349 235 304 121 101 335 337 67 225 181 347 190 184 188 331 104 318 64 257 317 146 132 273 76 288 131 97 164 301 56 305 228 123 227 302 154 142 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc.c - - BICOMP - 114 - ICCARM - 326 + 66 __cstat - 62 + 161 - - BICOMP - 122 47 315 128 268 68 293 215 320 292 318 333 74 127 67 231 311 72 254 273 250 329 124 337 131 81 343 228 235 87 138 233 115 201 60 140 350 282 56 279 43 203 227 238 + 245 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 331 257 146 267 184 318 317 76 349 190 188 104 64 337 272 132 273 264 235 68 304 252 121 122 101 324 335 67 225 181 347 131 97 164 301 56 305 228 288 227 302 154 123 142 - $PROJ_DIR$\..\Core\Src\wireless.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc.c - - BICOMP - 204 - ICCARM - 259 + 309 __cstat + 344 + + + BICOMP 84 - BICOMP - 72 68 212 127 231 213 315 67 311 350 45 93 345 136 230 318 293 47 215 122 282 240 125 336 150 224 280 60 74 254 273 250 329 124 337 131 115 223 111 317 157 275 310 269 281 89 290 128 292 343 117 233 201 140 268 227 238 148 320 81 228 235 87 138 333 56 279 43 203 271 120 214 332 274 49 + ICCARM + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 - ICCARM - 148 315 72 128 292 343 318 157 280 125 117 275 45 60 74 254 68 115 131 140 268 320 81 228 282 350 311 122 201 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 136 310 336 269 212 93 271 111 120 214 317 332 274 240 345 49 223 213 281 290 150 89 230 224 + BICOMP + 121 347 235 335 225 267 304 101 337 67 181 349 264 68 252 122 324 272 190 184 188 331 104 318 64 257 317 146 132 273 76 131 97 164 301 56 305 228 288 227 302 154 123 142 - $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c_ex.c - - BICOMP - 165 - ICCARM - 142 + 108 __cstat - 132 + 196 - - BICOMP - 268 60 56 72 68 203 236 115 117 336 140 240 125 136 310 233 201 350 282 315 279 43 111 317 318 212 229 341 275 74 254 293 273 127 250 47 329 67 124 215 337 231 122 131 311 320 81 128 292 343 228 235 87 138 333 345 45 227 238 93 223 271 120 214 332 274 49 + 234 + + ICCARM - 45 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 212 93 271 111 120 214 317 332 274 240 345 49 223 136 229 336 125 117 341 310 275 236 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 164 267 272 131 181 305 228 337 123 97 301 56 264 190 235 184 68 188 304 331 252 104 121 318 122 101 64 324 335 257 67 225 317 146 347 132 273 76 349 288 227 302 154 142 - $PROJ_DIR$\..\Core\Src\freertos.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc_ex.c - - BICOMP - 57 - ICCARM - 339 + 110 __cstat - 217 + 77 - - BICOMP - 250 68 60 315 72 274 254 124 131 333 268 111 128 292 74 273 329 337 81 45 318 343 214 332 49 293 127 47 67 215 231 122 311 320 115 345 212 201 271 120 317 240 282 233 140 350 228 235 87 138 56 279 43 203 93 227 238 223 + 160 + + ICCARM - 93 201 315 72 128 292 343 318 268 271 111 120 214 317 332 282 274 240 345 49 45 60 74 254 68 115 131 140 320 81 228 350 311 122 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 212 223 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 331 257 146 267 184 318 317 76 349 190 188 104 64 337 272 132 273 264 235 68 304 252 121 122 101 324 335 67 225 181 347 131 97 164 301 56 305 228 288 227 302 154 123 142 - $PROJ_DIR$\CableMonitor_APP_V3.2\Exe\CableMonitor_APP_V3.2.out + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc_ex.c - OBJCOPY - 338 + ICCARM + 330 - ILINK - 253 + __cstat + 248 + + + BICOMP + 109 - ILINK - 154 79 166 50 88 330 270 101 289 105 41 126 219 339 55 221 180 159 142 328 262 244 243 54 294 312 307 347 326 242 91 42 77 304 116 199 200 94 107 65 51 246 39 296 139 109 313 225 104 344 321 143 144 100 205 162 106 325 196 259 103 276 208 299 + ICCARM + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 101 304 337 67 181 267 235 121 335 225 347 349 264 68 252 122 324 272 190 184 188 331 104 318 64 257 317 146 132 273 76 131 97 164 301 56 305 228 288 227 302 154 123 142 - $PROJ_DIR$\..\Core\Src\position.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c - - BICOMP - 99 - ICCARM - 302 + 107 __cstat - 222 + 193 - - BICOMP - 268 350 233 45 68 343 282 201 150 318 72 60 269 275 89 315 128 292 74 115 140 227 279 345 120 274 212 157 281 44 280 254 293 273 127 250 47 329 252 67 124 215 337 231 122 131 311 320 81 228 316 238 43 203 271 214 332 49 93 148 235 87 138 333 56 290 223 111 317 240 + 250 + + ICCARM - 148 315 72 128 292 343 318 157 280 275 45 60 74 254 68 115 131 140 268 320 81 228 282 350 311 122 201 233 293 235 273 127 250 87 138 47 329 333 227 252 316 67 56 124 279 215 238 337 43 231 203 281 269 212 93 271 111 120 214 317 332 274 240 345 49 223 290 150 44 89 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 267 56 97 301 181 272 227 302 131 164 305 228 337 288 154 264 190 235 184 68 188 304 331 252 104 121 318 122 101 64 324 335 257 67 225 317 146 347 132 273 76 349 123 142 - $PROJ_DIR$\..\Core\Src\recording_wave.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc_ex.c - - BICOMP - 342 - ICCARM - 161 + 223 __cstat - 301 + 325 - - BICOMP - 318 68 212 70 140 268 60 269 315 74 115 72 93 45 341 89 280 233 201 350 282 227 279 157 310 281 150 128 292 343 254 293 273 127 250 47 329 252 67 124 215 337 231 122 131 311 320 81 228 316 238 43 203 223 111 317 240 345 148 235 87 138 333 56 271 120 214 332 274 49 290 + 201 + + ICCARM - 148 315 72 128 292 343 318 157 280 341 45 60 74 254 68 115 131 140 268 320 81 228 282 350 311 122 201 233 293 235 273 127 250 87 138 47 329 333 227 252 316 67 56 124 279 215 238 337 43 231 203 310 269 212 93 271 111 120 214 317 332 274 240 345 49 223 281 290 89 150 70 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 132 188 272 267 190 104 64 337 273 349 184 331 318 257 317 146 76 264 235 68 304 252 121 122 101 324 335 67 225 181 347 131 97 164 301 56 305 228 288 227 302 154 123 142 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim_ex.c - - BICOMP - 309 - ICCARM - 180 + 319 __cstat + 94 + + + BICOMP 197 - BICOMP - 315 214 72 271 282 93 306 292 332 345 318 343 201 120 268 261 128 111 317 240 274 49 + ICCARM + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 - ICCARM - 261 315 72 128 292 343 318 306 93 201 268 271 111 120 214 317 332 282 274 240 345 49 + BICOMP + 190 64 273 104 337 267 188 272 132 349 184 331 318 257 317 146 76 264 235 68 304 252 121 122 101 324 335 67 225 181 347 131 97 164 301 56 305 228 288 227 302 154 123 142 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c - - BICOMP - 69 - ICCARM - 104 + 140 __cstat - 256 + 127 - - BICOMP - 68 140 115 60 268 72 279 43 233 201 350 282 315 56 203 74 254 293 273 127 250 47 329 67 124 215 337 231 122 131 311 320 81 128 292 343 228 318 235 87 138 333 227 238 + 182 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 76 318 288 184 317 267 331 257 146 190 188 104 64 337 272 132 273 264 235 68 304 252 121 122 101 324 335 67 225 181 347 349 131 97 164 301 56 305 228 123 227 302 154 142 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_cortex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart.c - - BICOMP - 334 - ICCARM - 242 + 341 __cstat - 90 + 290 - - BICOMP - 138 337 56 273 343 68 329 81 228 254 250 124 131 315 72 235 87 74 293 127 47 67 215 231 122 311 320 128 292 268 318 333 233 115 201 60 140 350 282 227 279 43 203 238 + 266 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 337 267 131 181 305 228 349 164 272 97 301 56 264 190 235 184 68 188 304 331 252 104 121 318 122 101 64 324 335 257 67 225 317 146 347 132 273 76 288 227 302 154 123 142 $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart_ex.c - - BICOMP - 211 - ICCARM - 143 + 62 __cstat - 237 + 138 - - BICOMP - 124 315 254 131 87 68 250 72 235 273 329 337 81 343 228 138 74 293 127 47 67 215 231 122 311 320 128 292 268 318 333 233 115 201 60 140 350 282 227 56 279 43 203 238 + 120 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 104 337 190 64 273 267 188 272 132 184 331 318 257 317 146 76 264 235 68 304 252 121 122 101 324 335 67 225 181 347 349 131 97 164 301 56 305 228 123 288 227 302 154 142 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\timers.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr_ex.c - - BICOMP - 168 - ICCARM - 325 + 186 __cstat - 137 + 113 - - BICOMP - 317 72 111 274 146 315 318 240 93 128 268 345 95 306 292 343 201 271 120 214 332 282 261 49 + 79 + + ICCARM - 261 315 72 128 292 343 318 306 93 201 268 271 111 120 214 317 332 282 274 240 345 49 146 95 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 267 164 272 349 131 181 305 228 337 97 301 56 264 190 235 184 68 188 304 331 252 104 121 318 122 101 64 324 335 257 67 225 317 146 347 132 273 76 288 227 302 154 123 142 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\croutine.c - - BICOMP - 135 - ICCARM - 313 + 204 __cstat - 155 + 215 - - BICOMP - 337 74 138 273 343 329 81 228 254 250 124 131 315 72 235 87 279 43 293 127 47 67 215 231 122 311 320 128 292 268 318 68 56 203 233 115 201 60 140 350 282 333 227 238 + 169 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 246 164 337 272 67 225 317 347 181 207 115 91 125 332 346 228 226 126 307 292 166 - - - - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c - BICOMP - 158 + 125 337 181 317 228 115 347 346 307 164 207 91 272 225 246 166 67 332 126 226 292 + + + + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal.c + ICCARM - 41 + 321 __cstat - 66 + 86 - - BICOMP - 240 315 318 95 111 72 317 274 49 93 128 268 345 37 306 292 343 201 271 120 214 332 282 261 + 281 + + ICCARM - 261 315 72 128 292 343 318 306 93 201 268 271 111 120 214 317 332 282 274 240 345 49 95 37 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 272 164 267 131 181 305 228 337 123 97 301 56 264 190 235 184 68 188 304 331 252 104 121 318 122 101 64 324 335 257 67 225 317 146 347 132 273 76 349 288 227 302 154 142 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi.c - - BICOMP - 287 - ICCARM - 88 + 340 __cstat - 64 + 60 - - BICOMP - 315 268 343 345 68 156 146 140 115 333 111 274 60 81 118 72 128 292 318 214 332 49 350 233 201 223 93 37 97 280 228 282 271 120 317 240 95 157 131 311 320 74 254 293 273 127 250 47 329 67 124 215 337 231 122 235 87 138 56 279 43 203 227 238 + 75 + + ICCARM - 157 315 72 128 292 343 318 280 223 268 201 81 228 282 93 271 111 120 214 317 332 274 240 345 49 37 95 118 146 97 156 115 131 140 320 350 311 60 74 254 68 122 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 - - - - - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portasm.s - - - AARM - 262 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 - - - AARM - 271 + BICOMP + 318 264 76 184 317 331 257 146 190 188 104 64 337 272 132 273 227 302 235 68 304 252 121 122 101 324 335 67 225 181 347 267 288 154 131 97 164 301 56 305 228 349 123 142 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim_ex.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c - - BICOMP - 263 - ICCARM - 344 + 293 __cstat - 110 + 261 - - BICOMP - 254 131 87 124 315 68 250 72 235 333 273 329 337 81 343 228 138 74 293 127 47 67 215 231 122 311 320 128 292 268 318 233 115 201 60 140 350 282 56 279 43 203 227 238 + 162 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 209 337 272 67 225 317 347 328 246 164 181 207 115 91 125 332 346 228 226 126 307 292 85 297 + + + BICOMP + 126 337 347 85 115 272 332 226 292 246 67 181 307 297 328 225 317 164 207 91 125 346 228 209 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_gpio.c - - BICOMP - 266 - ICCARM - 100 + 172 __cstat - 73 + 270 - - BICOMP - 120 72 345 315 318 201 128 280 271 317 240 274 49 157 93 251 292 343 268 111 214 332 282 + 251 + + ICCARM - 268 315 72 128 292 343 157 318 280 93 201 271 111 120 214 317 332 282 274 240 345 49 251 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 337 267 131 181 305 228 123 164 272 97 301 56 264 190 235 184 68 188 304 331 252 104 121 318 122 101 64 324 335 257 67 225 317 146 347 132 273 76 349 288 227 302 154 142 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\tasks.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c - - BICOMP - 278 - ICCARM - 162 + 296 __cstat - 85 + 202 - - BICOMP - 315 268 148 201 345 245 318 128 120 157 93 95 72 306 292 343 271 214 332 282 261 280 111 317 240 274 49 + 80 + + ICCARM - 261 315 72 128 292 343 318 306 157 280 93 201 268 271 111 120 214 317 332 282 274 240 345 49 95 245 148 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 267 228 131 181 305 123 337 164 272 97 301 56 264 190 235 184 68 188 304 331 252 104 121 318 122 101 64 324 335 257 67 225 317 146 347 132 273 76 349 288 227 302 154 142 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_cortex.c - - BICOMP - 92 - ICCARM - 139 + 210 __cstat - 186 + 243 - - BICOMP - 329 81 228 68 273 337 343 138 333 254 250 124 131 315 72 235 87 74 293 127 47 67 215 231 122 311 320 128 292 268 318 233 115 201 60 140 350 282 56 279 43 203 227 238 + 350 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 301 264 190 267 97 64 56 181 337 272 67 225 317 335 257 146 228 305 324 101 164 347 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 76 318 288 184 317 267 331 257 146 190 188 104 64 337 272 132 273 264 235 68 304 252 121 122 101 324 335 67 225 181 347 349 131 97 164 301 56 305 228 123 227 302 154 142 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc_ex.c + $PROJ_DIR$\..\Core\Src\recording_wave.c - - BICOMP - 195 - ICCARM - 109 + 175 __cstat - 149 + 212 - - BICOMP - 329 81 228 68 273 337 343 138 333 254 250 124 131 315 72 235 87 74 293 127 47 67 215 231 122 311 320 128 292 268 318 233 115 201 60 140 350 282 56 279 43 203 227 238 + 313 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 57 337 272 67 225 317 347 156 217 315 279 301 264 190 267 97 64 56 181 335 257 146 228 305 324 101 164 131 235 132 184 68 188 273 76 304 331 349 123 192 333 252 288 104 227 121 142 318 302 122 154 322 203 128 246 207 115 91 125 332 346 226 126 307 292 117 232 214 242 82 255 + + + BICOMP + 347 267 128 255 56 181 301 203 337 264 97 272 246 279 315 242 217 131 164 305 228 123 227 156 322 232 82 67 225 317 190 235 184 68 188 304 331 192 252 104 121 318 122 101 64 324 335 257 146 333 142 302 154 117 115 332 126 307 57 132 273 76 349 288 207 91 125 346 226 292 214 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\list.c + $PROJ_DIR$\..\Core\Src\position.c - - BICOMP - 206 - ICCARM - 159 + 237 __cstat - 82 + 136 - - BICOMP - 315 120 49 318 128 343 201 268 93 72 306 292 271 214 332 282 261 111 317 240 274 + 105 + + ICCARM - 261 315 72 128 292 343 318 306 93 201 268 271 111 120 214 317 332 282 274 240 49 + 57 337 272 67 225 317 347 156 217 221 279 301 264 190 267 97 64 56 181 335 257 146 228 305 324 101 164 131 235 132 184 68 188 273 76 304 331 349 123 192 333 252 288 104 227 121 142 318 302 122 154 232 203 128 246 207 115 91 125 332 346 226 126 307 292 117 214 82 295 242 + + + BICOMP + 181 305 131 279 267 317 228 164 82 347 272 301 203 221 242 337 67 225 264 97 56 123 227 307 91 226 128 156 232 295 217 190 235 184 68 188 304 331 192 252 104 121 318 122 101 64 324 335 257 146 333 142 302 154 207 125 346 292 246 57 132 273 76 349 288 214 117 115 332 126 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\port.c + $PROJ_DIR$\..\Core\Src\RS485_sensor.c - BICOMP - 284 - - - ICCARM - 328 + __cstat + 316 - __cstat - 129 + BICOMP + 118 - BICOMP - 274 315 72 345 343 268 93 282 128 292 111 318 214 332 201 271 120 317 240 49 + ICCARM + 57 337 272 67 225 317 347 156 217 221 279 301 264 190 267 97 64 56 181 335 257 146 228 305 324 101 164 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 203 128 246 207 115 91 125 332 346 226 126 307 292 117 232 214 289 - ICCARM - 332 282 72 128 292 343 274 93 201 315 318 268 271 111 120 214 317 240 345 49 + BICOMP + 217 301 181 267 97 272 128 232 337 56 279 221 347 131 164 305 228 349 203 246 156 289 67 225 317 264 190 235 184 68 188 304 331 252 104 121 318 122 101 64 324 335 257 146 132 273 76 288 227 302 154 117 115 332 126 57 123 142 307 207 91 125 346 226 292 214 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Exe\CableMonitor_APP_V3.2.out - BICOMP - 272 - - - ICCARM - 225 + OBJCOPY + 312 - __cstat - 241 + ILINK + 195 - BICOMP - 138 337 56 273 343 68 329 81 228 254 250 124 131 315 72 235 87 74 293 127 47 67 215 231 122 311 320 128 292 268 318 333 233 115 201 60 140 350 282 227 279 43 203 238 - - - ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + ILINK + 59 254 159 299 268 342 204 93 219 99 293 72 139 311 287 119 153 150 70 345 179 191 185 285 231 348 321 309 330 210 244 283 262 213 98 168 172 92 108 256 296 186 276 223 66 110 340 140 107 319 341 62 78 112 171 148 96 339 163 194 114 216 177 239 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_exti.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\timers.c - - BICOMP - 147 - ICCARM - 77 + 339 __cstat - 348 + 73 - - BICOMP - 68 60 268 72 115 140 233 201 350 282 315 227 74 254 293 273 127 250 47 329 67 124 215 337 231 122 131 311 320 81 128 292 343 228 318 235 87 138 333 56 279 43 203 238 + 152 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 209 337 272 67 225 317 347 328 246 164 181 207 115 91 125 332 346 228 226 126 307 292 53 85 + + + BICOMP + 332 272 115 226 53 337 347 126 246 67 181 307 85 328 225 317 164 207 91 125 346 228 209 292 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\tasks.c - - BICOMP - 145 - ICCARM - 246 + 148 __cstat - 119 + 265 - - BICOMP - 68 201 72 333 233 268 350 282 315 115 60 140 74 254 293 273 127 250 47 329 67 124 215 337 231 122 131 311 320 81 128 292 343 228 318 235 87 138 56 279 43 203 227 238 + 238 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 209 337 272 67 225 317 347 328 156 217 246 164 181 207 115 91 125 332 346 228 226 126 307 292 85 198 57 + + + BICOMP + 337 181 57 164 307 198 347 67 91 156 246 85 272 328 225 317 207 125 346 228 209 217 115 332 126 226 292 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.c - - BICOMP - 86 - ICCARM - 321 + 268 __cstat - 58 + 260 - - BICOMP - 315 68 233 268 350 282 333 201 72 115 60 140 74 254 293 273 127 250 47 329 67 124 215 337 231 122 131 311 320 81 128 292 343 228 318 235 87 138 56 279 43 203 227 238 + 233 + + ICCARM - 60 74 254 68 115 131 140 268 315 72 128 292 343 320 81 228 282 350 311 122 201 318 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 + 156 337 272 67 225 317 347 217 117 181 164 257 146 228 246 207 115 91 125 332 346 226 126 307 292 297 85 87 53 106 61 97 64 56 335 305 324 301 264 190 267 101 131 235 132 184 68 188 273 76 304 331 349 123 252 288 104 227 121 142 318 302 122 154 + + + BICOMP + 337 181 317 307 267 61 53 56 97 349 115 226 301 257 87 272 67 225 347 125 346 292 305 131 164 117 246 297 106 217 146 228 207 91 332 126 85 156 64 324 335 264 190 235 184 68 188 304 331 252 104 121 318 122 101 132 273 76 288 227 302 154 123 142 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\croutine.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\port.c - - BICOMP - 202 - ICCARM - 270 + 345 __cstat - 303 + 55 - - BICOMP - 214 315 268 343 282 111 318 332 345 201 271 120 72 292 93 198 128 317 240 274 49 + 220 + + ICCARM - 93 201 315 72 128 292 343 318 268 271 111 120 214 317 332 282 274 240 345 49 198 + 346 228 272 67 225 317 226 246 164 337 347 181 207 115 91 125 332 126 307 292 + + + BICOMP + 226 337 272 307 317 181 246 228 67 225 115 347 125 346 164 207 91 332 126 292 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\queue.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c - - BICOMP - 346 - ICCARM - 244 + 153 __cstat - 121 + 165 - - BICOMP - 240 72 318 345 306 292 111 317 274 343 315 280 268 157 93 146 128 201 271 120 214 332 282 49 261 + 329 + + ICCARM - 261 315 72 128 292 343 318 306 157 280 93 201 268 271 111 120 214 317 332 282 274 240 345 49 146 + 209 337 272 67 225 317 347 328 246 164 181 207 115 91 125 332 346 228 226 126 307 292 + + + BICOMP + 337 125 272 207 228 246 328 225 346 307 347 317 164 91 181 209 67 115 332 126 226 292 - $PROJ_DIR$\..\Core\Src\RS485_sensor.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portasm.s - BICOMP - 226 - - - __cstat - 349 + AARM + 179 - BICOMP - 280 60 268 68 115 72 212 281 315 140 45 275 318 233 201 350 282 333 269 93 157 48 128 292 343 74 254 293 273 127 250 47 329 67 124 215 337 231 122 131 311 320 81 228 235 87 138 56 279 43 203 223 111 317 240 148 227 238 345 271 120 214 332 274 49 290 - - - ICCARM - 148 315 72 128 292 343 318 157 280 275 45 60 74 254 68 115 131 140 268 320 81 228 282 350 311 122 201 233 293 235 273 127 250 87 138 47 329 333 227 67 56 124 279 215 238 337 43 231 203 269 212 93 271 111 120 214 317 332 274 240 345 49 223 281 290 48 + AARM + 207 diff --git a/CablePositioning_APP_V1.0/EWARM/settings/Project.wsdt b/CablePositioning_APP_V1.0/EWARM/settings/Project.wsdt index 057f360..d274a6c 100644 --- a/CablePositioning_APP_V1.0/EWARM/settings/Project.wsdt +++ b/CablePositioning_APP_V1.0/EWARM/settings/Project.wsdt @@ -86,11 +86,11 @@ 1 1 1 - 690B00000E00598400000200000040E1000002000000108600001000000056840000020000005F860000070000000F810000010000000C810000180B000055840000030000000E810000080000000B810000110000000584000003000000468100000100000010840000200000000D81000007000000 + 6F0B00000E0040E10000020000005984000002000000568400000200000010860000100000000F810000010000005F860000070000000C8100001E0B000055840000030000000E810000080000000B810000110000000584000003000000108400002000000046810000010000000D81000007000000 49000D8400000F84000008840000FFFFFFFF54840000328100001C810000098400007784000007840000808C000044D50000538400000088000001880000028800000388000004880000058800001C8F00001D8F00001F8F0000208F0000218F00002AE10000118F000055840000568400005984000001B0000002B0000003B0000004B0000005B0000006B0000007B0000008B0000009B000000AB000000BB000000CB000000DB000000EB0000000B000002481000040E100000C840000338400007884000011840000008200001C820000018200006786000020DE000021DE000026DE000028DE000023DE000022DE000024DE000027DE000025DE000020920000289200002992000037920000389200003492000033920000259200001E9200001D920000 - 3700048400004C000000268100002D000000048100001C0000002CE100004300000015810000250000003184000053000000239200000000000007E100003B0000000F81000023000000208100002B0000005F8600003400000004E10000390000000C8100002000000023E100003D0000000D8000001700000001E10000360000001982000015000000068400004E0000004A810000470000001682000013000000038400004B00000017810000270000002BE100004200000000840000480000001481000024000000449200001000000030840000520000000E8400005000000000810000190000000E810000220000001F8100002A00000025E100003F0000002F820000160000001F9200000D00000003E10000380000000B8100001F00000022E100003C0000002D9200000F00000000E1000035000000D18400000C0000001882000014000000058400004D00000041E1000045000000058100001D0000004981000046000000028400004A000000168100002600000032840000540000001084000051000000518400005600000005E100003A0000000D810000210000000A8400004F00000002E10000370000002C9200000E000000 + 3700048400004C00000015810000250000002CE1000043000000048100001C000000268100002D00000007E100003B0000002392000000000000318400005300000004E10000390000005F86000034000000208100002B0000000F8100002300000001E10000360000000D8000001700000023E100003D0000000C81000020000000068400004E00000019820000150000001781000027000000038400004B00000016820000130000004A81000047000000148100002400000000840000480000002BE100004200000000810000190000000E840000500000003084000052000000449200001000000003E10000380000001F9200000D0000002F8200001600000025E100003F0000001F8100002A0000000E8100002200000000E10000350000002D9200000F00000022E100003C0000000B8100001F00000041E1000045000000058400004D0000001882000014000000D18400000C0000001681000026000000028400004A0000004981000046000000058100001D0000001084000051000000328400005400000005E100003A000000518400005600000002E10000370000000A8400004F0000000D810000210000002C9200000E000000 0 @@ -121,7 +121,7 @@ 4294967295 - 0083FFFFB985FFFF808AFFFFDE86FFFF + 00000000D002000080070000F5030000 00000000B902000080070000DE030000 4096 0 @@ -360,7 +360,7 @@ 1 - 0000000010000000000000000010000001000000FFFFFFFFFFFFFFFFA801000032000000AC010000B5020000010000000200001004000000010000002CFFFFFF0C0600000F85000000000000000000000000000000000000010000000F850000010000000F850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000000D85000000000000000000000000000000000000010000000D850000010000000D850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000000C85000000000000000000000000000000000000010000000C850000010000000C850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000078500000000000000000000000000000000000001000000078500000100000007850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000068500000000000000000000000000000000000001000000068500000100000006850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000058500000000000000000000000000000000000001000000058500000100000005850000000000000080000001000000FFFFFFFFFFFFFFFF00000000B502000080070000B90200000100000001000010040000000100000009FEFFFF72010000FFFFFFFF0700000008850000098500000A8500000B8500000E8500000485000000850000FFFF02000B004354616262656450616E6500800000010000000083FFFFB985FFFF808AFFFFDE86FFFF00000000B902000080070000DE030000000000004080005607000000FFFEFF0C4400650063006C00610072006100740069006F006E007300000000000885000001000000FFFFFFFFFFFFFFFFFFFEFF0A5200650066006500720065006E00630065007300000000000985000001000000FFFFFFFFFFFFFFFFFFFEFF0D460069006E006400200069006E002000460069006C0065007300000000000A85000001000000FFFFFFFFFFFFFFFFFFFEFF1541006D0062006900670075006F0075007300200044006500660069006E006900740069006F006E007300000000000B85000001000000FFFFFFFFFFFFFFFFFFFEFF0B54006F006F006C0020004F0075007400700075007400000000000E85000001000000FFFFFFFFFFFFFFFFFFFEFF054200750069006C006400010000000485000001000000FFFFFFFFFFFFFFFFFFFEFF094400650062007500670020004C006F006700010000000085000001000000FFFFFFFFFFFFFFFF05000000000000000000000000000000000000000000000001000000FFFFFFFF0885000001000000FFFFFFFF08850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000038500000000000000000000000000000000000001000000038500000100000003850000000000000000000000000000 + 0000000010000000000000000010000001000000FFFFFFFFFFFFFFFFA801000032000000AC010000B5020000010000000200001004000000010000002CFFFFFF0C0600000F85000000000000000000000000000000000000010000000F850000010000000F850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000000D85000000000000000000000000000000000000010000000D850000010000000D850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000000C85000000000000000000000000000000000000010000000C850000010000000C850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000078500000000000000000000000000000000000001000000078500000100000007850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000068500000000000000000000000000000000000001000000068500000100000006850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000058500000000000000000000000000000000000001000000058500000100000005850000000000000080000001000000FFFFFFFFFFFFFFFF00000000B502000080070000B90200000100000001000010040000000100000009FEFFFF72010000FFFFFFFF0700000008850000098500000A8500000B8500000E8500000485000000850000FFFF02000B004354616262656450616E65008000000100000000000000D002000080070000F503000000000000B902000080070000DE030000000000004080005607000000FFFEFF0C4400650063006C00610072006100740069006F006E007300000000000885000001000000FFFFFFFFFFFFFFFFFFFEFF0A5200650066006500720065006E00630065007300000000000985000001000000FFFFFFFFFFFFFFFFFFFEFF0D460069006E006400200069006E002000460069006C0065007300000000000A85000001000000FFFFFFFFFFFFFFFFFFFEFF1541006D0062006900670075006F0075007300200044006500660069006E006900740069006F006E007300000000000B85000001000000FFFFFFFFFFFFFFFFFFFEFF0B54006F006F006C0020004F0075007400700075007400000000000E85000001000000FFFFFFFFFFFFFFFFFFFEFF054200750069006C006400010000000485000001000000FFFFFFFFFFFFFFFFFFFEFF094400650062007500670020004C006F006700010000000085000001000000FFFFFFFFFFFFFFFF05000000000000000000000000000000000000000000000001000000FFFFFFFF0885000001000000FFFFFFFF08850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000038500000000000000000000000000000000000001000000038500000100000003850000000000000000000000000000 CMSIS-Pack @@ -381,7 +381,7 @@ Main - 00200000010000002000FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000035000000FFFEFF000000000000000000000000000100000001000000018001E100000000000036000000FFFEFF000000000000000000000000000100000001000000018003E100000000040038000000FFFEFF0000000000000000000000000001000000010000000180008100000000000019000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018007E10000000004003B000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018023E10000000004003D000000FFFEFF000000000000000000000000000100000001000000018022E10000000000003C000000FFFEFF000000000000000000000000000100000001000000018025E10000000004003F000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001802BE100000000040042000000FFFEFF00000000000000000000000000010000000100000001802CE100000000040043000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6E4281000000000400FFFFFFFFFFFEFF0001000000000000000100000000000000010000007800000002002050FFFFFFFFFFFEFF0096000000000000000000018021810000000004002C000000FFFEFF000000000000000000000000000100000001000000018024E10000000004003E000000FFFEFF000000000000000000000000000100000001000000018028E100000000040040000000FFFEFF000000000000000000000000000100000001000000018029E100000000040041000000FFFEFF000000000000000000000000000100000001000000018002810000000004001B000000FFFEFF0000000000000000000000000001000000010000000180298100000000040030000000FFFEFF000000000000000000000000000100000001000000018027810000000004002E000000FFFEFF000000000000000000000000000100000001000000018028810000000004002F000000FFFEFF00000000000000000000000000010000000100000001801D8100000000040028000000FFFEFF00000000000000000000000000010000000100000001801E8100000000040029000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800B810000000004001F000000FFFEFF00000000000000000000000000010000000100000001800D8100000000020021000000FFFEFF00000000000000000000000000010000000100000001805F8600000000000034000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800E8100000000000022000000FFFEFF00000000000000000000000000010000000100000001800F8100000000000023000000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF044D00610069006E00E8020000 + 00200000010000002000FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000035000000FFFEFF000000000000000000000000000100000001000000018001E100000000000036000000FFFEFF000000000000000000000000000100000001000000018003E100000000040038000000FFFEFF0000000000000000000000000001000000010000000180008100000000000019000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018007E10000000004003B000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018023E10000000004003D000000FFFEFF000000000000000000000000000100000001000000018022E10000000004003C000000FFFEFF000000000000000000000000000100000001000000018025E10000000004003F000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001802BE100000000040042000000FFFEFF00000000000000000000000000010000000100000001802CE100000000040043000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6E4281000000000400FFFFFFFFFFFEFF0000000000000000000100000000000000010000007800000002002050FFFFFFFFFFFEFF0096000000000000000000018021810000000004002C000000FFFEFF000000000000000000000000000100000001000000018024E10000000004003E000000FFFEFF000000000000000000000000000100000001000000018028E100000000040040000000FFFEFF000000000000000000000000000100000001000000018029E100000000040041000000FFFEFF000000000000000000000000000100000001000000018002810000000004001B000000FFFEFF0000000000000000000000000001000000010000000180298100000000040030000000FFFEFF000000000000000000000000000100000001000000018027810000000004002E000000FFFEFF000000000000000000000000000100000001000000018028810000000004002F000000FFFEFF00000000000000000000000000010000000100000001801D8100000000040028000000FFFEFF00000000000000000000000000010000000100000001801E8100000000040029000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800B810000000004001F000000FFFEFF00000000000000000000000000010000000100000001800D8100000000020021000000FFFEFF00000000000000000000000000010000000100000001805F8600000000000034000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800E8100000000000022000000FFFEFF00000000000000000000000000010000000100000001800F8100000000000023000000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF044D00610069006E00E8020000 34050