From e9d9cf7e48c4edec0df5ac2022d1ac24c6243ca5 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Sat, 24 Sep 2022 17:17:16 +0200 Subject: [PATCH] fix console show system --- src/system.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system.cpp b/src/system.cpp index 9bb39c63e..9498358f3 100644 --- a/src/system.cpp +++ b/src/system.cpp @@ -799,7 +799,7 @@ void System::show_system(uuid::console::Shell & shell) { shell.printfln(F(" Free heap: %lu KB"), (uint32_t)ESP.getFreeHeap() / 1024); shell.printfln(F(" App used/free: %lu KB / %lu KB"), appUsed(), appFree()); uint32_t FSused = LittleFS.usedBytes() / 1024; - shell.printfln(F(" FS used/free: %lu KB / %lu KB"), FSused / 1024, FStotal() - FSused); + shell.printfln(F(" FS used/free: %lu KB / %lu KB"), FSused, FStotal() - FSused); shell.println(); shell.println("Network:");