2017-12-13 20:38:56 +08:00
|
|
|
mainmenu "RT-Thread Configuration"
|
|
|
|
|
2019-01-16 23:23:38 +08:00
|
|
|
config BSP_DIR
|
2017-12-13 20:38:56 +08:00
|
|
|
string
|
|
|
|
option env="BSP_ROOT"
|
|
|
|
default "."
|
|
|
|
|
2019-01-16 23:23:38 +08:00
|
|
|
config RTT_DIR
|
2017-12-13 20:38:56 +08:00
|
|
|
string
|
|
|
|
option env="RTT_ROOT"
|
|
|
|
default "../.."
|
|
|
|
|
2019-01-16 23:23:38 +08:00
|
|
|
config PKGS_DIR
|
2017-12-13 20:38:56 +08:00
|
|
|
string
|
|
|
|
option env="PKGS_ROOT"
|
|
|
|
default "packages"
|
|
|
|
|
|
|
|
source "$RTT_DIR/Kconfig"
|
|
|
|
source "$PKGS_DIR/Kconfig"
|
|
|
|
|
2021-03-31 21:38:19 +08:00
|
|
|
config SOC_SIMULATOR
|
|
|
|
bool
|
|
|
|
select RT_USING_COMPONENTS_INIT
|
|
|
|
select RT_USING_USER_MAIN
|
|
|
|
default y
|
|
|
|
|
2022-01-06 05:43:44 +08:00
|
|
|
config RT_USING_DFS_WINSHAREDIR
|
|
|
|
bool "Enable shared file system between windows"
|
|
|
|
select RT_USING_POSIX_FS
|
|
|
|
default n
|
2021-03-31 21:38:19 +08:00
|
|
|
|
2022-05-16 02:52:00 +08:00
|
|
|
config BSP_USING_SAL_WINSOCK
|
|
|
|
bool "Enable Windows socket (winsock) with SAL"
|
|
|
|
select RT_USING_SAL
|
|
|
|
default n
|
|
|
|
|
2021-12-16 11:40:14 +08:00
|
|
|
config BSP_USING_LVGL
|
|
|
|
bool "Enable LVGL for LCD"
|
|
|
|
select PKG_USING_LVGL
|
|
|
|
default n
|
|
|
|
|
|
|
|
if BSP_USING_LVGL
|
2022-05-11 11:22:25 +08:00
|
|
|
config BSP_USING_LVGL_DEMO
|
|
|
|
bool "Enable LVGL demo"
|
|
|
|
select PKG_USING_LV_MUSIC_DEMO
|
|
|
|
default n
|
|
|
|
|
2021-12-16 11:40:14 +08:00
|
|
|
config BSP_LCD_WIDTH
|
|
|
|
int "LCD width"
|
|
|
|
default 800
|
2021-03-31 21:38:19 +08:00
|
|
|
|
2021-12-16 11:40:14 +08:00
|
|
|
config BSP_LCD_HEIGHT
|
|
|
|
int "LCD height"
|
|
|
|
default 480
|
|
|
|
endif
|