Improve STEVAL_3DP001V1 and future STEVAL_* support (#16404)

This commit is contained in:
Bob Kuhn
2020-01-01 20:52:56 -06:00
committed by Scott Lahteine
parent 23bdc1556d
commit 747b2b9bf4
13 changed files with 1803 additions and 192 deletions

View File

@ -0,0 +1,11 @@
import os
Import("env")
custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/variants/STEVAL_F401VE/ldscript.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