Browse Source

Merge branch 'master' into AX80

FolusWen 3 năm trước cách đây
mục cha
commit
a961ea48f5

+ 92 - 31
EVSE/Modularization/Module_RatedCurrent.c

@@ -25,6 +25,7 @@ static SymStruct modelTable[] = {
     { "AC", MODEL_AC },
     { "AW", MODEL_AW },
     { "AP", MODEL_AP },
+	{ "AX", MODEL_AX },
     { "DW", MODEL_DW },
     { "DS", MODEL_DS },
     { "DM", MODEL_DM },
@@ -32,6 +33,10 @@ static SymStruct modelTable[] = {
     //{ "DM", MODEL_DM },
     { "DD", MODEL_DD },
     { "DO", MODEL_DO },
+	{ "DQ", MODEL_DQ },
+	{ "DK", MODEL_DK },
+	{ "DX", MODEL_DX },
+
 };
 
 static SymStruct regulationTable[] = {
@@ -54,9 +59,11 @@ static SymStruct regulationTable[] = {
 static SymStruct powerTable[] = {
     {"30", POWER_30W},
     {"60", POWER_60W},
+	{"80", POWER_80W},
     {"90", POWER_90W},
     {"12", POWER_120W},
     {"15", POWER_150W},
+	{"16", POWER_160W},
     {"18", POWER_180W},
     {"24", POWER_240W},
     {"36", POWER_360W},
@@ -87,6 +94,11 @@ static SymStruct gunTypeTable[] = {
     {"N", GUN_TYPE_N},
     {"P", GUN_TYPE_P},
     {"R", GUN_TYPE_R},
+	{"C", GUN_TYPE_C},
+	{"W", GUN_TYPE_W},
+	{"B", GUN_TYPE_B},
+	{"H", GUN_TYPE_H},
+	{"A", GUN_TYPE_A},
 };
 
 //------------------------------------------------------------------------------
@@ -147,41 +159,79 @@ static int keyfromstring(char *key, SymStruct *table, int tableCount)
 }
 
 //------------------------------------------------------------------------------
-static uint16_t defaultRatedCurrent(uint32_t gunType)
+static uint16_t defaultRatedCurrent(uint32_t gunType, int powerKey)
 {
+	uint16_t ret = RC_0A;
+
+	if(powerKey == BADKEY)
+		powerKey = POWER_30W;
+
     switch (gunType) {
     case GUN_TYPE_J:
-        return RC_125A;
+    	if(powerKey == POWER_30W)
+    		ret = RC_60A;
+    	else if(powerKey >= POWER_60W)
+    		ret =  RC_120A;
         break;
 
     case GUN_TYPE_U:
     case GUN_TYPE_E:
+    	if(powerKey == POWER_30W)
+    		ret =  RC_60A;
+		else if(powerKey == POWER_60W)
+			ret =  RC_120A;
+		else if(powerKey > POWER_60W)
+			ret =  RC_200A;
+		break;
+
+    case GUN_TYPE_G:
+	case GUN_TYPE_B:
+		if(powerKey == POWER_30W)
+			ret =  RC_60A;
+		else if(powerKey == POWER_60W)
+			ret =  RC_120A;
+		else if(powerKey > POWER_60W)
+			ret =  RC_250A;
+		break;
+
+	case GUN_TYPE_M:
+	case GUN_TYPE_N:
+		if(powerKey == POWER_30W)
+			ret =  RC_80A;
+		else if(powerKey == POWER_60W)
+			ret =  RC_120A;
+		else if(powerKey > POWER_60W)
+			ret =  RC_200A;
+		break;
+
     case GUN_TYPE_K:
-        return RC_200A;
+    	ret = RC_200A;
         break;
 
     case GUN_TYPE_V:
     case GUN_TYPE_F:
     case GUN_TYPE_P:
     case GUN_TYPE_R:
-        return RC_500A;
-        break;
-
-    case GUN_TYPE_G:
-        return RC_250A;
+    	ret = RC_500A;
         break;
 
     case GUN_TYPE_T:
     case GUN_TYPE_D:
-        return RC_300A;
+    	ret = RC_300A;
         break;
 
-    case GUN_TYPE_M:
-    case GUN_TYPE_N:
-        return RC_80A;
-        break;
+    case GUN_TYPE_H:
+    	ret = RC_500A;
+    	break;
+
+    case GUN_TYPE_A:
+    	ret = RC_400A;
+    	break;
 
     case GUN_TYPE_0:
+    	ret = RC_0A;
+		break;
+
     case GUN_TYPE_1:
     case GUN_TYPE_2:
     case GUN_TYPE_3:
@@ -195,6 +245,8 @@ static uint16_t defaultRatedCurrent(uint32_t gunType)
         return RC_0A;
         break;
     }
+
+    return ret;
 }
 
 static uint16_t exchangeRatingCur(uint32_t key)
@@ -206,25 +258,24 @@ static uint16_t exchangeRatingCur(uint32_t key)
 
     case DW_CE_30_E:
     case DM_CE_30_E:
-        return RC_60A; //rating current 60A
 
-    //65A U
+    //60A U
     case DW_UL_30_U:
     case DM_UL_30_U:
 
     case DW_CNS_30_U:
     case DM_CNS_30_U:
-        return RC_65A;
 
-    //80A J
+    //60A J
     case DW_UL_30_J:
     case DM_UL_30_J:
     case DW_CNS_30_J:
     case DM_CNS_30_J:
 
-    //80A G
+    //60A G
     case DM_CNS_30_G:
     case DS_UL_30_G:
+    	return RC_60A; //rating current 60A
 
     //80A M
     case DW_CE_30_M:
@@ -237,7 +288,7 @@ static uint16_t exchangeRatingCur(uint32_t key)
     case DM_CNS_30_N:
         return RC_80A; //rating current 80A
 
-    //125A J
+    //120A J
     case DS_CE_60_J:
     case DS_CE_90_J:
     case DS_CE_120_J:
@@ -256,14 +307,14 @@ static uint16_t exchangeRatingCur(uint32_t key)
     case DS_CNS_150_J:
     case DS_CNS_180_J:
 
-    //125A U
+    //120A U
     case DS_UL_60_U:
 
     case DS_CNS_60_U:
 
-    //125A E
+    //120A E
     case DS_CE_60_E:
-        return RC_125A; //rating current 125A
+    	return RC_120A; //rating current 120A
 
     //200A U
     case DD_CE_180_U:
@@ -434,6 +485,9 @@ static void exchangeGunTypeAndVolValue(uint8_t key, GunTypeAndVolInfo *gunAndVol
         break;
 
     case GUN_TYPE_G:// : GBT DC
+    case GUN_TYPE_B:// : GBT YG PT1000
+    case GUN_TYPE_H:// : WOER GBT 500A
+    case GUN_TYPE_A:// : WOER GBT 400A
         pGunAndVol->GunType = Gun_Type_GB;
         pGunAndVol->GunVoltage = VOL_GBT;
         break;
@@ -449,6 +503,9 @@ static int exchangePowerValue(uint8_t key)
     case POWER_60W:
         return 600;
 
+    case POWER_80W:
+        return 800;
+
     case POWER_90W:
         return 900;
 
@@ -458,6 +515,9 @@ static int exchangePowerValue(uint8_t key)
     case POWER_150W:
         return 1500;
 
+    case POWER_160W:
+        return 1600;
+
     case POWER_180W:
         return 1800;
 
@@ -474,7 +534,8 @@ static int exchangePowerValue(uint8_t key)
         return 7200;
 
     default:
-        return 600;
+    	log_error("Power is not defined, return 30kw\r\n");
+        return 300;
         break;
     }
 }
@@ -491,16 +552,16 @@ int RatedCurrentParsing(char *pModuleName, void *pDestStruct)
     uint8_t gunTypeIndex = 0;
 
     uint8_t modelKey = 0;
-    uint8_t reguKey = 0;
-    uint8_t powerKey = 0;
-    uint8_t gunTypeKey = 0;
+    int reguKey = 0;
+    int powerKey = 0;
+    int gunTypeKey = 0;
     uint16_t ratingCurVal = 0;
     int i = 0;
     uint32_t ret = 0;
-    char model[2] = {'\0'};
-    char regulation[1] = {'\0'};
-    char power[2] = {'\0'};
-    char gunType[1] = {'\0'};
+    char model[3] = {'\0'};
+    char regulation[2] = {'\0'};
+    char power[3] = {'\0'};
+    char gunType[2] = {'\0'};
     ParsingRatedCur *pParsingInfo = NULL;
     RateCurInfo *pGunRateCurInfo = NULL;
     GunTypeAndVolInfo fGunAndVol = {0};
@@ -550,7 +611,7 @@ int RatedCurrentParsing(char *pModuleName, void *pDestStruct)
         ret = ((modelKey << 24) | (reguKey << 16) | (powerKey << 8) | gunTypeKey);
         ratingCurVal = exchangeRatingCur(ret);
         if (ratingCurVal == RC_0A) {
-            ratingCurVal = defaultRatedCurrent(gunTypeKey);
+            ratingCurVal = defaultRatedCurrent(gunTypeKey, powerKey);
         }
 
         memset((uint8_t *)&fGunAndVol, 0, sizeof(GunTypeAndVolInfo));

+ 28 - 15
EVSE/Modularization/Module_RatedCurrent.h

@@ -13,13 +13,17 @@
 #define MODEL_AC                                (0x01) //Ac EVse Cordset
 #define MODEL_AW                                (0x02) //Ac EVse Wallmount
 #define MODEL_AP                                (0x03) //Ac EVse Pedestal
-#define MODEL_DW                                (0x04) //Dc EVse Wallmount
-#define MODEL_DS                                (0x05) //Dc EVse Standalone
-#define MODEL_DM                                (0x06) //Dc EVse Moveable (Battery equipped)
-#define MODEL_DR                                (0x07) //Dc EVse Power Rack (without cabinet)
-//#define MODEL_DM                                (0x08) //Dc EVse Moveable (移動)
-#define MODEL_DD                                (0x09) //Dc EVse Dispenser
-#define MODEL_DO                                (0x0A) //Dc EVse Output power cabinet
+#define MODEL_AX								(0x04) //Ac EVSE Wallmount excellent
+#define MODEL_DW                                (0x05) //Dc EVse Wallmount
+#define MODEL_DS                                (0x06) //Dc EVse Standalone
+#define MODEL_DM                                (0x07) //Dc EVse Moveable (Battery equipped)
+#define MODEL_DR                                (0x08) //Dc EVse Power Rack (without cabinet)
+//#define MODEL_DM                                (0x09) //Dc EVse Moveable (移動)
+#define MODEL_DD                                (0x0A) //Dc EVse Dispenser
+#define MODEL_DO                                (0x0B) //Dc EVse Output power cabinet
+#define MODEL_DQ								(0x0C) //DC EVSE Infy 30KW GB
+#define MODEL_DK								(0x0D) //DC EVSE Power rack
+#define MODEL_DX								(0x0E) //DC EVSE Output Communication Box (Dispenser)
 
 //------------------------------------------------------------------------------
 // regulation key
@@ -44,14 +48,16 @@
 //------------------------------------------------------------------------------
 #define POWER_30W                               (0x01)
 #define POWER_60W                               (0x02)
-#define POWER_90W                               (0x03)
-#define POWER_120W                              (0x04)
-#define POWER_150W                              (0x05)
-#define POWER_180W                              (0x06)
-#define POWER_240W                              (0x07)
-#define POWER_360W                              (0x08)
-#define POWER_480W                              (0x09)
-#define POWER_720W                              (0x0A)
+#define POWER_80W                               (0x03)
+#define POWER_90W                               (0x04)
+#define POWER_120W                              (0x05)
+#define POWER_150W                              (0x06)
+#define POWER_160W                              (0x07)
+#define POWER_180W                              (0x08)
+#define POWER_240W                              (0x09)
+#define POWER_360W                              (0x0A)
+#define POWER_480W                              (0x0B)
+#define POWER_720W                              (0x0C)
 
 //------------------------------------------------------------------------------
 // gun type key
@@ -78,6 +84,11 @@
 #define GUN_TYPE_N                              (0x13) //CCS1 80A
 #define GUN_TYPE_P                              (0x14) //Phoenix CCS2 500A 水冷
 #define GUN_TYPE_R                              (0x15) //Phoenix CCS1 500A 水冷
+#define GUN_TYPE_C                              (0x16) //Reserved for ChaoJi
+#define GUN_TYPE_W                              (0x17) //Reserved for Wireless
+#define GUN_TYPE_B                              (0x18) //GBT YG PT1000
+#define GUN_TYPE_H                              (0x19) //WOER GBT 500A
+#define GUN_TYPE_A                              (0x1A) //WOER GBT 400A
 
 //------------------------------------------------------------------------------
 // rating current parameters
@@ -86,10 +97,12 @@
 #define RC_60A                                  (600)
 #define RC_65A                                  (650)
 #define RC_80A                                  (800)
+#define RC_120A                                 (1200)
 #define RC_125A                                 (1250)
 #define RC_200A                                 (2000)
 #define RC_250A                                 (2500)
 #define RC_300A                                 (3000)
+#define RC_400A                                 (4000)
 #define RC_500A                                 (5000)
 
 //------------------------------------------------------------------------------

+ 18 - 20
EVSE/Modularization/ocpp20/MessageHandler.c

@@ -18006,36 +18006,34 @@ int httpUploadFile(char *location, char *path, char *filename,char *url)
 
 int ftpUploadFile(char *location, char *user, char *password, int port, char *path, char *fnamePlusPath,char *filename)
 {
-	 struct hostent* server;
-	 char *IPbuffer;
-	 char ftpbuf[200];
-	 int systemresult;
-
-	  // To retrieve host information
-	 server = gethostbyname(location);
-	 // To convert an Internet network
-	 // address into ASCII string
-	 IPbuffer = inet_ntoa(*((struct in_addr*)
-			 	 server->h_addr_list[0]));
+	int result = FALSE;
+	char ftpbuf[200];
+	int systemresult;
+
+	/*
+	// Domaind name transfer to IP address
+	struct hostent* server;
+ 	char *IPbuffer;
+	server = gethostbyname(location);
+	IPbuffer = inet_ntoa(*((struct in_addr*)server->h_addr_list[0]));*/
 
 	memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf));
 
-	/* format : ftpput -u phihong -p y42j%2f4cj84 112.91.88.35 -P 21 /2020-02.zip ../mnt/2020-02.zip*/
-	/* format : ftpput -u  username -p passwd IP  target  source*/
-	sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,port/*21*/,path,filename,fnamePlusPath);
-	DEBUG_INFO("ftpbuf=%s\n",ftpbuf);
-	//sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path);
+	sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s", user, password, location, port/*21*/, path, filename, fnamePlusPath);
+	DEBUG_INFO("ftp command: %s\n",ftpbuf);
 	systemresult = system(ftpbuf);
 
-	DEBUG_INFO("systemresult=%d\n",systemresult);
 	if(systemresult != 0)
 	{
 		DEBUG_INFO("ftpput error!\n");
-		return FALSE;
+	}
+	else
+	{
+		result = TRUE;
+		DEBUG_INFO("ftpput OK!\n");
 	}
 
-	return TRUE;
-
+	return result;
 }
 
 //=========================================

+ 24 - 26
EVSE/Modularization/ocppfiles/MessageHandler.c

@@ -8504,7 +8504,7 @@ int handleChangeAvailabilityRequest(char *uuid, char *payload)
 {
 	mtrace();
 	int result = FAIL;
-    int gunIndex = 0;
+    int gunIndex = -1;
 	char typeStr[16]={0};
 	char comfirmstr[20];
 	int specificId = FALSE;
@@ -8517,7 +8517,7 @@ int handleChangeAvailabilityRequest(char *uuid, char *payload)
 	if(!is_error(ChangeAvailability))
 	{
 		// Required data
-		if(json_object_object_get(ChangeAvailability, "connectorId") != NULL)
+		if((json_object_object_get(ChangeAvailability, "connectorId") != NULL) && (json_object_get_type(json_object_object_get(ChangeAvailability, "connectorId")) == json_type_int))
 			gunIndex = json_object_get_int(json_object_object_get(ChangeAvailability, "connectorId"));
 
 		if(json_object_object_get(ChangeAvailability, "type") != NULL)
@@ -8526,7 +8526,7 @@ int handleChangeAvailabilityRequest(char *uuid, char *payload)
 	json_object_put(ChangeAvailability);
 
 
-	if((gunIndex != 0) && (gunIndex <= gunTotalNumber))
+	if((gunIndex > 0) && (gunIndex <= gunTotalNumber))
 	{
 		ShmOCPP16Data->ChangeAvailability[gunIndex - 1].ConnectorId= gunIndex;
 		sprintf((char *)ShmOCPP16Data->ChangeAvailability[gunIndex - 1].Type, "%s", typeStr);
@@ -8543,7 +8543,7 @@ int handleChangeAvailabilityRequest(char *uuid, char *payload)
 	memset(comfirmstr, 0, ARRAY_SIZE(comfirmstr));
 	sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
 
-	if((gunIndex  == 0) || (gunIndex <= gunTotalNumber))
+	if((gunIndex == 0) || ((gunIndex > 0) && (gunIndex <= gunTotalNumber)))
 	{
 		specificId = TRUE;
 	}
@@ -10731,7 +10731,7 @@ void* GetDiagnosticsProcess(void* data)
 			ShmOCPP16Data->SpMsg.bits.DiagnosticsStatusNotificationReq = 1;
 			sleep(3);
 
-		    isSuccess = ftpFile(host1, user, password, port, ftppath, fnamePlusPath, fnamePWithNoPath);
+		    isSuccess = ftpUploadFile(host1, user, password, port, ftppath, fnamePlusPath, fnamePWithNoPath);
 		    if(!isSuccess)
 			{
 				DEBUG_INFO("Diagnostics fail.\n");
@@ -17862,38 +17862,36 @@ int httpUploadFile(char *location, char *path, char *filename,char *url)
 	return TRUE;
 }
 
-int ftpFile(char *location, char *user, char *password, int port, char *path, char *fnamePlusPath,char *filename)
+int ftpUploadFile(char *location, char *user, char *password, int port, char *path, char *fnamePlusPath,char *filename)
 {
-	 struct hostent* server;
-	 char *IPbuffer;
-	 char ftpbuf[200];
-	 int systemresult;
-
-	  // To retrieve host information
-	 server = gethostbyname(location);
-	 // To convert an Internet network
-	 // address into ASCII string
-	 IPbuffer = inet_ntoa(*((struct in_addr*)
-			 	 server->h_addr_list[0]));
+	int result = FALSE;
+	char ftpbuf[200];
+	int systemresult;
+
+	/*
+	// Domaind name transfer to IP address
+	struct hostent* server;
+ 	char *IPbuffer;
+	server = gethostbyname(location);
+	IPbuffer = inet_ntoa(*((struct in_addr*)server->h_addr_list[0]));*/
 
 	memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf));
 
-	/* format : ftpput -u phihong -p y42j%2f4cj84 112.91.88.35 -P 21 /2020-02.zip ../mnt/2020-02.zip*/
-	/* format : ftpput -u  username -p passwd IP  target  source*/
-	sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,port/*21*/,path,filename,fnamePlusPath);
-	DEBUG_INFO("ftpbuf=%s\n",ftpbuf);
-	//sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path);
+	sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s", user, password, location, port/*21*/, path, filename, fnamePlusPath);
+	DEBUG_INFO("ftp command: %s\n",ftpbuf);
 	systemresult = system(ftpbuf);
 
-	DEBUG_INFO("systemresult=%d\n",systemresult);
 	if(systemresult != 0)
 	{
 		DEBUG_INFO("ftpput error!\n");
-		return FALSE;
+	}
+	else
+	{
+		result = TRUE;
+		DEBUG_INFO("ftpput OK!\n");
 	}
 
-	return TRUE;
-
+	return result;
 }
 
 int GetOcppServerURL()

+ 1 - 1
EVSE/Modularization/ocppfiles/MessageHandler.h

@@ -570,7 +570,7 @@ int ftpDownLoadFile(char *location, char *user, char *password, int port, char *
 void *UpdateFirmwareProcess(void* data);
 void* GetDiagnosticsProcess(void* data);
 int httpUploadFile(char *location, char *path, char *filename,char *url);
-int ftpFile(char *location, char *user, char *password, int port, char *path, char *fnamePlusPath,char *filename);
+int ftpUploadFile(char *location, char *user, char *password, int port, char *path, char *fnamePlusPath,char *filename);
 void LWS_Send(char * str);
 void LWS_SendNow(char * str);
 extern int queue_operation(int type, char *frontUUID, char *frontData);

+ 24 - 26
EVSE/Modularization/ocppph/MessageHandler.c

@@ -8240,7 +8240,7 @@ int handleChangeAvailabilityRequest(char *uuid, char *payload)
 {
 	mtrace();
 	int result = FAIL;
-    int gunIndex = 0;
+    int gunIndex = -1;
 	char typeStr[16]={0};
 	char comfirmstr[20];
 	int specificId = FALSE;
@@ -8253,7 +8253,7 @@ int handleChangeAvailabilityRequest(char *uuid, char *payload)
 	if(!is_error(ChangeAvailability))
 	{
 		// Required data
-		if(json_object_object_get(ChangeAvailability, "connectorId") != NULL)
+		if((json_object_object_get(ChangeAvailability, "connectorId") != NULL) && (json_object_get_type(json_object_object_get(ChangeAvailability, "connectorId")) == json_type_int))
 			gunIndex = json_object_get_int(json_object_object_get(ChangeAvailability, "connectorId"));
 
 		if(json_object_object_get(ChangeAvailability, "type") != NULL)
@@ -8262,7 +8262,7 @@ int handleChangeAvailabilityRequest(char *uuid, char *payload)
 	json_object_put(ChangeAvailability);
 
 
-	if((gunIndex != 0) && (gunIndex <= gunTotalNumber))
+	if((gunIndex > 0) && (gunIndex <= gunTotalNumber))
 	{
 		ShmOCPP16DataPH->ChangeAvailability[gunIndex - 1].ConnectorId= gunIndex;
 		sprintf((char *)ShmOCPP16DataPH->ChangeAvailability[gunIndex - 1].Type, "%s", typeStr);
@@ -8279,7 +8279,7 @@ int handleChangeAvailabilityRequest(char *uuid, char *payload)
 	memset(comfirmstr, 0, ARRAY_SIZE(comfirmstr));
 	sprintf(comfirmstr, "%s", AvailabilityStatusStr[Rejected] );
 
-	if((gunIndex  == 0) || (gunIndex <= gunTotalNumber))
+	if((gunIndex == 0) || ((gunIndex > 0) && (gunIndex <= gunTotalNumber)))
 	{
 		specificId = TRUE;
 	}
@@ -10470,7 +10470,7 @@ void* GetDiagnosticsProcess(void* data)
 			ShmOCPP16DataPH->SpMsg.bits.DiagnosticsStatusNotificationReq = 1;
 			sleep(3);
 
-		    isSuccess = ftpFile(host1, user, password, port, ftppath, fnamePlusPath, fnamePWithNoPath);
+		    isSuccess = ftpUploadFile(host1, user, password, port, ftppath, fnamePlusPath, fnamePWithNoPath);
 		    if(!isSuccess)
 			{
 				DEBUG_INFO("Diagnostics fail.\n");
@@ -17442,38 +17442,36 @@ int httpUploadFile(char *location, char *path, char *filename,char *url)
 	return TRUE;
 }
 
-int ftpFile(char *location, char *user, char *password, int port, char *path, char *fnamePlusPath,char *filename)
+int ftpUploadFile(char *location, char *user, char *password, int port, char *path, char *fnamePlusPath,char *filename)
 {
-	 struct hostent* server;
-	 char *IPbuffer;
-	 char ftpbuf[200];
-	 int systemresult;
-
-	  // To retrieve host information
-	 server = gethostbyname(location);
-	 // To convert an Internet network
-	 // address into ASCII string
-	 IPbuffer = inet_ntoa(*((struct in_addr*)
-			 	 server->h_addr_list[0]));
+	int result = FALSE;
+	char ftpbuf[200];
+	int systemresult;
+
+	/*
+	// Domaind name transfer to IP address
+	struct hostent* server;
+ 	char *IPbuffer;
+	server = gethostbyname(location);
+	IPbuffer = inet_ntoa(*((struct in_addr*)server->h_addr_list[0]));*/
 
 	memset(ftpbuf, 0, ARRAY_SIZE(ftpbuf));
 
-	/* format : ftpput -u phihong -p y42j%2f4cj84 112.91.88.35 -P 21 /2020-02.zip ../mnt/2020-02.zip*/
-	/* format : ftpput -u  username -p passwd IP  target  source*/
-	sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,port/*21*/,path,filename,fnamePlusPath);
-	DEBUG_INFO("ftpbuf=%s\n",ftpbuf);
-	//sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s",user,password,IPbuffer,21,filename,filename,path);
+	sprintf(ftpbuf, "ftpput -u %s -p %s %s -P %d %s%s %s", user, password, location, port/*21*/, path, filename, fnamePlusPath);
+	DEBUG_INFO("ftp command: %s\n",ftpbuf);
 	systemresult = system(ftpbuf);
 
-	DEBUG_INFO("systemresult=%d\n",systemresult);
 	if(systemresult != 0)
 	{
 		DEBUG_INFO("ftpput error!\n");
-		return FALSE;
+	}
+	else
+	{
+		result = TRUE;
+		DEBUG_INFO("ftpput OK!\n");
 	}
 
-	return TRUE;
-
+	return result;
 }
 
 int GetOcppServerURL()

+ 1 - 1
EVSE/Modularization/ocppph/MessageHandler.h

@@ -567,7 +567,7 @@ int ftpDownLoadFile(char *location, char *user, char *password, int port, char *
 void *UpdateFirmwareProcess(void* data);
 void* GetDiagnosticsProcess(void* data);
 int httpUploadFile(char *location, char *path, char *filename,char *url);
-int ftpFile(char *location, char *user, char *password, int port, char *path, char *fnamePlusPath,char *filename);
+int ftpUploadFile(char *location, char *user, char *password, int port, char *path, char *fnamePlusPath,char *filename);
 void LWS_Send(char * str);
 void LWS_SendNow(char * str);
 extern int queue_operation(int type, char *frontUUID, char *frontData);

+ 3 - 3
EVSE/Projects/DS60-120/Apps/Module_InternalComm.c

@@ -947,7 +947,7 @@ void GetGfdAdc()
 		{
 			if (_chargingData[i]->Type == 0x09 && !ShmSysConfigAndInfo->SysConfig.AlwaysGfdFlag)
 			{
-				if ((_chargingData[i]->PresentChargingVoltage * 10) >= VOUT_MIN_VOLTAGE)
+				if (_chargingData[i]->FireChargingVoltage >= VOUT_MIN_VOLTAGE)
 					_chargingData[i]->GroundFaultStatus = GFD_PASS;
 				continue;
 			}
@@ -2160,8 +2160,7 @@ void CheckOutputVolNoneMatchFire(byte index)
 {
 	if (((_chargingData[index]->EvBatterytargetVoltage * 10) > 1500 ||
 			_chargingData[index]->RelayK1K2Status == NO) &&
-			(_chargingData[index]->Type == _Type_Chademo ||
-					_chargingData[index]->Type == _Type_CCS))
+			(_chargingData[index]->Type == _Type_CCS))
 	{
 		if (((_chargingData[index]->PresentChargingVoltage * 10) < _chargingData[index]->FireChargingVoltage - 300) ||
 				((_chargingData[index]->PresentChargingVoltage * 10) > _chargingData[index]->FireChargingVoltage + 300))
@@ -3039,6 +3038,7 @@ void RunForceStopProcess()
 			{
 				isCriticalStop = NO;
 				ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFailureAlarm = NORMAL;
+				system("/usr/bin/run_evse_restart.sh");
 			}
 		}
 	}

+ 7 - 2
EVSE/Projects/DS60-120/Apps/Module_PrimaryComm.c

@@ -35,6 +35,8 @@
 #define YES					1
 #define NO					0
 #define EQUAL				0
+#define NORMAL				0
+#define	ABNORMAL			1
 
 typedef unsigned char 		byte;
 
@@ -311,8 +313,11 @@ void GetInputGpioStatus()
 		{
 			if (_reCheckCount[_PRIMARY_CHECK_TAG_AC_CONTACT] >= 3)
 			{
-				if (ShmDcCommonData->psuKeepCommunication == YES ||
-						gpio_in.AC_Connector == YES)
+				if (ShmPrimaryMcuData->InputDet.bits.EmergencyButton == NORMAL &&
+					ShmStatusCodeData->AlarmCode.AlarmEvents.bits.PsuFailureAlarm == NORMAL &&
+					ShmPrimaryMcuData->InputDet.bits.DoorOpen  &&
+						(ShmDcCommonData->psuKeepCommunication == YES ||
+						gpio_in.AC_Connector == YES))
 				{
 					ShmSysConfigAndInfo->SysInfo.AcContactorStatus =
 						ShmPrimaryMcuData->InputDet.bits.AcContactorDetec = YES;

+ 29 - 29
EVSE/Projects/DS60-120/Apps/Module_PsuComm.c

@@ -2100,25 +2100,25 @@ int main(void)
 								}
 								else
 								{
-									if (chargingInfo[groupIndex]->SystemStatus == SYS_MODE_PREPARE_FOR_EVSE)
-									{
-										if (startModuleFlag)
-										{
-											if (ShmSysConfigAndInfo->SysInfo.IsAlternatvieConf == YES)
-											{
-												isStartOutputSwitch[0] = true;
-												SwitchSinglePower(ShmDcCommonData->connector[0][0], PSU_POWER_ON);
-												FlashSingleLed(ShmDcCommonData->connector[0][0], PSU_FLASH_ON);
-											}
-											else
-											{
-												isStartOutputSwitch[groupIndex] = true;
-												SwitchSinglePower(ShmDcCommonData->connector[groupIndex][0], PSU_POWER_ON);
-												FlashSingleLed(ShmDcCommonData->connector[groupIndex][0], PSU_FLASH_ON);
-											}
-										}
-									}
-									else
+//									if (chargingInfo[groupIndex]->SystemStatus == SYS_MODE_PREPARE_FOR_EVSE)
+//									{
+//										if (startModuleFlag)
+//										{
+//											if (ShmSysConfigAndInfo->SysInfo.IsAlternatvieConf == YES)
+//											{
+//												isStartOutputSwitch[0] = true;
+//												SwitchSinglePower(ShmDcCommonData->connector[0][0], PSU_POWER_ON);
+//												FlashSingleLed(ShmDcCommonData->connector[0][0], PSU_FLASH_ON);
+//											}
+//											else
+//											{
+//												isStartOutputSwitch[groupIndex] = true;
+//												SwitchSinglePower(ShmDcCommonData->connector[groupIndex][0], PSU_POWER_ON);
+//												FlashSingleLed(ShmDcCommonData->connector[groupIndex][0], PSU_FLASH_ON);
+//											}
+//										}
+//									}
+//									else
 									{
 										bool isNeedToOpenPower = false;
 										for (byte index = 0; index < ShmPsuData->GroupCount; index++)
@@ -2164,16 +2164,16 @@ int main(void)
 									}
 									else
 									{
-										if (chargingInfo[groupIndex]->SystemStatus == SYS_MODE_PREPARE_FOR_EVSE)
-										{
-											if (startModuleFlag)
-											{
-												isStartOutputSwitch[groupIndex] = true;
-												SwitchSinglePower(ShmDcCommonData->connector[groupIndex][0], PSU_POWER_ON);
-												FlashSingleLed(ShmDcCommonData->connector[groupIndex][0], PSU_FLASH_ON);
-											}
-										}
-										else
+//										if (chargingInfo[groupIndex]->SystemStatus == SYS_MODE_PREPARE_FOR_EVSE)
+//										{
+//											if (startModuleFlag)
+//											{
+//												isStartOutputSwitch[groupIndex] = true;
+//												SwitchSinglePower(ShmDcCommonData->connector[groupIndex][0], PSU_POWER_ON);
+//												FlashSingleLed(ShmDcCommonData->connector[groupIndex][0], PSU_FLASH_ON);
+//											}
+//										}
+//										else
 										{
 											if (!isStartOutputSwitch[groupIndex] || startModuleFlag)
 											{

+ 17 - 4
EVSE/Projects/DS60-120/Apps/ReadCmdline.c

@@ -522,7 +522,11 @@ void CheckAcStatus(char *v1)
 {
 	if (strcmp(v1, "-1") == 0|| strcmp(v1, "") == 0)
 	{
-		printf("AC Status = %d \n", ShmSysConfigAndInfo->SysInfo.AcContactorStatus);
+		printf("AC 1Status = %d \n", ShmSysConfigAndInfo->SysInfo.AcContactorStatus);
+		printf("AC 2Status = %d \n", ShmPrimaryMcuData->InputDet.bits.AcContactorDetec);
+		printf("AC 3Status = %d \n", ShmDcCommonData->psuKeepCommunication);
+		printf("AC EmergencyButton = %d \n", ShmPrimaryMcuData->InputDet.bits.EmergencyButton);
+		printf("AC acContactSwitch = %d \n", ShmDcCommonData->acContactSwitch);
 	}
 	else
 		ShmSysConfigAndInfo->SysInfo.AcContactorStatus = atoi(v1);
@@ -949,6 +953,7 @@ void AverageCharging(char *g1_vol, char *g1_cur, char *g2_vol, char *g2_cur)
 					    printf ("[AverageCharging (%d) - SYS_MODE_IDLE] \n", gun_index);
 					}
 
+					ShmDcCommonData->StartToChargingFlag[gun_index] = 0x01;
 					_chargingData[gun_index]->SystemStatus = SYS_MODE_PREPARING;
 				}
 					break;
@@ -1308,6 +1313,10 @@ void RunUnconditionalChargeIndex1(char *v1, char *v2, char *v3)
 
     		    //****** 注意~此行為是防止 K1K2 先開導到無法升壓 ( Relay Board 在此 state 還未搭上 K1K2 )
     		    //確定模組己升壓完成
+				//#define GFD_WAIT			0
+				//#define GFD_PASS			1
+				//#define GFD_FAIL			2
+				//#define GFD_WARNING		3
     		    if(_chargingData[_GunIndex]->GroundFaultStatus == 0x01 ||
     		        _chargingData[_GunIndex]->GroundFaultStatus == 0x03)
     		    {
@@ -1724,10 +1733,14 @@ int main(void)
 		}
 		else if (strcmp(newString[0], "test") == 0)
 		{
+			if (!FindChargingInfoData(1, &_chargingData[0]))
+				{
+					printf("FindChargingInfoData error\n");
+				}
+
 			// Test Command
-			printf ("mode = %d \n", ShmSysConfigAndInfo->SysInfo.MainChargingMode);
-			ShmSysConfigAndInfo->SysInfo.MainChargingMode = _MAIN_CHARGING_MODE_AVER;
-			printf ("mode = %d \n", ShmSysConfigAndInfo->SysInfo.MainChargingMode);
+			memcpy(_chargingData[1]->EvConnAlarmCode, "023983", 6);
+			ShmStatusCodeData->InfoCode.InfoEvents.bits.Stop_by_EV_with_unknow_reason = YES;
 		}
 		else if(strcmp(newString[0], "strchg") == 0)
 		{

+ 3 - 3
EVSE/Projects/DS60-120/Apps/main.c

@@ -215,7 +215,7 @@ bool isModelNameMatch = true;
 
 int rfidFd = -1;
 char* rfidPortName = "/dev/ttyS2";
-char* fwVersion = "V2.02.00.0000.00";
+char* fwVersion = "V2.03.00.0000.00";
 
 sqlite3 *localDb;
 bool isDb_ready;
@@ -8908,7 +8908,7 @@ int main(void)
 					if (chargingInfo[gun_index]->Type == _Type_Chademo)
 					{
 						// 檢查樁端的 GFD 結果
-						if (isPrechargeStatus_chademo(gun_index) == 8)
+						if (isPrechargeStatus_chademo(gun_index) >= 6)
 						{
 							// 當前操作的槍號,進入 Charging
 							setChargerMode(gun_index, SYS_MODE_CHARGING);
@@ -8917,7 +8917,7 @@ int main(void)
 					else if (chargingInfo[gun_index]->Type == _Type_GB)
 					{
 						// 檢查樁端的 GFD 結果
-						if (isPrechargeStatus_gb(gun_index) > 9)
+						if (isPrechargeStatus_gb(gun_index) >= 6)
 						{
 							setChargerMode(gun_index, SYS_MODE_CHARGING);
 						}