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 f7e09de commit 4d700f0Copy full SHA for 4d700f0
builder/frameworks/arduino.py
@@ -599,8 +599,7 @@ def has_unicore_flags():
599
600
# Esp32-solo1 libs settings
601
if flag_custom_sdkconfig and has_unicore_flags():
602
- build_unflags = env.GetProjectOption("build_unflags")
603
- if not build_unflags: # not existing needs init
+ if not env.get('BUILD_UNFLAGS'): # Initialize if not set
604
env['BUILD_UNFLAGS'] = []
605
606
build_unflags = " ".join(env['BUILD_UNFLAGS']) + " -mdisable-hardware-atomics -ustart_app_other_cores"
0 commit comments