Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OCPP 2.0.1 Fixes after functionality tests #371

Merged
merged 19 commits into from
Oct 8, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
reset TxEndedMeasurands factory default
  • Loading branch information
matth-x committed Sep 21, 2024
commit c3b6b4674c1060b46979c45b5e84804179754ff5
2 changes: 1 addition & 1 deletion src/MicroOcpp/Model/Metering/MeterValuesV201.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ MeteringService::MeteringService(Model& model, size_t numEvses) {
//define factory defaults
varService->declareVariable<const char*>("SampledDataCtrlr", "TxStartedMeasurands", "");
varService->declareVariable<const char*>("SampledDataCtrlr", "TxUpdatedMeasurands", "");
varService->declareVariable<const char*>("SampledDataCtrlr", "TxEndedMeasurands", "Energy.Active.Import.Register");
varService->declareVariable<const char*>("SampledDataCtrlr", "TxEndedMeasurands", "");
varService->declareVariable<const char*>("AlignedDataCtrlr", "AlignedDataMeasurands", "");

std::function<bool(const char*)> validateSelectString = [this] (const char *csl) {
Expand Down