Comand IAR toolchain to provide intel-hex as a build product.

pull/2234/head
Andrzej Puzdrowski 2016-07-14 13:01:22 +02:00
parent 3c8c82b06c
commit f281ecd4be
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ class IAR(mbedToolchain):
@hook_tool
def binary(self, resources, elf, bin):
# Build binary command
cmd = [self.elf2bin, "--bin", elf, bin]
cmd = [self.elf2bin, "--ihex", elf, bin]
# Call cmdline hook
cmd = self.hook.get_cmdline_binary(cmd)