|
@@ -90,6 +90,7 @@ struct FanModuleData *ShmFanModuleData;
|
|
struct RelayModuleData *ShmRelayModuleData;
|
|
struct RelayModuleData *ShmRelayModuleData;
|
|
struct OCPP16Data *ShmOCPP16Data;
|
|
struct OCPP16Data *ShmOCPP16Data;
|
|
struct OCPP20Data *ShmOCPP20Data;
|
|
struct OCPP20Data *ShmOCPP20Data;
|
|
|
|
+struct OCPP16Data *ShmOCPP16DataPH;
|
|
struct Charger *ShmCharger;
|
|
struct Charger *ShmCharger;
|
|
|
|
|
|
struct timespec startTime[AC_QUANTITY][TMR_IDX_CNT];
|
|
struct timespec startTime[AC_QUANTITY][TMR_IDX_CNT];
|
|
@@ -1480,6 +1481,20 @@ int CreatShareMemory()
|
|
}
|
|
}
|
|
memset(ShmCharger,0,sizeof(struct Charger));
|
|
memset(ShmCharger,0,sizeof(struct Charger));
|
|
|
|
|
|
|
|
+ //creat ShmOCPP16DataPH
|
|
|
|
+ if ((MeterSMId = shmget(ShmOcppPHModuleKey, sizeof(struct OCPP16Data), IPC_CREAT|0777)) < 0)
|
|
|
|
+ {
|
|
|
|
+ DEBUG_ERROR("shmget ShmOCPP16DataPH NG\n");
|
|
|
|
+ result = FAIL;
|
|
|
|
+ }
|
|
|
|
+ else if ((ShmOCPP16DataPH = shmat(MeterSMId, NULL, 0)) == (void *) -1)
|
|
|
|
+ {
|
|
|
|
+ DEBUG_ERROR("shmat ShmOCPP16DataPH NG\n");
|
|
|
|
+ result = FAIL;
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ {}
|
|
|
|
+
|
|
ShmSysConfigAndInfo->SysInfo.InternetConn = OFF;
|
|
ShmSysConfigAndInfo->SysInfo.InternetConn = OFF;
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|