From a711eec80c06c324b78348fe5b6feca09ceb9827 Mon Sep 17 00:00:00 2001 From: Rene Zeldenthuis Date: Mon, 29 May 2023 13:29:16 +0200 Subject: [PATCH] Added cores to logging --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index b9355bc..bddbc95 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -397,7 +397,7 @@ void setup() Serial.setDebugOutput(true); #endif - log_i("CPU Freq: %d Mhz", getCpuFrequencyMhz()); + log_i("CPU Freq: %d Mhz, %d core(s)", getCpuFrequencyMhz(), ESP.getChipCores()); log_i("Free heap: %d bytes", ESP.getFreeHeap()); log_i("SDK version: %s", ESP.getSdkVersion()); log_i("Starting " APP_TITLE "...");