use I2S_NUM_AUTO

This commit is contained in:
pimdo 2024-04-27 17:54:47 +01:00 committed by GitHub
parent ab4bae3170
commit f09a1e3ece
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 5 deletions

View File

@ -11,11 +11,7 @@ static const char *const TAG = "i2s_audio";
void I2SAudioComponent::setup() {
static i2s_port_t next_port_num = I2S_NUM_0;
#if SOC_I2S_NUM > 1
if (next_port_num > I2S_NUM_1) {
#else
if (next_port_num > I2S_NUM_0) {
#endif
if (next_port_num > I2S_NUM_AUTO) {
ESP_LOGE(TAG, "Too many I2S Audio components!");
this->mark_failed();
return;