Skip to content

Commit 7058375

Browse files
committed
fix(i2s_es7210): fixed breaking change of dependency migration
1 parent 24bc87d commit 7058375

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/peripherals/i2s/i2s_codec/i2s_es7210_tdm/main/i2s_es7210_record_example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
/* ES7210 configurations */
7979
#define EXAMPLE_ES7210_I2C_ADDR (0x40)
8080
#define EXAMPLE_ES7210_MIC_GAIN (30) // 30db
81-
#define EXAMPLE_ES7210_MIC_SELECTED (ES7120_SEL_MIC1 | ES7120_SEL_MIC2 | ES7120_SEL_MIC3 | ES7120_SEL_MIC4)
81+
#define EXAMPLE_ES7210_MIC_SELECTED (ES7210_SEL_MIC1 | ES7210_SEL_MIC2 | ES7210_SEL_MIC3 | ES7210_SEL_MIC4)
8282

8383
/* SD card & recording configurations */
8484
#define EXAMPLE_RECORD_TIME_SEC (10)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## IDF Component Manager Manifest File
22
dependencies:
3-
espressif/esp_codec_dev: ^1.3.4
3+
espressif/esp_codec_dev: ">=1.4.0,<1.5.0"
44
i2s_examples_common:
55
path: ${IDF_PATH}/examples/peripherals/i2s/i2s_examples_common

0 commit comments

Comments
 (0)