From 0a0ca506eb18f762d28445e579786874da9723c4 Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Tue, 18 Nov 2025 23:35:15 +0100 Subject: [PATCH] Add WLEDMM_FASTPATH definition for all esp32 builds force all esp32 builds to use WLEDMM_FASTPATH. The code is proven in use, while non-fastpath is becoming obsolete. --- wled00/wled.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wled00/wled.h b/wled00/wled.h index 2778ed21..138157a7 100644 --- a/wled00/wled.h +++ b/wled00/wled.h @@ -87,6 +87,9 @@ // WLEDMM MANDATORY flags #define WLEDMM_PROTECT_SERVICE // prevents crashes when effects are drawing while asyncWebServer tries to modify segments at the same time +#if !defined(WLEDMM_FASTPATH) && !defined(ESP8266) +#define WLEDMM_FASTPATH // all WLED-MM build are FASTPATH +#endif // Library inclusions. #include