Sfoglia il codice sorgente

Silence E3 DIP build warning (#17492)

Gustavo Alvarez 4 anni fa
parent
commit
aca2e149ab
Nessun account collegato all'indirizzo email del committer

+ 4
- 0
buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py Vedi File

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

Loading…
Annulla
Salva