mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-08-05 13:03:56 -06:00
Support for FLY MINI (#19185)
This commit is contained in:
parent
e6d0a8ef66
commit
bec1844954
7 changed files with 219 additions and 1 deletions
16
buildroot/share/PlatformIO/scripts/fly_mini.py
Normal file
16
buildroot/share/PlatformIO/scripts/fly_mini.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
import os
|
||||
Import("env")
|
||||
|
||||
# Relocate firmware from 0x08000000 to 0x08005000
|
||||
for define in env['CPPDEFINES']:
|
||||
if define[0] == "VECT_TAB_ADDR":
|
||||
env['CPPDEFINES'].remove(define)
|
||||
env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08005000"))
|
||||
|
||||
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/fly_mini.ld")
|
||||
for i, flag in enumerate(env["LINKFLAGS"]):
|
||||
if "-Wl,-T" in flag:
|
||||
env["LINKFLAGS"][i] = "-Wl,-T" + custom_ld_script
|
||||
elif flag == "-T":
|
||||
env["LINKFLAGS"][i + 1] = custom_ld_script
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue