aboutsummaryrefslogtreecommitdiff
path: root/buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py')
-rw-r--r--buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py b/buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py
new file mode 100644
index 0000000..b69f625
--- /dev/null
+++ b/buildroot/share/PlatformIO/scripts/STM32F103RC_fysetc.py
@@ -0,0 +1,36 @@
+import os
+from os.path import join
+from os.path import expandvars
+Import("env")
+
+# Relocate firmware from 0x08000000 to 0x08008000
+#for define in env['CPPDEFINES']:
+# if define[0] == "VECT_TAB_ADDR":
+# env['CPPDEFINES'].remove(define)
+#env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08008000"))
+
+#custom_ld_script = os.path.abspath("buildroot/share/PlatformIO/ldscripts/fysetc_stm32f103rc.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
+
+# Custom HEX from ELF
+env.AddPostAction(
+ join("$BUILD_DIR","${PROGNAME}.elf"),
+ env.VerboseAction(" ".join([
+ "$OBJCOPY", "-O ihex", "$TARGET", # TARGET=.pio/build/fysetc_STM32F1/firmware.elf
+ "\"" + join("$BUILD_DIR","${PROGNAME}.hex") + "\"", # Note: $BUILD_DIR is a full path
+ ]), "Building $TARGET"))
+
+# In-line command with arguments
+UPLOAD_TOOL="stm32flash"
+platform = env.PioPlatform()
+if platform.get_package_dir("tool-stm32duino") != None:
+ UPLOAD_TOOL=expandvars("\"" + join(platform.get_package_dir("tool-stm32duino"),"stm32flash","stm32flash") + "\"")
+
+env.Replace(
+ UPLOADER=UPLOAD_TOOL,
+ UPLOADCMD=expandvars(UPLOAD_TOOL + " -v -i rts,-dtr,dtr -R -b 115200 -g 0x8000000 -w \"" + join("$BUILD_DIR","${PROGNAME}.hex")+"\"" + " $UPLOAD_PORT")
+)