瀏覽代碼

2021-04-09 / Eason Yang
Action
1. Fixed : forgot to add [;] for the end of coding.

File
1. main.c
Action 1

Version : V0.68.XX.XXXX.XX

8009 4 年之前
父節點
當前提交
37475e08bb

二進制
EVSE/Projects/AW-ChargeLab/Images/FactoryDefaultConfig.bin


二進制
EVSE/Projects/AW-ChargeLab/Images/ramdisk.gz


+ 2 - 2
EVSE/Projects/AW-Regular/Apps/main.c

@@ -2985,7 +2985,7 @@ void checkReset()
 
 				DEBUG_INFO("%s reset request by OCPP.\n", ShmOCPP16Data->Reset.Type);
 				for(int gun_index = 0;gun_index<AC_QUANTITY;gun_index++)
-					setChargerMode(gun_index, SYS_MODE_BOOTING)
+					setChargerMode(gun_index, SYS_MODE_BOOTING);
 				if(strcmp((char*)ShmOCPP16Data->Reset.Type, "Hard") == 0)
 				{
 					system("sync");
@@ -3016,7 +3016,7 @@ void checkReset()
 
 				DEBUG_INFO("%s reset request by OCPP.\n", ShmOCPP20Data->Reset.type);
 				for(int gun_index = 0;gun_index<AC_QUANTITY;gun_index++)
-					setChargerMode(gun_index, SYS_MODE_BOOTING)
+					setChargerMode(gun_index, SYS_MODE_BOOTING);
 				if(strcmp((char*)ShmOCPP20Data->Reset.type, "Immediate") == 0)
 				{