Update ESP32 ULP toolchain to v2.35
ULP toolchain is now common for all family
This commit is contained in:
+1
-4
@@ -90,7 +90,7 @@ class Espressif32Platform(PlatformBase):
|
||||
if "espidf" in frameworks:
|
||||
# Common packages for IDF and mixed Arduino+IDF projects
|
||||
for p in self.packages:
|
||||
if p in ("tool-cmake", "tool-ninja", "toolchain-%sulp" % mcu):
|
||||
if p in ("tool-cmake", "tool-ninja", "toolchain-esp32ulp"):
|
||||
self.packages[p]["optional"] = False
|
||||
elif p in ("tool-mconf", "tool-idf") and IS_WINDOWS:
|
||||
self.packages[p]["optional"] = False
|
||||
@@ -102,9 +102,6 @@ class Espressif32Platform(PlatformBase):
|
||||
self.packages.pop("toolchain-xtensa-%s" % available_mcu, None)
|
||||
|
||||
if mcu in ("esp32s2", "esp32s3", "esp32c3"):
|
||||
self.packages.pop("toolchain-esp32ulp", None)
|
||||
if mcu != "esp32s2":
|
||||
self.packages.pop("toolchain-esp32s2ulp", None)
|
||||
# RISC-V based toolchain for ESP32C3, ESP32S2, ESP32S3 ULP
|
||||
self.packages["toolchain-riscv32-esp"]["optional"] = False
|
||||
|
||||
|
||||
Reference in New Issue
Block a user