Disable I2S for ESP32S3 and allow compilation (#558)

This commit is contained in:
s-hadinger
2022-02-05 18:50:41 +01:00
committed by GitHub
parent 46299ffa4b
commit 97364bfc24

View File

@@ -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>