mirror of https://github.com/arendst/Tasmota.git
Merge pull request #14693 from s-hadinger/esp32s3_neopixel
ESP32S3 allow NeoPixelBus to compile
This commit is contained in:
commit
70f5d2c516
|
@ -19,8 +19,8 @@
|
|||
|
||||
#include "sdkconfig.h" // this sets useful config symbols, like CONFIG_IDF_TARGET_ESP32C3
|
||||
|
||||
// ESP32C3 I2S is not supported yet due to significant changes to interface
|
||||
#if !defined(CONFIG_IDF_TARGET_ESP32C3)
|
||||
// ESP32C3/S3 I2S is not supported yet due to significant changes to interface
|
||||
#if !defined(CONFIG_IDF_TARGET_ESP32C3) && !defined(CONFIG_IDF_TARGET_ESP32S3)
|
||||
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
|
|
Loading…
Reference in New Issue