Skip to content

Commit bf195a3

Browse files
committed
Add new package with ELF files of ESP32 ROMs
1 parent 57a5c7e commit bf195a3

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

platform.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,11 @@
145145
"optional": true,
146146
"owner": "platformio",
147147
"version": "~1.0.1"
148+
},
149+
"tool-esp-rom-elfs": {
150+
"optional": true,
151+
"owner": "platformio",
152+
"version": "0.0.1+20241011"
148153
}
149154
}
150155
}

platform.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,12 @@ def configure_default_packages(self, variables, targets):
106106

107107
# Common packages for IDF and mixed Arduino+IDF projects
108108
for p in self.packages:
109-
if p in ("tool-cmake", "tool-ninja", "toolchain-esp32ulp"):
109+
if p in (
110+
"tool-cmake",
111+
"tool-ninja",
112+
"toolchain-esp32ulp",
113+
"tool-esp-rom-elfs",
114+
):
110115
self.packages[p]["optional"] = False
111116
elif p in ("tool-mconf", "tool-idf") and IS_WINDOWS:
112117
self.packages[p]["optional"] = False

0 commit comments

Comments
 (0)