浏览代码

Silence E3 DIP build warning (#17492)

Gustavo Alvarez 4 年前
父节点
当前提交
aca2e149ab
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4
    0
      buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py

+ 4
- 0
buildroot/share/PlatformIO/scripts/STM32F103RE_SKR_E3_DIP.py 查看文件

@@ -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
 

正在加载...
取消
保存