Update i2s_audio.cpp

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

View File

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