mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
replaced SPIFFS with LITTLEFS
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user