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 cfc3720 commit 46ac6a7Copy full SHA for 46ac6a7
platform.py
@@ -323,7 +323,8 @@ def _configure_espidf_framework(
323
board_config.get("espidf.custom_sdkconfig", "")
324
)
325
326
- if custom_sdkconfig or board_sdkconfig:
+ if (custom_sdkconfig and custom_sdkconfig.strip()) or \
327
+ (board_sdkconfig and board_sdkconfig.strip()):
328
frameworks.append("espidf")
329
self.packages["framework-espidf"]["optional"] = False
330
if mcu == "esp32c2":
0 commit comments