From 50cc6f4c2808c05800abe93828543a3f12da184b Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Mon, 22 Dec 2025 00:07:27 +0100 Subject: [PATCH] comment correction --- wled00/FX_fcn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/FX_fcn.cpp b/wled00/FX_fcn.cpp index b0734bdf..84150cff 100644 --- a/wled00/FX_fcn.cpp +++ b/wled00/FX_fcn.cpp @@ -2430,7 +2430,7 @@ void WS2812FX::resetSegments(bool boundsOnly) { //WLEDMM add boundsonly void WS2812FX::makeAutoSegments(bool forceReset) { if (autoSegments) { //make one segment per bus // WLEDMM protect against parallel access while drawing - if (esp32SemTake(segmentMux, 2100) != pdTRUE) return; // warning: this waits until the mutex becomes availeable, no timeout + if (esp32SemTake(segmentMux, 2100) != pdTRUE) return; // wait long, but don't wait forever uint16_t segStarts[MAX_NUM_SEGMENTS] = {0}; uint16_t segStops [MAX_NUM_SEGMENTS] = {0};