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 95f9c2e commit 2f8fbcbCopy full SHA for 2f8fbcb
builder/frameworks/arduino.py
@@ -600,8 +600,9 @@ def has_unicore_flags():
600
601
# Esp32-solo1 libs settings
602
if flag_custom_sdkconfig and has_unicore_flags():
603
- if len(str(env.GetProjectOption("build_unflags"))) == 2: # No valid env, needs init
604
- env['BUILD_UNFLAGS'] = {}
+ build_unflags = env.GetProjectOption("build_unflags")
+ if not build_unflags: # not existing needs init
605
+ env['BUILD_UNFLAGS'] = []
606
607
build_unflags = " ".join(env['BUILD_UNFLAGS']) + " -mdisable-hardware-atomics -ustart_app_other_cores"
608
new_build_unflags = build_unflags.split()
0 commit comments