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 2a9923f commit 5795f53Copy full SHA for 5795f53
tools/config/__init__.py
@@ -585,7 +585,7 @@ def sectors(self):
585
raise ConfigException("No sector info available")
586
587
def _get_cmsis_part(self):
588
- if not self.target.bootloader_supported:
+ if not getattr(self.target, "bootloader_supported", False):
589
raise ConfigException("Bootloader not supported on this target.")
590
if not hasattr(self.target, "device_name"):
591
raise ConfigException("Bootloader not supported on this target: "
0 commit comments