My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678 |
- 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")
|