Gustavo Alvarez
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
0 deletions
-
buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py
|
@ -1,6 +1,10 @@ |
|
|
import os |
|
|
import os |
|
|
Import("env") |
|
|
Import("env") |
|
|
|
|
|
|
|
|
|
|
|
for define in env['CPPDEFINES']: |
|
|
|
|
|
if define[0] == "VECT_TAB_ADDR": |
|
|
|
|
|
env['CPPDEFINES'].remove(define) |
|
|
|
|
|
|
|
|
# Relocate firmware from 0x08000000 to 0x08007000 |
|
|
# Relocate firmware from 0x08000000 to 0x08007000 |
|
|
env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08007000")) |
|
|
env['CPPDEFINES'].append(("VECT_TAB_ADDR", "0x08007000")) |
|
|
|
|
|
|
|
|