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