Skip to content

Commit c8ee4cc

Browse files
authored
Merge pull request #5182 from NU-LL/tkm32f499
2 parents ab36707 + 8a180d5 commit c8ee4cc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+29456
-0
lines changed

.github/workflows/action.yml

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ jobs:
4747
- {RTT_BSP: "lm3s9b9x", RTT_TOOL_CHAIN: "sourcery-arm"}
4848
- {RTT_BSP: "lm4f232", RTT_TOOL_CHAIN: "sourcery-arm"}
4949
- {RTT_BSP: "tm4c123bsp", RTT_TOOL_CHAIN: "sourcery-arm"}
50+
- {RTT_BSP: "tkm32F499", RTT_TOOL_CHAIN: "sourcery-arm"}
5051
- {RTT_BSP: "tm4c129x", RTT_TOOL_CHAIN: "sourcery-arm"}
5152
- {RTT_BSP: "lpc43xx/M4", RTT_TOOL_CHAIN: "sourcery-arm"}
5253
- {RTT_BSP: "lpc176x", RTT_TOOL_CHAIN: "sourcery-arm"}

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,7 @@ ncscope.*
3838
tags
3939

4040
.idea
41+
.vscode
42+
.history
4143
CMakeLists.txt
4244
cmake-build-debug

bsp/tkm32F499/Kconfig

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
mainmenu "RT-Thread Configuration"
2+
3+
config BSP_DIR
4+
string
5+
option env="BSP_ROOT"
6+
default "."
7+
8+
config RTT_DIR
9+
string
10+
option env="RTT_ROOT"
11+
default "rt-thread"
12+
13+
config PKGS_DIR
14+
string
15+
option env="PKGS_ROOT"
16+
default "packages"
17+
18+
source "$RTT_DIR/Kconfig"
19+
source "$PKGS_DIR/Kconfig"
20+
source "drivers/Kconfig"
21+

0 commit comments

Comments
 (0)