From 69b62e2be9bb2df0ab188e34177d6d7b94aa310b Mon Sep 17 00:00:00 2001 From: proddy Date: Fri, 6 Sep 2024 00:44:18 +0200 Subject: [PATCH] "show system" command shows NVS device details, so can be checked after flashing without going to the web --- src/system.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/system.cpp b/src/system.cpp index 018d111ff..ef9de4e5e 100644 --- a/src/system.cpp +++ b/src/system.cpp @@ -993,6 +993,7 @@ void System::show_system(uuid::console::Shell & shell) { shell.println("System:"); shell.printfln(" Version: %s", EMSESP_APP_VERSION); shell.printfln(" Platform: %s", EMSESP_PLATFORM); + shell.printfln(" NVS device information: %s", getBBQKeesGatewayDetails().c_str()); shell.printfln(" Language: %s", locale().c_str()); shell.printfln(" Board profile: %s", board_profile().c_str()); shell.printfln(" Uptime: %s", uuid::log::format_timestamp_ms(uuid::get_uptime_ms(), 3).c_str());