From 67bcf421257896840eb6a01bb60f983d91e78d7b Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Thu, 7 Jul 2022 19:29:36 +0200 Subject: [PATCH] audioreactive: typo oops. --- usermods/audioreactive/audio_source.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usermods/audioreactive/audio_source.h b/usermods/audioreactive/audio_source.h index 7407921d..168b3aca 100644 --- a/usermods/audioreactive/audio_source.h +++ b/usermods/audioreactive/audio_source.h @@ -3,7 +3,7 @@ #include #include "wled.h" #include -include +#include #if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 4, 0) #include #include @@ -99,7 +99,7 @@ class I2SSource : public AudioSource { .bits_per_sample = I2S_SAMPLE_RESOLUTION, .channel_format = I2S_CHANNEL_FMT_ONLY_LEFT, #if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 2, 0) - .communication_format = i2s_comm_format_t(I2S_COMM_FORMAT_STAND_I2S), + .communication_format = i2s_comm_format_t(I2S_COMM_FORMAT_STAND_I2S), #else .communication_format = i2s_comm_format_t(I2S_COMM_FORMAT_I2S | I2S_COMM_FORMAT_I2S_MSB), #endif @@ -322,7 +322,7 @@ class I2SAdcSource : public I2SSource { .bits_per_sample = I2S_SAMPLE_RESOLUTION, .channel_format = I2S_CHANNEL_FMT_ONLY_LEFT, #if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 2, 0) - .communication_format = i2s_comm_format_t(I2S_COMM_FORMAT_STAND_I2S), + .communication_format = i2s_comm_format_t(I2S_COMM_FORMAT_STAND_I2S), #else .communication_format = i2s_comm_format_t(I2S_COMM_FORMAT_I2S | I2S_COMM_FORMAT_I2S_MSB), #endif