Update ESP32 ULP toolchain to v2.35
ULP toolchain is now common for all family
This commit is contained in:
+1
-7
@@ -60,13 +60,7 @@
|
|||||||
"type": "toolchain",
|
"type": "toolchain",
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"owner": "platformio",
|
"owner": "platformio",
|
||||||
"version": "~1.22851.0"
|
"version": "~1.23500.0"
|
||||||
},
|
|
||||||
"toolchain-esp32s2ulp": {
|
|
||||||
"type": "toolchain",
|
|
||||||
"optional": true,
|
|
||||||
"owner": "platformio",
|
|
||||||
"version": "~1.22851.0"
|
|
||||||
},
|
},
|
||||||
"framework-arduinoespressif32": {
|
"framework-arduinoespressif32": {
|
||||||
"type": "framework",
|
"type": "framework",
|
||||||
|
|||||||
+1
-4
@@ -90,7 +90,7 @@ class Espressif32Platform(PlatformBase):
|
|||||||
if "espidf" in frameworks:
|
if "espidf" in frameworks:
|
||||||
# Common packages for IDF and mixed Arduino+IDF projects
|
# Common packages for IDF and mixed Arduino+IDF projects
|
||||||
for p in self.packages:
|
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
|
self.packages[p]["optional"] = False
|
||||||
elif p in ("tool-mconf", "tool-idf") and IS_WINDOWS:
|
elif p in ("tool-mconf", "tool-idf") and IS_WINDOWS:
|
||||||
self.packages[p]["optional"] = False
|
self.packages[p]["optional"] = False
|
||||||
@@ -102,9 +102,6 @@ class Espressif32Platform(PlatformBase):
|
|||||||
self.packages.pop("toolchain-xtensa-%s" % available_mcu, None)
|
self.packages.pop("toolchain-xtensa-%s" % available_mcu, None)
|
||||||
|
|
||||||
if mcu in ("esp32s2", "esp32s3", "esp32c3"):
|
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
|
# RISC-V based toolchain for ESP32C3, ESP32S2, ESP32S3 ULP
|
||||||
self.packages["toolchain-riscv32-esp"]["optional"] = False
|
self.packages["toolchain-riscv32-esp"]["optional"] = False
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user