From edfa97f31e6a3942c3b8ab9dded1427926db9ea8 Mon Sep 17 00:00:00 2001 From: e2002 Date: Fri, 6 Dec 2024 09:57:26 +0300 Subject: [PATCH] v0.9.351 --- README.md | 3 +++ yoRadio/src/core/display.cpp | 2 +- yoRadio/src/core/options.h | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b516311..0735f31 100644 --- a/README.md +++ b/README.md @@ -234,6 +234,9 @@ Work is in progress... --- ## Version history +#### v0.9.351 +- fixed freezing when loading without plugins in some configurations "running dots" + #### v0.9.350 - **Added parameters for configuring `LED_BUILTIN` on ESP32S3 modules:** - `USE_BUILTIN_LED`: Determines whether to use the built-in `LED_BUILTIN` (default is `true`). diff --git a/yoRadio/src/core/display.cpp b/yoRadio/src/core/display.cpp index 4fdc288..e39e2ff 100644 --- a/yoRadio/src/core/display.cpp +++ b/yoRadio/src/core/display.cpp @@ -371,7 +371,7 @@ void Display::loop() { #endif requestParams_t request; if(xQueueReceive(displayQueue, &request, DSP_QUEUE_TICKS)){ - bool pm_result; + bool pm_result = true; pm.on_display_queue(request, pm_result); if(pm_result) switch (request.type){ diff --git a/yoRadio/src/core/options.h b/yoRadio/src/core/options.h index 32c8840..efa9e8d 100644 --- a/yoRadio/src/core/options.h +++ b/yoRadio/src/core/options.h @@ -1,7 +1,7 @@ #ifndef options_h #define options_h -#define YOVERSION "0.9.350" +#define YOVERSION "0.9.351" /******************************************************* DO NOT EDIT THIS FILE.