We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69946e4 commit 381ad56Copy full SHA for 381ad56
1 file changed
wled00/json.cpp
@@ -1133,9 +1133,8 @@ void serializeInfo(JsonObject root)
1133
//WLEDMM: conditional on esp32
1134
#if defined(ARDUINO_ARCH_ESP32)
1135
root[F("freestack")] = uxTaskGetStackHighWaterMark(NULL); //WLEDMM
1136
- //root[F("minfreeheap")] = ESP.getMinFreeHeap();
+ root[F("minfreeheap")] = ESP.getMinFreeHeap();
1137
auto maxFreeBlock = getContiguousFreeHeap();
1138
- root[F("minfreeheap")] = maxFreeBlock;
1139
root[F("maxalloc")] = maxFreeBlock; // for upstream WLED compatibility
1140
#endif
1141
0 commit comments