|
@@ -2752,6 +2752,7 @@ int sendBootNotificationRequest(void)
|
|
char message[500]={0}, payload[700]={0};
|
|
char message[500]={0}, payload[700]={0};
|
|
char guid[37]={0};
|
|
char guid[37]={0};
|
|
char tempdata[65]={0};
|
|
char tempdata[65]={0};
|
|
|
|
+/*
|
|
int IsGunCharging = FALSE;
|
|
int IsGunCharging = FALSE;
|
|
|
|
|
|
//check Transaction active
|
|
//check Transaction active
|
|
@@ -2792,7 +2793,7 @@ int sendBootNotificationRequest(void)
|
|
server_sign = TRUE;
|
|
server_sign = TRUE;
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+*/
|
|
// Fill BootNotification fields
|
|
// Fill BootNotification fields
|
|
strcpy((char *)ShmOCPP16Data->BootNotification.CbSN,(const char *)ShmOCPP16Data->ChargeBoxId);
|
|
strcpy((char *)ShmOCPP16Data->BootNotification.CbSN,(const char *)ShmOCPP16Data->ChargeBoxId);
|
|
strcpy((char *)ShmOCPP16Data->BootNotification.CpModel,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName);
|
|
strcpy((char *)ShmOCPP16Data->BootNotification.CpModel,(const char *)ShmSysConfigAndInfo->SysConfig.ModelName);
|
|
@@ -10575,7 +10576,7 @@ int handleTriggerMessageRequest(char *uuid, char *payload)
|
|
}
|
|
}
|
|
else if(strcmp(requestedMessagestr, MessageTriggerStr[Heartbeat]) == 0 )
|
|
else if(strcmp(requestedMessagestr, MessageTriggerStr[Heartbeat]) == 0 )
|
|
{
|
|
{
|
|
- sendHeartbeatRequest(connectorIdInt);
|
|
|
|
|
|
+ clientTime.Heartbeat = time((time_t*)NULL) - (ShmOCPP16Data->BootNotification.ResponseHeartbeatInterval);
|
|
//sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
|
|
//sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
|
|
}
|
|
}
|
|
else if (strcmp(requestedMessagestr, MessageTriggerStr[MeterValues]) == 0 )
|
|
else if (strcmp(requestedMessagestr, MessageTriggerStr[MeterValues]) == 0 )
|
|
@@ -10605,14 +10606,14 @@ int handleTriggerMessageRequest(char *uuid, char *payload)
|
|
{
|
|
{
|
|
if((connectorIdInt > 0) && ((connectorIdInt -1) < gunTotalNumber))
|
|
if((connectorIdInt > 0) && ((connectorIdInt -1) < gunTotalNumber))
|
|
{
|
|
{
|
|
- sendStatusNotificationRequest(connectorIdInt -1);
|
|
|
|
|
|
+ cpinitateMsg.bits[connectorIdInt -1].StatusNotificationReq = 1;
|
|
//sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
|
|
//sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
else
|
|
{
|
|
{
|
|
for(int idx=0;idx< gunTotalNumber;idx++)
|
|
for(int idx=0;idx< gunTotalNumber;idx++)
|
|
- sendStatusNotificationRequest(idx);
|
|
|
|
|
|
+ cpinitateMsg.bits[idx].StatusNotificationReq = 1;
|
|
|
|
|
|
//sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
|
|
//sprintf(comfirmstr, "%s",TriggerMessageStatusStr[TriggerMessageStatus_Accepted] );
|
|
}
|
|
}
|