File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 41
41
"packages" : {
42
42
"toolchain-xtensa" : {
43
43
"type" : " toolchain" ,
44
- "version" : " ~1.40802.0 "
44
+ "version" : " <3 "
45
45
},
46
46
"framework-arduinoespressif8266" : {
47
47
"type" : " framework" ,
Original file line number Diff line number Diff line change 18
18
class Espressif8266Platform (PlatformBase ):
19
19
20
20
def configure_default_packages (self , variables , targets ):
21
- if not variables .get ("pioframework" ):
21
+ framework = variables .get ("pioframework" )
22
+ if not framework :
22
23
self .packages ['sdk-esp8266' ]['optional' ] = False
23
24
if "buildfs" in targets :
24
25
self .packages ['tool-mkspiffs' ]['optional' ] = False
26
+ if not framework or framework == "simba" :
27
+ self .packages ['toolchain-xtensa' ]['version' ] = "<2"
25
28
return PlatformBase .configure_default_packages (
26
29
self , variables , targets )
You can’t perform that action at this time.
0 commit comments