BigTreeTech SKR Mini v1.1 (#14041)

This commit is contained in:
yangwenxiong
2019-06-11 10:10:51 +08:00
committed by Scott Lahteine
parent f30b89953d
commit b0a4ea79b8
6 changed files with 185 additions and 0 deletions

View File

@ -0,0 +1,8 @@
Import("env")
# Relocate firmware from 0x08000000 to 0x08007000
for define in env['CPPDEFINES']:
if define[0] == "VECT_TAB_ADDR":
env['CPPDEFINES'].remove(define)
env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08007000"))
env.Replace(LDSCRIPT_PATH="buildroot/share/PlatformIO/ldscripts/STM32F1_SKR_MINI.ld")