diff --git a/src/app.cpp b/src/app.cpp index 4847b512..d83e169b 100644 --- a/src/app.cpp +++ b/src/app.cpp @@ -52,10 +52,10 @@ void app::setup() { mMiPayload.setup(this, &mSys, &mStat, mConfig->nrf.maxRetransPerPyld, &mTimestamp); mMiPayload.enableSerialDebug(mConfig->serial.debug); - DBGPRINTLN("--- after payload"); - DBGPRINTLN(String(ESP.getFreeHeap())); - DBGPRINTLN(String(ESP.getHeapFragmentation())); - DBGPRINTLN(String(ESP.getMaxFreeBlockSize())); + //DBGPRINTLN("--- after payload"); + //DBGPRINTLN(String(ESP.getFreeHeap())); + //DBGPRINTLN(String(ESP.getHeapFragmentation())); + //DBGPRINTLN(String(ESP.getMaxFreeBlockSize())); if(!mSys.Radio.isChipConnected()) DPRINTLN(DBG_WARN, F("WARNING! your NRF24 module can't be reached, check the wiring")); @@ -85,10 +85,10 @@ void app::setup() { regularTickers(); - DBGPRINTLN("--- end setup"); - DBGPRINTLN(String(ESP.getFreeHeap())); - DBGPRINTLN(String(ESP.getHeapFragmentation())); - DBGPRINTLN(String(ESP.getMaxFreeBlockSize())); + //DBGPRINTLN("--- end setup"); + //DBGPRINTLN(String(ESP.getFreeHeap())); + //DBGPRINTLN(String(ESP.getHeapFragmentation())); + //DBGPRINTLN(String(ESP.getMaxFreeBlockSize())); } //----------------------------------------------------------------------------- diff --git a/src/web/RestApi.h b/src/web/RestApi.h index 1193116f..77180351 100644 --- a/src/web/RestApi.h +++ b/src/web/RestApi.h @@ -182,7 +182,6 @@ class RestApi { } void getGeneric(JsonObject obj) { - obj[F("build")] = String(AUTO_GIT_HASH); obj[F("wifi_rssi")] = (WiFi.status() != WL_CONNECTED) ? 0 : WiFi.RSSI(); obj[F("ts_uptime")] = mApp->getUptime(); obj[F("menu_prot")] = mApp->getProtection();