diff --git a/CablePositioning_APP_V1.0/Core/Inc/dau.h b/CablePositioning_APP_V1.0/Core/Inc/dau.h index d73b20b..87d2ade 100644 --- a/CablePositioning_APP_V1.0/Core/Inc/dau.h +++ b/CablePositioning_APP_V1.0/Core/Inc/dau.h @@ -224,7 +224,8 @@ typedef struct uint8_t update_rt; // DAU 升级结果, 0 - 无效, 1 - 成功, 2 - 失败 uint8_t update_rt_dbg; // DAU 升级结果- debug 工具使用, 0 - 无效, 1 - 成功, 2 - 失败 uint32_t update_len; // DAU 升级文件大小 - uint8_t reserve[3]; + uint8_t reserve[2]; + uint8_t is_fault; uint8_t fault_port; // 故障触发端口 uint32_t fault_utc; // 故障触发时间 uint32_t fault_ns; // 故障触发时间纳秒 diff --git a/CablePositioning_APP_V1.0/Core/Inc/dev_config.h b/CablePositioning_APP_V1.0/Core/Inc/dev_config.h index 80f82d2..60a7996 100644 --- a/CablePositioning_APP_V1.0/Core/Inc/dev_config.h +++ b/CablePositioning_APP_V1.0/Core/Inc/dev_config.h @@ -239,7 +239,8 @@ typedef struct uint8_t ip_mask[4]; uint8_t ip_gw[4]; uint8_t server_ip[4]; - uint8_t wireless_server_ip[4]; + uint8_t power_type; + uint8_t wireless_server_ip[3]; uint16_t server_port; uint16_t wireless_server_port; /* 版本信息. 224byte */ diff --git a/CablePositioning_APP_V1.0/Core/Src/ADC_collect.c b/CablePositioning_APP_V1.0/Core/Src/ADC_collect.c index 9fbe0cc..6e0528d 100644 --- a/CablePositioning_APP_V1.0/Core/Src/ADC_collect.c +++ b/CablePositioning_APP_V1.0/Core/Src/ADC_collect.c @@ -167,15 +167,35 @@ static int32_t _ADC_collect(void) static void _ADC_energy_calculate(void) { ADC_ctrl_t *ADC = &ADC_ctrl; + uint8_t is_save = FALSE; - if (ADC->ADCi_temp < -100) + if (ADC->ADCi_temp < -150 && st_data.is_bat_charge) { - HAL_GPIO_WritePin(BAT_CHARGE_GPIO_Port, BAT_CHARGE_Pin, GPIO_PIN_SET); - HAL_GPIO_WritePin(BAT_CLK_GPIO_Port, BAT_CLK_Pin, GPIO_PIN_SET); + st_data.is_bat_charge = FALSE; + is_save = TRUE; } - else if(ADC->ADCi_temp >= -80) + else if(ADC->ADCi_temp >= -130 && !st_data.is_bat_charge) { + st_data.is_bat_charge = TRUE; + is_save = TRUE; + } + + if (st_data.is_bat_charge + && GPIO_PIN_SET == HAL_GPIO_ReadPin(BAT_CHECK_GPIO_Port, BAT_CHECK_Pin)) + { + /* 开始充电. */ HAL_GPIO_WritePin(BAT_CHARGE_GPIO_Port, BAT_CHARGE_Pin, GPIO_PIN_RESET); + HAL_GPIO_WritePin(BAT_CLK_GPIO_Port, BAT_CLK_Pin, GPIO_PIN_SET); + osDelay(10); + HAL_GPIO_WritePin(BAT_CLK_GPIO_Port, BAT_CLK_Pin, GPIO_PIN_RESET); + } + else if((!st_data.is_bat_charge) + && GPIO_PIN_RESET == HAL_GPIO_ReadPin(BAT_CHECK_GPIO_Port, BAT_CHECK_Pin)) + { + /* 停止充电. */ + HAL_GPIO_WritePin(BAT_CHARGE_GPIO_Port, BAT_CHARGE_Pin, GPIO_PIN_SET); + HAL_GPIO_WritePin(BAT_CLK_GPIO_Port, BAT_CLK_Pin, GPIO_PIN_SET); + osDelay(10); HAL_GPIO_WritePin(BAT_CLK_GPIO_Port, BAT_CLK_Pin, GPIO_PIN_RESET); } @@ -192,8 +212,13 @@ static void _ADC_energy_calculate(void) if (st_data.energy_mode != ADC->energy_mode) { st_data.energy_mode = ADC->energy_mode; + is_save = TRUE; + } + + if (is_save) + { st_write(&st_data); - flash_log_write(FLASH_LOG_TYPE_NOTIFY, "Energy is change to %s!\r\n", energy_str[st_data.energy_mode]); + flash_log_write(FLASH_LOG_TYPE_NOTIFY, "Energy %s or bat charge %d change!\r\n", energy_str[st_data.energy_mode], st_data.is_bat_charge); } } diff --git a/CablePositioning_APP_V1.0/Core/Src/RS485_debug.c b/CablePositioning_APP_V1.0/Core/Src/RS485_debug.c index 5ce8d4e..486a6c1 100644 --- a/CablePositioning_APP_V1.0/Core/Src/RS485_debug.c +++ b/CablePositioning_APP_V1.0/Core/Src/RS485_debug.c @@ -52,7 +52,7 @@ /* Private define ------------------------------------------------------------*/ #define DEBUG_FLASH_BUF_SIZE DEBUG_DATA_SIZE -#define DEBUG_DEFECT_ADJ_P 0.91 +#define DEBUG_DEFECT_ADJ_P 0.99 /* Private typedef -----------------------------------------------------------*/ /* RS485调试通讯协议器件信息. */ @@ -67,7 +67,8 @@ typedef struct uint8_t ip_mask[4]; uint8_t ip_gw[4]; uint8_t server_ip[4]; - uint8_t wireless_server_ip[4]; + uint8_t power_type; + uint8_t wireless_server_ip[3]; uint16_t server_port; uint16_t wireless_server_port; /* 版本信息. 224byte */ @@ -1794,11 +1795,11 @@ static void _debug_pkt_fault_get(void) void _debug_pkt_adj_auto2(void) { - debug_adj_power.bitmap = 0x60; + debug_adj_power.bitmap = 0x0f; debug_adj_power.elec = 5; - debug_adj_power.turns = 35; - debug_adj_power.is_voltage_adj = 0; - debug_adj_power.vin = 4610; + debug_adj_power.turns = 20; + debug_adj_power.is_voltage_adj = 1; + debug_adj_power.vin = 4810; /* 组装数据 */ _debug_adj_auto(debug_adj_power.bitmap); diff --git a/CablePositioning_APP_V1.0/Core/Src/dau.c b/CablePositioning_APP_V1.0/Core/Src/dau.c index 68c45bc..ff8d844 100644 --- a/CablePositioning_APP_V1.0/Core/Src/dau.c +++ b/CablePositioning_APP_V1.0/Core/Src/dau.c @@ -222,6 +222,10 @@ int32_t _dau_reg_read_global_state(void) } memcpy(&dau_ctrl.reg_global, p, sizeof(dau_reg_global_t)); + if ((dau_ctrl.reg_global.GFTR & DAU_GFTR_FAULT_Msk) >> DAU_GFTR_FAULT_Pos) + { + dau_ctrl.is_fault = TRUE; + } return rv; } @@ -754,11 +758,11 @@ void _dau_power_calculate(DAU_SOURCE_E source) /* 根据分段点计算有效值. */ if (ch < 4) { - power[ch] = (uint32_t)(temp * 8000 / dev_config.power_adj[ch]); + power[ch] = (uint32_t)(temp * 800000 / dev_config.power_adj[ch]); } else { - power[ch] = (uint32_t)(temp * 120000 / dev_config.power_adj[ch]); + power[ch] = (uint32_t)(temp * 12000000 / dev_config.power_adj[ch]); } vty_print(" %f %d %d\r\n", temp, dev_config.power_adj[ch], power[ch]); @@ -824,11 +828,12 @@ int32_t _dau_wave_col_trigger_by_fault(void) } /* 没有触发直接退出 */ - if (!((dau_ctrl.reg_global.GFTR & DAU_GFTR_FAULT_Msk) >> DAU_GFTR_FAULT_Pos)) + if (!dau_ctrl.is_fault) { return HAL_OK; } + dau_ctrl.is_fault = FALSE; dau_ctrl.fault_port = (dau_ctrl.reg_global.GFTR & DAU_GFTR_PORT_Msk) >> DAU_GFTR_PORT_Pos; flash_log_write(FLASH_LOG_TYPE_WARNING, "Fhault triggering port %d!\r\n", dau_ctrl.fault_port); @@ -1353,7 +1358,7 @@ static void _dau_adj_start(void *argument) } /* 触发阈值 */ - *temp = 0x1000; + *temp = 0x800; _dau_reg_write(DAU_REG_ADDR_GCFTTR, sizeof(uint16_t)); /* 开启 */ osDelay(500); @@ -1428,12 +1433,14 @@ 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)) + if (!dau_ctrl.is_fault) { return HAL_OK; } /* 采集波形 */ + dau_ctrl.is_fault = FALSE; + dau_ctrl.fault_port = (dau_ctrl.reg_global.GFTR & DAU_GFTR_PORT_Msk) >> DAU_GFTR_PORT_Pos; E_RETURN(_dau_continue_wave_col_fault()); E_RETURN(_dau_wave_col_power(DAU_SOURCE_FAULT)); _dau_power_calculate(DAU_SOURCE_FAULT); diff --git a/CablePositioning_APP_V1.0/Core/Src/wireless.c b/CablePositioning_APP_V1.0/Core/Src/wireless.c index b6ad3e2..dd9d76c 100644 --- a/CablePositioning_APP_V1.0/Core/Src/wireless.c +++ b/CablePositioning_APP_V1.0/Core/Src/wireless.c @@ -116,6 +116,12 @@ typedef struct char name[DEV_NAME_LEN]; char QCCID[WL_QCCID_LEN]; char APN[DEV_APN_LEN]; + uint16_t interval; + uint16_t threshold_power; + uint16_t threshold_defect; + uint16_t threshold_fault; + uint16_t keepalive; + uint16_t interval_fault; } wl_proto_wakeup_t; /* 实时数据传输结构体 */ @@ -435,50 +441,6 @@ static int32_t _wl_4G_pkt_check(uint8_t *cmd, uint32_t len) /* 连接报文回复 */ static void _wl_4G_recv_contect(uint8_t *cmd, uint32_t len) { - wl_proto_config_t *cfg = (wl_proto_config_t*)(cmd + sizeof(proto_head_t)); - uint8_t is_cfg_save = FALSE; - - if (cfg->interval != dev_config.collect_interval) - { - is_cfg_save = TRUE; - dev_config_collect_interval_set(cfg->interval); - } - - if (cfg->threshold_power != dev_config.power_threshold) - { - is_cfg_save = TRUE; - dev_config.power_threshold = cfg->threshold_power; - } - - if (cfg->threshold_defect != dev_config.defect_threshold) - { - is_cfg_save = TRUE; - dev_config.defect_threshold = cfg->threshold_defect; - } - - if (cfg->threshold_fault != dev_config.fault_threshold) - { - is_cfg_save = TRUE; - dev_config.fault_threshold = cfg->threshold_fault; - } - - if (cfg->keepalive != dev_config.keepalive) - { - is_cfg_save = TRUE; - dev_config.keepalive = cfg->keepalive; - } - - if (cfg->interval_fault != dev_config.fault_interval) - { - is_cfg_save = TRUE; - dev_config.fault_interval = cfg->interval_fault; - } - - if (is_cfg_save) - { - common_sys_set(COM_SYS_SAVE_CONFIG, 0); - } - wl_ctrl.state = WL_STATE_END; wl_ctrl.time_send = 0; wl_ctrl.send_cnt = 0; @@ -1202,6 +1164,12 @@ static void _wl_4G_send_contact(void) memcpy(data->name, dev_config.host, DEV_NAME_LEN); memcpy(data->QCCID, wl_ctrl.QCCID, WL_QCCID_LEN); memcpy(data->APN, dev_config.APN, DEV_APN_LEN); + data->interval = dev_config.collect_interval; + data->threshold_power = dev_config.power_threshold; + data->threshold_defect = dev_config.defect_threshold; + data->threshold_fault = dev_config.fault_threshold; + data->keepalive = dev_config.keepalive; + data->interval_fault = dev_config.fault_interval; /* 计算校验和. */ crc = (uint32_t*)(wl_ctrl.dma_tx_buf + head->len); @@ -1440,8 +1408,8 @@ static void _wl_4G_send_realdata(void) data->elec_defect_max[i] = dau_ctrl.reg_defect_max[i]; } - data->valid_power = IS_MONITOR_BIT_SET(dau_ctrl.col_flag, DAU_COL_FLAG_REG_POWER); - data->valid_defect = IS_MONITOR_BIT_SET(dau_ctrl.col_flag, DAU_COL_FLAG_REG_DEFECT); + data->valid_power = IS_MONITOR_BIT_SET(dau_ctrl.col_flag, DAU_COL_FLAG_REG_POWER) ? 1 : 0; + data->valid_defect = IS_MONITOR_BIT_SET(dau_ctrl.col_flag, DAU_COL_FLAG_REG_DEFECT) ? 1 : 0; data->GB_cnt = dau_ctrl.GB_cnt; /* 计算校验和. */ @@ -2059,10 +2027,10 @@ static void _wl_4G_hw_restart(void) HAL_UART_Abort(wl_ctrl.uart); HAL_UART_DeInit(wl_ctrl.uart); - //if (wl_ctrl.err_cnt > 3) - //{ - // _wl_4G_hw_close(dev_config.collect_interval * 60); - //} + if (wl_ctrl.err_cnt > 3) + { + _wl_4G_hw_close(dev_config.collect_interval * 60); + } /* 初始化软硬件 */ osDelay(10000); 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 3a0078f..88ee4f5 100644 --- a/CablePositioning_APP_V1.0/EWARM/CableMonitor_APP_V3.2.dep +++ b/CablePositioning_APP_V1.0/EWARM/CableMonitor_APP_V3.2.dep @@ -5,1992 +5,1967 @@ CableMonitor_APP_V3.2 - $PROJ_DIR$\..\Core\Src\wireless.c - $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_cortex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c + $PROJ_DIR$\..\Core\Src\stm32l4xx_it.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_gpio.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc.c + $PROJ_DIR$\..\Core\Src\stm32l4xx_hal_msp.c + $PROJ_DIR$\..\Core\Src\system_stm32l4xx.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\croutine.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart_ex.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc_ex.c - $PROJ_DIR$\..\Core\Src\RS485_debug.c - $PROJ_DIR$\..\Core\Src\rtc.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\list.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_exti.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ramfunc.c $PROJ_DIR$\..\Core\Src\usart.c - $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim_ex.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_rcc.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ramfunc.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c_ex.c - $PROJ_DIR$\..\Core\Src\dev_config.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c.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_adc.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Core\Src\RS485_debug.c + $PROJ_DIR$\..\Core\Src\cli.c $PROJ_DIR$\..\Core\Src\freertos.c $PROJ_DIR$\..\Core\Src\FreeRTOS_CLI.c - $PROJ_DIR$\..\Core\Src\gpio.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_gpio.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$\..\Core\Src\dev_config.c + $PROJ_DIR$\..\Core\Src\adc.c + $PROJ_DIR$\..\Core\Src\ADC_collect.c + $PROJ_DIR$\..\Core\Src\dma.c $PROJ_DIR$\..\Core\Src\dau.c - $PROJ_DIR$\..\Core\Src\stm32l4xx_it.c - $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Core\Src\rtc.c + $PROJ_DIR$\..\Core\Src\gpio.c $PROJ_DIR$\..\Core\Src\spi.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ex.c - $PROJ_DIR$\..\Core\Src\system_stm32l4xx.c + $PROJ_DIR$\..\Core\Src\wireless.c + $PROJ_DIR$\startup_stm32l496xx.s $PROJ_DIR$\..\Core\Src\flash_if.c - $PROJ_DIR$\..\Core\Src\ADC_collect.c $PROJ_DIR$\..\Core\Src\common.c - $PROJ_DIR$\startup_stm32l496xx.s - $PROJ_DIR$\..\Core\Src\cli.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h + $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\ADC_collect.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc_ex.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc_ex.pbi + $TOOLKIT_DIR$\lib\shb_l.a + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\system_stm32l4xx.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dev_config.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\usart.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\spi.pbi $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\projdefs.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc_ex.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_msp.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_if.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_it.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi_ex.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_gpio.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_log.o $PROJ_DIR$\..\Core\Src\RS485_sensor.c - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\position.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dev_config.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h + $PROJ_DIR$\..\Core\Inc\gpio.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_gpio.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\main.pbi $TOOLKIT_DIR$\inc\c\stdint.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cmsis_os2.__cstat.et - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\deprecated_definitions.h - $PROJ_DIR$\..\Core\Inc\dau.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\heap_4.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\common.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\rtc.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_exti.o - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\ADC_collect.pbi - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\event_groups.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\adc.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ex.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi_ex.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr_ex.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cli.__cstat.et - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cli.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart_ex.__cstat.et - $TOOLKIT_DIR$\inc\c\string.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c_ex.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rtc_ex.h - $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\portasm.o - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h - $PROJ_DIR$\..\Core\Src\position.c - $TOOLKIT_DIR$\lib\dl7M_tlf.a - $PROJ_DIR$\..\Core\Inc\usart.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\port.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\adc.__cstat.et - $PROJ_DIR$\..\Core\Inc\RS485_debug.h - $PROJ_DIR$\..\Core\Inc\dma.h $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tim.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cmsis_os2.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_gpio.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_exti.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tim.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\gpio.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\main.o - $TOOLKIT_DIR$\inc\c\stdio.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_cortex.__cstat.et - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_gpio.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h - $PROJ_DIR$\..\Core\Inc\FreeRTOS_CLI.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\event_groups.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Exe\CableMonitor_APP_V3.2.out - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\croutine.__cstat.et - $TOOLKIT_DIR$\inc\c\yvals.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc.__cstat.et - $PROJ_DIR$\..\Core\Inc\gpio.h - $PROJ_DIR$\..\Core\Inc\rtc.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\adc.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\list.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\FreeRTOS_CLI.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc_ex.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tasks.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_it.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\port.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim_ex.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\FreeRTOS_CLI.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_msp.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma_ex.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h + $PROJ_DIR$\..\Core\Inc\FreeRTOS_CLI.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 + $TOOLKIT_DIR$\inc\c\stdio.h $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma_ex.pbi - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\portable.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cmsis_os2.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cmsis_os2.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\port.__cstat.et + $TOOLKIT_DIR$\inc\c\yvals.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_cortex.__cstat.et $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\spi.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dma.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma.__cstat.et - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h + $PROJ_DIR$\..\Core\Inc\flash_if.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\gpio.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c_ex.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_log.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tasks.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tim.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_exti.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\list.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr_ex.__cstat.et $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_it.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\ADC_collect.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\spi.pbi - $TOOLKIT_DIR$\lib\shb_l.a - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\list.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_it.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\system_stm32l4xx.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc.o - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\queue.o - $PROJ_DIR$\..\Core\Inc\flash_if.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash.pbi + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\FreeRTOS_CLI.pbi + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\portable.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\list.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cmsis_os2.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\port.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc_ex.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr_ex.__cstat.et - $TOOLKIT_DIR$\lib\rt7M_tl.a + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma_ex.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\main.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stream_buffer.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\wireless.o - $PROJ_DIR$\..\Core\Inc\flash_log.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma_ex.__cstat.et - $PROJ_DIR$\..\Core\Inc\stm32l4xx_it.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rtc.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dma.o - $TOOLKIT_DIR$\inc\c\DLib_Product_string.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tasks.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_it.pbi + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Exe\CableMonitor_APP_V3.2.out + $TOOLKIT_DIR$\lib\rt7M_tl.a + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_gpio.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\FreeRTOS_CLI.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_log.pbi $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_exti.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\queue.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\tasks.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portasm.s - $PROJ_DIR$\..\Core\Inc\adc.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr_ex.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim_ex.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\croutine.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart_ex.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\list.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\timers.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\port.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_cortex.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc_ex.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart.c - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_cortex.o - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_if.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\event_groups.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\position.__cstat.et + $TOOLKIT_DIR$\lib\dl7M_tlf.a + $PROJ_DIR$\..\Core\Inc\dau.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr_ex.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\usart.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h + $PROJ_DIR$\..\Core\Inc\flash_log.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\portasm.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\recording_wave.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc.pbi + $PROJ_DIR$\..\Core\Inc\RS485_debug.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\ADC_collect.o - $PROJ_DIR$\stm32l496xx_flash.icf + $PROJ_DIR$\..\Core\Src\position.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dma.pbi + $PROJ_DIR$\..\Core\Inc\dma.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash.__cstat.et + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cli.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h + $TOOLKIT_DIR$\inc\c\iccarm_builtin.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\usart.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stream_buffer.pbi $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\main.__cstat.et - $PROJ_DIR$\..\Core\Inc\dev_config.h + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc_ex.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rtc_ex.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\event_groups.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart_ex.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_if.pbi + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dev_config.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\croutine.o + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\deprecated_definitions.h + $TOOLKIT_DIR$\inc\c\time32.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi_ex.o + $TOOLKIT_DIR$\inc\c\iar_intrinsics_common.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_cortex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\common.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_if.__cstat.et $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\timers.__cstat.et - $TOOLKIT_DIR$\inc\c\iccarm_builtin.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stream_buffer.__cstat.et $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\stack_macros.h + $PROJ_DIR$\..\Core\Inc\dev_config.h + $PROJ_DIR$\..\Core\Inc\stm32l4xx_it.h + $PROJ_DIR$\..\Core\Src\recording_wave.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi_ex.__cstat.et + $TOOLKIT_DIR$\inc\c\stddef.h $TOOLKIT_DIR$\lib\m7M_tls.a - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dma.pbi + $PROJ_DIR$\stm32l496xx_flash.icf + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_log.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\croutine.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_debug.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stream_buffer.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tasks.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\ADC_collect.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\common.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_msp.o $PROJ_DIR$\..\Core\Inc\common.h $PROJ_DIR$\..\Core\Inc\wireless.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr_ex.o - $TOOLKIT_DIR$\inc\c\stdlib.h - $PROJ_DIR$\..\Core\Src\recording_wave.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc_ex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\croutine.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\system_stm32l4xx.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\heap_4.__cstat.et $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_msp.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr_ex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal.pbi $PROJ_DIR$\..\Core\Inc\stm32l4xx_hal_conf.h - $TOOLKIT_DIR$\inc\c\stddef.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\common.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\main.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc.__cstat.et $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\croutine.pbi - $TOOLKIT_DIR$\inc\c\time32.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\heap_4.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\position.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\usart.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\system_stm32l4xx.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\recording_wave.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dev_config.o + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\queue.o + $PROJ_DIR$\..\Core\Inc\rtc.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tim.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_msp.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\event_groups.__cstat.et $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\wireless.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc_ex.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h + $TOOLKIT_DIR$\inc\c\stdlib.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\list.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\position.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\recording_wave.__cstat.et + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portasm.s + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\timers.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\rtc.o + $PROJ_DIR$\..\Core\Inc\usart.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash.o + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\tasks.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cli.pbi + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma_ex.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma_ex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\heap_4.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dma.o + $TOOLKIT_DIR$\inc\c\string.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\port.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\adc.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_exti.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dma.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi.__cstat.et + $PROJ_DIR$\..\Core\Inc\adc.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\ADC_collect.pbi + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\event_groups.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\wireless.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rtc.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\queue.c + $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c_ex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\FreeRTOS_CLI.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_exti.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\heap_4.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\freertos.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\port.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h + $PROJ_DIR$\..\Core\Inc\tim.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_cortex.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_debug.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim_ex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dau.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\event_groups.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\position.pbi + $TOOLKIT_DIR$\inc\c\DLib_float_setup.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ex.pbi + $TOOLKIT_DIR$\inc\c\math.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\gpio.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\freertos_mpool.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\common.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_if.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\gpio.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\timers.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\freertos.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart_ex.o + $PROJ_DIR$\..\Core\Inc\spi.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_debug.pbi + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi_ex.pbi + $PROJ_DIR$\..\Core\Inc\FreeRTOSConfig.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\recording_wave.pbi $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\rtc.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc_ex.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dev_config.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim.__cstat.et $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dau.o - $PROJ_DIR$\..\Core\Inc\FreeRTOSConfig.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stream_buffer.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_if.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$\..\Core\Inc\cli.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc_ex.pbi $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\stream_buffer.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\rtc.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim_ex.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\croutine.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_msp.pbi $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_log.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\rtc.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc_ex.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim_ex.pbi + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\rtc.pbi $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c_ex.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi_ex.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_debug.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc_ex.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_gpio.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\adc.pbi + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h $TOOLKIT_DIR$\inc\c\time.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c.o - $TOOLKIT_DIR$\inc\c\iar_intrinsics_common.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_debug.o - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\adc.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tim.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dev_config.__cstat.et - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\freertos_mpool.h - $PROJ_DIR$\..\Core\Inc\ADC_collect.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\wireless.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart_ex.o - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\freertos_os2.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tasks.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\spi.__cstat.et - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\croutine.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\position.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\List\CableMonitor_APP_V3.2.map - $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc_ex.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\freertos.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\queue.__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$\..\Middlewares\Third_Party\FreeRTOS\Source\include\semphr.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\system_stm32l4xx.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\CableMonitor_APP_V3.2.pbd + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart_ex.pbi + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\stream_buffer.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portmacro.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc_ex.o $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h - $PROJ_DIR$\..\Core\Inc\main.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Exe\CableMonitor_APP_V3.2.bin - $PROJ_DIR$\..\Core\Inc\RS485_sensor.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\startup_stm32l496xx.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc.__cstat.et + $PROJ_DIR$\..\Core\Inc\recording_wave.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\usart.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\system_stm32l4xx.pbi + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\croutine.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h $TOOLKIT_DIR$\inc\c\ysizet.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h + $PROJ_DIR$\CableMonitor_APP_V3.2\List\CableMonitor_APP_V3.2.map + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\freertos_os2.h $TOOLKIT_DIR$\inc\c\ycheck.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Exe\CableMonitor_APP_V3.2.bin + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_sensor.pbi + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h $TOOLKIT_DIR$\inc\c\intrinsics.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\timers.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc_ex.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\CableMonitor_APP_V3.2.pbd $PROJ_DIR$\..\Core\Inc\position.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\port.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc_ex.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dau.pbi - $PROJ_DIR$\..\Core\Inc\cli.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal.o - $PROJ_DIR$\..\Core\Inc\spi.h - $TOOLKIT_DIR$\inc\c\DLib_float_setup.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h + $PROJ_DIR$\..\Core\Inc\ADC_collect.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tasks.o $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\timers.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dau.__cstat.et - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\common.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_cortex.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\startup_stm32l496xx.o + $TOOLKIT_DIR$\inc\c\DLib_Product.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tim.o + $PROJ_DIR$\..\Core\Inc\RS485_sensor.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\semphr.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_sensor.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dau.__cstat.et + $PROJ_DIR$\..\Core\Inc\main.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\queue.pbi - $TOOLKIT_DIR$\inc\c\math.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\recording_wave.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\usart.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\freertos.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc_ex.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\queue.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\spi.__cstat.et $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cli.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\event_groups.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\gpio.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc_ex.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\freertos.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc.o - $TOOLKIT_DIR$\inc\c\DLib_Product.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart.__cstat.et - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portmacro.h - $PROJ_DIR$\..\Core\Inc\recording_wave.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\heap_4.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_exti.__cstat.et - $PROJ_DIR$\..\Core\Inc\tim.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_debug.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ex.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\FreeRTOS_CLI.__cstat.et - $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim_ex.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\gpio.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h - $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\freertos.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\wireless.__cstat.et + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h [ROOT_NODE] ILINK - 104 279 + 108 312 - $PROJ_DIR$\..\Core\Src\wireless.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_cortex.c ICCARM - 150 + 155 __cstat - 270 + 86 BICOMP - 234 + 247 ICCARM - 97 298 106 87 77 335 296 74 157 259 224 82 291 297 215 246 95 244 264 280 52 300 140 99 201 290 312 42 216 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 171 341 109 207 71 128 239 38 123 54 337 299 261 62 315 350 284 208 199 151 269 142 85 55 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 154 95 243 208 296 333 42 300 52 222 349 121 297 171 85 298 106 205 59 37 312 259 216 109 269 55 157 215 246 181 60 317 155 288 264 101 112 76 326 71 315 123 261 291 128 74 82 341 207 199 142 151 87 77 335 224 217 244 280 140 99 319 239 54 299 350 97 290 201 51 36 284 38 337 62 + 195 328 253 211 333 107 323 225 204 174 146 235 272 314 85 78 82 193 147 88 271 182 297 136 120 330 291 70 237 65 311 338 77 287 167 348 310 304 137 165 142 266 80 285 - $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc_ex.c ICCARM - 266 + 186 __cstat - 89 + 343 BICOMP - 93 + 54 ICCARM - 341 291 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 207 71 128 239 38 123 54 337 299 261 62 315 350 284 199 151 269 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 87 52 333 298 95 121 42 349 154 243 300 77 296 299 350 205 59 37 312 106 151 71 199 297 215 246 181 60 317 155 288 264 140 335 99 101 112 222 76 326 239 54 216 207 269 291 217 244 280 290 201 319 315 123 261 128 341 51 36 284 38 337 62 + 78 146 85 107 174 235 272 314 82 338 211 323 328 225 333 204 195 193 147 88 271 182 297 136 120 330 291 70 237 65 311 77 287 167 348 310 304 137 253 142 266 80 165 285 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c ICCARM - 331 + 153 __cstat - 281 + 166 BICOMP - 257 + 273 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 42 333 298 87 52 95 154 243 300 77 296 319 215 205 59 37 312 106 246 181 60 317 155 288 264 140 335 99 101 112 222 217 244 216 297 280 290 201 349 76 326 121 51 36 + 195 328 253 211 333 107 323 225 204 174 146 235 272 314 85 78 82 193 147 88 271 182 297 136 120 330 291 70 237 65 311 338 77 287 167 348 310 304 137 165 142 266 80 285 - $PROJ_DIR$\..\Core\Src\RS485_debug.c + $PROJ_DIR$\..\Core\Src\stm32l4xx_it.c ICCARM - 263 + 97 __cstat - 256 + 72 BICOMP - 342 + 106 ICCARM - 97 298 106 87 77 335 296 74 157 322 311 82 291 297 215 246 95 244 264 280 52 300 140 99 201 290 312 42 216 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 109 259 224 207 71 128 239 38 123 54 337 299 261 62 315 350 284 199 151 85 269 208 142 55 + 341 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 163 196 274 60 101 151 302 319 154 132 350 318 BICOMP - 157 60 269 297 246 155 264 99 106 109 55 298 311 215 181 317 288 140 95 319 216 52 128 322 199 142 296 154 205 333 59 243 37 42 312 259 71 315 123 261 291 74 82 207 85 208 151 87 77 335 217 244 280 300 101 112 222 349 76 326 121 239 54 299 350 97 290 201 51 36 224 284 38 337 62 + 167 85 338 107 77 65 304 137 314 132 196 287 348 310 60 302 163 350 193 174 147 211 88 146 271 323 182 235 297 328 136 120 272 330 291 225 70 237 333 204 311 78 82 195 253 142 266 80 341 165 285 274 101 151 319 154 318 - $PROJ_DIR$\..\Core\Src\rtc.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c.c ICCARM - 58 + 280 __cstat - 252 + 93 BICOMP - 248 + 127 ICCARM - 109 291 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 259 224 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 60 106 101 246 155 264 298 112 95 181 317 288 140 335 99 222 349 224 291 215 154 205 333 59 243 37 42 312 300 87 77 52 296 319 259 297 217 244 216 280 290 201 51 36 109 76 326 121 + 167 107 85 77 65 304 137 314 165 287 348 310 193 174 147 211 88 146 271 323 182 235 297 328 136 120 272 330 291 225 70 237 333 204 311 78 82 195 338 253 142 266 80 285 - $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c_ex.c ICCARM - 196 + 239 __cstat - 324 + 294 BICOMP - 229 + 91 ICCARM - 82 291 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 74 157 207 71 128 239 38 123 54 337 299 261 62 315 350 284 199 151 208 85 308 269 55 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 + + + BICOMP + 167 107 85 77 65 304 137 314 165 287 348 310 193 174 147 211 88 146 271 323 182 235 297 328 136 120 272 330 291 225 70 237 333 204 311 78 82 195 338 253 142 266 80 285 - $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma.c ICCARM - 156 + 138 __cstat - 126 + 200 BICOMP - 206 + 276 ICCARM - 86 291 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 95 244 297 52 106 291 280 217 216 290 201 298 51 215 246 154 181 205 60 333 317 59 155 243 288 37 42 264 312 300 140 87 77 335 99 296 101 112 222 319 349 76 326 121 86 36 + 193 182 330 107 338 88 136 85 147 271 297 120 291 314 70 237 65 311 174 211 146 323 235 328 272 225 333 204 78 82 195 77 287 167 348 310 304 137 165 253 142 266 80 285 - $PROJ_DIR$\..\Core\Src\flash_log.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c ICCARM - 47 + 214 __cstat - 251 + 133 BICOMP - 130 + 98 ICCARM - 97 298 106 87 77 335 296 74 157 71 128 216 52 239 38 123 54 337 299 201 261 62 315 350 284 109 291 297 215 246 95 244 264 280 300 140 99 290 312 42 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 259 224 207 199 151 142 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 + + + BICOMP + 137 107 77 65 304 165 314 167 85 287 348 310 193 174 147 211 88 146 271 323 182 235 297 328 136 120 272 330 291 225 70 237 333 204 311 78 82 195 338 253 142 266 80 285 - $PROJ_DIR$\..\Core\Src\stm32l4xx_hal_msp.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_gpio.c ICCARM - 118 + 63 __cstat - 214 + 295 BICOMP - 40 + 110 ICCARM - 291 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 106 216 95 297 217 52 290 201 298 51 244 280 215 246 154 181 205 60 333 317 59 155 243 288 37 42 264 312 300 140 87 77 335 99 296 101 112 222 319 349 76 326 121 291 36 + 314 107 77 65 304 137 165 167 85 287 348 310 193 174 147 211 88 146 271 323 182 235 297 328 136 120 272 330 291 225 70 237 333 204 311 78 82 195 338 253 142 266 80 285 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma_ex.c ICCARM - 344 + 219 __cstat - 161 + 218 BICOMP - 220 + 103 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 335 181 288 222 95 317 140 99 319 246 60 155 264 298 106 101 112 215 154 205 333 59 243 37 42 312 300 87 77 52 296 217 244 216 297 280 290 201 349 76 326 121 51 36 + 167 107 85 77 65 304 137 314 165 287 348 310 193 174 147 211 88 146 271 323 182 235 297 328 136 120 272 330 291 225 70 237 333 204 311 78 82 195 338 253 142 266 80 285 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc.c ICCARM - 190 + 315 __cstat - 67 + 114 BICOMP - 226 + 125 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 37 106 205 95 215 59 312 319 154 333 243 42 300 298 87 77 52 296 246 181 60 317 155 288 264 140 335 99 101 112 222 349 217 244 216 297 280 290 201 51 76 326 121 36 + 333 211 328 195 107 323 225 204 338 174 146 235 272 314 85 78 82 193 147 88 271 182 297 136 120 330 291 70 237 65 311 77 287 167 348 310 304 137 253 142 266 80 165 285 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ex.c ICCARM - 75 + 157 __cstat - 254 + 69 BICOMP - 129 + 257 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 216 95 106 217 52 290 201 298 51 244 297 280 215 246 154 181 205 60 333 317 59 155 243 288 37 42 264 312 300 140 87 77 335 99 296 101 112 222 319 349 76 326 121 36 + 85 146 78 107 174 235 272 314 82 338 211 323 328 225 333 204 195 193 147 88 271 182 297 136 120 330 291 70 237 65 311 77 287 167 348 310 304 137 253 142 266 80 165 285 - $PROJ_DIR$\..\Core\Src\dev_config.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c ICCARM - 233 + 252 __cstat - 267 + 170 BICOMP - 50 + 111 ICCARM - 74 298 106 87 77 335 296 157 97 291 297 215 246 95 244 264 280 52 300 140 99 201 290 312 42 216 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 71 128 239 38 123 54 337 299 261 62 315 350 284 207 199 151 142 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 + + + BICOMP + 107 137 77 65 304 165 314 167 85 287 348 310 193 174 147 211 88 146 271 323 182 235 297 328 136 120 272 330 291 225 70 237 333 204 311 78 82 195 338 253 142 266 80 285 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc.c ICCARM - 260 + 74 __cstat - 117 + 194 BICOMP - 192 + 123 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 216 95 106 217 52 290 201 298 51 244 297 280 215 246 154 181 205 60 333 317 59 155 243 288 37 42 264 312 300 140 87 77 335 99 296 101 112 222 319 349 76 326 121 36 + 323 225 204 107 211 328 333 195 338 174 146 235 272 314 85 78 82 193 147 88 271 182 297 136 120 330 291 70 237 65 311 77 287 167 348 310 304 137 253 142 266 80 165 285 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal.c + $PROJ_DIR$\..\Core\Src\stm32l4xx_hal_msp.c ICCARM - 309 + 183 __cstat - 172 + 201 BICOMP - 66 + 288 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 341 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 106 216 95 217 52 290 201 298 51 244 297 280 215 246 154 181 205 60 333 317 59 155 243 288 37 42 264 312 300 140 87 77 335 99 296 101 112 222 319 349 76 326 121 36 + 107 167 85 348 77 65 304 137 314 165 287 310 193 174 147 211 88 146 271 323 182 235 297 328 136 120 272 330 291 225 70 237 333 204 311 78 82 195 338 253 142 266 80 341 285 - $PROJ_DIR$\..\Core\Src\adc.c + $PROJ_DIR$\..\Core\Src\system_stm32l4xx.c ICCARM - 110 + 56 __cstat - 84 + 188 BICOMP - 265 + 308 ICCARM - 171 291 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 207 71 128 239 38 123 54 337 299 261 62 315 350 284 269 + 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 348 193 174 107 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 + + + BICOMP + 78 147 348 65 297 85 107 271 120 314 82 310 193 88 182 136 195 253 304 137 174 211 146 323 235 328 311 338 272 330 291 225 70 237 333 204 77 287 167 165 142 266 80 285 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart.c ICCARM - 334 + 66 __cstat - 295 + 292 BICOMP - 276 + 149 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 243 296 154 300 77 95 333 42 298 87 52 319 215 205 59 37 312 106 246 181 60 317 155 288 264 140 335 99 101 112 222 217 244 216 297 280 290 201 349 76 326 121 51 36 + 314 107 77 65 304 137 338 167 85 287 348 310 193 174 147 211 88 146 271 323 182 235 297 328 136 120 272 330 291 225 70 237 333 204 311 78 82 195 253 142 266 80 165 285 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\croutine.c ICCARM - 146 + 150 __cstat - 306 + 187 BICOMP - 114 + 175 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 196 167 314 85 70 237 333 311 65 274 60 101 151 302 319 137 154 132 350 318 309 BICOMP - 101 60 106 95 246 155 264 298 112 319 181 317 288 140 335 99 222 215 154 205 333 59 243 37 42 312 300 87 77 52 296 217 244 216 297 280 290 201 349 76 326 121 51 36 + 151 314 65 333 137 60 311 319 350 167 274 101 85 237 196 309 70 302 132 154 318 - $PROJ_DIR$\..\Core\Src\freertos.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart_ex.c ICCARM - 332 + 268 __cstat - 282 + 144 BICOMP - 325 + 300 ICCARM - 128 216 298 106 87 77 335 296 52 239 38 123 54 337 299 201 261 62 315 350 291 297 215 246 95 244 264 280 300 140 99 290 312 42 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 71 284 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 60 95 297 298 106 261 246 155 264 319 52 38 87 77 215 181 317 288 140 291 296 335 54 299 350 154 205 333 59 243 37 42 312 300 244 315 71 216 239 123 337 62 201 217 280 290 99 101 112 222 349 76 326 121 128 51 36 284 + 235 314 174 272 82 107 146 85 78 211 323 328 225 333 204 195 193 147 88 271 182 297 136 120 330 291 70 237 65 311 338 77 287 167 348 310 304 137 165 253 142 266 80 285 - $PROJ_DIR$\..\Core\Src\FreeRTOS_CLI.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c ICCARM - 113 + 251 __cstat - 345 + 202 BICOMP - 116 + 233 ICCARM - 74 298 106 87 77 335 296 157 52 128 216 239 38 123 54 337 299 201 261 62 315 350 102 207 71 284 + 205 314 85 70 237 333 311 260 196 167 65 274 60 101 151 302 319 137 154 132 350 318 190 143 + + + BICOMP + 132 314 311 190 60 85 302 154 318 196 70 65 350 143 260 237 333 167 274 101 151 319 137 205 - $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc_ex.c ICCARM - 94 + 303 __cstat - 329 + 322 BICOMP - 348 + 278 ICCARM - 108 291 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 95 291 280 244 319 297 52 106 217 216 290 201 298 215 246 154 181 205 60 333 317 59 155 243 288 37 42 264 312 300 140 87 77 335 99 296 101 112 222 349 76 326 121 108 51 36 + 120 271 314 70 65 107 147 297 291 237 311 338 193 88 182 136 330 85 174 211 146 323 235 328 272 225 333 204 78 82 195 77 287 167 348 310 304 137 253 142 266 80 165 285 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc_ex.c ICCARM - 160 + 141 __cstat - 202 + 53 BICOMP - 232 + 286 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 201 95 217 52 290 51 298 216 106 244 297 280 215 246 154 181 205 60 333 317 59 155 243 288 37 42 264 312 300 140 87 77 335 99 296 101 112 222 319 349 76 326 121 36 + 323 225 204 107 211 328 333 195 338 174 146 235 272 314 85 78 82 193 147 88 271 182 297 136 120 330 291 70 237 65 311 77 287 167 348 310 304 137 253 142 266 80 165 285 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_gpio.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc.c ICCARM - 91 + 284 __cstat - 45 + 305 BICOMP - 100 + 339 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 298 95 217 52 290 201 51 216 106 244 297 280 215 246 154 181 205 60 333 317 59 155 243 288 37 42 264 312 300 140 87 77 335 99 296 101 112 222 319 349 76 326 121 36 + 297 311 147 291 237 107 271 120 314 70 65 338 193 88 182 136 330 85 174 211 146 323 235 328 272 225 333 204 78 82 195 77 287 167 348 310 304 137 253 142 266 80 165 285 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c ICCARM - 195 + 320 __cstat - 127 + 281 BICOMP - 237 + 299 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 215 59 312 95 319 205 37 106 154 333 243 42 300 298 87 77 52 296 246 181 60 317 155 288 264 140 335 99 101 112 222 217 244 216 297 280 290 201 51 349 76 326 121 36 + 107 310 287 348 65 85 142 266 77 167 304 137 314 253 80 193 174 147 211 88 146 271 323 182 235 297 328 136 120 272 330 291 225 70 237 333 204 311 78 82 195 338 165 285 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma_ex.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\list.c ICCARM - 119 + 206 __cstat - 152 + 95 BICOMP - 122 + 102 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 205 314 85 70 237 333 311 260 196 167 65 274 60 101 151 302 319 137 154 132 318 BICOMP - 216 95 106 217 52 290 201 298 51 244 297 280 215 246 154 181 205 60 333 317 59 155 243 288 37 42 264 312 300 140 87 77 335 99 296 101 112 222 319 349 76 326 121 36 + 314 101 318 311 70 333 167 65 196 85 260 237 274 151 319 137 205 60 302 132 154 - $PROJ_DIR$\..\Core\Src\dau.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal.c ICCARM - 238 + 256 __cstat - 314 + 232 BICOMP - 307 + 192 ICCARM - 97 298 106 87 77 335 296 211 346 74 157 259 224 322 311 310 291 297 215 246 95 244 264 280 52 300 140 99 201 290 312 42 216 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 82 207 71 128 239 38 123 54 337 299 261 62 315 350 284 199 151 142 269 55 208 85 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 311 296 216 106 95 315 199 157 244 322 55 335 298 217 52 74 82 151 85 87 77 346 297 280 291 71 123 261 128 211 259 310 207 142 269 208 224 215 246 154 181 205 60 333 317 59 155 243 288 37 42 264 312 290 201 51 36 239 54 299 350 97 300 140 99 101 112 222 319 349 76 326 121 284 38 337 62 + 85 167 107 77 65 304 137 314 165 287 348 310 193 174 147 211 88 146 271 323 182 235 297 328 136 120 272 330 291 225 70 237 333 204 311 78 82 195 338 253 142 266 80 285 - $PROJ_DIR$\..\Core\Src\stm32l4xx_it.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_exti.c ICCARM - 132 + 226 __cstat - 43 + 241 BICOMP - 137 + 94 ICCARM - 291 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 153 128 239 38 123 54 337 299 261 62 315 350 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 38 298 297 217 52 290 201 95 216 106 36 128 244 280 51 153 315 215 246 154 181 205 60 333 317 59 155 243 288 37 42 264 312 300 140 87 77 335 99 296 101 112 222 54 299 291 319 349 76 326 121 239 123 337 62 261 350 + 107 348 65 85 287 310 77 167 304 137 314 165 193 174 147 211 88 146 271 323 182 235 297 328 136 120 272 330 291 225 70 237 333 204 311 78 82 195 338 253 142 266 80 285 - $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi.c ICCARM - 96 + 321 __cstat - 198 + 228 BICOMP - 219 + 172 ICCARM - 291 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 71 128 239 38 123 54 337 299 261 62 315 350 284 171 86 109 259 224 310 341 82 108 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 52 297 349 106 95 121 108 244 224 109 280 62 259 171 341 217 216 290 201 298 76 326 38 337 296 71 86 310 82 215 246 154 181 205 60 333 317 59 155 243 288 37 42 264 312 300 140 87 77 335 99 101 112 222 319 315 291 51 36 128 284 239 123 54 299 261 350 + 328 193 195 211 333 323 225 204 174 146 235 272 314 85 78 82 142 266 147 88 271 182 297 136 120 330 291 70 237 65 311 107 253 80 77 287 167 348 310 304 137 338 165 285 - $PROJ_DIR$\..\Core\Src\spi.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ramfunc.c ICCARM - 124 + 171 __cstat - 274 + 179 BICOMP - 134 + 129 ICCARM - 310 291 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 207 71 128 239 38 123 54 337 299 261 62 315 350 284 55 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 + + + BICOMP + 136 85 88 107 193 182 330 338 147 271 297 120 291 314 70 237 65 311 174 211 146 323 235 328 272 225 333 204 78 82 195 253 77 287 167 348 310 304 137 165 142 266 80 285 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ex.c + $PROJ_DIR$\..\Core\Src\usart.c ICCARM - 258 + 119 __cstat - 65 + 307 BICOMP - 343 + 58 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 - - - BICOMP - 106 60 101 95 246 155 264 298 112 319 181 317 288 140 335 99 222 215 154 205 333 59 243 37 42 312 300 87 77 52 296 217 244 216 297 280 290 201 349 76 326 121 51 36 + 213 341 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 222 140 184 134 196 274 60 101 151 302 319 154 132 350 318 326 162 121 185 126 283 327 117 - $PROJ_DIR$\..\Core\Src\system_stm32l4xx.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr_ex.c ICCARM - 230 + 191 __cstat - 138 + 96 BICOMP - 287 + 118 ICCARM - 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 297 215 246 95 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 101 154 297 52 243 106 95 333 42 298 112 280 215 205 59 37 222 349 290 201 246 181 60 317 155 288 296 319 264 312 300 140 87 77 335 99 217 244 216 51 76 326 121 36 + 107 167 85 338 77 65 304 137 314 287 348 310 193 174 147 211 88 146 271 323 182 235 297 328 136 120 272 330 291 225 70 237 333 204 311 78 82 195 253 142 266 80 165 285 - $PROJ_DIR$\..\Core\Src\flash_if.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim_ex.c ICCARM - 241 + 249 __cstat - 189 + 75 BICOMP - 41 + 290 ICCARM - 71 128 216 298 106 87 77 335 296 52 239 38 123 54 337 299 201 261 62 315 350 284 310 291 297 215 246 95 244 264 280 300 140 99 290 312 42 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 207 142 + 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 + + + BICOMP + 174 272 82 235 314 107 146 85 78 338 211 323 328 225 333 204 195 193 147 88 271 182 297 136 120 330 291 70 237 65 311 77 287 167 348 310 304 137 253 142 266 80 165 285 - $PROJ_DIR$\..\Core\Src\ADC_collect.c + $PROJ_DIR$\..\Core\Src\flash_log.c ICCARM - 193 + 173 __cstat - 133 + 289 BICOMP - 63 + 113 ICCARM - 97 298 106 87 77 335 296 211 346 74 157 171 291 297 215 246 95 244 264 280 52 300 140 99 201 290 312 42 216 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 207 71 128 239 38 123 54 337 299 261 62 315 350 284 199 151 269 - - - BICOMP - 222 296 155 95 121 297 246 264 349 298 106 60 299 350 207 87 77 346 215 181 317 288 140 99 151 71 74 269 335 157 154 205 333 59 243 37 42 312 300 52 101 112 76 326 239 54 216 211 171 199 291 217 244 280 290 201 319 315 123 261 128 97 51 36 284 38 337 62 + 79 314 85 70 237 333 311 222 140 134 196 167 65 274 60 101 151 302 319 137 154 132 350 318 326 198 341 348 193 174 107 287 272 310 291 225 204 304 330 120 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 298 152 184 162 121 89 - $PROJ_DIR$\..\Core\Src\common.c + $PROJ_DIR$\..\Core\Src\RS485_debug.c ICCARM - 316 + 248 __cstat - 57 + 176 BICOMP - 218 + 270 ICCARM - 97 298 106 87 77 335 296 74 157 82 291 297 215 246 95 244 264 280 52 300 140 99 201 290 312 42 216 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 128 239 38 123 54 337 299 261 62 315 350 71 284 109 259 224 207 199 151 308 + 79 314 85 70 237 333 311 222 140 258 255 213 341 348 193 174 107 287 272 310 65 291 225 204 137 304 330 120 167 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 198 298 152 184 134 196 274 60 101 151 302 319 154 132 350 318 326 162 121 126 327 185 89 117 - - $PROJ_DIR$\startup_stm32l496xx.s - - - AARM - 294 - - - $PROJ_DIR$\..\Core\Src\cli.c ICCARM - 327 + 346 __cstat - 70 + 135 BICOMP - 72 + 216 ICCARM - 97 298 106 87 77 335 296 74 157 259 224 291 297 215 246 95 244 264 280 52 300 140 99 201 290 312 42 216 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 128 239 38 123 54 337 299 261 62 315 350 71 284 82 341 109 207 199 151 102 308 142 208 269 85 55 - - - BICOMP - 157 106 208 315 82 280 95 52 291 199 55 298 244 297 351 109 308 85 296 217 216 290 201 319 128 74 259 71 341 207 102 142 269 151 87 77 335 224 215 246 154 181 205 60 333 317 59 155 243 288 37 42 264 312 300 140 99 101 112 222 349 76 326 121 38 337 62 97 51 36 239 123 54 299 261 350 284 + 79 314 85 70 237 333 311 222 140 298 152 341 348 193 174 107 287 272 310 65 291 225 204 137 304 330 120 167 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 196 274 60 101 151 302 319 154 132 350 318 134 326 213 246 198 184 162 121 76 283 89 185 327 126 117 - $PROJ_DIR$\..\Core\Src\RS485_sensor.c + $PROJ_DIR$\..\Core\Src\freertos.c + + ICCARM + 243 + __cstat - 320 + 347 BICOMP - 285 + 267 ICCARM - 97 298 106 87 77 335 296 74 157 82 291 297 215 246 95 244 264 280 52 300 140 99 201 290 312 42 216 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 207 71 128 239 38 123 54 337 299 261 62 315 350 284 199 151 293 + 196 167 314 85 70 237 333 311 65 274 60 101 151 302 319 137 154 132 350 318 341 348 193 174 107 287 272 310 291 225 204 304 330 120 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 134 326 BICOMP - 157 297 52 95 244 106 71 199 298 280 291 82 296 217 216 290 201 319 207 128 74 293 87 77 335 215 246 154 181 205 60 333 317 59 155 243 288 37 42 264 312 300 140 99 101 112 222 349 76 326 121 284 38 337 62 97 51 36 315 239 123 54 299 261 350 151 + 235 107 348 174 272 314 85 154 146 338 65 60 70 237 193 211 323 328 225 341 311 333 151 319 318 147 88 271 182 297 136 120 330 291 287 350 134 167 274 101 302 132 137 77 310 304 204 78 82 195 253 142 266 80 196 165 285 326 - $PROJ_DIR$\..\Core\Src\position.c + $PROJ_DIR$\..\Core\Src\FreeRTOS_CLI.c ICCARM - 228 + 112 __cstat - 49 + 240 BICOMP - 278 + 100 ICCARM - 97 298 106 87 77 335 296 74 157 82 291 297 215 246 95 244 264 280 52 300 140 99 201 290 312 42 216 217 154 101 181 205 60 112 222 333 317 319 51 120 302 59 349 155 76 243 36 288 326 37 121 199 207 71 128 239 38 123 54 337 299 261 62 315 350 284 151 269 304 142 - - - BICOMP - 52 290 217 291 95 335 201 216 269 296 106 297 207 82 142 298 87 77 215 244 280 51 76 315 123 261 71 74 199 304 157 246 154 181 205 60 333 317 120 59 155 243 288 37 42 264 312 300 140 99 302 36 326 121 239 54 299 350 128 97 101 112 222 319 349 151 284 38 337 62 + 222 314 85 70 237 333 311 140 65 196 167 274 60 101 151 302 319 137 154 132 350 318 76 184 134 326 - $PROJ_DIR$\CableMonitor_APP_V3.2\Exe\CableMonitor_APP_V3.2.out + $PROJ_DIR$\..\Core\Src\dev_config.c - ILINK + ICCARM + 57 + + + __cstat 279 - OBJCOPY - 292 + BICOMP + 148 - ILINK - 194 110 193 327 90 316 250 238 233 156 328 241 47 332 113 94 56 136 96 305 78 141 263 58 124 294 309 334 331 187 195 119 61 160 258 190 91 260 75 118 330 210 344 146 139 39 301 68 277 347 88 271 132 149 230 273 266 303 196 150 135 148 204 81 + ICCARM + 222 314 85 70 237 333 311 140 79 341 348 193 174 107 287 272 310 65 291 225 204 137 304 330 120 167 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 134 196 274 60 101 151 302 319 154 132 350 318 326 184 162 121 89 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_exti.c + $PROJ_DIR$\..\Core\Src\adc.c ICCARM - 61 + 68 __cstat - 340 + 224 BICOMP - 92 + 296 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 - - - BICOMP - 95 297 52 106 244 280 217 216 290 201 298 51 215 246 154 181 205 60 333 317 59 155 243 288 37 42 264 312 300 140 87 77 335 99 296 101 112 222 319 349 76 326 121 36 + 229 341 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 184 134 196 274 60 101 151 302 319 154 132 350 318 326 327 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\queue.c + $PROJ_DIR$\..\Core\Src\ADC_collect.c ICCARM - 141 + 52 __cstat - 283 + 180 BICOMP - 321 + 230 ICCARM - 211 298 106 87 77 335 296 346 74 157 128 216 52 239 38 123 54 337 299 201 261 62 315 350 79 - - - BICOMP - 62 106 296 315 346 77 38 337 261 335 298 157 52 74 128 79 87 216 239 123 54 299 201 350 211 + 79 314 85 70 237 333 311 205 260 222 140 229 341 348 193 174 107 287 272 310 65 291 225 204 137 304 330 120 167 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 184 134 196 274 60 101 151 302 319 154 132 350 318 326 162 121 327 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c + $PROJ_DIR$\..\Core\Src\dma.c ICCARM - 330 + 221 __cstat - 221 + 227 BICOMP - 209 + 130 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 131 341 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 95 201 217 52 290 51 298 216 106 244 297 280 215 246 154 181 205 60 333 317 59 155 243 288 37 42 264 312 300 140 87 77 335 99 296 101 112 222 319 349 76 326 121 36 + 85 107 348 65 287 341 310 77 167 304 137 314 165 193 174 147 211 88 146 271 323 182 235 297 328 136 120 272 330 291 225 70 237 333 204 311 78 82 195 338 253 142 266 80 131 285 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c + $PROJ_DIR$\..\Core\Src\dau.c ICCARM - 277 + 282 __cstat - 245 + 340 BICOMP - 262 + 250 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 - - - BICOMP - 95 280 244 297 52 106 76 326 217 216 290 201 298 349 121 215 246 154 181 205 60 333 317 59 155 243 288 37 42 264 312 300 140 87 77 335 99 296 101 112 222 319 51 36 + 79 314 85 70 237 333 311 205 260 222 140 298 152 258 255 269 341 348 193 174 107 287 272 310 65 291 225 204 137 304 330 120 167 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 213 184 134 196 274 60 101 151 302 319 154 132 350 318 326 162 121 89 327 117 185 126 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\tasks.c + $PROJ_DIR$\..\Core\Src\rtc.c ICCARM - 273 + 212 __cstat - 131 + 277 BICOMP - 158 + 293 ICCARM - 211 298 106 87 77 335 296 346 74 157 128 216 52 239 38 123 54 337 299 201 261 62 315 350 213 203 97 + 198 341 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 298 152 BICOMP - 298 52 97 216 315 203 296 87 123 74 128 213 106 346 77 335 239 54 299 201 211 157 38 337 62 261 350 + 88 136 85 193 182 330 107 338 147 271 297 120 291 314 70 237 65 311 152 341 174 211 146 323 235 328 272 225 333 204 78 82 195 253 298 348 77 287 167 310 304 137 165 285 198 142 266 80 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c + $PROJ_DIR$\..\Core\Src\gpio.c ICCARM - 68 + 90 __cstat - 44 + 259 BICOMP - 255 + 264 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 62 341 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 222 288 349 181 335 95 317 140 99 246 60 155 264 298 106 101 112 215 154 205 333 59 243 37 42 312 300 87 77 52 296 319 217 244 216 297 280 290 201 51 76 326 121 36 + 291 147 237 107 297 311 271 120 314 70 65 338 193 88 182 136 330 85 174 211 146 323 235 328 272 225 333 204 78 82 195 341 348 77 287 167 310 304 137 253 142 266 80 62 165 285 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c + $PROJ_DIR$\..\Core\Src\spi.c ICCARM - 149 + 87 __cstat - 240 + 345 BICOMP - 197 + 59 ICCARM - 52 298 106 87 77 335 74 296 157 128 216 239 38 123 54 337 299 201 261 62 315 350 247 - - - BICOMP - 123 106 315 298 296 216 87 157 239 337 62 261 350 74 128 247 77 335 52 38 54 299 201 + 269 341 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 184 134 196 274 60 101 151 302 319 154 132 350 318 326 117 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi.c + $PROJ_DIR$\..\Core\Src\wireless.c ICCARM - 301 + 234 __cstat - 125 + 349 BICOMP - 159 + 203 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 - - - BICOMP - 288 215 222 181 335 317 140 99 246 60 155 264 298 106 101 112 76 326 154 205 333 59 243 37 42 312 300 87 77 52 296 95 349 121 217 244 216 297 280 290 201 319 51 36 + 79 314 85 70 237 333 311 222 140 298 152 213 341 348 193 174 107 287 272 310 65 291 225 204 137 304 330 120 167 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 229 246 198 184 134 196 274 60 101 151 302 319 154 132 350 318 326 185 162 121 327 89 126 117 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portasm.s + $PROJ_DIR$\startup_stm32l496xx.s AARM - 78 + 332 - - - AARM - 239 - - - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Core\Src\flash_if.c ICCARM - 210 + 263 __cstat - 147 + 158 BICOMP - 69 + 145 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 - - - BICOMP - 95 216 106 319 217 52 290 201 298 244 297 280 215 246 154 181 205 60 333 317 59 155 243 288 37 42 264 312 300 140 87 77 335 99 296 101 112 222 349 76 326 121 51 36 + 134 196 167 314 85 70 237 333 311 65 274 60 101 151 302 319 137 154 132 350 318 326 269 341 348 193 174 107 287 272 310 291 225 204 304 330 120 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 184 89 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim_ex.c + $PROJ_DIR$\..\Core\Src\common.c ICCARM - 347 + 262 __cstat - 115 + 181 BICOMP - 249 + 156 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 - - - BICOMP - 246 264 112 155 298 95 60 106 101 319 181 317 288 140 335 99 222 215 154 205 333 59 243 37 42 312 300 87 77 52 296 217 244 216 297 280 290 201 349 76 326 121 51 36 + 79 314 85 70 237 333 311 222 140 213 341 348 193 174 107 287 272 310 65 291 225 204 137 304 330 120 167 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 196 274 60 101 151 302 319 154 132 350 318 134 326 198 298 152 184 162 121 283 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\croutine.c + $PROJ_DIR$\..\Core\Src\main.c ICCARM - 250 + 104 __cstat - 105 + 139 BICOMP - 223 + 64 ICCARM - 128 216 298 106 87 77 335 296 52 239 38 123 54 337 299 201 261 62 315 350 275 + 341 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 134 196 274 60 101 151 302 319 154 132 350 318 326 229 131 198 298 152 269 246 213 62 BICOMP - 54 298 52 335 201 38 296 299 315 216 239 123 106 77 128 275 87 337 62 261 350 + 65 348 253 85 107 80 62 287 152 198 310 132 298 229 246 77 167 304 137 314 142 266 60 302 311 134 131 269 213 193 174 147 211 88 146 271 323 182 235 297 328 136 120 272 330 291 225 70 237 333 204 78 82 195 338 350 341 165 285 196 326 274 101 151 319 154 318 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart_ex.c + $PROJ_DIR$\..\Core\Src\tim.c ICCARM - 271 + 334 __cstat - 73 + 199 BICOMP - 242 + 92 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 - - - BICOMP - 155 298 246 264 112 95 60 106 101 181 317 288 140 335 99 222 215 154 205 333 59 243 37 42 312 300 87 77 52 296 319 217 244 216 297 280 290 201 51 349 76 326 121 36 + 246 341 348 193 174 107 287 272 310 65 314 85 70 237 333 291 225 204 137 304 330 120 167 311 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 184 134 196 274 60 101 151 302 319 154 132 350 318 326 162 121 327 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\list.c + $PROJ_DIR$\..\Core\Src\RS485_sensor.c - - ICCARM - 136 - __cstat - 111 + 337 BICOMP - 143 + 317 ICCARM - 211 298 106 87 77 335 296 346 128 216 52 239 38 123 54 337 299 201 261 62 350 + 79 314 85 70 237 333 311 222 140 213 341 348 193 174 107 287 272 310 65 291 225 204 137 304 330 120 167 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 184 134 196 274 60 101 151 302 319 154 132 350 318 326 162 121 335 BICOMP - 298 123 350 296 87 335 216 52 128 106 346 77 239 54 299 201 211 38 337 62 261 + 140 348 65 107 287 85 134 162 314 310 341 213 311 77 167 304 137 338 184 196 222 335 70 237 333 193 174 147 211 88 146 271 323 182 235 297 328 136 120 272 330 291 225 204 78 82 195 253 142 266 80 326 60 302 132 79 165 285 350 274 101 151 319 154 318 121 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\timers.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Exe\CableMonitor_APP_V3.2.out - ICCARM - 303 - - - __cstat - 200 + ILINK + 312 - BICOMP - 313 + OBJCOPY + 316 - ICCARM - 211 298 106 87 77 335 296 346 128 216 52 239 38 123 54 337 299 201 261 62 315 350 79 213 - - - BICOMP - 337 106 38 261 79 298 296 62 128 87 52 315 213 346 77 335 216 239 123 54 299 201 211 350 + ILINK + 169 68 52 346 81 262 150 282 57 221 251 263 173 243 112 90 220 206 104 244 122 197 248 212 87 332 256 284 303 155 138 219 226 214 157 171 63 280 239 183 252 191 315 186 74 141 321 153 320 249 66 268 97 105 56 329 334 265 119 234 55 109 168 116 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.c + $PROJ_DIR$\..\Core\Src\position.c ICCARM - 90 + 207 __cstat - 53 + 115 BICOMP - 144 + 254 ICCARM - 74 298 106 87 77 335 296 157 284 52 216 140 99 201 128 239 38 123 54 337 299 261 62 315 350 64 213 286 79 268 272 244 264 280 300 290 312 297 215 246 95 42 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 79 314 85 70 237 333 311 222 140 213 341 348 193 174 107 287 272 310 65 291 225 204 137 304 330 120 167 77 147 78 211 88 146 82 195 271 323 338 165 99 245 182 253 235 142 297 285 328 266 136 80 162 184 134 196 274 60 101 151 302 319 154 132 350 318 326 121 327 325 89 BICOMP - 298 52 335 315 95 272 79 280 244 319 38 261 297 140 286 106 87 77 296 54 299 350 290 217 216 284 128 64 268 157 99 201 239 123 337 62 213 74 264 312 300 215 246 154 181 205 60 333 317 59 155 243 288 37 42 101 112 222 349 76 326 121 51 36 + 65 304 77 341 107 333 137 167 327 311 85 348 184 213 89 314 70 237 193 287 310 165 142 350 101 154 134 222 162 325 140 174 147 211 88 146 271 323 99 182 235 297 328 136 120 272 330 291 225 204 245 285 266 80 274 151 319 318 196 79 78 82 195 338 253 121 326 60 302 132 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\port.c + $PROJ_DIR$\..\Core\Src\recording_wave.c ICCARM - 305 + 124 __cstat - 145 + 208 BICOMP - 83 + 275 ICCARM - 299 201 106 87 77 335 261 128 216 298 296 52 239 38 123 54 337 62 315 350 + 79 314 85 70 237 333 311 222 140 269 341 348 193 174 107 287 272 310 65 291 225 204 137 304 330 120 167 77 147 78 211 88 146 82 195 271 323 338 165 99 245 182 253 235 142 297 285 328 266 136 80 246 184 134 196 274 60 101 151 302 319 154 132 350 318 326 162 121 89 327 306 BICOMP - 261 298 106 315 335 52 128 201 87 77 38 296 54 299 216 239 123 337 62 350 + 311 107 134 306 310 65 348 184 314 193 287 85 196 341 269 89 140 77 167 304 137 165 142 222 246 162 327 70 237 333 174 147 211 88 146 271 323 99 182 235 297 328 136 120 272 330 291 225 204 245 285 266 80 326 60 302 132 350 79 78 82 195 338 253 274 101 151 319 154 318 121 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portasm.s + + + AARM + 122 + + + + + AARM + 274 + + + + + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\timers.c ICCARM - 139 + 265 __cstat - 107 + 159 BICOMP - 227 + 331 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 205 314 85 70 237 333 311 260 196 167 65 274 60 101 151 302 319 137 154 132 350 318 51 190 BICOMP - 317 140 99 95 181 288 335 222 319 246 60 155 264 298 106 101 112 215 154 205 333 59 243 37 42 312 300 87 77 52 296 217 244 216 297 280 290 201 349 76 326 121 51 36 + 302 85 60 154 51 314 311 132 196 70 65 350 190 260 237 333 167 274 101 151 319 137 205 318 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\tasks.c ICCARM - 328 + 329 __cstat - 103 + 178 BICOMP - 191 + 71 ICCARM - 211 298 106 87 77 335 296 346 128 216 52 239 38 123 54 337 299 201 261 62 315 350 213 64 + 205 314 85 70 237 333 311 260 222 140 196 167 65 274 60 101 151 302 319 137 154 132 350 318 190 161 79 BICOMP - 62 298 296 213 38 106 337 261 350 128 87 52 315 64 346 77 335 216 239 123 54 299 201 211 + 314 65 79 167 350 161 311 70 101 222 196 190 85 260 237 333 274 151 319 137 205 140 60 302 132 154 318 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_cortex.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c ICCARM - 187 + 220 __cstat - 98 + 189 BICOMP - 318 + 242 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 205 314 85 70 237 333 311 260 196 167 65 274 60 101 151 302 319 137 154 132 350 318 BICOMP - 222 288 349 181 335 95 317 140 99 246 60 155 264 298 106 101 112 215 154 205 333 59 243 37 42 312 300 87 77 52 296 319 217 244 216 297 280 290 201 51 76 326 121 36 + 314 151 85 274 137 196 260 237 319 350 311 333 167 101 65 205 70 60 302 132 154 318 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc_ex.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\port.c ICCARM - 39 + 244 __cstat - 235 + 84 BICOMP - 253 + 73 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 319 137 85 70 237 333 154 196 167 314 311 65 274 60 101 151 302 132 350 318 BICOMP - 317 140 99 95 181 288 335 222 319 246 60 155 264 298 106 101 112 215 154 205 333 59 243 37 42 312 300 87 77 52 296 217 244 216 297 280 290 201 349 76 326 121 51 36 + 154 314 85 350 333 65 196 137 70 237 60 311 151 319 167 274 101 302 132 318 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.c ICCARM - 88 + 81 __cstat - 336 + 67 BICOMP - 46 + 83 ICCARM - 297 215 246 95 244 264 280 52 298 106 87 77 335 300 140 99 201 290 312 42 216 296 217 154 101 181 205 60 112 222 333 317 319 51 59 349 155 76 243 36 288 326 37 121 + 222 314 85 70 237 333 311 140 326 65 167 225 204 137 196 274 60 101 151 302 319 154 132 350 318 143 190 336 51 261 313 287 272 310 291 304 330 348 193 174 107 120 77 147 78 211 88 146 82 195 271 323 338 165 182 253 235 142 297 285 328 266 136 80 BICOMP - 298 95 217 52 290 201 319 216 106 244 297 280 215 246 154 181 205 60 333 317 59 155 243 288 37 42 264 312 300 140 87 77 335 99 296 101 112 222 349 76 326 121 51 36 + 314 65 333 350 107 313 51 310 287 338 60 154 348 225 336 85 70 237 311 151 319 318 304 77 167 326 196 143 261 140 204 137 274 101 302 132 190 222 272 330 291 193 174 147 211 88 146 271 323 182 235 297 328 136 120 78 82 195 253 142 266 80 165 285 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\queue.c ICCARM - 56 + 197 __cstat - 225 + 344 BICOMP - 339 + 342 ICCARM - 211 298 106 87 77 335 296 346 128 216 52 239 38 123 54 337 299 201 261 62 315 350 + 205 314 85 70 237 333 311 260 222 140 196 167 65 274 60 101 151 302 319 137 154 132 350 318 51 BICOMP - 298 54 106 239 201 128 346 77 299 315 296 335 216 123 52 211 87 38 337 62 261 350 + 132 85 311 350 260 237 60 302 154 333 314 140 65 222 196 51 70 167 274 101 151 319 137 318 205 - $PROJ_DIR$\..\Core\Src\recording_wave.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c ICCARM - 231 + 105 __cstat - 236 + 160 BICOMP - 323 + 177 ICCARM - 97 298 106 87 77 335 296 74 157 310 291 297 215 246 95 244 264 280 52 300 140 99 201 290 312 42 216 217 154 101 181 205 60 112 222 333 317 319 51 120 302 59 349 155 76 243 36 288 326 37 121 341 207 71 128 239 38 123 54 337 299 261 62 315 350 284 199 151 142 269 338 + 65 314 85 70 237 333 222 311 140 196 167 274 60 101 151 302 319 137 154 132 350 318 301 BICOMP - 296 95 71 338 280 52 297 207 298 215 244 106 128 291 310 142 157 217 216 290 201 51 76 74 341 199 269 87 77 335 246 154 181 205 60 333 317 120 59 155 243 288 37 42 264 312 300 140 99 302 36 326 121 284 38 337 62 315 97 101 112 222 319 349 239 123 54 299 261 350 151 + 101 85 350 314 311 167 70 140 274 302 132 154 318 222 196 301 237 333 65 60 151 319 137 diff --git a/CablePositioning_APP_V1.0/EWARM/settings/Project.wsdt b/CablePositioning_APP_V1.0/EWARM/settings/Project.wsdt index 7e53ce1..9796184 100644 --- a/CablePositioning_APP_V1.0/EWARM/settings/Project.wsdt +++ b/CablePositioning_APP_V1.0/EWARM/settings/Project.wsdt @@ -50,7 +50,7 @@ 33054 0 33035 - 33037 + 33036 34399 0 33038 @@ -67,10 +67,9 @@ CableMonitor_APP_V3.2 - CableMonitor_APP_V3.2/Application - CableMonitor_APP_V3.2/Application/EWARM - CableMonitor_APP_V3.2/Application/User - CableMonitor_APP_V3.2/Application/User/Core + CableMonitor_APP_V3.2/Middlewares + CableMonitor_APP_V3.2/Middlewares/FreeRTOS + CableMonitor_APP_V3.2/Middlewares/FreeRTOS/cmsis_os2.c CableMonitor_APP_V3.2/Output @@ -86,7 +85,7 @@ 1 1 1 - 5C0C00000E0040E10000020000005984000002000000568400000300000010860000100000000F810000010000005F860000080000000C810000FE0B000055840000030000000E810000080000000B810000150000000584000003000000108400002700000046810000010000000D81000007000000 + 7D0C00000F0040E10000020000005984000002000000568400000300000010860000100000000F810000010000005F860000080000000C8100001D0C000055840000030000000E810000080000000B8100001500000005840000030000002781000001000000108400002700000046810000010000000D81000008000000 51000D8400000F84000008840000FFFFFFFF54840000328100001C810000098400007784000007840000808C000044D50000538400000088000001880000028800000388000004880000058800001C8F00001D8F00001F8F0000208F0000218F00002AE10000118F000055840000568400005984000001B0000002B0000003B0000004B0000005B0000006B0000007B0000008B0000009B000000AB000000BB000000CB000000DB000000EB0000000B000002481000040E100000C840000338400007884000011840000008200001C820000018200006786000020DE000021DE000026DE000028DE000023DE000022DE000024DE000027DE000025DE000020920000289200002992000037920000389200003492000033920000259200001E9200001D92000008800000098000000A8000000B8000000C800000158000000A81000001E80000 @@ -121,7 +120,7 @@ 4294967295 - 00000000F8010000000600001D030000 + 00000000D002000080070000F5030000 00000000B902000080070000DE030000 4096 0 @@ -171,7 +170,7 @@ 34056 000000001700000022010000C8000000 - 04000000D1020000FC050000C4030000 + 04000000D10200007C070000C4030000 32768 0 0 @@ -193,7 +192,7 @@ 34057 000000001700000022010000C8000000 - 04000000D1020000FC050000C4030000 + 04000000D10200007C070000C4030000 32768 0 0 @@ -215,7 +214,7 @@ 34058 000000001700000022010000C8000000 - 04000000D1020000FC050000C4030000 + 04000000D10200007C070000C4030000 32768 0 0 @@ -238,7 +237,7 @@ 34059 000000001700000022010000C8000000 - 04000000D1020000FC050000C4030000 + 04000000D10200007C070000C4030000 32768 0 0 @@ -260,7 +259,7 @@ 34062 000000001700000022010000C8000000 - 04000000D1020000FC050000C4030000 + 04000000D10200007C070000C4030000 32768 0 0 @@ -360,7 +359,7 @@ 1 - 0000000010000000000000000010000001000000FFFFFFFFFFFFFFFFA801000032000000AC010000B5020000010000000200001004000000010000002CFFFFFF0C0600000F85000000000000000000000000000000000000010000000F850000010000000F850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000000D85000000000000000000000000000000000000010000000D850000010000000D850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000000C85000000000000000000000000000000000000010000000C850000010000000C850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000078500000000000000000000000000000000000001000000078500000100000007850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000068500000000000000000000000000000000000001000000068500000100000006850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000058500000000000000000000000000000000000001000000058500000100000005850000000000000080000001000000FFFFFFFFFFFFFFFF00000000B502000080070000B90200000100000001000010040000000100000009FEFFFF72010000FFFFFFFF0700000008850000098500000A8500000B8500000E8500000485000000850000FFFF02000B004354616262656450616E65008000000100000000000000F8010000000600001D03000000000000B902000080070000DE030000000000004080005607000000FFFEFF0C4400650063006C00610072006100740069006F006E007300000000000885000001000000FFFFFFFFFFFFFFFFFFFEFF0A5200650066006500720065006E00630065007300000000000985000001000000FFFFFFFFFFFFFFFFFFFEFF0D460069006E006400200069006E002000460069006C0065007300000000000A85000001000000FFFFFFFFFFFFFFFFFFFEFF1541006D0062006900670075006F0075007300200044006500660069006E006900740069006F006E007300000000000B85000001000000FFFFFFFFFFFFFFFFFFFEFF0B54006F006F006C0020004F0075007400700075007400000000000E85000001000000FFFFFFFFFFFFFFFFFFFEFF054200750069006C006400010000000485000001000000FFFFFFFFFFFFFFFFFFFEFF094400650062007500670020004C006F006700010000000085000001000000FFFFFFFFFFFFFFFF05000000000000000000000000000000000000000000000001000000FFFFFFFF0885000001000000FFFFFFFF08850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000038500000000000000000000000000000000000001000000038500000100000003850000000000000000000000000000 + 0000000010000000000000000010000001000000FFFFFFFFFFFFFFFFA801000032000000AC010000B5020000010000000200001004000000010000002CFFFFFF0C0600000F85000000000000000000000000000000000000010000000F850000010000000F850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000000D85000000000000000000000000000000000000010000000D850000010000000D850000000000000080000000000000FFFFFFFFFFFFFFFF000000000000000004000000040000000000000001000000040000000100000000000000000000000C85000000000000000000000000000000000000010000000C850000010000000C850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000078500000000000000000000000000000000000001000000078500000100000007850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000068500000000000000000000000000000000000001000000068500000100000006850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000058500000000000000000000000000000000000001000000058500000100000005850000000000000080000001000000FFFFFFFFFFFFFFFF00000000B502000080070000B90200000100000001000010040000000100000009FEFFFF72010000FFFFFFFF0700000008850000098500000A8500000B8500000E8500000485000000850000FFFF02000B004354616262656450616E65008000000100000000000000D002000080070000F503000000000000B902000080070000DE030000000000004080005607000000FFFEFF0C4400650063006C00610072006100740069006F006E007300000000000885000001000000FFFFFFFFFFFFFFFFFFFEFF0A5200650066006500720065006E00630065007300000000000985000001000000FFFFFFFFFFFFFFFFFFFEFF0D460069006E006400200069006E002000460069006C0065007300000000000A85000001000000FFFFFFFFFFFFFFFFFFFEFF1541006D0062006900670075006F0075007300200044006500660069006E006900740069006F006E007300000000000B85000001000000FFFFFFFFFFFFFFFFFFFEFF0B54006F006F006C0020004F0075007400700075007400000000000E85000001000000FFFFFFFFFFFFFFFFFFFEFF054200750069006C006400010000000485000001000000FFFFFFFFFFFFFFFFFFFEFF094400650062007500670020004C006F006700010000000085000001000000FFFFFFFFFFFFFFFF05000000000000000000000000000000000000000000000001000000FFFFFFFF0885000001000000FFFFFFFF08850000000000000080000000000000FFFFFFFFFFFFFFFF00000000000000000400000004000000000000000100000004000000010000000000000000000000038500000000000000000000000000000000000001000000038500000100000003850000000000000000000000000000 CMSIS-Pack @@ -381,7 +380,7 @@ Main - 00200000010000002000FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000035000000FFFEFF000000000000000000000000000100000001000000018001E100000000000036000000FFFEFF000000000000000000000000000100000001000000018003E100000000040038000000FFFEFF0000000000000000000000000001000000010000000180008100000000000019000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018007E10000000004003B000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018023E10000000004003D000000FFFEFF000000000000000000000000000100000001000000018022E10000000000003C000000FFFEFF000000000000000000000000000100000001000000018025E10000000004003F000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001802BE100000000040042000000FFFEFF00000000000000000000000000010000000100000001802CE100000000040043000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6E4281000000000400FFFFFFFFFFFEFF0000000000000000000100000000000000010000007800000002002050FFFFFFFFFFFEFF0096000000000000000000018021810000000004002C000000FFFEFF000000000000000000000000000100000001000000018024E10000000004003E000000FFFEFF000000000000000000000000000100000001000000018028E100000000040040000000FFFEFF000000000000000000000000000100000001000000018029E100000000040041000000FFFEFF000000000000000000000000000100000001000000018002810000000004001B000000FFFEFF0000000000000000000000000001000000010000000180298100000000040030000000FFFEFF000000000000000000000000000100000001000000018027810000000004002E000000FFFEFF000000000000000000000000000100000001000000018028810000000004002F000000FFFEFF00000000000000000000000000010000000100000001801D8100000000000028000000FFFEFF00000000000000000000000000010000000100000001801E8100000000040029000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800B810000000000001F000000FFFEFF00000000000000000000000000010000000100000001800D8100000000000021000000FFFEFF00000000000000000000000000010000000100000001805F8600000000000034000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800E8100000000000022000000FFFEFF00000000000000000000000000010000000100000001800F8100000000000023000000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF044D00610069006E00E8020000 + 00200000010000002000FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000035000000FFFEFF000000000000000000000000000100000001000000018001E100000000000036000000FFFEFF000000000000000000000000000100000001000000018003E100000000040038000000FFFEFF0000000000000000000000000001000000010000000180008100000000000019000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018007E10000000004003B000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018023E10000000004003D000000FFFEFF000000000000000000000000000100000001000000018022E10000000004003C000000FFFEFF000000000000000000000000000100000001000000018025E10000000004003F000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001802BE100000000040042000000FFFEFF00000000000000000000000000010000000100000001802CE100000000040043000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6E4281000000000400FFFFFFFFFFFEFF0000000000000000000100000000000000010000007800000002002050FFFFFFFFFFFEFF0096000000000000000000018021810000000004002C000000FFFEFF000000000000000000000000000100000001000000018024E10000000004003E000000FFFEFF000000000000000000000000000100000001000000018028E100000000040040000000FFFEFF000000000000000000000000000100000001000000018029E100000000040041000000FFFEFF000000000000000000000000000100000001000000018002810000000004001B000000FFFEFF0000000000000000000000000001000000010000000180298100000000040030000000FFFEFF000000000000000000000000000100000001000000018027810000000004002E000000FFFEFF000000000000000000000000000100000001000000018028810000000004002F000000FFFEFF00000000000000000000000000010000000100000001801D8100000000040028000000FFFEFF00000000000000000000000000010000000100000001801E8100000000040029000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800B810000000004001F000000FFFEFF00000000000000000000000000010000000100000001800C8100000000000020000000FFFEFF00000000000000000000000000010000000100000001805F8600000000000034000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800E8100000000000022000000FFFEFF00000000000000000000000000010000000100000001800F8100000000000023000000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF044D00610069006E00E8020000 34050 @@ -419,7 +418,7 @@ - 010000000300000001000000000000000000000001000000010000000200000000000000010000000100000000000000280000002800000001000000030000000100000001000000FFFEFF202400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C0066006C006100730068005F006C006F0067002E00630001000000FFFF010014004966436F6E74656E7453746F72616765496D706CFFFEFF00FFFEFFFF22013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003200360036003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0030003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0030003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0B66006C006100730068005F006C006F0067002E00630000000000FFFFFFFFFFFFFFFFFFFEFF222400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C00520053003400380035005F00640065006200750067002E006300010000000180FFFEFF00FFFEFFFF23013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0031003800370033003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0030003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0030003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0D520053003400380035005F00640065006200750067002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1A2400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C0063006C0069002E006300010000000180FFFEFF00FFFEFFFF22013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003500390035003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0030003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0030003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0563006C0069002E00630000000000FFFFFFFFFFFFFFFF0000000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD500010000000100000002000000AC0100004900000080070000CC020000 + 010000000300000001000000000000000000000001000000010000000200000000000000010000000100000000000000280000002800000001000000010000000000000001000000FFFEFF3D2400570053005F0044004900520024005C004300610062006C0065004D006F006E00690074006F0072005F004100500050005F00560033002E0032005C004C006900730074005C004300610062006C0065004D006F006E00690074006F0072005F004100500050005F00560033002E0032002E006D006100700001000000FFFF010014004966436F6E74656E7453746F72616765496D706CFFFEFF00FFFEFFFF23013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0031003600320031003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0030003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0030003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF194300610062006C0065004D006F006E00690074006F0072005F004100500050005F00560033002E0032002E006D006100700000000000FFFFFFFFFFFFFFFF0000000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD500010000000100000002000000AC0100004900000080070000CC020000