Merge branch 'bugfix/fix_i2s_record_example_include_path' into 'master'

i2s_record: use absolute including path

Closes IDFGH-8926

See merge request espressif/esp-idf!21647
This commit is contained in:
Kevin (Lao Kaiyao)
2022-12-20 18:16:22 +08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
idf_component_register(SRCS "i2s_es7210_record_example.c"
INCLUDE_DIRS "../../../common"
INCLUDE_DIRS "$ENV{IDF_PATH}/examples/peripherals/i2s/common"
)

View File

@@ -1,2 +1,2 @@
idf_component_register(SRCS "i2s_recorder_main.c"
INCLUDE_DIRS "../../common")
INCLUDE_DIRS "$ENV{IDF_PATH}/examples/peripherals/i2s/common")