ardupilot/Tools/scripts/make_intel_hex.py
Andrew Tridgell 623a30be55 waf: build hex file with and without bootloader
this allows for DFU tools without losing parameters
2018-06-24 16:47:23 +10:00

49 lines
1.2 KiB
Python
Executable File

#!/usr/bin/env python
import sys, os, shutil
import intelhex
# make two intel hex files, one including bootloader and one without
# for loading with DFU based tools
if len(sys.argv) != 4:
print("Usage: make_intel_hex.py BINFILE BOOTLOADER RESERVE_KB")
sys.exit(1)
scripts = os.path.dirname(__file__)
binfile = sys.argv[1]
bootloaderfile = sys.argv[2]
reserve_kb = int(sys.argv[3])
(root,ext) = os.path.splitext(binfile)
hexfile = root + ".hex"
hex_with_bl = root + "_with_bl.hex"
if not os.path.exists(binfile):
print("Can't find bin file %s" % binfile)
sys.exit(1)
if not os.path.exists(bootloaderfile):
print("Can't find bootloader file %s" % bootloaderfile)
sys.exit(1)
blimage = bytes(open(bootloaderfile, "rb").read())
blimage += bytes(chr(255) * (reserve_kb * 1024 - len(blimage)))
appimage = bytes(open(binfile,"rb").read())
with_bl = blimage + appimage
tmpfile = hexfile + ".tmp"
open(tmpfile, "wb").write(appimage)
intelhex.bin2hex(tmpfile, hexfile, offset=(0x08000000 + reserve_kb*1024))
open(tmpfile, "wb").write(with_bl)
intelhex.bin2hex(tmpfile, hex_with_bl, offset=0x08000000)
os.unlink(tmpfile)
print("Created %s" % hexfile)
print("Created %s" % hex_with_bl)