Compare commits
2 Commits
bdd7b0883d
...
d127392021
Author | SHA1 | Date |
---|---|---|
|
d127392021 | |
|
8be224e113 |
|
@ -160,6 +160,10 @@ void StartDefaultTask(void const * argument)
|
|||
{
|
||||
read_and_process_uart_data(g_rs485_uart_handle);
|
||||
read_and_process_uart_data(g_term_uart_handle);
|
||||
if(time_get_ok)
|
||||
{
|
||||
parse_4g_receive_data();
|
||||
}
|
||||
osDelay(100);
|
||||
|
||||
}
|
||||
|
@ -213,7 +217,7 @@ void Trans_4g_Task(void const * argument)
|
|||
/* USER CODE BEGIN StartDefaultTask */
|
||||
EC801E_Power_ON();
|
||||
osDelay(5000);
|
||||
EC801_GET_Time();
|
||||
while(!EC801_GET_Time());
|
||||
MQTT_Config();
|
||||
MQTT_Trans_Data();
|
||||
int temp_1s = 0;
|
||||
|
|
|
@ -159,7 +159,7 @@ int main(void)
|
|||
|
||||
/* USER CODE BEGIN 3 */
|
||||
|
||||
}
|
||||
}
|
||||
/* USER CODE END 3 */
|
||||
}
|
||||
|
||||
|
|
|
@ -64,7 +64,7 @@ void MQTT_Config()
|
|||
}
|
||||
|
||||
// MQTT发送数据
|
||||
void MQTT_Trans_Data()
|
||||
void MQTT_Trans_Data( )
|
||||
{
|
||||
//字符串长度
|
||||
uint8_t str_len = 0;
|
||||
|
@ -79,7 +79,7 @@ void MQTT_Trans_Data()
|
|||
cJSON_AddStringToObject(JsonRoot, "deviId", "item_id");
|
||||
cJSON_AddStringToObject(JsonRoot, "frameType", "item_type");
|
||||
cJSON_AddNumberToObject(JsonRoot, "timeStamp", g_time_stamp);
|
||||
cJSON_AddNumberToObject(JsonRoot, "Version", 10);
|
||||
cJSON_AddNumberToObject(JsonRoot, "version", 10);
|
||||
|
||||
cJSON_AddItemToObject(JsonRoot, "data", DataArray);//添加data数组
|
||||
|
||||
|
@ -157,8 +157,10 @@ uint32_t fml_time_to_stamp(int year, int month, int day, int hour, int minute, i
|
|||
}
|
||||
|
||||
|
||||
//时间获取完成变量,用于控制是否开始MQTT信息接收
|
||||
uint8_t time_get_ok = 0;
|
||||
// 生成时间戳
|
||||
void EC801_GET_Time()
|
||||
int EC801_GET_Time()
|
||||
{
|
||||
int year, month, day, hour, minute, second;
|
||||
if(USE_UTC)
|
||||
|
@ -174,7 +176,7 @@ void EC801_GET_Time()
|
|||
// 第一个“后是时间,前面不要
|
||||
do{
|
||||
time[index] = uart_dev_in_char(g_ec801_uart_handle);
|
||||
}while(time[index++] != '"');
|
||||
}while(time[index++] != '"' && uart_dev_char_present(g_ec801_uart_handle));
|
||||
// 丢掉前面的
|
||||
memcpy(time, time + index - 1, index);
|
||||
index = 1;
|
||||
|
@ -182,12 +184,53 @@ void EC801_GET_Time()
|
|||
// "前面是时间
|
||||
do{
|
||||
time[index] = uart_dev_in_char(g_ec801_uart_handle);
|
||||
}while(time[index++] != '"');
|
||||
}while(time[index++] != '"' && uart_dev_char_present(g_ec801_uart_handle));
|
||||
|
||||
// 字符提取成int
|
||||
int matched = sscanf(time, "\"%d/%d/%d,%d:%d:%d\"", &year, &month, &day, &hour, &minute, &second);
|
||||
sscanf(time, "\"%d/%d/%d,%d:%d:%d\"", &year, &month, &day, &hour, &minute, &second);
|
||||
|
||||
if(year)
|
||||
{
|
||||
time_get_ok = 1;
|
||||
}
|
||||
// 生成时间戳
|
||||
g_time_stamp = fml_time_to_stamp(year, month, day, hour, minute, second);
|
||||
return year;
|
||||
}
|
||||
|
||||
#define JSON_BUFFER_SIZE 200
|
||||
// 解析收到的4g模块数据
|
||||
void parse_4g_receive_data()
|
||||
{
|
||||
uint8_t temp_buff[JSON_BUFFER_SIZE];
|
||||
int jsonBufferIndex = 0; // 索引
|
||||
char c = 0;
|
||||
int inJson = 0;
|
||||
if(uart_dev_char_present(g_ec801_uart_handle)){
|
||||
for(jsonBufferIndex = 0; uart_dev_char_present(g_ec801_uart_handle);)
|
||||
{
|
||||
c = uart_dev_in_char(g_ec801_uart_handle);
|
||||
if (c == '{') {
|
||||
inJson = 1; // 进入JSON字符串
|
||||
jsonBufferIndex = 0; // 重置JSON缓冲区索引
|
||||
temp_buff[jsonBufferIndex++] = c;
|
||||
} else if (c == '}' && inJson) {
|
||||
temp_buff[jsonBufferIndex++] = c;
|
||||
//重置索引与标志
|
||||
jsonBufferIndex = 0;
|
||||
inJson = 0;
|
||||
} else if (inJson) {
|
||||
// 如果在JSON字符串内部,则存储字符
|
||||
if (jsonBufferIndex < JSON_BUFFER_SIZE - 1) { // 保留一个位置给字符串结束符
|
||||
temp_buff[jsonBufferIndex++] = c;
|
||||
}
|
||||
}else {
|
||||
jsonBufferIndex++;//一直没有{可以继续检索
|
||||
}
|
||||
}
|
||||
|
||||
term_printf(temp_buff);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -10,7 +10,10 @@ extern "C" {
|
|||
void EC801E_Power_ON();
|
||||
void MQTT_Config();
|
||||
void MQTT_Trans_Data();
|
||||
void EC801_GET_Time();
|
||||
int EC801_GET_Time();
|
||||
void parse_4g_receive_data();
|
||||
|
||||
extern uint8_t time_get_ok;
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
|
@ -1,5 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<BuildDb>
|
||||
<Tool>
|
||||
<Name>linker</Name>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\Exe\micro_climate.out</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\micro_climate.map</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
</Tool>
|
||||
<Tool>
|
||||
<Name>compiler</Name>
|
||||
<Parent>
|
||||
|
@ -11,204 +20,6 @@
|
|||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\stm32l4xx_it.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_it.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_it.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\Shell\shell_uart.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_uart.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_uart.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\adc.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\adc.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\adc.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\Sht3x\sht30.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Sht3x_8257160562692203274.dir\sht30.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Sht3x_8257160562692203274.dir\sht30.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\usart.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\usart.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\usart.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\tim.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\tim.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\tim.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\stm32l4xx_hal_msp.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_hal_msp.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_hal_msp.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\stm32l4xx_hal_timebase_tim.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_hal_timebase_tim.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_hal_timebase_tim.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_cortex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_cortex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_cortex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\Filter\filter.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Filter_2427836196881467961.dir\filter.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Filter_2427836196881467961.dir\filter.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\EC801E\EC801E.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\EC801E_17758034221153603070.dir\EC801E.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\EC801E_17758034221153603070.dir\EC801E.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\spi.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\spi.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\spi.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\system_stm32l4xx.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\CMSIS_6603591812247902717.dir\system_stm32l4xx.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\CMSIS_6603591812247902717.dir\system_stm32l4xx.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\Shell\shell_autocomplete.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_autocomplete.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_autocomplete.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\croutine.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\croutine.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\croutine.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\Shell\shell.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\queue.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\queue.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\queue.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\App\Src\uart_dev.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\uart_dev.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\uart_dev.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\HP203B\hp203b.c</Path>
|
||||
<Output>
|
||||
|
@ -218,33 +29,6 @@
|
|||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\HP203B_1856951872026386537.dir\hp203b.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\App\Src\inflash.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\inflash.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\inflash.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\App\Src\anemometer_dev.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\anemometer_dev.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\anemometer_dev.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\RingQueue\ring_queue.c</Path>
|
||||
<Output>
|
||||
|
@ -255,39 +39,120 @@
|
|||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\App\Src\frt_protocol.c</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\Shell\shell.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\frt_protocol.s</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\frt_protocol.lst</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\cJSON.c</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\stm32l4xx_hal_msp.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\cJSON.s</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_hal_msp.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\cJSON.lst</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_hal_msp.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\EC801E\EC801E.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\heap_4.s</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\EC801E_17758034221153603070.dir\EC801E.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\heap_4.lst</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\EC801E_17758034221153603070.dir\EC801E.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\main.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash.s</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\main.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash.lst</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\main.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\stm32l4xx_hal_timebase_tim.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_hal_timebase_tim.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_hal_timebase_tim.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\stm32l4xx_it.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_it.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_it.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\list.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\list.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\list.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\spi.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\spi.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\spi.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\croutine.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\croutine.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\croutine.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\i2c.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\i2c.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\i2c.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
|
@ -308,6 +173,15 @@
|
|||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\freertos.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\gpio.c</Path>
|
||||
<Output>
|
||||
|
@ -318,12 +192,120 @@
|
|||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\main.c</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\Filter\filter.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\main.s</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Filter_2427836196881467961.dir\filter.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\main.lst</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Filter_2427836196881467961.dir\filter.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\adc.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\adc.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\adc.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\tim.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\tim.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\tim.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_cortex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_cortex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_cortex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\cJSON.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\cJSON.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\cJSON.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ramfunc.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ramfunc.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ramfunc.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\port.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\port.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\port.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\App\Src\uart_dev.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\uart_dev.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\uart_dev.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\Sht3x\sht30.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Sht3x_8257160562692203274.dir\sht30.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Sht3x_8257160562692203274.dir\sht30.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
|
@ -336,12 +318,30 @@
|
|||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\i2c.c</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\i2c.s</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\i2c.lst</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\portable\MemMang\heap_4.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\heap_4.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\heap_4.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_exti.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_exti.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_exti.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
|
@ -363,147 +363,12 @@
|
|||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\list.c</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\list.s</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\list.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\Shell\shell_cmdhist.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_cmdhist.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_cmdhist.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\timers.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\timers.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\timers.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_dma_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_exti.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_exti.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_exti.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_spi_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_spi_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\port.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\port.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\port.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\cmsis_os.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\cmsis_os.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\event_groups.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\event_groups.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ramfunc.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ramfunc.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ramfunc.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_adc.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc.lst</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
|
@ -515,6 +380,33 @@
|
|||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_gpio.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\Shell\shell_cmdhist.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_cmdhist.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_cmdhist.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\Shell\shell_uart.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_uart.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_uart.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\timers.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\timers.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\timers.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart_ex.c</Path>
|
||||
<Output>
|
||||
|
@ -524,6 +416,114 @@
|
|||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\Shell\shell_autocomplete.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_autocomplete.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_autocomplete.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\usart.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\usart.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\usart.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_spi_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_spi_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Core\Src\system_stm32l4xx.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\CMSIS_6603591812247902717.dir\system_stm32l4xx.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\CMSIS_6603591812247902717.dir\system_stm32l4xx.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\App\Src\frt_protocol.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\frt_protocol.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\frt_protocol.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\App\Src\anemometer_dev.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\anemometer_dev.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\anemometer_dev.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\App\Src\inflash.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\inflash.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\inflash.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\cmsis_os.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\cmsis_os.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\queue.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\queue.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\queue.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\event_groups.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\event_groups.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\event_groups.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi.c</Path>
|
||||
<Output>
|
||||
|
@ -543,12 +543,21 @@
|
|||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc_ex.c</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc_ex.s</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc_ex.lst</Path>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c_ex.c</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c_ex.s</Path>
|
||||
</Output>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c_ex.lst</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
</Tool>
|
||||
|
@ -567,13 +576,4 @@
|
|||
</Output>
|
||||
</Parent>
|
||||
</Tool>
|
||||
<Tool>
|
||||
<Name>linker</Name>
|
||||
<Parent>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\Exe\micro_climate.out</Path>
|
||||
<Output>
|
||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\micro_climate.map</Path>
|
||||
</Output>
|
||||
</Parent>
|
||||
</Tool>
|
||||
</BuildDb>
|
||||
|
|
Binary file not shown.
|
@ -1,78 +1,160 @@
|
|||
# ninja log v5
|
||||
195 738 7446279305563973 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/dma.o bf43722906c03566
|
||||
1550 1795 7446279316581504 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/RingQueue_10900368326811202236.dir/ring_queue.o f0be3f60b5bfc513
|
||||
2014 2557 7446279324086816 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma.o 91d866fecc8c1f1a
|
||||
224 603 7446279304548474 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/gpio.o 5d9d7bd8f6ba44c0
|
||||
606 1174 7446279309928646 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/i2c.o c1fb605878ec3f5b
|
||||
3071 5495 7446279353474587 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim.o bb0cd7722c4f38a4
|
||||
740 1209 7446279310299196 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/stm32l4xx_hal_timebase_tim.o f1bce46cd257c176
|
||||
654 984 7447251217391871 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/croutine.o fec8dff9e3001349
|
||||
650 1077 7446279309304170 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/spi.o a8bea0bf06ab2afe
|
||||
35 598 7448722095042905 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o dbcb0db307adc272
|
||||
988 1461 7447251222151021 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/stream_buffer.o a2c4202a3c04b26c
|
||||
5057 5103 7446279349661588 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EWARM_18443280873093131863.dir/startup_stm32l496xx.o 983b34495e4a9f06
|
||||
1211 1714 7446279315656463 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/CMSIS_6603591812247902717.dir/system_stm32l4xx.o 8af0a0bb5f37c063
|
||||
128 713 7448722096202912 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
574 926 7447251216806815 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/timers.o aec0756d465e7d4f
|
||||
1079 1339 7446279312034775 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Filter_2427836196881467961.dir/filter.o 1021703d4dd9edaf
|
||||
66 664 7448722095572926 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/main.o a6886d12c2e968a7
|
||||
702 1123 7446279309374161 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/stm32l4xx_hal_msp.o e5ab62ce53061ad9
|
||||
783 1718 7447251224682793 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/tasks.o 925e9e5e1f9c00b6
|
||||
2240 2687 7446279325472114 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma_ex.o e6241ebc22880fa8
|
||||
1623 1963 7446279318261513 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_cmdhelp.o b3251e875919362e
|
||||
2 353 7447186272429031 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/stm32l4xx_it.o d3b9c956d118e1e0
|
||||
1126 1712 7447251224652794 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/queue.o 32948f85b195dca
|
||||
1754 1911 7446279317731507 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_cmdhist.o 38590687c47a2cbc
|
||||
3635 4507 7446279343636071 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_rcc.o cfc99b805f06fd21
|
||||
98 617 7448722095232908 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/tim.o c03cdeb0749f61c2
|
||||
33 399 7447185604009291 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/usart.o e0a5563efe00cc8
|
||||
2 542 7446279303818474 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/inflash.o 6384979adabcf318
|
||||
1244 1620 7446279314819852 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_autocomplete.o aca2684d02ab7723
|
||||
3429 3817 7446279336740777 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_spi_ex.o 474177df1723cbf
|
||||
161 619 7448722095242909 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/HP203B_1856951872026386537.dir/hp203b.o c3cee707e37d4a42
|
||||
39 648 7446279304548474 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/adc.o 7fd39f29b6b2108a
|
||||
1716 2133 7446279319936669 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_uart.o 8b75033f8b86554
|
||||
196 781 7447251214591754 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Sht3x_8257160562692203274.dir/sht30.o d6ce7047a76c72a3
|
||||
1965 2387 7446279322471746 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal.o 28d0611f7960d3c5
|
||||
2390 2959 7446279327487196 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_exti.o 5230b767faebd3c7
|
||||
1399 2476 7446279322861758 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell.o fe96fc4cfc22cc63
|
||||
928 1204 7447251219571880 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/event_groups.o 2605e327da29e9c1
|
||||
1914 2443 7446279322611754 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_cortex.o ffd5c9fe60b1cb86
|
||||
2 372 7446288323475415 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/uart_dev.o a0d36a68c77f5f1a
|
||||
3746 5142 7446279349981587 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_spi.o f38fe7acc918d43b
|
||||
1830 2867 7446279327207209 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc_ex.o 37f4eb03dbc09aaa
|
||||
2626 3241 7446279330974155 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash.o b4beadf6e004d839
|
||||
1092 1351 7447251221061883 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/heap_4.o 9cbc680675f46c5a
|
||||
2870 3426 7446279332819211 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr.o 2db3b7171b5c7eec
|
||||
2479 2922 7446279327487196 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash_ramfunc.o d260c0cb338f75bb
|
||||
1797 3116 7446279329304146 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc.o caeb41ce376d6e07
|
||||
2561 3166 7446279329954127 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash_ex.o c9b9b10c9c58c02f
|
||||
2136 2623 7446279324796814 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c_ex.o 62e9b3a1150d3a17
|
||||
3244 3744 7446279335965704 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart_ex.o 5cb6faeee735a211
|
||||
2924 3632 7446279334910364 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr_ex.o 30bd4b15d276c369
|
||||
3566 4608 7446279344636069 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_rcc_ex.o e19c1f22ef08f9c4
|
||||
2445 3067 7446279328007193 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_gpio.o 2d1e548c51a93c9
|
||||
226 876 7447251215911747 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/cmsis_os.o be977a9f349ad14c
|
||||
2690 5221 7446279350721583 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c.o a8caa8580e5e5d8b
|
||||
1206 1238 7447251219981885 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/portasm.o 97d4445452c7ac15
|
||||
3118 4321 7446279341740974 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim_ex.o 81aff70c2ae41a09
|
||||
3169 4752 7446279345671431 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart.o 1a77cf0adff1965
|
||||
840 1089 7447251218451875 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/port.o a4849925602de71e
|
||||
2 736 7448722096282905 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o aa5a018fe56eded3
|
||||
189 902 7448722098072948 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/anemometer_dev.o 3ee494bfbe2660af
|
||||
878 1123 7447251218481873 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/list.o cbbfd62742ca92f9
|
||||
904 1124 7448722100312954 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
1127 1147 7448722100663892 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 1274 7447867133727070 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/cJSON.o d89cf30001a6f46f
|
||||
2 627 7448724917548380 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/anemometer_dev.o 3ee494bfbe2660af
|
||||
628 846 7448724919728379 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
848 866 7448724920052526 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 631 7448730278764168 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/anemometer_dev.o 3ee494bfbe2660af
|
||||
632 844 7448730280998673 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
846 864 7448730281336950 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
5 658 7448736078630963 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/anemometer_dev.o 3ee494bfbe2660af
|
||||
659 884 7448736080997585 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
887 904 7448736081327580 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 632 7448747074570103 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/anemometer_dev.o 3ee494bfbe2660af
|
||||
633 845 7448747076800580 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
848 867 7448747077138647 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
64 676 7453880424072510 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/dma.o bf43722906c03566
|
||||
1639 2184 7453880440269338 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma.o 91d866fecc8c1f1a
|
||||
33 512 7453880423422504 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/gpio.o 5d9d7bd8f6ba44c0
|
||||
855 1028 7453880428759246 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/RingQueue_10900368326811202236.dir/ring_queue.o f0be3f60b5bfc513
|
||||
3122 5352 7453880471917057 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim.o bb0cd7722c4f38a4
|
||||
513 1063 7453880428759246 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/stm32l4xx_hal_timebase_tim.o f1bce46cd257c176
|
||||
186 727 7453880425689257 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/i2c.o c1fb605878ec3f5b
|
||||
126 610 7453880424082506 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/spi.o a8bea0bf06ab2afe
|
||||
3419 3552 7453880454034705 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/croutine.o fec8dff9e3001349
|
||||
3 382 7453900884716361 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o dbcb0db307adc272
|
||||
677 1113 7453880429553530 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/CMSIS_6603591812247902717.dir/system_stm32l4xx.o 8af0a0bb5f37c063
|
||||
2 385 7453901738566418 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
4708 4747 7453880466025265 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EWARM_18443280873093131863.dir/startup_stm32l496xx.o 983b34495e4a9f06
|
||||
4321 4784 7453880466345271 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/stream_buffer.o a2c4202a3c04b26c
|
||||
646 852 7453880427039239 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Filter_2427836196881467961.dir/filter.o 1021703d4dd9edaf
|
||||
4664 4824 7453880466765266 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/timers.o aec0756d465e7d4f
|
||||
158 760 7453880425689257 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/main.o a6886d12c2e968a7
|
||||
214 643 7453880424072510 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/stm32l4xx_hal_msp.o e5ab62ce53061ad9
|
||||
1268 1461 7453880433104175 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_cmdhelp.o b3251e875919362e
|
||||
1922 2334 7453880441799339 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma_ex.o e6241ebc22880fa8
|
||||
4241 5079 7453880469285262 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/tasks.o 925e9e5e1f9c00b6
|
||||
570 1150 7453880429563532 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/stm32l4xx_it.o d3b9c956d118e1e0
|
||||
4549 5114 7453880469645265 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/queue.o 32948f85b195dca
|
||||
1208 1346 7453880431984168 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_cmdhist.o 38590687c47a2cbc
|
||||
730 1265 7453880431094170 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/usart.o e0a5563efe00cc8
|
||||
612 1205 7453880430514172 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/tim.o c03cdeb0749f61c2
|
||||
2810 3761 7453880455710053 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_rcc.o cfc99b805f06fd21
|
||||
1030 1418 7453880432694172 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_autocomplete.o aca2684d02ab7723
|
||||
4144 4546 7453880463900065 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/inflash.o 6384979adabcf318
|
||||
1064 1637 7453880434428020 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/HP203B_1856951872026386537.dir/hp203b.o c3cee707e37d4a42
|
||||
2875 3264 7453880451124701 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_spi_ex.o 474177df1723cbf
|
||||
1153 1676 7453880434889329 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_uart.o 8b75033f8b86554
|
||||
4094 4609 7453880464540063 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/adc.o 7fd39f29b6b2108a
|
||||
1349 1962 7453880437459407 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Sht3x_8257160562692203274.dir/sht30.o d6ce7047a76c72a3
|
||||
1420 1920 7453880437279336 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal.o 28d0611f7960d3c5
|
||||
2134 2545 7453880443869337 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_exti.o 5230b767faebd3c7
|
||||
1115 2017 7453880438599336 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell.o fe96fc4cfc22cc63
|
||||
1462 1876 7453880437209330 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_cortex.o ffd5c9fe60b1cb86
|
||||
4435 4800 7453880466515264 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/event_groups.o 2605e327da29e9c1
|
||||
1594 2705 7453880445464699 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc_ex.o 37f4eb03dbc09aaa
|
||||
2760 4141 7453880459810070 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_spi.o f38fe7acc918d43b
|
||||
3727 4195 7453880460030058 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/uart_dev.o a0d36a68c77f5f1a
|
||||
1878 2438 7453880442839336 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash.o b4beadf6e004d839
|
||||
1677 2131 7453880439769343 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash_ramfunc.o d260c0cb338f75bb
|
||||
2441 2931 7453880447784704 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr.o 2db3b7171b5c7eec
|
||||
4610 4886 7453880467365309 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/heap_4.o 9cbc680675f46c5a
|
||||
1503 2758 7453880445864704 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc.o caeb41ce376d6e07
|
||||
2187 2873 7453880447114700 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash_ex.o c9b9b10c9c58c02f
|
||||
2337 2808 7453880446204733 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c_ex.o 62e9b3a1150d3a17
|
||||
2492 3120 7453880449194699 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr_ex.o 30bd4b15d276c369
|
||||
2934 3416 7453880452604705 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart_ex.o 5cb6faeee735a211
|
||||
1965 2490 7453880442999340 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_gpio.o 2d1e548c51a93c9
|
||||
2708 3725 7453880455690050 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_rcc_ex.o e19c1f22ef08f9c4
|
||||
2548 3060 7453880449094699 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/cmsis_os.o be977a9f349ad14c
|
||||
4749 4786 7453880466405263 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/portasm.o 97d4445452c7ac15
|
||||
2019 4238 7453880460110059 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c.o a8caa8580e5e5d8b
|
||||
3063 4091 7453880459370056 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim_ex.o 81aff70c2ae41a09
|
||||
3267 4661 7453880464845261 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart.o 1a77cf0adff1965
|
||||
4198 4432 7453880462830060 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/port.o a4849925602de71e
|
||||
3764 4489 7453880463200060 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o aa5a018fe56eded3
|
||||
3555 4318 7453880461600061 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/anemometer_dev.o 3ee494bfbe2660af
|
||||
4491 4705 7453880465555263 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/list.o cbbfd62742ca92f9
|
||||
386 591 7453901740611761 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
593 610 7453901740921721 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
1 1591 7453880434328017 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/cJSON.o d89cf30001a6f46f
|
||||
2 388 7453902029369630 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o dbcb0db307adc272
|
||||
390 607 7453902031588487 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
609 628 7453902031998976 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
3 393 7453902815582073 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
393 612 7453902817741485 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
614 632 7453902818081484 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
3 404 7453903165129843 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
405 629 7453903167335381 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
631 649 7453903167675741 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 387 7453903945670791 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
387 601 7453903947784403 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
603 621 7453903948114360 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
3 448 7453905698792221 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
449 665 7453905701015951 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
667 685 7453905701380765 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
3 464 7453922366076103 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
465 675 7453922368286139 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
677 694 7453922368604370 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
3 398 7453923449632508 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
399 601 7453923451632468 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
602 620 7453923451942462 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
3 395 7453925125364064 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
396 605 7453925127454028 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
607 626 7453925127785228 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
3 509 7453925877089610 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
510 822 7453925880311680 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
824 842 7453925880651646 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
3 401 7453927844324586 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
402 611 7453927846410613 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
617 640 7453927846820616 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
3 444 7453928815255961 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
445 667 7453928817447983 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
669 688 7453928817782905 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
3 437 7453929556851318 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
438 642 7453929558991292 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
644 661 7453929559301295 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
3 398 7453931348262198 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
399 617 7453931350426508 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
620 638 7453931350766509 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
3 454 7453936912026741 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
455 672 7453936914309163 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
675 693 7453936914639162 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
3 357 7453938154873882 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o dbcb0db307adc272
|
||||
36 455 7453938155853888 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
458 672 7453938157993925 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
674 693 7453938158333886 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
47 1229 7454106906709456 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o dbcb0db307adc272
|
||||
383 1270 7454106907089448 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
1273 2501 7454106919401017 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
2504 2620 7454106920722322 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
3 433 7454108798205234 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
434 646 7454108800321909 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
649 666 7454108800641905 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 393 7454115324995681 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o dbcb0db307adc272
|
||||
33 420 7454115325268787 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/main.o a6886d12c2e968a7
|
||||
423 629 7454115327442938 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
631 648 7454115327752358 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
3 445 7454116068143867 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
446 649 7454116070149709 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
650 667 7454116070461211 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 442 7454117033554618 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
443 646 7454117035574300 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
648 665 7454117035883560 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 442 7454122649416085 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o dbcb0db307adc272
|
||||
33 467 7454122649633040 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/main.o a6886d12c2e968a7
|
||||
64 542 7454122650403075 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
544 750 7454122652589068 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
752 769 7454122652900370 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 391 7454124095456393 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
392 599 7454124097511428 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
601 617 7454124097811385 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 413 7454125628769090 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
414 619 7454125630805730 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
621 639 7454125631134236 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 506 7454128250187567 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
507 719 7454128252417097 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
721 738 7454128252727824 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
3 468 7454131742872646 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
469 715 7454131745445275 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
717 736 7454131745775272 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
3 417 7454132586019587 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
418 633 7454132588143634 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
635 653 7454132588483589 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 433 7454134622404170 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o dbcb0db307adc272
|
||||
34 474 7454134622815258 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/main.o a6886d12c2e968a7
|
||||
69 557 7454134623635257 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
559 772 7454134625775256 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
774 792 7454134626095258 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 525 7454136444496320 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
526 735 7454136446697070 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
737 755 7454136447020589 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
2 462 7454139352527908 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||
463 675 7454139354637893 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||
677 695 7454139354977891 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||
|
|
Binary file not shown.
|
@ -5,36 +5,36 @@
|
|||
2726 3209 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/cmsis_os.xcl f1f1f9eb788358fd
|
||||
447 670 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/usart.xcl ab332fa3b0661523
|
||||
9 533 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/spi.xcl 757c84479e347688
|
||||
555 1006 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Filter_2427836196881467961.dir/filter.xcl ad75120e53206fce
|
||||
12 523 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_hal_msp.xcl 96bd9c362b7a66a6
|
||||
4270 4882 7445525546335702 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_cortex.pbi cf46cd36b785b7a7
|
||||
3855 4010 7445525537651594 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/RingQueue_10900368326811202236.dir/ring_queue.pbi ae7a817f0b6f7f6b
|
||||
555 1006 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Filter_2427836196881467961.dir/filter.xcl ad75120e53206fce
|
||||
1373 1434 7453880295904146 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/RingQueue_10900368326811202236.dir/ring_queue.pbi ae7a817f0b6f7f6b
|
||||
1610 2090 7453880302464642 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_cortex.pbi cf46cd36b785b7a7
|
||||
27 566 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_hal_timebase_tim.xcl c09f51f381970bc5
|
||||
610 1198 7446330362485495 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Shell_738121877093898511.dir/shell.pbi 847883da0581e612
|
||||
542 1070 7453880292278060 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Shell_738121877093898511.dir/shell.pbi 847883da0581e612
|
||||
549 1013 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/RingQueue_10900368326811202236.dir/ring_queue.xcl 4e2401a3465d38bc
|
||||
543 1034 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Shell_738121877093898511.dir/shell.xcl 737c6a4e8583a40f
|
||||
6274 6574 7445525560000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.xcl b48bdff6bbc365e2
|
||||
1105 1631 7445525510000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash.xcl 1e8c5e9c7c199ec2
|
||||
1835 2303 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr.xcl 6f31698666704dc3
|
||||
562 1053 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/HP203B_1856951872026386537.dir/hp203b.xcl f224da5a873aa24f
|
||||
5293 5798 7445525555549700 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart.pbi 6b53453d72d397
|
||||
3237 3780 7453880319382333 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart.pbi 6b53453d72d397
|
||||
568 1112 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Shell_738121877093898511.dir/shell_autocomplete.xcl f5caf8c90bd0f9ff
|
||||
16 548 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/i2c.xcl a9c744c1c80c5cc
|
||||
1014 1504 7445525510000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Shell_738121877093898511.dir/shell_cmdhist.xcl 7c646eb3a8a14712
|
||||
1481 1833 7445525510000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_cortex.xcl b01fce7c82bb9224
|
||||
976 1058 7447250996294916 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/list.pbi d43760533e534c9e
|
||||
3161 3236 7453880313932828 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/list.pbi d43760533e534c9e
|
||||
2176 2700 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_rcc_ex.xcl 5b20a9756d586636
|
||||
1022 1102 7447250996757502 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/timers.pbi 7c4e3f9361967203
|
||||
4608 4646 7445525544031231 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Shell_738121877093898511.dir/shell_cmdhist.pbi 7ad00014cee89dfa
|
||||
3351 3422 7453880315805906 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/timers.pbi 7c4e3f9361967203
|
||||
1713 1767 7453880299254131 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Shell_738121877093898511.dir/shell_cmdhist.pbi 7ad00014cee89dfa
|
||||
672 1103 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Shell_738121877093898511.dir/shell_uart.xcl 5754b30cf8d31534
|
||||
3755 4325 7445525540811545 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/CMSIS_6603591812247902717.dir/system_stm32l4xx.pbi 73d5d02acd300c29
|
||||
554 1057 7453880292138036 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/CMSIS_6603591812247902717.dir/system_stm32l4xx.pbi 73d5d02acd300c29
|
||||
23 560 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_it.xcl fcd389c668127e06
|
||||
1592 2157 7445525510000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_gpio.xcl afff01bf2ab68700
|
||||
1007 1479 7445525510000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc.xcl a51b422d87ca2b64
|
||||
3202 3753 7445525535076511 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/i2c.pbi 9d541dc505d3017d
|
||||
536 1207 7453880293648039 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/i2c.pbi 9d541dc505d3017d
|
||||
1024 1613 7445525510000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal.xcl c1d458af51c78d9d
|
||||
1019 1580 7445525510000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Sht3x_8257160562692203274.dir/sht30.xcl 4b5fbfa27482da61
|
||||
5 781 7448714746525410 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/freertos.pbi 3ddb8275ce0d8276
|
||||
2 547 7454121753797107 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/freertos.pbi 3ddb8275ce0d8276
|
||||
1115 1639 7445525510000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma.xcl b40c736f602b29e0
|
||||
1054 1620 7445525510000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc_ex.xcl b9366d67b63c185f
|
||||
1505 1911 7445525510000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_exti.xcl d28064c2f9caba48
|
||||
|
@ -42,271 +42,192 @@
|
|||
2606 2966 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim.xcl ba2c093c8f291790
|
||||
1615 2146 7445525510000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash_ramfunc.xcl 5fddc62f385b23e6
|
||||
1913 2311 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_rcc.xcl 1092c00c9ab05872
|
||||
2 561 7448735146264780 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
10 802 7453880289598043 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
534 1018 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/tim.xcl 1bee0b500cce08e
|
||||
3194 3435 7445525530000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/tasks.xcl 7740ce5466bf9c24
|
||||
2717 3214 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/event_groups.xcl 8f68d4be35ded5f4
|
||||
1582 2165 7445525510000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma_ex.xcl 6739fe127f5ddaf4
|
||||
2305 2825 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart.xcl 87c50a2191251892
|
||||
1964 3500 7448735175180472 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
1605 3058 7454127491872667 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2148 2604 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr_ex.xcl 3dc902707e34cd21
|
||||
6024 6550 7445525563064861 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart_ex.pbi 7e45bb040b4ee51e
|
||||
3292 3811 7453880319702342 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart_ex.pbi 7e45bb040b4ee51e
|
||||
1641 2191 7445525510000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c.xcl 40ab92d9831e1b4e
|
||||
1622 2174 7445525510000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c_ex.xcl 26c79eff915015a9
|
||||
3116 3386 7445525530000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/timers.xcl dd7654d773b4a3d2
|
||||
2159 2669 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_spi.xcl fabdb5b59d337d71
|
||||
1055 1743 7447251003187688 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part3.pbi 75ef7fc31c00533f
|
||||
3411 4091 7453880322513828 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part3.pbi 75ef7fc31c00533f
|
||||
2827 3270 7445525530000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim_ex.xcl 5b230438b274e824
|
||||
2167 2707 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_spi_ex.xcl 201dd046fe173cb3
|
||||
2313 2832 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/queue.xcl 7c5f3931b5097798
|
||||
2702 3192 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/croutine.xcl c11867e101c24cfe
|
||||
2185 2716 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/heap_4.xcl 4fdfc9b73d924bb4
|
||||
2193 2724 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/port.xcl 9c179c3acb014f22
|
||||
14 739 7448714746092849 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/main.pbi c727fe1dca7b633d
|
||||
5 552 7454121753847114 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/main.pbi c727fe1dca7b633d
|
||||
2834 3277 7445525530000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/stream_buffer.xcl 6f9f1930c22c574
|
||||
2671 3114 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart_ex.xcl 1e2a8af33aa2e836
|
||||
2709 3200 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/list.xcl b89995cf2fd5402
|
||||
7139 7337 7445525570000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/cJSON.xcl 2dbe4270a7f9113e
|
||||
3949 4022 7445525537781621 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Shell_738121877093898511.dir/shell_autocomplete.pbi cad8959d523530ab
|
||||
4350 4403 7445525541596425 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Shell_738121877093898511.dir/shell_cmdhelp.pbi 131612ef2efca80a
|
||||
3272 3859 7445525536110215 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/spi.pbi 72eba88dd1f9ddab
|
||||
3211 3265 7445525530218256 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Filter_2427836196881467961.dir/filter.pbi 5b19c848b42aff21
|
||||
3388 3947 7445525537041583 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_hal_timebase_tim.pbi aa4adddd26997092
|
||||
3279 3853 7445525536060211 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_hal_msp.pbi b05fa04f872c7003
|
||||
838 1337 7446330363840581 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Shell_738121877093898511.dir/shell_uart.pbi a922e6223fcd58d7
|
||||
2 392 7447186222280532 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_it.pbi 781774fcdeb5a3f5
|
||||
1 370 7447185538029397 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/usart.pbi fdd10afb825c4e91
|
||||
112 861 7447250994313167 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Sht3x_8257160562692203274.dir/sht30.pbi baf066feb7f3c7e7
|
||||
8 743 7448714746155400 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/tim.pbi 5120c15ba4fb26c9
|
||||
11 764 7448714746355405 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/HP203B_1856951872026386537.dir/hp203b.pbi 94795b4df4c402f0
|
||||
4559 5141 7445525548964721 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma_ex.pbi acb106c2e1783a90
|
||||
1768 1822 7453880299804132 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Shell_738121877093898511.dir/shell_autocomplete.pbi cad8959d523530ab
|
||||
1663 1712 7453880298714131 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Shell_738121877093898511.dir/shell_cmdhelp.pbi 131612ef2efca80a
|
||||
1110 1662 7453880298144134 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/spi.pbi 72eba88dd1f9ddab
|
||||
1208 1366 7453880295234137 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Filter_2427836196881467961.dir/filter.pbi 5b19c848b42aff21
|
||||
1099 1624 7453880297814129 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_hal_timebase_tim.pbi aa4adddd26997092
|
||||
1071 1604 7453880297364139 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_hal_msp.pbi b05fa04f872c7003
|
||||
1435 1967 7453880301244150 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Shell_738121877093898511.dir/shell_uart.pbi a922e6223fcd58d7
|
||||
1058 1599 7453880297394127 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_it.pbi 781774fcdeb5a3f5
|
||||
547 1098 7453880292558045 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/usart.pbi fdd10afb825c4e91
|
||||
2080 2703 7453880308615314 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Sht3x_8257160562692203274.dir/sht30.pbi baf066feb7f3c7e7
|
||||
890 1657 7453880298144134 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/tim.pbi 5120c15ba4fb26c9
|
||||
804 1609 7453880297654136 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/HP203B_1856951872026386537.dir/hp203b.pbi 94795b4df4c402f0
|
||||
1600 2078 7453880302354630 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma_ex.pbi acb106c2e1783a90
|
||||
6520 6737 7445525560000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/dma.xcl 2b657024324b6a73
|
||||
4405 4877 7445525546335702 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma.pbi 4ce9ebf8f440b4c
|
||||
4868 5314 7445525550709540 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash_ramfunc.pbi 7fa94d9090e9e9a2
|
||||
4799 5292 7445525550476156 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash_ex.pbi 3e569c5192ee35c7
|
||||
4024 4522 7445525542776291 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash.pbi 780d5dcf2db83186
|
||||
5789 6280 7445525560321502 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_gpio.pbi 9c2d7f098f5a7980
|
||||
5316 5898 7445525556550787 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c.pbi 990292995a90ec23
|
||||
4326 4798 7445525545539276 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal.pbi c81c07f4062f81e6
|
||||
4647 5254 7445525550075653 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc.pbi 913b9fe7e9360a07
|
||||
4419 4895 7445525546514767 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_exti.pbi 9b294b4446afd498
|
||||
1103 1184 7447250997551220 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/heap_4.pbi a91407ad45a84dae
|
||||
1015 1112 7447250996851529 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/tasks.pbi 7af2debc08180638
|
||||
6588 7531 7445525572882480 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part5.pbi 9d93f38b1897aeed
|
||||
4011 4557 7445525543131904 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc_ex.pbi a61035b1d5112e37
|
||||
5202 5732 7445525554869956 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr.pbi ea974c04a89c6d63
|
||||
1143 1228 7447250998022289 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/cmsis_os.pbi e8c9e01f21a80c5c
|
||||
1069 1142 7447250997157539 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/event_groups.pbi 90bfd4ac47782b68
|
||||
5755 6292 7445525560373506 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_spi.pbi e2fc1cb0c98d3fda
|
||||
5733 6210 7445525559656008 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c_ex.pbi 19cb1d67190ba1f8
|
||||
1169 1225 7447250998002300 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part7.pbi 8a1d907468ec76e1
|
||||
5210 5753 7445525555089910 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim_ex.pbi 50f7710b02d47386
|
||||
5799 6314 7445525560688738 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_rcc_ex.pbi fa4ec2c6c3b08897
|
||||
5518 6023 7445525557806189 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr_ex.pbi b2e3a97ccb3ed832
|
||||
5899 6519 7445525562744858 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_spi_ex.pbi bcf1bbe76359666d
|
||||
1139 1218 7447250997911211 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/croutine.pbi c97f5b207775eed4
|
||||
5983 6587 7445525563434870 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim.pbi 56d998ac0b46d62a
|
||||
5303 5787 7445525555427755 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_rcc.pbi ec3fc00e0dbbed51
|
||||
1076 1167 7447250997387473 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/queue.pbi 9c6ab5e9a6c5c971
|
||||
863 974 7447250995454549 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/port.pbi e54a5c2a4789d89f
|
||||
776 1341 7448714752135401 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1060 1138 7447250997127476 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/stream_buffer.pbi 9ace91f97aae008d
|
||||
1229 1642 7447251002171470 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part6.pbi 449b1fb9d2f74ff2
|
||||
1658 2186 7453880303438687 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma.pbi 4ce9ebf8f440b4c
|
||||
2996 3592 7453880317502341 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash_ramfunc.pbi 7fa94d9090e9e9a2
|
||||
2143 2611 7453880307685235 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash_ex.pbi 3e569c5192ee35c7
|
||||
2163 2769 7453880309265235 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash.pbi 780d5dcf2db83186
|
||||
2618 3160 7453880313162854 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_gpio.pbi 9c2d7f098f5a7980
|
||||
2732 3349 7453880315080118 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c.pbi 990292995a90ec23
|
||||
1969 2473 7453880306303988 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal.pbi c81c07f4062f81e6
|
||||
1625 2175 7453880303328695 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc.pbi 913b9fe7e9360a07
|
||||
1606 2161 7453880303188685 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_exti.pbi 9b294b4446afd498
|
||||
3333 3403 7453880315625901 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/heap_4.pbi a91407ad45a84dae
|
||||
3230 3328 7453880314870116 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/tasks.pbi 7af2debc08180638
|
||||
3684 4478 7453880326379393 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part5.pbi 9d93f38b1897aeed
|
||||
2091 2616 7453880307705232 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc_ex.pbi a61035b1d5112e37
|
||||
2518 2994 7453880311532839 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr.pbi ea974c04a89c6d63
|
||||
3167 3252 7453880314102834 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/cmsis_os.pbi e8c9e01f21a80c5c
|
||||
3322 3396 7453880315555896 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/event_groups.pbi 90bfd4ac47782b68
|
||||
2695 3198 7453880313562829 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_spi.pbi e2fc1cb0c98d3fda
|
||||
2187 2693 7453880308505230 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c_ex.pbi 19cb1d67190ba1f8
|
||||
3424 3476 7453880316365173 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part7.pbi 8a1d907468ec76e1
|
||||
2177 2731 7453880308885244 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim_ex.pbi 50f7710b02d47386
|
||||
3148 3683 7453880318402335 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_rcc_ex.pbi fa4ec2c6c3b08897
|
||||
2612 3165 7453880313232859 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr_ex.pbi b2e3a97ccb3ed832
|
||||
2771 3263 7453880314213075 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_spi_ex.pbi bcf1bbe76359666d
|
||||
3264 3332 7453880314900117 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/croutine.pbi c97f5b207775eed4
|
||||
2474 3147 7453880313042836 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim.pbi 56d998ac0b46d62a
|
||||
2704 3229 7453880313862834 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_rcc.pbi ec3fc00e0dbbed51
|
||||
3329 3410 7453880315685912 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/queue.pbi 9c6ab5e9a6c5c971
|
||||
3254 3321 7453880314800113 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/port.pbi e54a5c2a4789d89f
|
||||
537 1053 7454127472255493 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
3199 3291 7453880314491626 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/stream_buffer.pbi 9ace91f97aae008d
|
||||
3812 4193 7453880323523837 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part6.pbi 449b1fb9d2f74ff2
|
||||
6294 6622 7445525560000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/inflash.xcl d81f04bf232bf142
|
||||
6287 6627 7445525560000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/frt_protocol.xcl 84fafc0165e7c61a
|
||||
1 446 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/gpio.xcl c017718f24cb2a83
|
||||
6992 7224 7445525560000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/adc.xcl e5451b87ebc00ca7
|
||||
744 1562 7448714754350994 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part1.pbi a2973c59822e3ba0
|
||||
6281 7256 7445525570116242 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part4.pbi e398136710571a95
|
||||
3 569 7446330356194257 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/inflash.pbi bec8a18a82455250
|
||||
2968 3497 7445525532517351 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/gpio.pbi f8578090f82bcb2b
|
||||
7226 7650 7445525574077762 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/adc.pbi 113027c4707b4f2e
|
||||
553 1351 7454121761854645 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part1.pbi a2973c59822e3ba0
|
||||
3594 4435 7453880325949395 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part4.pbi e398136710571a95
|
||||
6 535 7453880286918044 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/inflash.pbi bec8a18a82455250
|
||||
15 540 7453880286928041 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/gpio.pbi f8578090f82bcb2b
|
||||
12 552 7453880287098055 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/adc.pbi 113027c4707b4f2e
|
||||
7218 7390 7445525570000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/freertos.xcl f9bfb2f65a25eea9
|
||||
6 801 7448714746735449 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/frt_protocol.pbi aa4d702faf2152c5
|
||||
213 1109 7453880292668037 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/frt_protocol.pbi aa4d702faf2152c5
|
||||
6315 6635 7445525560000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/uart_dev.xcl ca1dc76b01e9dfe7
|
||||
6739 7259 7445525570156253 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/dma.pbi 6de0e5f8453d5804
|
||||
8 608 7446330356557034 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/uart_dev.pbi 3ab39da8fbfa8221
|
||||
562 1347 7448735154115779 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1348 1964 7448735160303569 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
2 72 7447850484467591 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/cJSON.pbi 67e38bd06e4c0968
|
||||
2 546 7453880286968045 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/dma.pbi 6de0e5f8453d5804
|
||||
13 589 7453880287468046 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/uart_dev.pbi 3ab39da8fbfa8221
|
||||
547 1305 7454121761384691 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1054 1605 7454127477767180 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
8 212 7453880283687172 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/cJSON.pbi 67e38bd06e4c0968
|
||||
20 553 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.xcl ebfb9659b35c1fff
|
||||
10 775 7448714746455411 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
1 556 7448735232398521 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
557 1344 7448735240284001 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1345 1960 7448735246445563 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1961 3483 7448735261180978 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
3 557 7448735318520836 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
558 1299 7448735325939128 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1300 1872 7448735331676519 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1872 3423 7448735346699902 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 568 7448735404032855 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
569 1331 7448735411665125 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1331 1927 7448735417629060 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1928 3455 7448735432417071 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 571 7448735489894867 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
572 1362 7448735497808167 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1363 1957 7448735503758875 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1957 3548 7448735518766552 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 573 7448735576547393 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
575 1322 7448735584041213 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1322 1903 7448735589859922 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1904 3471 7448735605040808 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 570 7448735662329384 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
571 1333 7448735669955706 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1334 1925 7448735675874587 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1925 3474 7448735690876036 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 558 7448735748039407 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
559 1304 7448735755503376 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1304 1875 7448735761218981 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1876 3408 7448735776080946 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 571 7448735833395740 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
572 1356 7448735841248388 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1357 1955 7448735847233201 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1955 3510 7448735862327565 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
3 565 7448735919559523 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
566 1319 7448735927103010 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1320 1913 7448735933047332 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1913 3477 7448735948190926 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 566 7448736005519622 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
567 1361 7448736013479256 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1362 1981 7448736019681835 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1982 3506 7448736034435642 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 597 7448736091974413 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
598 1370 7448736099727083 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1371 1956 7448736105575942 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1956 3542 7448736120885703 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
1 563 7448740052289295 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
564 1308 7448740059764401 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1308 1880 7448740065479683 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1880 3380 7448740080015624 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 567 7448743055514640 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
568 1305 7448743062898960 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1306 1894 7448743068788500 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1895 3424 7448743083506927 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 562 7448743140843290 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
563 1322 7448743148443422 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1323 1916 7448743154384500 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1916 3412 7448743168915597 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
1 538 7448743225814017 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
539 1285 7448743233286277 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1286 1884 7448743239279084 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1885 3412 7448743254107613 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 565 7448743311281432 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
566 1320 7448743318853432 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1321 1901 7448743324660554 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1902 3367 7448743338859684 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
1 541 7448743395854252 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
542 1301 7448743403456637 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1301 1929 7448743409235803 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1930 3481 7448743424786422 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 552 7448743532156069 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
553 1302 7448743539656008 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1302 1871 7448743545356243 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1872 3399 7448743559836799 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
1 534 7448743617054737 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
535 1252 7448743624234412 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1252 1817 7448743629893478 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1818 3296 7448743644230773 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 580 7448743701524315 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
580 1417 7448743709912236 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1417 2051 7448743716256053 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
2052 3644 7448743731747100 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 572 7448744141343305 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
573 1361 7448744149238985 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1362 1944 7448744155070413 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1945 3542 7448744170462507 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 544 7448744227659659 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
546 1299 7448744235217385 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1300 1909 7448744241322858 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1911 3498 7448744256674085 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 569 7448744314235633 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
571 1287 7448744321420358 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1288 1850 7448744327055958 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1852 3337 7448744341429485 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 549 7448744499394463 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
551 1315 7448744507054855 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1316 1893 7448744512844777 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1894 3392 7448744527401305 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 580 7448744584854165 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
581 1306 7448744592124164 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1307 1922 7448744598282696 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1923 3466 7448744613202799 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 672 7448744671553620 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
672 1543 7448744680270804 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1544 2295 7448744687789508 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
2296 4209 7448744706041963 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 541 7448745870930657 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
542 1333 7448745878858443 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1333 1928 7448745884810277 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1928 3420 7448745899252401 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 567 7448745956557607 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
568 1297 7448745963865707 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1298 1874 7448745969625664 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1875 3411 7448745984378116 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 552 7448746041671372 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
553 1316 7448746049317254 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1316 1904 7448746055201961 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1905 3379 7448746069478653 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 563 7448746126725565 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
564 1337 7448746134475737 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1338 1922 7448746140326508 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1923 3437 7448746155016712 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 545 7448746212052727 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
545 1305 7448746219656512 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1306 1898 7448746225597335 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1900 3431 7448746240342796 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 535 7448746347747956 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
536 1268 7448746355087121 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1269 1843 7448746360836116 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1843 3317 7448746375121384 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 533 7448746432014359 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
534 1246 7448746439161119 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1247 1816 7448746444858649 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1817 3304 7448746459271891 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 536 7448746516215344 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
537 1281 7448746523665388 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1282 1860 7448746529463543 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1861 3341 7448746543784540 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
1 538 7448746600776748 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
539 1311 7448746608523240 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1312 1900 7448746614408249 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1900 3397 7448746628936771 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 576 7448746686213017 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
577 1307 7448746693524412 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1307 1877 7448746699227596 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1878 3431 7448746714287820 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 549 7448746821670079 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
551 1290 7448746829087967 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1291 1863 7448746834823479 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1864 3380 7448746849499744 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 563 7448746906783006 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
564 1316 7448746914331600 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1317 1904 7448746920206846 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1905 3431 7448746935015340 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 562 7448746992216232 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
563 1308 7448746999671506 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1309 1890 7448747005502191 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1890 3420 7448747020336468 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
4 589 7448747083656574 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
590 1330 7448747091074283 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1330 1896 7448747096739165 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1896 3359 7448747110935677 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 574 7448751443746686 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/main.pbi c727fe1dca7b633d
|
||||
575 1351 7448751451522052 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part1.pbi a2973c59822e3ba0
|
||||
1352 1934 7448751457352008 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1935 3533 7448751472353923 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 551 7448751530026597 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
552 1094 7448751535471117 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1095 1671 7448751541233422 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1671 3199 7448751556046537 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 572 7448754682730274 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
572 1110 7448754688126198 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1111 1687 7448754693891972 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1688 3207 7448754708630719 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 553 7448756174564166 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
554 1113 7448756180171594 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1114 1710 7448756186139833 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1711 3260 7448756201174509 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 568 7448756258367791 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/anemometer_dev.pbi ea36b5e0286322c4
|
||||
569 1329 7448756265993501 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1330 1953 7448756272229176 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
2 536 7454127467069195 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
2 559 7454131529578434 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
560 1106 7454131535058432 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1107 1680 7454131540801852 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1681 3162 7454131555162495 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 533 7454131612028913 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
534 1077 7454131617469651 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1077 1670 7454131623402091 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1670 3187 7454131638059991 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 541 7454131695088894 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
542 1074 7454131700421469 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1075 1642 7454131706094416 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1642 3102 7454131720234731 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
1 533 7454131777133803 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
533 1068 7454131782493516 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1069 1629 7454131788096819 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1629 3084 7454131802200964 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 542 7454132462543939 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
543 1064 7454132467772958 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1065 1619 7454132473323753 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1620 3105 7454132487731769 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
1 533 7454133449899961 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
534 1058 7454133455163886 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1059 1638 7454133460955774 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1639 3122 7454133475351604 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
1 533 7454133683131552 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
534 1074 7454133688538898 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1074 1641 7454133694213958 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1642 3140 7454133708752290 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
5 585 7454133766123696 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/main.pbi c727fe1dca7b633d
|
||||
6 589 7454133766153689 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
2 592 7454133766163694 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/freertos.pbi 3ddb8275ce0d8276
|
||||
590 1152 7454133771813369 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
593 1358 7454133773868320 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
586 1396 7454133774253948 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part1.pbi a2973c59822e3ba0
|
||||
1397 1967 7454133779960085 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1968 3448 7454133794305146 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 540 7454133951850832 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
541 1062 7454133957078108 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1062 1649 7454133962951376 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1650 3151 7454133977444522 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
4 567 7454134034851544 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/main.pbi c727fe1dca7b633d
|
||||
5 570 7454134034861377 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
2 573 7454134034871332 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/freertos.pbi 3ddb8275ce0d8276
|
||||
571 1136 7454134040558758 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
574 1336 7454134042554630 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
568 1372 7454134042918672 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part1.pbi a2973c59822e3ba0
|
||||
1373 1939 7454134048589719 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1940 3487 7454134062881210 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 555 7454134171012224 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
556 1089 7454134176363563 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1089 1665 7454134182132543 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1665 3136 7454134196373340 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
1 531 7454134253253688 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/freertos.pbi 3ddb8275ce0d8276
|
||||
532 1244 7454134260390250 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1244 1798 7454134265933836 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1799 3285 7454134280347168 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 531 7454134437744920 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/freertos.pbi 3ddb8275ce0d8276
|
||||
532 1241 7454134444850696 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1242 1804 7454134450476322 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1804 3265 7454134464632808 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 523 7454134521458197 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/freertos.pbi 3ddb8275ce0d8276
|
||||
524 1237 7454134528595170 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||
1238 1795 7454134534186740 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1796 3235 7454134548150321 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 652 7454135813228152 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
654 1192 7454135818638539 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1193 1762 7454135824329637 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1763 3252 7454135838756299 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 536 7454136046638981 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
536 1070 7454136051985919 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1071 1638 7454136057664591 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1639 3167 7454136072507520 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 536 7454136129368846 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
537 1102 7454136135036593 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1103 1709 7454136141103194 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1710 3162 7454136155156854 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 537 7454136212061465 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
538 1071 7454136217407093 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1072 1667 7454136223374439 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1667 3154 7454136237798432 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 527 7454136395205837 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
528 1083 7454136400772202 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1084 1646 7454136406403586 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1 1483 7454136481812714 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 538 7454139153337882 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
539 1080 7454139158766131 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1080 1667 7454139164645897 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1668 3155 7454139179040185 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 546 7454139286350035 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
547 1077 7454139291655803 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1078 1648 7454139297365802 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1649 3123 7454139311641189 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 566 7454139368901085 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
567 1099 7454139374237409 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1100 1693 7454139380176283 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1694 3302 7454139395415152 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
2 539 7454140156807502 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||
540 1058 7454140161998150 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||
1058 1628 7454140167702880 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||
1629 3147 7454140182441016 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,96 @@
|
|||
E:\Y\IAR\micro_climate\EWARM\micro_climate\BrowseInfo\Core_13247989168731456611.dir\freertos.pbi: \
|
||||
E:\Y\IAR\micro_climate\Core\Src\freertos.c \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\stddef.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\ycheck.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\yvals.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Defaults.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Config_Normal.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\ysizet.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdint.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\FreeRTOSConfig.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\projdefs.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\portable.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\deprecated_definitions.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portmacro.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\intrinsics.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iar_intrinsics_common.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\main.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\semphr.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\event_groups.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\anemometer_dev.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\adc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\main.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\dma.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\i2c.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\usart.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\comm_types.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\RingQueue\ring_queue.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\tim.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\gpio.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdio.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\string.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product_string.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\math.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_float_setup.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\tools\arr_tool.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\ST\ARM\DSP\Inc\arm_math.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\float.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\limits.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\uart_dev.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\comm_types.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\assertions.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\pdebug.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\uart_dev.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\frt_protocol.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\timer.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\inflash.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\HP203B\hp203b.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\EC801E\EC801E.h
|
Binary file not shown.
|
@ -1,5 +1,7 @@
|
|||
E:\Y\IAR\micro_climate\EWARM\micro_climate\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal.pbi: \
|
||||
E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal.c \
|
||||
E:\Y\IAR\micro_climate\EWARM\micro_climate\BrowseInfo\Core_13247989168731456611.dir\tim.pbi: \
|
||||
E:\Y\IAR\micro_climate\Core\Src\tim.c \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\tim.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\main.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
|
@ -43,4 +45,41 @@ E:\Y\IAR\micro_climate\EWARM\micro_climate\BrowseInfo\STM32L4xx_HAL_Driver_29876
|
|||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\anemometer_dev.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\adc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\dma.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\i2c.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\usart.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\comm_types.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\RingQueue\ring_queue.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\gpio.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdio.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\string.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product_string.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\math.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_float_setup.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\tools\arr_tool.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\FreeRTOSConfig.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\projdefs.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\portable.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\deprecated_definitions.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portmacro.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\intrinsics.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iar_intrinsics_common.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\semphr.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\event_groups.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\ST\ARM\DSP\Inc\arm_math.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\float.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\limits.h
|
Binary file not shown.
|
@ -0,0 +1,87 @@
|
|||
E:\Y\IAR\micro_climate\EWARM\micro_climate\BrowseInfo\HP203B_1856951872026386537.dir\hp203b.pbi: \
|
||||
E:\Y\IAR\micro_climate\Drivers\HP203B\hp203b.c \
|
||||
E:\Y\IAR\micro_climate\Drivers\HP203B\hp203b.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\main.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdint.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\ycheck.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\yvals.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Defaults.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Config_Normal.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\stddef.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\ysizet.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\i2c.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\main.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\anemometer_dev.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\adc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\dma.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\usart.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\comm_types.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\RingQueue\ring_queue.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\tim.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\gpio.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdio.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\string.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product_string.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\math.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_float_setup.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\tools\arr_tool.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\FreeRTOSConfig.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\projdefs.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\portable.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\deprecated_definitions.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portmacro.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\intrinsics.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iar_intrinsics_common.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\semphr.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\event_groups.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\ST\ARM\DSP\Inc\arm_math.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\float.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\limits.h
|
|
@ -0,0 +1,96 @@
|
|||
E:\Y\IAR\micro_climate\EWARM\micro_climate\BrowseInfo\Src_5571640358672592439.dir\anemometer_dev.pbi: \
|
||||
E:\Y\IAR\micro_climate\App\Src\anemometer_dev.c \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\anemometer_dev.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\adc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\main.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l496xx.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdint.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\ycheck.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\yvals.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Defaults.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Config_Normal.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\stddef.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\ysizet.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_spi_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\dma.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\i2c.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\usart.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\comm_types.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\RingQueue\ring_queue.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\tim.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\gpio.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\stdio.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\string.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product_string.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\math.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_float_setup.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\tools\arr_tool.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\FreeRTOS.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\FreeRTOSConfig.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\projdefs.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\portable.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\deprecated_definitions.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portmacro.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\intrinsics.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iar_intrinsics_common.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\mpu_wrappers.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS\cmsis_os.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\list.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\task.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\semphr.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\queue.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\event_groups.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\Third_Party\FreeRTOS\Source\include\timers.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Middlewares\ST\ARM\DSP\Inc\arm_math.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\float.h \
|
||||
D:\Program\ Files\IAR\ Systems\arm\inc\c\limits.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\Filter\filter.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\inflash.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\comm_types.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\uart_dev.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\assertions.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\pdebug.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\App\Inc\uart_dev.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\tools\fdacoefs.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\Sht3x\sht30.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Drivers\HP203B\hp203b.h \
|
||||
E:\Y\IAR\micro_climate\EWARM\..\Core\Inc\main.h
|
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:11
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:11
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:10
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:10
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 08/Aug/2024 10:18:33
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:43
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 08/Aug/2024 10:18:33
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:43
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:10
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:10
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 09/Aug/2024 10:03:29
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 16:24:22
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
@ -333,9 +333,10 @@ E:\Y\IAR\micro_climate\Core\Src\freertos.c
|
|||
154 void StartDefaultTask(void const * argument)
|
||||
155 {
|
||||
\ StartDefaultTask: (+1)
|
||||
\ 0x0 0xB538 PUSH {R3-R5,LR}
|
||||
\ 0x0 0xB570 PUSH {R4-R6,LR}
|
||||
\ 0x2 0x.... LDR.N R4,??DataTable9_2
|
||||
\ 0x4 0x.... LDR.N R5,??DataTable9_3
|
||||
\ 0x6 0x.... LDR.N R6,??DataTable9_4
|
||||
156 /* USER CODE BEGIN StartDefaultTask */
|
||||
157
|
||||
158 /* Infinite loop */
|
||||
|
@ -343,126 +344,137 @@ E:\Y\IAR\micro_climate\Core\Src\freertos.c
|
|||
160 {
|
||||
161 read_and_process_uart_data(g_rs485_uart_handle);
|
||||
\ ??StartDefaultTask_0: (+1)
|
||||
\ 0x6 0x6828 LDR R0,[R5, #+0]
|
||||
\ 0x8 0x.... 0x.... BL read_and_process_uart_data
|
||||
\ 0x8 0x6830 LDR R0,[R6, #+0]
|
||||
\ 0xA 0x.... 0x.... BL read_and_process_uart_data
|
||||
162 read_and_process_uart_data(g_term_uart_handle);
|
||||
\ 0xC 0x6820 LDR R0,[R4, #+0]
|
||||
\ 0xE 0x.... 0x.... BL read_and_process_uart_data
|
||||
163 osDelay(100);
|
||||
\ 0x12 0x2064 MOVS R0,#+100
|
||||
\ 0x14 0x.... 0x.... BL osDelay
|
||||
\ 0x18 0xE7F5 B.N ??StartDefaultTask_0
|
||||
164
|
||||
165 }
|
||||
166 /* USER CODE END StartDefaultTask */
|
||||
167 }
|
||||
\ 0xE 0x6828 LDR R0,[R5, #+0]
|
||||
\ 0x10 0x.... 0x.... BL read_and_process_uart_data
|
||||
163 if(time_get_ok)
|
||||
\ 0x14 0x7820 LDRB R0,[R4, #+0]
|
||||
\ 0x16 0xB108 CBZ.N R0,??StartDefaultTask_1
|
||||
164 {
|
||||
165 parse_4g_receive_data();
|
||||
\ 0x18 0x.... 0x.... BL parse_4g_receive_data
|
||||
166 }
|
||||
167 osDelay(100);
|
||||
\ ??StartDefaultTask_1: (+1)
|
||||
\ 0x1C 0x2064 MOVS R0,#+100
|
||||
\ 0x1E 0x.... 0x.... BL osDelay
|
||||
\ 0x22 0xE7F1 B.N ??StartDefaultTask_0
|
||||
168
|
||||
169 /* Private application code --------------------------------------------------*/
|
||||
170 /* USER CODE BEGIN Application */
|
||||
171 #if 0
|
||||
172 void task_shell_term_main_loop(void const * argument)
|
||||
173 {
|
||||
174 shell_init();
|
||||
175 for(;;)
|
||||
176 {
|
||||
177 shell_main_loop("climate:~$ ");
|
||||
178 osDelay(500);
|
||||
179 }
|
||||
180 }
|
||||
181 #endif
|
||||
182
|
||||
183
|
||||
169 }
|
||||
170 /* USER CODE END StartDefaultTask */
|
||||
171 }
|
||||
172
|
||||
173 /* Private application code --------------------------------------------------*/
|
||||
174 /* USER CODE BEGIN Application */
|
||||
175 #if 0
|
||||
176 void task_shell_term_main_loop(void const * argument)
|
||||
177 {
|
||||
178 shell_init();
|
||||
179 for(;;)
|
||||
180 {
|
||||
181 shell_main_loop("climate:~$ ");
|
||||
182 osDelay(500);
|
||||
183 }
|
||||
184 }
|
||||
185 #endif
|
||||
186
|
||||
187
|
||||
|
||||
\ In section .text, align 2, keep-with-next
|
||||
184 void SensorTask(void const * argument)
|
||||
185 {
|
||||
188 void SensorTask(void const * argument)
|
||||
189 {
|
||||
\ SensorTask: (+1)
|
||||
\ 0x0 0xB510 PUSH {R4,LR}
|
||||
\ 0x2 0x.... LDR.N R4,??DataTable9_2
|
||||
186 /* USER CODE BEGIN StartDefaultTask */
|
||||
187 /* Infinite loop */
|
||||
188 for(;;)
|
||||
189 {
|
||||
190 read_and_process_uart_data(g_term_uart_handle);
|
||||
\ 0x2 0x.... LDR.N R4,??DataTable9_3
|
||||
190 /* USER CODE BEGIN StartDefaultTask */
|
||||
191 /* Infinite loop */
|
||||
192 for(;;)
|
||||
193 {
|
||||
194 read_and_process_uart_data(g_term_uart_handle);
|
||||
\ ??SensorTask_0: (+1)
|
||||
\ 0x4 0x6820 LDR R0,[R4, #+0]
|
||||
\ 0x6 0x.... 0x.... BL read_and_process_uart_data
|
||||
191 osDelay(100);
|
||||
195 osDelay(100);
|
||||
\ 0xA 0x2064 MOVS R0,#+100
|
||||
\ 0xC 0x.... 0x.... BL osDelay
|
||||
\ 0x10 0xE7F8 B.N ??SensorTask_0
|
||||
192 }
|
||||
193 /* USER CODE END StartDefaultTask */
|
||||
194 }
|
||||
195 /* USER CODE END Application */
|
||||
196
|
||||
196 }
|
||||
197 /* USER CODE END StartDefaultTask */
|
||||
198 }
|
||||
199 /* USER CODE END Application */
|
||||
200
|
||||
|
||||
\ In section .text, align 2, keep-with-next
|
||||
197 void LEDTask(void const * argument)
|
||||
198 {
|
||||
201 void LEDTask(void const * argument)
|
||||
202 {
|
||||
\ LEDTask: (+1)
|
||||
\ 0x0 0xB580 PUSH {R7,LR}
|
||||
199 /* USER CODE BEGIN StartDefaultTask */
|
||||
200 /* Infinite loop */
|
||||
201 for(;;)
|
||||
202 {
|
||||
203 osDelay(1000);
|
||||
203 /* USER CODE BEGIN StartDefaultTask */
|
||||
204 /* Infinite loop */
|
||||
205 for(;;)
|
||||
206 {
|
||||
207 osDelay(1000);
|
||||
\ ??LEDTask_0: (+1)
|
||||
\ 0x2 0xF44F 0x707A MOV R0,#+1000
|
||||
\ 0x6 0x.... 0x.... BL osDelay
|
||||
204 HAL_GPIO_TogglePin(GPIOC,GPIO_LED_CTRL_Pin);
|
||||
208 HAL_GPIO_TogglePin(GPIOC,GPIO_LED_CTRL_Pin);
|
||||
\ 0xA 0xF44F 0x7100 MOV R1,#+512
|
||||
\ 0xE 0x.... LDR.N R0,??DataTable9_4
|
||||
\ 0xE 0x.... LDR.N R0,??DataTable9_5
|
||||
\ 0x10 0x.... 0x.... BL HAL_GPIO_TogglePin
|
||||
\ 0x14 0xE7F5 B.N ??LEDTask_0
|
||||
205
|
||||
206 }
|
||||
207 /* USER CODE END StartDefaultTask */
|
||||
208 }
|
||||
209 /* USER CODE END Application */
|
||||
210
|
||||
209
|
||||
210 }
|
||||
211 /* USER CODE END StartDefaultTask */
|
||||
212 }
|
||||
213 /* USER CODE END Application */
|
||||
214
|
||||
|
||||
\ In section .text, align 2, keep-with-next
|
||||
211 void Trans_4g_Task(void const * argument)
|
||||
212 {
|
||||
215 void Trans_4g_Task(void const * argument)
|
||||
216 {
|
||||
\ Trans_4g_Task: (+1)
|
||||
\ 0x0 0xB510 PUSH {R4,LR}
|
||||
213 /* USER CODE BEGIN StartDefaultTask */
|
||||
214 EC801E_Power_ON();
|
||||
217 /* USER CODE BEGIN StartDefaultTask */
|
||||
218 EC801E_Power_ON();
|
||||
\ 0x2 0x.... 0x.... BL EC801E_Power_ON
|
||||
215 osDelay(5000);
|
||||
219 osDelay(5000);
|
||||
\ 0x6 0xF241 0x3088 MOVW R0,#+5000
|
||||
\ 0xA 0x.... 0x.... BL osDelay
|
||||
216 EC801_GET_Time();
|
||||
\ 0xE 0x.... 0x.... BL EC801_GET_Time
|
||||
217 MQTT_Config();
|
||||
\ 0x12 0x.... 0x.... BL MQTT_Config
|
||||
218 MQTT_Trans_Data();
|
||||
220 while(!EC801_GET_Time());
|
||||
\ ??Trans_4g_Task_0: (+1)
|
||||
\ 0x16 0x.... 0x.... BL MQTT_Trans_Data
|
||||
219 int temp_1s = 0;
|
||||
\ 0x1A 0x2400 MOVS R4,#+0
|
||||
220 /* Infinite loop */
|
||||
221 for(;;)
|
||||
222 {
|
||||
223 osDelay(1000);
|
||||
\ 0xE 0x.... 0x.... BL EC801_GET_Time
|
||||
\ 0x12 0x2800 CMP R0,#+0
|
||||
\ 0x14 0xD0FB BEQ.N ??Trans_4g_Task_0
|
||||
221 MQTT_Config();
|
||||
\ 0x16 0x.... 0x.... BL MQTT_Config
|
||||
222 MQTT_Trans_Data();
|
||||
\ ??Trans_4g_Task_1: (+1)
|
||||
\ 0x1C 0xF44F 0x707A MOV R0,#+1000
|
||||
\ 0x20 0x.... 0x.... BL osDelay
|
||||
224 temp_1s++;
|
||||
\ 0x24 0x1C64 ADDS R4,R4,#+1
|
||||
225 if(temp_1s >= 600)
|
||||
\ 0x26 0xF5B4 0x7F16 CMP R4,#+600
|
||||
\ 0x2A 0xDBF7 BLT.N ??Trans_4g_Task_1
|
||||
226 {
|
||||
227 temp_1s = 0;
|
||||
228 MQTT_Trans_Data();
|
||||
\ 0x2C 0xE7F3 B.N ??Trans_4g_Task_0
|
||||
229 }
|
||||
230
|
||||
231 }
|
||||
232 /* USER CODE END StartDefaultTask */
|
||||
233 }
|
||||
\ 0x1A 0x.... 0x.... BL MQTT_Trans_Data
|
||||
223 int temp_1s = 0;
|
||||
\ 0x1E 0x2400 MOVS R4,#+0
|
||||
224 /* Infinite loop */
|
||||
225 for(;;)
|
||||
226 {
|
||||
227 osDelay(1000);
|
||||
\ ??Trans_4g_Task_2: (+1)
|
||||
\ 0x20 0xF44F 0x707A MOV R0,#+1000
|
||||
\ 0x24 0x.... 0x.... BL osDelay
|
||||
228 temp_1s++;
|
||||
\ 0x28 0x1C64 ADDS R4,R4,#+1
|
||||
229 if(temp_1s >= 600)
|
||||
\ 0x2A 0xF5B4 0x7F16 CMP R4,#+600
|
||||
\ 0x2E 0xDBF7 BLT.N ??Trans_4g_Task_2
|
||||
230 {
|
||||
231 temp_1s = 0;
|
||||
232 MQTT_Trans_Data();
|
||||
\ 0x30 0xE7F3 B.N ??Trans_4g_Task_1
|
||||
233 }
|
||||
234
|
||||
235 }
|
||||
236 /* USER CODE END StartDefaultTask */
|
||||
237 }
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ??DataTable9:
|
||||
|
@ -474,14 +486,18 @@ E:\Y\IAR\micro_climate\Core\Src\freertos.c
|
|||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ??DataTable9_2:
|
||||
\ 0x0 0x....'.... DC32 g_term_uart_handle
|
||||
\ 0x0 0x....'.... DC32 time_get_ok
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ??DataTable9_3:
|
||||
\ 0x0 0x....'.... DC32 g_rs485_uart_handle
|
||||
\ 0x0 0x....'.... DC32 g_term_uart_handle
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ??DataTable9_4:
|
||||
\ 0x0 0x....'.... DC32 g_rs485_uart_handle
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ??DataTable9_5:
|
||||
\ 0x0 0x4800'0800 DC32 0x48000800
|
||||
|
||||
\ In section .rodata, align 4
|
||||
|
@ -534,7 +550,7 @@ E:\Y\IAR\micro_climate\Core\Src\freertos.c
|
|||
\ 0x61 0x73
|
||||
\ 0x6B 0x00
|
||||
\ 0xE DS8 2
|
||||
234 /* USER CODE END Application */
|
||||
238 /* USER CODE END Application */
|
||||
|
||||
Maximum stack usage in bytes:
|
||||
|
||||
|
@ -550,6 +566,7 @@ E:\Y\IAR\micro_climate\Core\Src\freertos.c
|
|||
8 -> read_and_process_uart_data
|
||||
16 StartDefaultTask
|
||||
16 -> osDelay
|
||||
16 -> parse_4g_receive_data
|
||||
16 -> read_and_process_uart_data
|
||||
8 Trans_4g_Task
|
||||
8 -> EC801E_Power_ON
|
||||
|
@ -569,6 +586,7 @@ E:\Y\IAR\micro_climate\Core\Src\freertos.c
|
|||
4 ??DataTable9_2
|
||||
4 ??DataTable9_3
|
||||
4 ??DataTable9_4
|
||||
4 ??DataTable9_5
|
||||
12 ?_0
|
||||
8 ?_1
|
||||
12 ?_2
|
||||
|
@ -577,8 +595,8 @@ E:\Y\IAR\micro_climate\Core\Src\freertos.c
|
|||
22 LEDTask
|
||||
62 MX_FREERTOS_Init
|
||||
18 SensorTask
|
||||
26 StartDefaultTask
|
||||
46 Trans_4g_Task
|
||||
36 StartDefaultTask
|
||||
50 Trans_4g_Task
|
||||
20 anemometerHandle
|
||||
Trans_4g_taskHandle
|
||||
ledTaskHandle
|
||||
|
@ -598,9 +616,9 @@ E:\Y\IAR\micro_climate\Core\Src\freertos.c
|
|||
|
||||
624 bytes in section .bss
|
||||
68 bytes in section .rodata
|
||||
350 bytes in section .text
|
||||
368 bytes in section .text
|
||||
|
||||
350 bytes of CODE memory
|
||||
368 bytes of CODE memory
|
||||
68 bytes of CONST memory
|
||||
624 bytes of DATA memory
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 09/Aug/2024 10:03:29
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 16:24:22
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
@ -70,8 +70,10 @@
|
|||
EXTERN g_term_uart_handle
|
||||
EXTERN osDelay
|
||||
EXTERN osThreadCreate
|
||||
EXTERN parse_4g_receive_data
|
||||
EXTERN read_and_process_uart_data
|
||||
EXTERN tem_hum_update_task
|
||||
EXTERN time_get_ok
|
||||
EXTERN wind_task
|
||||
|
||||
PUBLIC LEDTask
|
||||
|
@ -378,13 +380,15 @@ MX_FREERTOS_Init:
|
|||
// 154 void StartDefaultTask(void const * argument)
|
||||
// 155 {
|
||||
StartDefaultTask:
|
||||
PUSH {R3-R5,LR}
|
||||
PUSH {R4-R6,LR}
|
||||
CFI R14 Frame(CFA, -4)
|
||||
CFI R5 Frame(CFA, -8)
|
||||
CFI R4 Frame(CFA, -12)
|
||||
CFI R6 Frame(CFA, -8)
|
||||
CFI R5 Frame(CFA, -12)
|
||||
CFI R4 Frame(CFA, -16)
|
||||
CFI CFA R13+16
|
||||
LDR.N R4,??DataTable9_2
|
||||
LDR.N R5,??DataTable9_3
|
||||
LDR.N R6,??DataTable9_4
|
||||
// 156 /* USER CODE BEGIN StartDefaultTask */
|
||||
// 157
|
||||
// 158 /* Infinite loop */
|
||||
|
@ -392,102 +396,111 @@ StartDefaultTask:
|
|||
// 160 {
|
||||
// 161 read_and_process_uart_data(g_rs485_uart_handle);
|
||||
??StartDefaultTask_0:
|
||||
LDR R0,[R5, #+0]
|
||||
LDR R0,[R6, #+0]
|
||||
CFI FunCall read_and_process_uart_data
|
||||
BL read_and_process_uart_data
|
||||
// 162 read_and_process_uart_data(g_term_uart_handle);
|
||||
LDR R0,[R4, #+0]
|
||||
LDR R0,[R5, #+0]
|
||||
CFI FunCall read_and_process_uart_data
|
||||
BL read_and_process_uart_data
|
||||
// 163 osDelay(100);
|
||||
// 163 if(time_get_ok)
|
||||
LDRB R0,[R4, #+0]
|
||||
CBZ.N R0,??StartDefaultTask_1
|
||||
// 164 {
|
||||
// 165 parse_4g_receive_data();
|
||||
CFI FunCall parse_4g_receive_data
|
||||
BL parse_4g_receive_data
|
||||
// 166 }
|
||||
// 167 osDelay(100);
|
||||
??StartDefaultTask_1:
|
||||
MOVS R0,#+100
|
||||
CFI FunCall osDelay
|
||||
BL osDelay
|
||||
B.N ??StartDefaultTask_0
|
||||
// 164
|
||||
// 165 }
|
||||
// 166 /* USER CODE END StartDefaultTask */
|
||||
// 167 }
|
||||
CFI EndBlock cfiBlock2
|
||||
// 168
|
||||
// 169 /* Private application code --------------------------------------------------*/
|
||||
// 170 /* USER CODE BEGIN Application */
|
||||
// 171 #if 0
|
||||
// 172 void task_shell_term_main_loop(void const * argument)
|
||||
// 173 {
|
||||
// 174 shell_init();
|
||||
// 175 for(;;)
|
||||
// 176 {
|
||||
// 177 shell_main_loop("climate:~$ ");
|
||||
// 178 osDelay(500);
|
||||
// 179 }
|
||||
// 180 }
|
||||
// 181 #endif
|
||||
// 182
|
||||
// 183
|
||||
// 169 }
|
||||
// 170 /* USER CODE END StartDefaultTask */
|
||||
// 171 }
|
||||
CFI EndBlock cfiBlock2
|
||||
// 172
|
||||
// 173 /* Private application code --------------------------------------------------*/
|
||||
// 174 /* USER CODE BEGIN Application */
|
||||
// 175 #if 0
|
||||
// 176 void task_shell_term_main_loop(void const * argument)
|
||||
// 177 {
|
||||
// 178 shell_init();
|
||||
// 179 for(;;)
|
||||
// 180 {
|
||||
// 181 shell_main_loop("climate:~$ ");
|
||||
// 182 osDelay(500);
|
||||
// 183 }
|
||||
// 184 }
|
||||
// 185 #endif
|
||||
// 186
|
||||
// 187
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(1)
|
||||
CFI Block cfiBlock3 Using cfiCommon0
|
||||
CFI Function SensorTask
|
||||
THUMB
|
||||
// 184 void SensorTask(void const * argument)
|
||||
// 185 {
|
||||
// 188 void SensorTask(void const * argument)
|
||||
// 189 {
|
||||
SensorTask:
|
||||
PUSH {R4,LR}
|
||||
CFI R14 Frame(CFA, -4)
|
||||
CFI R4 Frame(CFA, -8)
|
||||
CFI CFA R13+8
|
||||
LDR.N R4,??DataTable9_2
|
||||
// 186 /* USER CODE BEGIN StartDefaultTask */
|
||||
// 187 /* Infinite loop */
|
||||
// 188 for(;;)
|
||||
// 189 {
|
||||
// 190 read_and_process_uart_data(g_term_uart_handle);
|
||||
LDR.N R4,??DataTable9_3
|
||||
// 190 /* USER CODE BEGIN StartDefaultTask */
|
||||
// 191 /* Infinite loop */
|
||||
// 192 for(;;)
|
||||
// 193 {
|
||||
// 194 read_and_process_uart_data(g_term_uart_handle);
|
||||
??SensorTask_0:
|
||||
LDR R0,[R4, #+0]
|
||||
CFI FunCall read_and_process_uart_data
|
||||
BL read_and_process_uart_data
|
||||
// 191 osDelay(100);
|
||||
// 195 osDelay(100);
|
||||
MOVS R0,#+100
|
||||
CFI FunCall osDelay
|
||||
BL osDelay
|
||||
B.N ??SensorTask_0
|
||||
// 192 }
|
||||
// 193 /* USER CODE END StartDefaultTask */
|
||||
// 194 }
|
||||
// 196 }
|
||||
// 197 /* USER CODE END StartDefaultTask */
|
||||
// 198 }
|
||||
CFI EndBlock cfiBlock3
|
||||
// 195 /* USER CODE END Application */
|
||||
// 196
|
||||
// 199 /* USER CODE END Application */
|
||||
// 200
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(1)
|
||||
CFI Block cfiBlock4 Using cfiCommon0
|
||||
CFI Function LEDTask
|
||||
THUMB
|
||||
// 197 void LEDTask(void const * argument)
|
||||
// 198 {
|
||||
// 201 void LEDTask(void const * argument)
|
||||
// 202 {
|
||||
LEDTask:
|
||||
PUSH {R7,LR}
|
||||
CFI R14 Frame(CFA, -4)
|
||||
CFI CFA R13+8
|
||||
// 199 /* USER CODE BEGIN StartDefaultTask */
|
||||
// 200 /* Infinite loop */
|
||||
// 201 for(;;)
|
||||
// 202 {
|
||||
// 203 osDelay(1000);
|
||||
// 203 /* USER CODE BEGIN StartDefaultTask */
|
||||
// 204 /* Infinite loop */
|
||||
// 205 for(;;)
|
||||
// 206 {
|
||||
// 207 osDelay(1000);
|
||||
??LEDTask_0:
|
||||
MOV R0,#+1000
|
||||
CFI FunCall osDelay
|
||||
BL osDelay
|
||||
// 204 HAL_GPIO_TogglePin(GPIOC,GPIO_LED_CTRL_Pin);
|
||||
// 208 HAL_GPIO_TogglePin(GPIOC,GPIO_LED_CTRL_Pin);
|
||||
MOV R1,#+512
|
||||
LDR.N R0,??DataTable9_4
|
||||
LDR.N R0,??DataTable9_5
|
||||
CFI FunCall HAL_GPIO_TogglePin
|
||||
BL HAL_GPIO_TogglePin
|
||||
B.N ??LEDTask_0
|
||||
// 205
|
||||
// 206 }
|
||||
// 207 /* USER CODE END StartDefaultTask */
|
||||
// 208 }
|
||||
// 209
|
||||
// 210 }
|
||||
// 211 /* USER CODE END StartDefaultTask */
|
||||
// 212 }
|
||||
CFI EndBlock cfiBlock4
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
|
@ -509,77 +522,87 @@ LEDTask:
|
|||
DATA
|
||||
??DataTable9_2:
|
||||
DATA32
|
||||
DC32 g_term_uart_handle
|
||||
DC32 time_get_ok
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable9_3:
|
||||
DATA32
|
||||
DC32 g_rs485_uart_handle
|
||||
DC32 g_term_uart_handle
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable9_4:
|
||||
DATA32
|
||||
DC32 g_rs485_uart_handle
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable9_5:
|
||||
DATA32
|
||||
DC32 0x48000800
|
||||
// 209 /* USER CODE END Application */
|
||||
// 210
|
||||
// 213 /* USER CODE END Application */
|
||||
// 214
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(1)
|
||||
CFI Block cfiBlock5 Using cfiCommon0
|
||||
CFI Function Trans_4g_Task
|
||||
THUMB
|
||||
// 211 void Trans_4g_Task(void const * argument)
|
||||
// 212 {
|
||||
// 215 void Trans_4g_Task(void const * argument)
|
||||
// 216 {
|
||||
Trans_4g_Task:
|
||||
PUSH {R4,LR}
|
||||
CFI R14 Frame(CFA, -4)
|
||||
CFI R4 Frame(CFA, -8)
|
||||
CFI CFA R13+8
|
||||
// 213 /* USER CODE BEGIN StartDefaultTask */
|
||||
// 214 EC801E_Power_ON();
|
||||
// 217 /* USER CODE BEGIN StartDefaultTask */
|
||||
// 218 EC801E_Power_ON();
|
||||
CFI FunCall EC801E_Power_ON
|
||||
BL EC801E_Power_ON
|
||||
// 215 osDelay(5000);
|
||||
// 219 osDelay(5000);
|
||||
MOVW R0,#+5000
|
||||
CFI FunCall osDelay
|
||||
BL osDelay
|
||||
// 216 EC801_GET_Time();
|
||||
// 220 while(!EC801_GET_Time());
|
||||
??Trans_4g_Task_0:
|
||||
CFI FunCall EC801_GET_Time
|
||||
BL EC801_GET_Time
|
||||
// 217 MQTT_Config();
|
||||
CMP R0,#+0
|
||||
BEQ.N ??Trans_4g_Task_0
|
||||
// 221 MQTT_Config();
|
||||
CFI FunCall MQTT_Config
|
||||
BL MQTT_Config
|
||||
// 218 MQTT_Trans_Data();
|
||||
??Trans_4g_Task_0:
|
||||
// 222 MQTT_Trans_Data();
|
||||
??Trans_4g_Task_1:
|
||||
CFI FunCall MQTT_Trans_Data
|
||||
BL MQTT_Trans_Data
|
||||
// 219 int temp_1s = 0;
|
||||
// 223 int temp_1s = 0;
|
||||
MOVS R4,#+0
|
||||
// 220 /* Infinite loop */
|
||||
// 221 for(;;)
|
||||
// 222 {
|
||||
// 223 osDelay(1000);
|
||||
??Trans_4g_Task_1:
|
||||
// 224 /* Infinite loop */
|
||||
// 225 for(;;)
|
||||
// 226 {
|
||||
// 227 osDelay(1000);
|
||||
??Trans_4g_Task_2:
|
||||
MOV R0,#+1000
|
||||
CFI FunCall osDelay
|
||||
BL osDelay
|
||||
// 224 temp_1s++;
|
||||
// 228 temp_1s++;
|
||||
ADDS R4,R4,#+1
|
||||
// 225 if(temp_1s >= 600)
|
||||
// 229 if(temp_1s >= 600)
|
||||
CMP R4,#+600
|
||||
BLT.N ??Trans_4g_Task_1
|
||||
// 226 {
|
||||
// 227 temp_1s = 0;
|
||||
// 228 MQTT_Trans_Data();
|
||||
B.N ??Trans_4g_Task_0
|
||||
// 229 }
|
||||
// 230
|
||||
// 231 }
|
||||
// 232 /* USER CODE END StartDefaultTask */
|
||||
// 233 }
|
||||
BLT.N ??Trans_4g_Task_2
|
||||
// 230 {
|
||||
// 231 temp_1s = 0;
|
||||
// 232 MQTT_Trans_Data();
|
||||
B.N ??Trans_4g_Task_1
|
||||
// 233 }
|
||||
// 234
|
||||
// 235 }
|
||||
// 236 /* USER CODE END StartDefaultTask */
|
||||
// 237 }
|
||||
CFI EndBlock cfiBlock5
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
|
@ -682,13 +705,13 @@ Trans_4g_Task:
|
|||
DS8 2
|
||||
|
||||
END
|
||||
// 234 /* USER CODE END Application */
|
||||
// 238 /* USER CODE END Application */
|
||||
//
|
||||
// 624 bytes in section .bss
|
||||
// 68 bytes in section .rodata
|
||||
// 350 bytes in section .text
|
||||
// 368 bytes in section .text
|
||||
//
|
||||
// 350 bytes of CODE memory
|
||||
// 368 bytes of CODE memory
|
||||
// 68 bytes of CONST memory
|
||||
// 624 bytes of DATA memory
|
||||
//
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:10
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:10
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:10
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:10
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 09/Aug/2024 10:03:29
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 16:24:22
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
@ -267,7 +267,7 @@ E:\Y\IAR\micro_climate\Core\Src\main.c
|
|||
159
|
||||
160 /* USER CODE BEGIN 3 */
|
||||
161
|
||||
162 }
|
||||
162 }
|
||||
163 /* USER CODE END 3 */
|
||||
164 }
|
||||
165
|
||||
|
@ -481,19 +481,19 @@ E:\Y\IAR\micro_climate\Core\Src\main.c
|
|||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ?_2:
|
||||
\ 0x0 0x41 0x75 DC8 "Aug 9 2024"
|
||||
\ 0x0 0x41 0x75 DC8 "Aug 15 2024"
|
||||
\ 0x67 0x20
|
||||
\ 0x20 0x39
|
||||
\ 0x31 0x35
|
||||
\ 0x20 0x32
|
||||
\ 0x30 0x32
|
||||
\ 0x34 0x00
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ?_3:
|
||||
\ 0x0 0x31 0x30 DC8 "10:03:29"
|
||||
\ 0x3A 0x30
|
||||
\ 0x33 0x3A
|
||||
\ 0x32 0x39
|
||||
\ 0x0 0x31 0x36 DC8 "16:24:22"
|
||||
\ 0x3A 0x32
|
||||
\ 0x34 0x3A
|
||||
\ 0x32 0x32
|
||||
\ 0x00
|
||||
\ 0x9 DS8 3
|
||||
253
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 09/Aug/2024 10:03:29
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 16:24:22
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
@ -385,7 +385,7 @@ main:
|
|||
// 159
|
||||
// 160 /* USER CODE BEGIN 3 */
|
||||
// 161
|
||||
// 162 }
|
||||
// 162 }
|
||||
// 163 /* USER CODE END 3 */
|
||||
// 164 }
|
||||
CFI EndBlock cfiBlock0
|
||||
|
@ -619,14 +619,14 @@ Error_Handler:
|
|||
DATA
|
||||
?_2:
|
||||
DATA8
|
||||
DC8 "Aug 9 2024"
|
||||
DC8 "Aug 15 2024"
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
?_3:
|
||||
DATA8
|
||||
DC8 "10:03:29"
|
||||
DC8 "16:24:22"
|
||||
DATA
|
||||
DS8 3
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:10
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:10
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:10
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:10
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:10
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:10
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 15:23:47
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 15:23:47
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 09/Aug/2024 10:03:29
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:43
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 09/Aug/2024 10:03:29
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:43
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 15:22:40
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:43
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 15:22:40
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:43
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 09/Aug/2024 10:03:29
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 16:32:15
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
@ -71,11 +71,7 @@ E:\Y\IAR\micro_climate\Drivers\EC801E\EC801E.c
|
|||
8
|
||||
9 #define USE_UTC 1
|
||||
10
|
||||
|
||||
\ In section .bss, align 4
|
||||
11 uint32_t g_time_stamp;
|
||||
\ g_time_stamp:
|
||||
\ 0x0 DS8 4
|
||||
12
|
||||
13 //控制上电并开机
|
||||
|
||||
|
@ -110,16 +106,16 @@ E:\Y\IAR\micro_climate\Drivers\EC801E\EC801E.c
|
|||
26 uint8_t temp_status = HAL_ERROR;
|
||||
27 temp_status = HAL_GPIO_ReadPin(GPIO_4G_STATUS_GPIO_Port, GPIO_4G_STATUS_Pin) == GPIO_PIN_SET ? HAL_OK : HAL_ERROR;
|
||||
\ 0x2 0xF44F 0x7100 MOV R1,#+512
|
||||
\ 0x6 0x.... LDR.N R0,??DataTable22_9
|
||||
\ 0x8 0x.... 0x.... BL HAL_GPIO_ReadPin
|
||||
\ 0xC 0x2801 CMP R0,#+1
|
||||
\ 0xE 0xD101 BNE.N ??Read_Status_0
|
||||
\ 0x10 0x2000 MOVS R0,#+0
|
||||
\ 0x12 0xBD02 POP {R1,PC}
|
||||
\ 0x6 0x.... 0x.... LDR.W R0,??DataTable23_9
|
||||
\ 0xA 0x.... 0x.... BL HAL_GPIO_ReadPin
|
||||
\ 0xE 0x2801 CMP R0,#+1
|
||||
\ 0x10 0xD101 BNE.N ??Read_Status_0
|
||||
\ 0x12 0x2000 MOVS R0,#+0
|
||||
\ 0x14 0xBD02 POP {R1,PC}
|
||||
\ ??Read_Status_0: (+1)
|
||||
\ 0x14 0x2001 MOVS R0,#+1
|
||||
\ 0x16 0x2001 MOVS R0,#+1
|
||||
28 return temp_status;
|
||||
\ 0x16 0xBD02 POP {R1,PC}
|
||||
\ 0x18 0xBD02 POP {R1,PC}
|
||||
29 }
|
||||
30
|
||||
31 //串口重定向打印
|
||||
|
@ -131,8 +127,8 @@ E:\Y\IAR\micro_climate\Drivers\EC801E\EC801E.c
|
|||
\ 0x0 0xB510 PUSH {R4,LR}
|
||||
\ 0x2 0x4614 MOV R4,R2
|
||||
34 if(HAL_OK == HAL_UART_Transmit(&huart1,(uint8_t *)buffer,size,100000))
|
||||
\ 0x4 0x.... LDR.N R3,??DataTable22
|
||||
\ 0x6 0x.... LDR.N R0,??DataTable22_10
|
||||
\ 0x4 0x.... LDR.N R3,??DataTable23
|
||||
\ 0x6 0x.... LDR.N R0,??DataTable23_10
|
||||
\ 0x8 0xB292 UXTH R2,R2
|
||||
\ 0xA 0x.... 0x.... BL HAL_UART_Transmit
|
||||
\ 0xE 0xB908 CBNZ.N R0,??__write_0
|
||||
|
@ -161,48 +157,48 @@ E:\Y\IAR\micro_climate\Drivers\EC801E\EC801E.c
|
|||
48 osDelay(5000);
|
||||
\ 0x2 0xF241 0x3488 MOVW R4,#+5000
|
||||
\ 0x6 0x4620 MOV R0,R4
|
||||
\ 0x8 0x.... LDR.N R5,??DataTable22_1
|
||||
\ 0x8 0x.... LDR.N R5,??DataTable23_1
|
||||
\ 0xA 0x.... 0x.... BL osDelay
|
||||
49 uart_sendstr(g_ec801_uart_handle, "AT+QMTCFG=\"session\",0,0\r\n");
|
||||
\ 0xE 0x6828 LDR R0,[R5, #+0]
|
||||
\ 0x10 0x.... ADR.N R1,?_1
|
||||
\ 0x12 0x.... 0x.... BL uart_sendstr
|
||||
\ 0x10 0x.... 0x.... ADR.W R1,?_1
|
||||
\ 0x14 0x.... 0x.... BL uart_sendstr
|
||||
50 osDelay(5000);
|
||||
\ 0x16 0x4620 MOV R0,R4
|
||||
\ 0x18 0x.... 0x.... BL osDelay
|
||||
\ 0x18 0x4620 MOV R0,R4
|
||||
\ 0x1A 0x.... 0x.... BL osDelay
|
||||
51 // 打开客户端网络
|
||||
52 uart_sendstr(g_ec801_uart_handle, "AT+QMTOPEN=0,199.7.140.10,1883\r\n");
|
||||
\ 0x1C 0x6828 LDR R0,[R5, #+0]
|
||||
\ 0x1E 0x.... LDR.N R1,??DataTable22_11
|
||||
\ 0x20 0x.... 0x.... BL uart_sendstr
|
||||
\ 0x1E 0x6828 LDR R0,[R5, #+0]
|
||||
\ 0x20 0x.... LDR.N R1,??DataTable23_11
|
||||
\ 0x22 0x.... 0x.... BL uart_sendstr
|
||||
53 // HAL_UART_Transmit(&huart5, (uint8_t *)"AT+QMTOPEN=0,199.7.140.10,1883\r\n", 30, 0xFFFF);
|
||||
54 // 确保打开网络完成
|
||||
55 osDelay(5000);
|
||||
\ 0x24 0x4620 MOV R0,R4
|
||||
\ 0x26 0x.... 0x.... BL osDelay
|
||||
\ 0x26 0x4620 MOV R0,R4
|
||||
\ 0x28 0x.... 0x.... BL osDelay
|
||||
56 // 连接服务器
|
||||
57 uart_sendstr(g_ec801_uart_handle, "AT+QMTCONN=0,Test_SUB\r\n");
|
||||
\ 0x2A 0x6828 LDR R0,[R5, #+0]
|
||||
\ 0x2C 0x.... ADR.N R1,?_2
|
||||
\ 0x2E 0x.... 0x.... BL uart_sendstr
|
||||
\ 0x2C 0xF8D5 0x0000 LDR.W R0,[R5, #+0]
|
||||
\ 0x30 0x.... ADR.N R1,?_2
|
||||
\ 0x32 0x.... 0x.... BL uart_sendstr
|
||||
58 // HAL_UART_Transmit(&huart5, (uint8_t *)"AT+QMTCONN=0,Test_SUB\r\n", sizeof("AT+QMTCONN=0,Test_SUB\r\n"), 0xFFFF);
|
||||
59 // 确保服务器连接完毕
|
||||
60 osDelay(5000);
|
||||
\ 0x32 0x4620 MOV R0,R4
|
||||
\ 0x34 0x.... 0x.... BL osDelay
|
||||
\ 0x36 0x4620 MOV R0,R4
|
||||
\ 0x38 0x.... 0x.... BL osDelay
|
||||
61 // 订阅主题
|
||||
62 uart_sendstr(g_ec801_uart_handle, "AT+QMTSUB=0,0,Test_Topic,0\r\n");
|
||||
\ 0x38 0xF8D5 0x0000 LDR.W R0,[R5, #+0]
|
||||
\ 0x3C 0x.... ADR.N R1,?_3
|
||||
\ 0x3E 0xE8BD 0x4034 POP {R2,R4,R5,LR}
|
||||
\ 0x42 0x.... 0x.... B.W uart_sendstr
|
||||
\ 0x3C 0x6828 LDR R0,[R5, #+0]
|
||||
\ 0x3E 0x.... 0x.... ADR.W R1,?_3
|
||||
\ 0x42 0xE8BD 0x4034 POP {R2,R4,R5,LR}
|
||||
\ 0x46 0x.... 0x.... B.W uart_sendstr
|
||||
63 // HAL_UART_Transmit(&huart5, (uint8_t *)"AT+QMTSUB=0,0,Test_Topic,0\r\n", sizeof("AT+QMTSUB=0,0,Test_Topic,0\r\n"), 0xFFFF);
|
||||
64 }
|
||||
65
|
||||
66 // MQTT发送数据
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
67 void MQTT_Trans_Data()
|
||||
67 void MQTT_Trans_Data( )
|
||||
68 {
|
||||
\ MQTT_Trans_Data: (+1)
|
||||
\ 0x0 0xB5F8 PUSH {R3-R7,LR}
|
||||
|
@ -224,25 +220,24 @@ E:\Y\IAR\micro_climate\Drivers\EC801E\EC801E.c
|
|||
79 cJSON_AddStringToObject(JsonRoot, "deviId", "item_id");
|
||||
\ 0x10 0x.... 0x.... ADR.W R2,?_5
|
||||
\ 0x14 0x.... ADR.N R1,?_4
|
||||
\ 0x16 0x.... LDR.N R6,??DataTable22_2
|
||||
\ 0x18 0x4620 MOV R0,R4
|
||||
\ 0x1A 0x.... 0x.... BL cJSON_AddStringToObject
|
||||
\ 0x16 0x.... LDR.N R6,??DataTable23_2
|
||||
\ 0x18 0xEA4F 0x0004 MOV.W R0,R4
|
||||
\ 0x1C 0x.... 0x.... BL cJSON_AddStringToObject
|
||||
80 cJSON_AddStringToObject(JsonRoot, "frameType", "item_type");
|
||||
\ 0x1E 0xBF00 Nop
|
||||
\ 0x20 0x.... 0x.... ADR.W R2,?_7
|
||||
\ 0x24 0x.... ADR.N R1,?_6
|
||||
\ 0x26 0x4620 MOV R0,R4
|
||||
\ 0x28 0x.... 0x.... BL cJSON_AddStringToObject
|
||||
81 cJSON_AddNumberToObject(JsonRoot, "timeStamp", g_time_stamp);
|
||||
\ 0x2C 0x.... LDR.N R2,??DataTable22_3
|
||||
\ 0x2E 0x6810 LDR R0,[R2, #+0]
|
||||
\ 0x2C 0x.... LDR.N R2,??DataTable23_3
|
||||
\ 0x2E 0x6850 LDR R0,[R2, #+4]
|
||||
\ 0x30 0x.... 0x.... BL __aeabi_ui2d
|
||||
\ 0x34 0xEC41 0x0B10 VMOV D0,R0,R1
|
||||
\ 0x38 0x.... ADR.N R1,?_8
|
||||
\ 0x3A 0x4620 MOV R0,R4
|
||||
\ 0x3C 0x.... 0x.... BL cJSON_AddNumberToObject
|
||||
82 cJSON_AddNumberToObject(JsonRoot, "Version", 10);
|
||||
\ 0x40 0xED9F 0x.... VLDR.W D0,??DataTable22_4
|
||||
82 cJSON_AddNumberToObject(JsonRoot, "version", 10);
|
||||
\ 0x40 0xED9F 0x.... VLDR.W D0,??DataTable23_4
|
||||
\ 0x44 0x.... ADR.N R1,?_9
|
||||
\ 0x46 0x4620 MOV R0,R4
|
||||
\ 0x48 0x.... 0x.... BL cJSON_AddNumberToObject
|
||||
|
@ -266,13 +261,13 @@ Warning[Pa205]: implicit conversion from float to double
|
|||
conversion from float to double
|
||||
\ ??MQTT_Trans_Data_0: (+1)
|
||||
\ 0x5A 0xEB06 0x0087 ADD R0,R6,R7, LSL #+2
|
||||
\ 0x5E 0xEDDF 0x.... VLDR.W S1,??DataTable22_5
|
||||
\ 0x5E 0xEDDF 0x.... VLDR.W S1,??DataTable23_5
|
||||
\ 0x62 0xED90 0x0A00 VLDR S0,[R0, #0]
|
||||
\ 0x66 0xEE60 0x0A20 VMUL.F32 S1,S0,S1
|
||||
\ 0x6A 0xEE10 0x0A90 VMOV R0,S1
|
||||
\ 0x6E 0x.... 0x.... BL __aeabi_f2d
|
||||
\ 0x72 0x2200 MOVS R2,#+0
|
||||
\ 0x74 0x.... LDR.N R3,??DataTable22_6
|
||||
\ 0x74 0x.... LDR.N R3,??DataTable23_6
|
||||
\ 0x76 0x.... 0x.... BL __aeabi_dadd
|
||||
\ 0x7A 0x.... 0x.... BL __aeabi_d2iz
|
||||
\ 0x7E 0xEE01 0x0A10 VMOV S2,R0
|
||||
|
@ -280,7 +275,7 @@ Warning[Pa205]: implicit conversion from float to double
|
|||
\ 0x86 0xEE11 0x0A10 VMOV R0,S2
|
||||
\ 0x8A 0x.... 0x.... BL __aeabi_f2d
|
||||
\ 0x8E 0x2200 MOVS R2,#+0
|
||||
\ 0x90 0x.... LDR.N R3,??DataTable22_7
|
||||
\ 0x90 0x.... LDR.N R3,??DataTable23_7
|
||||
\ 0x92 0x.... 0x.... BL __aeabi_ddiv
|
||||
\ 0x96 0xEC41 0x0B10 VMOV D0,R0,R1
|
||||
\ 0x9A 0x.... 0x.... BL cJSON_CreateNumber
|
||||
|
@ -303,14 +298,14 @@ Warning[Pa205]: implicit conversion from float to double
|
|||
95 sprintf(str_len_str, "%d", str_len);
|
||||
\ 0xB8 0x1D82 ADDS R2,R0,#+6
|
||||
\ 0xBA 0xB2D2 UXTB R2,R2
|
||||
\ 0xBC 0x.... ADR.N R1,??DataTable22_8
|
||||
\ 0xBC 0x.... ADR.N R1,??DataTable23_8
|
||||
\ 0xBE 0x4668 MOV R0,SP
|
||||
\ 0xC0 0x.... 0x.... BL sprintf
|
||||
96
|
||||
97 // 发送发数据包命令
|
||||
98 osDelay(2000);
|
||||
\ 0xC4 0xF44F 0x60FA MOV R0,#+2000
|
||||
\ 0xC8 0x.... LDR.N R6,??DataTable22_1
|
||||
\ 0xC8 0x.... LDR.N R6,??DataTable23_1
|
||||
\ 0xCA 0x.... 0x.... BL osDelay
|
||||
99 uart_sendstr(g_ec801_uart_handle, "AT+QMTPUBEX=0,0,0,0,Test_Topic,");
|
||||
\ 0xCE 0x6830 LDR R0,[R6, #+0]
|
||||
|
@ -322,7 +317,7 @@ Warning[Pa205]: implicit conversion from float to double
|
|||
\ 0xDA 0x.... 0x.... BL uart_sendstr
|
||||
101 uart_sendstr(g_ec801_uart_handle, "\r\n");
|
||||
\ 0xDE 0x6830 LDR R0,[R6, #+0]
|
||||
\ 0xE0 0x.... ADR.N R1,??DataTable22_12
|
||||
\ 0xE0 0x.... ADR.N R1,??DataTable23_12
|
||||
\ 0xE2 0x.... 0x.... BL uart_sendstr
|
||||
102
|
||||
103 //发送数据包
|
||||
|
@ -461,7 +456,7 @@ Warning[Pa205]: implicit conversion from float to double
|
|||
\ 0x5E 0x1E64 SUBS R4,R4,#+1
|
||||
\ 0x60 0xF44F 0x6161 MOV R1,#+3600
|
||||
\ 0x64 0x19A4 ADDS R4,R4,R6
|
||||
\ 0x66 0x.... LDR.N R0,??DataTable22_13
|
||||
\ 0x66 0x.... LDR.N R0,??DataTable23_13
|
||||
\ 0x68 0x9A0C LDR R2,[SP, #+48]
|
||||
\ 0x6A 0x9B0D LDR R3,[SP, #+52]
|
||||
\ 0x6C 0x434D MULS R5,R1,R5
|
||||
|
@ -473,107 +468,137 @@ Warning[Pa205]: implicit conversion from float to double
|
|||
\ 0x7C 0xE8BD 0x83F0 POP {R4-R9,PC}
|
||||
157 }
|
||||
|
||||
\ In section .bss, align 4
|
||||
158
|
||||
159
|
||||
160 //时间获取完成变量,用于控制是否开始MQTT信息接收
|
||||
161 uint8_t time_get_ok = 0;
|
||||
\ time_get_ok:
|
||||
\ 0x0 DS8 1
|
||||
\ 0x1 DS8 3
|
||||
\ g_time_stamp:
|
||||
\ 0x4 DS8 4
|
||||
|
||||
\ In section .bss, align 4
|
||||
\ 0x0 DS8 4
|
||||
|
||||
\ In section .bss, align 4
|
||||
\ 0x0 DS8 4
|
||||
158
|
||||
159
|
||||
160 // 生成时间戳
|
||||
162 // 生成时间戳
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
161 void EC801_GET_Time()
|
||||
162 {
|
||||
163 int EC801_GET_Time()
|
||||
164 {
|
||||
\ EC801_GET_Time: (+1)
|
||||
\ 0x0 0xB578 PUSH {R3-R6,LR}
|
||||
163 int year, month, day, hour, minute, second;
|
||||
164 if(USE_UTC)
|
||||
165 {
|
||||
166 uart_sendstr(g_ec801_uart_handle, "AT+QLTS=0\r\n");
|
||||
\ 0x2 0x.... LDR.N R4,??DataTable22_1
|
||||
165 int year, month, day, hour, minute, second;
|
||||
166 if(USE_UTC)
|
||||
167 {
|
||||
168 uart_sendstr(g_ec801_uart_handle, "AT+QLTS=0\r\n");
|
||||
\ 0x2 0x.... LDR.N R4,??DataTable23_1
|
||||
\ 0x4 0x.... ADR.N R1,?_15
|
||||
\ 0x6 0x6820 LDR R0,[R4, #+0]
|
||||
\ 0x8 0xB0A3 SUB SP,SP,#+140
|
||||
\ 0xA 0x.... 0x.... BL uart_sendstr
|
||||
167 }else
|
||||
168 {
|
||||
169 uart_sendstr(g_ec801_uart_handle, "AT+QLTS=2\r\n");
|
||||
170 }
|
||||
171 osDelay(1000);
|
||||
169 }else
|
||||
170 {
|
||||
171 uart_sendstr(g_ec801_uart_handle, "AT+QLTS=2\r\n");
|
||||
172 }
|
||||
173 osDelay(1000);
|
||||
\ 0xE 0xF44F 0x707A MOV R0,#+1000
|
||||
\ 0x12 0x.... 0x.... BL osDelay
|
||||
\ 0x16 0x2164 MOVS R1,#+100
|
||||
\ 0x18 0xA80A ADD R0,SP,#+40
|
||||
\ 0x1A 0x.... 0x.... BL __aeabi_memclr4
|
||||
172 char time[100] = {0};int index = 0;
|
||||
174 char time[100] = {0};int index = 0;
|
||||
\ 0x1E 0x2600 MOVS R6,#+0
|
||||
\ 0x20 0xAD0A ADD R5,SP,#+40
|
||||
173
|
||||
174 // 第一个“后是时间,前面不要
|
||||
175 do{
|
||||
176 time[index] = uart_dev_in_char(g_ec801_uart_handle);
|
||||
175
|
||||
176 // 第一个“后是时间,前面不要
|
||||
177 do{
|
||||
178 time[index] = uart_dev_in_char(g_ec801_uart_handle);
|
||||
\ ??EC801_GET_Time_0: (+1)
|
||||
\ 0x22 0x6820 LDR R0,[R4, #+0]
|
||||
\ 0x24 0x.... 0x.... BL uart_dev_in_char
|
||||
\ 0x28 0x.... 0x.... BL ?Subroutine0
|
||||
177 }while(time[index++] != '"');
|
||||
179 }while(time[index++] != '"' && uart_dev_char_present(g_ec801_uart_handle));
|
||||
\ ??CrossCallReturnLabel_0: (+1)
|
||||
\ 0x2C 0xD1F9 BNE.N ??EC801_GET_Time_0
|
||||
178 // 丢掉前面的
|
||||
179 memcpy(time, time + index - 1, index);
|
||||
\ 0x2E 0xA90A ADD R1,SP,#+40
|
||||
\ 0x30 0x4431 ADD R1,R1,R6
|
||||
\ 0x32 0x4632 MOV R2,R6
|
||||
\ 0x34 0x1E49 SUBS R1,R1,#+1
|
||||
\ 0x36 0xA80A ADD R0,SP,#+40
|
||||
\ 0x38 0x.... 0x.... BL __aeabi_memcpy
|
||||
180 index = 1;
|
||||
\ 0x3C 0x2601 MOVS R6,#+1
|
||||
181
|
||||
182 // "前面是时间
|
||||
183 do{
|
||||
184 time[index] = uart_dev_in_char(g_ec801_uart_handle);
|
||||
\ 0x2C 0xD004 BEQ.N ??EC801_GET_Time_1
|
||||
\ 0x2E 0x6820 LDR R0,[R4, #+0]
|
||||
\ 0x30 0x.... 0x.... BL uart_dev_char_present
|
||||
\ 0x34 0x2800 CMP R0,#+0
|
||||
\ 0x36 0xD1F4 BNE.N ??EC801_GET_Time_0
|
||||
180 // 丢掉前面的
|
||||
181 memcpy(time, time + index - 1, index);
|
||||
\ ??EC801_GET_Time_1: (+1)
|
||||
\ 0x3E 0x6820 LDR R0,[R4, #+0]
|
||||
\ 0x40 0x.... 0x.... BL uart_dev_in_char
|
||||
\ 0x44 0x.... 0x.... BL ?Subroutine0
|
||||
185 }while(time[index++] != '"');
|
||||
\ 0x38 0xA80A ADD R0,SP,#+40
|
||||
\ 0x3A 0x4430 ADD R0,R0,R6
|
||||
\ 0x3C 0x1E41 SUBS R1,R0,#+1
|
||||
\ 0x3E 0x4632 MOV R2,R6
|
||||
\ 0x40 0xA80A ADD R0,SP,#+40
|
||||
\ 0x42 0x.... 0x.... BL __aeabi_memcpy
|
||||
182 index = 1;
|
||||
\ 0x46 0x2601 MOVS R6,#+1
|
||||
183
|
||||
184 // "前面是时间
|
||||
185 do{
|
||||
186 time[index] = uart_dev_in_char(g_ec801_uart_handle);
|
||||
\ ??EC801_GET_Time_2: (+1)
|
||||
\ 0x48 0x6820 LDR R0,[R4, #+0]
|
||||
\ 0x4A 0x.... 0x.... BL uart_dev_in_char
|
||||
\ 0x4E 0x.... 0x.... BL ?Subroutine0
|
||||
187 }while(time[index++] != '"' && uart_dev_char_present(g_ec801_uart_handle));
|
||||
\ ??CrossCallReturnLabel_1: (+1)
|
||||
\ 0x48 0xD1F9 BNE.N ??EC801_GET_Time_1
|
||||
186
|
||||
187 // 字符提取成int
|
||||
188 int matched = sscanf(time, "\"%d/%d/%d,%d:%d:%d\"", &year, &month, &day, &hour, &minute, &second);
|
||||
\ 0x4A 0xA904 ADD R1,SP,#+16
|
||||
\ 0x4C 0xA805 ADD R0,SP,#+20
|
||||
\ 0x4E 0xAA06 ADD R2,SP,#+24
|
||||
\ 0x50 0xAB07 ADD R3,SP,#+28
|
||||
\ 0x52 0x9103 STR R1,[SP, #+12]
|
||||
\ 0x54 0x9002 STR R0,[SP, #+8]
|
||||
\ 0x56 0x9201 STR R2,[SP, #+4]
|
||||
\ 0x58 0x9300 STR R3,[SP, #+0]
|
||||
\ 0x5A 0xAA09 ADD R2,SP,#+36
|
||||
\ 0x5C 0xF10D 0x0320 ADD.W R3,SP,#+32
|
||||
\ 0x60 0x.... ADR.N R1,?_16
|
||||
\ 0x62 0xA80A ADD R0,SP,#+40
|
||||
\ 0x64 0x.... 0x.... BL sscanf
|
||||
189
|
||||
190 // 生成时间戳
|
||||
191 g_time_stamp = fml_time_to_stamp(year, month, day, hour, minute, second);
|
||||
\ 0x68 0x9804 LDR R0,[SP, #+16]
|
||||
\ 0x6A 0x9905 LDR R1,[SP, #+20]
|
||||
\ 0x6C 0x9001 STR R0,[SP, #+4]
|
||||
\ 0x6E 0x9100 STR R1,[SP, #+0]
|
||||
\ 0x70 0x9B06 LDR R3,[SP, #+24]
|
||||
\ 0x72 0x9A07 LDR R2,[SP, #+28]
|
||||
\ 0x74 0x9908 LDR R1,[SP, #+32]
|
||||
\ 0x76 0x9809 LDR R0,[SP, #+36]
|
||||
\ 0x78 0x.... 0x.... BL fml_time_to_stamp
|
||||
\ 0x7C 0x.... LDR.N R1,??DataTable22_3
|
||||
\ 0x7E 0x6008 STR R0,[R1, #+0]
|
||||
192 }
|
||||
\ 0x80 0xB024 ADD SP,SP,#+144
|
||||
\ 0x82 0xBD70 POP {R4-R6,PC}
|
||||
\ 0x52 0xD004 BEQ.N ??EC801_GET_Time_3
|
||||
\ 0x54 0x6820 LDR R0,[R4, #+0]
|
||||
\ 0x56 0x.... 0x.... BL uart_dev_char_present
|
||||
\ 0x5A 0x2800 CMP R0,#+0
|
||||
\ 0x5C 0xD1F4 BNE.N ??EC801_GET_Time_2
|
||||
188
|
||||
189 // 字符提取成int
|
||||
190 sscanf(time, "\"%d/%d/%d,%d:%d:%d\"", &year, &month, &day, &hour, &minute, &second);
|
||||
\ ??EC801_GET_Time_3: (+1)
|
||||
\ 0x5E 0xA805 ADD R0,SP,#+20
|
||||
\ 0x60 0xA906 ADD R1,SP,#+24
|
||||
\ 0x62 0xAA07 ADD R2,SP,#+28
|
||||
\ 0x64 0xAB08 ADD R3,SP,#+32
|
||||
\ 0x66 0x9003 STR R0,[SP, #+12]
|
||||
\ 0x68 0x9102 STR R1,[SP, #+8]
|
||||
\ 0x6A 0x9201 STR R2,[SP, #+4]
|
||||
\ 0x6C 0x9300 STR R3,[SP, #+0]
|
||||
\ 0x6E 0xAA04 ADD R2,SP,#+16
|
||||
\ 0x70 0xF10D 0x0324 ADD.W R3,SP,#+36
|
||||
\ 0x74 0x.... ADR.N R1,?_16
|
||||
\ 0x76 0x.... LDR.N R4,??DataTable23_3
|
||||
\ 0x78 0xA80A ADD R0,SP,#+40
|
||||
\ 0x7A 0x.... 0x.... BL sscanf
|
||||
191
|
||||
192 if(year)
|
||||
\ 0x7E 0x9804 LDR R0,[SP, #+16]
|
||||
\ 0x80 0xB108 CBZ.N R0,??EC801_GET_Time_4
|
||||
193 {
|
||||
194 time_get_ok = 1;
|
||||
\ 0x82 0x2101 MOVS R1,#+1
|
||||
\ 0x84 0x7021 STRB R1,[R4, #+0]
|
||||
195 }
|
||||
196 // 生成时间戳
|
||||
197 g_time_stamp = fml_time_to_stamp(year, month, day, hour, minute, second);
|
||||
\ ??EC801_GET_Time_4: (+1)
|
||||
\ 0x86 0x9805 LDR R0,[SP, #+20]
|
||||
\ 0x88 0x9906 LDR R1,[SP, #+24]
|
||||
\ 0x8A 0x9001 STR R0,[SP, #+4]
|
||||
\ 0x8C 0x9100 STR R1,[SP, #+0]
|
||||
\ 0x8E 0x9B07 LDR R3,[SP, #+28]
|
||||
\ 0x90 0x9A08 LDR R2,[SP, #+32]
|
||||
\ 0x92 0x9909 LDR R1,[SP, #+36]
|
||||
\ 0x94 0x9804 LDR R0,[SP, #+16]
|
||||
\ 0x96 0x.... 0x.... BL fml_time_to_stamp
|
||||
\ 0x9A 0x6060 STR R0,[R4, #+4]
|
||||
198 return year;
|
||||
\ 0x9C 0x9804 LDR R0,[SP, #+16]
|
||||
\ 0x9E 0xB024 ADD SP,SP,#+144
|
||||
\ 0xA0 0xBD70 POP {R4-R6,PC}
|
||||
199 }
|
||||
|
||||
\ In section .text, align 2, keep-with-next
|
||||
\ ?Subroutine0: (+1)
|
||||
|
@ -583,64 +608,148 @@ Warning[Pa205]: implicit conversion from float to double
|
|||
\ 0x6 0x5C28 LDRB R0,[R5, R0]
|
||||
\ 0x8 0x2822 CMP R0,#+34
|
||||
\ 0xA 0x4770 BX LR
|
||||
200
|
||||
201 #define JSON_BUFFER_SIZE 200
|
||||
202 // 解析收到的4g模块数据
|
||||
|
||||
\ In section .text, align 2, keep-with-next
|
||||
203 void parse_4g_receive_data()
|
||||
204 {
|
||||
\ parse_4g_receive_data: (+1)
|
||||
\ 0x0 0xB570 PUSH {R4-R6,LR}
|
||||
205 uint8_t temp_buff[JSON_BUFFER_SIZE];
|
||||
206 int jsonBufferIndex = 0; // 索引
|
||||
207 char c = 0;
|
||||
208 int inJson = 0;
|
||||
209 if(uart_dev_char_present(g_ec801_uart_handle)){
|
||||
\ 0x2 0x.... LDR.N R6,??DataTable23_1
|
||||
\ 0x4 0x6830 LDR R0,[R6, #+0]
|
||||
\ 0x6 0xB0B2 SUB SP,SP,#+200
|
||||
\ 0x8 0x.... 0x.... BL uart_dev_char_present
|
||||
\ 0xC 0x2500 MOVS R5,#+0
|
||||
\ 0xE 0x2400 MOVS R4,#+0
|
||||
\ 0x10 0xB920 CBNZ.N R0,??parse_4g_receive_data_0
|
||||
\ 0x12 0xE01F B.N ??parse_4g_receive_data_1
|
||||
210 for(jsonBufferIndex = 0; uart_dev_char_present(g_ec801_uart_handle);)
|
||||
211 {
|
||||
212 c = uart_dev_in_char(g_ec801_uart_handle);
|
||||
213 if (c == '{') {
|
||||
214 inJson = 1; // 进入JSON字符串
|
||||
\ ??parse_4g_receive_data_2: (+1)
|
||||
\ 0x14 0x2401 MOVS R4,#+1
|
||||
215 jsonBufferIndex = 0; // 重置JSON缓冲区索引
|
||||
216 temp_buff[jsonBufferIndex++] = c;
|
||||
\ 0x16 0xF88D 0x0000 STRB R0,[SP, #+0]
|
||||
\ 0x1A 0x2501 MOVS R5,#+1
|
||||
217 } else if (c == '}' && inJson) {
|
||||
\ ??parse_4g_receive_data_0: (+1)
|
||||
\ 0x1C 0x6830 LDR R0,[R6, #+0]
|
||||
\ 0x1E 0x.... 0x.... BL uart_dev_char_present
|
||||
\ 0x22 0xB1A0 CBZ.N R0,??parse_4g_receive_data_3
|
||||
\ 0x24 0x6830 LDR R0,[R6, #+0]
|
||||
\ 0x26 0x.... 0x.... BL uart_dev_in_char
|
||||
\ 0x2A 0x287B CMP R0,#+123
|
||||
\ 0x2C 0xD0F2 BEQ.N ??parse_4g_receive_data_2
|
||||
\ 0x2E 0x1C69 ADDS R1,R5,#+1
|
||||
\ 0x30 0x287D CMP R0,#+125
|
||||
\ 0x32 0xD105 BNE.N ??parse_4g_receive_data_4
|
||||
\ 0x34 0xB14C CBZ.N R4,??parse_4g_receive_data_5
|
||||
218 temp_buff[jsonBufferIndex++] = c;
|
||||
\ 0x36 0xF80D 0x0005 STRB R0,[SP, R5]
|
||||
219 //重置索引与标志
|
||||
220 jsonBufferIndex = 0;
|
||||
\ 0x3A 0x2500 MOVS R5,#+0
|
||||
221 inJson = 0;
|
||||
\ 0x3C 0x2400 MOVS R4,#+0
|
||||
\ 0x3E 0xE7ED B.N ??parse_4g_receive_data_0
|
||||
222 } else if (inJson) {
|
||||
\ ??parse_4g_receive_data_4: (+1)
|
||||
\ 0x40 0xB11C CBZ.N R4,??parse_4g_receive_data_5
|
||||
223 // 如果在JSON字符串内部,则存储字符
|
||||
224 if (jsonBufferIndex < JSON_BUFFER_SIZE - 1) { // 保留一个位置给字符串结束符
|
||||
\ 0x42 0x2DC7 CMP R5,#+199
|
||||
\ 0x44 0xDAEA BGE.N ??parse_4g_receive_data_0
|
||||
225 temp_buff[jsonBufferIndex++] = c;
|
||||
\ 0x46 0xF80D 0x0005 STRB R0,[SP, R5]
|
||||
\ ??parse_4g_receive_data_5: (+1)
|
||||
\ 0x4A 0x460D MOV R5,R1
|
||||
\ 0x4C 0xE7E6 B.N ??parse_4g_receive_data_0
|
||||
226 }
|
||||
227 }else {
|
||||
228 jsonBufferIndex++;//一直没有{可以继续检索
|
||||
229 }
|
||||
230 }
|
||||
231
|
||||
232 term_printf(temp_buff);
|
||||
^
|
||||
Warning[Pe167]: argument of type "uint8_t *" is incompatible with parameter of
|
||||
type "char *"
|
||||
\ ??parse_4g_receive_data_3: (+1)
|
||||
\ 0x4E 0x4668 MOV R0,SP
|
||||
\ 0x50 0x.... 0x.... BL term_printf
|
||||
233 }
|
||||
234 }
|
||||
\ ??parse_4g_receive_data_1: (+1)
|
||||
\ 0x54 0xB032 ADD SP,SP,#+200
|
||||
\ 0x56 0xBD70 POP {R4-R6,PC}
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ??DataTable22:
|
||||
\ ??DataTable23:
|
||||
\ 0x0 0x0001'86A0 DC32 0x186a0
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ??DataTable22_1:
|
||||
\ ??DataTable23_1:
|
||||
\ 0x0 0x....'.... DC32 g_ec801_uart_handle
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ??DataTable22_2:
|
||||
\ ??DataTable23_2:
|
||||
\ 0x0 0x....'.... DC32 g_stMcs_Para
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ??DataTable22_3:
|
||||
\ 0x0 0x....'.... DC32 g_time_stamp
|
||||
\ ??DataTable23_3:
|
||||
\ 0x0 0x....'.... DC32 time_get_ok
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ??DataTable22_4:
|
||||
\ ??DataTable23_4:
|
||||
\ 0x0 0x0000'0000 DC32 0x0,0x40240000
|
||||
\ 0x4024'0000
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ??DataTable22_5:
|
||||
\ ??DataTable23_5:
|
||||
\ 0x0 0x42C8'0000 DC32 0x42c80000
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ??DataTable22_6:
|
||||
\ ??DataTable23_6:
|
||||
\ 0x0 0x3FE0'0000 DC32 0x3fe00000
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ??DataTable22_7:
|
||||
\ ??DataTable23_7:
|
||||
\ 0x0 0x4059'0000 DC32 0x40590000
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ??DataTable22_8:
|
||||
\ ??DataTable23_8:
|
||||
\ 0x0 0x25 0x64 DC8 0x25, 0x64, 0x00, 0x00
|
||||
\ 0x00 0x00
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ??DataTable22_9:
|
||||
\ ??DataTable23_9:
|
||||
\ 0x0 0x4800'0400 DC32 0x48000400
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ??DataTable22_10:
|
||||
\ ??DataTable23_10:
|
||||
\ 0x0 0x....'.... DC32 huart1
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ??DataTable22_11:
|
||||
\ ??DataTable23_11:
|
||||
\ 0x0 0x....'.... DC32 ?_0
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ??DataTable22_12:
|
||||
\ ??DataTable23_12:
|
||||
\ 0x0 0x0D 0x0A DC8 0x0D, 0x0A, 0x00, 0x00
|
||||
\ 0x00 0x00
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ??DataTable22_13:
|
||||
\ ??DataTable23_13:
|
||||
\ 0x0 0x0001'5180 DC32 0x15180
|
||||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
|
@ -771,7 +880,7 @@ Warning[Pa205]: implicit conversion from float to double
|
|||
|
||||
\ In section .text, align 4, keep-with-next
|
||||
\ ?_9:
|
||||
\ 0x0 0x56 0x65 DC8 "Version"
|
||||
\ 0x0 0x76 0x65 DC8 "version"
|
||||
\ 0x72 0x73
|
||||
\ 0x69 0x6F
|
||||
\ 0x6E 0x00
|
||||
|
@ -834,7 +943,8 @@ Warning[Pa205]: implicit conversion from float to double
|
|||
\ 0x64 0x3A
|
||||
\ 0x25 0x64
|
||||
\ 0x22 0x00
|
||||
193
|
||||
235
|
||||
236
|
||||
|
||||
Maximum stack usage in bytes:
|
||||
|
||||
|
@ -849,6 +959,7 @@ Warning[Pa205]: implicit conversion from float to double
|
|||
160 -> fml_time_to_stamp
|
||||
160 -> osDelay
|
||||
160 -> sscanf
|
||||
160 -> uart_dev_char_present
|
||||
160 -> uart_dev_in_char
|
||||
160 -> uart_sendstr
|
||||
16 MQTT_Config
|
||||
|
@ -883,26 +994,30 @@ Warning[Pa205]: implicit conversion from float to double
|
|||
48 fml_time_to_stamp
|
||||
48 -> __aeabi_memcpy4
|
||||
48 -> fml_leap_year
|
||||
216 parse_4g_receive_data
|
||||
216 -> term_printf
|
||||
216 -> uart_dev_char_present
|
||||
216 -> uart_dev_in_char
|
||||
|
||||
|
||||
Section sizes:
|
||||
|
||||
Bytes Function/Label
|
||||
----- --------------
|
||||
4 ??DataTable22
|
||||
4 ??DataTable22_1
|
||||
4 ??DataTable22_10
|
||||
4 ??DataTable22_11
|
||||
4 ??DataTable22_12
|
||||
4 ??DataTable22_13
|
||||
4 ??DataTable22_2
|
||||
4 ??DataTable22_3
|
||||
8 ??DataTable22_4
|
||||
4 ??DataTable22_5
|
||||
4 ??DataTable22_6
|
||||
4 ??DataTable22_7
|
||||
4 ??DataTable22_8
|
||||
4 ??DataTable22_9
|
||||
4 ??DataTable23
|
||||
4 ??DataTable23_1
|
||||
4 ??DataTable23_10
|
||||
4 ??DataTable23_11
|
||||
4 ??DataTable23_12
|
||||
4 ??DataTable23_13
|
||||
4 ??DataTable23_2
|
||||
4 ??DataTable23_3
|
||||
8 ??DataTable23_4
|
||||
4 ??DataTable23_5
|
||||
4 ??DataTable23_6
|
||||
4 ??DataTable23_7
|
||||
4 ??DataTable23_8
|
||||
4 ??DataTable23_9
|
||||
12 ?Subroutine0
|
||||
36 ?_0
|
||||
28 ?_1
|
||||
|
@ -922,25 +1037,27 @@ Warning[Pa205]: implicit conversion from float to double
|
|||
12 ?_8
|
||||
8 ?_9
|
||||
34 EC801E_Power_ON
|
||||
132 EC801_GET_Time
|
||||
70 MQTT_Config
|
||||
162 EC801_GET_Time
|
||||
74 MQTT_Config
|
||||
262 MQTT_Trans_Data
|
||||
24 Read_Status
|
||||
26 Read_Status
|
||||
26 __write
|
||||
4 dax
|
||||
4 day_count
|
||||
50 fml_leap_year
|
||||
128 fml_time_to_stamp
|
||||
4 g_time_stamp
|
||||
88 parse_4g_receive_data
|
||||
8 time_get_ok
|
||||
g_time_stamp
|
||||
|
||||
|
||||
12 bytes in section .bss
|
||||
16 bytes in section .bss
|
||||
44 bytes in section .rodata
|
||||
1'030 bytes in section .text
|
||||
1'154 bytes in section .text
|
||||
|
||||
1'030 bytes of CODE memory
|
||||
1'154 bytes of CODE memory
|
||||
44 bytes of CONST memory
|
||||
12 bytes of DATA memory
|
||||
16 bytes of DATA memory
|
||||
|
||||
Errors: none
|
||||
Warnings: 2
|
||||
Warnings: 3
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 09/Aug/2024 10:03:29
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 16:32:15
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
@ -90,6 +90,8 @@
|
|||
EXTERN sprintf
|
||||
EXTERN sscanf
|
||||
EXTERN strlen
|
||||
EXTERN term_printf
|
||||
EXTERN uart_dev_char_present
|
||||
EXTERN uart_dev_in_char
|
||||
EXTERN uart_sendstr
|
||||
EXTERN vPortFree
|
||||
|
@ -103,6 +105,8 @@
|
|||
PUBLIC fml_leap_year
|
||||
PUBLIC fml_time_to_stamp
|
||||
PUBLIC g_time_stamp
|
||||
PUBLIC parse_4g_receive_data
|
||||
PUBLIC time_get_ok
|
||||
|
||||
CFI Names cfiNames0
|
||||
CFI StackFrame CFA R13 DATA
|
||||
|
@ -199,12 +203,7 @@
|
|||
// 8
|
||||
// 9 #define USE_UTC 1
|
||||
// 10
|
||||
|
||||
SECTION `.bss`:DATA:REORDER:NOROOT(2)
|
||||
DATA
|
||||
// 11 uint32_t g_time_stamp;
|
||||
g_time_stamp:
|
||||
DS8 4
|
||||
// 12
|
||||
// 13 //控制上电并开机
|
||||
|
||||
|
@ -254,7 +253,7 @@ Read_Status:
|
|||
// 26 uint8_t temp_status = HAL_ERROR;
|
||||
// 27 temp_status = HAL_GPIO_ReadPin(GPIO_4G_STATUS_GPIO_Port, GPIO_4G_STATUS_Pin) == GPIO_PIN_SET ? HAL_OK : HAL_ERROR;
|
||||
MOV R1,#+512
|
||||
LDR.N R0,??DataTable22_9
|
||||
LDR.W R0,??DataTable23_9
|
||||
CFI FunCall HAL_GPIO_ReadPin
|
||||
BL HAL_GPIO_ReadPin
|
||||
CMP R0,#+1
|
||||
|
@ -283,8 +282,8 @@ __write:
|
|||
CFI CFA R13+8
|
||||
MOV R4,R2
|
||||
// 34 if(HAL_OK == HAL_UART_Transmit(&huart1,(uint8_t *)buffer,size,100000))
|
||||
LDR.N R3,??DataTable22
|
||||
LDR.N R0,??DataTable22_10
|
||||
LDR.N R3,??DataTable23
|
||||
LDR.N R0,??DataTable23_10
|
||||
UXTH R2,R2
|
||||
CFI FunCall HAL_UART_Transmit
|
||||
BL HAL_UART_Transmit
|
||||
|
@ -322,12 +321,12 @@ MQTT_Config:
|
|||
// 48 osDelay(5000);
|
||||
MOVW R4,#+5000
|
||||
MOV R0,R4
|
||||
LDR.N R5,??DataTable22_1
|
||||
LDR.N R5,??DataTable23_1
|
||||
CFI FunCall osDelay
|
||||
BL osDelay
|
||||
// 49 uart_sendstr(g_ec801_uart_handle, "AT+QMTCFG=\"session\",0,0\r\n");
|
||||
LDR R0,[R5, #+0]
|
||||
ADR.N R1,?_1
|
||||
ADR.W R1,?_1
|
||||
CFI FunCall uart_sendstr
|
||||
BL uart_sendstr
|
||||
// 50 osDelay(5000);
|
||||
|
@ -337,7 +336,7 @@ MQTT_Config:
|
|||
// 51 // 打开客户端网络
|
||||
// 52 uart_sendstr(g_ec801_uart_handle, "AT+QMTOPEN=0,199.7.140.10,1883\r\n");
|
||||
LDR R0,[R5, #+0]
|
||||
LDR.N R1,??DataTable22_11
|
||||
LDR.N R1,??DataTable23_11
|
||||
CFI FunCall uart_sendstr
|
||||
BL uart_sendstr
|
||||
// 53 // HAL_UART_Transmit(&huart5, (uint8_t *)"AT+QMTOPEN=0,199.7.140.10,1883\r\n", 30, 0xFFFF);
|
||||
|
@ -348,7 +347,7 @@ MQTT_Config:
|
|||
BL osDelay
|
||||
// 56 // 连接服务器
|
||||
// 57 uart_sendstr(g_ec801_uart_handle, "AT+QMTCONN=0,Test_SUB\r\n");
|
||||
LDR R0,[R5, #+0]
|
||||
LDR.W R0,[R5, #+0]
|
||||
ADR.N R1,?_2
|
||||
CFI FunCall uart_sendstr
|
||||
BL uart_sendstr
|
||||
|
@ -360,8 +359,8 @@ MQTT_Config:
|
|||
BL osDelay
|
||||
// 61 // 订阅主题
|
||||
// 62 uart_sendstr(g_ec801_uart_handle, "AT+QMTSUB=0,0,Test_Topic,0\r\n");
|
||||
LDR.W R0,[R5, #+0]
|
||||
ADR.N R1,?_3
|
||||
LDR R0,[R5, #+0]
|
||||
ADR.W R1,?_3
|
||||
POP {R2,R4,R5,LR}
|
||||
CFI R4 SameValue
|
||||
CFI R5 SameValue
|
||||
|
@ -379,7 +378,7 @@ MQTT_Config:
|
|||
CFI Block cfiBlock4 Using cfiCommon0
|
||||
CFI Function MQTT_Trans_Data
|
||||
THUMB
|
||||
// 67 void MQTT_Trans_Data()
|
||||
// 67 void MQTT_Trans_Data( )
|
||||
// 68 {
|
||||
MQTT_Trans_Data:
|
||||
PUSH {R3-R7,LR}
|
||||
|
@ -410,20 +409,19 @@ MQTT_Trans_Data:
|
|||
// 79 cJSON_AddStringToObject(JsonRoot, "deviId", "item_id");
|
||||
ADR.W R2,?_5
|
||||
ADR.N R1,?_4
|
||||
LDR.N R6,??DataTable22_2
|
||||
MOV R0,R4
|
||||
LDR.N R6,??DataTable23_2
|
||||
MOV.W R0,R4
|
||||
CFI FunCall cJSON_AddStringToObject
|
||||
BL cJSON_AddStringToObject
|
||||
// 80 cJSON_AddStringToObject(JsonRoot, "frameType", "item_type");
|
||||
Nop
|
||||
ADR.W R2,?_7
|
||||
ADR.N R1,?_6
|
||||
MOV R0,R4
|
||||
CFI FunCall cJSON_AddStringToObject
|
||||
BL cJSON_AddStringToObject
|
||||
// 81 cJSON_AddNumberToObject(JsonRoot, "timeStamp", g_time_stamp);
|
||||
LDR.N R2,??DataTable22_3
|
||||
LDR R0,[R2, #+0]
|
||||
LDR.N R2,??DataTable23_3
|
||||
LDR R0,[R2, #+4]
|
||||
CFI FunCall __aeabi_ui2d
|
||||
BL __aeabi_ui2d
|
||||
VMOV D0,R0,R1
|
||||
|
@ -431,8 +429,8 @@ MQTT_Trans_Data:
|
|||
MOV R0,R4
|
||||
CFI FunCall cJSON_AddNumberToObject
|
||||
BL cJSON_AddNumberToObject
|
||||
// 82 cJSON_AddNumberToObject(JsonRoot, "Version", 10);
|
||||
VLDR.W D0,??DataTable22_4
|
||||
// 82 cJSON_AddNumberToObject(JsonRoot, "version", 10);
|
||||
VLDR.W D0,??DataTable23_4
|
||||
ADR.N R1,?_9
|
||||
MOV R0,R4
|
||||
CFI FunCall cJSON_AddNumberToObject
|
||||
|
@ -451,14 +449,14 @@ MQTT_Trans_Data:
|
|||
// 88 cJSON_AddItemToArray(DataArray, cJSON_CreateNumber(((float)((int )(ptr[i] * 100 + 0.5)))/100.0));// 四舍五入两位小数
|
||||
??MQTT_Trans_Data_0:
|
||||
ADD R0,R6,R7, LSL #+2
|
||||
VLDR.W S1,??DataTable22_5
|
||||
VLDR.W S1,??DataTable23_5
|
||||
VLDR S0,[R0, #0]
|
||||
VMUL.F32 S1,S0,S1
|
||||
VMOV R0,S1
|
||||
CFI FunCall __aeabi_f2d
|
||||
BL __aeabi_f2d
|
||||
MOVS R2,#+0
|
||||
LDR.N R3,??DataTable22_6
|
||||
LDR.N R3,??DataTable23_6
|
||||
CFI FunCall __aeabi_dadd
|
||||
BL __aeabi_dadd
|
||||
CFI FunCall __aeabi_d2iz
|
||||
|
@ -469,7 +467,7 @@ MQTT_Trans_Data:
|
|||
CFI FunCall __aeabi_f2d
|
||||
BL __aeabi_f2d
|
||||
MOVS R2,#+0
|
||||
LDR.N R3,??DataTable22_7
|
||||
LDR.N R3,??DataTable23_7
|
||||
CFI FunCall __aeabi_ddiv
|
||||
BL __aeabi_ddiv
|
||||
VMOV D0,R0,R1
|
||||
|
@ -497,7 +495,7 @@ MQTT_Trans_Data:
|
|||
// 95 sprintf(str_len_str, "%d", str_len);
|
||||
ADDS R2,R0,#+6
|
||||
UXTB R2,R2
|
||||
ADR.N R1,??DataTable22_8
|
||||
ADR.N R1,??DataTable23_8
|
||||
MOV R0,SP
|
||||
CFI FunCall sprintf
|
||||
BL sprintf
|
||||
|
@ -505,7 +503,7 @@ MQTT_Trans_Data:
|
|||
// 97 // 发送发数据包命令
|
||||
// 98 osDelay(2000);
|
||||
MOV R0,#+2000
|
||||
LDR.N R6,??DataTable22_1
|
||||
LDR.N R6,??DataTable23_1
|
||||
CFI FunCall osDelay
|
||||
BL osDelay
|
||||
// 99 uart_sendstr(g_ec801_uart_handle, "AT+QMTPUBEX=0,0,0,0,Test_Topic,");
|
||||
|
@ -520,7 +518,7 @@ MQTT_Trans_Data:
|
|||
BL uart_sendstr
|
||||
// 101 uart_sendstr(g_ec801_uart_handle, "\r\n");
|
||||
LDR R0,[R6, #+0]
|
||||
ADR.N R1,??DataTable22_12
|
||||
ADR.N R1,??DataTable23_12
|
||||
CFI FunCall uart_sendstr
|
||||
BL uart_sendstr
|
||||
// 102
|
||||
|
@ -686,7 +684,7 @@ fml_time_to_stamp:
|
|||
SUBS R4,R4,#+1
|
||||
MOV R1,#+3600
|
||||
ADDS R4,R4,R6
|
||||
LDR.N R0,??DataTable22_13
|
||||
LDR.N R0,??DataTable23_13
|
||||
LDR R2,[SP, #+48]
|
||||
LDR R3,[SP, #+52]
|
||||
MULS R5,R1,R5
|
||||
|
@ -702,21 +700,31 @@ fml_time_to_stamp:
|
|||
|
||||
SECTION `.bss`:DATA:REORDER:NOROOT(2)
|
||||
DATA
|
||||
// 158
|
||||
// 159
|
||||
// 160 //时间获取完成变量,用于控制是否开始MQTT信息接收
|
||||
// 161 uint8_t time_get_ok = 0;
|
||||
time_get_ok:
|
||||
DS8 1
|
||||
DS8 3
|
||||
g_time_stamp:
|
||||
DS8 4
|
||||
|
||||
SECTION `.bss`:DATA:REORDER:NOROOT(2)
|
||||
DATA
|
||||
DS8 4
|
||||
// 158
|
||||
// 159
|
||||
// 160 // 生成时间戳
|
||||
|
||||
SECTION `.bss`:DATA:REORDER:NOROOT(2)
|
||||
DATA
|
||||
DS8 4
|
||||
// 162 // 生成时间戳
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
CFI Block cfiBlock7 Using cfiCommon0
|
||||
CFI Function EC801_GET_Time
|
||||
THUMB
|
||||
// 161 void EC801_GET_Time()
|
||||
// 162 {
|
||||
// 163 int EC801_GET_Time()
|
||||
// 164 {
|
||||
EC801_GET_Time:
|
||||
PUSH {R3-R6,LR}
|
||||
CFI R14 Frame(CFA, -4)
|
||||
|
@ -724,22 +732,22 @@ EC801_GET_Time:
|
|||
CFI R5 Frame(CFA, -12)
|
||||
CFI R4 Frame(CFA, -16)
|
||||
CFI CFA R13+20
|
||||
// 163 int year, month, day, hour, minute, second;
|
||||
// 164 if(USE_UTC)
|
||||
// 165 {
|
||||
// 166 uart_sendstr(g_ec801_uart_handle, "AT+QLTS=0\r\n");
|
||||
LDR.N R4,??DataTable22_1
|
||||
// 165 int year, month, day, hour, minute, second;
|
||||
// 166 if(USE_UTC)
|
||||
// 167 {
|
||||
// 168 uart_sendstr(g_ec801_uart_handle, "AT+QLTS=0\r\n");
|
||||
LDR.N R4,??DataTable23_1
|
||||
ADR.N R1,?_15
|
||||
LDR R0,[R4, #+0]
|
||||
SUB SP,SP,#+140
|
||||
CFI CFA R13+160
|
||||
CFI FunCall uart_sendstr
|
||||
BL uart_sendstr
|
||||
// 167 }else
|
||||
// 168 {
|
||||
// 169 uart_sendstr(g_ec801_uart_handle, "AT+QLTS=2\r\n");
|
||||
// 170 }
|
||||
// 171 osDelay(1000);
|
||||
// 169 }else
|
||||
// 170 {
|
||||
// 171 uart_sendstr(g_ec801_uart_handle, "AT+QLTS=2\r\n");
|
||||
// 172 }
|
||||
// 173 osDelay(1000);
|
||||
MOV R0,#+1000
|
||||
CFI FunCall osDelay
|
||||
BL osDelay
|
||||
|
@ -747,180 +755,105 @@ EC801_GET_Time:
|
|||
ADD R0,SP,#+40
|
||||
CFI FunCall __aeabi_memclr4
|
||||
BL __aeabi_memclr4
|
||||
// 172 char time[100] = {0};int index = 0;
|
||||
// 174 char time[100] = {0};int index = 0;
|
||||
MOVS R6,#+0
|
||||
ADD R5,SP,#+40
|
||||
// 173
|
||||
// 174 // 第一个“后是时间,前面不要
|
||||
// 175 do{
|
||||
// 176 time[index] = uart_dev_in_char(g_ec801_uart_handle);
|
||||
// 175
|
||||
// 176 // 第一个“后是时间,前面不要
|
||||
// 177 do{
|
||||
// 178 time[index] = uart_dev_in_char(g_ec801_uart_handle);
|
||||
??EC801_GET_Time_0:
|
||||
LDR R0,[R4, #+0]
|
||||
CFI FunCall uart_dev_in_char
|
||||
BL uart_dev_in_char
|
||||
BL ?Subroutine0
|
||||
// 177 }while(time[index++] != '"');
|
||||
// 179 }while(time[index++] != '"' && uart_dev_char_present(g_ec801_uart_handle));
|
||||
??CrossCallReturnLabel_0:
|
||||
BEQ.N ??EC801_GET_Time_1
|
||||
LDR R0,[R4, #+0]
|
||||
CFI FunCall uart_dev_char_present
|
||||
BL uart_dev_char_present
|
||||
CMP R0,#+0
|
||||
BNE.N ??EC801_GET_Time_0
|
||||
// 178 // 丢掉前面的
|
||||
// 179 memcpy(time, time + index - 1, index);
|
||||
ADD R1,SP,#+40
|
||||
ADD R1,R1,R6
|
||||
// 180 // 丢掉前面的
|
||||
// 181 memcpy(time, time + index - 1, index);
|
||||
??EC801_GET_Time_1:
|
||||
ADD R0,SP,#+40
|
||||
ADD R0,R0,R6
|
||||
SUBS R1,R0,#+1
|
||||
MOV R2,R6
|
||||
SUBS R1,R1,#+1
|
||||
ADD R0,SP,#+40
|
||||
CFI FunCall __aeabi_memcpy
|
||||
BL __aeabi_memcpy
|
||||
// 180 index = 1;
|
||||
// 182 index = 1;
|
||||
MOVS R6,#+1
|
||||
// 181
|
||||
// 182 // "前面是时间
|
||||
// 183 do{
|
||||
// 184 time[index] = uart_dev_in_char(g_ec801_uart_handle);
|
||||
??EC801_GET_Time_1:
|
||||
// 183
|
||||
// 184 // "前面是时间
|
||||
// 185 do{
|
||||
// 186 time[index] = uart_dev_in_char(g_ec801_uart_handle);
|
||||
??EC801_GET_Time_2:
|
||||
LDR R0,[R4, #+0]
|
||||
CFI FunCall uart_dev_in_char
|
||||
BL uart_dev_in_char
|
||||
BL ?Subroutine0
|
||||
// 185 }while(time[index++] != '"');
|
||||
// 187 }while(time[index++] != '"' && uart_dev_char_present(g_ec801_uart_handle));
|
||||
??CrossCallReturnLabel_1:
|
||||
BNE.N ??EC801_GET_Time_1
|
||||
// 186
|
||||
// 187 // 字符提取成int
|
||||
// 188 int matched = sscanf(time, "\"%d/%d/%d,%d:%d:%d\"", &year, &month, &day, &hour, &minute, &second);
|
||||
ADD R1,SP,#+16
|
||||
BEQ.N ??EC801_GET_Time_3
|
||||
LDR R0,[R4, #+0]
|
||||
CFI FunCall uart_dev_char_present
|
||||
BL uart_dev_char_present
|
||||
CMP R0,#+0
|
||||
BNE.N ??EC801_GET_Time_2
|
||||
// 188
|
||||
// 189 // 字符提取成int
|
||||
// 190 sscanf(time, "\"%d/%d/%d,%d:%d:%d\"", &year, &month, &day, &hour, &minute, &second);
|
||||
??EC801_GET_Time_3:
|
||||
ADD R0,SP,#+20
|
||||
ADD R2,SP,#+24
|
||||
ADD R3,SP,#+28
|
||||
STR R1,[SP, #+12]
|
||||
STR R0,[SP, #+8]
|
||||
ADD R1,SP,#+24
|
||||
ADD R2,SP,#+28
|
||||
ADD R3,SP,#+32
|
||||
STR R0,[SP, #+12]
|
||||
STR R1,[SP, #+8]
|
||||
STR R2,[SP, #+4]
|
||||
STR R3,[SP, #+0]
|
||||
ADD R2,SP,#+36
|
||||
ADD.W R3,SP,#+32
|
||||
ADD R2,SP,#+16
|
||||
ADD.W R3,SP,#+36
|
||||
ADR.N R1,?_16
|
||||
LDR.N R4,??DataTable23_3
|
||||
ADD R0,SP,#+40
|
||||
CFI FunCall sscanf
|
||||
BL sscanf
|
||||
// 189
|
||||
// 190 // 生成时间戳
|
||||
// 191 g_time_stamp = fml_time_to_stamp(year, month, day, hour, minute, second);
|
||||
// 191
|
||||
// 192 if(year)
|
||||
LDR R0,[SP, #+16]
|
||||
LDR R1,[SP, #+20]
|
||||
CBZ.N R0,??EC801_GET_Time_4
|
||||
// 193 {
|
||||
// 194 time_get_ok = 1;
|
||||
MOVS R1,#+1
|
||||
STRB R1,[R4, #+0]
|
||||
// 195 }
|
||||
// 196 // 生成时间戳
|
||||
// 197 g_time_stamp = fml_time_to_stamp(year, month, day, hour, minute, second);
|
||||
??EC801_GET_Time_4:
|
||||
LDR R0,[SP, #+20]
|
||||
LDR R1,[SP, #+24]
|
||||
STR R0,[SP, #+4]
|
||||
STR R1,[SP, #+0]
|
||||
LDR R3,[SP, #+24]
|
||||
LDR R2,[SP, #+28]
|
||||
LDR R1,[SP, #+32]
|
||||
LDR R0,[SP, #+36]
|
||||
LDR R3,[SP, #+28]
|
||||
LDR R2,[SP, #+32]
|
||||
LDR R1,[SP, #+36]
|
||||
LDR R0,[SP, #+16]
|
||||
CFI FunCall fml_time_to_stamp
|
||||
BL fml_time_to_stamp
|
||||
LDR.N R1,??DataTable22_3
|
||||
STR R0,[R1, #+0]
|
||||
// 192 }
|
||||
STR R0,[R4, #+4]
|
||||
// 198 return year;
|
||||
LDR R0,[SP, #+16]
|
||||
ADD SP,SP,#+144
|
||||
CFI CFA R13+16
|
||||
POP {R4-R6,PC}
|
||||
// 199 }
|
||||
CFI EndBlock cfiBlock7
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable22:
|
||||
DATA32
|
||||
DC32 0x186a0
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable22_1:
|
||||
DATA32
|
||||
DC32 g_ec801_uart_handle
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable22_2:
|
||||
DATA32
|
||||
DC32 g_stMcs_Para
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable22_3:
|
||||
DATA32
|
||||
DC32 g_time_stamp
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable22_4:
|
||||
DATA32
|
||||
DC32 0x0,0x40240000
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable22_5:
|
||||
DATA32
|
||||
DC32 0x42c80000
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable22_6:
|
||||
DATA32
|
||||
DC32 0x3fe00000
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable22_7:
|
||||
DATA32
|
||||
DC32 0x40590000
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable22_8:
|
||||
DATA8
|
||||
DC8 0x25, 0x64, 0x00, 0x00
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable22_9:
|
||||
DATA32
|
||||
DC32 0x48000400
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable22_10:
|
||||
DATA32
|
||||
DC32 huart1
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable22_11:
|
||||
DATA32
|
||||
DC32 ?_0
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable22_12:
|
||||
DATA8
|
||||
DC8 0x0D, 0x0A, 0x00, 0x00
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable22_13:
|
||||
DATA32
|
||||
DC32 0x15180
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(1)
|
||||
CFI Block cfiCond8 Using cfiCommon0
|
||||
CFI Function EC801_GET_Time
|
||||
|
@ -952,6 +885,200 @@ EC801_GET_Time:
|
|||
CFI EndBlock cfiCond8
|
||||
CFI EndBlock cfiCond9
|
||||
CFI EndBlock cfiPicker10
|
||||
// 200
|
||||
// 201 #define JSON_BUFFER_SIZE 200
|
||||
// 202 // 解析收到的4g模块数据
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(1)
|
||||
CFI Block cfiBlock11 Using cfiCommon0
|
||||
CFI Function parse_4g_receive_data
|
||||
THUMB
|
||||
// 203 void parse_4g_receive_data()
|
||||
// 204 {
|
||||
parse_4g_receive_data:
|
||||
PUSH {R4-R6,LR}
|
||||
CFI R14 Frame(CFA, -4)
|
||||
CFI R6 Frame(CFA, -8)
|
||||
CFI R5 Frame(CFA, -12)
|
||||
CFI R4 Frame(CFA, -16)
|
||||
CFI CFA R13+16
|
||||
// 205 uint8_t temp_buff[JSON_BUFFER_SIZE];
|
||||
// 206 int jsonBufferIndex = 0; // 索引
|
||||
// 207 char c = 0;
|
||||
// 208 int inJson = 0;
|
||||
// 209 if(uart_dev_char_present(g_ec801_uart_handle)){
|
||||
LDR.N R6,??DataTable23_1
|
||||
LDR R0,[R6, #+0]
|
||||
SUB SP,SP,#+200
|
||||
CFI CFA R13+216
|
||||
CFI FunCall uart_dev_char_present
|
||||
BL uart_dev_char_present
|
||||
MOVS R5,#+0
|
||||
MOVS R4,#+0
|
||||
CBNZ.N R0,??parse_4g_receive_data_0
|
||||
B.N ??parse_4g_receive_data_1
|
||||
// 210 for(jsonBufferIndex = 0; uart_dev_char_present(g_ec801_uart_handle);)
|
||||
// 211 {
|
||||
// 212 c = uart_dev_in_char(g_ec801_uart_handle);
|
||||
// 213 if (c == '{') {
|
||||
// 214 inJson = 1; // 进入JSON字符串
|
||||
??parse_4g_receive_data_2:
|
||||
MOVS R4,#+1
|
||||
// 215 jsonBufferIndex = 0; // 重置JSON缓冲区索引
|
||||
// 216 temp_buff[jsonBufferIndex++] = c;
|
||||
STRB R0,[SP, #+0]
|
||||
MOVS R5,#+1
|
||||
// 217 } else if (c == '}' && inJson) {
|
||||
??parse_4g_receive_data_0:
|
||||
LDR R0,[R6, #+0]
|
||||
CFI FunCall uart_dev_char_present
|
||||
BL uart_dev_char_present
|
||||
CBZ.N R0,??parse_4g_receive_data_3
|
||||
LDR R0,[R6, #+0]
|
||||
CFI FunCall uart_dev_in_char
|
||||
BL uart_dev_in_char
|
||||
CMP R0,#+123
|
||||
BEQ.N ??parse_4g_receive_data_2
|
||||
ADDS R1,R5,#+1
|
||||
CMP R0,#+125
|
||||
BNE.N ??parse_4g_receive_data_4
|
||||
CBZ.N R4,??parse_4g_receive_data_5
|
||||
// 218 temp_buff[jsonBufferIndex++] = c;
|
||||
STRB R0,[SP, R5]
|
||||
// 219 //重置索引与标志
|
||||
// 220 jsonBufferIndex = 0;
|
||||
MOVS R5,#+0
|
||||
// 221 inJson = 0;
|
||||
MOVS R4,#+0
|
||||
B.N ??parse_4g_receive_data_0
|
||||
// 222 } else if (inJson) {
|
||||
??parse_4g_receive_data_4:
|
||||
CBZ.N R4,??parse_4g_receive_data_5
|
||||
// 223 // 如果在JSON字符串内部,则存储字符
|
||||
// 224 if (jsonBufferIndex < JSON_BUFFER_SIZE - 1) { // 保留一个位置给字符串结束符
|
||||
CMP R5,#+199
|
||||
BGE.N ??parse_4g_receive_data_0
|
||||
// 225 temp_buff[jsonBufferIndex++] = c;
|
||||
STRB R0,[SP, R5]
|
||||
??parse_4g_receive_data_5:
|
||||
MOV R5,R1
|
||||
B.N ??parse_4g_receive_data_0
|
||||
// 226 }
|
||||
// 227 }else {
|
||||
// 228 jsonBufferIndex++;//一直没有{可以继续检索
|
||||
// 229 }
|
||||
// 230 }
|
||||
// 231
|
||||
// 232 term_printf(temp_buff);
|
||||
??parse_4g_receive_data_3:
|
||||
MOV R0,SP
|
||||
CFI FunCall term_printf
|
||||
BL term_printf
|
||||
// 233 }
|
||||
// 234 }
|
||||
??parse_4g_receive_data_1:
|
||||
ADD SP,SP,#+200
|
||||
CFI CFA R13+16
|
||||
POP {R4-R6,PC}
|
||||
CFI EndBlock cfiBlock11
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable23:
|
||||
DATA32
|
||||
DC32 0x186a0
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable23_1:
|
||||
DATA32
|
||||
DC32 g_ec801_uart_handle
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable23_2:
|
||||
DATA32
|
||||
DC32 g_stMcs_Para
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable23_3:
|
||||
DATA32
|
||||
DC32 time_get_ok
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable23_4:
|
||||
DATA32
|
||||
DC32 0x0,0x40240000
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable23_5:
|
||||
DATA32
|
||||
DC32 0x42c80000
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable23_6:
|
||||
DATA32
|
||||
DC32 0x3fe00000
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable23_7:
|
||||
DATA32
|
||||
DC32 0x40590000
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable23_8:
|
||||
DATA8
|
||||
DC8 0x25, 0x64, 0x00, 0x00
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable23_9:
|
||||
DATA32
|
||||
DC32 0x48000400
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable23_10:
|
||||
DATA32
|
||||
DC32 huart1
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable23_11:
|
||||
DATA32
|
||||
DC32 ?_0
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable23_12:
|
||||
DATA8
|
||||
DC8 0x0D, 0x0A, 0x00, 0x00
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
DATA
|
||||
??DataTable23_13:
|
||||
DATA32
|
||||
DC32 0x15180
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
|
@ -1025,7 +1152,7 @@ EC801_GET_Time:
|
|||
DATA
|
||||
?_9:
|
||||
DATA8
|
||||
DC8 "Version"
|
||||
DC8 "version"
|
||||
|
||||
SECTION `.text`:CODE:NOROOT(2)
|
||||
SECTION_TYPE SHT_PROGBITS, 0
|
||||
|
@ -1094,15 +1221,16 @@ EC801_GET_Time:
|
|||
DS8 1
|
||||
|
||||
END
|
||||
// 193
|
||||
// 235
|
||||
// 236
|
||||
//
|
||||
// 12 bytes in section .bss
|
||||
// 16 bytes in section .bss
|
||||
// 44 bytes in section .rodata
|
||||
// 1'030 bytes in section .text
|
||||
// 1'154 bytes in section .text
|
||||
//
|
||||
// 1'030 bytes of CODE memory
|
||||
// 1'154 bytes of CODE memory
|
||||
// 44 bytes of CONST memory
|
||||
// 12 bytes of DATA memory
|
||||
// 16 bytes of DATA memory
|
||||
//
|
||||
//Errors: none
|
||||
//Warnings: 2
|
||||
//Warnings: 3
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
###############################################################################
|
||||
# #
|
||||
# IAR Assembler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:14 #
|
||||
# IAR Assembler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46 #
|
||||
# Copyright 1999-2023 IAR Systems AB. #
|
||||
# #
|
||||
# Source file = E:\Y\IAR\micro_climate\EWARM\startup_stm32l496xx.s#
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:11
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:11
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:01
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:44
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:01
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:44
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:01
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:45
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:01
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:45
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:01
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:01
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:02
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:02
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:01
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:01
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:01
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:01
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
###############################################################################
|
||||
# #
|
||||
# IAR Assembler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:01 #
|
||||
# IAR Assembler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46 #
|
||||
# Copyright 1999-2023 IAR Systems AB. #
|
||||
# #
|
||||
# Source file = E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portasm.s#
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:02
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:02
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:02
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:02
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:02
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:02
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:01
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 07/Aug/2024 17:12:01
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:46
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 09/Aug/2024 10:03:29
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:43
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 09/Aug/2024 10:03:29
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:43
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:11
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:11
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:42
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:12
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:43
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:12
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:43
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:12
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:44
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:12
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:44
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:12
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:44
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:12
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:44
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:12
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:43
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:12
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:43
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:12
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:43
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:12
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:43
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:12
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:44
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:12
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:44
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:12
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:44
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:12
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:44
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
###############################################################################
|
||||
#
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:13
|
||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:44
|
||||
# Copyright 1999-2023 IAR Systems AB.
|
||||
#
|
||||
# Cpu mode = thumb
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
///////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 06/Aug/2024 14:12:13
|
||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 09:20:44
|
||||
// Copyright 1999-2023 IAR Systems AB.
|
||||
//
|
||||
// Cpu mode = thumb
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue