Skip to content

Commit 3fb926e

Browse files
authored
Merge pull request #2217 from SummerGGift/add_stm32_new_framework
【修改】:添加新 BSP 的 CI 检测,修改 dist 后的语法错误。
2 parents e9c80c3 + 77a31a7 commit 3fb926e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ env:
9090
- RTT_BSP='stm32/stm32f429-armfly-v6' RTT_TOOL_CHAIN='sourcery-arm'
9191
- RTT_BSP='stm32/stm32f429-atk-apollo' RTT_TOOL_CHAIN='sourcery-arm'
9292
- RTT_BSP='stm32/stm32f429-fire-challenger' RTT_TOOL_CHAIN='sourcery-arm'
93+
- RTT_BSP='stm32/stm32f446-st-nucleo' RTT_TOOL_CHAIN='sourcery-arm'
9394
- RTT_BSP='stm32/stm32f767-atk-apollo' RTT_TOOL_CHAIN='sourcery-arm'
9495
- RTT_BSP='stm32/stm32f767-fire-challenger' RTT_TOOL_CHAIN='sourcery-arm'
9596
- RTT_BSP='stm32/stm32l475-atk-pandora' RTT_TOOL_CHAIN='sourcery-arm'

tools/mkdist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def bsp_update_kconfig(dist_dir):
119119
found = 1
120120
if line.find('default') != -1 and found:
121121
position = line.find('default')
122-
line = line[0:position] + 'default: "rt-thread"\n'
122+
line = line[0:position] + 'default "rt-thread"\n'
123123
found = 0
124124
f.write(line)
125125

0 commit comments

Comments
 (0)