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.
This commit is contained in:
Frank
2025-11-18 23:35:15 +01:00
committed by GitHub
parent 1583452c86
commit 0a0ca506eb

View File

@@ -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 <Arduino.h>