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 cd03667 commit dd15affCopy full SHA for dd15aff
scripts/west_commands/runners/linkserver.py
@@ -189,7 +189,7 @@ def flash(self, **kwargs):
189
190
# Use hex, bin or elf file provided by the buildsystem.
191
# Preferring .hex over .bin and .elf
192
- if self.supports_hex and self.hex_name is not None and os.path.isfile(self.hex_name):
+ if self.supports_hex() and self.hex_name is not None and os.path.isfile(self.hex_name):
193
flash_cmd = (["load", self.hex_name])
194
# Preferring .bin over .elf
195
elif self.bin_name is not None and os.path.isfile(self.bin_name):
0 commit comments