Compare commits

...

4 Commits

Author SHA1 Message Date
haochao 491d60d65b tijiao6 2025-05-23 13:08:40 +08:00
haochao 8afc189cb0 tijiao5 2025-05-23 13:06:14 +08:00
haochao c5062ed9a2 tijiao4 2025-05-23 13:02:12 +08:00
haochao 629ac1dcae tijiao4 2025-05-21 13:23:18 +08:00
40 changed files with 1882 additions and 1721 deletions

View File

@ -50,3 +50,47 @@ void Phosphorus_Control_Update(void)
} }
} }
void Save_Phosphorus_Time_To_EEPROM(uint32_t run_time, uint32_t stop_time)
{
// 保存时间参数
Save_Float_To_EEPROM(PHOSPHORUS_RUN_TIME_ADDR, (float)run_time);
Save_Float_To_EEPROM(PHOSPHORUS_STOP_TIME_ADDR, (float)stop_time);
// 保存标志位
Inf_AT24C02_WriteByte(PHOSPHORUS_FLAG_ADDR, PHOSPHORUS_FLAG_VAL);
}
void Load_Phosphorus_Time_From_EEPROM(void)
{
uint8_t flag = Inf_AT24C02_ReadByte(PHOSPHORUS_FLAG_ADDR);
if(flag == PHOSPHORUS_FLAG_VAL)
{
// 读取时间参数
PHOSPHORUS_RUN_TIME = (uint32_t)Read_Float_From_EEPROM(PHOSPHORUS_RUN_TIME_ADDR);
PHOSPHORUS_STOP_TIME = (uint32_t)Read_Float_From_EEPROM(PHOSPHORUS_STOP_TIME_ADDR);
}
else
{
// 如果EEPROM中没有有效数据使用默认值并保存
Save_Phosphorus_Time_To_EEPROM(PHOSPHORUS_RUN_TIME, PHOSPHORUS_STOP_TIME);
}
}
void Phosphorus_Init(void)
{
// 从EEPROM加载时间参数
Load_Phosphorus_Time_From_EEPROM();
phosphorus_timer = 0; // 初始化计时器
polarity_state = 0; // 初始极性状态
Control_Phosphorus_Polarity(); // 设置初始极性
Control_Phosphorus(1); // 初始状态开启
}

View File

@ -3,6 +3,12 @@
#include "main.h" #include "main.h"
#include "Driver.h" #include "Driver.h"
#include "Irrigation.h" #include "Irrigation.h"
#include "eeprom.h"
#define PHOSPHORUS_RUN_TIME_ADDR 0x90 // 除磷运行时间存储地址
#define PHOSPHORUS_STOP_TIME_ADDR 0x94 // 除磷停止时间存储地址
#define PHOSPHORUS_FLAG_ADDR 0x98 // 除磷标志地址
#define PHOSPHORUS_FLAG_VAL 0xB7 // 除磷标志值
extern uint8_t phosphorus_running; // 除磷运行状态 extern uint8_t phosphorus_running; // 除磷运行状态
extern uint8_t polarity_state; // 极性状态0-正常1-反转 extern uint8_t polarity_state; // 极性状态0-正常1-反转
extern uint32_t phosphorus_timer; // 运行时间计数器(分钟) extern uint32_t phosphorus_timer; // 运行时间计数器(分钟)
@ -17,6 +23,9 @@ void Control_Phosphorus_Polarity(void);
void Phosphorus_Control_Update(void); void Phosphorus_Control_Update(void);
void Phosphorus_Init(void);
void Save_Phosphorus_Time_To_EEPROM(uint32_t run_time, uint32_t stop_time);
#endif #endif

View File

@ -155,7 +155,7 @@ int main(void)
// Clear_EEPROM_All(); // Clear_EEPROM_All();
Ozone_Init(); Ozone_Init();
Phosphorus_Init();
printf("Initializing ozone control...\n"); printf("Initializing ozone control...\n");
//Inf_AT24C02_Init(); //Inf_AT24C02_Init();

View File

@ -520,12 +520,16 @@ void Inf_EC800_ReadData(void)
else if (sscanf(jsonStr, "{\"X51\":%d}", &value) == 1) else if (sscanf(jsonStr, "{\"X51\":%d}", &value) == 1)
{ {
PHOSPHORUS_RUN_TIME=value; PHOSPHORUS_RUN_TIME=value;
phosphorus_timer = 0; // 重置计时器
Save_Phosphorus_Time_To_EEPROM(PHOSPHORUS_RUN_TIME, PHOSPHORUS_STOP_TIME); // 保存到EEPROM
// printf("设置除磷运行时间为:%d分钟\n", value); // printf("设置除磷运行时间为:%d分钟\n", value);
} }
// 设置除磷停止时间X34 // 设置除磷停止时间X34
else if (sscanf(jsonStr, "{\"X52\":%d}", &value) == 1) else if (sscanf(jsonStr, "{\"X52\":%d}", &value) == 1)
{ {
PHOSPHORUS_STOP_TIME=value; PHOSPHORUS_STOP_TIME=value;
phosphorus_timer = 0; // 重置计时器
Save_Phosphorus_Time_To_EEPROM(PHOSPHORUS_RUN_TIME, PHOSPHORUS_STOP_TIME); // 保存到EEPROM
// printf("设置除磷停止时间为:%d分钟\n", value); // printf("设置除磷停止时间为:%d分钟\n", value);
} }
// 添加排泥远程控制处理 // 添加排泥远程控制处理

View File

@ -19,13 +19,13 @@
#define STATUS_REPORT_INTERVAL 1000 // 状态上报间隔(ms) #define STATUS_REPORT_INTERVAL 1000 // 状态上报间隔(ms)
#define MQTT_SERVER_IP "101.46.52.67" // 替换为你的MQTT服务器IP地址 #define MQTT_SERVER_IP "101.133.141.167" // 替换为你的MQTT服务器IP地址
#define MQTT_SERVER_PORT "1883" // 替换为你的MQTT服务器端口 #define MQTT_SERVER_PORT "1883" // 替换为你的MQTT服务器端口
#define MQTT_CLIENT_ID "LDMCU20250120A0001" // 替换为你的MQTT客户端ID #define MQTT_CLIENT_ID "LDMCU20250522A0002" // 替换为你的MQTT客户端ID
#define MQTT_USERNAME "ldhb" // 替换为你的MQTT用户名 #define MQTT_USERNAME "ldhb" // 替换为你的MQTT用户名
#define MQTT_PASSWORD "ldhb0813" // 替换为你的MQTT密码 #define MQTT_PASSWORD "ldhb0813" // 替换为你的MQTT密码
#define MQTT_TOPIC "/server/coo/LDMCU20250120A0001" // 替换为你的MQTT订阅主题 #define MQTT_TOPIC "/server/coo/LDMCU20250522A0002" // 替换为你的MQTT订阅主题
#define MQTT_PUB_TOPIC "/dev/coo/LDMCU20250120A0001" // 替换为你的MQTT订阅主题 #define MQTT_PUB_TOPIC "/dev/coo/LDMCU20250522A0002" // 替换为你的MQTT订阅主题
#define ICCID_LENGTH 20 #define ICCID_LENGTH 20

View File

@ -302,3 +302,7 @@
[info] Log at : 2025/5/20|10:41:17|GMT+0800 [info] Log at : 2025/5/20|10:41:17|GMT+0800
[info] Log at : 2025/5/23|13:01:47|GMT+0800
[info] Log at : 2025/5/23|13:05:07|GMT+0800

View File

@ -1,4 +1,20 @@
*** Using Compiler 'V5.06 update 7 (build 960)', folder: 'E:\MDK536\ARM\ARMCC\Bin' *** Using Compiler 'V5.06 update 7 (build 960)', folder: 'E:\MDK536\ARM\ARMCC\Bin'
Build target '4G_test' Build target '4G_test'
compiling Inf_4G.c...
compiling Ozone.c...
compiling wendu.c...
compiling Irrigation.c...
compiling main.c...
compiling stm32f4xx_it.c...
compiling Driver.c...
compiling HLW8032.c...
compiling electrode.c...
compiling paini.c...
compiling shuiliang.c...
compiling Save_Time.c...
compiling guangshi.c...
linking...
Program Size: Code=35144 RO-data=896 RW-data=572 ZI-data=4092
FromELF: creating hex file...
"4G_test\4G_test.axf" - 0 Error(s), 0 Warning(s). "4G_test\4G_test.axf" - 0 Error(s), 0 Warning(s).
Build Time Elapsed: 00:00:03 Build Time Elapsed: 00:00:34

View File

@ -1 +1 @@
2025/5/20 15:04:57 2025/5/22 13:48:36

Binary file not shown.

View File

@ -27,6 +27,22 @@ Project File Date: 04/22/2025
<h2>Output:</h2> <h2>Output:</h2>
*** Using Compiler 'V5.06 update 7 (build 960)', folder: 'E:\MDK536\ARM\ARMCC\Bin' *** Using Compiler 'V5.06 update 7 (build 960)', folder: 'E:\MDK536\ARM\ARMCC\Bin'
Build target '4G_test' Build target '4G_test'
compiling Inf_4G.c...
compiling Ozone.c...
compiling wendu.c...
compiling Irrigation.c...
compiling main.c...
compiling stm32f4xx_it.c...
compiling Driver.c...
compiling HLW8032.c...
compiling electrode.c...
compiling paini.c...
compiling shuiliang.c...
compiling Save_Time.c...
compiling guangshi.c...
linking...
Program Size: Code=35144 RO-data=896 RW-data=572 ZI-data=4092
FromELF: creating hex file...
"4G_test\4G_test.axf" - 0 Error(s), 0 Warning(s). "4G_test\4G_test.axf" - 0 Error(s), 0 Warning(s).
<h2>Software Packages used:</h2> <h2>Software Packages used:</h2>
@ -51,7 +67,7 @@ Package Vendor: Keil
* Component: ARM::CMSIS:CORE:5.5.0 * Component: ARM::CMSIS:CORE:5.5.0
Include file: CMSIS\Core\Include\tz_context.h Include file: CMSIS\Core\Include\tz_context.h
Build Time Elapsed: 00:00:03 Build Time Elapsed: 00:00:34
</pre> </pre>
</body> </body>
</html> </html>

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
Dependencies for Project '4G_test', Target '4G_test': (DO NOT MODIFY !) Dependencies for Project '4G_test', Target '4G_test': (DO NOT MODIFY !)
CompilerVersion: 5060960::V5.06 update 7 (build 960)::.\ARMCC CompilerVersion: 5060960::V5.06 update 7 (build 960)::.\ARMCC
F (startup_stm32f407xx.s)(0x6801A71B)(--cpu Cortex-M4.fp.sp -g --apcs=interwork --pd "__MICROLIB SETA 1" -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include --pd "__UVISION_VERSION SETA 536" --pd "_RTE_ SETA 1" --pd "STM32F407xx SETA 1" --pd "_RTE_ SETA 1" --list startup_stm32f407xx.lst --xref -o 4g_test\startup_stm32f407xx.o --depend 4g_test\startup_stm32f407xx.d) F (startup_stm32f407xx.s)(0x6801A71B)(--cpu Cortex-M4.fp.sp -g --apcs=interwork --pd "__MICROLIB SETA 1" -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include --pd "__UVISION_VERSION SETA 536" --pd "_RTE_ SETA 1" --pd "STM32F407xx SETA 1" --pd "_RTE_ SETA 1" --list startup_stm32f407xx.lst --xref -o 4g_test\startup_stm32f407xx.o --depend 4g_test\startup_stm32f407xx.d)
F (../Core/Src/main.c)(0x682BEC28)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\main.o --omf_browse 4g_test\main.crf --depend 4g_test\main.d) F (../Core/Src/main.c)(0x682D60E6)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\main.o --omf_browse 4g_test\main.crf --depend 4g_test\main.d)
I (../Core/Inc/main.h)(0x6800B78A) I (../Core/Inc/main.h)(0x6800B78A)
I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h)(0x676CC4D6) I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h)(0x676CC4D6)
I (../Core/Inc/stm32f4xx_hal_conf.h)(0x67AD9C50) I (../Core/Inc/stm32f4xx_hal_conf.h)(0x67AD9C50)
@ -45,7 +45,7 @@ I (../Core/Inc/tim.h)(0x67D2914F)
I (../Core/Inc/usart.h)(0x67AD5D28) I (../Core/Inc/usart.h)(0x67AD5D28)
I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374) I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374)
I (../Core/Inc/gpio.h)(0x6784B27B) I (../Core/Inc/gpio.h)(0x6784B27B)
I (../Inf/Inf_4G.h)(0x6822DCC7) I (../Inf/Inf_4G.h)(0x682EBA87)
I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E) I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E)
I (E:\MDK536\ARM\ARMCC\include\stdlib.h)(0x60252374) I (E:\MDK536\ARM\ARMCC\include\stdlib.h)(0x60252374)
I (../Driver/Driver.h)(0x68006484) I (../Driver/Driver.h)(0x68006484)
@ -56,7 +56,7 @@ I (../App/wendu/wendu.h)(0x682AE06F)
I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378) I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378)
I (../App/HLW8032/HLW8032.h)(0x67BEC1E4) I (../App/HLW8032/HLW8032.h)(0x67BEC1E4)
I (../App/Ozone/Ozone.h)(0x682AED88) I (../App/Ozone/Ozone.h)(0x682AED88)
I (../App/electrode/electrode.h)(0x681D6D25) I (../App/electrode/electrode.h)(0x682D6241)
I (../App/gungshi/guangshi.h)(0x6801C60B) I (../App/gungshi/guangshi.h)(0x6801C60B)
I (../App/energy_manager/energy_manager.h)(0x67BEC1E4) I (../App/energy_manager/energy_manager.h)(0x67BEC1E4)
I (../App/paini/paini.h)(0x68060714) I (../App/paini/paini.h)(0x68060714)
@ -332,7 +332,7 @@ I (../Core/Inc/usart.h)(0x67AD5D28)
I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374) I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374)
I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E) I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E)
I (../Core/Inc/i2c.h)(0x67AD9C4F) I (../Core/Inc/i2c.h)(0x67AD9C4F)
I (../Inf/Inf_4G.h)(0x6822DCC7) I (../Inf/Inf_4G.h)(0x682EBA87)
I (../Core/Inc/tim.h)(0x67D2914F) I (../Core/Inc/tim.h)(0x67D2914F)
I (E:\MDK536\ARM\ARMCC\include\stdlib.h)(0x60252374) I (E:\MDK536\ARM\ARMCC\include\stdlib.h)(0x60252374)
I (../Driver/Driver.h)(0x68006484) I (../Driver/Driver.h)(0x68006484)
@ -343,7 +343,7 @@ I (../App/wendu/wendu.h)(0x682AE06F)
I (../Core/Inc/adc.h)(0x6800C35F) I (../Core/Inc/adc.h)(0x6800C35F)
I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378) I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378)
I (../App/Ozone/Ozone.h)(0x682AED88) I (../App/Ozone/Ozone.h)(0x682AED88)
I (../App/electrode/electrode.h)(0x681D6D25) I (../App/electrode/electrode.h)(0x682D6241)
I (../App/gungshi/guangshi.h)(0x6801C60B) I (../App/gungshi/guangshi.h)(0x6801C60B)
F (../Core/Src/stm32f4xx_hal_msp.c)(0x6784B27B)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\stm32f4xx_hal_msp.o --omf_browse 4g_test\stm32f4xx_hal_msp.crf --depend 4g_test\stm32f4xx_hal_msp.d) F (../Core/Src/stm32f4xx_hal_msp.c)(0x6784B27B)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\stm32f4xx_hal_msp.o --omf_browse 4g_test\stm32f4xx_hal_msp.crf --depend 4g_test\stm32f4xx_hal_msp.d)
I (../Core/Inc/main.h)(0x6800B78A) I (../Core/Inc/main.h)(0x6800B78A)
@ -1139,8 +1139,8 @@ I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h)(0x676CC4D6)
I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h)(0x676CC4D6) I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h)(0x676CC4D6)
I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h)(0x676CC4D6) I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h)(0x676CC4D6)
I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h)(0x676CC4D6) I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h)(0x676CC4D6)
F (..\Inf\Inf_4G.c)(0x682AF0DB)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\inf_4g.o --omf_browse 4g_test\inf_4g.crf --depend 4g_test\inf_4g.d) F (..\Inf\Inf_4G.c)(0x682D6204)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\inf_4g.o --omf_browse 4g_test\inf_4g.crf --depend 4g_test\inf_4g.d)
I (..\Inf\Inf_4G.h)(0x6822DCC7) I (..\Inf\Inf_4G.h)(0x682EBA87)
I (../Core/Inc/usart.h)(0x67AD5D28) I (../Core/Inc/usart.h)(0x67AD5D28)
I (../Core/Inc/main.h)(0x6800B78A) I (../Core/Inc/main.h)(0x6800B78A)
I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h)(0x676CC4D6) I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h)(0x676CC4D6)
@ -1183,7 +1183,7 @@ I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E)
I (../Core/Inc/tim.h)(0x67D2914F) I (../Core/Inc/tim.h)(0x67D2914F)
I (E:\MDK536\ARM\ARMCC\include\stdlib.h)(0x60252374) I (E:\MDK536\ARM\ARMCC\include\stdlib.h)(0x60252374)
I (../Driver/Driver.h)(0x68006484) I (../Driver/Driver.h)(0x68006484)
I (../Inf/Inf_4G.h)(0x6822DCC7) I (../Inf/Inf_4G.h)(0x682EBA87)
I (../App/Irrigation/Irrigation.h)(0x67FF225D) I (../App/Irrigation/Irrigation.h)(0x67FF225D)
I (../App/SaveTime/Save_Time.h)(0x67FE17E7) I (../App/SaveTime/Save_Time.h)(0x67FE17E7)
I (../App/EEPROM/EEPROM.h)(0x681C4BC2) I (../App/EEPROM/EEPROM.h)(0x681C4BC2)
@ -1193,7 +1193,7 @@ I (../Core/Inc/adc.h)(0x6800C35F)
I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378) I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378)
I (../App/HLW8032/HLW8032.h)(0x67BEC1E4) I (../App/HLW8032/HLW8032.h)(0x67BEC1E4)
I (../App/Ozone/Ozone.h)(0x682AED88) I (../App/Ozone/Ozone.h)(0x682AED88)
I (../App/electrode/electrode.h)(0x681D6D25) I (../App/electrode/electrode.h)(0x682D6241)
I (../App/gungshi/guangshi.h)(0x6801C60B) I (../App/gungshi/guangshi.h)(0x6801C60B)
F (..\Driver\Driver.c)(0x681D6468)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\driver.o --omf_browse 4g_test\driver.crf --depend 4g_test\driver.d) F (..\Driver\Driver.c)(0x681D6468)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\driver.o --omf_browse 4g_test\driver.crf --depend 4g_test\driver.d)
I (..\Driver\Driver.h)(0x68006484) I (..\Driver\Driver.h)(0x68006484)
@ -1234,7 +1234,7 @@ I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h)(0x676CC4D6)
I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h)(0x676CC4D6) I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h)(0x676CC4D6)
I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h)(0x676CC4D6) I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h)(0x676CC4D6)
I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374) I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374)
I (../Inf/Inf_4G.h)(0x6822DCC7) I (../Inf/Inf_4G.h)(0x682EBA87)
I (../Core/Inc/usart.h)(0x67AD5D28) I (../Core/Inc/usart.h)(0x67AD5D28)
I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E) I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E)
I (../Core/Inc/tim.h)(0x67D2914F) I (../Core/Inc/tim.h)(0x67D2914F)
@ -1249,7 +1249,7 @@ I (../Core/Inc/adc.h)(0x6800C35F)
I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378) I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378)
I (../App/HLW8032/HLW8032.h)(0x67BEC1E4) I (../App/HLW8032/HLW8032.h)(0x67BEC1E4)
I (../App/Ozone/Ozone.h)(0x682AED88) I (../App/Ozone/Ozone.h)(0x682AED88)
I (../App/electrode/electrode.h)(0x681D6D25) I (../App/electrode/electrode.h)(0x682D6241)
I (../App/gungshi/guangshi.h)(0x6801C60B) I (../App/gungshi/guangshi.h)(0x6801C60B)
F (..\Driver\Driver.h)(0x68006484)() F (..\Driver\Driver.h)(0x68006484)()
F (..\App\Irrigation\Irrigation.c)(0x6808D8D1)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\irrigation.o --omf_browse 4g_test\irrigation.crf --depend 4g_test\irrigation.d) F (..\App\Irrigation\Irrigation.c)(0x6808D8D1)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\irrigation.o --omf_browse 4g_test\irrigation.crf --depend 4g_test\irrigation.d)
@ -1297,7 +1297,7 @@ I (../App/EEPROM/EEPROM.h)(0x681C4BC2)
I (../Core/Inc/i2c.h)(0x67AD9C4F) I (../Core/Inc/i2c.h)(0x67AD9C4F)
I (E:\MDK536\ARM\ARMCC\include\String.h)(0x6025237E) I (E:\MDK536\ARM\ARMCC\include\String.h)(0x6025237E)
I (../App/Irrigation/Irrigation.h)(0x67FF225D) I (../App/Irrigation/Irrigation.h)(0x67FF225D)
I (../Inf/Inf_4G.h)(0x6822DCC7) I (../Inf/Inf_4G.h)(0x682EBA87)
I (../Core/Inc/usart.h)(0x67AD5D28) I (../Core/Inc/usart.h)(0x67AD5D28)
I (E:\MDK536\ARM\ARMCC\include\stdlib.h)(0x60252374) I (E:\MDK536\ARM\ARMCC\include\stdlib.h)(0x60252374)
I (../Driver/Driver.h)(0x68006484) I (../Driver/Driver.h)(0x68006484)
@ -1306,7 +1306,7 @@ I (../Core/Inc/adc.h)(0x6800C35F)
I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378) I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378)
I (../App/HLW8032/HLW8032.h)(0x67BEC1E4) I (../App/HLW8032/HLW8032.h)(0x67BEC1E4)
I (../App/Ozone/Ozone.h)(0x682AED88) I (../App/Ozone/Ozone.h)(0x682AED88)
I (../App/electrode/electrode.h)(0x681D6D25) I (../App/electrode/electrode.h)(0x682D6241)
I (../App/gungshi/guangshi.h)(0x6801C60B) I (../App/gungshi/guangshi.h)(0x6801C60B)
F (..\App\Ozone\Ozone.c)(0x682AED88)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\ozone.o --omf_browse 4g_test\ozone.crf --depend 4g_test\ozone.d) F (..\App\Ozone\Ozone.c)(0x682AED88)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\ozone.o --omf_browse 4g_test\ozone.crf --depend 4g_test\ozone.d)
I (..\App\Ozone\Ozone.h)(0x682AED88) I (..\App\Ozone\Ozone.h)(0x682AED88)
@ -1348,7 +1348,7 @@ I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h)(0x676CC4D6)
I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h)(0x676CC4D6) I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h)(0x676CC4D6)
I (../Driver/Driver.h)(0x68006484) I (../Driver/Driver.h)(0x68006484)
I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374) I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374)
I (../Inf/Inf_4G.h)(0x6822DCC7) I (../Inf/Inf_4G.h)(0x682EBA87)
I (../Core/Inc/usart.h)(0x67AD5D28) I (../Core/Inc/usart.h)(0x67AD5D28)
I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E) I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E)
I (../Core/Inc/tim.h)(0x67D2914F) I (../Core/Inc/tim.h)(0x67D2914F)
@ -1362,7 +1362,7 @@ I (../Core/Inc/adc.h)(0x6800C35F)
I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378) I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378)
I (../App/HLW8032/HLW8032.h)(0x67BEC1E4) I (../App/HLW8032/HLW8032.h)(0x67BEC1E4)
I (../App/Ozone/Ozone.h)(0x682AED88) I (../App/Ozone/Ozone.h)(0x682AED88)
I (../App/electrode/electrode.h)(0x681D6D25) I (../App/electrode/electrode.h)(0x682D6241)
I (../App/gungshi/guangshi.h)(0x6801C60B) I (../App/gungshi/guangshi.h)(0x6801C60B)
F (..\App\wendu\wendu.c)(0x682AE06F)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\wendu.o --omf_browse 4g_test\wendu.crf --depend 4g_test\wendu.d) F (..\App\wendu\wendu.c)(0x682AE06F)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\wendu.o --omf_browse 4g_test\wendu.crf --depend 4g_test\wendu.d)
I (..\App\wendu\wendu.h)(0x682AE06F) I (..\App\wendu\wendu.h)(0x682AE06F)
@ -1405,7 +1405,7 @@ I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h)(0x676CC4D6)
I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h)(0x676CC4D6) I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h)(0x676CC4D6)
I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374) I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374)
I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378) I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378)
I (../Inf/Inf_4G.h)(0x6822DCC7) I (../Inf/Inf_4G.h)(0x682EBA87)
I (../Core/Inc/usart.h)(0x67AD5D28) I (../Core/Inc/usart.h)(0x67AD5D28)
I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E) I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E)
I (../Core/Inc/tim.h)(0x67D2914F) I (../Core/Inc/tim.h)(0x67D2914F)
@ -1418,7 +1418,7 @@ I (../Core/Inc/i2c.h)(0x67AD9C4F)
I (../App/wendu/wendu.h)(0x682AE06F) I (../App/wendu/wendu.h)(0x682AE06F)
I (../App/HLW8032/HLW8032.h)(0x67BEC1E4) I (../App/HLW8032/HLW8032.h)(0x67BEC1E4)
I (../App/Ozone/Ozone.h)(0x682AED88) I (../App/Ozone/Ozone.h)(0x682AED88)
I (../App/electrode/electrode.h)(0x681D6D25) I (../App/electrode/electrode.h)(0x682D6241)
I (../App/gungshi/guangshi.h)(0x6801C60B) I (../App/gungshi/guangshi.h)(0x6801C60B)
F (..\App\HLW8032\HLW8032.c)(0x681C4BC2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\hlw8032.o --omf_browse 4g_test\hlw8032.crf --depend 4g_test\hlw8032.d) F (..\App\HLW8032\HLW8032.c)(0x681C4BC2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\hlw8032.o --omf_browse 4g_test\hlw8032.crf --depend 4g_test\hlw8032.d)
I (..\App\HLW8032\HLW8032.h)(0x67BEC1E4) I (..\App\HLW8032\HLW8032.h)(0x67BEC1E4)
@ -1462,7 +1462,7 @@ I (../Core/Inc/usart.h)(0x67AD5D28)
I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374) I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374)
I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E) I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E)
I (../Core/Inc/i2c.h)(0x67AD9C4F) I (../Core/Inc/i2c.h)(0x67AD9C4F)
I (../Inf/Inf_4G.h)(0x6822DCC7) I (../Inf/Inf_4G.h)(0x682EBA87)
I (../Core/Inc/tim.h)(0x67D2914F) I (../Core/Inc/tim.h)(0x67D2914F)
I (E:\MDK536\ARM\ARMCC\include\stdlib.h)(0x60252374) I (E:\MDK536\ARM\ARMCC\include\stdlib.h)(0x60252374)
I (../Driver/Driver.h)(0x68006484) I (../Driver/Driver.h)(0x68006484)
@ -1474,7 +1474,7 @@ I (../Core/Inc/adc.h)(0x6800C35F)
I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378) I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378)
I (../App/HLW8032/HLW8032.h)(0x67BEC1E4) I (../App/HLW8032/HLW8032.h)(0x67BEC1E4)
I (../App/Ozone/Ozone.h)(0x682AED88) I (../App/Ozone/Ozone.h)(0x682AED88)
I (../App/electrode/electrode.h)(0x681D6D25) I (../App/electrode/electrode.h)(0x682D6241)
I (../App/gungshi/guangshi.h)(0x6801C60B) I (../App/gungshi/guangshi.h)(0x6801C60B)
F (..\App\EEPROM\EEPROM.c)(0x681C4BC2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\eeprom.o --omf_browse 4g_test\eeprom.crf --depend 4g_test\eeprom.d) F (..\App\EEPROM\EEPROM.c)(0x681C4BC2)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\eeprom.o --omf_browse 4g_test\eeprom.crf --depend 4g_test\eeprom.d)
I (..\App\EEPROM\EEPROM.h)(0x681C4BC2) I (..\App\EEPROM\EEPROM.h)(0x681C4BC2)
@ -1518,8 +1518,8 @@ I (../Core/Inc/i2c.h)(0x67AD9C4F)
I (E:\MDK536\ARM\ARMCC\include\String.h)(0x6025237E) I (E:\MDK536\ARM\ARMCC\include\String.h)(0x6025237E)
I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374) I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374)
F (..\App\energy_manager\energy_manager.c)(0x67BEC1E4)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\energy_manager.o --omf_browse 4g_test\energy_manager.crf --depend 4g_test\energy_manager.d) F (..\App\energy_manager\energy_manager.c)(0x67BEC1E4)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\energy_manager.o --omf_browse 4g_test\energy_manager.crf --depend 4g_test\energy_manager.d)
F (..\App\electrode\electrode.c)(0x681D6B10)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\electrode.o --omf_browse 4g_test\electrode.crf --depend 4g_test\electrode.d) F (..\App\electrode\electrode.c)(0x682D6134)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\electrode.o --omf_browse 4g_test\electrode.crf --depend 4g_test\electrode.d)
I (..\App\electrode\electrode.h)(0x681D6D25) I (..\App\electrode\electrode.h)(0x682D6241)
I (../Core/Inc/main.h)(0x6800B78A) I (../Core/Inc/main.h)(0x6800B78A)
I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h)(0x676CC4D6) I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h)(0x676CC4D6)
I (../Core/Inc/stm32f4xx_hal_conf.h)(0x67AD9C50) I (../Core/Inc/stm32f4xx_hal_conf.h)(0x67AD9C50)
@ -1558,7 +1558,7 @@ I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h)(0x676CC4D6)
I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h)(0x676CC4D6) I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h)(0x676CC4D6)
I (../Driver/Driver.h)(0x68006484) I (../Driver/Driver.h)(0x68006484)
I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374) I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374)
I (../Inf/Inf_4G.h)(0x6822DCC7) I (../Inf/Inf_4G.h)(0x682EBA87)
I (../Core/Inc/usart.h)(0x67AD5D28) I (../Core/Inc/usart.h)(0x67AD5D28)
I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E) I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E)
I (../Core/Inc/tim.h)(0x67D2914F) I (../Core/Inc/tim.h)(0x67D2914F)
@ -1572,7 +1572,7 @@ I (../Core/Inc/adc.h)(0x6800C35F)
I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378) I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378)
I (../App/HLW8032/HLW8032.h)(0x67BEC1E4) I (../App/HLW8032/HLW8032.h)(0x67BEC1E4)
I (../App/Ozone/Ozone.h)(0x682AED88) I (../App/Ozone/Ozone.h)(0x682AED88)
I (../App/electrode/electrode.h)(0x681D6D25) I (../App/electrode/electrode.h)(0x682D6241)
I (../App/gungshi/guangshi.h)(0x6801C60B) I (../App/gungshi/guangshi.h)(0x6801C60B)
F (..\App\gungshi\guangshi.c)(0x6801C582)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\guangshi.o --omf_browse 4g_test\guangshi.crf --depend 4g_test\guangshi.d) F (..\App\gungshi\guangshi.c)(0x6801C582)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\guangshi.o --omf_browse 4g_test\guangshi.crf --depend 4g_test\guangshi.d)
I (..\App\gungshi\guangshi.h)(0x6801C60B) I (..\App\gungshi\guangshi.h)(0x6801C60B)
@ -1614,7 +1614,7 @@ I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h)(0x676CC4D6)
I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h)(0x676CC4D6) I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h)(0x676CC4D6)
I (../Driver/Driver.h)(0x68006484) I (../Driver/Driver.h)(0x68006484)
I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374) I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374)
I (../Inf/Inf_4G.h)(0x6822DCC7) I (../Inf/Inf_4G.h)(0x682EBA87)
I (../Core/Inc/usart.h)(0x67AD5D28) I (../Core/Inc/usart.h)(0x67AD5D28)
I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E) I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E)
I (../Core/Inc/tim.h)(0x67D2914F) I (../Core/Inc/tim.h)(0x67D2914F)
@ -1628,9 +1628,9 @@ I (../Core/Inc/adc.h)(0x6800C35F)
I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378) I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378)
I (../App/HLW8032/HLW8032.h)(0x67BEC1E4) I (../App/HLW8032/HLW8032.h)(0x67BEC1E4)
I (../App/Ozone/Ozone.h)(0x682AED88) I (../App/Ozone/Ozone.h)(0x682AED88)
I (../App/electrode/electrode.h)(0x681D6D25) I (../App/electrode/electrode.h)(0x682D6241)
I (../App/gungshi/guangshi.h)(0x6801C60B) I (../App/gungshi/guangshi.h)(0x6801C60B)
F (..\App\paini\paini.c)(0x68060727)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\paini.o --omf_browse 4g_test\paini.crf --depend 4g_test\paini.d) F (..\App\paini\paini.c)(0x682D6339)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\paini.o --omf_browse 4g_test\paini.crf --depend 4g_test\paini.d)
I (..\App\paini\paini.h)(0x68060714) I (..\App\paini\paini.h)(0x68060714)
I (../Core/Inc/main.h)(0x6800B78A) I (../Core/Inc/main.h)(0x6800B78A)
I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h)(0x676CC4D6) I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h)(0x676CC4D6)
@ -1670,7 +1670,7 @@ I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h)(0x676CC4D6)
I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h)(0x676CC4D6) I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h)(0x676CC4D6)
I (../Driver/Driver.h)(0x68006484) I (../Driver/Driver.h)(0x68006484)
I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374) I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374)
I (../Inf/Inf_4G.h)(0x6822DCC7) I (../Inf/Inf_4G.h)(0x682EBA87)
I (../Core/Inc/usart.h)(0x67AD5D28) I (../Core/Inc/usart.h)(0x67AD5D28)
I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E) I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E)
I (../Core/Inc/tim.h)(0x67D2914F) I (../Core/Inc/tim.h)(0x67D2914F)
@ -1684,7 +1684,7 @@ I (../Core/Inc/adc.h)(0x6800C35F)
I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378) I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378)
I (../App/HLW8032/HLW8032.h)(0x67BEC1E4) I (../App/HLW8032/HLW8032.h)(0x67BEC1E4)
I (../App/Ozone/Ozone.h)(0x682AED88) I (../App/Ozone/Ozone.h)(0x682AED88)
I (../App/electrode/electrode.h)(0x681D6D25) I (../App/electrode/electrode.h)(0x682D6241)
I (../App/gungshi/guangshi.h)(0x6801C60B) I (../App/gungshi/guangshi.h)(0x6801C60B)
F (..\App\shuiliang\shuiliang.c)(0x67D22AC9)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\shuiliang.o --omf_browse 4g_test\shuiliang.crf --depend 4g_test\shuiliang.d) F (..\App\shuiliang\shuiliang.c)(0x67D22AC9)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\shuiliang.o --omf_browse 4g_test\shuiliang.crf --depend 4g_test\shuiliang.d)
I (../Driver/Driver.h)(0x68006484) I (../Driver/Driver.h)(0x68006484)
@ -1725,7 +1725,7 @@ I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim.h)(0x676CC4D6)
I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h)(0x676CC4D6) I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_tim_ex.h)(0x676CC4D6)
I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h)(0x676CC4D6) I (../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h)(0x676CC4D6)
I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374) I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374)
I (../Inf/Inf_4G.h)(0x6822DCC7) I (../Inf/Inf_4G.h)(0x682EBA87)
I (../Core/Inc/usart.h)(0x67AD5D28) I (../Core/Inc/usart.h)(0x67AD5D28)
I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E) I (E:\MDK536\ARM\ARMCC\include\string.h)(0x6025237E)
I (../Core/Inc/tim.h)(0x67D2914F) I (../Core/Inc/tim.h)(0x67D2914F)
@ -1739,7 +1739,7 @@ I (../Core/Inc/adc.h)(0x6800C35F)
I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378) I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378)
I (../App/HLW8032/HLW8032.h)(0x67BEC1E4) I (../App/HLW8032/HLW8032.h)(0x67BEC1E4)
I (../App/Ozone/Ozone.h)(0x682AED88) I (../App/Ozone/Ozone.h)(0x682AED88)
I (../App/electrode/electrode.h)(0x681D6D25) I (../App/electrode/electrode.h)(0x682D6241)
I (../App/gungshi/guangshi.h)(0x6801C60B) I (../App/gungshi/guangshi.h)(0x6801C60B)
F (..\App\SaveTime\Save_Time.c)(0x681C232B)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\save_time.o --omf_browse 4g_test\save_time.crf --depend 4g_test\save_time.d) F (..\App\SaveTime\Save_Time.c)(0x681C232B)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\save_time.o --omf_browse 4g_test\save_time.crf --depend 4g_test\save_time.d)
I (..\App\SaveTime\Save_Time.h)(0x67FE17E7) I (..\App\SaveTime\Save_Time.h)(0x67FE17E7)
@ -1786,7 +1786,7 @@ I (../App/Irrigation/Irrigation.h)(0x67FF225D)
I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374) I (E:\MDK536\ARM\ARMCC\include\stdio.h)(0x60252374)
I (../Core/Inc/tim.h)(0x67D2914F) I (../Core/Inc/tim.h)(0x67D2914F)
I (../App/SaveTime/Save_Time.h)(0x67FE17E7) I (../App/SaveTime/Save_Time.h)(0x67FE17E7)
I (../Inf/Inf_4G.h)(0x6822DCC7) I (../Inf/Inf_4G.h)(0x682EBA87)
I (../Core/Inc/usart.h)(0x67AD5D28) I (../Core/Inc/usart.h)(0x67AD5D28)
I (E:\MDK536\ARM\ARMCC\include\stdlib.h)(0x60252374) I (E:\MDK536\ARM\ARMCC\include\stdlib.h)(0x60252374)
I (../Driver/Driver.h)(0x68006484) I (../Driver/Driver.h)(0x68006484)
@ -1795,6 +1795,6 @@ I (../Core/Inc/adc.h)(0x6800C35F)
I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378) I (E:\MDK536\ARM\ARMCC\include\math.h)(0x60252378)
I (../App/HLW8032/HLW8032.h)(0x67BEC1E4) I (../App/HLW8032/HLW8032.h)(0x67BEC1E4)
I (../App/Ozone/Ozone.h)(0x682AED88) I (../App/Ozone/Ozone.h)(0x682AED88)
I (../App/electrode/electrode.h)(0x681D6D25) I (../App/electrode/electrode.h)(0x682D6241)
I (../App/gungshi/guangshi.h)(0x6801C60B) I (../App/gungshi/guangshi.h)(0x6801C60B)
F (..\App\solar_energy\solar_energy.c)(0x682BEC5B)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\solar_energy.o --omf_browse 4g_test\solar_energy.crf --depend 4g_test\solar_energy.d) F (..\App\solar_energy\solar_energy.c)(0x682BEC5B)(--c99 -c --cpu Cortex-M4.fp.sp -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc -I ../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I ../Drivers/CMSIS/Include -I ../Inf -I ../Driver -I ../App/Irrigation -I ../App/Ozone -I ../App/wendu -I ../App/HLW8032 -I ../App/EEPROM -I ../App/energy_manager -I ../App/electrode -I ../App/gungshi -I ../App/paini -I ../App/shuiliang -I ../App/SaveTime -I ../App/solar_energy -I.\RTE\_4G_test -IE:\MDK536\Packs\ARM\CMSIS\5.8.0\CMSIS\Core\Include -IE:\MDK536\Packs\Keil\STM32F4xx_DFP\2.15.0\Drivers\CMSIS\Device\ST\STM32F4xx\Include -D__UVISION_VERSION="536" -D_RTE_ -DSTM32F407xx -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F407xx -o 4g_test\solar_energy.o --omf_browse 4g_test\solar_energy.crf --depend 4g_test\solar_energy.d)

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.