Skip to content

Commit 9440d30

Browse files
committed
Update toolchain for compatibility with Arduino core 2.5.0
1 parent 7b0b218 commit 9440d30

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

platform.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"packages": {
4242
"toolchain-xtensa": {
4343
"type": "toolchain",
44-
"version": "<3"
44+
"version": "~2.40802.0"
4545
},
4646
"framework-arduinoespressif8266": {
4747
"type": "framework",

platform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def configure_default_packages(self, variables, targets):
2323
self.packages['sdk-esp8266']['optional'] = False
2424
if "buildfs" in targets:
2525
self.packages['tool-mkspiffs']['optional'] = False
26-
if not framework or framework == "simba":
26+
if not framework or "simba" in framework:
2727
self.packages['toolchain-xtensa']['version'] = "<2"
2828
return PlatformBase.configure_default_packages(
2929
self, variables, targets)

0 commit comments

Comments
 (0)