avoid 03/05 intel-hex records for nordics devices

use Intelhex::write_hex_file instead of IntelHex::tofile
pull/4356/head
Andrzej Puzdrowski 2017-05-05 13:27:29 +02:00 committed by adbridge
parent c5d379e908
commit ada0d21401
1 changed files with 1 additions and 1 deletions

View File

@ -489,7 +489,7 @@ class MCU_NRF51Code(object):
binh.merge(blh)
with open(binf.replace(".bin", ".hex"), "w") as fileout:
binh.tofile(fileout, format='hex')
binh.write_hex_file(fileout, write_start_addr=False)
class NCS36510TargetCode:
@staticmethod