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 cdcb5c2 commit 19ab750Copy full SHA for 19ab750
builder/frameworks/arduino.py
@@ -355,6 +355,9 @@ def safe_remove_sdkconfig_files():
355
flag_custom_component_add = False
356
flag_lib_ignore = False
357
358
+if mcu == "esp32c2":
359
+ flag_custom_sdkconfig = True
360
+
361
# pio lib_ignore check
362
if config.has_option(current_env_section, "lib_ignore"):
363
flag_lib_ignore = True
@@ -681,8 +684,6 @@ def get_frameworks_in_current_env():
681
684
logging.error("Framework cleanup failed - installation aborted")
682
685
sys.exit(1)
683
686
-if mcu == "esp32c2":
- flag_custom_sdkconfig = True
687
if flag_custom_sdkconfig and not flag_any_custom_sdkconfig:
688
call_compile_libs()
689
0 commit comments