Various bug fixes (#1041)

* Fixing board type overwrite, zmartcharge default issues and disabling entsoe

* Fixed Zmartcharge configuration issue
This commit is contained in:
Gunnar Skjold
2025-10-16 08:50:03 +02:00
committed by GitHub
parent 7a4ab77a83
commit 0dfd2d9022
9 changed files with 93 additions and 53 deletions

View File

@@ -1183,6 +1183,17 @@ void AmsWebServer::handleSave() {
if(!checkSecurity(1))
return;
#if defined(AMS_REMOTE_DEBUG)
if (debugger->isActive(RemoteDebug::DEBUG)) {
#endif
debugger->printf(PSTR("Received %d args for /save\n"), server.args());
for(uint8_t i = 0; i < server.args(); i++) {
debugger->printf_P(PSTR(" %s: %s\n"), server.argName(i).c_str(), server.arg(i).c_str());
}
#if defined(AMS_REMOTE_DEBUG)
}
#endif
SystemConfig sys;
config->getSystemConfig(sys);