8000
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 b4f3fbe commit f73c957Copy full SHA for f73c957
lib/framework/SystemStatus.cpp
@@ -25,6 +25,8 @@ void SystemStatus::systemStatus(AsyncWebServerRequest* request) {
25
root["flash_chip_size"] = ESP.getFlashChipSize();
26
root["flash_chip_speed"] = ESP.getFlashChipSpeed();
27
28
+// TODO - Ideally this class will take an *FS and extract the file system information from there.
29
+// ESP8266 and ESP32 do not have feature parity in FS.h which currently makes that difficult.
30
#ifdef ESP32
31
root["fs_total"] = SPIFFS.totalBytes();
32
root["fs_used"] = SPIFFS.usedBytes();
0 commit comments