1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-01 19:02:18 +01:00

ESP32 IDF: Override toolchain-esp32ulp with espressifs own published version (#4155)

This commit is contained in:
Jesse Hills
2022-12-07 16:01:26 +13:00
committed by GitHub
parent 4a3b628946
commit f843925301

View File

@@ -327,6 +327,11 @@ async def to_code(config):
"platform_packages",
[f"platformio/framework-espidf @ {conf[CONF_SOURCE]}"],
)
# platformio/toolchain-esp32ulp does not support linux_aarch64 yet and has not been updated for over 2 years
# This is espressif's own published version which is more up to date.
cg.add_platformio_option(
"platform_packages", ["espressif/toolchain-esp32ulp @ 2.35.0-20220830"]
)
add_idf_sdkconfig_option("CONFIG_PARTITION_TABLE_SINGLE_APP", False)
add_idf_sdkconfig_option("CONFIG_PARTITION_TABLE_CUSTOM", True)
add_idf_sdkconfig_option(