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.

STM32F1_SKR_MINI.py 320B

12345678
  1. Import("env")
  2. # Relocate firmware from 0x08000000 to 0x08007000
  3. for define in env['CPPDEFINES']:
  4. if define[0] == "VECT_TAB_ADDR":
  5. env['CPPDEFINES'].remove(define)
  6. env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08007000"))
  7. env.Replace(LDSCRIPT_PATH="buildroot/share/PlatformIO/ldscripts/STM32F1_SKR_MINI.ld")