From 94ac42f445acd7c1cb0a6387a273e881232c45d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frank=20M=C3=B6hle?= <91616163+softhack007@users.noreply.github.com> Date: Wed, 7 Jan 2026 13:16:45 +0100 Subject: [PATCH] Fix typo in garbage collection log message --- wled00/wled.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/wled.cpp b/wled00/wled.cpp index 2c2b18d3..3aabe59a 100644 --- a/wled00/wled.cpp +++ b/wled00/wled.cpp @@ -690,7 +690,7 @@ void WLED::setup() #if defined(ALL_JSON_TO_PSRAM) && defined(BOARD_HAS_PSRAM) && (defined(WLED_USE_PSRAM_JSON) || defined(WLED_USE_PSRAM)) if (psramFound()) { DEBUG_PRINT(F("\nfree heap ")); DEBUG_PRINTLN(ESP.getFreeHeap()); - USER_PRINTLN(F("JSON gabage collection (initial).")); + USER_PRINTLN(F("JSON garbage collection (initial).")); doc.garbageCollect(); // WLEDMM experimental - this seems to move the complete doc[] into PSRAM USER_PRINT(F("PSRAM in use:")); USER_PRINT(int(ESP.getPsramSize() - ESP.getFreePsram())); USER_PRINTLN(F(" Bytes.")); DEBUG_PRINT(F("free heap ")); DEBUG_PRINTLN(ESP.getFreeHeap());