* fix index.html to load inverter info immediately

* changed timestamp to 1 for stand alone ESP, #90
This commit is contained in:
lumapu 2022-07-07 20:53:01 +02:00
parent 457792d20b
commit 21624cb517
4 changed files with 7 additions and 3 deletions

View file

@ -37,7 +37,11 @@ Main::Main(void) {
mUptimeTicker = 0xffffffff;
mUptimeInterval = 1000;
#ifdef AP_ONLY
mTimestamp = 1;
#else
mTimestamp = 0;
#endif
mHeapStatCnt = 0;
}