Treat DC Shutdown status codes as valid when STOP power delivery is requested

When an EVSE side shutdown is initated it's hard to tell from
the controller point of view wich exact state is requested. So in
WaitForPowerDeliveryReq we treat EVSE_SHUTDOWN and similar status codes
as valid when the EV requested a stop
This commit is contained in:
Nagy Attila Gabor 2020-04-26 22:20:19 +02:00
parent f9fce08e6c
commit 5446786323
1 changed files with 5 additions and 2 deletions

View File

@ -152,8 +152,11 @@ public class WaitForPowerDeliveryReq extends ServerState {
dcEVSEStatusCode.equals(DCEVSEStatusCodeType.EVSE_EMERGENCY_SHUTDOWN) ||
dcEVSEStatusCode.equals(DCEVSEStatusCodeType.EVSE_MALFUNCTION)) {
getLogger().error("EVSE status code is '" + dcEVSEStatusCode.toString() + "'");
powerDeliveryRes.setResponseCode(ResponseCodeType.FAILED_POWER_DELIVERY_NOT_APPLIED);
return false;
if (!powerDeliveryReq.getChargeProgress().equals(ChargeProgressType.STOP)) {
powerDeliveryRes.setResponseCode(ResponseCodeType.FAILED_POWER_DELIVERY_NOT_APPLIED);
return false;
}
}
}