rt-thread/bsp/lpc54608-LPCXpresso/Kconfig

33 lines
612 B
Plaintext
Raw Normal View History

2017-11-10 20:10:45 +08:00
mainmenu "RT-Thread Configuration"
2019-01-16 23:23:38 +08:00
config BSP_DIR
2017-11-10 20:10:45 +08:00
string
option env="BSP_ROOT"
default "."
2019-01-16 23:23:38 +08:00
config RTT_DIR
2017-11-10 20:10:45 +08:00
string
option env="RTT_ROOT"
default "../.."
# you can change the RTT_ROOT default "../.." to your rtthread_root,
# example : default "F:/git_repositories/rt-thread"
2019-01-16 23:23:38 +08:00
config PKGS_DIR
2017-11-10 20:10:45 +08:00
string
option env="PKGS_ROOT"
default "packages"
source "$RTT_DIR/Kconfig"
source "$PKGS_DIR/Kconfig"
2017-11-22 20:00:59 +08:00
config SOC_LPC54608
bool
select ARCH_ARM_CORTEX_M4
select RT_USING_COMPONENTS_INIT
select RT_USING_USER_MAIN
2017-11-22 20:00:59 +08:00
default y
2017-11-10 20:10:45 +08:00
source "$BSP_DIR/drivers/Kconfig"