Prechádzať zdrojové kódy

2019-10-17 / ct_chen

Actions:
1. web service 程式優化

Files:
1. EVSE/Modularization/WebService.c
ct_chen 5 rokov pred
rodič
commit
4d8d4832ba
1 zmenil súbory, kde vykonal 255 pridanie a 200 odobranie
  1. 255 200
      EVSE/Modularization/WebService.c

+ 255 - 200
EVSE/Modularization/WebService.c

@@ -143,15 +143,18 @@ int ConnectorType(char* connector){
 	if(strcmp(connector, "0") == 0){
 		result= 0;
 	}
-	else if(strcmp(connector, "1") == 0 || strcmp(connector, "2") == 0 || strcmp(connector, "3") == 0 || strcmp(connector, "4") == 0 || strcmp(connector, "U") == 0 || strcmp(connector, "E") == 0){
+	else if(strcmp(connector, "U") == 0 || strcmp(connector, "E") == 0){
 		result= 1;//CCS
 	}
-	else if(strcmp(connector, "5") == 0 || strcmp(connector, "6") == 0 || strcmp(connector, "G") == 0){
+	else if(strcmp(connector, "G") == 0 || strcmp(connector, "D") == 0){
 		result= 2;//GB
 	}
 	else if(strcmp(connector, "J") == 0){
 		result= 3;//CHAdeMO
 	}
+	else if(strcmp(connector, "1") == 0 || strcmp(connector, "2") == 0 || strcmp(connector, "3") == 0 || strcmp(connector, "4") == 0 || strcmp(connector, "5") == 0 || strcmp(connector, "6") == 0){
+		result= 4;//AC
+	}
 	else{
 
 	}
@@ -327,14 +330,14 @@ int main(int argc, char *argv[]) {
 			if( json_object_object_get_ex(jobj, "RfidCardNumEndian", &val_obj) ) {
 				RfidCardNumEndian = json_object_get_string(val_obj);
 			}
-			strcpy((char *)ShmSysConfigAndInfo->SysConfig.SystemId,SystemId);
+			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.SystemId,SystemId);
 			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AcPhaseCount,AcPhaseCount);
 			strcpy((char *)&ShmSysConfigAndInfo->SysInfo.FactoryConfiguration,FactoryConfiguration);
 			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AuthorisationMode,AuthorisationMode);
 			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.DefaultLanguage,DefaultLanguage);
 			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian,RfidCardNumEndian);
 			//Set default configuration
-			strcpy((char *)SysConfig.SystemId, SystemId);
+			strcpy((char *)&SysConfig.SystemId, SystemId);
 			strcpy((char *)&SysConfig.AcPhaseCount, AcPhaseCount);
 			strcpy((char *)&SysConfig.AuthorisationMode, AuthorisationMode);
 			strcpy((char *)&SysConfig.DefaultLanguage, DefaultLanguage);
@@ -434,16 +437,16 @@ int main(int argc, char *argv[]) {
 			strcpy((char *)&SysConfig.MaxChargingCurrent, MaxChargingCurrent);
 			strcpy((char *)&SysConfig.MaxChargingDuration,MaxChargingDuration);
 			strcpy((char *)&SysConfig.PhaseLossPolicy,PhaseLossPolicy);
-			strcpy((char *)SysConfig.LocalWhiteCard[0],LocalWhiteCard0);
-			strcpy((char *)SysConfig.LocalWhiteCard[1],LocalWhiteCard1);
-			strcpy((char *)SysConfig.LocalWhiteCard[2],LocalWhiteCard2);
-			strcpy((char *)SysConfig.LocalWhiteCard[3],LocalWhiteCard3);
-			strcpy((char *)SysConfig.LocalWhiteCard[4],LocalWhiteCard4);
-			strcpy((char *)SysConfig.LocalWhiteCard[5],LocalWhiteCard5);
-			strcpy((char *)SysConfig.LocalWhiteCard[6],LocalWhiteCard6);
-			strcpy((char *)SysConfig.LocalWhiteCard[7],LocalWhiteCard7);
-			strcpy((char *)SysConfig.LocalWhiteCard[8],LocalWhiteCard8);
-			strcpy((char *)SysConfig.LocalWhiteCard[9],LocalWhiteCard9);
+			strcpy((char *)&SysConfig.LocalWhiteCard[0],LocalWhiteCard0);
+			strcpy((char *)&SysConfig.LocalWhiteCard[1],LocalWhiteCard1);
+			strcpy((char *)&SysConfig.LocalWhiteCard[2],LocalWhiteCard2);
+			strcpy((char *)&SysConfig.LocalWhiteCard[3],LocalWhiteCard3);
+			strcpy((char *)&SysConfig.LocalWhiteCard[4],LocalWhiteCard4);
+			strcpy((char *)&SysConfig.LocalWhiteCard[5],LocalWhiteCard5);
+			strcpy((char *)&SysConfig.LocalWhiteCard[6],LocalWhiteCard6);
+			strcpy((char *)&SysConfig.LocalWhiteCard[7],LocalWhiteCard7);
+			strcpy((char *)&SysConfig.LocalWhiteCard[8],LocalWhiteCard8);
+			strcpy((char *)&SysConfig.LocalWhiteCard[9],LocalWhiteCard9);
 		}
 		if (strcmp(argv[1], "3") == 0) {
 			struct json_object *jobj = json_tokener_parse(argv[2]);
@@ -533,49 +536,49 @@ int main(int argc, char *argv[]) {
 				TelcomIpAddress = json_object_get_string(val_obj);
 			}
 
-			strcpy((char *)ShmSysConfigAndInfo->SysConfig.FtpServer,FtpServer);
+			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.FtpServer,FtpServer);
 			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient,Eth0DhcpClient);
-			strcpy((char *)ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress,Eth0IpAddress);
-			strcpy((char *)ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress,Eth0SubmaskAddress);
-			strcpy((char *)ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthGatewayAddress,Eth0GatewayAddress);
+			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress,Eth0IpAddress);
+			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress,Eth0SubmaskAddress);
+			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthGatewayAddress,Eth0GatewayAddress);
 			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthDhcpClient,Eth1DhcpClient);
-			strcpy((char *)ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthIpAddress,Eth1IpAddress);
-			strcpy((char *)ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthSubmaskAddress,Eth1SubmaskAddress);
-			strcpy((char *)ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthGatewayAddress,Eth1GatewayAddress);
+			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthIpAddress,Eth1IpAddress);
+			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthSubmaskAddress,Eth1SubmaskAddress);
+			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthGatewayAddress,Eth1GatewayAddress);
 			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode,WifiMode);
-			strcpy((char *)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid,WifiSsid);
-			strcpy((char *)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword,WifiPassword);
+			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid,WifiSsid);
+			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword,WifiPassword);
 			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpServer,WifiDhcpServer);
 			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient,WifiDhcpClient);
-			strcpy((char *)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress,WifiIpAddress);
-			strcpy((char *)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress,WifiSubmaskAddress);
-			strcpy((char *)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress,WifiGatewayAddress);
-			strcpy((char *)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn,TelcomApn);
-			strcpy((char *)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId,TelcomChapPapId);
-			strcpy((char *)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd,TelcomChapPapPwd);
-			strcpy((char *)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress,TelcomIpAddress);
+			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress,WifiIpAddress);
+			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress,WifiSubmaskAddress);
+			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress,WifiGatewayAddress);
+			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn,TelcomApn);
+			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId,TelcomChapPapId);
+			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd,TelcomChapPapPwd);
+			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress,TelcomIpAddress);
 			//Set default configuration
-			strcpy((char *)SysConfig.FtpServer, FtpServer);
+			strcpy((char *)&SysConfig.FtpServer, FtpServer);
 			strcpy((char *)&SysConfig.Eth0Interface.EthDhcpClient, Eth0DhcpClient);
-			strcpy((char *)SysConfig.Eth0Interface.EthIpAddress, Eth0IpAddress);
-			strcpy((char *)SysConfig.Eth0Interface.EthSubmaskAddress, Eth0SubmaskAddress);
-			strcpy((char *)SysConfig.Eth0Interface.EthGatewayAddress, Eth0GatewayAddress);
+			strcpy((char *)&SysConfig.Eth0Interface.EthIpAddress, Eth0IpAddress);
+			strcpy((char *)&SysConfig.Eth0Interface.EthSubmaskAddress, Eth0SubmaskAddress);
+			strcpy((char *)&SysConfig.Eth0Interface.EthGatewayAddress, Eth0GatewayAddress);
 			strcpy((char *)&SysConfig.Eth1Interface.EthDhcpClient, Eth1DhcpClient);
-			strcpy((char *)SysConfig.Eth1Interface.EthIpAddress, Eth1IpAddress);
-			strcpy((char *)SysConfig.Eth1Interface.EthSubmaskAddress, Eth1SubmaskAddress);
-			strcpy((char *)SysConfig.Eth1Interface.EthGatewayAddress, Eth1GatewayAddress);
+			strcpy((char *)&SysConfig.Eth1Interface.EthIpAddress, Eth1IpAddress);
+			strcpy((char *)&SysConfig.Eth1Interface.EthSubmaskAddress, Eth1SubmaskAddress);
+			strcpy((char *)&SysConfig.Eth1Interface.EthGatewayAddress, Eth1GatewayAddress);
 			strcpy((char *)&SysConfig.AthInterface.WifiMode, WifiMode);
-			strcpy((char *)SysConfig.AthInterface.WifiSsid, WifiSsid);
-			strcpy((char *)SysConfig.AthInterface.WifiPassword, WifiPassword);
+			strcpy((char *)&SysConfig.AthInterface.WifiSsid, WifiSsid);
+			strcpy((char *)&SysConfig.AthInterface.WifiPassword, WifiPassword);
 			strcpy((char *)&SysConfig.AthInterface.WifiDhcpServer, WifiDhcpServer);
 			strcpy((char *)&SysConfig.AthInterface.WifiDhcpClient, WifiDhcpClient);
-			strcpy((char *)SysConfig.AthInterface.WifiIpAddress, WifiIpAddress);
-			strcpy((char *)SysConfig.AthInterface.WifiSubmaskAddress, WifiSubmaskAddress);
-			strcpy((char *)SysConfig.AthInterface.WifiGatewayAddress, WifiGatewayAddress);
-			strcpy((char *)SysConfig.TelecomInterface.TelcomApn, TelcomApn);
-			strcpy((char *)SysConfig.TelecomInterface.TelcomChapPapId, TelcomChapPapId);
-			strcpy((char *)SysConfig.TelecomInterface.TelcomChapPapPwd, TelcomChapPapPwd);
-			strcpy((char *)SysConfig.TelecomInterface.TelcomIpAddress, TelcomIpAddress);
+			strcpy((char *)&SysConfig.AthInterface.WifiIpAddress, WifiIpAddress);
+			strcpy((char *)&SysConfig.AthInterface.WifiSubmaskAddress, WifiSubmaskAddress);
+			strcpy((char *)&SysConfig.AthInterface.WifiGatewayAddress, WifiGatewayAddress);
+			strcpy((char *)&SysConfig.TelecomInterface.TelcomApn, TelcomApn);
+			strcpy((char *)&SysConfig.TelecomInterface.TelcomChapPapId, TelcomChapPapId);
+			strcpy((char *)&SysConfig.TelecomInterface.TelcomChapPapPwd, TelcomChapPapPwd);
+			strcpy((char *)&SysConfig.TelecomInterface.TelcomIpAddress, TelcomIpAddress);
 		}
 		if (strcmp(argv[1], "4") == 0) {
 			struct json_object *jobj = json_tokener_parse(argv[2]);
@@ -610,15 +613,15 @@ int main(int argc, char *argv[]) {
 			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.OfflinePolicy,OfflinePolicy);
 			SysConfig.OfflineMaxChargeEnergy=(int)OfflineMaxChargeEnergy;
 			SysConfig.OfflineMaxChargeDuration=(int)OfflineMaxChargeDuration;
-			strcpy((char *)ShmSysConfigAndInfo->SysConfig.OcppServerURL,OcppServerURL);
-			strcpy((char *)ShmSysConfigAndInfo->SysConfig.ChargeBoxId,ChargeBoxId);
+			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL,OcppServerURL);
+			strcpy((char *)&ShmSysConfigAndInfo->SysConfig.ChargeBoxId,ChargeBoxId);
 			//Set default configuration
 			SysConfig.BackendConnTimeout=(int)BackendConnTimeout;
 			strcpy((char *)&SysConfig.OfflinePolicy, OfflinePolicy);
 			SysConfig.OfflineMaxChargeEnergy=(int)OfflineMaxChargeEnergy;
 			SysConfig.OfflineMaxChargeDuration=(int)OfflineMaxChargeDuration;
-			strcpy((char *)SysConfig.OcppServerURL, OcppServerURL);
-			strcpy((char *)SysConfig.ChargeBoxId, ChargeBoxId);
+			strcpy((char *)&SysConfig.OcppServerURL, OcppServerURL);
+			strcpy((char *)&SysConfig.ChargeBoxId, ChargeBoxId);
 		}
 
 		StoreUsrConfigData(&SysConfig);
@@ -631,41 +634,41 @@ int main(int argc, char *argv[]) {
 		if (strcmp(argv[1], "aaa") == 0) {
 			struct SysConfigData 	SysConfig;
 		//system
-		sprintf(ShmSysConfigAndInfo->SysConfig.ModelName, "DWLU700111W1PH");
-		sprintf(ShmSysConfigAndInfo->SysConfig.SerialNumber, "SerialNumber");
-		sprintf(ShmSysConfigAndInfo->SysConfig.SystemId, "1234567890");
-		sprintf(ShmSysConfigAndInfo->SysConfig.SystemDateTime, "SystemDateTime");
-		sprintf(&ShmSysConfigAndInfo->SysConfig.AcPhaseCount, "1");
-		sprintf(&ShmSysConfigAndInfo->SysInfo.FactoryConfiguration, "1");
-		sprintf(&ShmSysConfigAndInfo->SysConfig.AuthorisationMode, "1");
-		sprintf(&ShmSysConfigAndInfo->SysConfig.DefaultLanguage, "a");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.ModelName, "DWLU700111W1PH");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.SerialNumber, "SerialNumber");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.SystemId, "1234567890");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.SystemDateTime, "SystemDateTime");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AcPhaseCount, "1");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.FactoryConfiguration, "1");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AuthorisationMode, "1");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.DefaultLanguage, "a");
 		ShmSysConfigAndInfo->SysInfo.InputVoltageR=0;
 		ShmSysConfigAndInfo->SysInfo.InputVoltageS=0;
 		ShmSysConfigAndInfo->SysInfo.InputVoltageT=0;
 		ShmSysConfigAndInfo->SysInfo.SystemFanRotaSpeed=0;
 		ShmSysConfigAndInfo->SysInfo.PsuFanRotaSpeed=0;
-		sprintf(&ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian, "0");
-		sprintf(&ShmSysConfigAndInfo->SysInfo.AuxPower5V, "0");
-		sprintf(&ShmSysConfigAndInfo->SysInfo.AuxPower12V, "0");
-		sprintf(&ShmSysConfigAndInfo->SysInfo.AuxPower24V, "0");
-		sprintf(&ShmSysConfigAndInfo->SysInfo.AuxPower48V, "0");
-		sprintf(ShmSysConfigAndInfo->SysInfo.CsuHwRev, "CsuHwRev");
-		sprintf(ShmSysConfigAndInfo->SysInfo.CsuBootLoadFwRev, "CsuBootLoadFwRev");
-		sprintf(ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev, "CsuKernelFwRev");
-		sprintf(ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev, "CsuRootFsFwRev");
-		sprintf(ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev, "CsuPrimFwRev");
-		sprintf(ShmSysConfigAndInfo->SysInfo.LcmHwRev, "LcmHwRev");
-		sprintf(ShmSysConfigAndInfo->SysInfo.LcmFwRev, "LcmFwRev");
-		sprintf(ShmSysConfigAndInfo->SysInfo.PsuHwRev, "PsuHwRev");
-		sprintf(ShmSysConfigAndInfo->SysInfo.PsuPrimFwRev, "PsuPrimFwRev");
-		sprintf(ShmSysConfigAndInfo->SysInfo.PsuSecFwRev, "PsuSecFwRev");
-		sprintf(ShmSysConfigAndInfo->SysInfo.AuxPwrHwRev, "AuxPwrHwRev");
-		sprintf(ShmSysConfigAndInfo->SysInfo.AuxPwrFwRev, "AuxPwrFwRev");
-		sprintf(ShmSysConfigAndInfo->SysInfo.FanModuleHwRev, "FanModuleHwRev");
-		sprintf(ShmSysConfigAndInfo->SysInfo.FanModuleFwRev, "FanModuleFwRev");
-		sprintf(ShmSysConfigAndInfo->SysInfo.RelayModuleHwRev, "RelayModuleHwRev");
-		sprintf(ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev, "RelayModuleFwRev");
-		sprintf(ShmSysConfigAndInfo->SysInfo.TelcomModemFwRev, "TelcomModemFwRev");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.RfidCardNumEndian, "0");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.AuxPower5V, "0");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.AuxPower12V, "0");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.AuxPower24V, "0");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.AuxPower48V, "0");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuHwRev, "CsuHwRev");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuBootLoadFwRev, "CsuBootLoadFwRev");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuKernelFwRev, "CsuKernelFwRev");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuRootFsFwRev, "CsuRootFsFwRev");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CsuPrimFwRev, "CsuPrimFwRev");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.LcmHwRev, "LcmHwRev");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.LcmFwRev, "LcmFwRev");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.PsuHwRev, "PsuHwRev");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.PsuPrimFwRev, "PsuPrimFwRev");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.PsuSecFwRev, "PsuSecFwRev");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.AuxPwrHwRev, "AuxPwrHwRev");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.AuxPwrFwRev, "AuxPwrFwRev");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.FanModuleHwRev, "FanModuleHwRev");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.FanModuleFwRev, "FanModuleFwRev");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.RelayModuleHwRev, "RelayModuleHwRev");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.RelayModuleFwRev, "RelayModuleFwRev");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.TelcomModemFwRev, "TelcomModemFwRev");
 		ShmSysConfigAndInfo->SysInfo.SystemAmbientTemp=0;
 		ShmSysConfigAndInfo->SysInfo.SystemCriticalTemp=0;
 		ShmSysConfigAndInfo->SysInfo.CcsConnectorTemp=0;
@@ -686,18 +689,18 @@ int main(int argc, char *argv[]) {
 		ShmSysConfigAndInfo->SysConfig.MaxChargingPower=0;
 		ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent= 0;
 		ShmSysConfigAndInfo->SysConfig.MaxChargingDuration=0;
-		sprintf(&ShmSysConfigAndInfo->SysConfig.PhaseLossPolicy, "1");
-		sprintf(&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[0], "111");
-		sprintf(&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[1], "222");
-		sprintf(&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[2], "333");
-		sprintf(&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[3], "444");
-		sprintf(&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[4], "555");
-		sprintf(&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[5], "666");
-		sprintf(&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[6], "777");
-		sprintf(&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[7], "888");
-		sprintf(&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[8], "999");
-		sprintf(&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[9], "aaa");
-		sprintf(ShmSysConfigAndInfo->SysConfig.UserId, "UserId");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.PhaseLossPolicy, "1");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[0], "111");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[1], "222");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[2], "333");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[3], "444");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[4], "555");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[5], "666");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[6], "777");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[7], "888");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[8], "999");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[9], "aaa");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.UserId, "UserId");
 		ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].PresentChargingVoltage=(float) 64;
 		ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].PresentChargingCurrent=(double) 6553.5;
 		ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].PresentChargingPower=0;
@@ -707,54 +710,54 @@ int main(int argc, char *argv[]) {
 		ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].EvBatteryMaxVoltage=0;
 		ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].EvBatterytargetVoltage=0;
 		ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].EvBatterySoc=0;
-		sprintf(&ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].SystemStatus, "1");
-		sprintf(&ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].Index, "1");
-		sprintf(&ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].Type, "0");
-		sprintf(&ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].type_index, "1");
-		sprintf(&ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].EvBatterytargetCurrent, "1");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].SystemStatus, "1");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].Index, "1");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].Type, "0");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].type_index, "1");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[0].EvBatterytargetCurrent, "1");
 		//network
-		sprintf(&ShmSysConfigAndInfo->SysInfo.InternetConn,"1");
-		sprintf(ShmSysConfigAndInfo->SysConfig.FtpServer,"FtpServer");
-		sprintf(&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient,"1");
-		sprintf(ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthMacAddress,"EthMacAddress");
-		sprintf(ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress,"EthIpAddress");
-		sprintf(ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress,"EthIpAddress");
-		sprintf(ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthGatewayAddress,"EthGatewayAddress");
-		sprintf(&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthDhcpClient,"1");
-		sprintf(ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthMacAddress,"EthMacAddress");
-		sprintf(ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthIpAddress,"EthIpAddress");
-		sprintf(ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthSubmaskAddress,"EthSubmaskAddress");
-		sprintf(ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthGatewayAddress,"EthGatewayAddress");
-		sprintf(&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode,"1");
-		sprintf(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid,"WifiSsid");
-		sprintf(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword,"WifiSsid");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.InternetConn,"1");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.FtpServer,"FtpServer");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient,"1");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthMacAddress,"EthMacAddress");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress,"EthIpAddress");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress,"EthIpAddress");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthGatewayAddress,"EthGatewayAddress");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthDhcpClient,"1");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthMacAddress,"EthMacAddress");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthIpAddress,"EthIpAddress");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthSubmaskAddress,"EthSubmaskAddress");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthGatewayAddress,"EthGatewayAddress");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode,"1");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid,"WifiSsid");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword,"WifiSsid");
 		ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi=0;
-		sprintf(&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpServer,"1");
-		sprintf(&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient,"1");
-		sprintf(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress,"WifiMacAddress");
-		sprintf(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress,"WifiIpAddress");
-		sprintf(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress,"WifiSubmaskAddress");
-		sprintf(ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress,"WifiGatewayAddress");
-		sprintf(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn,"TelcomApn");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpServer,"1");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient,"1");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress,"WifiMacAddress");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress,"WifiIpAddress");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress,"WifiSubmaskAddress");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress,"WifiGatewayAddress");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn,"TelcomApn");
 		ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomRssi=0;
-		sprintf(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId,"TelcomChapPapId");
-		sprintf(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd,"TelcomChapPapPwd");
-		sprintf(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemImei,"TelcomModemImei");
-		sprintf(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimImsi,"TelcomSimImsi");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId,"TelcomChapPapId");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd,"TelcomChapPapPwd");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemImei,"TelcomModemImei");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimImsi,"TelcomSimImsi");
 		//sprintf(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimIccid,"TelcomSimIccid");
-		sprintf(&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimStatus,"1");
-		sprintf(&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemMode,"1");
-		sprintf(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress,"TelcomIpAddress");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimStatus,"1");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemMode,"1");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress,"TelcomIpAddress");
 		//backend
 		ShmSysConfigAndInfo->SysConfig.BackendConnTimeout=0;
-		sprintf(&ShmSysConfigAndInfo->SysConfig.OfflinePolicy,"1");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.OfflinePolicy,"1");
 		ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy=0;
 		ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeDuration=0;
-		sprintf(&ShmSysConfigAndInfo->SysInfo.OcppConnStatus,"1");
-		sprintf(ShmSysConfigAndInfo->SysConfig.OcppServerURL,"OcppServerURL");
-		sprintf(ShmSysConfigAndInfo->SysConfig.ChargeBoxId,"ChargeBoxId");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.OcppConnStatus,"1");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL,"OcppServerURL");
+		strcpy((char *)&ShmSysConfigAndInfo->SysConfig.ChargeBoxId,"ChargeBoxId");
 
-		sprintf(&ShmSysConfigAndInfo->SysInfo.FirmwareUpdate,"0");
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.FirmwareUpdate,"0");
 		StoreUsrConfigData(&SysConfig);
 
 		#ifdef SystemLogMessage
@@ -783,17 +786,17 @@ int main(int argc, char *argv[]) {
 		char cmd[100];
 		jobj=json_object_new_object();
 		//system
-		if((char)ShmSysConfigAndInfo->SysInfo.FirmwareUpdate == '0'){
-			strcpy((char *)&ShmSysConfigAndInfo->SysInfo.FirmwareUpdate, "1");
-			Result = json_object_new_string("success");
-			Message = json_object_new_string("file is uploaded");
-		}
-		else{
+		//if((char)ShmSysConfigAndInfo->SysInfo.FirmwareUpdate == '0'){
+		strcpy((char *)&ShmSysConfigAndInfo->SysInfo.FirmwareUpdate, "1");
+		Result = json_object_new_string("success");
+		Message = json_object_new_string("file is uploaded");
+		//}
+		/*else{
 			sprintf(cmd,"rm /mnt/%s",argv[2]);
 			system(cmd);
 			Result = json_object_new_string("error");
 			Message = json_object_new_string("machine is busy");
-		}
+		}*/
 		json_object_object_add(jobj,"Result",Result);
 		json_object_object_add(jobj,"Message",Message);
 		printf("%s\n", json_object_to_json_string(jobj));
@@ -1001,6 +1004,7 @@ int main(int argc, char *argv[]) {
 		int CcsGunQty=0;
 		int GbGunQty=0;
 		int CHAdeMOGunQty=0;
+		int AcGunQty=0;
 		ChargingInfo1=json_object_new_object();
 		ChargingInfo2=json_object_new_object();
 		ChargingInfo3=json_object_new_object();
@@ -1009,16 +1013,16 @@ int main(int argc, char *argv[]) {
 		MaxChargingCurrent = json_object_new_int((int)ShmSysConfigAndInfo->SysConfig.MaxChargingCurrent);
 		MaxChargingDuration = json_object_new_int((int)ShmSysConfigAndInfo->SysConfig.MaxChargingDuration);
 		PhaseLossPolicy = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysConfig.PhaseLossPolicy,1);
-		LocalWhiteCard[0] = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[0]);
-		LocalWhiteCard[1] = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[1]);
-		LocalWhiteCard[2] = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[2]);
-		LocalWhiteCard[3] = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[3]);
-		LocalWhiteCard[4] = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[4]);
-		LocalWhiteCard[5] = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[5]);
-		LocalWhiteCard[6] = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[6]);
-		LocalWhiteCard[7] = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[7]);
-		LocalWhiteCard[8] = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[8]);
-		LocalWhiteCard[9] = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[9]);
+		LocalWhiteCard[0] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[0]);
+		LocalWhiteCard[1] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[1]);
+		LocalWhiteCard[2] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[2]);
+		LocalWhiteCard[3] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[3]);
+		LocalWhiteCard[4] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[4]);
+		LocalWhiteCard[5] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[5]);
+		LocalWhiteCard[6] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[6]);
+		LocalWhiteCard[7] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[7]);
+		LocalWhiteCard[8] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[8]);
+		LocalWhiteCard[9] = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.LocalWhiteCard[9]);
 		UserId = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.UserId);
 		if(connectorType1 != 0){
 			if(connectorType1 == 1){//CCS
@@ -1048,11 +1052,11 @@ int main(int argc, char *argv[]) {
 				EvBatteryMaxVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatteryMaxVoltage);
 				EvBatterytargetVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetVoltage);
 				EvBatterySoc[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterySoc);
-				SystemStatus[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[GbGunQty].SystemStatus,1);
-				Index[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[GbGunQty].Index,1);
-				Type[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[GbGunQty].Type,1);
-				type_index[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[GbGunQty].type_index,1);
-				EvBatterytargetCurrent[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[GbGunQty].EvBatterytargetCurrent,1);
+				SystemStatus[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].SystemStatus,1);
+				Index[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].Index,1);
+				Type[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].Type,1);
+				type_index[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].type_index,1);
+				EvBatterytargetCurrent[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetCurrent,1);
 				GbGunQty++;
 			}
 			else if(connectorType1 == 3){//CHAdeMO
@@ -1065,13 +1069,30 @@ int main(int argc, char *argv[]) {
 				EvBatteryMaxVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatteryMaxVoltage);
 				EvBatterytargetVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetVoltage);
 				EvBatterySoc[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterySoc);
-				SystemStatus[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CHAdeMOGunQty].SystemStatus,1);
-				Index[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CHAdeMOGunQty].Index,1);
-				Type[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CHAdeMOGunQty].Type,1);
-				type_index[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CHAdeMOGunQty].type_index,1);
-				EvBatterytargetCurrent[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CHAdeMOGunQty].EvBatterytargetCurrent,1);
+				SystemStatus[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].SystemStatus,1);
+				Index[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].Index,1);
+				Type[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].Type,1);
+				type_index[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].type_index,1);
+				EvBatterytargetCurrent[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetCurrent,1);
 				CHAdeMOGunQty++;
 			}
+			else if(connectorType1 == 4){//AC
+				PresentChargingVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingVoltage);
+				PresentChargingCurrent[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingCurrent);
+				PresentChargingPower[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingPower);
+				PresentChargedEnergy[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedEnergy);
+				PresentChargedDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedDuration);
+				RemainChargingDuration[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].RemainChargingDuration);
+				EvBatteryMaxVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatteryMaxVoltage);
+				EvBatterytargetVoltage[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetVoltage);
+				EvBatterySoc[0] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterySoc);
+				SystemStatus[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].SystemStatus,1);
+				Index[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].Index,1);
+				Type[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].Type,1);
+				type_index[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].type_index,1);
+				EvBatterytargetCurrent[0] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetCurrent,1);
+				AcGunQty++;
+			}
 		}
 		if(connectorType2 != 0){
 			if(connectorType2 == 1){//CCS
@@ -1101,11 +1122,11 @@ int main(int argc, char *argv[]) {
 				EvBatteryMaxVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatteryMaxVoltage);
 				EvBatterytargetVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetVoltage);
 				EvBatterySoc[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterySoc);
-				SystemStatus[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[GbGunQty].SystemStatus,1);
-				Index[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[GbGunQty].Index,1);
-				Type[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[GbGunQty].Type,1);
-				type_index[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[GbGunQty].type_index,1);
-				EvBatterytargetCurrent[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[GbGunQty].EvBatterytargetCurrent,1);
+				SystemStatus[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].SystemStatus,1);
+				Index[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].Index,1);
+				Type[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].Type,1);
+				type_index[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].type_index,1);
+				EvBatterytargetCurrent[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetCurrent,1);
 				GbGunQty++;
 			}
 			else if(connectorType2 == 3){//CHAdeMO
@@ -1118,13 +1139,30 @@ int main(int argc, char *argv[]) {
 				EvBatteryMaxVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatteryMaxVoltage);
 				EvBatterytargetVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetVoltage);
 				EvBatterySoc[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterySoc);
-				SystemStatus[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CHAdeMOGunQty].SystemStatus,1);
-				Index[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CHAdeMOGunQty].Index,1);
-				Type[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CHAdeMOGunQty].Type,1);
-				type_index[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CHAdeMOGunQty].type_index,1);
-				EvBatterytargetCurrent[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CHAdeMOGunQty].EvBatterytargetCurrent,1);
+				SystemStatus[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].SystemStatus,1);
+				Index[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].Index,1);
+				Type[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].Type,1);
+				type_index[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].type_index,1);
+				EvBatterytargetCurrent[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetCurrent,1);
 				CHAdeMOGunQty++;
 			}
+			else if(connectorType2 == 4){//AC
+				PresentChargingVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingVoltage);
+				PresentChargingCurrent[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingCurrent);
+				PresentChargingPower[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingPower);
+				PresentChargedEnergy[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedEnergy);
+				PresentChargedDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedDuration);
+				RemainChargingDuration[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].RemainChargingDuration);
+				EvBatteryMaxVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatteryMaxVoltage);
+				EvBatterytargetVoltage[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetVoltage);
+				EvBatterySoc[1] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterySoc);
+				SystemStatus[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].SystemStatus,1);
+				Index[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].Index,1);
+				Type[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].Type,1);
+				type_index[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].type_index,1);
+				EvBatterytargetCurrent[1] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetCurrent,1);
+				AcGunQty++;
+			}
 		}
 		if(connectorType3 != 0){
 			if(connectorType3 == 1){//CCS
@@ -1154,11 +1192,11 @@ int main(int argc, char *argv[]) {
 				EvBatteryMaxVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatteryMaxVoltage);
 				EvBatterytargetVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetVoltage);
 				EvBatterySoc[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterySoc);
-				SystemStatus[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[GbGunQty].SystemStatus,1);
-				Index[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[GbGunQty].Index,1);
-				Type[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[GbGunQty].Type,1);
-				type_index[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[GbGunQty].type_index,1);
-				EvBatterytargetCurrent[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[GbGunQty].EvBatterytargetCurrent,1);
+				SystemStatus[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].SystemStatus,1);
+				Index[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].Index,1);
+				Type[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].Type,1);
+				type_index[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].type_index,1);
+				EvBatterytargetCurrent[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.GbChargingData[GbGunQty].EvBatterytargetCurrent,1);
 				GbGunQty++;
 			}
 			else if(connectorType3 == 3){//CHAdeMO
@@ -1171,49 +1209,66 @@ int main(int argc, char *argv[]) {
 				EvBatteryMaxVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatteryMaxVoltage);
 				EvBatterytargetVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetVoltage);
 				EvBatterySoc[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterySoc);
-				SystemStatus[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CHAdeMOGunQty].SystemStatus,1);
-				Index[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CHAdeMOGunQty].Index,1);
-				Type[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CHAdeMOGunQty].Type,1);
-				type_index[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CHAdeMOGunQty].type_index,1);
-				EvBatterytargetCurrent[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.CcsChargingData[CHAdeMOGunQty].EvBatterytargetCurrent,1);
+				SystemStatus[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].SystemStatus,1);
+				Index[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].Index,1);
+				Type[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].Type,1);
+				type_index[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].type_index,1);
+				EvBatterytargetCurrent[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.ChademoChargingData[CHAdeMOGunQty].EvBatterytargetCurrent,1);
 				CHAdeMOGunQty++;
 			}
+			else if(connectorType3 == 4){//AC
+				PresentChargingVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingVoltage);
+				PresentChargingCurrent[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingCurrent);
+				PresentChargingPower[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargingPower);
+				PresentChargedEnergy[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedEnergy);
+				PresentChargedDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].PresentChargedDuration);
+				RemainChargingDuration[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].RemainChargingDuration);
+				EvBatteryMaxVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatteryMaxVoltage);
+				EvBatterytargetVoltage[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetVoltage);
+				EvBatterySoc[2] = json_object_new_double(ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterySoc);
+				SystemStatus[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].SystemStatus,1);
+				Index[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].Index,1);
+				Type[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].Type,1);
+				type_index[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].type_index,1);
+				EvBatterytargetCurrent[2] = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.AcChargingData[AcGunQty].EvBatterytargetCurrent,1);
+				AcGunQty++;
+			}
 		}
 
 		//network
 		InternetConn = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.InternetConn,1);
 		FtpServer = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.FtpServer);
 		Eth0DhcpClient = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthDhcpClient,1);
-		Eth0MacAddress = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthMacAddress);
-		Eth0IpAddress = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress);
-		Eth0SubmaskAddress = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress);
-		Eth0GatewayAddress = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthGatewayAddress);
+		Eth0MacAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthMacAddress);
+		Eth0IpAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthIpAddress);
+		Eth0SubmaskAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthSubmaskAddress);
+		Eth0GatewayAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth0Interface.EthGatewayAddress);
 		Eth1DhcpClient = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthDhcpClient,1);
-		Eth1MacAddress = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthMacAddress);
-		Eth1IpAddress = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthIpAddress);
-		Eth1SubmaskAddress = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthSubmaskAddress);
-		Eth1GatewayAddress = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthGatewayAddress);
+		Eth1MacAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthMacAddress);
+		Eth1IpAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthIpAddress);
+		Eth1SubmaskAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthSubmaskAddress);
+		Eth1GatewayAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.Eth1Interface.EthGatewayAddress);
 		WifiMode = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMode,1);
-		WifiSsid = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid);
-		WifiPassword = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword);
+		WifiSsid = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSsid);
+		WifiPassword = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiPassword);
 		WifiRssi = json_object_new_int((int)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiRssi);
 		WifiDhcpServer = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpServer,1);
 		WifiDhcpClient = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiDhcpClient,1);
-		WifiMacAddress = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress);
-		WifiIpAddress = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress);
-		WifiSubmaskAddress = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress);
-		WifiGatewayAddress = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress);
+		WifiMacAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiMacAddress);
+		WifiIpAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiIpAddress);
+		WifiSubmaskAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiSubmaskAddress);
+		WifiGatewayAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiGatewayAddress);
 		WifiNetworkConn = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.AthInterface.WifiNetworkConn);
-		TelcomApn = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn);
+		TelcomApn = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomApn);
 		TelcomRssi = json_object_new_int((int)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomRssi);
-		TelcomChapPapId = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId);
-		TelcomChapPapPwd = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd);
-		TelcomModemImei = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemImei);
-		TelcomSimImsi = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimImsi);
+		TelcomChapPapId = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapId);
+		TelcomChapPapPwd = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomChapPapPwd);
+		TelcomModemImei = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemImei);
+		TelcomSimImsi = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimImsi);
 		//TelcomSimIccid = json_object_new_string(ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimIccid);
 		TelcomSimStatus = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomSimStatus,1);
 		TelcomModemMode = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomModemMode,1);
-		TelcomIpAddress = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress);
+		TelcomIpAddress = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomIpAddress);
 		TelcomNetworkConn = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.TelecomInterface.TelcomNetworkConn);
 		//backend
 		BackendConnTimeout = json_object_new_int((int)ShmSysConfigAndInfo->SysConfig.BackendConnTimeout);
@@ -1221,8 +1276,8 @@ int main(int argc, char *argv[]) {
 		OfflineMaxChargeEnergy = json_object_new_int((int)ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeEnergy);
 		OfflineMaxChargeDuration = json_object_new_int((int)ShmSysConfigAndInfo->SysConfig.OfflineMaxChargeDuration);
 		OcppConnStatus = json_object_new_string_len((char *)&ShmSysConfigAndInfo->SysInfo.OcppConnStatus,1);
-		OcppServerURL = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.OcppServerURL);
-		ChargeBoxId = json_object_new_string((char *)ShmSysConfigAndInfo->SysConfig.ChargeBoxId);
+		OcppServerURL = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.OcppServerURL);
+		ChargeBoxId = json_object_new_string((char *)&ShmSysConfigAndInfo->SysConfig.ChargeBoxId);
 
 
 		//system