We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c41bd1 commit 120d7edCopy full SHA for 120d7ed
builder/frameworks/arduino.py
@@ -60,7 +60,7 @@
60
flag_any_custom_sdkconfig = os.path.exists(join(platform.get_package_dir("framework-arduinoespressif32-libs"),"sdkconfig"))
61
62
# Esp32-solo1 libs needs adopted settings
63
-if flag_custom_sdkconfig == True and "CORE32SOLO1" in extra_flags and ("CONFIG_FREERTOS_UNICORE=y" in entry_custom_sdkconfig or "CONFIG_FREERTOS_UNICORE=y" in board_sdkconfig):
+if flag_custom_sdkconfig == True and ("CORE32SOLO1" in extra_flags or "CONFIG_FREERTOS_UNICORE=y" in entry_custom_sdkconfig or "CONFIG_FREERTOS_UNICORE=y" in board_sdkconfig):
64
if len(str(env.GetProjectOption("build_unflags"))) == 2: # No valid env, needs init
65
env['BUILD_UNFLAGS'] = {}
66
build_unflags = " ".join(env['BUILD_UNFLAGS'])
0 commit comments