Skip to content

Commit

Permalink
session limits should not be updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ikaratass committed Mar 27, 2024
1 parent 317071c commit 67f4d87
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions iso15118/secc/states/iso15118_2_states.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
from iso15118.secc.comm_session_handler import SECCCommunicationSession
from iso15118.secc.controller.ev_data import EVSessionContext15118
from iso15118.secc.controller.interface import AuthorizationResponse
from iso15118.secc.controller.evse_data import CurrentType
from iso15118.secc.states.secc_state import StateSECC
from iso15118.shared.exceptions import (
CertAttributeError,
Expand Down Expand Up @@ -1366,15 +1367,15 @@ async def process_message(
ac_evse_charge_params = (
await self.comm_session.evse_controller.get_ac_charge_params_v2()
)
evse_data_context.update_ac_charge_parameters_v2(ac_evse_charge_params)
evse_data_context.current_type = CurrentType.AC
ev_data_context.update_ac_charge_parameters_v2(
charge_params_req.ac_ev_charge_parameter
)
else:
dc_evse_charge_params = (
await self.comm_session.evse_controller.get_dc_charge_parameters_v2()
)
evse_data_context.update_dc_charge_parameters(dc_evse_charge_params)
evse_data_context.current_type = CurrentType.DC
ev_data_context.update_dc_charge_parameters(
charge_params_req.dc_ev_charge_parameter
)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "iso15118"
version = "0.26.0"
version = "0.26.1"
description = "Implementation of DIN SPEC 70121, ISO 15118-2 and -20 specs for SECC"
authors = ["André Duarte <andre@switch-ev.com>",
"Dr. Marc Mültin <marc@switch-ev.com>",
Expand Down

0 comments on commit 67f4d87

Please sign in to comment.