diff --git a/CablePositioning_APP_V1.0/Core/Inc/dev_config.h b/CablePositioning_APP_V1.0/Core/Inc/dev_config.h index 1bf98db..023102a 100644 --- a/CablePositioning_APP_V1.0/Core/Inc/dev_config.h +++ b/CablePositioning_APP_V1.0/Core/Inc/dev_config.h @@ -183,14 +183,15 @@ typedef struct uint16_t vin_adj; /* 各种 bool 类型配置, 见 DEV_FLAG_E. 8byte */ uint32_t flag; - uint32_t keepalive; // 保活间隔单位: ms + uint16_t keepalive; // 保活间隔单位: min + uint8_t reserve0[2]; /* 采样间隔配置. 8byte */ uint16_t collect_interval; // 单位: min uint16_t power_threshold; uint16_t fault_threshold; uint16_t defect_threshold; /* APN 配置. 128byte */ - uint8_t APN[DEV_APN_LEN]; + char APN[DEV_APN_LEN]; /* 保证配置区 8K 的保留位. */ uint8_t reserve[300]; /* INIT_DONE_MAGIC. 4byte */ diff --git a/CablePositioning_APP_V1.0/Core/Src/cli.c b/CablePositioning_APP_V1.0/Core/Src/cli.c index 47e0afd..d9e2179 100644 --- a/CablePositioning_APP_V1.0/Core/Src/cli.c +++ b/CablePositioning_APP_V1.0/Core/Src/cli.c @@ -535,10 +535,10 @@ static BaseType_t _cli_show(const char *string) vty_print("Force sleep up: %d\r\n", st_data.force_sleep_up); vty_print("BAT charge: %d\r\n", HAL_GPIO_ReadPin(BAT_CHECK_GPIO_Port, BAT_CHECK_Pin)); vty_print("Collect interval: %dmin\r\n", dev_config.collect_interval); - vty_print("Power threshold: %dmV\r\n", dev_config.power_threshold); - vty_print("Defect threshold: %dmV\r\n", dev_config.defect_threshold); + vty_print("Power threshold: %dA\r\n", dev_config.power_threshold); + vty_print("Defect threshold: %dA\r\n", dev_config.defect_threshold); vty_print("Fault threshold: %dA\r\n", dev_config.fault_threshold); - vty_print("Keepalive: %dms\r\n", dev_config.keepalive); + vty_print("Keepalive: %dmin\r\n", dev_config.keepalive); } else if(0 == strncmp(param, "state", param_len)) { diff --git a/CablePositioning_APP_V1.0/Core/Src/dev_config.c b/CablePositioning_APP_V1.0/Core/Src/dev_config.c index 35ce8ed..de4cbd9 100644 --- a/CablePositioning_APP_V1.0/Core/Src/dev_config.c +++ b/CablePositioning_APP_V1.0/Core/Src/dev_config.c @@ -185,9 +185,9 @@ static HAL_StatusTypeDef _dev_config_default_set(void) dev_config.vin = DEV_VIN_ADJ_DEFAULT; dev_config.vin_adj = DEV_VIN_ADJ_DEFAULT; - dev_config.keepalive = 300000; + dev_config.keepalive = 5; dev_config.collect_interval = 10; - snprintf((char*)dev_config.APN, DEV_APN_LEN, "CMIOT"); + snprintf(dev_config.APN, DEV_APN_LEN, "CMIOT"); dev_config.magic_bak = INIT_DONE_MAGIC; diff --git a/CablePositioning_APP_V1.0/Core/Src/wireless.c b/CablePositioning_APP_V1.0/Core/Src/wireless.c index 393cdc8..48f520b 100644 --- a/CablePositioning_APP_V1.0/Core/Src/wireless.c +++ b/CablePositioning_APP_V1.0/Core/Src/wireless.c @@ -116,8 +116,9 @@ typedef struct uint8_t FPGA_version[DEV_VERSION_STR_LEN]; uint8_t factory_time[DEV_COMPILE_TIME_LEN]; /* 设备其他信息. 160byte */ - uint8_t name[DEV_NAME_LEN]; + char name[DEV_NAME_LEN]; char QCCID[WL_QCCID_LEN]; + char APN[DEV_APN_LEN]; } wl_proto_wakeup_t; /* 实时数据传输结构体 */ @@ -151,6 +152,8 @@ typedef struct uint16_t threshold_power; uint16_t threshold_defect; uint16_t threshold_fault; + uint16_t keepalive; + uint8_t reserve[2]; } wl_proto_config_t; typedef struct @@ -449,6 +452,12 @@ static void _wl_4G_recv_contect(uint8_t *cmd, uint32_t len) dev_config.fault_threshold = cfg->threshold_fault; } + if (cfg->keepalive != dev_config.keepalive) + { + is_cfg_save = TRUE; + dev_config.keepalive = cfg->keepalive; + } + if (is_cfg_save) { common_sys_set(COM_SYS_SAVE_CONFIG, 0); @@ -579,6 +588,12 @@ static void _wl_4G_recv_cfg_set(uint8_t *cmd, uint32_t len) dev_config.fault_threshold = cfg->threshold_fault; } + if (cfg->keepalive != dev_config.keepalive) + { + is_cfg_save = TRUE; + dev_config.keepalive = cfg->keepalive; + } + if (is_cfg_save) { common_sys_set(COM_SYS_SAVE_CONFIG, 0); @@ -800,7 +815,7 @@ static void _wl_4G_recv_update_fpga(uint8_t *cmd, uint32_t len) uint32_t addr = TFTP_APP_ADDRESS; uint32_t app_len = 0; - /* index 为 0 表示是首保, 需要擦除 FLASH. */ + /* index 为 0 表示是首包, 需要擦除 FLASH */ if (0 == m_head->index) { while(addr != TFTP_APP_ADDRESS_END) @@ -1122,9 +1137,10 @@ static void _wl_4G_send_contact(void) _wl_4G_head_init(sizeof(proto_head_t) + sizeof(wl_proto_wakeup_t), DEBUG_CT_REPLY, DEBUG_C_CONTACT, wl_ctrl.pkt_id); /* 封装数据. */ - memcpy(data, &dev_info.type_m, sizeof(wl_proto_wakeup_t) - DEV_NAME_LEN); + memcpy(data, &dev_info.type_m, sizeof(wl_proto_wakeup_t) - DEV_NAME_LEN - WL_QCCID_LEN - DEV_APN_LEN); 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); /* 计算校验和. */ crc = (uint32_t*)(wl_ctrl.dma_tx_buf + head->len); @@ -1718,21 +1734,18 @@ void _wl_4G_send(void) } else if (WL_STATE_UPDATE_RT == wl_ctrl.state) { - /* 设备保活报文发送. */ _wl_4G_send_update_rt(); wl_ctrl.send_cnt++; break; } else if (WL_STATE_UPDATE_FPGA_RT == wl_ctrl.state) { - /* 设备保活报文发送. */ _wl_4G_send_update_fpga_rt(); wl_ctrl.send_cnt++; break; } else if (WL_STATE_KEEPALIVE == wl_ctrl.state) { - /* 设备保活报文发送. */ _wl_4G_send_keepalive(); wl_ctrl.send_cnt++; break; @@ -1744,25 +1757,29 @@ void _wl_4G_send(void) } } -/* 发送数据状态机改变 */ +/* 发包状态机改变 */ void _wl_4G_state_chg(void) { if (dau_ctrl.update_rt != DAU_UPD_NONE) { + /* FPGA 升级结果回复 */ wl_ctrl.state = WL_STATE_UPDATE_FPGA_RT; } else if(!IS_MONITOR_BIT_SET(dau_ctrl.col_flag, DAU_COL_FLAG_FAULT_CMP)) { + /* 故障定位数据上送 */ wl_ctrl.state = WL_STATE_REALDATA_FAULT; } else if(!IS_MONITOR_BIT_SET(dau_ctrl.col_flag, DAU_COL_FLAG_REG_CMP)) { + /* 定时数据上送 */ wl_ctrl.state = WL_STATE_REALDATA; } else if(wl_ctrl.keepalive < HAL_GetTick()) { + /* 保活报文上送 */ wl_ctrl.state = WL_STATE_KEEPALIVE; - wl_ctrl.keepalive = dev_config.keepalive + HAL_GetTick(); + wl_ctrl.keepalive = HAL_GetTick() + dev_config.keepalive * 60000; } } @@ -1792,6 +1809,7 @@ void _wl_4G_init_soft(void) if ((WL_STATE_SOFT == wl_ctrl.state) && is_timeout) { + /* 等待 RDY 字符串 */ wl_ctrl.time_send = 0; wl_ctrl.send_cnt = 0; wl_ctrl.state++; @@ -1806,20 +1824,18 @@ void _wl_4G_init_soft(void) { /* 修改波特率. */ _wl_4G_init_cmd_send("AT+IPR=230400\r\n", 1100); - //_wl_4G_init_cmd_send("AT+IPR=115200\r\n", 1100); - //_wl_4G_init_cmd_send("AT+IPR=19200\r\n", 1100); wl_ctrl.send_cnt++; } else if ((WL_STATE_AT_QICSGP == wl_ctrl.state) && is_timeout) { - /* 创建场景. */ + /* 创建场景 */ snprintf((char*)wl_ctrl.dma_tx_buf, WL_DMA_TX_BUF_LEN, "AT+QICSGP=1,1,\"%s\",\"\",\"\",1\r\n", dev_config.APN); _wl_4G_init_cmd_send(wl_ctrl.dma_tx_buf, 1100); wl_ctrl.send_cnt++; } else if ((WL_STATE_AT_QIACT == wl_ctrl.state) && is_timeout) { - /* 使能场景. */ + /* 使能场景 */ _wl_4G_init_cmd_send("AT+QIACT=1\r\n", 33000); wl_ctrl.send_cnt++; } @@ -1869,7 +1885,8 @@ void _wl_4G_init_soft(void) } else if (wl_ctrl.state > WL_STATE_AT_COMP) { - vty_print("#W4 %d\r\n", wl_ctrl.state); + /* 理论上进不来 */ + vty_print("#WE0 %d\r\n", wl_ctrl.state); wl_ctrl.state = WL_STATE_AT_ATE; wl_ctrl.time_send = 0; wl_ctrl.send_cnt = 0; @@ -1889,28 +1906,31 @@ static void _wl_4G_hw_init(void) HAL_GPIO_WritePin(G4G_RST_GPIO_Port, G4G_RST_Pin, GPIO_PIN_RESET); } -/* 重启 4G 模块硬件. */ +/* 重启 4G 模块硬件 */ static void _wl_4G_hw_restart(void) { DBG(DBG_M_4G, "4G restart(%d)\r\n", wl_ctrl.err_cnt); - /* 初始化 4G 模块硬件. */ + /* 关闭 4G 模块硬件 */ HAL_GPIO_WritePin(POWER_4G_GPIO_Port, POWER_4G_Pin, GPIO_PIN_RESET); HAL_UART_Abort(wl_ctrl.uart); HAL_UART_DeInit(wl_ctrl.uart); - memset(&wl_buf_list_rx, 0, sizeof(wl_buf_list_t)); - MX_USART3_UART_Init(); - HAL_UARTEx_ReceiveToIdle_DMA(wl_ctrl.uart, wl_ctrl.dma_rx_buf, WL_DMA_RX_BUF_LEN); - osDelay(10000); - /* 20s 内要收到 4G 模块发出的 RDY. */ wl_ctrl.state = 0; wl_ctrl.send_cnt = 0; wl_ctrl.mul_idx = 0; wl_ctrl.cmd_buf_index = 0; wl_ctrl.time_send = HAL_GetTick() + 20000; wl_ctrl.err_cnt++; + memset(&wl_buf_list_rx, 0, sizeof(wl_buf_list_t)); + + /* 初始化硬件 */ + osDelay(10000); + MX_USART3_UART_Init(); _wl_4G_hw_init(); + /* 开启串口空闲中断收包 */ + HAL_UARTEx_ReceiveToIdle_DMA(wl_ctrl.uart, wl_ctrl.dma_rx_buf, WL_DMA_RX_BUF_LEN); + /* 4G 掉线后不能阻止波形采集, 掉线后默认上传完成 */ if (!MONITOR_BITMAP_SET(dau_ctrl.col_flag, DAU_COL_FLAG_REG_CMP)) { @@ -1938,12 +1958,12 @@ static void _wl_4G_hw_restart(void) #endif } -/* 无线模块主任务循环. */ +/* 无线模块主任务循环 */ static void _wl_4G_start(void *argument) { uint32_t notify_value = 0; - /* 等待完成 1 次 ADC 采样. */ + /* 等待完成首次 ADC 采样 */ while(1) { if (IS_MONITOR_BIT_SET(system_init_flag, SYS_INIT_ADC)) @@ -1953,7 +1973,7 @@ static void _wl_4G_start(void *argument) osDelay(1000); } - /* 初始化 4G 模块硬件. */ + /* 初始化 4G 模块硬件 */ MX_USART3_UART_Init(); _wl_4G_hw_init(); @@ -1974,7 +1994,7 @@ static void _wl_4G_start(void *argument) if (wl_ctrl.state < WL_STATE_CONTACT) { - /* 进入软件初始化. */ + /* 进入软件初始化 */ _wl_4G_init_soft(); } else @@ -1989,41 +2009,43 @@ static void _wl_4G_start(void *argument) } else if (WL_STATE_END == wl_ctrl.state) { - /* 计算状态机 */ + /* 发包状态机改变 */ _wl_4G_state_chg(); } - /* 进入数据交互模式. */ + /* 根据状态机状态发送报文 */ _wl_4G_send(); } - /* 喂狗. */ common_watchdog_set(COM_WDG_WIR); - /* 等待 DMA 收包中断. */ + /* 等待 DMA 收包中断 */ notify_value = ulTaskNotifyTake(pdTRUE, WL_RX_TIMEOUT); - /* 收包超时, 返回循环头部. */ if (0 == notify_value) { continue; } - /* 收包处理. */ + /* 收包处理 */ _wl_4G_receive(); } } /* Interface functions -------------------------------------------------------*/ -/* 无线通讯任务初始化. */ +/* description: 无线通讯任务初始化 + param: + return: */ void wl_init(void) { wl_ctrl.uart = &huart3; wl_ctrl.handle = osThreadNew(_wl_4G_start, NULL, &WL_attributes); } +/* description: 无线通讯调试显示接口 + param: + return: */ void wl_show(void) { - vty_print("ST\r\n"); - vty_print("%-03d %d\r\n\n", wl_ctrl.state, wl_ctrl.send_cnt); + vty_print("ST: %-03d %d\r\n\n", wl_ctrl.state, wl_ctrl.send_cnt); } /******************* (C) COPYRIGHT LandPower ***** END OF FILE ****************/ 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 302bea5..426a3f5 100644 --- a/CablePositioning_APP_V1.0/EWARM/CableMonitor_APP_V3.2.dep +++ b/CablePositioning_APP_V1.0/EWARM/CableMonitor_APP_V3.2.dep @@ -5,771 +5,790 @@ CableMonitor_APP_V3.2 - $PROJ_DIR$\..\Core\Src\gpio.c - $PROJ_DIR$\..\Core\Src\main.c - $PROJ_DIR$\..\Core\Src\flash_if.c - $PROJ_DIR$\..\Core\Src\dma.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_cortex.c - $PROJ_DIR$\..\Core\Src\flash_log.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c $PROJ_DIR$\..\Core\Src\RS485_debug.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ex.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ramfunc.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_i2c.c - $PROJ_DIR$\..\Core\Src\rtc.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c_ex.c - $PROJ_DIR$\..\Core\Src\stm32l4xx_hal_msp.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc.c $PROJ_DIR$\..\Core\Src\stm32l4xx_it.c - $PROJ_DIR$\..\Core\Src\system_stm32l4xx.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc.c + $PROJ_DIR$\..\Core\Src\dau.c + $PROJ_DIR$\..\Core\Src\wireless.c $PROJ_DIR$\..\Core\Src\dev_config.c + $PROJ_DIR$\..\Core\Src\FreeRTOS_CLI.c + $PROJ_DIR$\..\Core\Src\flash_log.c + $PROJ_DIR$\..\Core\Src\flash_if.c + $PROJ_DIR$\..\Core\Src\freertos.c + $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Core\Src\main.c $PROJ_DIR$\..\Core\Src\spi.c - $PROJ_DIR$\..\Core\Src\usart.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_adc_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_cortex.c $PROJ_DIR$\..\Core\Src\tim.c - $PROJ_DIR$\..\Core\Src\wireless.c - $PROJ_DIR$\..\Core\Src\dau.c - $PROJ_DIR$\..\Core\Src\FreeRTOS_CLI.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma.c + $PROJ_DIR$\..\Core\Src\dma.c $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma_ex.c - $PROJ_DIR$\..\Core\Src\freertos.c $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_exti.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc_ex.c - $PROJ_DIR$\startup_stm32l496xx.s - $PROJ_DIR$\..\Core\Src\adc.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c + $PROJ_DIR$\..\Core\Src\usart.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Core\Src\rtc.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_gpio.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ex.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.c $PROJ_DIR$\..\Core\Src\ADC_collect.c - $PROJ_DIR$\..\Core\Src\cli.c $PROJ_DIR$\..\Core\Src\common.c - $TOOLKIT_DIR$\inc\c\stddef.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\queue.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stream_buffer.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\gpio.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_msp.pbi - $PROJ_DIR$\..\Core\Inc\main.h - $PROJ_DIR$\..\Core\Inc\RS485_debug.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h - $PROJ_DIR$\..\Core\Inc\common.h - $PROJ_DIR$\..\Core\Inc\RS485_sensor.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\main.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\timers.__cstat.et - $TOOLKIT_DIR$\inc\c\ysizet.h - $TOOLKIT_DIR$\inc\c\iar_intrinsics_common.h - $PROJ_DIR$\..\Core\Inc\dma.h - $TOOLKIT_DIR$\inc\c\DLib_Product_string.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\freertos.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim.__cstat.et - $TOOLKIT_DIR$\inc\c\string.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h - $TOOLKIT_DIR$\inc\c\stdint.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\spi.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma_ex.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\system_stm32l4xx.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\wireless.o - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\freertos_os2.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cmsis_os2.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_it.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\adc.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c_ex.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Exe\CableMonitor_APP_V3.2.out - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\heap_4.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi_ex.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_gpio.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim.o - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portmacro.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr_ex.pbi - $PROJ_DIR$\..\Core\Inc\ADC_collect.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\wireless.pbi - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h - $PROJ_DIR$\..\Core\Src\position.c - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dma.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ex.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\system_stm32l4xx.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\position.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dau.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\position.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tasks.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\ADC_collect.o - $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc_ex.o - $PROJ_DIR$\..\Core\Inc\flash_if.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\port.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cli.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\usart.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_it.o - $PROJ_DIR$\..\Core\Inc\recording_wave.h - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h - $TOOLKIT_DIR$\inc\c\time32.h - $TOOLKIT_DIR$\inc\c\iccarm_builtin.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_if.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dev_config.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\rtc.pbi - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\freertos_mpool.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\recording_wave.pbi - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_debug.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\event_groups.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\port.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim_ex.__cstat.et - $PROJ_DIR$\..\Core\Inc\FreeRTOSConfig.h - $TOOLKIT_DIR$\inc\c\DLib_float_setup.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_exti.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart_ex.pbi - $PROJ_DIR$\..\Core\Inc\rtc.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rtc.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h - $PROJ_DIR$\CableMonitor_APP_V3.2\List\CableMonitor_APP_V3.2.map - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma_ex.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\heap_4.o - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\portable.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\gpio.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tim.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc_ex.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\ADC_collect.__cstat.et - $TOOLKIT_DIR$\inc\c\stdlib.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ex.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\timers.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h - $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\..\Core\Src\adc.c + $PROJ_DIR$\..\Core\Src\cli.c + $PROJ_DIR$\startup_stm32l496xx.s + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\event_groups.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi_ex.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dma.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\croutine.__cstat.et $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_debug.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_gpio.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_cortex.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\list.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_msp.__cstat.et $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\main.__cstat.et + $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\..\Core\Inc\flash_log.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_if.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_gpio.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dma.pbi - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc_ex.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c_ex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart_ex.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c_ex.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_msp.o - $PROJ_DIR$\..\Core\Inc\flash_log.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\common.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_msp.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc_ex.pbi + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart_ex.__cstat.et $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stream_buffer.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_if.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\croutine.__cstat.et - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc_ex.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc_ex.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc_ex.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_cortex.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart.o $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\stack_macros.h - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\list.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc.c - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma.__cstat.et - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portasm.s - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart_ex.o - $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr_ex.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\queue.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc_ex.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\croutine.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c - $TOOLKIT_DIR$\lib\dl7M_tlf.a + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\adc.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\common.pbi + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h + $TOOLKIT_DIR$\inc\c\iccarm_builtin.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dau.o + $PROJ_DIR$\..\Core\Inc\flash_if.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\position.o $PROJ_DIR$\..\Core\Inc\usart.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim_ex.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\semphr.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\rtc.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\port.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\tasks.c - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\timers.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart_ex.c + $TOOLKIT_DIR$\lib\dl7M_tlf.a $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_msp.o + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portmacro.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\position.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dma.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\wireless.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ex.o + $TOOLKIT_DIR$\inc\c\time32.h $TOOLKIT_DIR$\inc\c\ycheck.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi_ex.__cstat.et - $TOOLKIT_DIR$\inc\c\stdio.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc.__cstat.et + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\semphr.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\usart.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tasks.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_gpio.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\ADC_collect.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c_ex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash.pbi + $PROJ_DIR$\..\Core\Inc\ADC_collect.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal.o + $PROJ_DIR$\..\Core\Src\position.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_it.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c_ex.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\freertos.__cstat.et + $PROJ_DIR$\..\Core\Inc\common.h + $PROJ_DIR$\..\Core\Inc\RS485_sensor.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\gpio.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cmsis_os2.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma_ex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\wireless.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi_ex.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\spi.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\adc.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Exe\CableMonitor_APP_V3.2.out + $TOOLKIT_DIR$\inc\c\stddef.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\queue.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h + $PROJ_DIR$\..\Core\Inc\main.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h + $TOOLKIT_DIR$\inc\c\string.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_msp.pbi + $PROJ_DIR$\..\Core\Inc\RS485_debug.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stream_buffer.__cstat.et + $TOOLKIT_DIR$\inc\c\iar_intrinsics_common.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\freertos_os2.h + $TOOLKIT_DIR$\inc\c\ysizet.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.o + $PROJ_DIR$\..\Core\Inc\dma.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\timers.__cstat.et $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_exti.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\heap_4.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim.__cstat.et $PROJ_DIR$\CableMonitor_APP_V3.2\Exe\CableMonitor_APP_V3.2.bin - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\croutine.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\FreeRTOS_CLI.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\portasm.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr_ex.__cstat.et $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim_ex.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\main.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\usart.__cstat.et + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_exti.__cstat.et + $TOOLKIT_DIR$\inc\c\stdint.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dma.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\list.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\system_stm32l4xx.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h + $TOOLKIT_DIR$\inc\c\stdio.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dma.o - $PROJ_DIR$\..\Core\Inc\FreeRTOS_CLI.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tim.pbi $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\freertos.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\common.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stream_buffer.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart_ex.__cstat.et + $PROJ_DIR$\..\Core\Inc\FreeRTOS_CLI.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\croutine.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc_ex.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tim.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc.pbi - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\event_groups.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\portasm.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr_ex.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stream_buffer.pbi $PROJ_DIR$\..\Core\Inc\dev_config.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\usart.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\FreeRTOS_CLI.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tasks.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\adc.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\list.pbi + $TOOLKIT_DIR$\inc\c\stdlib.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\event_groups.o + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\timers.c + $PROJ_DIR$\..\Core\Inc\FreeRTOSConfig.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\portable.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\croutine.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\queue.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\tasks.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma_ex.pbi + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h + $TOOLKIT_DIR$\inc\c\DLib_float_setup.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\port.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_exti.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\gpio.o + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\port.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portasm.s + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\list.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart_ex.c + $PROJ_DIR$\..\Core\Inc\rtc.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\ADC_collect.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\timers.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc_ex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\port.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr_ex.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_it.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ex.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\rtc.pbi + $PROJ_DIR$\..\Core\Inc\recording_wave.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\system_stm32l4xx.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart_ex.pbi + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cli.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\List\CableMonitor_APP_V3.2.map + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\recording_wave.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\heap_4.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc.o + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\freertos_mpool.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_if.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim_ex.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc_ex.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rtc.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dev_config.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tim.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_debug.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\adc.pbi + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\usart.pbi - $PROJ_DIR$\..\Core\Inc\stm32l4xx_it.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\croutine.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr_ex.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h + $TOOLKIT_DIR$\inc\c\math.h + $PROJ_DIR$\..\Core\Inc\tim.h + $TOOLKIT_DIR$\inc\c\yvals.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\queue.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma_ex.__cstat.et - $PROJ_DIR$\..\Core\Inc\wireless.h - $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$\CableMonitor_APP_V3.2\Obj\startup_stm32l496xx.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h + $PROJ_DIR$\..\Core\Src\RS485_sensor.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\freertos.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.pbi $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\spi.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cli.o - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h + $PROJ_DIR$\..\Core\Inc\wireless.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_if.__cstat.et $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_cortex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr.pbi + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\position.pbi + $PROJ_DIR$\..\Core\Inc\stm32l4xx_it.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\common.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma_ex.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr_ex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\croutine.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cli.o $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr.pbi - $PROJ_DIR$\..\Core\Src\RS485_sensor.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\position.pbi $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma.o - $TOOLKIT_DIR$\inc\c\math.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_pwr.o - $PROJ_DIR$\..\Core\Inc\tim.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\adc.pbi - $TOOLKIT_DIR$\inc\c\yvals.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\freertos.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\common.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_if.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\startup_stm32l496xx.o - $PROJ_DIR$\..\Core\Inc\gpio.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cmsis_os2.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_it.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_sensor.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dev_config.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\system_stm32l4xx.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_log.pbi - $TOOLKIT_DIR$\lib\rt7M_tl.a $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\deprecated_definitions.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\rtc.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\stream_buffer.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_log.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\gpio.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_log.__cstat.et - $TOOLKIT_DIR$\lib\m7M_tls.a - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc_ex.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tim.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_exti.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cmsis_os2.pbi $PROJ_DIR$\..\Core\Src\recording_wave.c + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_log.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dev_config.__cstat.et $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\FreeRTOS_CLI.__cstat.et $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_sensor.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\event_groups.__cstat.et $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cli.pbi - $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\ADC_collect.pbi - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_gpio.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc_ex.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_log.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cmsis_os2.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\system_stm32l4xx.pbi + $TOOLKIT_DIR$\lib\rt7M_tl.a + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\rtc.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_exti.o + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h + $PROJ_DIR$\..\Core\Inc\gpio.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_it.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\gpio.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\event_groups.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h + $TOOLKIT_DIR$\lib\m7M_tls.a + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\stream_buffer.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\flash_log.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\main.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\tasks.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\queue.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc_ex.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_debug.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\CableMonitor_APP_V3.2.pbd + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc.pbi $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\heap_4.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\event_groups.pbi $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\timers.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\queue.__cstat.et $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash_ex.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h + $PROJ_DIR$\..\Core\Inc\adc.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_dma.pbi + $PROJ_DIR$\stm32l496xx_flash.icf + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_gpio.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\ADC_collect.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\CableMonitor_APP_V3.2.pbd + $PROJ_DIR$\..\Core\Inc\stm32l4xx_hal_conf.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\heap_4.pbi + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\recording_wave.o $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h - $PROJ_DIR$\stm32l496xx_flash.icf + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\event_groups.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_flash.o $TOOLKIT_DIR$\inc\c\time.h $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\recording_wave.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc_ex.pbi + $PROJ_DIR$\..\Core\Inc\position.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_debug.__cstat.et $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h - $PROJ_DIR$\..\Core\Inc\stm32l4xx_hal_conf.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\main.o - $PROJ_DIR$\..\Core\Inc\adc.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dev_config.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dau.pbi - $TOOLKIT_DIR$\lib\shb_l.a - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\spi.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc_ex.pbi $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_i2c.pbi - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dau.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rtc_ex.h - $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h - $TOOLKIT_DIR$\inc\c\intrinsics.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi_ex.o + $TOOLKIT_DIR$\lib\shb_l.a + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\cmsis_os2.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_cortex.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\FreeRTOS_CLI.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dau.pbi + $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_adc.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_tim_ex.o - $PROJ_DIR$\..\Core\Inc\position.h $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\include\croutine.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h $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_adc.o - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\wireless.__cstat.et - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\port.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\spi.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_uart.pbi + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\RS485_sensor.__cstat.et $PROJ_DIR$\..\Core\Inc\cli.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rcc.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\FreeRTOS_CLI.pbi - $TOOLKIT_DIR$\inc\c\DLib_Product.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_cortex.pbi $PROJ_DIR$\..\Core\Inc\spi.h + $TOOLKIT_DIR$\inc\c\DLib_Product_stdlib.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\wireless.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dau.__cstat.et + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\port.pbi $PROJ_DIR$\..\Core\Inc\dau.h - $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_spi_ex.o + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\dev_config.o $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\list.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Product.h + $TOOLKIT_DIR$\inc\c\intrinsics.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rtc_ex.h + $PROJ_DIR$\CableMonitor_APP_V3.2\Obj\stm32l4xx_hal_rtc_ex.o [ROOT_NODE] ILINK - 76 129 + 115 211 - $PROJ_DIR$\..\Core\Src\gpio.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c ICCARM - 134 + 227 BICOMP - 278 + 245 __cstat - 40 + 249 ICCARM - 259 42 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 128 42 335 293 341 108 62 253 255 37 98 110 195 318 55 313 70 233 199 126 273 56 127 269 148 260 142 192 168 89 44 175 291 346 87 51 225 261 344 310 329 263 275 259 61 78 + 174 70 236 146 220 149 87 116 233 291 83 329 306 151 310 118 239 132 214 287 133 221 281 54 285 200 77 39 69 246 58 303 348 208 128 53 283 342 340 308 350 270 286 134 - $PROJ_DIR$\..\Core\Src\main.c + $PROJ_DIR$\..\Core\Src\RS485_debug.c ICCARM - 320 + 225 BICOMP - 48 + 43 __cstat - 147 + 318 ICCARM - 42 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 150 217 121 336 133 272 82 331 52 241 317 45 116 321 53 125 315 109 348 251 182 259 + 152 87 233 58 303 348 128 121 104 74 119 83 306 151 174 291 77 329 146 69 246 208 70 220 39 200 116 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 106 40 144 166 333 167 258 80 349 126 275 319 229 209 160 50 123 97 242 72 - $PROJ_DIR$\..\Core\Src\flash_if.c + $PROJ_DIR$\..\Core\Src\stm32l4xx_it.c ICCARM - 161 + 202 BICOMP - 111 + 278 __cstat - 257 + 100 ICCARM - 150 217 37 195 253 175 291 346 51 62 121 336 133 272 82 331 110 52 241 317 45 116 348 42 108 318 55 128 293 192 335 89 44 87 98 168 142 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 46 100 + 119 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 248 144 166 333 167 258 80 349 126 275 319 229 + + + BICOMP + 333 87 83 236 146 220 70 174 116 233 134 144 291 329 149 248 319 306 151 310 118 239 132 214 287 133 221 281 54 285 200 77 39 69 246 58 303 348 208 128 53 283 342 258 349 119 340 308 350 270 286 166 167 80 275 126 229 - $PROJ_DIR$\..\Core\Src\dma.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc.c ICCARM - 208 + 330 BICOMP - 149 + 292 __cstat - 90 + 135 ICCARM - 53 42 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 128 293 108 62 253 42 335 255 37 98 110 195 61 318 55 313 70 233 199 126 273 56 127 269 148 260 142 192 168 89 44 175 291 346 87 51 225 261 344 341 310 329 263 275 53 78 + 281 128 310 69 303 174 214 200 87 58 146 340 306 239 133 285 39 233 151 118 132 287 221 54 77 246 348 208 53 283 342 236 291 116 83 329 220 70 308 350 270 286 149 134 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal.c + $PROJ_DIR$\..\Core\Src\dau.c ICCARM - 83 + 71 BICOMP - 72 + 328 __cstat - 49 + 343 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 152 87 233 58 303 348 128 163 339 121 104 314 86 231 175 338 119 83 306 151 174 291 77 329 146 69 246 208 70 220 39 200 116 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 74 106 40 144 166 333 167 258 80 349 126 275 319 229 209 160 50 72 97 345 242 BICOMP - 253 37 128 255 62 98 110 195 61 293 108 335 318 55 313 70 233 199 126 273 56 127 269 148 260 142 192 168 89 44 175 291 346 87 51 225 261 344 341 310 329 263 275 78 + 174 87 118 86 233 306 54 119 160 287 149 349 229 231 345 128 151 132 221 77 50 121 74 83 310 239 214 133 281 285 200 39 220 70 134 166 258 116 40 163 314 338 106 72 97 242 58 303 348 339 104 175 236 291 329 146 319 167 126 144 152 69 246 208 53 283 342 340 308 350 270 286 209 333 80 275 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_cortex.c + $PROJ_DIR$\..\Core\Src\wireless.c ICCARM - 242 + 111 BICOMP - 347 + 84 __cstat - 146 + 341 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 152 87 233 58 303 348 128 121 104 314 86 74 119 83 306 151 174 291 77 329 146 69 246 208 70 220 39 200 116 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 298 232 195 106 40 144 166 333 167 258 80 349 126 275 319 229 209 242 160 50 97 72 123 345 BICOMP - 344 148 310 70 346 128 273 44 87 55 199 127 192 195 253 225 261 318 313 233 126 56 269 260 142 168 89 175 291 62 51 341 255 293 37 108 335 98 110 61 329 263 275 78 + 221 87 233 151 77 242 132 174 146 275 144 119 298 123 128 306 118 287 54 149 40 314 195 97 345 104 83 310 239 214 133 281 285 200 39 134 209 333 80 70 121 74 232 106 160 72 50 58 303 348 86 236 291 116 329 220 319 152 69 246 208 53 283 342 340 308 350 270 286 166 167 258 349 126 229 - $PROJ_DIR$\..\Core\Src\flash_log.c + $PROJ_DIR$\..\Core\Src\dev_config.c ICCARM - 277 + 346 BICOMP - 270 + 222 __cstat - 279 + 264 ICCARM - 197 195 253 175 291 346 51 60 54 150 217 37 62 121 336 133 272 82 331 110 52 241 317 45 116 125 42 108 318 55 128 293 192 335 89 44 87 98 168 142 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 315 109 46 222 156 100 + 121 87 233 58 303 348 128 104 152 119 83 306 151 174 291 77 329 146 69 246 208 70 220 39 200 116 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 40 144 166 333 167 258 80 349 126 275 319 229 209 106 160 50 72 BICOMP - 317 291 133 199 110 128 156 175 82 55 127 192 253 125 195 37 241 318 70 273 148 44 46 143 222 51 346 121 62 42 108 313 233 126 56 269 260 142 168 89 341 150 60 100 54 217 116 336 272 331 52 45 315 255 293 335 98 87 225 261 344 310 329 263 275 197 61 78 109 + 146 270 83 116 58 303 174 291 53 350 50 106 233 128 329 283 166 258 119 72 348 87 236 220 70 342 308 286 349 229 319 152 40 160 104 306 151 310 118 239 132 214 287 133 221 281 54 285 200 77 39 69 246 208 340 167 126 121 149 134 144 209 333 80 275 - $PROJ_DIR$\..\Core\Src\RS485_debug.c + $PROJ_DIR$\..\Core\Src\FreeRTOS_CLI.c ICCARM - 117 + 161 BICOMP - 144 + 327 __cstat - 302 + 265 ICCARM - 197 195 253 175 291 346 51 60 54 182 42 108 318 55 128 293 192 335 62 89 44 87 110 98 168 142 37 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 46 150 217 121 336 133 272 82 331 52 241 317 45 116 222 156 43 85 236 100 + 121 87 233 58 303 348 128 104 146 144 116 166 333 167 258 80 349 70 126 275 319 229 156 106 40 209 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ex.c + $PROJ_DIR$\..\Core\Src\flash_log.c ICCARM - 91 + 268 BICOMP - 139 + 262 __cstat - 308 + 288 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 152 87 233 58 303 348 128 121 104 40 144 116 146 166 333 167 258 80 349 70 126 275 319 229 209 195 119 83 306 151 174 291 77 329 69 246 208 220 39 200 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 314 86 106 160 50 72 BICOMP - 253 199 225 128 55 127 192 195 261 341 70 273 148 44 346 87 344 318 313 233 126 56 269 260 142 168 89 175 291 62 51 255 293 37 108 335 98 110 310 329 263 275 61 78 + 134 319 303 167 132 70 174 50 58 80 151 221 77 128 195 87 233 116 275 306 118 287 54 246 49 160 348 166 146 119 83 310 239 214 133 281 285 200 39 69 149 86 121 40 106 72 104 144 209 333 258 349 126 229 314 236 291 329 220 208 152 53 283 342 340 308 350 270 286 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Core\Src\flash_if.c ICCARM - 63 + 51 BICOMP - 232 + 217 __cstat - 71 + 243 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 - - - BICOMP - 260 253 233 128 318 56 168 341 313 126 269 142 89 195 175 291 62 51 55 70 199 273 127 148 192 44 346 87 225 261 344 310 255 293 37 108 335 98 110 61 329 263 275 78 + 40 144 116 87 233 58 303 348 128 146 166 333 167 258 80 349 70 126 275 319 229 209 338 119 83 306 151 174 291 77 329 69 246 208 220 39 200 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 106 72 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_gpio.c + $PROJ_DIR$\..\Core\Src\freertos.c ICCARM - 294 + 238 BICOMP - 80 + 155 __cstat - 145 + 105 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 144 116 87 233 58 303 348 128 146 166 333 167 258 80 349 70 126 275 319 229 119 83 306 151 174 291 77 329 69 246 208 220 39 200 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 40 209 BICOMP - 195 128 255 62 98 110 61 37 253 293 108 335 318 55 313 70 233 199 126 273 56 127 269 148 260 142 192 168 89 44 175 291 346 87 51 225 261 344 341 310 329 263 275 78 + 132 174 83 87 233 126 151 221 77 340 146 333 58 303 306 118 287 54 246 119 128 348 258 349 229 310 239 214 133 281 285 200 39 69 291 319 40 116 166 167 80 275 70 236 329 220 208 53 283 342 308 350 270 286 144 149 134 209 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma.c + $PROJ_DIR$\..\Core\Src\gpio.c ICCARM - 248 + 179 BICOMP - 295 + 279 __cstat - 172 + 108 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 276 119 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 318 56 168 128 341 233 260 253 313 126 269 142 89 195 175 291 62 51 55 70 199 273 127 148 192 44 346 87 225 261 344 255 293 37 108 335 98 110 61 310 329 263 275 78 + 174 119 329 291 340 83 146 233 236 116 220 70 87 306 151 310 118 239 132 214 287 133 221 281 54 285 200 77 39 69 246 58 303 348 208 128 53 283 342 308 350 270 286 276 149 134 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c.c + $PROJ_DIR$\..\Core\Src\main.c ICCARM - 219 + 289 BICOMP - 327 + 142 __cstat - 264 + 48 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 119 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 40 144 166 333 167 258 80 349 126 275 319 229 209 298 130 195 314 86 338 232 74 276 + + + + + $PROJ_DIR$\..\Core\Src\spi.c + + + ICCARM + 334 BICOMP - 37 128 253 255 62 98 110 195 61 293 108 335 318 55 313 70 233 199 126 273 56 127 269 148 260 142 192 168 89 44 175 291 346 87 51 225 261 344 341 310 329 263 275 78 + 113 + + + __cstat + 241 + + + + + ICCARM + 338 119 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 106 40 144 166 333 167 258 80 349 126 275 319 229 209 345 - $PROJ_DIR$\..\Core\Src\rtc.c + $PROJ_DIR$\..\Core\Src\stm32l4xx_hal_msp.c ICCARM - 274 + 79 BICOMP - 113 + 122 __cstat - 185 + 47 ICCARM - 125 42 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 315 109 + 119 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 199 253 225 55 127 192 195 261 128 70 273 148 44 346 87 344 310 109 42 318 313 233 126 56 269 260 142 168 89 175 291 62 51 341 315 108 255 293 37 335 98 110 61 78 125 329 263 275 + 233 116 174 83 236 146 220 70 87 149 291 329 306 151 310 118 239 132 214 287 133 221 281 54 285 200 77 39 69 246 58 303 348 208 128 53 283 342 340 308 350 270 286 119 134 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Core\Src\system_stm32l4xx.c ICCARM - 153 + 206 BICOMP - 154 + 271 __cstat - 75 + 150 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 83 306 151 174 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 37 128 253 255 62 98 110 195 61 293 108 335 318 55 313 70 233 199 126 273 56 127 269 148 260 142 192 168 89 44 175 291 346 87 51 225 261 344 341 310 329 263 275 78 + 53 310 83 146 281 233 174 214 200 87 283 329 306 239 133 285 342 308 220 70 151 118 132 287 221 54 128 340 77 39 69 246 58 303 348 208 236 291 116 149 350 270 286 134 - $PROJ_DIR$\..\Core\Src\stm32l4xx_hal_msp.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc_ex.c ICCARM - 155 + 198 BICOMP - 41 + 320 __cstat @@ -779,196 +798,196 @@ ICCARM - 42 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 253 37 128 108 255 62 98 110 195 61 293 335 318 55 313 70 233 199 126 273 56 127 269 148 260 142 192 168 89 44 175 291 346 87 51 225 261 344 341 310 329 263 275 42 78 + 200 214 87 58 146 174 310 281 69 303 128 340 306 239 133 285 39 233 151 118 132 287 221 54 77 246 348 208 53 283 342 236 291 116 83 329 220 70 308 350 270 286 149 134 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_cortex.c ICCARM - 338 + 244 BICOMP - 309 + 326 __cstat - 198 + 63 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 269 51 313 89 291 128 126 142 195 175 62 341 318 233 56 260 168 253 55 70 199 273 127 148 192 44 346 87 225 261 344 255 293 37 108 335 98 110 310 329 263 275 61 78 + 342 54 308 118 348 174 287 246 208 151 132 221 77 87 233 53 283 306 310 239 214 133 281 285 200 39 69 58 303 146 128 340 236 291 116 83 329 220 70 149 350 270 286 134 - $PROJ_DIR$\..\Core\Src\stm32l4xx_it.c + $PROJ_DIR$\..\Core\Src\tim.c ICCARM - 105 + 223 BICOMP - 265 + 154 __cstat - 73 + 260 ICCARM - 42 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 229 217 121 336 133 272 82 331 52 241 317 45 - - - BICOMP - 336 195 108 255 62 98 110 128 37 253 78 217 293 335 61 229 317 318 55 313 70 233 199 126 273 56 127 269 148 260 142 192 168 89 44 175 291 346 87 51 225 261 344 272 331 42 341 310 329 263 275 121 133 82 241 52 45 + 232 119 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 106 40 144 166 333 167 258 80 349 126 275 319 229 209 160 50 97 - $PROJ_DIR$\..\Core\Src\system_stm32l4xx.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma.c ICCARM - 92 + 257 BICOMP - 268 + 299 __cstat - 66 + 44 ICCARM - 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 108 318 55 128 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 225 313 108 62 269 253 128 126 142 195 261 335 318 233 56 260 344 310 98 110 55 70 199 273 127 148 51 341 192 168 89 44 175 291 346 87 255 293 37 61 329 263 275 78 + 306 133 39 174 340 239 285 233 310 214 281 200 69 87 58 303 146 128 151 118 132 287 221 54 77 246 348 208 53 283 342 236 291 116 83 329 220 70 149 308 350 270 286 134 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c + $PROJ_DIR$\..\Core\Src\dma.c ICCARM - 250 + 147 BICOMP - 246 + 41 __cstat - 237 + 82 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 130 119 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 128 110 255 62 98 61 195 37 253 293 108 335 318 55 313 70 233 199 126 273 56 127 269 148 260 142 192 168 89 44 175 291 346 87 51 225 261 344 341 310 329 263 275 78 + 174 291 83 146 233 119 329 236 116 220 70 87 149 306 151 310 118 239 132 214 287 133 221 281 54 285 200 77 39 69 246 58 303 348 208 128 53 283 342 340 308 350 270 286 130 134 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma_ex.c ICCARM - 301 + 110 BICOMP - 152 + 173 __cstat - 304 + 251 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 110 128 255 62 98 61 195 37 253 293 108 335 318 55 313 70 233 199 126 273 56 127 269 148 260 142 192 168 89 44 175 291 346 87 51 225 261 344 341 310 329 263 275 78 + 116 174 233 236 146 220 70 87 149 291 83 329 306 151 310 118 239 132 214 287 133 221 281 54 285 200 77 39 69 246 58 303 348 208 128 53 283 342 340 308 350 270 286 134 - $PROJ_DIR$\..\Core\Src\dev_config.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_exti.c ICCARM - 323 + 274 BICOMP - 112 + 178 __cstat - 267 + 145 ICCARM - 60 195 253 175 291 346 51 54 197 42 108 318 55 128 293 192 335 62 89 44 87 110 98 168 142 37 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 150 217 121 336 133 272 82 331 52 241 317 45 116 46 222 156 100 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 62 108 175 291 128 293 46 253 51 335 61 42 100 346 195 255 37 98 110 78 150 197 222 156 54 318 55 313 70 233 199 126 273 56 127 269 148 260 142 192 168 89 44 87 217 116 336 82 241 60 225 261 344 341 310 329 263 275 317 121 133 272 331 52 45 + 174 83 146 233 291 329 236 116 220 70 87 149 306 151 310 118 239 132 214 287 133 221 281 54 285 200 77 39 69 246 58 303 348 208 128 53 283 342 340 308 350 270 286 134 - $PROJ_DIR$\..\Core\Src\spi.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c ICCARM - 326 + 313 BICOMP - 64 + 96 __cstat - 239 + 294 ICCARM - 348 42 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 46 150 217 121 336 133 272 82 331 52 241 317 45 116 349 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 + + + BICOMP + 70 174 236 146 220 149 87 116 233 291 83 329 306 151 310 118 239 132 214 287 133 221 281 54 285 200 77 39 69 246 58 303 348 208 128 53 283 342 340 308 350 270 286 134 @@ -977,292 +996,291 @@ ICCARM - 104 + 90 BICOMP - 228 + 230 __cstat - 223 + 143 ICCARM - 182 42 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 60 54 46 150 217 121 336 133 272 82 331 52 241 317 45 116 222 156 236 43 342 85 349 + 74 119 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 121 104 106 40 144 166 333 167 258 80 349 126 275 319 229 209 160 50 242 123 337 97 345 BICOMP - 142 126 195 175 62 349 108 313 269 89 291 51 128 236 233 56 260 168 253 344 310 275 46 317 150 342 318 55 70 199 273 127 148 192 44 346 87 225 261 329 263 143 60 222 43 85 42 255 293 37 335 98 110 341 217 116 336 82 241 182 61 78 54 121 133 272 331 52 45 156 + 200 229 214 87 58 146 291 349 345 83 310 281 69 303 128 174 242 239 133 285 39 233 104 50 319 40 106 337 306 151 118 132 287 221 54 77 246 348 208 53 283 166 258 116 49 121 160 123 97 119 236 329 220 70 149 134 167 126 144 74 342 340 308 350 270 286 209 333 80 275 - $PROJ_DIR$\..\Core\Src\tim.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ramfunc.c ICCARM - 135 + 129 BICOMP - 215 + 240 __cstat - 283 + 103 ICCARM - 251 42 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 46 150 217 121 336 133 272 82 331 52 241 317 45 116 222 156 85 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 + + + BICOMP + 285 233 239 174 306 133 39 340 310 214 281 200 69 87 58 303 146 128 151 118 132 287 221 54 77 246 348 208 53 283 342 308 236 291 116 83 329 220 70 149 350 270 286 134 - $PROJ_DIR$\..\Core\Src\wireless.c + $PROJ_DIR$\..\Core\Src\rtc.c ICCARM - 67 + 273 BICOMP - 86 + 204 __cstat - 339 + 75 ICCARM - 197 195 253 175 291 346 51 60 54 315 109 182 42 108 318 55 128 293 192 335 62 89 44 87 110 98 168 142 37 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 321 251 125 46 150 217 121 336 133 272 82 331 52 241 317 45 116 236 222 156 85 100 43 349 + 195 119 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 314 86 BICOMP - 42 51 273 44 236 318 70 148 87 331 45 217 321 43 195 253 55 199 127 192 128 341 317 156 150 315 125 85 349 54 108 313 233 126 56 269 260 142 168 89 121 272 37 62 60 182 251 46 222 100 175 291 346 109 255 293 335 225 261 344 310 329 263 275 133 52 197 98 110 61 78 116 336 82 241 + 132 233 53 151 221 77 87 283 174 118 287 54 246 348 208 342 308 86 119 306 310 239 214 133 281 285 200 39 69 58 303 146 128 340 314 83 236 291 116 329 220 70 149 134 195 350 270 286 - $PROJ_DIR$\..\Core\Src\dau.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_gpio.c ICCARM - 94 + 301 BICOMP - 324 + 92 __cstat - 328 + 52 ICCARM - 197 195 253 175 291 346 51 138 330 60 54 315 109 249 122 348 42 108 318 55 128 293 192 335 62 89 44 87 110 98 168 142 37 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 182 46 150 217 121 336 133 272 82 331 52 241 317 45 116 222 156 100 85 349 236 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 128 195 70 51 109 318 148 42 222 253 273 341 249 349 55 199 127 192 89 62 46 60 182 156 108 313 233 126 56 269 260 142 168 317 150 138 315 348 100 85 236 175 291 346 330 54 122 255 293 37 335 44 87 225 261 344 310 329 263 275 217 116 336 82 241 110 197 98 61 78 121 133 272 331 52 45 + 87 174 236 146 220 70 149 116 233 291 83 329 306 151 310 118 239 132 214 287 133 221 281 54 285 200 77 39 69 246 58 303 348 208 128 53 283 342 340 308 350 270 286 134 - $PROJ_DIR$\..\Core\Src\FreeRTOS_CLI.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ex.c ICCARM - 203 + 85 BICOMP - 345 + 203 __cstat - 287 + 297 ICCARM - 60 195 253 175 291 346 51 54 62 217 37 121 336 133 272 82 331 110 52 241 317 45 209 46 150 116 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 + + + BICOMP + 233 132 53 174 151 221 77 87 283 340 118 287 54 246 348 208 342 306 310 239 214 133 281 285 200 39 69 58 303 146 128 236 291 116 83 329 220 70 308 350 270 286 149 134 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c.c ICCARM - 65 + 66 BICOMP - 130 + 321 __cstat - 235 + 277 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 37 128 253 255 62 98 110 195 61 293 108 335 318 55 313 70 233 199 126 273 56 127 269 148 260 142 192 168 89 44 175 291 346 87 51 225 261 344 341 310 329 263 275 78 + 116 174 233 236 146 220 70 87 149 291 83 329 306 151 310 118 239 132 214 287 133 221 281 54 285 200 77 39 69 246 58 303 348 208 128 53 283 342 340 308 350 270 286 134 - $PROJ_DIR$\..\Core\Src\freertos.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c_ex.c ICCARM - 254 + 94 BICOMP - 210 + 56 __cstat - 58 + 101 ICCARM - 217 37 195 253 175 291 346 51 62 121 336 133 272 82 331 110 52 241 317 45 42 108 318 55 128 293 192 335 89 44 87 98 168 142 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 150 116 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 199 128 108 195 253 52 55 127 192 341 62 336 175 291 318 70 273 148 44 42 51 346 272 331 45 313 233 126 56 269 260 142 168 89 293 317 150 37 121 133 82 241 110 255 335 98 87 225 261 344 310 329 263 275 217 61 78 116 + 116 174 233 236 146 220 70 87 149 291 83 329 306 151 310 118 239 132 214 287 133 221 281 54 285 200 77 39 69 246 58 303 348 208 128 53 283 342 340 308 350 270 286 134 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_exti.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal.c ICCARM - 284 + 98 BICOMP - 123 + 124 __cstat - 200 + 102 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 128 108 62 253 293 335 255 37 98 110 195 61 318 55 313 70 233 199 126 273 56 127 269 148 260 142 192 168 89 44 175 291 346 87 51 225 261 344 341 310 329 263 275 78 + 233 116 174 236 146 220 70 87 149 291 83 329 306 151 310 118 239 132 214 287 133 221 281 54 285 200 77 39 69 246 58 303 348 208 128 53 283 342 340 308 350 270 286 134 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc_ex.c + $PROJ_DIR$\..\Core\Src\ADC_collect.c ICCARM - 99 + 93 BICOMP - 296 + 304 __cstat - 214 + 196 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 152 87 233 58 303 348 128 163 339 121 104 298 119 83 306 151 174 291 77 329 146 69 246 208 70 220 39 200 116 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 106 40 144 166 333 167 258 80 349 126 275 319 229 209 160 50 97 BICOMP - 142 126 195 175 62 128 313 269 89 291 51 341 318 233 56 260 168 253 55 70 199 273 127 148 192 44 346 87 225 261 344 255 293 37 108 335 98 110 310 329 263 275 61 78 + 128 174 119 329 146 275 106 87 233 291 83 40 121 97 236 116 220 70 144 209 333 80 163 298 160 58 303 348 339 104 306 151 310 118 239 132 214 287 133 221 281 54 285 200 77 39 69 246 208 149 134 319 152 53 283 342 340 308 350 270 286 166 167 258 349 126 229 50 - $PROJ_DIR$\startup_stm32l496xx.s - - - AARM - 258 - - - - - $PROJ_DIR$\..\Core\Src\adc.c + $PROJ_DIR$\..\Core\Src\common.c ICCARM - 74 + 57 BICOMP - 252 + 68 __cstat - 226 + 250 ICCARM - 321 42 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 46 150 217 121 336 133 272 82 331 52 241 317 45 116 85 + 152 87 233 58 303 348 128 121 104 74 119 83 306 151 174 291 77 329 146 69 246 208 70 220 39 200 116 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 144 166 333 167 258 80 349 126 275 319 229 40 209 195 314 86 106 160 50 337 + + + BICOMP + 246 319 287 87 174 146 106 104 306 118 54 208 144 233 151 132 221 77 119 49 40 337 128 83 310 239 214 133 281 285 200 39 69 340 121 74 195 160 50 58 303 348 236 291 116 329 220 70 53 283 342 308 350 270 286 333 80 275 86 152 149 134 166 167 258 349 126 229 209 314 - $PROJ_DIR$\..\Core\Src\ADC_collect.c + $PROJ_DIR$\..\Core\Src\adc.c ICCARM - 97 + 114 BICOMP - 292 + 228 __cstat - 137 + 67 ICCARM - 197 195 253 175 291 346 51 138 330 60 54 321 42 108 318 55 128 293 192 335 62 89 44 87 110 98 168 142 37 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 46 150 217 121 336 133 272 82 331 52 241 317 45 116 222 156 85 - - - BICOMP - 51 42 335 128 261 331 45 46 195 253 293 108 62 225 329 263 156 150 60 85 255 37 98 110 344 310 275 121 272 138 321 222 175 291 346 330 54 318 55 313 70 233 199 126 273 56 127 269 148 260 142 192 168 89 44 87 341 317 133 52 217 197 61 78 116 336 82 241 + 298 119 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 106 40 144 166 333 167 258 80 349 126 275 319 229 209 97 @@ -1271,52 +1289,61 @@ ICCARM - 240 + 254 BICOMP - 290 + 267 __cstat - 103 + 210 ICCARM - 197 195 253 175 291 346 51 60 54 315 109 42 108 318 55 128 293 192 335 62 89 44 87 110 98 168 142 37 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 217 121 336 133 272 82 331 52 241 317 45 150 116 182 251 125 46 222 156 209 342 100 236 85 43 349 + 152 87 233 58 303 348 128 121 104 314 86 119 83 306 151 174 291 77 329 146 69 246 208 70 220 39 200 116 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 144 166 333 167 258 80 349 126 275 319 229 40 209 74 232 195 106 160 50 156 337 72 242 97 123 345 BICOMP - 128 293 310 236 195 344 275 82 182 108 62 336 110 317 217 42 222 349 51 335 143 125 342 43 253 54 255 37 98 225 261 329 263 241 156 60 315 150 251 46 209 100 85 175 291 346 109 318 55 313 70 233 199 126 273 56 127 269 148 260 142 192 168 89 44 87 341 197 61 78 121 133 272 331 52 45 116 + 174 291 242 87 74 83 146 167 126 144 119 160 345 128 329 49 319 195 337 123 233 104 236 116 220 70 209 121 314 40 232 106 156 72 97 50 58 303 348 86 306 151 310 118 239 132 214 287 133 221 281 54 285 200 77 39 69 246 208 149 134 166 258 349 229 152 53 283 342 340 308 350 270 286 333 80 275 - $PROJ_DIR$\..\Core\Src\common.c + $PROJ_DIR$\startup_stm32l496xx.s + + + AARM + 235 + + + + + $PROJ_DIR$\..\Core\Src\position.c ICCARM - 157 + 73 BICOMP - 211 + 256 __cstat - 256 + 81 ICCARM - 197 195 253 175 291 346 51 60 54 182 42 108 318 55 128 293 192 335 62 89 44 87 110 98 168 142 37 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 217 121 336 133 272 82 331 52 241 317 45 150 116 125 315 109 46 222 156 342 + 152 87 233 58 303 348 128 121 104 74 119 83 306 151 174 291 77 329 146 69 246 208 70 220 39 200 116 236 310 53 118 239 132 283 342 214 287 340 149 255 224 133 308 221 350 281 134 54 270 285 286 160 106 40 144 166 333 167 258 80 349 126 275 319 229 209 50 97 317 72 BICOMP - 44 217 273 46 54 318 70 148 87 116 253 195 55 199 127 192 128 37 62 143 150 342 51 108 313 233 126 56 269 260 142 168 89 293 133 52 42 60 182 317 125 222 156 175 291 346 255 335 98 110 61 78 121 272 331 45 315 197 225 261 344 341 310 329 263 275 336 82 241 109 + 146 220 236 119 174 348 70 116 97 128 233 83 106 74 72 87 58 303 306 291 329 149 350 319 167 126 40 121 160 317 104 151 310 118 239 132 214 287 255 133 221 281 54 285 200 77 39 69 246 208 224 134 270 286 166 258 349 229 144 152 53 283 342 340 308 50 209 333 80 275 @@ -1324,303 +1351,288 @@ $PROJ_DIR$\CableMonitor_APP_V3.2\Exe\CableMonitor_APP_V3.2.out - OBJCOPY - 201 + ILINK + 211 - ILINK - 129 + OBJCOPY + 138 ILINK - 314 74 97 240 69 157 202 94 323 208 118 161 277 254 203 134 132 205 320 119 220 38 117 274 326 258 83 338 99 242 248 65 284 301 91 63 294 219 153 155 250 231 281 282 141 337 243 350 81 332 207 174 105 160 92 224 135 140 104 67 325 271 280 181 + 300 114 93 254 109 57 157 71 346 147 164 51 268 238 161 179 213 148 289 177 139 117 225 273 334 235 98 330 198 244 257 110 274 313 85 129 301 66 94 79 227 252 263 259 215 351 247 322 95 331 64 55 202 60 206 162 223 197 90 111 323 272 282 76 - $PROJ_DIR$\..\Core\Src\position.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\timers.c ICCARM - 93 + 197 BICOMP - 244 + 295 __cstat - 95 + 131 ICCARM - 197 195 253 175 291 346 51 60 54 182 42 108 318 55 128 293 192 335 62 89 44 87 110 98 168 142 37 255 313 225 70 233 199 261 344 126 273 341 61 245 131 56 310 127 329 269 78 148 263 260 275 222 46 150 217 121 336 133 272 82 331 52 241 317 45 116 156 85 333 100 + 163 87 233 58 303 348 128 339 144 116 146 166 333 167 258 80 349 70 126 275 319 229 120 89 BICOMP - 62 98 255 42 128 346 110 37 85 51 253 108 46 182 100 195 175 291 318 293 335 61 329 317 133 52 150 60 222 333 54 55 313 70 233 199 126 273 245 56 127 269 148 260 142 192 168 89 44 87 131 78 263 275 121 272 331 45 217 197 225 261 344 341 310 156 116 336 82 241 + 80 233 333 126 120 87 128 275 144 58 146 319 89 339 303 348 116 166 167 258 349 70 163 229 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart.c ICCARM - 69 + 64 BICOMP - 285 + 335 __cstat - 262 + 302 ICCARM - 60 195 253 175 291 346 51 54 116 62 37 44 87 110 217 121 336 133 272 82 331 52 241 317 45 218 107 184 57 114 68 293 192 335 89 98 168 108 318 55 128 142 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 195 62 346 317 128 68 57 335 293 341 336 52 108 44 184 253 175 291 51 272 331 45 98 255 37 116 217 218 114 54 87 110 121 133 82 241 107 60 192 168 89 318 55 313 70 233 199 126 273 56 127 269 148 260 142 225 261 344 310 329 263 275 61 78 + 87 174 236 146 220 70 340 116 233 291 83 329 306 151 310 118 239 132 214 287 133 221 281 54 285 200 77 39 69 246 58 303 348 208 128 53 283 342 308 350 270 286 149 134 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc_ex.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\croutine.c ICCARM - 337 + 157 BICOMP - 300 + 253 __cstat - 136 + 42 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 144 116 87 233 58 303 348 128 146 166 333 167 258 80 349 70 126 275 319 229 332 BICOMP - 273 44 87 128 70 148 346 344 341 55 199 127 192 195 253 225 261 318 313 233 126 56 269 260 142 168 89 175 291 62 51 255 293 37 108 335 98 110 310 329 263 275 61 78 + 258 87 146 348 70 333 128 349 319 116 166 167 233 303 144 332 58 80 275 126 229 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\queue.c ICCARM - 132 + 117 BICOMP - 305 + 234 __cstat - 77 + 296 ICCARM - 138 195 253 175 291 346 51 330 217 37 62 121 336 133 272 82 331 110 52 241 317 45 + 163 87 233 58 303 348 128 339 121 104 144 116 146 166 333 167 258 80 349 70 126 275 319 229 120 BICOMP - 195 272 253 121 110 217 330 291 331 317 51 346 37 133 62 138 175 336 82 241 52 45 + 275 233 128 319 339 303 333 80 126 348 87 104 146 121 144 120 58 116 166 167 258 349 70 229 163 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi.c ICCARM - 160 + 247 BICOMP - 212 + 153 __cstat - 39 + 78 ICCARM - 62 195 253 175 291 346 60 51 54 217 37 121 336 133 272 82 331 110 52 241 317 45 276 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 133 253 317 195 51 37 175 54 121 82 241 52 45 60 217 276 291 346 62 336 272 331 110 + 54 306 342 118 348 287 246 208 151 132 221 77 87 233 53 283 350 270 310 239 214 133 281 285 200 39 69 58 303 146 128 174 308 286 236 291 116 83 329 220 70 340 149 134 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\tasks.c ICCARM - 350 + 162 BICOMP - 79 + 91 __cstat - 196 + 290 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 163 87 233 58 303 348 128 339 121 104 144 116 146 166 333 167 258 80 349 70 126 275 319 229 89 65 152 BICOMP - 344 148 310 70 346 128 273 44 87 55 199 127 192 195 253 225 261 318 313 233 126 56 269 260 142 168 89 175 291 62 51 341 255 293 37 108 335 98 110 61 329 263 275 78 + 87 146 152 116 319 65 128 58 167 121 144 89 233 339 303 348 166 258 349 70 163 104 333 80 275 126 229 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\list.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2\cmsis_os2.c ICCARM - 205 + 109 BICOMP - 227 + 325 __cstat - 351 + 269 ICCARM - 138 195 253 175 291 346 51 330 217 37 62 121 336 133 272 82 331 110 52 241 45 + 121 87 233 58 303 348 128 104 209 146 116 246 208 70 144 166 333 167 258 80 349 126 275 319 229 37 89 88 120 216 127 291 77 329 69 220 39 83 306 151 174 200 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 195 133 45 51 175 346 37 62 217 253 330 291 121 272 331 110 138 336 82 241 52 + 87 146 348 319 174 127 120 329 291 340 333 126 83 246 88 233 58 303 128 258 349 229 220 236 116 209 144 37 216 104 208 70 166 167 80 275 89 121 77 39 69 306 151 310 118 239 132 214 287 133 221 281 54 285 200 53 283 342 308 350 270 286 149 134 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c ICCARM - 281 + 213 BICOMP - 216 + 307 __cstat - 343 + 136 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 163 87 233 58 303 348 128 339 144 116 146 166 333 167 258 80 349 70 126 275 319 229 BICOMP - 346 70 148 344 128 273 44 87 341 55 199 127 192 195 253 225 261 318 313 233 126 56 269 260 142 168 89 175 291 62 51 255 293 37 108 335 98 110 310 329 263 275 61 78 - - - - - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portasm.s - - - AARM - 220 - - - - - AARM - 121 + 87 258 233 166 70 144 339 303 349 319 128 348 116 167 146 163 58 333 80 275 126 229 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c ICCARM - 231 + 95 BICOMP - 84 + 311 __cstat - 221 + 137 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 128 37 253 341 255 62 98 110 195 293 108 335 318 55 313 70 233 199 126 273 56 127 269 148 260 142 192 168 89 44 175 291 346 87 51 225 261 344 310 329 263 275 61 78 + 174 329 291 83 146 233 350 270 236 116 220 70 87 308 286 306 151 310 118 239 132 214 287 133 221 281 54 285 200 77 39 69 246 58 303 348 208 128 53 283 342 340 149 134 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\queue.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc_ex.c ICCARM - 38 + 351 BICOMP - 234 + 316 __cstat - 299 + 219 ICCARM - 138 195 253 175 291 346 51 330 60 54 217 37 62 121 336 133 272 82 331 110 52 241 317 45 57 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 241 253 51 317 330 291 336 82 52 346 195 54 62 60 217 57 175 37 121 133 272 331 110 45 138 + 287 246 208 174 118 54 348 342 340 151 132 221 77 87 233 53 283 306 310 239 214 133 281 285 200 39 69 58 303 146 128 236 291 116 83 329 220 70 308 350 270 286 149 134 @@ -1629,322 +1641,310 @@ ICCARM - 282 + 259 BICOMP - 159 + 62 __cstat - 151 + 61 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 225 199 253 128 55 127 192 195 261 341 70 273 148 44 346 87 344 318 313 233 126 56 269 260 142 168 89 175 291 62 51 255 293 37 108 335 98 110 310 329 263 275 61 78 + 53 132 233 174 151 221 77 87 283 340 118 287 54 246 348 208 342 306 310 239 214 133 281 285 200 39 69 58 303 146 128 236 291 116 83 329 220 70 308 350 270 286 149 134 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\croutine.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim_ex.c ICCARM - 202 + 331 BICOMP - 230 + 141 __cstat - 162 + 218 ICCARM - 217 37 195 253 175 291 346 51 62 121 336 133 272 82 331 110 52 241 317 45 334 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 272 195 62 346 110 336 51 331 317 37 121 133 253 291 217 334 175 82 241 52 45 + 151 77 283 221 87 174 132 233 53 340 118 287 54 246 348 208 342 306 310 239 214 133 281 285 200 39 69 58 303 146 128 236 291 116 83 329 220 70 308 350 270 286 149 134 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr_ex.c ICCARM - 118 + 252 BICOMP - 306 + 201 __cstat - 289 + 140 ICCARM - 138 195 253 175 291 346 51 330 217 37 62 121 336 133 272 82 331 110 52 241 317 45 107 218 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 241 195 51 107 336 253 82 52 45 217 175 62 317 218 330 291 346 37 121 133 272 331 110 138 + 174 116 233 340 236 146 220 70 87 291 83 329 306 151 310 118 239 132 214 287 133 221 281 54 285 200 77 39 69 246 58 303 348 208 128 53 283 342 308 350 270 286 149 134 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc.c ICCARM - 332 + 215 BICOMP - 204 + 293 __cstat - 120 + 226 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 55 192 261 127 195 128 199 253 225 341 70 273 148 44 346 87 344 318 313 233 126 56 269 260 142 168 89 175 291 62 51 255 293 37 108 335 98 110 310 329 263 275 61 78 + 287 246 208 174 118 54 348 342 340 151 132 221 77 87 233 53 283 306 310 239 214 133 281 285 200 39 69 58 303 146 128 236 291 116 83 329 220 70 308 350 270 286 149 134 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\port.c ICCARM - 243 + 177 BICOMP - 206 + 344 __cstat - 101 + 199 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 349 70 233 58 303 348 126 144 116 87 128 146 166 333 167 258 80 275 319 229 BICOMP - 148 318 344 70 346 273 44 87 55 199 127 192 195 253 225 261 329 263 313 233 126 56 269 260 142 168 89 175 291 62 51 128 310 275 255 293 37 108 335 98 110 341 61 78 + 126 87 233 319 348 146 144 70 58 303 333 128 258 349 116 166 167 80 275 229 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portasm.s - ICCARM - 81 - - - BICOMP - 297 - - - __cstat - 59 + AARM + 139 - ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 - - - BICOMP - 128 335 293 108 62 253 329 263 255 37 98 110 195 310 275 318 55 313 70 233 199 126 273 56 127 269 148 260 142 192 168 89 44 175 291 346 87 51 225 261 344 341 61 78 + AARM + 166 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\port.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc.c ICCARM - 119 + 263 BICOMP - 340 + 45 __cstat - 102 + 324 ICCARM - 331 110 253 175 291 346 52 217 37 195 51 62 121 336 133 272 82 241 317 45 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 52 195 253 317 346 62 217 110 175 291 336 51 272 331 37 121 133 82 241 45 + 348 118 54 342 174 287 246 208 340 151 132 221 77 87 233 53 283 306 310 239 214 133 281 285 200 39 69 58 303 146 128 236 291 116 83 329 220 70 308 350 270 286 149 134 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\tasks.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c ICCARM - 224 + 164 BICOMP - 96 + 312 __cstat - 298 + 280 ICCARM - 138 195 253 175 291 346 51 330 60 54 217 37 62 121 336 133 272 82 331 110 52 241 317 45 107 167 197 + 163 87 233 58 303 348 128 339 144 116 146 166 333 167 258 80 349 70 126 275 319 229 89 37 BICOMP - 195 62 197 37 317 167 51 175 133 60 217 107 253 330 291 346 121 272 331 110 138 54 336 82 241 52 45 + 275 87 128 89 333 233 80 126 229 144 58 146 319 37 339 303 348 116 166 167 258 349 70 163 - $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\timers.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c ICCARM - 140 + 60 BICOMP - 307 + 159 __cstat - 50 + 125 ICCARM - 138 195 253 175 291 346 51 330 217 37 62 121 336 133 272 82 331 110 52 241 317 45 57 107 + 146 87 233 58 303 348 121 128 104 144 116 166 333 167 258 80 349 70 126 275 319 229 284 BICOMP - 82 253 336 52 57 195 51 241 217 175 62 317 107 330 291 346 37 121 133 272 331 110 138 45 + 167 233 319 87 128 116 58 104 166 80 275 126 229 121 144 284 303 348 146 333 258 349 70 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c ICCARM - 174 + 322 BICOMP - 124 + 112 __cstat - 213 + 38 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 127 195 55 192 261 128 199 253 225 70 273 148 44 346 87 344 318 313 233 126 56 269 260 142 168 89 175 291 62 51 341 255 293 37 108 335 98 110 61 310 329 263 275 78 + 342 54 308 118 348 174 287 246 208 151 132 221 77 87 233 53 283 306 310 239 214 133 281 285 200 39 69 58 303 146 128 340 236 291 116 83 329 220 70 149 350 270 286 134 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rtc.c + $PROJ_DIR$\..\Middlewares\Third_Party\FreeRTOS\Source\list.c ICCARM - 141 + 148 BICOMP - 319 + 46 __cstat - 238 + 347 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 163 87 233 58 303 348 128 339 144 116 146 166 333 167 258 80 349 70 126 275 229 BICOMP - 273 44 87 128 70 148 346 344 341 55 199 127 192 195 253 225 261 318 313 233 126 56 269 260 142 168 89 175 291 62 51 255 293 37 108 335 98 110 310 329 263 275 61 78 + 87 167 229 128 58 348 116 146 144 233 339 303 166 258 349 70 163 333 80 275 126 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart_ex.c ICCARM - 207 + 55 BICOMP - 322 + 207 __cstat - 311 + 59 ICCARM - 108 318 55 128 293 192 335 62 195 253 175 291 346 89 44 87 110 98 168 142 37 51 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 + 83 306 151 174 291 77 329 146 87 233 58 303 348 69 246 208 70 220 39 200 116 128 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 BICOMP - 195 128 255 62 98 110 341 37 253 293 108 335 318 55 313 70 233 199 126 273 56 127 269 148 260 142 192 168 89 44 175 291 346 87 51 225 261 344 310 329 263 275 61 78 + 221 87 151 77 283 174 132 233 53 118 287 54 246 348 208 342 306 310 239 214 133 281 285 200 39 69 58 303 146 128 340 236 291 116 83 329 220 70 149 308 350 270 286 134 @@ -1953,21 +1953,21 @@ BICOMP - 288 + 266 __cstat - 266 + 336 ICCARM - 197 195 253 175 291 346 51 60 54 182 42 108 318 55 128 293 192 335 62 89 44 87 110 98 168 142 37 255 313 225 70 233 199 261 344 126 273 341 61 56 310 127 329 269 78 148 263 260 275 46 150 217 121 336 133 272 82 331 52 241 317 45 116 222 156 47 + 152 87 233 58 303 348 128 121 104 74 119 83 306 151 174 291 77 329 146 69 246 208 70 220 39 200 116 236 310 53 118 239 132 283 342 214 287 340 149 133 308 221 350 281 134 54 270 285 286 106 40 144 166 333 167 258 80 349 126 275 319 229 209 160 50 107 BICOMP - 54 108 62 128 293 253 150 222 195 335 42 182 51 255 37 98 110 341 46 217 60 47 175 291 346 318 55 313 70 233 199 126 273 56 127 269 148 260 142 192 168 89 44 87 225 261 344 310 329 263 275 116 336 82 241 197 61 78 317 121 133 272 331 52 45 156 + 104 83 146 174 291 233 40 160 87 329 119 74 128 236 116 220 70 340 106 144 121 107 58 303 348 306 151 310 118 239 132 214 287 133 221 281 54 285 200 77 39 69 246 208 53 283 342 308 350 270 286 209 333 80 275 152 149 134 319 166 167 258 349 126 229 50 @@ -1976,25 +1976,25 @@ ICCARM - 312 + 309 BICOMP - 115 + 212 __cstat - 316 + 315 ICCARM - 197 195 253 175 291 346 51 60 54 348 42 108 318 55 128 293 192 335 62 89 44 87 110 98 168 142 37 255 313 225 70 233 199 261 344 126 273 341 61 245 131 56 310 127 329 269 78 148 263 260 275 251 46 150 217 121 336 133 272 82 331 52 241 317 45 116 222 156 100 85 106 + 152 87 233 58 303 348 128 121 104 338 119 83 306 151 174 291 77 329 146 69 246 208 70 220 39 200 116 236 310 53 118 239 132 283 342 214 287 340 149 255 224 133 308 221 350 281 134 54 270 285 286 232 106 40 144 166 333 167 258 80 349 126 275 319 229 209 160 50 72 97 205 BICOMP - 51 128 150 106 335 62 108 46 195 318 293 253 217 42 348 100 54 255 37 98 110 61 329 60 251 222 85 175 291 346 55 313 70 233 199 126 273 245 56 127 269 148 260 142 192 168 89 44 87 131 78 263 275 116 336 82 241 317 197 225 261 344 341 310 121 133 272 331 52 45 156 + 128 174 40 205 329 146 83 106 87 306 291 233 144 119 338 72 104 236 116 220 70 149 350 121 232 160 97 58 303 348 151 310 118 239 132 214 287 255 133 221 281 54 285 200 77 39 69 246 208 224 134 270 286 209 333 80 275 319 152 53 283 342 340 308 166 167 258 349 126 229 50 diff --git a/CablePositioning_APP_V1.0/EWARM/settings/Project.wsdt b/CablePositioning_APP_V1.0/EWARM/settings/Project.wsdt index 3bd9abe..e1e0d77 100644 --- a/CablePositioning_APP_V1.0/EWARM/settings/Project.wsdt +++ b/CablePositioning_APP_V1.0/EWARM/settings/Project.wsdt @@ -86,7 +86,7 @@ 1 1 1 - D10900000E0040E10000020000005984000002000000568400000200000010860000100000000F810000010000005F860000070000000C8100008A09000055840000030000000E810000080000000B8100000E0000000584000003000000108400001A00000046810000010000000D81000006000000 + D40900000E0040E10000020000005984000002000000568400000200000010860000100000000F810000010000005F860000070000000C8100008D09000055840000030000000E810000080000000B8100000E0000000584000003000000108400001A00000046810000010000000D81000006000000 49000D8400000F84000008840000FFFFFFFF54840000328100001C810000098400007784000007840000808C000044D50000538400000088000001880000028800000388000004880000058800001C8F00001D8F00001F8F0000208F0000218F00002AE10000118F000055840000568400005984000001B0000002B0000003B0000004B0000005B0000006B0000007B0000008B0000009B000000AB000000BB000000CB000000DB000000EB0000000B000002481000040E100000C840000338400007884000011840000008200001C820000018200006786000020DE000021DE000026DE000028DE000023DE000022DE000024DE000027DE000025DE000020920000289200002992000037920000389200003492000033920000259200001E9200001D920000 diff --git a/CablePositioning_IAP_V1.0/EWARM/CableMonitor_V3.2.dep b/CablePositioning_IAP_V1.0/EWARM/CableMonitor_V3.2.dep index 5d73c5f..2ced533 100644 --- a/CablePositioning_IAP_V1.0/EWARM/CableMonitor_V3.2.dep +++ b/CablePositioning_IAP_V1.0/EWARM/CableMonitor_V3.2.dep @@ -5,177 +5,177 @@ CableMonitor_V3.2 - $PROJ_DIR$\..\Src\ymodem.c - $PROJ_DIR$\..\Src\main.c - $PROJ_DIR$\..\Src\stm32l4xx_it.c + $PROJ_DIR$\..\Src\stm32l4xx_hal_msp.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal.c + $PROJ_DIR$\..\Src\menu.c $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc.c $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc_ex.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c - $PROJ_DIR$\..\Src\menu.c $PROJ_DIR$\startup_stm32l496xx.s + $PROJ_DIR$\..\Src\common.c $PROJ_DIR$\..\Src\flash_if.c - $PROJ_DIR$\..\Src\stm32l4xx_hal_msp.c + $PROJ_DIR$\..\Src\ymodem.c + $PROJ_DIR$\..\Src\stm32l4xx_it.c $PROJ_DIR$\..\Src\system_stm32l4xx.c $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ex.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ramfunc.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c - $PROJ_DIR$\..\Src\common.c + $PROJ_DIR$\..\Src\main.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_flash_ex.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_gpio.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr_ex.c + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_rcc_ex.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c.c $PROJ_DIR$\CableMonitor_V3.2\Obj\ymodem.__cstat.et - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_flash_ex.o - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_cortex.pbi + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_pwr.o + $TOOLKIT_DIR$\inc\c\ycheck.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_msp.o + $PROJ_DIR$\CableMonitor_V3.2\Obj\CableMonitor_V3.2.pbd + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_it.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ramfunc.c $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_dma_ex.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c_ex.c - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_tim_ex.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_cortex.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart.c $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart_ex.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h - $TOOLKIT_DIR$\inc\c\ycheck.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_exti.c - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_rcc_ex.o + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_tim_ex.__cstat.et $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_pwr.pbi - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_msp.o - $PROJ_DIR$\CableMonitor_V3.2\Obj\CableMonitor_V3.2.pbd - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_cortex.c $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim_ex.c - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_it.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h - $TOOLKIT_DIR$\inc\c\ysizet.h - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_uart.o - $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$\..\Inc\menu.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_i2c_ex.o - $PROJ_DIR$\CableMonitor_V3.2\Obj\startup_stm32l496xx.o - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_tim.pbi + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_exti.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c_ex.c + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_cortex.pbi + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_pwr.pbi + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h $PROJ_DIR$\CableMonitor_V3.2\Obj\system_stm32l4xx.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_i2c.__cstat.et - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_rcc_ex.__cstat.et + $TOOLKIT_DIR$\inc\c\stdio.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_dma_ex.__cstat.et + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_pwr_ex.pbi + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_flash_ex.pbi + $PROJ_DIR$\..\Inc\stm32l4xx_hal_conf.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_gpio.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\menu.pbi + $PROJ_DIR$\CableMonitor_V3.2\Obj\flash_if.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h + $TOOLKIT_DIR$\inc\c\ysizet.h $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal.pbi - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_uart_ex.__cstat.et $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_pwr.__cstat.et - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_exti.__cstat.et - $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $PROJ_DIR$\CableMonitor_V3.2\Obj\menu.pbi + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_uart.o $PROJ_DIR$\CableMonitor_V3.2\Obj\main.__cstat.et - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_flash_ex.pbi - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_dma_ex.__cstat.et - $PROJ_DIR$\..\Inc\stm32l4xx_hal_conf.h $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.o + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_cortex.__cstat.et + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_rcc_ex.__cstat.et + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_exti.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_tim.pbi + $PROJ_DIR$\CableMonitor_V3.2\Obj\startup_stm32l496xx.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_i2c_ex.o $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_uart_ex.o + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_uart_ex.__cstat.et + $PROJ_DIR$\..\Inc\menu.h $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_dma_ex.o - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_cortex.__cstat.et - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_gpio.o - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_iccarm.h - $TOOLKIT_DIR$\inc\c\stdio.h - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_pwr_ex.pbi - $PROJ_DIR$\CableMonitor_V3.2\Obj\flash_if.__cstat.et - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_rcc.pbi - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_flash.__cstat.et - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_flash.o - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h - $TOOLKIT_DIR$\inc\c\iccarm_builtin.h - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_it.o + $PROJ_DIR$\CableMonitor_V3.2\Obj\flash_if.pbi + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_spi_ex.pbi $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h $TOOLKIT_DIR$\lib\dl7M_tlf.a - $PROJ_DIR$\CableMonitor_V3.2\List\CableMonitor_V3.2.map - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_spi_ex.pbi + $PROJ_DIR$\CableMonitor_V3.2\Obj\menu.o + $TOOLKIT_DIR$\inc\c\DLib_Product_string.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_flash.__cstat.et + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_gpio.pbi + $TOOLKIT_DIR$\inc\c\iccarm_builtin.h $TOOLKIT_DIR$\inc\c\stdarg.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\common.o + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_tim.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h + $PROJ_DIR$\CableMonitor_V3.2\List\CableMonitor_V3.2.map + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_it.o $TOOLKIT_DIR$\inc\c\yvals.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_rcc.pbi + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_flash.o $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_spi.pbi - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h $PROJ_DIR$\stm32l496xx_flash.icf - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_gpio.pbi + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_rcc.o + $PROJ_DIR$\CableMonitor_V3.2\Obj\flash_if.o + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal.o $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_gpio.__cstat.et $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_dma.__cstat.et - $PROJ_DIR$\CableMonitor_V3.2\Obj\flash_if.pbi $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h $PROJ_DIR$\CableMonitor_V3.2\Obj\ymodem.pbi $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_tim_ex.pbi - $TOOLKIT_DIR$\inc\c\DLib_Product_string.h - $PROJ_DIR$\CableMonitor_V3.2\Obj\menu.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h - $PROJ_DIR$\CableMonitor_V3.2\Obj\common.o - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_tim.__cstat.et - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_rcc.o - $PROJ_DIR$\CableMonitor_V3.2\Obj\flash_if.o - $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h - $PROJ_DIR$\CableMonitor_V3.2\Obj\main.o - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_spi_ex.o + $PROJ_DIR$\CableMonitor_V3.2\Obj\system_stm32l4xx.__cstat.et + $PROJ_DIR$\CableMonitor_V3.2\Obj\common.pbi + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_uart.pbi + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\common.__cstat.et + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_i2c.pbi + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_flash.pbi + $PROJ_DIR$\..\Inc\stm32l4xx_it.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_dma.o + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_cortex.o + $TOOLKIT_DIR$\inc\c\DLib_Product.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\main.pbi + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h + $TOOLKIT_DIR$\inc\c\stddef.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\menu.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_i2c.o + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_flash_ex.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_spi.o + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h + $TOOLKIT_DIR$\lib\rt7M_tl.a + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_msp.__cstat.et + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h + $TOOLKIT_DIR$\lib\shb_l.a + $PROJ_DIR$\..\Inc\main.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_tim_ex.o + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_spi.__cstat.et + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_pwr_ex.__cstat.et + $TOOLKIT_DIR$\inc\c\stdint.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.pbi + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_i2c_ex.pbi + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_rcc.__cstat.et + $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_exti.pbi - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\ymodem.o $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_it.pbi - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_uart_ex.pbi $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_i2c_ex.__cstat.et - $PROJ_DIR$\..\Inc\flash_if.h - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_msp.pbi + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_rcc_ex.pbi $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_spi_ex.__cstat.et + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.__cstat.et + $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_compiler.h $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_uart.__cstat.et - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_rcc_ex.pbi - $PROJ_DIR$\CableMonitor_V3.2\Obj\system_stm32l4xx.o $PROJ_DIR$\CableMonitor_V3.2\Exe\CableMonitor_V3.2.bin - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_exti.o - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_i2c_ex.pbi - $PROJ_DIR$\CableMonitor_V3.2\Obj\ymodem.o - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_msp.pbi - $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\mpu_armv7.h $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_pwr_ex.o + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_dma.pbi + $PROJ_DIR$\CableMonitor_V3.2\Obj\main.o + $PROJ_DIR$\..\Inc\flash_if.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\system_stm32l4xx.o + $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h + $PROJ_DIR$\..\Drivers\CMSIS\Include\core_cm4.h + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_spi_ex.o + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_uart_ex.pbi $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_tim.o $TOOLKIT_DIR$\lib\m7M_tls.a - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_dma.pbi $PROJ_DIR$\CableMonitor_V3.2\Exe\CableMonitor_V3.2.out - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_rcc.__cstat.et - $TOOLKIT_DIR$\inc\c\DLib_Config_Full.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h - $PROJ_DIR$\..\Drivers\CMSIS\Include\cmsis_version.h - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_uart.pbi - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_i2c.o - $PROJ_DIR$\..\Inc\main.h - $TOOLKIT_DIR$\inc\c\stddef.h - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_tim_ex.o - $TOOLKIT_DIR$\lib\shb_l.a - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_spi.o - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h - $PROJ_DIR$\CableMonitor_V3.2\Obj\common.__cstat.et - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_spi.__cstat.et - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_pwr_ex.__cstat.et - $TOOLKIT_DIR$\inc\c\stdint.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h - $TOOLKIT_DIR$\inc\c\DLib_Product.h - $PROJ_DIR$\..\Inc\stm32l4xx_it.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h - $PROJ_DIR$\CableMonitor_V3.2\Obj\main.pbi - $PROJ_DIR$\CableMonitor_V3.2\Obj\menu.__cstat.et - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_flash_ex.__cstat.et - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_msp.__cstat.et - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_flash_ramfunc.pbi - $PROJ_DIR$\CableMonitor_V3.2\Obj\system_stm32l4xx.__cstat.et - $PROJ_DIR$\CableMonitor_V3.2\Obj\common.pbi - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_i2c.pbi - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_flash.pbi - $PROJ_DIR$\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h - $TOOLKIT_DIR$\lib\rt7M_tl.a - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_dma.o - $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_cortex.o + $PROJ_DIR$\CableMonitor_V3.2\Obj\stm32l4xx_hal_exti.o $PROJ_DIR$\..\Inc\ymodem.h $PROJ_DIR$\..\Inc\common.h $TOOLKIT_DIR$\inc\c\string.h @@ -185,529 +185,529 @@ ILINK - 134 86 + 169 90 - $PROJ_DIR$\..\Src\ymodem.c + $PROJ_DIR$\..\Src\stm32l4xx_hal_msp.c ICCARM - 127 + 28 BICOMP - 99 + 150 __cstat - 18 + 131 ICCARM - 117 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 172 171 173 101 141 48 + 134 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 43 119 155 150 117 141 168 142 89 101 171 67 84 129 138 31 62 136 44 55 172 173 48 146 103 54 160 95 154 151 81 137 34 113 166 112 152 73 30 108 82 49 91 40 + 143 85 124 71 102 127 157 89 54 111 38 27 132 93 120 121 105 163 92 52 129 79 122 164 138 57 16 134 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Src\main.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c ICCARM - 109 + 165 BICOMP - 156 + 78 __cstat - 64 + 152 ICCARM - 141 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 172 117 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 168 150 43 84 119 67 129 89 117 155 142 138 31 62 136 44 55 172 146 103 54 160 95 154 151 81 137 34 113 166 112 152 73 30 141 108 82 49 91 40 + 85 164 71 157 89 79 132 27 52 129 122 138 92 124 93 54 120 102 121 111 105 143 38 163 127 57 16 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Src\stm32l4xx_it.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal.c ICCARM - 83 + 100 BICOMP - 114 + 59 __cstat - 42 + 104 ICCARM - 141 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 153 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 84 43 168 31 129 89 30 67 155 142 150 112 152 73 153 146 103 54 160 95 154 151 81 137 34 113 166 138 62 136 44 55 119 141 108 82 49 91 40 + 105 85 71 120 157 89 93 121 163 27 124 54 102 111 143 38 127 92 52 129 79 122 132 164 138 57 16 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc.c + $PROJ_DIR$\..\Src\menu.c ICCARM - 106 + 81 BICOMP - 77 + 55 __cstat - 135 + 123 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 134 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 172 161 75 171 BICOMP - 129 82 43 108 91 84 168 31 67 155 142 150 89 146 103 54 160 95 154 151 81 137 34 113 166 49 40 138 112 62 136 152 73 44 30 55 119 + 127 102 171 124 143 54 111 38 92 161 93 120 121 105 163 157 85 27 71 89 132 172 75 52 129 79 122 164 138 57 16 134 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc.c ICCARM - 33 + 98 BICOMP - 122 + 94 __cstat - 57 + 141 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 168 82 43 84 108 91 129 31 67 155 142 150 89 146 103 54 160 95 154 151 81 137 34 113 166 49 40 138 112 62 136 152 73 44 30 55 119 + 164 85 71 157 89 79 132 27 52 129 122 138 92 124 93 54 120 102 121 111 105 143 38 163 127 57 16 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc_ex.c ICCARM - 79 + 22 BICOMP - 165 + 151 __cstat - 78 + 65 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 103 82 43 154 113 108 91 160 81 31 146 54 95 151 137 34 166 89 67 155 84 142 168 129 150 49 40 138 112 62 136 152 73 44 30 55 119 + 132 85 71 79 157 89 164 27 52 129 122 138 92 124 93 54 120 102 121 111 105 143 38 163 127 57 16 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Src\menu.c + $PROJ_DIR$\startup_stm32l496xx.s + + + AARM + 69 + + + + + $PROJ_DIR$\..\Src\common.c ICCARM - 102 + 87 BICOMP - 63 + 109 __cstat - 157 + 112 ICCARM - 141 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 172 117 48 171 + 48 27 92 67 142 118 58 173 82 134 132 52 124 71 79 163 164 138 144 154 45 85 157 127 38 122 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 75 161 171 172 BICOMP - 166 95 171 146 137 54 151 34 89 117 103 160 154 81 113 108 82 31 43 91 168 172 48 67 155 84 142 129 150 49 40 141 138 112 62 136 152 73 44 30 55 119 + 52 132 58 138 75 27 71 79 92 86 161 82 164 89 171 173 134 172 67 142 118 124 93 54 120 102 121 111 105 143 129 122 157 85 57 16 48 38 163 127 144 154 45 34 70 145 - - $PROJ_DIR$\startup_stm32l496xx.s - - - AARM - 51 - - - $PROJ_DIR$\..\Src\flash_if.c ICCARM - 107 + 99 BICOMP - 97 + 77 __cstat - 76 + 56 ICCARM - 141 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 172 117 + 134 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 172 161 BICOMP - 155 150 43 119 142 89 117 168 67 84 129 138 31 62 136 44 55 172 146 103 54 160 95 154 151 81 137 34 113 166 112 152 73 30 141 108 82 49 91 40 + 129 138 71 145 122 92 161 132 52 79 164 144 27 67 142 58 70 172 124 93 54 120 102 121 111 105 143 38 163 127 154 118 45 34 134 157 85 57 89 16 - $PROJ_DIR$\..\Src\stm32l4xx_hal_msp.c + $PROJ_DIR$\..\Src\ymodem.c ICCARM - 36 + 147 BICOMP - 128 + 106 __cstat - 159 + 24 ICCARM - 141 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 161 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 172 171 173 82 134 75 BICOMP - 137 82 146 43 95 166 108 91 54 151 34 31 168 103 160 154 81 113 89 67 155 84 142 129 150 49 40 141 138 112 62 136 152 73 44 30 55 119 + 71 145 129 138 161 134 132 122 92 82 171 52 79 164 144 27 67 142 58 70 172 173 75 124 93 54 120 102 121 111 105 143 38 163 127 154 118 45 34 157 85 57 89 16 - $PROJ_DIR$\..\Src\system_stm32l4xx.c + $PROJ_DIR$\..\Src\stm32l4xx_it.c ICCARM - 123 + 91 BICOMP - 53 + 148 __cstat - 162 + 30 ICCARM - 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 168 67 146 43 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 134 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 115 BICOMP - 168 108 43 82 84 91 129 31 150 89 113 166 67 155 142 49 40 138 112 62 136 152 73 146 103 54 160 95 154 151 81 137 34 44 30 55 119 + 79 71 132 27 164 92 34 52 129 122 138 154 118 45 115 124 93 54 120 102 121 111 105 143 38 163 127 144 67 142 58 70 145 134 157 85 57 89 16 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi.c + $PROJ_DIR$\..\Src\system_stm32l4xx.c ICCARM - 145 + 162 BICOMP - 90 + 46 __cstat - 148 + 108 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 132 52 124 71 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 142 43 155 150 67 84 168 129 89 49 40 146 103 54 160 95 154 151 81 137 34 113 166 108 82 31 91 138 112 62 136 152 73 44 30 55 119 + 132 157 71 85 79 89 164 27 138 92 163 127 52 129 122 57 16 144 154 67 142 118 45 124 93 54 120 102 121 111 105 143 38 58 34 70 145 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi.c ICCARM - 19 + 128 BICOMP - 65 + 96 __cstat - 158 + 136 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 82 168 43 84 108 91 129 31 67 155 142 150 89 146 103 54 160 95 154 151 81 137 34 113 166 49 40 138 112 62 136 152 73 44 30 55 119 + 122 71 129 138 52 79 132 164 92 57 16 124 93 54 120 102 121 111 105 143 38 163 127 157 85 27 89 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal.c + $PROJ_DIR$\..\Src\main.c ICCARM - 80 + 160 BICOMP - 58 + 119 __cstat - 98 + 62 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 134 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 172 161 BICOMP - 81 82 43 160 108 91 103 154 113 31 146 54 95 151 137 34 166 89 67 155 84 142 168 129 150 49 40 138 112 62 136 152 73 44 30 55 119 + 132 138 71 79 145 52 164 92 161 129 122 144 27 67 142 58 70 172 124 93 54 120 102 121 111 105 143 38 163 127 154 118 45 34 134 157 85 57 89 16 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ramfunc.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c ICCARM - 68 + 95 BICOMP - 161 + 114 __cstat - 118 + 83 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 82 155 150 43 67 108 91 142 31 84 168 129 89 146 103 54 160 95 154 151 81 137 34 113 166 49 40 138 112 62 136 152 73 44 30 55 119 + 93 85 71 121 163 157 89 120 105 27 124 54 102 111 143 38 127 92 52 129 79 122 132 164 138 57 16 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma_ex.c ICCARM - 110 + 76 BICOMP - 87 + 32 __cstat - 120 + 49 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 82 129 43 108 91 84 168 31 67 155 142 150 89 146 103 54 160 95 154 151 81 137 34 113 166 49 40 138 112 62 136 152 73 44 30 55 119 + 85 105 71 120 157 89 93 121 163 27 124 54 102 111 143 38 127 92 52 129 79 122 132 164 138 57 16 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Src\common.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma.c ICCARM - 104 + 116 BICOMP - 163 + 159 __cstat - 147 + 103 ICCARM - 74 31 89 62 136 152 44 173 101 141 168 67 146 43 84 113 129 150 138 112 73 82 108 166 34 142 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 48 117 171 172 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 67 168 44 150 48 31 43 84 89 88 117 101 129 91 171 173 141 172 62 136 152 146 103 54 160 95 154 151 81 137 155 142 108 82 49 40 74 34 113 166 138 112 73 30 55 119 + 52 85 71 129 138 157 89 122 27 79 132 164 92 124 93 54 120 102 121 111 105 143 38 163 127 57 16 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_gpio.c ICCARM - 130 + 53 BICOMP - 75 + 84 __cstat - 149 + 101 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 160 82 43 81 108 91 103 154 113 31 146 54 95 151 137 34 166 89 67 155 84 142 168 129 150 49 40 138 112 62 136 152 73 44 30 55 119 + 163 85 121 71 93 157 89 120 105 27 124 54 102 111 143 38 127 92 52 129 79 122 132 164 138 57 16 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c ICCARM - 50 + 26 BICOMP - 126 + 44 __cstat - 116 + 60 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 82 81 43 160 108 91 103 154 113 31 146 54 95 151 137 34 166 89 67 155 84 142 168 129 150 49 40 138 112 62 136 152 73 44 30 55 119 + 93 85 71 121 163 157 89 120 105 27 124 54 102 111 143 38 127 92 52 129 79 122 132 164 138 57 16 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_cortex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr_ex.c ICCARM - 170 + 158 BICOMP - 20 + 50 __cstat - 71 + 137 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 82 129 43 108 91 84 168 31 67 155 142 150 89 146 103 54 160 95 154 151 81 137 34 113 166 49 40 138 112 62 136 152 73 44 30 55 119 + 120 85 71 105 157 89 93 121 163 27 124 54 102 111 143 38 127 92 52 129 79 122 132 164 138 57 16 144 154 67 142 118 45 58 34 70 145 @@ -716,61 +716,61 @@ ICCARM - 140 + 125 BICOMP - 164 + 113 __cstat - 56 + 47 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 82 81 43 160 108 91 103 154 113 31 146 54 95 151 137 34 166 89 67 155 84 142 168 129 150 49 40 138 112 62 136 152 73 44 30 55 119 + 85 105 71 120 157 89 93 121 163 27 124 54 102 111 143 38 127 92 52 129 79 122 132 164 138 57 16 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c ICCARM - 169 + 167 BICOMP - 133 + 68 __cstat - 96 + 88 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 67 82 43 155 150 108 91 142 31 84 168 129 89 146 103 54 160 95 154 151 81 137 34 113 166 49 40 138 112 62 136 152 73 44 30 55 119 + 85 105 71 120 157 89 93 121 163 27 124 54 102 111 143 38 127 92 52 129 79 122 132 164 138 57 16 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ramfunc.c ICCARM - 45 + 63 BICOMP @@ -778,206 +778,206 @@ __cstat - 121 + 153 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 113 82 154 43 103 108 91 160 81 31 146 54 95 151 137 34 166 89 67 155 84 142 168 129 150 49 40 138 112 62 136 152 73 44 30 55 119 + 85 129 138 71 52 157 89 122 27 79 132 164 92 124 93 54 120 102 121 111 105 143 38 163 127 57 16 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ex.c ICCARM - 69 + 17 BICOMP - 115 + 51 __cstat - 59 + 126 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 43 84 82 168 108 91 129 31 67 155 142 150 89 146 103 54 160 95 154 151 81 137 34 113 166 49 40 138 112 62 136 152 73 44 30 55 119 + 85 132 71 79 157 89 164 27 52 129 122 138 92 124 93 54 120 102 121 111 105 143 38 163 127 57 16 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_exti.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart.c ICCARM - 125 + 61 BICOMP - 111 + 110 __cstat - 61 + 155 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 54 82 34 43 151 108 91 146 95 137 166 31 103 160 154 81 113 89 67 155 84 142 168 129 150 49 40 138 112 62 136 152 73 44 30 55 119 + 163 85 121 71 93 157 89 120 105 27 124 54 102 111 143 38 127 92 52 129 79 122 132 164 138 57 16 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart_ex.c ICCARM - 131 + 73 BICOMP - 52 + 166 __cstat - 105 + 74 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 82 81 43 160 108 91 103 154 113 31 146 54 95 151 137 34 166 89 67 155 84 142 168 129 150 49 40 138 112 62 136 152 73 44 30 55 119 + 71 79 85 132 157 89 164 27 52 129 122 138 92 124 93 54 120 102 121 111 105 143 38 163 127 57 16 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_cortex.c ICCARM - 143 + 117 BICOMP - 100 + 43 __cstat - 24 + 64 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 82 81 43 160 108 91 103 154 113 31 146 54 95 151 137 34 166 89 67 155 84 142 168 129 150 49 40 138 112 62 136 152 73 44 30 55 119 + 85 164 71 157 89 79 132 27 52 129 122 138 92 124 93 54 120 102 121 111 105 143 38 163 127 57 16 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim_ex.c ICCARM - 21 + 135 BICOMP - 35 + 107 __cstat - 60 + 37 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 103 82 43 154 113 108 91 160 81 31 146 54 95 151 137 34 166 89 67 155 84 142 168 129 150 49 40 138 112 62 136 152 73 44 30 55 119 + 85 105 71 120 157 89 93 121 163 27 124 54 102 111 143 38 127 92 52 129 79 122 132 164 138 57 16 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_gpio.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_exti.c ICCARM - 72 + 170 BICOMP - 93 + 146 __cstat - 94 + 66 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 113 82 154 43 103 108 91 160 81 31 146 54 95 151 137 34 166 89 67 155 84 142 168 129 150 49 40 138 112 62 136 152 73 44 30 55 119 + 54 85 38 71 111 157 89 124 102 143 127 27 93 120 121 105 163 92 52 129 79 122 132 164 138 57 16 144 154 67 142 118 45 58 34 70 145 - $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma_ex.c + $PROJ_DIR$\..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c_ex.c ICCARM - 70 + 72 BICOMP - 22 + 140 __cstat - 66 + 149 ICCARM - 168 67 146 43 84 113 129 150 31 89 62 136 152 138 112 73 82 108 166 34 142 44 155 103 30 54 160 95 154 49 55 151 91 81 119 137 40 + 132 52 124 71 79 163 164 138 27 92 67 142 118 144 154 45 85 157 127 38 122 58 129 93 34 54 120 102 121 57 70 111 89 105 145 143 16 BICOMP - 82 81 43 160 108 91 103 154 113 31 146 54 95 151 137 34 166 89 67 155 84 142 168 129 150 49 40 138 112 62 136 152 73 44 30 55 119 + 85 105 71 120 157 89 93 121 163 27 124 54 102 111 143 38 127 92 52 129 79 122 132 164 138 57 16 144 154 67 142 118 45 58 34 70 145 @@ -985,18 +985,18 @@ $PROJ_DIR$\CableMonitor_V3.2\Exe\CableMonitor_V3.2.out - OBJCOPY - 124 + ILINK + 90 - ILINK - 86 + OBJCOPY + 156 ILINK - 92 104 107 109 102 51 80 170 169 70 125 79 19 68 72 140 50 36 21 130 106 33 145 110 131 143 45 69 83 123 127 144 167 132 85 + 97 87 99 160 81 69 100 117 116 76 170 95 17 63 53 125 72 28 26 158 98 22 128 165 167 135 61 73 91 162 147 133 130 168 80 diff --git a/CablePositioning_IAP_V1.0/EWARM/settings/Project.wsdt b/CablePositioning_IAP_V1.0/EWARM/settings/Project.wsdt index 8e914c3..bf04c0a 100644 --- a/CablePositioning_IAP_V1.0/EWARM/settings/Project.wsdt +++ b/CablePositioning_IAP_V1.0/EWARM/settings/Project.wsdt @@ -90,11 +90,11 @@ 1 1 1 - 9C010000130059840000010000004881000005000000568400000400000010860000010000000F8100000400000020810000010000000C810000A200000026DE00000100000055840000AA0000000E840000060000001F810000010000000E8100002F00000028DE0000020000000B810000020000000584000003000000D1840000020000001186000001000000108400000A0000004681000001000000 + 9D0100001300598400000100000010860000010000005684000004000000488100000500000020810000010000000F8100000400000026DE0000010000000C810000A200000055840000AB0000000E8400000600000028DE0000020000000E8100002F0000001F810000010000000B81000002000000D184000002000000058400000300000011860000010000004681000001000000108400000A000000 - 40007784000007840000FFFFFFFF808C000044D500000D8400000F8400000884000054840000328100001C810000098400001C8F00001D8F00001F8F0000208F0000218F00002AE10000118F000055840000568400005984000020DE000021DE000026DE000028DE000023DE000022DE000024DE000027DE000025DE000020920000289200002992000037920000389200003492000033920000259200001E9200001D9200000C8400003384000078840000118400004881000001000000538400007C8400007D8400007E84000083840000848400000484000006840000328400003084000002840000038400000E8400001084000005840000318400000A840000 - 11000481000018000000239200000000000020810000270000000F8100001F0000000C8100001C000000008400000B00000044920000100000001F810000260000000E8100001E0000001F9200000D00000022E10000380000000B8100001B0000002D9200000F000000D18400000C00000005810000190000000D8100001D0000002C9200000E000000 + 35007784000007840000FFFFFFFF808C000044D500000D8400000F8400000884000054840000328100001C810000098400001C8F00001D8F00001F8F0000208F0000218F00002AE10000118F000055840000568400005984000020DE000021DE000026DE000028DE000023DE000022DE000024DE000027DE000025DE000020920000289200002992000037920000389200003492000033920000259200001E9200001D9200000C8400003384000078840000118400004881000001000000538400007C8400007D8400007E8400008384000084840000 + 1C00048400004C000000048100001800000023920000000000003184000053000000208100002B0000000F810000230000000C81000020000000068400004E000000038400004B000000008400000B000000449200001000000030840000520000000E840000500000001F8100002A0000000E810000220000001F9200000D00000022E10000380000000B8100001F0000002D9200000F000000D18400000C000000058400004D0000000581000019000000028400004A000000328400005400000010840000510000000D810000210000000A8400004F0000002C9200000E000000 0