|
@@ -2099,9 +2099,10 @@ void checkCompositeSchedule(uint8_t connectorId, uint32_t durationReq, struct St
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- DEBUG_INFO("Composite schedule start: %s\n", compositeProfile->ChargingSchedule.StartSchedule);
|
|
+ DEBUG_INFO("Connector-%d composite schedule ready.\n", connectorId);
|
|
- DEBUG_INFO("Composite schedule duration: %d\n", compositeProfile->ChargingSchedule.Duration);
|
|
+ DEBUG_INFO("Schedule start: %s\n", compositeProfile->ChargingSchedule.StartSchedule);
|
|
- DEBUG_INFO("Composite rate unit: %s\n", compositeProfile->ChargingSchedule.ChargingRateUnit);
|
|
+ DEBUG_INFO("Schedule duration: %d\n", compositeProfile->ChargingSchedule.Duration);
|
|
|
|
+ DEBUG_INFO("Rate unit: %s\n", compositeProfile->ChargingSchedule.ChargingRateUnit);
|
|
for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(compositeProfile->ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
|
|
for(int idxPeriod=0;idxPeriod<ARRAY_SIZE(compositeProfile->ChargingSchedule.ChargingSchedulePeriod);idxPeriod++)
|
|
{
|
|
{
|
|
if(compositeProfile->ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod >= 0)
|
|
if(compositeProfile->ChargingSchedule.ChargingSchedulePeriod[idxPeriod].StartPeriod >= 0)
|
|
@@ -5642,7 +5643,10 @@ int sendMeterValuesRequest(int gun_index, ReadingContext dataType)
|
|
(ShmOCPP16Data->MeterValues[gun_index].TransactionId != -1))
|
|
(ShmOCPP16Data->MeterValues[gun_index].TransactionId != -1))
|
|
queue_operation(QUEUE_OPERATION_ADD, guid, queuedata );
|
|
queue_operation(QUEUE_OPERATION_ADD, guid, queuedata );
|
|
else
|
|
else
|
|
- LWS_Send(queuedata +2);
|
|
+ {
|
|
|
|
+ if(FirstHeartBeat)
|
|
|
|
+ LWS_Send(queuedata +2);
|
|
|
|
+ }
|
|
|
|
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
@@ -15176,32 +15180,64 @@ int GetOcppServerURL()
|
|
memset(OcppProtocol, 0, ARRAY_SIZE(OcppProtocol));
|
|
memset(OcppProtocol, 0, ARRAY_SIZE(OcppProtocol));
|
|
memset(OcppHost, 0, ARRAY_SIZE(OcppHost));
|
|
memset(OcppHost, 0, ARRAY_SIZE(OcppHost));
|
|
memset(OcppTempPath, 0, ARRAY_SIZE(OcppTempPath));
|
|
memset(OcppTempPath, 0, ARRAY_SIZE(OcppTempPath));
|
|
|
|
+ struct yuarel url;
|
|
|
|
+ char urlStr[512];
|
|
|
|
|
|
if((ShmSysConfigAndInfo->SysConfig.OcppServerURL != NULL) && (strcmp((const char *)ShmSysConfigAndInfo->SysConfig.OcppServerURL,"") != 0) )
|
|
if((ShmSysConfigAndInfo->SysConfig.OcppServerURL != NULL) && (strcmp((const char *)ShmSysConfigAndInfo->SysConfig.OcppServerURL,"") != 0) )
|
|
{
|
|
{
|
|
-#if 1
|
|
+
|
|
- sscanf((const char *)ShmSysConfigAndInfo->SysConfig.OcppServerURL,
|
|
|
|
"%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
|
|
"%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
|
|
- OcppProtocol, OcppHost, &OcppPort, OcppTempPath);
|
|
+ OcppProtocol, OcppHost, &OcppPort, OcppTempPath);*/
|
|
-#endif
|
|
+
|
|
- result = TRUE;
|
|
+ memcpy(urlStr, ShmSysConfigAndInfo->SysConfig.OcppServerURL, ARRAY_SIZE(ShmSysConfigAndInfo->SysConfig.OcppServerURL));
|
|
- goto End;
|
|
+ if(yuarel_parse(&url, urlStr) != -1)
|
|
|
|
+ {
|
|
|
|
+ sprintf(OcppProtocol, "%s", url.scheme);
|
|
|
|
+ sprintf(OcppHost, "%s", url.host);
|
|
|
|
+ sprintf(OcppTempPath, "%s", url.path);
|
|
|
|
+ if(url.port == 0)
|
|
|
|
+ {
|
|
|
|
+ if(strcmp(OcppProtocol, "wss") == 0)
|
|
|
|
+ OcppPort = 443;
|
|
|
|
+ else
|
|
|
|
+ OcppPort = 80;
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ OcppPort = url.port;
|
|
|
|
+
|
|
|
|
+ result = TRUE;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
else if((ShmOCPP16Data->OcppServerURL != NULL) && (strcmp((const char *)ShmOCPP16Data->OcppServerURL,"") != 0))
|
|
else if((ShmOCPP16Data->OcppServerURL != NULL) && (strcmp((const char *)ShmOCPP16Data->OcppServerURL,"") != 0))
|
|
{
|
|
{
|
|
- sscanf((const char *)ShmOCPP16Data->OcppServerURL,
|
|
+
|
|
"%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
|
|
"%[^:]:%*2[/]%[^:]:%i/%[a-zA-Z0-9._/-]",
|
|
- OcppProtocol, OcppHost, &OcppPort, OcppTempPath);
|
|
+ OcppProtocol, OcppHost, &OcppPort, OcppTempPath);*/
|
|
- result = TRUE;
|
|
+
|
|
- goto End;
|
|
+ memcpy(urlStr, ShmOCPP16Data->OcppServerURL, ARRAY_SIZE(ShmOCPP16Data->OcppServerURL));
|
|
|
|
+ if(yuarel_parse(&url, urlStr) != -1)
|
|
|
|
+ {
|
|
|
|
+ sprintf(OcppProtocol, "%s", url.scheme);
|
|
|
|
+ sprintf(OcppHost, "%s", url.host);
|
|
|
|
+ sprintf(OcppTempPath, "%s", url.path);
|
|
|
|
+ if(url.port == 0)
|
|
|
|
+ {
|
|
|
|
+ if(strcmp(OcppProtocol, "wss") == 0)
|
|
|
|
+ OcppPort = 443;
|
|
|
|
+ else
|
|
|
|
+ OcppPort = 80;
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ OcppPort = url.port;
|
|
|
|
|
|
|
|
+ result = TRUE;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
else
|
|
else
|
|
{
|
|
{
|
|
strcpy(OcppHost,"");
|
|
strcpy(OcppHost,"");
|
|
}
|
|
}
|
|
|
|
|
|
-End:
|
|
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
|