Update esp-adf to use latest version with I2C callback patch

This commit is contained in:
X-Ryl669 2024-03-07 19:36:28 +01:00
parent 78a8271797
commit 958fad79ee

View file

@ -70,9 +70,9 @@ async def to_code(config):
esp32.add_idf_component( esp32.add_idf_component(
name="esp-adf", name="esp-adf",
repo="https://github.com/espressif/esp-adf", repo="https://github.com/X-Ryl669/esp-adf",
path="components", path="components",
ref="v2.5", ref="with-i2c-cb",
components=["*"], components=["*"],
submodules=["components/esp-sr", "components/esp-adf-libs"], submodules=["components/esp-sr", "components/esp-adf-libs"],
) )
@ -99,5 +99,5 @@ async def to_code(config):
) )
esp32.add_extra_build_file( esp32.add_extra_build_file(
"esp_adf_patches/idf_v4.4_freertos.patch", "esp_adf_patches/idf_v4.4_freertos.patch",
"https://github.com/espressif/esp-adf/raw/v2.5/idf_patches/idf_v4.4_freertos.patch", "https://github.com/X-Ryl669/esp-adf/raw/with-i2c-cb/idf_patches/idf_v4.4_freertos.patch",
) )