-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
618 changed files
with
33,133 additions
and
30,234 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
mainmenu "RT-Thread Configuration" | ||
|
||
config BSP_DIR | ||
string | ||
option env="BSP_ROOT" | ||
default "." | ||
|
||
config RTT_DIR | ||
string | ||
option env="RTT_ROOT" | ||
default "../.." | ||
|
||
# you can change the RTT_ROOT default "../.." to your rtthread_root, | ||
# example : default "F:/git_repositories/rt-thread" | ||
|
||
config PKGS_DIR | ||
string | ||
option env="PKGS_ROOT" | ||
default "packages" | ||
|
||
source "$RTT_DIR/Kconfig" | ||
source "$PKGS_DIR/Kconfig" | ||
|
||
config SOC_CME_M7 | ||
bool | ||
select ARCH_ARM_CORTEX_M3 | ||
select RT_USING_COMPONENTS_INIT | ||
default y |
Oops, something went wrong.