Fix duplicate board IDs (#14310)

This commit is contained in:
Bob Kuhn
2019-06-18 02:26:13 -05:00
committed by Scott Lahteine
parent 5307f42917
commit 089d12df16
3 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
Import("env")
# Relocate firmware from 0x08000000 to 0x0800A000
env['CPPDEFINES'].remove(("VECT_TAB_ADDR", "0x8000000"))
env['CPPDEFINES'].remove(("VECT_TAB_ADDR", "0x8000000"))
#alternatively, for STSTM <=5.1.0 use line below
#env['CPPDEFINES'].remove(("VECT_TAB_ADDR", 134217728))
env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x0800A000"))
@ -9,7 +9,7 @@ env.Replace(LDSCRIPT_PATH="buildroot/share/PlatformIO/ldscripts/jgaurora_a5s_a1.
#append ${PROGNAME}.bin firmware after bootloader and save it as 'jgaurora_firmware.bin'
def addboot(source,target,env):
import os
import os
firmware = open(target[0].path, "rb")
lengthfirmware = os.path.getsize(target[0].path)
@ -29,7 +29,7 @@ def addboot(source,target,env):
while position < lengthfirmware:
byte = firmware.read(1)
firmwareimage.write(byte)
position += 1
position += 1
bootloader.close()
firmware.close()
firmwareimage.close()
@ -37,7 +37,7 @@ def addboot(source,target,env):
if os.path.exists(firmware_without_bootloader_dir):
os.remove(firmware_without_bootloader_dir)
os.rename(target[0].path, firmware_without_bootloader_dir)
#os.rename(target[0].dir.path+'/firmware_with_bootloader.bin', target[0].dir.path+'/firmware.bin')
#os.rename(target[0].dir.path+'/firmware_with_bootloader.bin', target[0].dir.path+'/firmware.bin')
env.AddPostAction("$BUILD_DIR/${PROGNAME}.bin", addboot);