(experimental) bugfix for Ethernet Errors when using I2S audio

For "v4" builds only.
See upstream https://github.com/wled/WLED/issues/5391
This commit is contained in:
Frank
2026-02-22 21:02:47 +01:00
parent f3eda7027f
commit ef63a1a500

View File

@@ -301,8 +301,8 @@ class I2SSource : public AudioSource {
#if defined(ARDUINO_ARCH_ESP32) && !defined(CONFIG_IDF_TARGET_ESP32S3) && !defined(CONFIG_IDF_TARGET_ESP32S2) && !defined(CONFIG_IDF_TARGET_ESP32C3)
if (ESP.getChipRevision() == 0) _config.use_apll = false; // APLL is broken on ESP32 revision 0
#endif
#if defined(WLED_ENABLE_HUB75MATRIX)
_config.use_apll = false; // APLL needed for HUB75 DMA driver ?
#if defined(WLED_USE_ETHERNET) || defined(WLED_ENABLE_HUB75MATRIX)
_config.use_apll = false; // APLL is needed for Ethernet, and possibly for HUB75, too
#endif
#endif