Browse Source

Silence E3 DIP build warning (#17492)

vanilla_fb_2.0.x
Gustavo Alvarez 4 years ago
committed by GitHub
parent
commit
aca2e149ab
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py

4
buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py

@ -1,6 +1,10 @@
import os
Import("env")
for define in env['CPPDEFINES']:
if define[0] == "VECT_TAB_ADDR":
env['CPPDEFINES'].remove(define)
# Relocate firmware from 0x08000000 to 0x08007000
env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08007000"))

Loading…
Cancel
Save