实现将4G模块返回的json装在BUFF里面,同时解决了4G模块返回时间与json读取冲突的问题
This commit is contained in:
parent
8be224e113
commit
d127392021
|
@ -160,6 +160,10 @@ void StartDefaultTask(void const * argument)
|
||||||
{
|
{
|
||||||
read_and_process_uart_data(g_rs485_uart_handle);
|
read_and_process_uart_data(g_rs485_uart_handle);
|
||||||
read_and_process_uart_data(g_term_uart_handle);
|
read_and_process_uart_data(g_term_uart_handle);
|
||||||
|
if(time_get_ok)
|
||||||
|
{
|
||||||
|
parse_4g_receive_data();
|
||||||
|
}
|
||||||
osDelay(100);
|
osDelay(100);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -213,7 +217,7 @@ void Trans_4g_Task(void const * argument)
|
||||||
/* USER CODE BEGIN StartDefaultTask */
|
/* USER CODE BEGIN StartDefaultTask */
|
||||||
EC801E_Power_ON();
|
EC801E_Power_ON();
|
||||||
osDelay(5000);
|
osDelay(5000);
|
||||||
EC801_GET_Time();
|
while(!EC801_GET_Time());
|
||||||
MQTT_Config();
|
MQTT_Config();
|
||||||
MQTT_Trans_Data();
|
MQTT_Trans_Data();
|
||||||
int temp_1s = 0;
|
int temp_1s = 0;
|
||||||
|
|
|
@ -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;
|
int year, month, day, hour, minute, second;
|
||||||
if(USE_UTC)
|
if(USE_UTC)
|
||||||
|
@ -174,7 +176,7 @@ void EC801_GET_Time()
|
||||||
// 第一个“后是时间,前面不要
|
// 第一个“后是时间,前面不要
|
||||||
do{
|
do{
|
||||||
time[index] = uart_dev_in_char(g_ec801_uart_handle);
|
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);
|
memcpy(time, time + index - 1, index);
|
||||||
index = 1;
|
index = 1;
|
||||||
|
@ -182,31 +184,52 @@ void EC801_GET_Time()
|
||||||
// "前面是时间
|
// "前面是时间
|
||||||
do{
|
do{
|
||||||
time[index] = uart_dev_in_char(g_ec801_uart_handle);
|
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
|
||||||
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);
|
g_time_stamp = fml_time_to_stamp(year, month, day, hour, minute, second);
|
||||||
|
return year;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define JSON_BUFFER_SIZE 200
|
||||||
// 解析收到的4g模块数据
|
// 解析收到的4g模块数据
|
||||||
void parse_4g_receive_data()
|
void parse_4g_receive_data()
|
||||||
{
|
{
|
||||||
uint8_t temp_buff[50];
|
uint8_t temp_buff[JSON_BUFFER_SIZE];
|
||||||
|
int jsonBufferIndex = 0; // 索引
|
||||||
char c = 0;
|
char c = 0;
|
||||||
|
int inJson = 0;
|
||||||
if(uart_dev_char_present(g_ec801_uart_handle)){
|
if(uart_dev_char_present(g_ec801_uart_handle)){
|
||||||
for(int i = 0; i < 50; i++)
|
for(jsonBufferIndex = 0; uart_dev_char_present(g_ec801_uart_handle);)
|
||||||
{
|
{
|
||||||
c = uart_dev_in_char(g_ec801_uart_handle);
|
c = uart_dev_in_char(g_ec801_uart_handle);
|
||||||
temp_buff[i++] = c;
|
if (c == '{') {
|
||||||
if(temp_buff[0] != '"')
|
inJson = 1; // 进入JSON字符串
|
||||||
{
|
jsonBufferIndex = 0; // 重置JSON缓冲区索引
|
||||||
memcpy(temp_buff, temp_buff + 1, i - 1);
|
temp_buff[jsonBufferIndex++] = c;
|
||||||
i--;
|
} 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,9 +10,11 @@ extern "C" {
|
||||||
void EC801E_Power_ON();
|
void EC801E_Power_ON();
|
||||||
void MQTT_Config();
|
void MQTT_Config();
|
||||||
void MQTT_Trans_Data();
|
void MQTT_Trans_Data();
|
||||||
void EC801_GET_Time();
|
int EC801_GET_Time();
|
||||||
void parse_4g_receive_data();
|
void parse_4g_receive_data();
|
||||||
|
|
||||||
|
extern uint8_t time_get_ok;
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1,25 +1,16 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<BuildDb>
|
<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>
|
<Tool>
|
||||||
<Name>compiler</Name>
|
<Name>compiler</Name>
|
||||||
<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_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>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ex.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash_ex.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
|
@ -29,87 +20,6 @@
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ex.lst</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ex.lst</Path>
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</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_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\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_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\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim_ex.c</Path>
|
|
||||||
<Output>
|
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim_ex.s</Path>
|
|
||||||
</Output>
|
|
||||||
<Output>
|
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim_ex.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\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\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>
|
|
||||||
<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>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\Drivers\HP203B\hp203b.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Drivers\HP203B\hp203b.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
|
@ -119,60 +29,6 @@
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\HP203B_1856951872026386537.dir\hp203b.lst</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\HP203B_1856951872026386537.dir\hp203b.lst</Path>
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</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\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\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\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\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\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>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\Drivers\RingQueue\ring_queue.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Drivers\RingQueue\ring_queue.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
|
@ -183,147 +39,12 @@
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\App\Src\uart_dev.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Drivers\Shell\shell.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\uart_dev.s</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell.s</Path>
|
||||||
</Output>
|
</Output>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\uart_dev.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\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\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\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\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c</Path>
|
|
||||||
<Output>
|
|
||||||
<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\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash.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\Middlewares\Third_Party\FreeRTOS\Source\tasks.c</Path>
|
|
||||||
<Output>
|
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\tasks.s</Path>
|
|
||||||
</Output>
|
|
||||||
<Output>
|
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\tasks.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\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\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\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\Shell\shell_cmdhelp.c</Path>
|
|
||||||
<Output>
|
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_cmdhelp.s</Path>
|
|
||||||
</Output>
|
|
||||||
<Output>
|
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_cmdhelp.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_gpio.c</Path>
|
|
||||||
<Output>
|
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_gpio.s</Path>
|
|
||||||
</Output>
|
|
||||||
<Output>
|
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_gpio.lst</Path>
|
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
|
@ -336,21 +57,12 @@
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\Core\Src\stm32l4xx_hal_timebase_tim.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Drivers\EC801E\EC801E.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_hal_timebase_tim.s</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\EC801E_17758034221153603070.dir\EC801E.s</Path>
|
||||||
</Output>
|
</Output>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\stm32l4xx_hal_timebase_tim.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\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c</Path>
|
|
||||||
<Output>
|
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\stream_buffer.s</Path>
|
|
||||||
</Output>
|
|
||||||
<Output>
|
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\stream_buffer.lst</Path>
|
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
|
@ -363,21 +75,84 @@
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc_ex.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c.s</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc_ex.s</Path>
|
||||||
</Output>
|
</Output>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c.lst</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc_ex.lst</Path>
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\Core\Src\adc.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\adc.s</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr.s</Path>
|
||||||
</Output>
|
</Output>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\adc.lst</Path>
|
<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>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
|
@ -398,6 +173,15 @@
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\freertos.lst</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\freertos.lst</Path>
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</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>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\Core\Src\gpio.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Core\Src\gpio.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
|
@ -407,6 +191,69 @@
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\gpio.lst</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Core_13247989168731456611.dir\gpio.lst</Path>
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</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_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>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\port.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\port.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
|
@ -417,39 +264,66 @@
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_i2c_ex.c</Path>
|
<Path>E:\Y\IAR\micro_climate\App\Src\uart_dev.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c_ex.s</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\uart_dev.s</Path>
|
||||||
</Output>
|
</Output>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c_ex.lst</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\uart_dev.lst</Path>
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\App\Src\anemometer_dev.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Drivers\Sht3x\sht30.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\anemometer_dev.s</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Sht3x_8257160562692203274.dir\sht30.s</Path>
|
||||||
</Output>
|
</Output>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\anemometer_dev.lst</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Sht3x_8257160562692203274.dir\sht30.lst</Path>
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\App\Src\frt_protocol.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_rcc.c</Path>
|
||||||
<Output>
|
<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\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc.s</Path>
|
||||||
</Output>
|
</Output>
|
||||||
<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\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc.lst</Path>
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\App\Src\inflash.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\inflash.s</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal.s</Path>
|
||||||
</Output>
|
</Output>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Src_5571640358672592439.dir\inflash.lst</Path>
|
<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>
|
||||||
|
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim_ex.c</Path>
|
||||||
|
<Output>
|
||||||
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim_ex.s</Path>
|
||||||
|
</Output>
|
||||||
|
<Output>
|
||||||
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim_ex.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>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
|
@ -462,75 +336,66 @@
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_tim.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_exti.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim.s</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_exti.s</Path>
|
||||||
</Output>
|
</Output>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim.lst</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_exti.lst</Path>
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\queue.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\tasks.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\queue.s</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\tasks.s</Path>
|
||||||
</Output>
|
</Output>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\queue.lst</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\tasks.lst</Path>
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi_ex.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Drivers\Shell\shell_cmdhelp.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_spi_ex.s</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_cmdhelp.s</Path>
|
||||||
</Output>
|
</Output>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_spi_ex.lst</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_cmdhelp.lst</Path>
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_flash.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart.s</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash.s</Path>
|
||||||
</Output>
|
</Output>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart.lst</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash.lst</Path>
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_pwr_ex.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_gpio.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr_ex.s</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_gpio.s</Path>
|
||||||
</Output>
|
</Output>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr_ex.lst</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_gpio.lst</Path>
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart_ex.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Drivers\Shell\shell_cmdhist.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart_ex.s</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_cmdhist.s</Path>
|
||||||
</Output>
|
</Output>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart_ex.lst</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_cmdhist.lst</Path>
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\croutine.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Drivers\Shell\shell_uart.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\croutine.s</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\Shell_738121877093898511.dir\shell_uart.s</Path>
|
||||||
</Output>
|
</Output>
|
||||||
<Output>
|
<Output>
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\croutine.lst</Path>
|
<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\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>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
<Parent>
|
<Parent>
|
||||||
|
@ -542,6 +407,123 @@
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\timers.lst</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\timers.lst</Path>
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
|
<Parent>
|
||||||
|
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_uart_ex.c</Path>
|
||||||
|
<Output>
|
||||||
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart_ex.s</Path>
|
||||||
|
</Output>
|
||||||
|
<Output>
|
||||||
|
<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>
|
<Parent>
|
||||||
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi.c</Path>
|
<Path>E:\Y\IAR\micro_climate\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_hal_spi.c</Path>
|
||||||
<Output>
|
<Output>
|
||||||
|
@ -551,6 +533,33 @@
|
||||||
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_spi.lst</Path>
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_spi.lst</Path>
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
|
<Parent>
|
||||||
|
<Path>E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\stream_buffer.c</Path>
|
||||||
|
<Output>
|
||||||
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\stream_buffer.s</Path>
|
||||||
|
</Output>
|
||||||
|
<Output>
|
||||||
|
<Path>E:\Y\IAR\micro_climate\EWARM\micro_climate\List\FreeRTOS_4809373609813369194.dir\stream_buffer.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_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>
|
</Tool>
|
||||||
<Tool>
|
<Tool>
|
||||||
<Name>assembler</Name>
|
<Name>assembler</Name>
|
||||||
|
@ -567,13 +576,4 @@
|
||||||
</Output>
|
</Output>
|
||||||
</Parent>
|
</Parent>
|
||||||
</Tool>
|
</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>
|
</BuildDb>
|
||||||
|
|
Binary file not shown.
|
@ -1,113 +1,160 @@
|
||||||
# ninja log v5
|
# ninja log v5
|
||||||
195 738 7446279305563973 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/dma.o bf43722906c03566
|
64 676 7453880424072510 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
|
1639 2184 7453880440269338 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma.o 91d866fecc8c1f1a
|
||||||
2014 2557 7446279324086816 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
|
||||||
224 603 7446279304548474 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
|
||||||
606 1174 7446279309928646 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/i2c.o c1fb605878ec3f5b
|
3122 5352 7453880471917057 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim.o bb0cd7722c4f38a4
|
||||||
3071 5495 7446279353474587 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
|
||||||
740 1209 7446279310299196 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
|
||||||
654 984 7447251217391871 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/croutine.o fec8dff9e3001349
|
126 610 7453880424082506 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/spi.o a8bea0bf06ab2afe
|
||||||
650 1077 7446279309304170 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
|
||||||
35 598 7448722095042905 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o dbcb0db307adc272
|
3 382 7453900884716361 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
|
677 1113 7453880429553530 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/CMSIS_6603591812247902717.dir/system_stm32l4xx.o 8af0a0bb5f37c063
|
||||||
5057 5103 7446279349661588 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EWARM_18443280873093131863.dir/startup_stm32l496xx.o 983b34495e4a9f06
|
2 385 7453901738566418 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||||
1211 1714 7446279315656463 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/CMSIS_6603591812247902717.dir/system_stm32l4xx.o 8af0a0bb5f37c063
|
4708 4747 7453880466025265 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EWARM_18443280873093131863.dir/startup_stm32l496xx.o 983b34495e4a9f06
|
||||||
128 713 7448722096202912 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
4321 4784 7453880466345271 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/stream_buffer.o a2c4202a3c04b26c
|
||||||
574 926 7447251216806815 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/timers.o aec0756d465e7d4f
|
646 852 7453880427039239 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Filter_2427836196881467961.dir/filter.o 1021703d4dd9edaf
|
||||||
1079 1339 7446279312034775 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
|
||||||
66 664 7448722095572926 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/main.o a6886d12c2e968a7
|
158 760 7453880425689257 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
|
214 643 7453880424072510 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
|
1268 1461 7453880433104175 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_cmdhelp.o b3251e875919362e
|
||||||
2240 2687 7446279325472114 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma_ex.o e6241ebc22880fa8
|
1922 2334 7453880441799339 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
|
4241 5079 7453880469285262 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/tasks.o 925e9e5e1f9c00b6
|
||||||
2 353 7447186272429031 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/stm32l4xx_it.o d3b9c956d118e1e0
|
570 1150 7453880429563532 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
|
4549 5114 7453880469645265 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
|
1208 1346 7453880431984168 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
|
730 1265 7453880431094170 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/usart.o e0a5563efe00cc8
|
||||||
98 617 7448722095232908 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/tim.o c03cdeb0749f61c2
|
612 1205 7453880430514172 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
|
2810 3761 7453880455710053 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_rcc.o cfc99b805f06fd21
|
||||||
2 542 7446279303818474 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/inflash.o 6384979adabcf318
|
1030 1418 7453880432694172 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_autocomplete.o aca2684d02ab7723
|
||||||
1244 1620 7446279314819852 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
|
||||||
3429 3817 7446279336740777 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_spi_ex.o 474177df1723cbf
|
1064 1637 7453880434428020 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/HP203B_1856951872026386537.dir/hp203b.o c3cee707e37d4a42
|
||||||
161 619 7448722095242909 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
|
||||||
39 648 7446279304548474 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/adc.o 7fd39f29b6b2108a
|
1153 1676 7453880434889329 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Shell_738121877093898511.dir/shell_uart.o 8b75033f8b86554
|
||||||
1716 2133 7446279319936669 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
|
||||||
196 781 7447251214591754 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Sht3x_8257160562692203274.dir/sht30.o d6ce7047a76c72a3
|
1349 1962 7453880437459407 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
|
1420 1920 7453880437279336 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
|
2134 2545 7453880443869337 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
|
1115 2017 7453880438599336 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
|
1462 1876 7453880437209330 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_cortex.o ffd5c9fe60b1cb86
|
||||||
1914 2443 7446279322611754 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
|
||||||
2 372 7446288323475415 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/uart_dev.o a0d36a68c77f5f1a
|
1594 2705 7453880445464699 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc_ex.o 37f4eb03dbc09aaa
|
||||||
3746 5142 7446279349981587 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_spi.o f38fe7acc918d43b
|
2760 4141 7453880459810070 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
|
3727 4195 7453880460030058 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/uart_dev.o a0d36a68c77f5f1a
|
||||||
2626 3241 7446279330974155 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash.o b4beadf6e004d839
|
1878 2438 7453880442839336 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
|
1677 2131 7453880439769343 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash_ramfunc.o d260c0cb338f75bb
|
||||||
2870 3426 7446279332819211 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr.o 2db3b7171b5c7eec
|
2441 2931 7453880447784704 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
|
4610 4886 7453880467365309 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/heap_4.o 9cbc680675f46c5a
|
||||||
1797 3116 7446279329304146 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc.o caeb41ce376d6e07
|
1503 2758 7453880445864704 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
|
2187 2873 7453880447114700 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
|
2337 2808 7453880446204733 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
|
2492 3120 7453880449194699 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr_ex.o 30bd4b15d276c369
|
||||||
2924 3632 7446279334910364 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
|
||||||
3566 4608 7446279344636069 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_rcc_ex.o e19c1f22ef08f9c4
|
1965 2490 7453880442999340 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_gpio.o 2d1e548c51a93c9
|
||||||
2445 3067 7446279328007193 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
|
||||||
226 876 7447251215911747 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/cmsis_os.o be977a9f349ad14c
|
2548 3060 7453880449094699 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
|
4749 4786 7453880466405263 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/FreeRTOS_4809373609813369194.dir/portasm.o 97d4445452c7ac15
|
||||||
1206 1238 7447251219981885 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
|
||||||
3118 4321 7446279341740974 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim_ex.o 81aff70c2ae41a09
|
3063 4091 7453880459370056 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
|
3267 4661 7453880464845261 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
|
4198 4432 7453880462830060 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
|
3764 4489 7453880463200060 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
|
3555 4318 7453880461600061 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
|
4491 4705 7453880465555263 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
|
386 591 7453901740611761 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
|
593 610 7453901740921721 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
|
1 1591 7453880434328017 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
|
2 388 7453902029369630 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o dbcb0db307adc272
|
||||||
628 846 7448724919728379 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
390 607 7453902031588487 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
|
609 628 7453902031998976 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
|
3 393 7453902815582073 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||||
632 844 7448730280998673 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
393 612 7453902817741485 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
|
614 632 7453902818081484 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
|
3 404 7453903165129843 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||||
659 884 7448736080997585 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
405 629 7453903167335381 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
|
631 649 7453903167675741 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
|
2 387 7453903945670791 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||||
633 845 7448747076800580 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
387 601 7453903947784403 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
|
603 621 7453903948114360 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||||
2 488 7448759003627905 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/main.o a6886d12c2e968a7
|
3 448 7453905698792221 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||||
34 553 7448759004273217 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
|
||||||
66 780 7448759006558336 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/anemometer_dev.o 3ee494bfbe2660af
|
667 685 7453905701380765 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||||
782 1008 7448759008936293 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
3 464 7453922366076103 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||||
1011 1030 7448759009286244 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
465 675 7453922368286139 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||||
32 488 7448900844619823 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o dbcb0db307adc272
|
677 694 7453922368604370 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||||
60 518 7448900844899808 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/main.o a6886d12c2e968a7
|
3 398 7453923449632508 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||||
88 534 7448900845189853 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
|
||||||
3 629 7448900845999847 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o aa5a018fe56eded3
|
602 620 7453923451942462 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||||
630 849 7448900848324662 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
3 395 7453925125364064 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||||
851 870 7448900848669719 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
396 605 7453925127454028 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||||
2 337 7448901900948207 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o dbcb0db307adc272
|
607 626 7453925127785228 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||||
34 419 7448901901758210 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
3 509 7453925877089610 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||||
421 622 7448901903774689 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
510 822 7453925880311680 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||||
624 641 7448901904085193 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
824 842 7453925880651646 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||||
2 332 7448903512064174 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o dbcb0db307adc272
|
3 401 7453927844324586 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||||
333 547 7448903514194102 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
402 611 7453927846410613 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||||
549 566 7448903514511257 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
617 640 7453927846820616 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||||
2 425 7448904395207465 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/freertos.o dbcb0db307adc272
|
3 444 7453928815255961 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||||
426 631 7448904397241110 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
445 667 7453928817447983 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||||
633 650 7448904397570538 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
669 688 7453928817782905 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||||
1 443 7448933530548500 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
3 437 7453929556851318 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||||
3 216 7448933748690702 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
438 642 7453929558991292 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||||
217 235 7448933749000681 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
644 661 7453929559301295 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||||
3 396 7448934735400453 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
3 398 7453931348262198 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||||
396 599 7448934737400018 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
399 617 7453931350426508 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||||
601 619 7448934737719974 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
620 638 7453931350766509 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.hex da035ebc0f78809b
|
||||||
45 1094 7449582440497937 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
3 454 7453936912026741 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||||
358 1188 7449582441417935 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Src_5571640358672592439.dir/frt_protocol.o aa5a018fe56eded3
|
455 672 7453936914309163 E:/Y/IAR/micro_climate/EWARM/micro_climate/Exe/micro_climate.out 42c24b588bc0dc40
|
||||||
1191 2120 7449582450843611 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
|
||||||
2122 2208 7449582451863870 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
|
||||||
3 447 7449831865589949 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/Core_13247989168731456611.dir/main.o a6886d12c2e968a7
|
36 455 7453938155853888 E:/Y/IAR/micro_climate/EWARM/micro_climate/Obj/EC801E_17758034221153603070.dir/EC801E.o a54b6de52d607a4f
|
||||||
37 519 7449831866283400 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
|
||||||
521 737 7449831868558652 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
|
||||||
739 759 7449831868918745 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.
|
@ -7,34 +7,34 @@
|
||||||
9 533 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/spi.xcl 757c84479e347688
|
9 533 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/spi.xcl 757c84479e347688
|
||||||
12 523 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_hal_msp.xcl 96bd9c362b7a66a6
|
12 523 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_hal_msp.xcl 96bd9c362b7a66a6
|
||||||
555 1006 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Filter_2427836196881467961.dir/filter.xcl ad75120e53206fce
|
555 1006 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Filter_2427836196881467961.dir/filter.xcl ad75120e53206fce
|
||||||
3855 4010 7445525537651594 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/RingQueue_10900368326811202236.dir/ring_queue.pbi ae7a817f0b6f7f6b
|
1373 1434 7453880295904146 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/RingQueue_10900368326811202236.dir/ring_queue.pbi ae7a817f0b6f7f6b
|
||||||
4270 4882 7445525546335702 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_cortex.pbi cf46cd36b785b7a7
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
3351 3422 7453880315805906 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
|
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
|
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
|
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
|
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
|
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
|
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
|
1019 1580 7445525510000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Sht3x_8257160562692203274.dir/sht30.xcl 4b5fbfa27482da61
|
||||||
2 575 7448904380170663 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
|
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
|
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
|
1505 1911 7445525510000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_exti.xcl d28064c2f9caba48
|
||||||
|
@ -42,296 +42,192 @@
|
||||||
2606 2966 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim.xcl ba2c093c8f291790
|
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
|
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
|
1913 2311 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_rcc.xcl 1092c00c9ab05872
|
||||||
2 568 7448756258367791 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
|
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
|
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
|
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
|
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
|
2305 2825 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart.xcl 87c50a2191251892
|
||||||
1627 3075 7448934811603964 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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
2193 2724 7445525520000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/port.xcl 9c179c3acb014f22
|
||||||
3 573 7448900490572381 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
|
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
|
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
|
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
|
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
|
1768 1822 7453880299804132 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
|
1663 1712 7453880298714131 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
|
1110 1662 7453880298144134 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
|
1208 1366 7453880295234137 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
|
1099 1624 7453880297814129 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
|
1071 1604 7453880297364139 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
|
1435 1967 7453880301244150 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
|
1058 1599 7453880297394127 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
|
547 1098 7453880292558045 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
|
2080 2703 7453880308615314 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
|
890 1657 7453880298144134 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
|
804 1609 7453880297654136 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
|
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
|
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
|
1658 2186 7453880303438687 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
|
2996 3592 7453880317502341 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
|
2143 2611 7453880307685235 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
|
2163 2769 7453880309265235 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
|
2618 3160 7453880313162854 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
|
2732 3349 7453880315080118 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
|
1969 2473 7453880306303988 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
|
1625 2175 7453880303328695 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
|
1606 2161 7453880303188685 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
|
3333 3403 7453880315625901 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
|
3230 3328 7453880314870116 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
|
3684 4478 7453880326379393 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
|
2091 2616 7453880307705232 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
|
2518 2994 7453880311532839 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
|
3167 3252 7453880314102834 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
|
3322 3396 7453880315555896 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
|
2695 3198 7453880313562829 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
|
2187 2693 7453880308505230 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
|
3424 3476 7453880316365173 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
|
2177 2731 7453880308885244 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
|
3148 3683 7453880318402335 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
|
2612 3165 7453880313232859 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
|
2771 3263 7453880314213075 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
|
3264 3332 7453880314900117 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
|
2474 3147 7453880313042836 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
|
2704 3229 7453880313862834 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
|
3329 3410 7453880315685912 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
|
3254 3321 7453880314800113 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/FreeRTOS_4809373609813369194.dir/port.pbi e54a5c2a4789d89f
|
||||||
556 1072 7448934791999920 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
537 1053 7454127472255493 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
|
3199 3291 7453880314491626 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
|
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
|
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
|
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
|
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
|
6992 7224 7445525560000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/adc.xcl e5451b87ebc00ca7
|
||||||
574 1396 7448900498848394 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part1.pbi a2973c59822e3ba0
|
553 1351 7454121761854645 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
|
3594 4435 7453880325949395 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
|
6 535 7453880286918044 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
|
15 540 7453880286928041 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
|
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
|
7218 7390 7445525570000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/freertos.xcl f9bfb2f65a25eea9
|
||||||
2 540 7448877205168900 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
|
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
|
2 546 7453880286968045 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
|
13 589 7453880287468046 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/uart_dev.pbi 3ab39da8fbfa8221
|
||||||
576 1340 7448904387826124 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
547 1305 7454121761384691 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||||
1073 1627 7448934797539132 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1054 1605 7454127477767180 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
|
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
|
20 553 7445525500000000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.xcl ebfb9659b35c1fff
|
||||||
2 555 7448934786819286 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
2 536 7454127467069195 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
2 525 7448936629422069 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
|
||||||
526 1048 7448936634659435 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
560 1106 7454131535058432 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
1049 1611 7448936640295600 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1107 1680 7454131540801852 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1612 3062 7448936654361084 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1681 3162 7454131555162495 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
2 523 7448944257823621 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
2 533 7454131612028913 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
523 1057 7448944263179523 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
534 1077 7454131617469651 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
1057 1640 7448944269012497 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1077 1670 7454131623402091 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1640 3207 7448944284218604 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1670 3187 7454131638059991 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
1 592 7448944341731979 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
2 541 7454131695088894 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
592 1190 7448944347729735 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
542 1074 7454131700421469 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
1191 1819 7448944354026797 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1075 1642 7454131706094416 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1820 3428 7448944369595843 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1642 3102 7454131720234731 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
2 571 7448944426986842 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
1 533 7454131777133803 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
572 1111 7448944432392233 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
533 1068 7454131782493516 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
1112 1716 7448944438440106 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1069 1629 7454131788096819 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1717 3396 7448944454642392 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1629 3084 7454131802200964 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
2 531 7448952913105673 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
2 542 7454132462543939 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
532 1045 7448952918248561 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
543 1064 7454132467772958 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
1045 1607 7448952923871626 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1065 1619 7454132473323753 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1607 3042 7448952937790804 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1620 3105 7454132487731769 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
2 568 7448954101660915 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
1 533 7454133449899961 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
569 1147 7448954107456648 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
534 1058 7454133455163886 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
1147 1746 7448954113446648 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1059 1638 7454133460955774 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1747 3276 7448954128308723 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1639 3122 7454133475351604 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
2 532 7448954185190749 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
1 533 7454133683131552 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
533 1043 7448954190311108 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
534 1074 7454133688538898 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
1044 1595 7448954195826437 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1074 1641 7454133694213958 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1596 3032 7448954209749667 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1642 3140 7454133708752290 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
2 547 7448970668778673 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
5 585 7454133766123696 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/main.pbi c727fe1dca7b633d
|
||||||
548 1090 7448970674220209 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
6 589 7454133766153689 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
1090 1720 7448970680520829 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
2 592 7454133766163694 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/freertos.pbi 3ddb8275ce0d8276
|
||||||
1721 3275 7448970695593207 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
590 1152 7454133771813369 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
2 529 7448992789044070 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
593 1358 7454133773868320 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||||
530 1049 7448992794248053 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
586 1396 7454133774253948 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part1.pbi a2973c59822e3ba0
|
||||||
1049 1612 7448992799879272 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1397 1967 7454133779960085 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1613 3091 7448992814215799 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1968 3448 7454133794305146 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
1 541 7448992871254304 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
2 540 7454133951850832 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
542 1084 7448992876687987 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
541 1062 7454133957078108 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
1085 1642 7448992882267068 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1062 1649 7454133962951376 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1643 3067 7448992896091624 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1650 3151 7454133977444522 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
1 683 7449559812168868 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
4 567 7454134034851544 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/main.pbi c727fe1dca7b633d
|
||||||
683 1595 7449559821311803 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
5 570 7454134034861377 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
1596 2735 7449559832701940 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
2 573 7454134034871332 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/freertos.pbi 3ddb8275ce0d8276
|
||||||
2736 4219 7449559847115993 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
571 1136 7454134040558758 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
2 539 7449565385935844 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
574 1336 7454134042554630 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||||
540 1069 7449565391243052 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
568 1372 7454134042918672 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part1.pbi a2973c59822e3ba0
|
||||||
1070 1627 7449565396805961 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1373 1939 7454134048589719 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1627 3192 7449565411167701 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1940 3487 7454134062881210 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
2 515 7449565468739779 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
2 555 7454134171012224 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
516 1020 7449565473788293 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
556 1089 7454134176363563 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
1021 1627 7449565479218291 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1089 1665 7454134182132543 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1628 3053 7449565493521245 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1665 3136 7454134196373340 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
1 527 7449566003256245 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
1 531 7454134253253688 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/freertos.pbi 3ddb8275ce0d8276
|
||||||
528 1054 7449566008539819 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
532 1244 7454134260390250 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||||
1055 1623 7449566014225000 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1244 1798 7454134265933836 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1623 3113 7449566028668691 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1799 3285 7454134280347168 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
2 517 7449569858497752 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
2 531 7454134437744920 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/freertos.pbi 3ddb8275ce0d8276
|
||||||
518 1030 7449569863633502 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
532 1241 7454134444850696 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||||
1031 1579 7449569869127461 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1242 1804 7454134450476322 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1579 3025 7449569883133291 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1804 3265 7454134464632808 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
1 527 7449569939964077 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
2 523 7454134521458197 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/freertos.pbi 3ddb8275ce0d8276
|
||||||
528 1062 7449569945319380 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
524 1237 7454134528595170 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
||||||
1062 1628 7449569950989381 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1238 1795 7454134534186740 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1629 3099 7449569965196001 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1796 3235 7454134548150321 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
2 509 7449570021871634 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
2 652 7454135813228152 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
510 1018 7449570026968332 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
654 1192 7454135818638539 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
1018 1559 7449570032379881 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1193 1762 7454135824329637 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1559 2953 7449570045896781 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1763 3252 7454135838756299 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
1 524 7449580617190721 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
2 536 7454136046638981 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
525 1038 7449580622340259 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
536 1070 7454136051985919 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
1039 1582 7449580627779859 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1071 1638 7454136057664591 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1582 3000 7449580641518393 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1639 3167 7454136072507520 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
1 545 7449580698562396 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Src_5571640358672592439.dir/frt_protocol.pbi aa4d702faf2152c5
|
2 536 7454136129368846 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
545 1865 7449580711772963 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part0.pbi d377b469d47faa19
|
537 1102 7454136135036593 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
1865 2464 7449580717763289 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1103 1709 7454136141103194 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
2465 3907 7449580731717632 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1710 3162 7454136155156854 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
1 651 7449581493673073 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
2 537 7454136212061465 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
652 1208 7449581499258622 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
538 1071 7454136217407093 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
1209 1874 7449581505919909 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1072 1667 7454136223374439 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1875 3412 7449581520895689 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1667 3154 7454136237798432 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
2 566 7449582460947743 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
2 527 7454136395205837 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
567 1121 7449582466503102 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
528 1083 7454136400772202 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
1122 1675 7449582472051058 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1084 1646 7454136406403586 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1676 3108 7449582485934619 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1 1483 7454136481812714 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
1 524 7449592357195696 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/Core_13247989168731456611.dir/main.pbi c727fe1dca7b633d
|
2 538 7454139153337882 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
525 1769 7449592369659791 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part1.pbi a2973c59822e3ba0
|
539 1080 7454139158766131 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
1770 2398 7449592375938331 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1080 1667 7454139164645897 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
2398 3842 7449592389969600 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1668 3155 7454139179040185 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
2 641 7449592598701349 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
2 546 7454139286350035 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
642 1176 7449592604053498 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
547 1077 7454139291655803 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
1176 1774 7449592610030687 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1078 1648 7454139297365802 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1775 3381 7449592625248395 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1649 3123 7454139311641189 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
2 541 7449593386852442 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
2 566 7454139368901085 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
542 1076 7449593392202931 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
567 1099 7454139374237409 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
1076 1630 7449593397759131 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1100 1693 7454139380176283 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1631 3084 7449593411868064 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1694 3302 7454139395415152 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
2 532 7449604084952050 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
2 539 7454140156807502 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
||||||
533 1073 7449604090379246 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
540 1058 7454140161998150 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
||||||
1074 1665 7449604096290922 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
1058 1628 7454140167702880 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
||||||
1665 3120 7449604110410263 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
1629 3147 7454140182441016 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
||||||
1 523 7449604267844126 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
524 1030 7449604272926147 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1031 1593 7449604278553333 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1594 3052 7449604292694061 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 521 7449616528041799 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
522 1033 7449616533173320 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1034 1576 7449616538601405 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1577 3011 7449616552510076 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
1 519 7449625513913036 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
520 1033 7449625519047629 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1033 1583 7449625524554982 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1583 3015 7449625538416990 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 516 7449644107746064 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
517 1036 7449644112957773 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1037 1590 7449644118497286 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1591 3026 7449644132374642 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 517 7449666929807179 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
518 1052 7449666935159292 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1052 1603 7449666940669113 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1604 3033 7449666954522180 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 531 7449670733533147 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
532 1099 7449670739230268 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1100 1721 7449670745435174 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
3 1555 7449778923582205 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
1 547 7449830674789264 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
548 1070 7449830680026661 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1071 1641 7449830685729250 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1641 3151 7449830700347984 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 659 7449831311766566 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
660 1195 7449831317143366 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1196 1818 7449831323364390 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1819 3365 7449831338358918 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
1 540 7449831395373651 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
541 1101 7449831400992777 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1102 1709 7449831407071055 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1710 3237 7449831421889263 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 544 7449831478977017 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
545 1096 7449831484508471 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1097 1667 7449831490209671 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1668 3172 7449831504797164 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 543 7449831561873449 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
543 1074 7449831567195528 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1074 1663 7449831573083515 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1665 3170 7449831587711177 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 542 7449831795587782 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
543 1118 7449831801355610 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1119 1736 7449831807534799 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1737 3268 7449831822360457 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 588 7449831879875145 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
589 1158 7449831885583636 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1159 1739 7449831891405196 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1740 3206 7449831905565001 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 543 7449832365129548 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
544 1077 7449832370479183 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1078 1642 7449832376122235 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1643 3114 7449832390369583 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
1 538 7449832900086633 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
539 1077 7449832905483004 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1078 1672 7449832911436184 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
4 1577 7449833280643003 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 546 7449833336852052 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
547 1088 7449833342284679 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1089 1695 7449833348350930 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1696 3198 7449833362929117 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 532 7449833419855119 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
532 1054 7449833425090795 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1055 1626 7449833430803493 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1627 3130 7449833445393192 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 550 7449833502544671 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
551 1097 7449833508032329 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1098 1680 7449833513857161 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1681 3174 7449833528311928 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 547 7449834239363987 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
548 1084 7449834244727471 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1084 1659 7449834250489870 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1660 3113 7449834264563255 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 546 7449834673715485 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
547 1091 7449834679182050 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1092 1671 7449834684986395 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1672 3188 7449834699462200 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 566 7449834756959845 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
567 1125 7449834762546003 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1126 1727 7449834768576179 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1728 3247 7449834783297373 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 595 7449838564416899 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
2 2182 7451487091581802 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
2182 2847 7451487098242141 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
2848 4739 7451487115707704 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 837 7453869541798374 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
837 2157 7453869555030371 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
2158 2989 7453869563347378 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
2989 4639 7453869579247307 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 531 7453870138808395 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
531 1090 7453870144406708 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1090 1676 7453870150270616 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1677 3152 7453870164482092 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 526 7453870221352193 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
527 1049 7453870226610521 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1050 1628 7453870232404812 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1628 3095 7453870246646241 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
2 563 7453871007392877 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/EC801E_17758034221153603070.dir/EC801E.pbi 567bcf822d995d98
|
|
||||||
564 1075 7453871012522882 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate_part2.pbi ac5f6eea2281be79
|
|
||||||
1075 1639 7453871018158508 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbd 70ab1a767db47c97
|
|
||||||
1639 3147 7453871032754110 E:/Y/IAR/micro_climate/EWARM/micro_climate/BrowseInfo/micro_climate.pbw 68766e220b8d24a0
|
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,46 +0,0 @@
|
||||||
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\..\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
|
|
Binary file not shown.
Binary file not shown.
|
@ -338798,7 +338798,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@1147@macro@cJSON__h",
|
"ID": "c:cJSON.h@1170@macro@cJSON__h",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "cJSON__h",
|
"display": "cJSON__h",
|
||||||
|
@ -338812,7 +338812,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@2759@macro@CJSON_CDECL",
|
"ID": "c:cJSON.h@2829@macro@CJSON_CDECL",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "CJSON_CDECL",
|
"display": "CJSON_CDECL",
|
||||||
|
@ -338826,7 +338826,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@2779@macro@CJSON_STDCALL",
|
"ID": "c:cJSON.h@2850@macro@CJSON_STDCALL",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "CJSON_STDCALL",
|
"display": "CJSON_STDCALL",
|
||||||
|
@ -338840,7 +338840,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@2986@macro@CJSON_PUBLIC",
|
"ID": "c:cJSON.h@3062@macro@CJSON_PUBLIC",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "CJSON_PUBLIC",
|
"display": "CJSON_PUBLIC",
|
||||||
|
@ -338854,7 +338854,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@3055@macro@CJSON_VERSION_MAJOR",
|
"ID": "c:cJSON.h@3136@macro@CJSON_VERSION_MAJOR",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "CJSON_VERSION_MAJOR",
|
"display": "CJSON_VERSION_MAJOR",
|
||||||
|
@ -338868,7 +338868,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@3085@macro@CJSON_VERSION_MINOR",
|
"ID": "c:cJSON.h@3167@macro@CJSON_VERSION_MINOR",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "CJSON_VERSION_MINOR",
|
"display": "CJSON_VERSION_MINOR",
|
||||||
|
@ -338882,7 +338882,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@3115@macro@CJSON_VERSION_PATCH",
|
"ID": "c:cJSON.h@3198@macro@CJSON_VERSION_PATCH",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "CJSON_VERSION_PATCH",
|
"display": "CJSON_VERSION_PATCH",
|
||||||
|
@ -338896,7 +338896,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@3187@macro@cJSON_Invalid",
|
"ID": "c:cJSON.h@3275@macro@cJSON_Invalid",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "cJSON_Invalid",
|
"display": "cJSON_Invalid",
|
||||||
|
@ -338910,7 +338910,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@3213@macro@cJSON_False",
|
"ID": "c:cJSON.h@3302@macro@cJSON_False",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "cJSON_False",
|
"display": "cJSON_False",
|
||||||
|
@ -338924,7 +338924,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@3243@macro@cJSON_True",
|
"ID": "c:cJSON.h@3333@macro@cJSON_True",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "cJSON_True",
|
"display": "cJSON_True",
|
||||||
|
@ -338938,7 +338938,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@3273@macro@cJSON_NULL",
|
"ID": "c:cJSON.h@3364@macro@cJSON_NULL",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "cJSON_NULL",
|
"display": "cJSON_NULL",
|
||||||
|
@ -338952,7 +338952,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@3303@macro@cJSON_Number",
|
"ID": "c:cJSON.h@3395@macro@cJSON_Number",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "cJSON_Number",
|
"display": "cJSON_Number",
|
||||||
|
@ -338966,7 +338966,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@3333@macro@cJSON_String",
|
"ID": "c:cJSON.h@3426@macro@cJSON_String",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "cJSON_String",
|
"display": "cJSON_String",
|
||||||
|
@ -338980,7 +338980,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@3363@macro@cJSON_Array",
|
"ID": "c:cJSON.h@3457@macro@cJSON_Array",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "cJSON_Array",
|
"display": "cJSON_Array",
|
||||||
|
@ -338994,7 +338994,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@3393@macro@cJSON_Object",
|
"ID": "c:cJSON.h@3488@macro@cJSON_Object",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "cJSON_Object",
|
"display": "cJSON_Object",
|
||||||
|
@ -339008,7 +339008,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@3423@macro@cJSON_Raw",
|
"ID": "c:cJSON.h@3519@macro@cJSON_Raw",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "cJSON_Raw",
|
"display": "cJSON_Raw",
|
||||||
|
@ -339022,7 +339022,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@3469@macro@cJSON_IsReference",
|
"ID": "c:cJSON.h@3567@macro@cJSON_IsReference",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "cJSON_IsReference",
|
"display": "cJSON_IsReference",
|
||||||
|
@ -339036,7 +339036,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@3499@macro@cJSON_StringIsConst",
|
"ID": "c:cJSON.h@3598@macro@cJSON_StringIsConst",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "cJSON_StringIsConst",
|
"display": "cJSON_StringIsConst",
|
||||||
|
@ -339264,7 +339264,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@4838@macro@CJSON_NESTING_LIMIT",
|
"ID": "c:cJSON.h@4974@macro@CJSON_NESTING_LIMIT",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "CJSON_NESTING_LIMIT",
|
"display": "CJSON_NESTING_LIMIT",
|
||||||
|
@ -341350,7 +341350,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@14861@macro@cJSON_SetIntValue",
|
"ID": "c:cJSON.h@15135@macro@cJSON_SetIntValue",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "cJSON_SetIntValue",
|
"display": "cJSON_SetIntValue",
|
||||||
|
@ -341392,7 +341392,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@15103@macro@cJSON_SetNumberValue",
|
"ID": "c:cJSON.h@15380@macro@cJSON_SetNumberValue",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "cJSON_SetNumberValue",
|
"display": "cJSON_SetNumberValue",
|
||||||
|
@ -341434,7 +341434,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@15532@macro@cJSON_SetBoolValue",
|
"ID": "c:cJSON.h@15814@macro@cJSON_SetBoolValue",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "cJSON_SetBoolValue",
|
"display": "cJSON_SetBoolValue",
|
||||||
|
@ -341448,7 +341448,7 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:cJSON.h@15832@macro@cJSON_ArrayForEach",
|
"ID": "c:cJSON.h@16121@macro@cJSON_ArrayForEach",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "cJSON_ArrayForEach",
|
"display": "cJSON_ArrayForEach",
|
||||||
|
@ -431878,7 +431878,7 @@
|
||||||
"display": "void SensorTask(const void *)",
|
"display": "void SensorTask(const void *)",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "6",
|
"column": "6",
|
||||||
"line": "184",
|
"line": "188",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\freertos.c"
|
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\freertos.c"
|
||||||
},
|
},
|
||||||
"name": "SensorTask",
|
"name": "SensorTask",
|
||||||
|
@ -431892,7 +431892,7 @@
|
||||||
"display": "void LEDTask(const void *)",
|
"display": "void LEDTask(const void *)",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "6",
|
"column": "6",
|
||||||
"line": "197",
|
"line": "201",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\freertos.c"
|
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\freertos.c"
|
||||||
},
|
},
|
||||||
"name": "LEDTask",
|
"name": "LEDTask",
|
||||||
|
@ -431906,7 +431906,7 @@
|
||||||
"display": "void Trans_4g_Task(const void *)",
|
"display": "void Trans_4g_Task(const void *)",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "6",
|
"column": "6",
|
||||||
"line": "211",
|
"line": "215",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\freertos.c"
|
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\freertos.c"
|
||||||
},
|
},
|
||||||
"name": "Trans_4g_Task",
|
"name": "Trans_4g_Task",
|
||||||
|
@ -431914,13 +431914,13 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:freertos.c@6610@F@Trans_4g_Task@temp_1s",
|
"ID": "c:freertos.c@6687@F@Trans_4g_Task@temp_1s",
|
||||||
"What": "Variable",
|
"What": "Variable",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "temp_1s",
|
"display": "temp_1s",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "7",
|
"column": "7",
|
||||||
"line": "219",
|
"line": "223",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\freertos.c"
|
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\freertos.c"
|
||||||
},
|
},
|
||||||
"name": "temp_1s",
|
"name": "temp_1s",
|
||||||
|
@ -432029,9 +432029,9 @@
|
||||||
"ID": "c:@F@EC801_GET_Time",
|
"ID": "c:@F@EC801_GET_Time",
|
||||||
"What": "Function",
|
"What": "Function",
|
||||||
"defdec": "Dec",
|
"defdec": "Dec",
|
||||||
"display": "void EC801_GET_Time(void)",
|
"display": "int EC801_GET_Time(void)",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "6",
|
"column": "5",
|
||||||
"line": "13",
|
"line": "13",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.h"
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.h"
|
||||||
},
|
},
|
||||||
|
@ -432043,9 +432043,9 @@
|
||||||
"ID": "c:@F@EC801_GET_Time",
|
"ID": "c:@F@EC801_GET_Time",
|
||||||
"What": "Function",
|
"What": "Function",
|
||||||
"defdec": "Dec",
|
"defdec": "Dec",
|
||||||
"display": "void EC801_GET_Time(void)",
|
"display": "int EC801_GET_Time(void)",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "6",
|
"column": "5",
|
||||||
"line": "13",
|
"line": "13",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.h"
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.h"
|
||||||
},
|
},
|
||||||
|
@ -432081,6 +432081,34 @@
|
||||||
"origin": "user_include",
|
"origin": "user_include",
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"ID": "c:@time_get_ok",
|
||||||
|
"What": "Variable",
|
||||||
|
"defdec": "Dec",
|
||||||
|
"display": "time_get_ok",
|
||||||
|
"location": {
|
||||||
|
"column": "16",
|
||||||
|
"line": "16",
|
||||||
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.h"
|
||||||
|
},
|
||||||
|
"name": "time_get_ok",
|
||||||
|
"origin": "user_include",
|
||||||
|
"scope": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ID": "c:@time_get_ok",
|
||||||
|
"What": "Variable",
|
||||||
|
"defdec": "Dec",
|
||||||
|
"display": "time_get_ok",
|
||||||
|
"location": {
|
||||||
|
"column": "16",
|
||||||
|
"line": "16",
|
||||||
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.h"
|
||||||
|
},
|
||||||
|
"name": "time_get_ok",
|
||||||
|
"origin": "user_include",
|
||||||
|
"scope": null
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:@F@MX_GPIO_Init",
|
"ID": "c:@F@MX_GPIO_Init",
|
||||||
"What": "Function",
|
"What": "Function",
|
||||||
|
@ -432361,146 +432389,6 @@
|
||||||
"origin": "project_file",
|
"origin": "project_file",
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"ID": "c:@uart_devices",
|
|
||||||
"What": "Variable",
|
|
||||||
"defdec": "Dec",
|
|
||||||
"display": "uart_devices",
|
|
||||||
"location": {
|
|
||||||
"column": "25",
|
|
||||||
"line": "63",
|
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
|
||||||
},
|
|
||||||
"name": "uart_devices",
|
|
||||||
"origin": "project_file",
|
|
||||||
"scope": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ID": "c:@temp_str",
|
|
||||||
"What": "Variable",
|
|
||||||
"defdec": "Dec",
|
|
||||||
"display": "temp_str",
|
|
||||||
"location": {
|
|
||||||
"column": "9",
|
|
||||||
"line": "66",
|
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
|
||||||
},
|
|
||||||
"name": "temp_str",
|
|
||||||
"origin": "project_file",
|
|
||||||
"scope": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ID": "c:@F@SystemClock_Config",
|
|
||||||
"What": "Function",
|
|
||||||
"defdec": "Dec",
|
|
||||||
"display": "void SystemClock_Config(void)",
|
|
||||||
"location": {
|
|
||||||
"column": "6",
|
|
||||||
"line": "77",
|
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
|
||||||
},
|
|
||||||
"name": "SystemClock_Config",
|
|
||||||
"origin": "project_file",
|
|
||||||
"scope": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ID": "c:@F@MX_FREERTOS_Init",
|
|
||||||
"What": "Function",
|
|
||||||
"defdec": "Dec",
|
|
||||||
"display": "void MX_FREERTOS_Init(void)",
|
|
||||||
"location": {
|
|
||||||
"column": "6",
|
|
||||||
"line": "78",
|
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
|
||||||
},
|
|
||||||
"name": "MX_FREERTOS_Init",
|
|
||||||
"origin": "project_file",
|
|
||||||
"scope": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ID": "c:@F@main",
|
|
||||||
"What": "Function",
|
|
||||||
"defdec": "Def",
|
|
||||||
"display": "int main(void)",
|
|
||||||
"location": {
|
|
||||||
"column": "5",
|
|
||||||
"line": "91",
|
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
|
||||||
},
|
|
||||||
"name": "main",
|
|
||||||
"origin": "project_file",
|
|
||||||
"scope": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ID": "c:@F@SystemClock_Config",
|
|
||||||
"What": "Function",
|
|
||||||
"defdec": "Def",
|
|
||||||
"display": "void SystemClock_Config(void)",
|
|
||||||
"location": {
|
|
||||||
"column": "6",
|
|
||||||
"line": "170",
|
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
|
||||||
},
|
|
||||||
"name": "SystemClock_Config",
|
|
||||||
"origin": "project_file",
|
|
||||||
"scope": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ID": "c:main.c@4355@F@SystemClock_Config@RCC_OscInitStruct",
|
|
||||||
"What": "Variable",
|
|
||||||
"defdec": "Def",
|
|
||||||
"display": "RCC_OscInitStruct",
|
|
||||||
"location": {
|
|
||||||
"column": "22",
|
|
||||||
"line": "172",
|
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
|
||||||
},
|
|
||||||
"name": "RCC_OscInitStruct",
|
|
||||||
"origin": "project_file",
|
|
||||||
"scope": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ID": "c:main.c@4402@F@SystemClock_Config@RCC_ClkInitStruct",
|
|
||||||
"What": "Variable",
|
|
||||||
"defdec": "Def",
|
|
||||||
"display": "RCC_ClkInitStruct",
|
|
||||||
"location": {
|
|
||||||
"column": "22",
|
|
||||||
"line": "173",
|
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
|
||||||
},
|
|
||||||
"name": "RCC_ClkInitStruct",
|
|
||||||
"origin": "project_file",
|
|
||||||
"scope": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ID": "c:@F@HAL_TIM_PeriodElapsedCallback",
|
|
||||||
"What": "Function",
|
|
||||||
"defdec": "Def",
|
|
||||||
"display": "void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *)",
|
|
||||||
"location": {
|
|
||||||
"column": "6",
|
|
||||||
"line": "226",
|
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
|
||||||
},
|
|
||||||
"name": "HAL_TIM_PeriodElapsedCallback",
|
|
||||||
"origin": "project_file",
|
|
||||||
"scope": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ID": "c:@F@Error_Handler",
|
|
||||||
"What": "Function",
|
|
||||||
"defdec": "Def",
|
|
||||||
"display": "void Error_Handler(void)",
|
|
||||||
"location": {
|
|
||||||
"column": "6",
|
|
||||||
"line": "243",
|
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
|
||||||
},
|
|
||||||
"name": "Error_Handler",
|
|
||||||
"origin": "project_file",
|
|
||||||
"scope": null
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"ID": "c:xcorr.h@29@macro@__XCORR_H__",
|
"ID": "c:xcorr.h@29@macro@__XCORR_H__",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
|
@ -432599,6 +432487,146 @@
|
||||||
"origin": "user_include",
|
"origin": "user_include",
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"ID": "c:@uart_devices",
|
||||||
|
"What": "Variable",
|
||||||
|
"defdec": "Dec",
|
||||||
|
"display": "uart_devices",
|
||||||
|
"location": {
|
||||||
|
"column": "25",
|
||||||
|
"line": "63",
|
||||||
|
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
||||||
|
},
|
||||||
|
"name": "uart_devices",
|
||||||
|
"origin": "project_file",
|
||||||
|
"scope": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ID": "c:@temp_str",
|
||||||
|
"What": "Variable",
|
||||||
|
"defdec": "Dec",
|
||||||
|
"display": "temp_str",
|
||||||
|
"location": {
|
||||||
|
"column": "9",
|
||||||
|
"line": "66",
|
||||||
|
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
||||||
|
},
|
||||||
|
"name": "temp_str",
|
||||||
|
"origin": "project_file",
|
||||||
|
"scope": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ID": "c:@F@SystemClock_Config",
|
||||||
|
"What": "Function",
|
||||||
|
"defdec": "Dec",
|
||||||
|
"display": "void SystemClock_Config(void)",
|
||||||
|
"location": {
|
||||||
|
"column": "6",
|
||||||
|
"line": "77",
|
||||||
|
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
||||||
|
},
|
||||||
|
"name": "SystemClock_Config",
|
||||||
|
"origin": "project_file",
|
||||||
|
"scope": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ID": "c:@F@MX_FREERTOS_Init",
|
||||||
|
"What": "Function",
|
||||||
|
"defdec": "Dec",
|
||||||
|
"display": "void MX_FREERTOS_Init(void)",
|
||||||
|
"location": {
|
||||||
|
"column": "6",
|
||||||
|
"line": "78",
|
||||||
|
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
||||||
|
},
|
||||||
|
"name": "MX_FREERTOS_Init",
|
||||||
|
"origin": "project_file",
|
||||||
|
"scope": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ID": "c:@F@main",
|
||||||
|
"What": "Function",
|
||||||
|
"defdec": "Def",
|
||||||
|
"display": "int main(void)",
|
||||||
|
"location": {
|
||||||
|
"column": "5",
|
||||||
|
"line": "91",
|
||||||
|
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
||||||
|
},
|
||||||
|
"name": "main",
|
||||||
|
"origin": "project_file",
|
||||||
|
"scope": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ID": "c:@F@SystemClock_Config",
|
||||||
|
"What": "Function",
|
||||||
|
"defdec": "Def",
|
||||||
|
"display": "void SystemClock_Config(void)",
|
||||||
|
"location": {
|
||||||
|
"column": "6",
|
||||||
|
"line": "170",
|
||||||
|
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
||||||
|
},
|
||||||
|
"name": "SystemClock_Config",
|
||||||
|
"origin": "project_file",
|
||||||
|
"scope": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ID": "c:main.c@4354@F@SystemClock_Config@RCC_OscInitStruct",
|
||||||
|
"What": "Variable",
|
||||||
|
"defdec": "Def",
|
||||||
|
"display": "RCC_OscInitStruct",
|
||||||
|
"location": {
|
||||||
|
"column": "22",
|
||||||
|
"line": "172",
|
||||||
|
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
||||||
|
},
|
||||||
|
"name": "RCC_OscInitStruct",
|
||||||
|
"origin": "project_file",
|
||||||
|
"scope": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ID": "c:main.c@4401@F@SystemClock_Config@RCC_ClkInitStruct",
|
||||||
|
"What": "Variable",
|
||||||
|
"defdec": "Def",
|
||||||
|
"display": "RCC_ClkInitStruct",
|
||||||
|
"location": {
|
||||||
|
"column": "22",
|
||||||
|
"line": "173",
|
||||||
|
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
||||||
|
},
|
||||||
|
"name": "RCC_ClkInitStruct",
|
||||||
|
"origin": "project_file",
|
||||||
|
"scope": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ID": "c:@F@HAL_TIM_PeriodElapsedCallback",
|
||||||
|
"What": "Function",
|
||||||
|
"defdec": "Def",
|
||||||
|
"display": "void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *)",
|
||||||
|
"location": {
|
||||||
|
"column": "6",
|
||||||
|
"line": "226",
|
||||||
|
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
||||||
|
},
|
||||||
|
"name": "HAL_TIM_PeriodElapsedCallback",
|
||||||
|
"origin": "project_file",
|
||||||
|
"scope": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ID": "c:@F@Error_Handler",
|
||||||
|
"What": "Function",
|
||||||
|
"defdec": "Def",
|
||||||
|
"display": "void Error_Handler(void)",
|
||||||
|
"location": {
|
||||||
|
"column": "6",
|
||||||
|
"line": "243",
|
||||||
|
"path": "E:\\Y\\IAR\\micro_climate\\Core\\Src\\main.c"
|
||||||
|
},
|
||||||
|
"name": "Error_Handler",
|
||||||
|
"origin": "project_file",
|
||||||
|
"scope": null
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:spi.h@847@macro@__SPI_H__",
|
"ID": "c:spi.h@847@macro@__SPI_H__",
|
||||||
"What": "MacroDef",
|
"What": "MacroDef",
|
||||||
|
@ -434209,14 +434237,28 @@
|
||||||
"origin": "project_file",
|
"origin": "project_file",
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"ID": "c:@time_get_ok",
|
||||||
|
"What": "Variable",
|
||||||
|
"defdec": "Def",
|
||||||
|
"display": "time_get_ok",
|
||||||
|
"location": {
|
||||||
|
"column": "9",
|
||||||
|
"line": "161",
|
||||||
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
||||||
|
},
|
||||||
|
"name": "time_get_ok",
|
||||||
|
"origin": "project_file",
|
||||||
|
"scope": null
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:@F@EC801_GET_Time",
|
"ID": "c:@F@EC801_GET_Time",
|
||||||
"What": "Function",
|
"What": "Function",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "void EC801_GET_Time(void)",
|
"display": "int EC801_GET_Time(void)",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "6",
|
"column": "5",
|
||||||
"line": "161",
|
"line": "163",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
||||||
},
|
},
|
||||||
"name": "EC801_GET_Time",
|
"name": "EC801_GET_Time",
|
||||||
|
@ -434224,13 +434266,13 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:EC801E.c@4566@F@EC801_GET_Time@year",
|
"ID": "c:EC801E.c@4641@F@EC801_GET_Time@year",
|
||||||
"What": "Variable",
|
"What": "Variable",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "year",
|
"display": "year",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "9",
|
"column": "9",
|
||||||
"line": "163",
|
"line": "165",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
||||||
},
|
},
|
||||||
"name": "year",
|
"name": "year",
|
||||||
|
@ -434238,13 +434280,13 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:EC801E.c@4566@F@EC801_GET_Time@month",
|
"ID": "c:EC801E.c@4641@F@EC801_GET_Time@month",
|
||||||
"What": "Variable",
|
"What": "Variable",
|
||||||
"defdec": "Dec",
|
"defdec": "Dec",
|
||||||
"display": "month",
|
"display": "month",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "15",
|
"column": "15",
|
||||||
"line": "163",
|
"line": "165",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
||||||
},
|
},
|
||||||
"name": "month",
|
"name": "month",
|
||||||
|
@ -434252,13 +434294,13 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:EC801E.c@4566@F@EC801_GET_Time@day",
|
"ID": "c:EC801E.c@4641@F@EC801_GET_Time@day",
|
||||||
"What": "Variable",
|
"What": "Variable",
|
||||||
"defdec": "Dec",
|
"defdec": "Dec",
|
||||||
"display": "day",
|
"display": "day",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "22",
|
"column": "22",
|
||||||
"line": "163",
|
"line": "165",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
||||||
},
|
},
|
||||||
"name": "day",
|
"name": "day",
|
||||||
|
@ -434266,13 +434308,13 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:EC801E.c@4566@F@EC801_GET_Time@hour",
|
"ID": "c:EC801E.c@4641@F@EC801_GET_Time@hour",
|
||||||
"What": "Variable",
|
"What": "Variable",
|
||||||
"defdec": "Dec",
|
"defdec": "Dec",
|
||||||
"display": "hour",
|
"display": "hour",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "27",
|
"column": "27",
|
||||||
"line": "163",
|
"line": "165",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
||||||
},
|
},
|
||||||
"name": "hour",
|
"name": "hour",
|
||||||
|
@ -434280,13 +434322,13 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:EC801E.c@4566@F@EC801_GET_Time@minute",
|
"ID": "c:EC801E.c@4641@F@EC801_GET_Time@minute",
|
||||||
"What": "Variable",
|
"What": "Variable",
|
||||||
"defdec": "Dec",
|
"defdec": "Dec",
|
||||||
"display": "minute",
|
"display": "minute",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "33",
|
"column": "33",
|
||||||
"line": "163",
|
"line": "165",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
||||||
},
|
},
|
||||||
"name": "minute",
|
"name": "minute",
|
||||||
|
@ -434294,13 +434336,13 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:EC801E.c@4566@F@EC801_GET_Time@second",
|
"ID": "c:EC801E.c@4641@F@EC801_GET_Time@second",
|
||||||
"What": "Variable",
|
"What": "Variable",
|
||||||
"defdec": "Dec",
|
"defdec": "Dec",
|
||||||
"display": "second",
|
"display": "second",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "41",
|
"column": "41",
|
||||||
"line": "163",
|
"line": "165",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
||||||
},
|
},
|
||||||
"name": "second",
|
"name": "second",
|
||||||
|
@ -434308,13 +434350,13 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:EC801E.c@4806@F@EC801_GET_Time@time",
|
"ID": "c:EC801E.c@4881@F@EC801_GET_Time@time",
|
||||||
"What": "Variable",
|
"What": "Variable",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "time",
|
"display": "time",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "10",
|
"column": "10",
|
||||||
"line": "172",
|
"line": "174",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
||||||
},
|
},
|
||||||
"name": "time",
|
"name": "time",
|
||||||
|
@ -434322,13 +434364,13 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:EC801E.c@4827@F@EC801_GET_Time@index",
|
"ID": "c:EC801E.c@4902@F@EC801_GET_Time@index",
|
||||||
"What": "Variable",
|
"What": "Variable",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "index",
|
"display": "index",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "30",
|
"column": "30",
|
||||||
"line": "172",
|
"line": "174",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
||||||
},
|
},
|
||||||
"name": "index",
|
"name": "index",
|
||||||
|
@ -434336,16 +434378,16 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:EC801E.c@5251@F@EC801_GET_Time@matched",
|
"ID": "c:EC801E.c@5693@macro@JSON_BUFFER_SIZE",
|
||||||
"What": "Variable",
|
"What": "MacroDef",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "matched",
|
"display": "JSON_BUFFER_SIZE",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "9",
|
"column": "9",
|
||||||
"line": "188",
|
"line": "201",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
||||||
},
|
},
|
||||||
"name": "matched",
|
"name": "JSON_BUFFER_SIZE",
|
||||||
"origin": "project_file",
|
"origin": "project_file",
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
|
@ -434356,7 +434398,7 @@
|
||||||
"display": "void parse_4g_receive_data(void)",
|
"display": "void parse_4g_receive_data(void)",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "6",
|
"column": "6",
|
||||||
"line": "195",
|
"line": "203",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
||||||
},
|
},
|
||||||
"name": "parse_4g_receive_data",
|
"name": "parse_4g_receive_data",
|
||||||
|
@ -434364,13 +434406,13 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:EC801E.c@5522@F@parse_4g_receive_data@temp_buff",
|
"ID": "c:EC801E.c@5781@F@parse_4g_receive_data@temp_buff",
|
||||||
"What": "Variable",
|
"What": "Variable",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "temp_buff",
|
"display": "temp_buff",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "13",
|
"column": "13",
|
||||||
"line": "197",
|
"line": "205",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
||||||
},
|
},
|
||||||
"name": "temp_buff",
|
"name": "temp_buff",
|
||||||
|
@ -434378,13 +434420,27 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:EC801E.c@5550@F@parse_4g_receive_data@c",
|
"ID": "c:EC801E.c@5823@F@parse_4g_receive_data@jsonBufferIndex",
|
||||||
|
"What": "Variable",
|
||||||
|
"defdec": "Def",
|
||||||
|
"display": "jsonBufferIndex",
|
||||||
|
"location": {
|
||||||
|
"column": "9",
|
||||||
|
"line": "206",
|
||||||
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
||||||
|
},
|
||||||
|
"name": "jsonBufferIndex",
|
||||||
|
"origin": "project_file",
|
||||||
|
"scope": null
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ID": "c:EC801E.c@5861@F@parse_4g_receive_data@c",
|
||||||
"What": "Variable",
|
"What": "Variable",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "c",
|
"display": "c",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "10",
|
"column": "10",
|
||||||
"line": "198",
|
"line": "207",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
||||||
},
|
},
|
||||||
"name": "c",
|
"name": "c",
|
||||||
|
@ -434392,16 +434448,16 @@
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"ID": "c:EC801E.c@5628@F@parse_4g_receive_data@i",
|
"ID": "c:EC801E.c@5878@F@parse_4g_receive_data@inJson",
|
||||||
"What": "Variable",
|
"What": "Variable",
|
||||||
"defdec": "Def",
|
"defdec": "Def",
|
||||||
"display": "i",
|
"display": "inJson",
|
||||||
"location": {
|
"location": {
|
||||||
"column": "17",
|
"column": "9",
|
||||||
"line": "200",
|
"line": "208",
|
||||||
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
"path": "E:\\Y\\IAR\\micro_climate\\Drivers\\EC801E\\EC801E.c"
|
||||||
},
|
},
|
||||||
"name": "i",
|
"name": "inJson",
|
||||||
"origin": "project_file",
|
"origin": "project_file",
|
||||||
"scope": null
|
"scope": null
|
||||||
},
|
},
|
||||||
|
|
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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// Cpu mode = thumb
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#
|
#
|
||||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 09/Aug/2024 15:07:19
|
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 16:24:22
|
||||||
# Copyright 1999-2023 IAR Systems AB.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# Cpu mode = thumb
|
||||||
|
@ -333,9 +333,10 @@ E:\Y\IAR\micro_climate\Core\Src\freertos.c
|
||||||
154 void StartDefaultTask(void const * argument)
|
154 void StartDefaultTask(void const * argument)
|
||||||
155 {
|
155 {
|
||||||
\ StartDefaultTask: (+1)
|
\ StartDefaultTask: (+1)
|
||||||
\ 0x0 0xB538 PUSH {R3-R5,LR}
|
\ 0x0 0xB570 PUSH {R4-R6,LR}
|
||||||
\ 0x2 0x.... LDR.N R4,??DataTable9_2
|
\ 0x2 0x.... LDR.N R4,??DataTable9_2
|
||||||
\ 0x4 0x.... LDR.N R5,??DataTable9_3
|
\ 0x4 0x.... LDR.N R5,??DataTable9_3
|
||||||
|
\ 0x6 0x.... LDR.N R6,??DataTable9_4
|
||||||
156 /* USER CODE BEGIN StartDefaultTask */
|
156 /* USER CODE BEGIN StartDefaultTask */
|
||||||
157
|
157
|
||||||
158 /* Infinite loop */
|
158 /* Infinite loop */
|
||||||
|
@ -343,126 +344,137 @@ E:\Y\IAR\micro_climate\Core\Src\freertos.c
|
||||||
160 {
|
160 {
|
||||||
161 read_and_process_uart_data(g_rs485_uart_handle);
|
161 read_and_process_uart_data(g_rs485_uart_handle);
|
||||||
\ ??StartDefaultTask_0: (+1)
|
\ ??StartDefaultTask_0: (+1)
|
||||||
\ 0x6 0x6828 LDR R0,[R5, #+0]
|
\ 0x8 0x6830 LDR R0,[R6, #+0]
|
||||||
\ 0x8 0x.... 0x.... BL read_and_process_uart_data
|
\ 0xA 0x.... 0x.... BL read_and_process_uart_data
|
||||||
162 read_and_process_uart_data(g_term_uart_handle);
|
162 read_and_process_uart_data(g_term_uart_handle);
|
||||||
\ 0xC 0x6820 LDR R0,[R4, #+0]
|
\ 0xE 0x6828 LDR R0,[R5, #+0]
|
||||||
\ 0xE 0x.... 0x.... BL read_and_process_uart_data
|
\ 0x10 0x.... 0x.... BL read_and_process_uart_data
|
||||||
163 osDelay(100);
|
163 if(time_get_ok)
|
||||||
\ 0x12 0x2064 MOVS R0,#+100
|
\ 0x14 0x7820 LDRB R0,[R4, #+0]
|
||||||
\ 0x14 0x.... 0x.... BL osDelay
|
\ 0x16 0xB108 CBZ.N R0,??StartDefaultTask_1
|
||||||
\ 0x18 0xE7F5 B.N ??StartDefaultTask_0
|
164 {
|
||||||
164
|
165 parse_4g_receive_data();
|
||||||
165 }
|
\ 0x18 0x.... 0x.... BL parse_4g_receive_data
|
||||||
166 /* USER CODE END StartDefaultTask */
|
166 }
|
||||||
167 }
|
167 osDelay(100);
|
||||||
|
\ ??StartDefaultTask_1: (+1)
|
||||||
|
\ 0x1C 0x2064 MOVS R0,#+100
|
||||||
|
\ 0x1E 0x.... 0x.... BL osDelay
|
||||||
|
\ 0x22 0xE7F1 B.N ??StartDefaultTask_0
|
||||||
168
|
168
|
||||||
169 /* Private application code --------------------------------------------------*/
|
169 }
|
||||||
170 /* USER CODE BEGIN Application */
|
170 /* USER CODE END StartDefaultTask */
|
||||||
171 #if 0
|
171 }
|
||||||
172 void task_shell_term_main_loop(void const * argument)
|
172
|
||||||
173 {
|
173 /* Private application code --------------------------------------------------*/
|
||||||
174 shell_init();
|
174 /* USER CODE BEGIN Application */
|
||||||
175 for(;;)
|
175 #if 0
|
||||||
176 {
|
176 void task_shell_term_main_loop(void const * argument)
|
||||||
177 shell_main_loop("climate:~$ ");
|
177 {
|
||||||
178 osDelay(500);
|
178 shell_init();
|
||||||
179 }
|
179 for(;;)
|
||||||
180 }
|
180 {
|
||||||
181 #endif
|
181 shell_main_loop("climate:~$ ");
|
||||||
182
|
182 osDelay(500);
|
||||||
183
|
183 }
|
||||||
|
184 }
|
||||||
|
185 #endif
|
||||||
|
186
|
||||||
|
187
|
||||||
|
|
||||||
\ In section .text, align 2, keep-with-next
|
\ In section .text, align 2, keep-with-next
|
||||||
184 void SensorTask(void const * argument)
|
188 void SensorTask(void const * argument)
|
||||||
185 {
|
189 {
|
||||||
\ SensorTask: (+1)
|
\ SensorTask: (+1)
|
||||||
\ 0x0 0xB510 PUSH {R4,LR}
|
\ 0x0 0xB510 PUSH {R4,LR}
|
||||||
\ 0x2 0x.... LDR.N R4,??DataTable9_2
|
\ 0x2 0x.... LDR.N R4,??DataTable9_3
|
||||||
186 /* USER CODE BEGIN StartDefaultTask */
|
190 /* USER CODE BEGIN StartDefaultTask */
|
||||||
187 /* Infinite loop */
|
191 /* Infinite loop */
|
||||||
188 for(;;)
|
192 for(;;)
|
||||||
189 {
|
193 {
|
||||||
190 read_and_process_uart_data(g_term_uart_handle);
|
194 read_and_process_uart_data(g_term_uart_handle);
|
||||||
\ ??SensorTask_0: (+1)
|
\ ??SensorTask_0: (+1)
|
||||||
\ 0x4 0x6820 LDR R0,[R4, #+0]
|
\ 0x4 0x6820 LDR R0,[R4, #+0]
|
||||||
\ 0x6 0x.... 0x.... BL read_and_process_uart_data
|
\ 0x6 0x.... 0x.... BL read_and_process_uart_data
|
||||||
191 osDelay(100);
|
195 osDelay(100);
|
||||||
\ 0xA 0x2064 MOVS R0,#+100
|
\ 0xA 0x2064 MOVS R0,#+100
|
||||||
\ 0xC 0x.... 0x.... BL osDelay
|
\ 0xC 0x.... 0x.... BL osDelay
|
||||||
\ 0x10 0xE7F8 B.N ??SensorTask_0
|
\ 0x10 0xE7F8 B.N ??SensorTask_0
|
||||||
192 }
|
196 }
|
||||||
193 /* USER CODE END StartDefaultTask */
|
197 /* USER CODE END StartDefaultTask */
|
||||||
194 }
|
198 }
|
||||||
195 /* USER CODE END Application */
|
199 /* USER CODE END Application */
|
||||||
196
|
200
|
||||||
|
|
||||||
\ In section .text, align 2, keep-with-next
|
\ In section .text, align 2, keep-with-next
|
||||||
197 void LEDTask(void const * argument)
|
201 void LEDTask(void const * argument)
|
||||||
198 {
|
202 {
|
||||||
\ LEDTask: (+1)
|
\ LEDTask: (+1)
|
||||||
\ 0x0 0xB580 PUSH {R7,LR}
|
\ 0x0 0xB580 PUSH {R7,LR}
|
||||||
199 /* USER CODE BEGIN StartDefaultTask */
|
203 /* USER CODE BEGIN StartDefaultTask */
|
||||||
200 /* Infinite loop */
|
204 /* Infinite loop */
|
||||||
201 for(;;)
|
205 for(;;)
|
||||||
202 {
|
206 {
|
||||||
203 osDelay(1000);
|
207 osDelay(1000);
|
||||||
\ ??LEDTask_0: (+1)
|
\ ??LEDTask_0: (+1)
|
||||||
\ 0x2 0xF44F 0x707A MOV R0,#+1000
|
\ 0x2 0xF44F 0x707A MOV R0,#+1000
|
||||||
\ 0x6 0x.... 0x.... BL osDelay
|
\ 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
|
\ 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
|
\ 0x10 0x.... 0x.... BL HAL_GPIO_TogglePin
|
||||||
\ 0x14 0xE7F5 B.N ??LEDTask_0
|
\ 0x14 0xE7F5 B.N ??LEDTask_0
|
||||||
205
|
209
|
||||||
206 }
|
210 }
|
||||||
207 /* USER CODE END StartDefaultTask */
|
211 /* USER CODE END StartDefaultTask */
|
||||||
208 }
|
212 }
|
||||||
209 /* USER CODE END Application */
|
213 /* USER CODE END Application */
|
||||||
210
|
214
|
||||||
|
|
||||||
\ In section .text, align 2, keep-with-next
|
\ In section .text, align 2, keep-with-next
|
||||||
211 void Trans_4g_Task(void const * argument)
|
215 void Trans_4g_Task(void const * argument)
|
||||||
212 {
|
216 {
|
||||||
\ Trans_4g_Task: (+1)
|
\ Trans_4g_Task: (+1)
|
||||||
\ 0x0 0xB510 PUSH {R4,LR}
|
\ 0x0 0xB510 PUSH {R4,LR}
|
||||||
213 /* USER CODE BEGIN StartDefaultTask */
|
217 /* USER CODE BEGIN StartDefaultTask */
|
||||||
214 EC801E_Power_ON();
|
218 EC801E_Power_ON();
|
||||||
\ 0x2 0x.... 0x.... BL EC801E_Power_ON
|
\ 0x2 0x.... 0x.... BL EC801E_Power_ON
|
||||||
215 osDelay(5000);
|
219 osDelay(5000);
|
||||||
\ 0x6 0xF241 0x3088 MOVW R0,#+5000
|
\ 0x6 0xF241 0x3088 MOVW R0,#+5000
|
||||||
\ 0xA 0x.... 0x.... BL osDelay
|
\ 0xA 0x.... 0x.... BL osDelay
|
||||||
216 EC801_GET_Time();
|
220 while(!EC801_GET_Time());
|
||||||
\ 0xE 0x.... 0x.... BL EC801_GET_Time
|
|
||||||
217 MQTT_Config();
|
|
||||||
\ 0x12 0x.... 0x.... BL MQTT_Config
|
|
||||||
218 MQTT_Trans_Data();
|
|
||||||
\ ??Trans_4g_Task_0: (+1)
|
\ ??Trans_4g_Task_0: (+1)
|
||||||
\ 0x16 0x.... 0x.... BL MQTT_Trans_Data
|
\ 0xE 0x.... 0x.... BL EC801_GET_Time
|
||||||
219 int temp_1s = 0;
|
\ 0x12 0x2800 CMP R0,#+0
|
||||||
\ 0x1A 0x2400 MOVS R4,#+0
|
\ 0x14 0xD0FB BEQ.N ??Trans_4g_Task_0
|
||||||
220 /* Infinite loop */
|
221 MQTT_Config();
|
||||||
221 for(;;)
|
\ 0x16 0x.... 0x.... BL MQTT_Config
|
||||||
222 {
|
222 MQTT_Trans_Data();
|
||||||
223 osDelay(1000);
|
|
||||||
\ ??Trans_4g_Task_1: (+1)
|
\ ??Trans_4g_Task_1: (+1)
|
||||||
\ 0x1C 0xF44F 0x707A MOV R0,#+1000
|
\ 0x1A 0x.... 0x.... BL MQTT_Trans_Data
|
||||||
\ 0x20 0x.... 0x.... BL osDelay
|
223 int temp_1s = 0;
|
||||||
224 temp_1s++;
|
\ 0x1E 0x2400 MOVS R4,#+0
|
||||||
\ 0x24 0x1C64 ADDS R4,R4,#+1
|
224 /* Infinite loop */
|
||||||
225 if(temp_1s >= 600)
|
225 for(;;)
|
||||||
\ 0x26 0xF5B4 0x7F16 CMP R4,#+600
|
|
||||||
\ 0x2A 0xDBF7 BLT.N ??Trans_4g_Task_1
|
|
||||||
226 {
|
226 {
|
||||||
227 temp_1s = 0;
|
227 osDelay(1000);
|
||||||
228 MQTT_Trans_Data();
|
\ ??Trans_4g_Task_2: (+1)
|
||||||
\ 0x2C 0xE7F3 B.N ??Trans_4g_Task_0
|
\ 0x20 0xF44F 0x707A MOV R0,#+1000
|
||||||
229 }
|
\ 0x24 0x.... 0x.... BL osDelay
|
||||||
230
|
228 temp_1s++;
|
||||||
231 }
|
\ 0x28 0x1C64 ADDS R4,R4,#+1
|
||||||
232 /* USER CODE END StartDefaultTask */
|
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 }
|
233 }
|
||||||
|
234
|
||||||
|
235 }
|
||||||
|
236 /* USER CODE END StartDefaultTask */
|
||||||
|
237 }
|
||||||
|
|
||||||
\ In section .text, align 4, keep-with-next
|
\ In section .text, align 4, keep-with-next
|
||||||
\ ??DataTable9:
|
\ ??DataTable9:
|
||||||
|
@ -474,14 +486,18 @@ E:\Y\IAR\micro_climate\Core\Src\freertos.c
|
||||||
|
|
||||||
\ In section .text, align 4, keep-with-next
|
\ In section .text, align 4, keep-with-next
|
||||||
\ ??DataTable9_2:
|
\ ??DataTable9_2:
|
||||||
\ 0x0 0x....'.... DC32 g_term_uart_handle
|
\ 0x0 0x....'.... DC32 time_get_ok
|
||||||
|
|
||||||
\ In section .text, align 4, keep-with-next
|
\ In section .text, align 4, keep-with-next
|
||||||
\ ??DataTable9_3:
|
\ ??DataTable9_3:
|
||||||
\ 0x0 0x....'.... DC32 g_rs485_uart_handle
|
\ 0x0 0x....'.... DC32 g_term_uart_handle
|
||||||
|
|
||||||
\ In section .text, align 4, keep-with-next
|
\ In section .text, align 4, keep-with-next
|
||||||
\ ??DataTable9_4:
|
\ ??DataTable9_4:
|
||||||
|
\ 0x0 0x....'.... DC32 g_rs485_uart_handle
|
||||||
|
|
||||||
|
\ In section .text, align 4, keep-with-next
|
||||||
|
\ ??DataTable9_5:
|
||||||
\ 0x0 0x4800'0800 DC32 0x48000800
|
\ 0x0 0x4800'0800 DC32 0x48000800
|
||||||
|
|
||||||
\ In section .rodata, align 4
|
\ In section .rodata, align 4
|
||||||
|
@ -534,7 +550,7 @@ E:\Y\IAR\micro_climate\Core\Src\freertos.c
|
||||||
\ 0x61 0x73
|
\ 0x61 0x73
|
||||||
\ 0x6B 0x00
|
\ 0x6B 0x00
|
||||||
\ 0xE DS8 2
|
\ 0xE DS8 2
|
||||||
234 /* USER CODE END Application */
|
238 /* USER CODE END Application */
|
||||||
|
|
||||||
Maximum stack usage in bytes:
|
Maximum stack usage in bytes:
|
||||||
|
|
||||||
|
@ -550,6 +566,7 @@ E:\Y\IAR\micro_climate\Core\Src\freertos.c
|
||||||
8 -> read_and_process_uart_data
|
8 -> read_and_process_uart_data
|
||||||
16 StartDefaultTask
|
16 StartDefaultTask
|
||||||
16 -> osDelay
|
16 -> osDelay
|
||||||
|
16 -> parse_4g_receive_data
|
||||||
16 -> read_and_process_uart_data
|
16 -> read_and_process_uart_data
|
||||||
8 Trans_4g_Task
|
8 Trans_4g_Task
|
||||||
8 -> EC801E_Power_ON
|
8 -> EC801E_Power_ON
|
||||||
|
@ -569,6 +586,7 @@ E:\Y\IAR\micro_climate\Core\Src\freertos.c
|
||||||
4 ??DataTable9_2
|
4 ??DataTable9_2
|
||||||
4 ??DataTable9_3
|
4 ??DataTable9_3
|
||||||
4 ??DataTable9_4
|
4 ??DataTable9_4
|
||||||
|
4 ??DataTable9_5
|
||||||
12 ?_0
|
12 ?_0
|
||||||
8 ?_1
|
8 ?_1
|
||||||
12 ?_2
|
12 ?_2
|
||||||
|
@ -577,8 +595,8 @@ E:\Y\IAR\micro_climate\Core\Src\freertos.c
|
||||||
22 LEDTask
|
22 LEDTask
|
||||||
62 MX_FREERTOS_Init
|
62 MX_FREERTOS_Init
|
||||||
18 SensorTask
|
18 SensorTask
|
||||||
26 StartDefaultTask
|
36 StartDefaultTask
|
||||||
46 Trans_4g_Task
|
50 Trans_4g_Task
|
||||||
20 anemometerHandle
|
20 anemometerHandle
|
||||||
Trans_4g_taskHandle
|
Trans_4g_taskHandle
|
||||||
ledTaskHandle
|
ledTaskHandle
|
||||||
|
@ -598,9 +616,9 @@ E:\Y\IAR\micro_climate\Core\Src\freertos.c
|
||||||
|
|
||||||
624 bytes in section .bss
|
624 bytes in section .bss
|
||||||
68 bytes in section .rodata
|
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
|
68 bytes of CONST memory
|
||||||
624 bytes of DATA 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 15:07:19
|
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 16:24:22
|
||||||
// Copyright 1999-2023 IAR Systems AB.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// Cpu mode = thumb
|
||||||
|
@ -70,8 +70,10 @@
|
||||||
EXTERN g_term_uart_handle
|
EXTERN g_term_uart_handle
|
||||||
EXTERN osDelay
|
EXTERN osDelay
|
||||||
EXTERN osThreadCreate
|
EXTERN osThreadCreate
|
||||||
|
EXTERN parse_4g_receive_data
|
||||||
EXTERN read_and_process_uart_data
|
EXTERN read_and_process_uart_data
|
||||||
EXTERN tem_hum_update_task
|
EXTERN tem_hum_update_task
|
||||||
|
EXTERN time_get_ok
|
||||||
EXTERN wind_task
|
EXTERN wind_task
|
||||||
|
|
||||||
PUBLIC LEDTask
|
PUBLIC LEDTask
|
||||||
|
@ -378,13 +380,15 @@ MX_FREERTOS_Init:
|
||||||
// 154 void StartDefaultTask(void const * argument)
|
// 154 void StartDefaultTask(void const * argument)
|
||||||
// 155 {
|
// 155 {
|
||||||
StartDefaultTask:
|
StartDefaultTask:
|
||||||
PUSH {R3-R5,LR}
|
PUSH {R4-R6,LR}
|
||||||
CFI R14 Frame(CFA, -4)
|
CFI R14 Frame(CFA, -4)
|
||||||
CFI R5 Frame(CFA, -8)
|
CFI R6 Frame(CFA, -8)
|
||||||
CFI R4 Frame(CFA, -12)
|
CFI R5 Frame(CFA, -12)
|
||||||
|
CFI R4 Frame(CFA, -16)
|
||||||
CFI CFA R13+16
|
CFI CFA R13+16
|
||||||
LDR.N R4,??DataTable9_2
|
LDR.N R4,??DataTable9_2
|
||||||
LDR.N R5,??DataTable9_3
|
LDR.N R5,??DataTable9_3
|
||||||
|
LDR.N R6,??DataTable9_4
|
||||||
// 156 /* USER CODE BEGIN StartDefaultTask */
|
// 156 /* USER CODE BEGIN StartDefaultTask */
|
||||||
// 157
|
// 157
|
||||||
// 158 /* Infinite loop */
|
// 158 /* Infinite loop */
|
||||||
|
@ -392,102 +396,111 @@ StartDefaultTask:
|
||||||
// 160 {
|
// 160 {
|
||||||
// 161 read_and_process_uart_data(g_rs485_uart_handle);
|
// 161 read_and_process_uart_data(g_rs485_uart_handle);
|
||||||
??StartDefaultTask_0:
|
??StartDefaultTask_0:
|
||||||
LDR R0,[R5, #+0]
|
LDR R0,[R6, #+0]
|
||||||
CFI FunCall read_and_process_uart_data
|
CFI FunCall read_and_process_uart_data
|
||||||
BL read_and_process_uart_data
|
BL read_and_process_uart_data
|
||||||
// 162 read_and_process_uart_data(g_term_uart_handle);
|
// 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
|
CFI FunCall read_and_process_uart_data
|
||||||
BL 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
|
MOVS R0,#+100
|
||||||
CFI FunCall osDelay
|
CFI FunCall osDelay
|
||||||
BL osDelay
|
BL osDelay
|
||||||
B.N ??StartDefaultTask_0
|
B.N ??StartDefaultTask_0
|
||||||
// 164
|
|
||||||
// 165 }
|
|
||||||
// 166 /* USER CODE END StartDefaultTask */
|
|
||||||
// 167 }
|
|
||||||
CFI EndBlock cfiBlock2
|
|
||||||
// 168
|
// 168
|
||||||
// 169 /* Private application code --------------------------------------------------*/
|
// 169 }
|
||||||
// 170 /* USER CODE BEGIN Application */
|
// 170 /* USER CODE END StartDefaultTask */
|
||||||
// 171 #if 0
|
// 171 }
|
||||||
// 172 void task_shell_term_main_loop(void const * argument)
|
CFI EndBlock cfiBlock2
|
||||||
// 173 {
|
// 172
|
||||||
// 174 shell_init();
|
// 173 /* Private application code --------------------------------------------------*/
|
||||||
// 175 for(;;)
|
// 174 /* USER CODE BEGIN Application */
|
||||||
// 176 {
|
// 175 #if 0
|
||||||
// 177 shell_main_loop("climate:~$ ");
|
// 176 void task_shell_term_main_loop(void const * argument)
|
||||||
// 178 osDelay(500);
|
// 177 {
|
||||||
// 179 }
|
// 178 shell_init();
|
||||||
// 180 }
|
// 179 for(;;)
|
||||||
// 181 #endif
|
// 180 {
|
||||||
// 182
|
// 181 shell_main_loop("climate:~$ ");
|
||||||
// 183
|
// 182 osDelay(500);
|
||||||
|
// 183 }
|
||||||
|
// 184 }
|
||||||
|
// 185 #endif
|
||||||
|
// 186
|
||||||
|
// 187
|
||||||
|
|
||||||
SECTION `.text`:CODE:NOROOT(1)
|
SECTION `.text`:CODE:NOROOT(1)
|
||||||
CFI Block cfiBlock3 Using cfiCommon0
|
CFI Block cfiBlock3 Using cfiCommon0
|
||||||
CFI Function SensorTask
|
CFI Function SensorTask
|
||||||
THUMB
|
THUMB
|
||||||
// 184 void SensorTask(void const * argument)
|
// 188 void SensorTask(void const * argument)
|
||||||
// 185 {
|
// 189 {
|
||||||
SensorTask:
|
SensorTask:
|
||||||
PUSH {R4,LR}
|
PUSH {R4,LR}
|
||||||
CFI R14 Frame(CFA, -4)
|
CFI R14 Frame(CFA, -4)
|
||||||
CFI R4 Frame(CFA, -8)
|
CFI R4 Frame(CFA, -8)
|
||||||
CFI CFA R13+8
|
CFI CFA R13+8
|
||||||
LDR.N R4,??DataTable9_2
|
LDR.N R4,??DataTable9_3
|
||||||
// 186 /* USER CODE BEGIN StartDefaultTask */
|
// 190 /* USER CODE BEGIN StartDefaultTask */
|
||||||
// 187 /* Infinite loop */
|
// 191 /* Infinite loop */
|
||||||
// 188 for(;;)
|
// 192 for(;;)
|
||||||
// 189 {
|
// 193 {
|
||||||
// 190 read_and_process_uart_data(g_term_uart_handle);
|
// 194 read_and_process_uart_data(g_term_uart_handle);
|
||||||
??SensorTask_0:
|
??SensorTask_0:
|
||||||
LDR R0,[R4, #+0]
|
LDR R0,[R4, #+0]
|
||||||
CFI FunCall read_and_process_uart_data
|
CFI FunCall read_and_process_uart_data
|
||||||
BL read_and_process_uart_data
|
BL read_and_process_uart_data
|
||||||
// 191 osDelay(100);
|
// 195 osDelay(100);
|
||||||
MOVS R0,#+100
|
MOVS R0,#+100
|
||||||
CFI FunCall osDelay
|
CFI FunCall osDelay
|
||||||
BL osDelay
|
BL osDelay
|
||||||
B.N ??SensorTask_0
|
B.N ??SensorTask_0
|
||||||
// 192 }
|
// 196 }
|
||||||
// 193 /* USER CODE END StartDefaultTask */
|
// 197 /* USER CODE END StartDefaultTask */
|
||||||
// 194 }
|
// 198 }
|
||||||
CFI EndBlock cfiBlock3
|
CFI EndBlock cfiBlock3
|
||||||
// 195 /* USER CODE END Application */
|
// 199 /* USER CODE END Application */
|
||||||
// 196
|
// 200
|
||||||
|
|
||||||
SECTION `.text`:CODE:NOROOT(1)
|
SECTION `.text`:CODE:NOROOT(1)
|
||||||
CFI Block cfiBlock4 Using cfiCommon0
|
CFI Block cfiBlock4 Using cfiCommon0
|
||||||
CFI Function LEDTask
|
CFI Function LEDTask
|
||||||
THUMB
|
THUMB
|
||||||
// 197 void LEDTask(void const * argument)
|
// 201 void LEDTask(void const * argument)
|
||||||
// 198 {
|
// 202 {
|
||||||
LEDTask:
|
LEDTask:
|
||||||
PUSH {R7,LR}
|
PUSH {R7,LR}
|
||||||
CFI R14 Frame(CFA, -4)
|
CFI R14 Frame(CFA, -4)
|
||||||
CFI CFA R13+8
|
CFI CFA R13+8
|
||||||
// 199 /* USER CODE BEGIN StartDefaultTask */
|
// 203 /* USER CODE BEGIN StartDefaultTask */
|
||||||
// 200 /* Infinite loop */
|
// 204 /* Infinite loop */
|
||||||
// 201 for(;;)
|
// 205 for(;;)
|
||||||
// 202 {
|
// 206 {
|
||||||
// 203 osDelay(1000);
|
// 207 osDelay(1000);
|
||||||
??LEDTask_0:
|
??LEDTask_0:
|
||||||
MOV R0,#+1000
|
MOV R0,#+1000
|
||||||
CFI FunCall osDelay
|
CFI FunCall osDelay
|
||||||
BL osDelay
|
BL osDelay
|
||||||
// 204 HAL_GPIO_TogglePin(GPIOC,GPIO_LED_CTRL_Pin);
|
// 208 HAL_GPIO_TogglePin(GPIOC,GPIO_LED_CTRL_Pin);
|
||||||
MOV R1,#+512
|
MOV R1,#+512
|
||||||
LDR.N R0,??DataTable9_4
|
LDR.N R0,??DataTable9_5
|
||||||
CFI FunCall HAL_GPIO_TogglePin
|
CFI FunCall HAL_GPIO_TogglePin
|
||||||
BL HAL_GPIO_TogglePin
|
BL HAL_GPIO_TogglePin
|
||||||
B.N ??LEDTask_0
|
B.N ??LEDTask_0
|
||||||
// 205
|
// 209
|
||||||
// 206 }
|
// 210 }
|
||||||
// 207 /* USER CODE END StartDefaultTask */
|
// 211 /* USER CODE END StartDefaultTask */
|
||||||
// 208 }
|
// 212 }
|
||||||
CFI EndBlock cfiBlock4
|
CFI EndBlock cfiBlock4
|
||||||
|
|
||||||
SECTION `.text`:CODE:NOROOT(2)
|
SECTION `.text`:CODE:NOROOT(2)
|
||||||
|
@ -509,77 +522,87 @@ LEDTask:
|
||||||
DATA
|
DATA
|
||||||
??DataTable9_2:
|
??DataTable9_2:
|
||||||
DATA32
|
DATA32
|
||||||
DC32 g_term_uart_handle
|
DC32 time_get_ok
|
||||||
|
|
||||||
SECTION `.text`:CODE:NOROOT(2)
|
SECTION `.text`:CODE:NOROOT(2)
|
||||||
SECTION_TYPE SHT_PROGBITS, 0
|
SECTION_TYPE SHT_PROGBITS, 0
|
||||||
DATA
|
DATA
|
||||||
??DataTable9_3:
|
??DataTable9_3:
|
||||||
DATA32
|
DATA32
|
||||||
DC32 g_rs485_uart_handle
|
DC32 g_term_uart_handle
|
||||||
|
|
||||||
SECTION `.text`:CODE:NOROOT(2)
|
SECTION `.text`:CODE:NOROOT(2)
|
||||||
SECTION_TYPE SHT_PROGBITS, 0
|
SECTION_TYPE SHT_PROGBITS, 0
|
||||||
DATA
|
DATA
|
||||||
??DataTable9_4:
|
??DataTable9_4:
|
||||||
|
DATA32
|
||||||
|
DC32 g_rs485_uart_handle
|
||||||
|
|
||||||
|
SECTION `.text`:CODE:NOROOT(2)
|
||||||
|
SECTION_TYPE SHT_PROGBITS, 0
|
||||||
|
DATA
|
||||||
|
??DataTable9_5:
|
||||||
DATA32
|
DATA32
|
||||||
DC32 0x48000800
|
DC32 0x48000800
|
||||||
// 209 /* USER CODE END Application */
|
// 213 /* USER CODE END Application */
|
||||||
// 210
|
// 214
|
||||||
|
|
||||||
SECTION `.text`:CODE:NOROOT(1)
|
SECTION `.text`:CODE:NOROOT(1)
|
||||||
CFI Block cfiBlock5 Using cfiCommon0
|
CFI Block cfiBlock5 Using cfiCommon0
|
||||||
CFI Function Trans_4g_Task
|
CFI Function Trans_4g_Task
|
||||||
THUMB
|
THUMB
|
||||||
// 211 void Trans_4g_Task(void const * argument)
|
// 215 void Trans_4g_Task(void const * argument)
|
||||||
// 212 {
|
// 216 {
|
||||||
Trans_4g_Task:
|
Trans_4g_Task:
|
||||||
PUSH {R4,LR}
|
PUSH {R4,LR}
|
||||||
CFI R14 Frame(CFA, -4)
|
CFI R14 Frame(CFA, -4)
|
||||||
CFI R4 Frame(CFA, -8)
|
CFI R4 Frame(CFA, -8)
|
||||||
CFI CFA R13+8
|
CFI CFA R13+8
|
||||||
// 213 /* USER CODE BEGIN StartDefaultTask */
|
// 217 /* USER CODE BEGIN StartDefaultTask */
|
||||||
// 214 EC801E_Power_ON();
|
// 218 EC801E_Power_ON();
|
||||||
CFI FunCall EC801E_Power_ON
|
CFI FunCall EC801E_Power_ON
|
||||||
BL EC801E_Power_ON
|
BL EC801E_Power_ON
|
||||||
// 215 osDelay(5000);
|
// 219 osDelay(5000);
|
||||||
MOVW R0,#+5000
|
MOVW R0,#+5000
|
||||||
CFI FunCall osDelay
|
CFI FunCall osDelay
|
||||||
BL osDelay
|
BL osDelay
|
||||||
// 216 EC801_GET_Time();
|
// 220 while(!EC801_GET_Time());
|
||||||
|
??Trans_4g_Task_0:
|
||||||
CFI FunCall EC801_GET_Time
|
CFI FunCall EC801_GET_Time
|
||||||
BL 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
|
CFI FunCall MQTT_Config
|
||||||
BL MQTT_Config
|
BL MQTT_Config
|
||||||
// 218 MQTT_Trans_Data();
|
// 222 MQTT_Trans_Data();
|
||||||
??Trans_4g_Task_0:
|
??Trans_4g_Task_1:
|
||||||
CFI FunCall MQTT_Trans_Data
|
CFI FunCall MQTT_Trans_Data
|
||||||
BL MQTT_Trans_Data
|
BL MQTT_Trans_Data
|
||||||
// 219 int temp_1s = 0;
|
// 223 int temp_1s = 0;
|
||||||
MOVS R4,#+0
|
MOVS R4,#+0
|
||||||
// 220 /* Infinite loop */
|
// 224 /* Infinite loop */
|
||||||
// 221 for(;;)
|
// 225 for(;;)
|
||||||
// 222 {
|
// 226 {
|
||||||
// 223 osDelay(1000);
|
// 227 osDelay(1000);
|
||||||
??Trans_4g_Task_1:
|
??Trans_4g_Task_2:
|
||||||
MOV R0,#+1000
|
MOV R0,#+1000
|
||||||
CFI FunCall osDelay
|
CFI FunCall osDelay
|
||||||
BL osDelay
|
BL osDelay
|
||||||
// 224 temp_1s++;
|
// 228 temp_1s++;
|
||||||
ADDS R4,R4,#+1
|
ADDS R4,R4,#+1
|
||||||
// 225 if(temp_1s >= 600)
|
// 229 if(temp_1s >= 600)
|
||||||
CMP R4,#+600
|
CMP R4,#+600
|
||||||
BLT.N ??Trans_4g_Task_1
|
BLT.N ??Trans_4g_Task_2
|
||||||
// 226 {
|
// 230 {
|
||||||
// 227 temp_1s = 0;
|
// 231 temp_1s = 0;
|
||||||
// 228 MQTT_Trans_Data();
|
// 232 MQTT_Trans_Data();
|
||||||
B.N ??Trans_4g_Task_0
|
B.N ??Trans_4g_Task_1
|
||||||
// 229 }
|
|
||||||
// 230
|
|
||||||
// 231 }
|
|
||||||
// 232 /* USER CODE END StartDefaultTask */
|
|
||||||
// 233 }
|
// 233 }
|
||||||
|
// 234
|
||||||
|
// 235 }
|
||||||
|
// 236 /* USER CODE END StartDefaultTask */
|
||||||
|
// 237 }
|
||||||
CFI EndBlock cfiBlock5
|
CFI EndBlock cfiBlock5
|
||||||
|
|
||||||
SECTION `.text`:CODE:NOROOT(2)
|
SECTION `.text`:CODE:NOROOT(2)
|
||||||
|
@ -682,13 +705,13 @@ Trans_4g_Task:
|
||||||
DS8 2
|
DS8 2
|
||||||
|
|
||||||
END
|
END
|
||||||
// 234 /* USER CODE END Application */
|
// 238 /* USER CODE END Application */
|
||||||
//
|
//
|
||||||
// 624 bytes in section .bss
|
// 624 bytes in section .bss
|
||||||
// 68 bytes in section .rodata
|
// 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
|
// 68 bytes of CONST memory
|
||||||
// 624 bytes of DATA 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// Cpu mode = thumb
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#
|
#
|
||||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 10/Aug/2024 16:53:06
|
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 16:24:22
|
||||||
# Copyright 1999-2023 IAR Systems AB.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# Cpu mode = thumb
|
||||||
|
@ -481,19 +481,19 @@ E:\Y\IAR\micro_climate\Core\Src\main.c
|
||||||
|
|
||||||
\ In section .text, align 4, keep-with-next
|
\ In section .text, align 4, keep-with-next
|
||||||
\ ?_2:
|
\ ?_2:
|
||||||
\ 0x0 0x41 0x75 DC8 "Aug 10 2024"
|
\ 0x0 0x41 0x75 DC8 "Aug 15 2024"
|
||||||
\ 0x67 0x20
|
\ 0x67 0x20
|
||||||
\ 0x31 0x30
|
\ 0x31 0x35
|
||||||
\ 0x20 0x32
|
\ 0x20 0x32
|
||||||
\ 0x30 0x32
|
\ 0x30 0x32
|
||||||
\ 0x34 0x00
|
\ 0x34 0x00
|
||||||
|
|
||||||
\ In section .text, align 4, keep-with-next
|
\ In section .text, align 4, keep-with-next
|
||||||
\ ?_3:
|
\ ?_3:
|
||||||
\ 0x0 0x31 0x36 DC8 "16:53:06"
|
\ 0x0 0x31 0x36 DC8 "16:24:22"
|
||||||
\ 0x3A 0x35
|
\ 0x3A 0x32
|
||||||
\ 0x33 0x3A
|
\ 0x34 0x3A
|
||||||
\ 0x30 0x36
|
\ 0x32 0x32
|
||||||
\ 0x00
|
\ 0x00
|
||||||
\ 0x9 DS8 3
|
\ 0x9 DS8 3
|
||||||
253
|
253
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 10/Aug/2024 16:53:06
|
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 16:24:22
|
||||||
// Copyright 1999-2023 IAR Systems AB.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// Cpu mode = thumb
|
||||||
|
@ -619,14 +619,14 @@ Error_Handler:
|
||||||
DATA
|
DATA
|
||||||
?_2:
|
?_2:
|
||||||
DATA8
|
DATA8
|
||||||
DC8 "Aug 10 2024"
|
DC8 "Aug 15 2024"
|
||||||
|
|
||||||
SECTION `.text`:CODE:NOROOT(2)
|
SECTION `.text`:CODE:NOROOT(2)
|
||||||
SECTION_TYPE SHT_PROGBITS, 0
|
SECTION_TYPE SHT_PROGBITS, 0
|
||||||
DATA
|
DATA
|
||||||
?_3:
|
?_3:
|
||||||
DATA8
|
DATA8
|
||||||
DC8 "16:53:06"
|
DC8 "16:24:22"
|
||||||
DATA
|
DATA
|
||||||
DS8 3
|
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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// Cpu mode = thumb
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
###############################################################################
|
###############################################################################
|
||||||
#
|
#
|
||||||
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 10/Aug/2024 16:53:06
|
# IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 16:32:15
|
||||||
# Copyright 1999-2023 IAR Systems AB.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# Cpu mode = thumb
|
||||||
|
@ -71,11 +71,7 @@ E:\Y\IAR\micro_climate\Drivers\EC801E\EC801E.c
|
||||||
8
|
8
|
||||||
9 #define USE_UTC 1
|
9 #define USE_UTC 1
|
||||||
10
|
10
|
||||||
|
|
||||||
\ In section .bss, align 4
|
|
||||||
11 uint32_t g_time_stamp;
|
11 uint32_t g_time_stamp;
|
||||||
\ g_time_stamp:
|
|
||||||
\ 0x0 DS8 4
|
|
||||||
12
|
12
|
||||||
13 //控制上电并开机
|
13 //控制上电并开机
|
||||||
|
|
||||||
|
@ -110,16 +106,16 @@ E:\Y\IAR\micro_climate\Drivers\EC801E\EC801E.c
|
||||||
26 uint8_t temp_status = HAL_ERROR;
|
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;
|
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
|
\ 0x2 0xF44F 0x7100 MOV R1,#+512
|
||||||
\ 0x6 0x.... LDR.N R0,??DataTable23_9
|
\ 0x6 0x.... 0x.... LDR.W R0,??DataTable23_9
|
||||||
\ 0x8 0x.... 0x.... BL HAL_GPIO_ReadPin
|
\ 0xA 0x.... 0x.... BL HAL_GPIO_ReadPin
|
||||||
\ 0xC 0x2801 CMP R0,#+1
|
\ 0xE 0x2801 CMP R0,#+1
|
||||||
\ 0xE 0xD101 BNE.N ??Read_Status_0
|
\ 0x10 0xD101 BNE.N ??Read_Status_0
|
||||||
\ 0x10 0x2000 MOVS R0,#+0
|
\ 0x12 0x2000 MOVS R0,#+0
|
||||||
\ 0x12 0xBD02 POP {R1,PC}
|
\ 0x14 0xBD02 POP {R1,PC}
|
||||||
\ ??Read_Status_0: (+1)
|
\ ??Read_Status_0: (+1)
|
||||||
\ 0x14 0x2001 MOVS R0,#+1
|
\ 0x16 0x2001 MOVS R0,#+1
|
||||||
28 return temp_status;
|
28 return temp_status;
|
||||||
\ 0x16 0xBD02 POP {R1,PC}
|
\ 0x18 0xBD02 POP {R1,PC}
|
||||||
29 }
|
29 }
|
||||||
30
|
30
|
||||||
31 //串口重定向打印
|
31 //串口重定向打印
|
||||||
|
@ -165,44 +161,44 @@ E:\Y\IAR\micro_climate\Drivers\EC801E\EC801E.c
|
||||||
\ 0xA 0x.... 0x.... BL osDelay
|
\ 0xA 0x.... 0x.... BL osDelay
|
||||||
49 uart_sendstr(g_ec801_uart_handle, "AT+QMTCFG=\"session\",0,0\r\n");
|
49 uart_sendstr(g_ec801_uart_handle, "AT+QMTCFG=\"session\",0,0\r\n");
|
||||||
\ 0xE 0x6828 LDR R0,[R5, #+0]
|
\ 0xE 0x6828 LDR R0,[R5, #+0]
|
||||||
\ 0x10 0x.... ADR.N R1,?_1
|
\ 0x10 0x.... 0x.... ADR.W R1,?_1
|
||||||
\ 0x12 0x.... 0x.... BL uart_sendstr
|
\ 0x14 0x.... 0x.... BL uart_sendstr
|
||||||
50 osDelay(5000);
|
50 osDelay(5000);
|
||||||
\ 0x16 0x4620 MOV R0,R4
|
\ 0x18 0x4620 MOV R0,R4
|
||||||
\ 0x18 0x.... 0x.... BL osDelay
|
\ 0x1A 0x.... 0x.... BL osDelay
|
||||||
51 // 打开客户端网络
|
51 // 打开客户端网络
|
||||||
52 uart_sendstr(g_ec801_uart_handle, "AT+QMTOPEN=0,199.7.140.10,1883\r\n");
|
52 uart_sendstr(g_ec801_uart_handle, "AT+QMTOPEN=0,199.7.140.10,1883\r\n");
|
||||||
\ 0x1C 0x6828 LDR R0,[R5, #+0]
|
\ 0x1E 0x6828 LDR R0,[R5, #+0]
|
||||||
\ 0x1E 0x.... LDR.N R1,??DataTable23_11
|
\ 0x20 0x.... LDR.N R1,??DataTable23_11
|
||||||
\ 0x20 0x.... 0x.... BL uart_sendstr
|
\ 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);
|
53 // HAL_UART_Transmit(&huart5, (uint8_t *)"AT+QMTOPEN=0,199.7.140.10,1883\r\n", 30, 0xFFFF);
|
||||||
54 // 确保打开网络完成
|
54 // 确保打开网络完成
|
||||||
55 osDelay(5000);
|
55 osDelay(5000);
|
||||||
\ 0x24 0x4620 MOV R0,R4
|
\ 0x26 0x4620 MOV R0,R4
|
||||||
\ 0x26 0x.... 0x.... BL osDelay
|
\ 0x28 0x.... 0x.... BL osDelay
|
||||||
56 // 连接服务器
|
56 // 连接服务器
|
||||||
57 uart_sendstr(g_ec801_uart_handle, "AT+QMTCONN=0,Test_SUB\r\n");
|
57 uart_sendstr(g_ec801_uart_handle, "AT+QMTCONN=0,Test_SUB\r\n");
|
||||||
\ 0x2A 0x6828 LDR R0,[R5, #+0]
|
\ 0x2C 0xF8D5 0x0000 LDR.W R0,[R5, #+0]
|
||||||
\ 0x2C 0x.... ADR.N R1,?_2
|
\ 0x30 0x.... ADR.N R1,?_2
|
||||||
\ 0x2E 0x.... 0x.... BL uart_sendstr
|
\ 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);
|
58 // HAL_UART_Transmit(&huart5, (uint8_t *)"AT+QMTCONN=0,Test_SUB\r\n", sizeof("AT+QMTCONN=0,Test_SUB\r\n"), 0xFFFF);
|
||||||
59 // 确保服务器连接完毕
|
59 // 确保服务器连接完毕
|
||||||
60 osDelay(5000);
|
60 osDelay(5000);
|
||||||
\ 0x32 0x4620 MOV R0,R4
|
\ 0x36 0x4620 MOV R0,R4
|
||||||
\ 0x34 0x.... 0x.... BL osDelay
|
\ 0x38 0x.... 0x.... BL osDelay
|
||||||
61 // 订阅主题
|
61 // 订阅主题
|
||||||
62 uart_sendstr(g_ec801_uart_handle, "AT+QMTSUB=0,0,Test_Topic,0\r\n");
|
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 0x6828 LDR R0,[R5, #+0]
|
||||||
\ 0x3C 0x.... ADR.N R1,?_3
|
\ 0x3E 0x.... 0x.... ADR.W R1,?_3
|
||||||
\ 0x3E 0xE8BD 0x4034 POP {R2,R4,R5,LR}
|
\ 0x42 0xE8BD 0x4034 POP {R2,R4,R5,LR}
|
||||||
\ 0x42 0x.... 0x.... B.W uart_sendstr
|
\ 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);
|
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 }
|
64 }
|
||||||
65
|
65
|
||||||
66 // MQTT发送数据
|
66 // MQTT发送数据
|
||||||
|
|
||||||
\ In section .text, align 4, keep-with-next
|
\ In section .text, align 4, keep-with-next
|
||||||
67 void MQTT_Trans_Data()
|
67 void MQTT_Trans_Data( )
|
||||||
68 {
|
68 {
|
||||||
\ MQTT_Trans_Data: (+1)
|
\ MQTT_Trans_Data: (+1)
|
||||||
\ 0x0 0xB5F8 PUSH {R3-R7,LR}
|
\ 0x0 0xB5F8 PUSH {R3-R7,LR}
|
||||||
|
@ -225,17 +221,16 @@ E:\Y\IAR\micro_climate\Drivers\EC801E\EC801E.c
|
||||||
\ 0x10 0x.... 0x.... ADR.W R2,?_5
|
\ 0x10 0x.... 0x.... ADR.W R2,?_5
|
||||||
\ 0x14 0x.... ADR.N R1,?_4
|
\ 0x14 0x.... ADR.N R1,?_4
|
||||||
\ 0x16 0x.... LDR.N R6,??DataTable23_2
|
\ 0x16 0x.... LDR.N R6,??DataTable23_2
|
||||||
\ 0x18 0x4620 MOV R0,R4
|
\ 0x18 0xEA4F 0x0004 MOV.W R0,R4
|
||||||
\ 0x1A 0x.... 0x.... BL cJSON_AddStringToObject
|
\ 0x1C 0x.... 0x.... BL cJSON_AddStringToObject
|
||||||
80 cJSON_AddStringToObject(JsonRoot, "frameType", "item_type");
|
80 cJSON_AddStringToObject(JsonRoot, "frameType", "item_type");
|
||||||
\ 0x1E 0xBF00 Nop
|
|
||||||
\ 0x20 0x.... 0x.... ADR.W R2,?_7
|
\ 0x20 0x.... 0x.... ADR.W R2,?_7
|
||||||
\ 0x24 0x.... ADR.N R1,?_6
|
\ 0x24 0x.... ADR.N R1,?_6
|
||||||
\ 0x26 0x4620 MOV R0,R4
|
\ 0x26 0x4620 MOV R0,R4
|
||||||
\ 0x28 0x.... 0x.... BL cJSON_AddStringToObject
|
\ 0x28 0x.... 0x.... BL cJSON_AddStringToObject
|
||||||
81 cJSON_AddNumberToObject(JsonRoot, "timeStamp", g_time_stamp);
|
81 cJSON_AddNumberToObject(JsonRoot, "timeStamp", g_time_stamp);
|
||||||
\ 0x2C 0x.... LDR.N R2,??DataTable23_3
|
\ 0x2C 0x.... LDR.N R2,??DataTable23_3
|
||||||
\ 0x2E 0x6810 LDR R0,[R2, #+0]
|
\ 0x2E 0x6850 LDR R0,[R2, #+4]
|
||||||
\ 0x30 0x.... 0x.... BL __aeabi_ui2d
|
\ 0x30 0x.... 0x.... BL __aeabi_ui2d
|
||||||
\ 0x34 0xEC41 0x0B10 VMOV D0,R0,R1
|
\ 0x34 0xEC41 0x0B10 VMOV D0,R0,R1
|
||||||
\ 0x38 0x.... ADR.N R1,?_8
|
\ 0x38 0x.... ADR.N R1,?_8
|
||||||
|
@ -473,107 +468,137 @@ Warning[Pa205]: implicit conversion from float to double
|
||||||
\ 0x7C 0xE8BD 0x83F0 POP {R4-R9,PC}
|
\ 0x7C 0xE8BD 0x83F0 POP {R4-R9,PC}
|
||||||
157 }
|
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
|
\ In section .bss, align 4
|
||||||
\ 0x0 DS8 4
|
\ 0x0 DS8 4
|
||||||
|
|
||||||
\ In section .bss, align 4
|
\ In section .bss, align 4
|
||||||
\ 0x0 DS8 4
|
\ 0x0 DS8 4
|
||||||
158
|
162 // 生成时间戳
|
||||||
159
|
|
||||||
160 // 生成时间戳
|
|
||||||
|
|
||||||
\ In section .text, align 4, keep-with-next
|
\ In section .text, align 4, keep-with-next
|
||||||
161 void EC801_GET_Time()
|
163 int EC801_GET_Time()
|
||||||
162 {
|
164 {
|
||||||
\ EC801_GET_Time: (+1)
|
\ EC801_GET_Time: (+1)
|
||||||
\ 0x0 0xB578 PUSH {R3-R6,LR}
|
\ 0x0 0xB578 PUSH {R3-R6,LR}
|
||||||
163 int year, month, day, hour, minute, second;
|
165 int year, month, day, hour, minute, second;
|
||||||
164 if(USE_UTC)
|
166 if(USE_UTC)
|
||||||
165 {
|
167 {
|
||||||
166 uart_sendstr(g_ec801_uart_handle, "AT+QLTS=0\r\n");
|
168 uart_sendstr(g_ec801_uart_handle, "AT+QLTS=0\r\n");
|
||||||
\ 0x2 0x.... LDR.N R4,??DataTable23_1
|
\ 0x2 0x.... LDR.N R4,??DataTable23_1
|
||||||
\ 0x4 0x.... ADR.N R1,?_15
|
\ 0x4 0x.... ADR.N R1,?_15
|
||||||
\ 0x6 0x6820 LDR R0,[R4, #+0]
|
\ 0x6 0x6820 LDR R0,[R4, #+0]
|
||||||
\ 0x8 0xB0A3 SUB SP,SP,#+140
|
\ 0x8 0xB0A3 SUB SP,SP,#+140
|
||||||
\ 0xA 0x.... 0x.... BL uart_sendstr
|
\ 0xA 0x.... 0x.... BL uart_sendstr
|
||||||
167 }else
|
169 }else
|
||||||
168 {
|
170 {
|
||||||
169 uart_sendstr(g_ec801_uart_handle, "AT+QLTS=2\r\n");
|
171 uart_sendstr(g_ec801_uart_handle, "AT+QLTS=2\r\n");
|
||||||
170 }
|
172 }
|
||||||
171 osDelay(1000);
|
173 osDelay(1000);
|
||||||
\ 0xE 0xF44F 0x707A MOV R0,#+1000
|
\ 0xE 0xF44F 0x707A MOV R0,#+1000
|
||||||
\ 0x12 0x.... 0x.... BL osDelay
|
\ 0x12 0x.... 0x.... BL osDelay
|
||||||
\ 0x16 0x2164 MOVS R1,#+100
|
\ 0x16 0x2164 MOVS R1,#+100
|
||||||
\ 0x18 0xA80A ADD R0,SP,#+40
|
\ 0x18 0xA80A ADD R0,SP,#+40
|
||||||
\ 0x1A 0x.... 0x.... BL __aeabi_memclr4
|
\ 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
|
\ 0x1E 0x2600 MOVS R6,#+0
|
||||||
\ 0x20 0xAD0A ADD R5,SP,#+40
|
\ 0x20 0xAD0A ADD R5,SP,#+40
|
||||||
173
|
175
|
||||||
174 // 第一个“后是时间,前面不要
|
176 // 第一个“后是时间,前面不要
|
||||||
175 do{
|
177 do{
|
||||||
176 time[index] = uart_dev_in_char(g_ec801_uart_handle);
|
178 time[index] = uart_dev_in_char(g_ec801_uart_handle);
|
||||||
\ ??EC801_GET_Time_0: (+1)
|
\ ??EC801_GET_Time_0: (+1)
|
||||||
\ 0x22 0x6820 LDR R0,[R4, #+0]
|
\ 0x22 0x6820 LDR R0,[R4, #+0]
|
||||||
\ 0x24 0x.... 0x.... BL uart_dev_in_char
|
\ 0x24 0x.... 0x.... BL uart_dev_in_char
|
||||||
\ 0x28 0x.... 0x.... BL ?Subroutine0
|
\ 0x28 0x.... 0x.... BL ?Subroutine0
|
||||||
177 }while(time[index++] != '"');
|
179 }while(time[index++] != '"' && uart_dev_char_present(g_ec801_uart_handle));
|
||||||
\ ??CrossCallReturnLabel_0: (+1)
|
\ ??CrossCallReturnLabel_0: (+1)
|
||||||
\ 0x2C 0xD1F9 BNE.N ??EC801_GET_Time_0
|
\ 0x2C 0xD004 BEQ.N ??EC801_GET_Time_1
|
||||||
178 // 丢掉前面的
|
\ 0x2E 0x6820 LDR R0,[R4, #+0]
|
||||||
179 memcpy(time, time + index - 1, index);
|
\ 0x30 0x.... 0x.... BL uart_dev_char_present
|
||||||
\ 0x2E 0xA90A ADD R1,SP,#+40
|
\ 0x34 0x2800 CMP R0,#+0
|
||||||
\ 0x30 0x4431 ADD R1,R1,R6
|
\ 0x36 0xD1F4 BNE.N ??EC801_GET_Time_0
|
||||||
\ 0x32 0x4632 MOV R2,R6
|
180 // 丢掉前面的
|
||||||
\ 0x34 0x1E49 SUBS R1,R1,#+1
|
181 memcpy(time, time + index - 1, index);
|
||||||
\ 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);
|
|
||||||
\ ??EC801_GET_Time_1: (+1)
|
\ ??EC801_GET_Time_1: (+1)
|
||||||
\ 0x3E 0x6820 LDR R0,[R4, #+0]
|
\ 0x38 0xA80A ADD R0,SP,#+40
|
||||||
\ 0x40 0x.... 0x.... BL uart_dev_in_char
|
\ 0x3A 0x4430 ADD R0,R0,R6
|
||||||
\ 0x44 0x.... 0x.... BL ?Subroutine0
|
\ 0x3C 0x1E41 SUBS R1,R0,#+1
|
||||||
185 }while(time[index++] != '"');
|
\ 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)
|
\ ??CrossCallReturnLabel_1: (+1)
|
||||||
\ 0x48 0xD1F9 BNE.N ??EC801_GET_Time_1
|
\ 0x52 0xD004 BEQ.N ??EC801_GET_Time_3
|
||||||
186
|
\ 0x54 0x6820 LDR R0,[R4, #+0]
|
||||||
187 // 字符提取成int
|
\ 0x56 0x.... 0x.... BL uart_dev_char_present
|
||||||
188 int matched = sscanf(time, "\"%d/%d/%d,%d:%d:%d\"", &year, &month, &day, &hour, &minute, &second);
|
\ 0x5A 0x2800 CMP R0,#+0
|
||||||
\ 0x4A 0xA904 ADD R1,SP,#+16
|
\ 0x5C 0xD1F4 BNE.N ??EC801_GET_Time_2
|
||||||
\ 0x4C 0xA805 ADD R0,SP,#+20
|
188
|
||||||
\ 0x4E 0xAA06 ADD R2,SP,#+24
|
189 // 字符提取成int
|
||||||
\ 0x50 0xAB07 ADD R3,SP,#+28
|
190 sscanf(time, "\"%d/%d/%d,%d:%d:%d\"", &year, &month, &day, &hour, &minute, &second);
|
||||||
\ 0x52 0x9103 STR R1,[SP, #+12]
|
\ ??EC801_GET_Time_3: (+1)
|
||||||
\ 0x54 0x9002 STR R0,[SP, #+8]
|
\ 0x5E 0xA805 ADD R0,SP,#+20
|
||||||
\ 0x56 0x9201 STR R2,[SP, #+4]
|
\ 0x60 0xA906 ADD R1,SP,#+24
|
||||||
\ 0x58 0x9300 STR R3,[SP, #+0]
|
\ 0x62 0xAA07 ADD R2,SP,#+28
|
||||||
\ 0x5A 0xAA09 ADD R2,SP,#+36
|
\ 0x64 0xAB08 ADD R3,SP,#+32
|
||||||
\ 0x5C 0xF10D 0x0320 ADD.W R3,SP,#+32
|
\ 0x66 0x9003 STR R0,[SP, #+12]
|
||||||
\ 0x60 0x.... ADR.N R1,?_16
|
\ 0x68 0x9102 STR R1,[SP, #+8]
|
||||||
\ 0x62 0xA80A ADD R0,SP,#+40
|
\ 0x6A 0x9201 STR R2,[SP, #+4]
|
||||||
\ 0x64 0x.... 0x.... BL sscanf
|
\ 0x6C 0x9300 STR R3,[SP, #+0]
|
||||||
189
|
\ 0x6E 0xAA04 ADD R2,SP,#+16
|
||||||
190 // 生成时间戳
|
\ 0x70 0xF10D 0x0324 ADD.W R3,SP,#+36
|
||||||
191 g_time_stamp = fml_time_to_stamp(year, month, day, hour, minute, second);
|
\ 0x74 0x.... ADR.N R1,?_16
|
||||||
\ 0x68 0x9804 LDR R0,[SP, #+16]
|
\ 0x76 0x.... LDR.N R4,??DataTable23_3
|
||||||
\ 0x6A 0x9905 LDR R1,[SP, #+20]
|
\ 0x78 0xA80A ADD R0,SP,#+40
|
||||||
\ 0x6C 0x9001 STR R0,[SP, #+4]
|
\ 0x7A 0x.... 0x.... BL sscanf
|
||||||
\ 0x6E 0x9100 STR R1,[SP, #+0]
|
191
|
||||||
\ 0x70 0x9B06 LDR R3,[SP, #+24]
|
192 if(year)
|
||||||
\ 0x72 0x9A07 LDR R2,[SP, #+28]
|
\ 0x7E 0x9804 LDR R0,[SP, #+16]
|
||||||
\ 0x74 0x9908 LDR R1,[SP, #+32]
|
\ 0x80 0xB108 CBZ.N R0,??EC801_GET_Time_4
|
||||||
\ 0x76 0x9809 LDR R0,[SP, #+36]
|
193 {
|
||||||
\ 0x78 0x.... 0x.... BL fml_time_to_stamp
|
194 time_get_ok = 1;
|
||||||
\ 0x7C 0x.... LDR.N R1,??DataTable23_3
|
\ 0x82 0x2101 MOVS R1,#+1
|
||||||
\ 0x7E 0x6008 STR R0,[R1, #+0]
|
\ 0x84 0x7021 STRB R1,[R4, #+0]
|
||||||
192 }
|
195 }
|
||||||
\ 0x80 0xB024 ADD SP,SP,#+144
|
196 // 生成时间戳
|
||||||
\ 0x82 0xBD70 POP {R4-R6,PC}
|
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
|
\ In section .text, align 2, keep-with-next
|
||||||
\ ?Subroutine0: (+1)
|
\ ?Subroutine0: (+1)
|
||||||
|
@ -583,63 +608,90 @@ Warning[Pa205]: implicit conversion from float to double
|
||||||
\ 0x6 0x5C28 LDRB R0,[R5, R0]
|
\ 0x6 0x5C28 LDRB R0,[R5, R0]
|
||||||
\ 0x8 0x2822 CMP R0,#+34
|
\ 0x8 0x2822 CMP R0,#+34
|
||||||
\ 0xA 0x4770 BX LR
|
\ 0xA 0x4770 BX LR
|
||||||
193
|
200
|
||||||
194 // 解析收到的4g模块数据
|
201 #define JSON_BUFFER_SIZE 200
|
||||||
|
202 // 解析收到的4g模块数据
|
||||||
|
|
||||||
\ In section .text, align 2, keep-with-next
|
\ In section .text, align 2, keep-with-next
|
||||||
195 void parse_4g_receive_data()
|
203 void parse_4g_receive_data()
|
||||||
196 {
|
204 {
|
||||||
\ parse_4g_receive_data: (+1)
|
\ parse_4g_receive_data: (+1)
|
||||||
\ 0x0 0xB530 PUSH {R4,R5,LR}
|
\ 0x0 0xB570 PUSH {R4-R6,LR}
|
||||||
197 uint8_t temp_buff[50];
|
205 uint8_t temp_buff[JSON_BUFFER_SIZE];
|
||||||
198 char c = 0;
|
206 int jsonBufferIndex = 0; // 索引
|
||||||
199 if(uart_dev_char_present(g_ec801_uart_handle)){
|
207 char c = 0;
|
||||||
\ 0x2 0x.... LDR.N R4,??DataTable23_1
|
208 int inJson = 0;
|
||||||
\ 0x4 0x6820 LDR R0,[R4, #+0]
|
209 if(uart_dev_char_present(g_ec801_uart_handle)){
|
||||||
\ 0x6 0xB08D SUB SP,SP,#+52
|
\ 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
|
\ 0x8 0x.... 0x.... BL uart_dev_char_present
|
||||||
\ 0xC 0xB1C0 CBZ.N R0,??parse_4g_receive_data_0
|
\ 0xC 0x2500 MOVS R5,#+0
|
||||||
200 for(int i = 0; i < 50; i++)
|
\ 0xE 0x2400 MOVS R4,#+0
|
||||||
\ 0xE 0x2500 MOVS R5,#+0
|
\ 0x10 0xB920 CBNZ.N R0,??parse_4g_receive_data_0
|
||||||
201 {
|
\ 0x12 0xE01F B.N ??parse_4g_receive_data_1
|
||||||
202 c = uart_dev_in_char(g_ec801_uart_handle);
|
210 for(jsonBufferIndex = 0; uart_dev_char_present(g_ec801_uart_handle);)
|
||||||
203 temp_buff[i++] = c;
|
|
||||||
\ ??parse_4g_receive_data_1: (+1)
|
|
||||||
\ 0x10 0x6820 LDR R0,[R4, #+0]
|
|
||||||
\ 0x12 0x.... 0x.... BL uart_dev_in_char
|
|
||||||
\ 0x16 0xF80D 0x0005 STRB R0,[SP, R5]
|
|
||||||
\ 0x1A 0x1C6D ADDS R5,R5,#+1
|
|
||||||
204 if(temp_buff[0] != '"')
|
|
||||||
\ 0x1C 0xF89D 0x0000 LDRB R0,[SP, #+0]
|
|
||||||
\ 0x20 0x2822 CMP R0,#+34
|
|
||||||
\ 0x22 0xD006 BEQ.N ??parse_4g_receive_data_2
|
|
||||||
205 {
|
|
||||||
206 memcpy(temp_buff, temp_buff + 1, i - 1);
|
|
||||||
\ 0x24 0x1E6D SUBS R5,R5,#+1
|
|
||||||
\ 0x26 0x462A MOV R2,R5
|
|
||||||
\ 0x28 0xF10D 0x0101 ADD R1,SP,#+1
|
|
||||||
\ 0x2C 0x4668 MOV R0,SP
|
|
||||||
\ 0x2E 0x.... 0x.... BL __aeabi_memcpy
|
|
||||||
207 i--;
|
|
||||||
208 }
|
|
||||||
209
|
|
||||||
210 if(temp_buff[i] != '"')
|
|
||||||
\ ??parse_4g_receive_data_2: (+1)
|
|
||||||
\ 0x32 0xF81D 0x0005 LDRB R0,[SP, R5]
|
|
||||||
\ 0x36 0x2822 CMP R0,#+34
|
|
||||||
\ 0x38 0xD102 BNE.N ??parse_4g_receive_data_0
|
|
||||||
\ 0x3A 0x1C6D ADDS R5,R5,#+1
|
|
||||||
\ 0x3C 0x2D32 CMP R5,#+50
|
|
||||||
\ 0x3E 0xDBE7 BLT.N ??parse_4g_receive_data_1
|
|
||||||
211 {
|
211 {
|
||||||
212 return;
|
212 c = uart_dev_in_char(g_ec801_uart_handle);
|
||||||
213 }
|
213 if (c == '{') {
|
||||||
214 }
|
214 inJson = 1; // 进入JSON字符串
|
||||||
215 }
|
\ ??parse_4g_receive_data_2: (+1)
|
||||||
216 }
|
\ 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)
|
\ ??parse_4g_receive_data_0: (+1)
|
||||||
\ 0x40 0xB00D ADD SP,SP,#+52
|
\ 0x1C 0x6830 LDR R0,[R6, #+0]
|
||||||
\ 0x42 0xBD30 POP {R4,R5,PC}
|
\ 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
|
\ In section .text, align 4, keep-with-next
|
||||||
\ ??DataTable23:
|
\ ??DataTable23:
|
||||||
|
@ -655,7 +707,7 @@ Warning[Pa205]: implicit conversion from float to double
|
||||||
|
|
||||||
\ In section .text, align 4, keep-with-next
|
\ In section .text, align 4, keep-with-next
|
||||||
\ ??DataTable23_3:
|
\ ??DataTable23_3:
|
||||||
\ 0x0 0x....'.... DC32 g_time_stamp
|
\ 0x0 0x....'.... DC32 time_get_ok
|
||||||
|
|
||||||
\ In section .text, align 4, keep-with-next
|
\ In section .text, align 4, keep-with-next
|
||||||
\ ??DataTable23_4:
|
\ ??DataTable23_4:
|
||||||
|
@ -891,6 +943,8 @@ Warning[Pa205]: implicit conversion from float to double
|
||||||
\ 0x64 0x3A
|
\ 0x64 0x3A
|
||||||
\ 0x25 0x64
|
\ 0x25 0x64
|
||||||
\ 0x22 0x00
|
\ 0x22 0x00
|
||||||
|
235
|
||||||
|
236
|
||||||
|
|
||||||
Maximum stack usage in bytes:
|
Maximum stack usage in bytes:
|
||||||
|
|
||||||
|
@ -905,6 +959,7 @@ Warning[Pa205]: implicit conversion from float to double
|
||||||
160 -> fml_time_to_stamp
|
160 -> fml_time_to_stamp
|
||||||
160 -> osDelay
|
160 -> osDelay
|
||||||
160 -> sscanf
|
160 -> sscanf
|
||||||
|
160 -> uart_dev_char_present
|
||||||
160 -> uart_dev_in_char
|
160 -> uart_dev_in_char
|
||||||
160 -> uart_sendstr
|
160 -> uart_sendstr
|
||||||
16 MQTT_Config
|
16 MQTT_Config
|
||||||
|
@ -939,10 +994,10 @@ Warning[Pa205]: implicit conversion from float to double
|
||||||
48 fml_time_to_stamp
|
48 fml_time_to_stamp
|
||||||
48 -> __aeabi_memcpy4
|
48 -> __aeabi_memcpy4
|
||||||
48 -> fml_leap_year
|
48 -> fml_leap_year
|
||||||
64 parse_4g_receive_data
|
216 parse_4g_receive_data
|
||||||
64 -> __aeabi_memcpy
|
216 -> term_printf
|
||||||
64 -> uart_dev_char_present
|
216 -> uart_dev_char_present
|
||||||
64 -> uart_dev_in_char
|
216 -> uart_dev_in_char
|
||||||
|
|
||||||
|
|
||||||
Section sizes:
|
Section sizes:
|
||||||
|
@ -982,26 +1037,27 @@ Warning[Pa205]: implicit conversion from float to double
|
||||||
12 ?_8
|
12 ?_8
|
||||||
8 ?_9
|
8 ?_9
|
||||||
34 EC801E_Power_ON
|
34 EC801E_Power_ON
|
||||||
132 EC801_GET_Time
|
162 EC801_GET_Time
|
||||||
70 MQTT_Config
|
74 MQTT_Config
|
||||||
262 MQTT_Trans_Data
|
262 MQTT_Trans_Data
|
||||||
24 Read_Status
|
26 Read_Status
|
||||||
26 __write
|
26 __write
|
||||||
4 dax
|
4 dax
|
||||||
4 day_count
|
4 day_count
|
||||||
50 fml_leap_year
|
50 fml_leap_year
|
||||||
128 fml_time_to_stamp
|
128 fml_time_to_stamp
|
||||||
4 g_time_stamp
|
88 parse_4g_receive_data
|
||||||
68 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
|
44 bytes in section .rodata
|
||||||
1'098 bytes in section .text
|
1'154 bytes in section .text
|
||||||
|
|
||||||
1'098 bytes of CODE memory
|
1'154 bytes of CODE memory
|
||||||
44 bytes of CONST memory
|
44 bytes of CONST memory
|
||||||
12 bytes of DATA memory
|
16 bytes of DATA memory
|
||||||
|
|
||||||
Errors: none
|
Errors: none
|
||||||
Warnings: 2
|
Warnings: 3
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 10/Aug/2024 16:53:06
|
// IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM 15/Aug/2024 16:32:15
|
||||||
// Copyright 1999-2023 IAR Systems AB.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// Cpu mode = thumb
|
||||||
|
@ -90,6 +90,7 @@
|
||||||
EXTERN sprintf
|
EXTERN sprintf
|
||||||
EXTERN sscanf
|
EXTERN sscanf
|
||||||
EXTERN strlen
|
EXTERN strlen
|
||||||
|
EXTERN term_printf
|
||||||
EXTERN uart_dev_char_present
|
EXTERN uart_dev_char_present
|
||||||
EXTERN uart_dev_in_char
|
EXTERN uart_dev_in_char
|
||||||
EXTERN uart_sendstr
|
EXTERN uart_sendstr
|
||||||
|
@ -105,6 +106,7 @@
|
||||||
PUBLIC fml_time_to_stamp
|
PUBLIC fml_time_to_stamp
|
||||||
PUBLIC g_time_stamp
|
PUBLIC g_time_stamp
|
||||||
PUBLIC parse_4g_receive_data
|
PUBLIC parse_4g_receive_data
|
||||||
|
PUBLIC time_get_ok
|
||||||
|
|
||||||
CFI Names cfiNames0
|
CFI Names cfiNames0
|
||||||
CFI StackFrame CFA R13 DATA
|
CFI StackFrame CFA R13 DATA
|
||||||
|
@ -201,12 +203,7 @@
|
||||||
// 8
|
// 8
|
||||||
// 9 #define USE_UTC 1
|
// 9 #define USE_UTC 1
|
||||||
// 10
|
// 10
|
||||||
|
|
||||||
SECTION `.bss`:DATA:REORDER:NOROOT(2)
|
|
||||||
DATA
|
|
||||||
// 11 uint32_t g_time_stamp;
|
// 11 uint32_t g_time_stamp;
|
||||||
g_time_stamp:
|
|
||||||
DS8 4
|
|
||||||
// 12
|
// 12
|
||||||
// 13 //控制上电并开机
|
// 13 //控制上电并开机
|
||||||
|
|
||||||
|
@ -256,7 +253,7 @@ Read_Status:
|
||||||
// 26 uint8_t temp_status = HAL_ERROR;
|
// 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;
|
// 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
|
MOV R1,#+512
|
||||||
LDR.N R0,??DataTable23_9
|
LDR.W R0,??DataTable23_9
|
||||||
CFI FunCall HAL_GPIO_ReadPin
|
CFI FunCall HAL_GPIO_ReadPin
|
||||||
BL HAL_GPIO_ReadPin
|
BL HAL_GPIO_ReadPin
|
||||||
CMP R0,#+1
|
CMP R0,#+1
|
||||||
|
@ -329,7 +326,7 @@ MQTT_Config:
|
||||||
BL osDelay
|
BL osDelay
|
||||||
// 49 uart_sendstr(g_ec801_uart_handle, "AT+QMTCFG=\"session\",0,0\r\n");
|
// 49 uart_sendstr(g_ec801_uart_handle, "AT+QMTCFG=\"session\",0,0\r\n");
|
||||||
LDR R0,[R5, #+0]
|
LDR R0,[R5, #+0]
|
||||||
ADR.N R1,?_1
|
ADR.W R1,?_1
|
||||||
CFI FunCall uart_sendstr
|
CFI FunCall uart_sendstr
|
||||||
BL uart_sendstr
|
BL uart_sendstr
|
||||||
// 50 osDelay(5000);
|
// 50 osDelay(5000);
|
||||||
|
@ -350,7 +347,7 @@ MQTT_Config:
|
||||||
BL osDelay
|
BL osDelay
|
||||||
// 56 // 连接服务器
|
// 56 // 连接服务器
|
||||||
// 57 uart_sendstr(g_ec801_uart_handle, "AT+QMTCONN=0,Test_SUB\r\n");
|
// 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
|
ADR.N R1,?_2
|
||||||
CFI FunCall uart_sendstr
|
CFI FunCall uart_sendstr
|
||||||
BL uart_sendstr
|
BL uart_sendstr
|
||||||
|
@ -362,8 +359,8 @@ MQTT_Config:
|
||||||
BL osDelay
|
BL osDelay
|
||||||
// 61 // 订阅主题
|
// 61 // 订阅主题
|
||||||
// 62 uart_sendstr(g_ec801_uart_handle, "AT+QMTSUB=0,0,Test_Topic,0\r\n");
|
// 62 uart_sendstr(g_ec801_uart_handle, "AT+QMTSUB=0,0,Test_Topic,0\r\n");
|
||||||
LDR.W R0,[R5, #+0]
|
LDR R0,[R5, #+0]
|
||||||
ADR.N R1,?_3
|
ADR.W R1,?_3
|
||||||
POP {R2,R4,R5,LR}
|
POP {R2,R4,R5,LR}
|
||||||
CFI R4 SameValue
|
CFI R4 SameValue
|
||||||
CFI R5 SameValue
|
CFI R5 SameValue
|
||||||
|
@ -381,7 +378,7 @@ MQTT_Config:
|
||||||
CFI Block cfiBlock4 Using cfiCommon0
|
CFI Block cfiBlock4 Using cfiCommon0
|
||||||
CFI Function MQTT_Trans_Data
|
CFI Function MQTT_Trans_Data
|
||||||
THUMB
|
THUMB
|
||||||
// 67 void MQTT_Trans_Data()
|
// 67 void MQTT_Trans_Data( )
|
||||||
// 68 {
|
// 68 {
|
||||||
MQTT_Trans_Data:
|
MQTT_Trans_Data:
|
||||||
PUSH {R3-R7,LR}
|
PUSH {R3-R7,LR}
|
||||||
|
@ -413,11 +410,10 @@ MQTT_Trans_Data:
|
||||||
ADR.W R2,?_5
|
ADR.W R2,?_5
|
||||||
ADR.N R1,?_4
|
ADR.N R1,?_4
|
||||||
LDR.N R6,??DataTable23_2
|
LDR.N R6,??DataTable23_2
|
||||||
MOV R0,R4
|
MOV.W R0,R4
|
||||||
CFI FunCall cJSON_AddStringToObject
|
CFI FunCall cJSON_AddStringToObject
|
||||||
BL cJSON_AddStringToObject
|
BL cJSON_AddStringToObject
|
||||||
// 80 cJSON_AddStringToObject(JsonRoot, "frameType", "item_type");
|
// 80 cJSON_AddStringToObject(JsonRoot, "frameType", "item_type");
|
||||||
Nop
|
|
||||||
ADR.W R2,?_7
|
ADR.W R2,?_7
|
||||||
ADR.N R1,?_6
|
ADR.N R1,?_6
|
||||||
MOV R0,R4
|
MOV R0,R4
|
||||||
|
@ -425,7 +421,7 @@ MQTT_Trans_Data:
|
||||||
BL cJSON_AddStringToObject
|
BL cJSON_AddStringToObject
|
||||||
// 81 cJSON_AddNumberToObject(JsonRoot, "timeStamp", g_time_stamp);
|
// 81 cJSON_AddNumberToObject(JsonRoot, "timeStamp", g_time_stamp);
|
||||||
LDR.N R2,??DataTable23_3
|
LDR.N R2,??DataTable23_3
|
||||||
LDR R0,[R2, #+0]
|
LDR R0,[R2, #+4]
|
||||||
CFI FunCall __aeabi_ui2d
|
CFI FunCall __aeabi_ui2d
|
||||||
BL __aeabi_ui2d
|
BL __aeabi_ui2d
|
||||||
VMOV D0,R0,R1
|
VMOV D0,R0,R1
|
||||||
|
@ -704,21 +700,31 @@ fml_time_to_stamp:
|
||||||
|
|
||||||
SECTION `.bss`:DATA:REORDER:NOROOT(2)
|
SECTION `.bss`:DATA:REORDER:NOROOT(2)
|
||||||
DATA
|
DATA
|
||||||
|
// 158
|
||||||
|
// 159
|
||||||
|
// 160 //时间获取完成变量,用于控制是否开始MQTT信息接收
|
||||||
|
// 161 uint8_t time_get_ok = 0;
|
||||||
|
time_get_ok:
|
||||||
|
DS8 1
|
||||||
|
DS8 3
|
||||||
|
g_time_stamp:
|
||||||
DS8 4
|
DS8 4
|
||||||
|
|
||||||
SECTION `.bss`:DATA:REORDER:NOROOT(2)
|
SECTION `.bss`:DATA:REORDER:NOROOT(2)
|
||||||
DATA
|
DATA
|
||||||
DS8 4
|
DS8 4
|
||||||
// 158
|
|
||||||
// 159
|
SECTION `.bss`:DATA:REORDER:NOROOT(2)
|
||||||
// 160 // 生成时间戳
|
DATA
|
||||||
|
DS8 4
|
||||||
|
// 162 // 生成时间戳
|
||||||
|
|
||||||
SECTION `.text`:CODE:NOROOT(2)
|
SECTION `.text`:CODE:NOROOT(2)
|
||||||
CFI Block cfiBlock7 Using cfiCommon0
|
CFI Block cfiBlock7 Using cfiCommon0
|
||||||
CFI Function EC801_GET_Time
|
CFI Function EC801_GET_Time
|
||||||
THUMB
|
THUMB
|
||||||
// 161 void EC801_GET_Time()
|
// 163 int EC801_GET_Time()
|
||||||
// 162 {
|
// 164 {
|
||||||
EC801_GET_Time:
|
EC801_GET_Time:
|
||||||
PUSH {R3-R6,LR}
|
PUSH {R3-R6,LR}
|
||||||
CFI R14 Frame(CFA, -4)
|
CFI R14 Frame(CFA, -4)
|
||||||
|
@ -726,10 +732,10 @@ EC801_GET_Time:
|
||||||
CFI R5 Frame(CFA, -12)
|
CFI R5 Frame(CFA, -12)
|
||||||
CFI R4 Frame(CFA, -16)
|
CFI R4 Frame(CFA, -16)
|
||||||
CFI CFA R13+20
|
CFI CFA R13+20
|
||||||
// 163 int year, month, day, hour, minute, second;
|
// 165 int year, month, day, hour, minute, second;
|
||||||
// 164 if(USE_UTC)
|
// 166 if(USE_UTC)
|
||||||
// 165 {
|
// 167 {
|
||||||
// 166 uart_sendstr(g_ec801_uart_handle, "AT+QLTS=0\r\n");
|
// 168 uart_sendstr(g_ec801_uart_handle, "AT+QLTS=0\r\n");
|
||||||
LDR.N R4,??DataTable23_1
|
LDR.N R4,??DataTable23_1
|
||||||
ADR.N R1,?_15
|
ADR.N R1,?_15
|
||||||
LDR R0,[R4, #+0]
|
LDR R0,[R4, #+0]
|
||||||
|
@ -737,11 +743,11 @@ EC801_GET_Time:
|
||||||
CFI CFA R13+160
|
CFI CFA R13+160
|
||||||
CFI FunCall uart_sendstr
|
CFI FunCall uart_sendstr
|
||||||
BL uart_sendstr
|
BL uart_sendstr
|
||||||
// 167 }else
|
// 169 }else
|
||||||
// 168 {
|
// 170 {
|
||||||
// 169 uart_sendstr(g_ec801_uart_handle, "AT+QLTS=2\r\n");
|
// 171 uart_sendstr(g_ec801_uart_handle, "AT+QLTS=2\r\n");
|
||||||
// 170 }
|
// 172 }
|
||||||
// 171 osDelay(1000);
|
// 173 osDelay(1000);
|
||||||
MOV R0,#+1000
|
MOV R0,#+1000
|
||||||
CFI FunCall osDelay
|
CFI FunCall osDelay
|
||||||
BL osDelay
|
BL osDelay
|
||||||
|
@ -749,80 +755,103 @@ EC801_GET_Time:
|
||||||
ADD R0,SP,#+40
|
ADD R0,SP,#+40
|
||||||
CFI FunCall __aeabi_memclr4
|
CFI FunCall __aeabi_memclr4
|
||||||
BL __aeabi_memclr4
|
BL __aeabi_memclr4
|
||||||
// 172 char time[100] = {0};int index = 0;
|
// 174 char time[100] = {0};int index = 0;
|
||||||
MOVS R6,#+0
|
MOVS R6,#+0
|
||||||
ADD R5,SP,#+40
|
ADD R5,SP,#+40
|
||||||
// 173
|
// 175
|
||||||
// 174 // 第一个“后是时间,前面不要
|
// 176 // 第一个“后是时间,前面不要
|
||||||
// 175 do{
|
// 177 do{
|
||||||
// 176 time[index] = uart_dev_in_char(g_ec801_uart_handle);
|
// 178 time[index] = uart_dev_in_char(g_ec801_uart_handle);
|
||||||
??EC801_GET_Time_0:
|
??EC801_GET_Time_0:
|
||||||
LDR R0,[R4, #+0]
|
LDR R0,[R4, #+0]
|
||||||
CFI FunCall uart_dev_in_char
|
CFI FunCall uart_dev_in_char
|
||||||
BL uart_dev_in_char
|
BL uart_dev_in_char
|
||||||
BL ?Subroutine0
|
BL ?Subroutine0
|
||||||
// 177 }while(time[index++] != '"');
|
// 179 }while(time[index++] != '"' && uart_dev_char_present(g_ec801_uart_handle));
|
||||||
??CrossCallReturnLabel_0:
|
??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
|
BNE.N ??EC801_GET_Time_0
|
||||||
// 178 // 丢掉前面的
|
// 180 // 丢掉前面的
|
||||||
// 179 memcpy(time, time + index - 1, index);
|
// 181 memcpy(time, time + index - 1, index);
|
||||||
ADD R1,SP,#+40
|
??EC801_GET_Time_1:
|
||||||
ADD R1,R1,R6
|
ADD R0,SP,#+40
|
||||||
|
ADD R0,R0,R6
|
||||||
|
SUBS R1,R0,#+1
|
||||||
MOV R2,R6
|
MOV R2,R6
|
||||||
SUBS R1,R1,#+1
|
|
||||||
ADD R0,SP,#+40
|
ADD R0,SP,#+40
|
||||||
CFI FunCall __aeabi_memcpy
|
CFI FunCall __aeabi_memcpy
|
||||||
BL __aeabi_memcpy
|
BL __aeabi_memcpy
|
||||||
// 180 index = 1;
|
// 182 index = 1;
|
||||||
MOVS R6,#+1
|
MOVS R6,#+1
|
||||||
// 181
|
// 183
|
||||||
// 182 // "前面是时间
|
// 184 // "前面是时间
|
||||||
// 183 do{
|
// 185 do{
|
||||||
// 184 time[index] = uart_dev_in_char(g_ec801_uart_handle);
|
// 186 time[index] = uart_dev_in_char(g_ec801_uart_handle);
|
||||||
??EC801_GET_Time_1:
|
??EC801_GET_Time_2:
|
||||||
LDR R0,[R4, #+0]
|
LDR R0,[R4, #+0]
|
||||||
CFI FunCall uart_dev_in_char
|
CFI FunCall uart_dev_in_char
|
||||||
BL uart_dev_in_char
|
BL uart_dev_in_char
|
||||||
BL ?Subroutine0
|
BL ?Subroutine0
|
||||||
// 185 }while(time[index++] != '"');
|
// 187 }while(time[index++] != '"' && uart_dev_char_present(g_ec801_uart_handle));
|
||||||
??CrossCallReturnLabel_1:
|
??CrossCallReturnLabel_1:
|
||||||
BNE.N ??EC801_GET_Time_1
|
BEQ.N ??EC801_GET_Time_3
|
||||||
// 186
|
LDR R0,[R4, #+0]
|
||||||
// 187 // 字符提取成int
|
CFI FunCall uart_dev_char_present
|
||||||
// 188 int matched = sscanf(time, "\"%d/%d/%d,%d:%d:%d\"", &year, &month, &day, &hour, &minute, &second);
|
BL uart_dev_char_present
|
||||||
ADD R1,SP,#+16
|
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 R0,SP,#+20
|
||||||
ADD R2,SP,#+24
|
ADD R1,SP,#+24
|
||||||
ADD R3,SP,#+28
|
ADD R2,SP,#+28
|
||||||
STR R1,[SP, #+12]
|
ADD R3,SP,#+32
|
||||||
STR R0,[SP, #+8]
|
STR R0,[SP, #+12]
|
||||||
|
STR R1,[SP, #+8]
|
||||||
STR R2,[SP, #+4]
|
STR R2,[SP, #+4]
|
||||||
STR R3,[SP, #+0]
|
STR R3,[SP, #+0]
|
||||||
ADD R2,SP,#+36
|
ADD R2,SP,#+16
|
||||||
ADD.W R3,SP,#+32
|
ADD.W R3,SP,#+36
|
||||||
ADR.N R1,?_16
|
ADR.N R1,?_16
|
||||||
|
LDR.N R4,??DataTable23_3
|
||||||
ADD R0,SP,#+40
|
ADD R0,SP,#+40
|
||||||
CFI FunCall sscanf
|
CFI FunCall sscanf
|
||||||
BL sscanf
|
BL sscanf
|
||||||
// 189
|
// 191
|
||||||
// 190 // 生成时间戳
|
// 192 if(year)
|
||||||
// 191 g_time_stamp = fml_time_to_stamp(year, month, day, hour, minute, second);
|
|
||||||
LDR R0,[SP, #+16]
|
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 R0,[SP, #+4]
|
||||||
STR R1,[SP, #+0]
|
STR R1,[SP, #+0]
|
||||||
LDR R3,[SP, #+24]
|
LDR R3,[SP, #+28]
|
||||||
LDR R2,[SP, #+28]
|
LDR R2,[SP, #+32]
|
||||||
LDR R1,[SP, #+32]
|
LDR R1,[SP, #+36]
|
||||||
LDR R0,[SP, #+36]
|
LDR R0,[SP, #+16]
|
||||||
CFI FunCall fml_time_to_stamp
|
CFI FunCall fml_time_to_stamp
|
||||||
BL fml_time_to_stamp
|
BL fml_time_to_stamp
|
||||||
LDR.N R1,??DataTable23_3
|
STR R0,[R4, #+4]
|
||||||
STR R0,[R1, #+0]
|
// 198 return year;
|
||||||
// 192 }
|
LDR R0,[SP, #+16]
|
||||||
ADD SP,SP,#+144
|
ADD SP,SP,#+144
|
||||||
CFI CFA R13+16
|
CFI CFA R13+16
|
||||||
POP {R4-R6,PC}
|
POP {R4-R6,PC}
|
||||||
|
// 199 }
|
||||||
CFI EndBlock cfiBlock7
|
CFI EndBlock cfiBlock7
|
||||||
|
|
||||||
SECTION `.text`:CODE:NOROOT(1)
|
SECTION `.text`:CODE:NOROOT(1)
|
||||||
|
@ -856,75 +885,101 @@ EC801_GET_Time:
|
||||||
CFI EndBlock cfiCond8
|
CFI EndBlock cfiCond8
|
||||||
CFI EndBlock cfiCond9
|
CFI EndBlock cfiCond9
|
||||||
CFI EndBlock cfiPicker10
|
CFI EndBlock cfiPicker10
|
||||||
// 193
|
// 200
|
||||||
// 194 // 解析收到的4g模块数据
|
// 201 #define JSON_BUFFER_SIZE 200
|
||||||
|
// 202 // 解析收到的4g模块数据
|
||||||
|
|
||||||
SECTION `.text`:CODE:NOROOT(1)
|
SECTION `.text`:CODE:NOROOT(1)
|
||||||
CFI Block cfiBlock11 Using cfiCommon0
|
CFI Block cfiBlock11 Using cfiCommon0
|
||||||
CFI Function parse_4g_receive_data
|
CFI Function parse_4g_receive_data
|
||||||
THUMB
|
THUMB
|
||||||
// 195 void parse_4g_receive_data()
|
// 203 void parse_4g_receive_data()
|
||||||
// 196 {
|
// 204 {
|
||||||
parse_4g_receive_data:
|
parse_4g_receive_data:
|
||||||
PUSH {R4,R5,LR}
|
PUSH {R4-R6,LR}
|
||||||
CFI R14 Frame(CFA, -4)
|
CFI R14 Frame(CFA, -4)
|
||||||
CFI R5 Frame(CFA, -8)
|
CFI R6 Frame(CFA, -8)
|
||||||
CFI R4 Frame(CFA, -12)
|
CFI R5 Frame(CFA, -12)
|
||||||
CFI CFA R13+12
|
CFI R4 Frame(CFA, -16)
|
||||||
// 197 uint8_t temp_buff[50];
|
CFI CFA R13+16
|
||||||
// 198 char c = 0;
|
// 205 uint8_t temp_buff[JSON_BUFFER_SIZE];
|
||||||
// 199 if(uart_dev_char_present(g_ec801_uart_handle)){
|
// 206 int jsonBufferIndex = 0; // 索引
|
||||||
LDR.N R4,??DataTable23_1
|
// 207 char c = 0;
|
||||||
LDR R0,[R4, #+0]
|
// 208 int inJson = 0;
|
||||||
SUB SP,SP,#+52
|
// 209 if(uart_dev_char_present(g_ec801_uart_handle)){
|
||||||
CFI CFA R13+64
|
LDR.N R6,??DataTable23_1
|
||||||
|
LDR R0,[R6, #+0]
|
||||||
|
SUB SP,SP,#+200
|
||||||
|
CFI CFA R13+216
|
||||||
CFI FunCall uart_dev_char_present
|
CFI FunCall uart_dev_char_present
|
||||||
BL uart_dev_char_present
|
BL uart_dev_char_present
|
||||||
CBZ.N R0,??parse_4g_receive_data_0
|
|
||||||
// 200 for(int i = 0; i < 50; i++)
|
|
||||||
MOVS R5,#+0
|
MOVS R5,#+0
|
||||||
// 201 {
|
MOVS R4,#+0
|
||||||
// 202 c = uart_dev_in_char(g_ec801_uart_handle);
|
CBNZ.N R0,??parse_4g_receive_data_0
|
||||||
// 203 temp_buff[i++] = c;
|
B.N ??parse_4g_receive_data_1
|
||||||
??parse_4g_receive_data_1:
|
// 210 for(jsonBufferIndex = 0; uart_dev_char_present(g_ec801_uart_handle);)
|
||||||
LDR R0,[R4, #+0]
|
// 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
|
CFI FunCall uart_dev_in_char
|
||||||
BL uart_dev_in_char
|
BL uart_dev_in_char
|
||||||
STRB R0,[SP, R5]
|
CMP R0,#+123
|
||||||
ADDS R5,R5,#+1
|
|
||||||
// 204 if(temp_buff[0] != '"')
|
|
||||||
LDRB R0,[SP, #+0]
|
|
||||||
CMP R0,#+34
|
|
||||||
BEQ.N ??parse_4g_receive_data_2
|
BEQ.N ??parse_4g_receive_data_2
|
||||||
// 205 {
|
ADDS R1,R5,#+1
|
||||||
// 206 memcpy(temp_buff, temp_buff + 1, i - 1);
|
CMP R0,#+125
|
||||||
SUBS R5,R5,#+1
|
BNE.N ??parse_4g_receive_data_4
|
||||||
MOV R2,R5
|
CBZ.N R4,??parse_4g_receive_data_5
|
||||||
ADD R1,SP,#+1
|
// 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
|
MOV R0,SP
|
||||||
CFI FunCall __aeabi_memcpy
|
CFI FunCall term_printf
|
||||||
BL __aeabi_memcpy
|
BL term_printf
|
||||||
// 207 i--;
|
// 233 }
|
||||||
// 208 }
|
// 234 }
|
||||||
// 209
|
??parse_4g_receive_data_1:
|
||||||
// 210 if(temp_buff[i] != '"')
|
ADD SP,SP,#+200
|
||||||
??parse_4g_receive_data_2:
|
CFI CFA R13+16
|
||||||
LDRB R0,[SP, R5]
|
POP {R4-R6,PC}
|
||||||
CMP R0,#+34
|
|
||||||
BNE.N ??parse_4g_receive_data_0
|
|
||||||
ADDS R5,R5,#+1
|
|
||||||
CMP R5,#+50
|
|
||||||
BLT.N ??parse_4g_receive_data_1
|
|
||||||
// 211 {
|
|
||||||
// 212 return;
|
|
||||||
// 213 }
|
|
||||||
// 214 }
|
|
||||||
// 215 }
|
|
||||||
// 216 }
|
|
||||||
??parse_4g_receive_data_0:
|
|
||||||
ADD SP,SP,#+52
|
|
||||||
CFI CFA R13+12
|
|
||||||
POP {R4,R5,PC}
|
|
||||||
CFI EndBlock cfiBlock11
|
CFI EndBlock cfiBlock11
|
||||||
|
|
||||||
SECTION `.text`:CODE:NOROOT(2)
|
SECTION `.text`:CODE:NOROOT(2)
|
||||||
|
@ -953,7 +1008,7 @@ parse_4g_receive_data:
|
||||||
DATA
|
DATA
|
||||||
??DataTable23_3:
|
??DataTable23_3:
|
||||||
DATA32
|
DATA32
|
||||||
DC32 g_time_stamp
|
DC32 time_get_ok
|
||||||
|
|
||||||
SECTION `.text`:CODE:NOROOT(2)
|
SECTION `.text`:CODE:NOROOT(2)
|
||||||
SECTION_TYPE SHT_PROGBITS, 0
|
SECTION_TYPE SHT_PROGBITS, 0
|
||||||
|
@ -1166,14 +1221,16 @@ parse_4g_receive_data:
|
||||||
DS8 1
|
DS8 1
|
||||||
|
|
||||||
END
|
END
|
||||||
|
// 235
|
||||||
|
// 236
|
||||||
//
|
//
|
||||||
// 12 bytes in section .bss
|
// 16 bytes in section .bss
|
||||||
// 44 bytes in section .rodata
|
// 44 bytes in section .rodata
|
||||||
// 1'098 bytes in section .text
|
// 1'154 bytes in section .text
|
||||||
//
|
//
|
||||||
// 1'098 bytes of CODE memory
|
// 1'154 bytes of CODE memory
|
||||||
// 44 bytes of CONST memory
|
// 44 bytes of CONST memory
|
||||||
// 12 bytes of DATA memory
|
// 16 bytes of DATA memory
|
||||||
//
|
//
|
||||||
//Errors: none
|
//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. #
|
# Copyright 1999-2023 IAR Systems AB. #
|
||||||
# #
|
# #
|
||||||
# Source file = E:\Y\IAR\micro_climate\EWARM\startup_stm32l496xx.s#
|
# 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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. #
|
# Copyright 1999-2023 IAR Systems AB. #
|
||||||
# #
|
# #
|
||||||
# Source file = E:\Y\IAR\micro_climate\Middlewares\Third_Party\FreeRTOS\Source\portable\IAR\ARM_CM4F\portasm.s#
|
# 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// 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.
|
# Copyright 1999-2023 IAR Systems AB.
|
||||||
#
|
#
|
||||||
# Cpu mode = thumb
|
# 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.
|
// Copyright 1999-2023 IAR Systems AB.
|
||||||
//
|
//
|
||||||
// Cpu mode = thumb
|
// Cpu mode = thumb
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue