mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-02-15 12:27:50 +00:00
Various bug fixes (#1041)
* Fixing board type overwrite, zmartcharge default issues and disabling entsoe * Fixed Zmartcharge configuration issue
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user