This commit is contained in:
MichaelDvP
2022-09-24 14:22:49 +02:00
parent 022b667858
commit 20b0c9653d
2 changed files with 9 additions and 9 deletions

View File

@@ -796,10 +796,10 @@ void System::show_system(uuid::console::Shell & shell) {
#ifndef EMSESP_STANDALONE
shell.printfln(F(" SDK version: %s"), ESP.getSdkVersion());
shell.printfln(F(" CPU frequency: %lu MHz"), ESP.getCpuFreqMHz());
shell.printfln(F(" Free heap: %lu kb"), (uint32_t)ESP.getFreeHeap() / 1024);
shell.printfln(F(" App used/free: %lu kb / %lu kb"), appUsed(), appFree());
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 / 1024, FStotal() - FSused);
shell.println();
shell.println("Network:");