Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions modules/EVSE/EvseV2G/iso_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1560,6 +1560,12 @@ static enum v2g_event handle_iso_power_delivery(struct v2g_connection* conn) {

case iso2_chargeProgressType_Renegotiate:
conn->ctx->session.renegotiation_required = true;
// For DC charging, CurrentDemand is stopped. In AC mode, charging is still possible, so we should
// remain in charging state and not communicate any changes externally.
if (conn->ctx->is_dc_charger == true) {
conn->ctx->p_charger->publish_current_demand_finished(nullptr);
conn->ctx->p_charger->publish_dc_open_contactor(nullptr);
}
break;

default:
Expand Down
Loading