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.
2 parents eaac84b + 8e8b546 commit 37aafc9Copy full SHA for 37aafc9
tools/config/__init__.py
@@ -798,12 +798,12 @@ def get_all_active_memories(self, memory_list):
798
start, size = self._get_primary_memory_override(
799
active_memory.lower()
800
)
801
- if not start:
+ if start is None:
802
raise ConfigException(
803
"Bootloader not supported on this target. {} "
804
"start not found in targets.json.".format(active_memory)
805
806
- if not size:
+ if size is None:
807
808
809
"size not found in targets.json.".format(active_memory)
0 commit comments