replaced SPIFFS with LITTLEFS

This commit is contained in:
proddy
2021-02-20 16:02:25 +01:00
parent ec7d7b9b5e
commit 058660c2c3
17 changed files with 8853 additions and 207 deletions

View File

@@ -17,8 +17,8 @@ void SystemStatus::systemStatus(AsyncWebServerRequest * request) {
root["flash_chip_size"] = ESP.getFlashChipSize();
root["flash_chip_speed"] = ESP.getFlashChipSpeed();
root["fs_total"] = SPIFFS.totalBytes();
root["fs_used"] = SPIFFS.usedBytes();
root["fs_total"] = LITTLEFS.totalBytes();
root["fs_used"] = LITTLEFS.usedBytes();
root["uptime"] = uuid::log::format_timestamp_ms(uuid::get_uptime_ms(), 3);
response->setLength();