Skip to content

Commit edfa97f

Browse files
committed
v0.9.351
1 parent 001fcb4 commit edfa97f

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,9 @@ Work is in progress...
234234

235235
---
236236
## Version history
237+
#### v0.9.351
238+
- fixed freezing when loading without plugins in some configurations "running dots"
239+
237240
#### v0.9.350
238241
- **Added parameters for configuring `LED_BUILTIN` on ESP32S3 modules:**
239242
- `USE_BUILTIN_LED`: Determines whether to use the built-in `LED_BUILTIN` (default is `true`).

yoRadio/src/core/display.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ void Display::loop() {
371371
#endif
372372
requestParams_t request;
373373
if(xQueueReceive(displayQueue, &request, DSP_QUEUE_TICKS)){
374-
bool pm_result;
374+
bool pm_result = true;
375375
pm.on_display_queue(request, pm_result);
376376
if(pm_result)
377377
switch (request.type){

yoRadio/src/core/options.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef options_h
22
#define options_h
33

4-
#define YOVERSION "0.9.350"
4+
#define YOVERSION "0.9.351"
55

66
/*******************************************************
77
DO NOT EDIT THIS FILE.

0 commit comments

Comments
 (0)