| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- mainmenu "RT-Thread Configuration"
- config BSP_DIR
- string
- option env="BSP_ROOT"
- default "."
- config RTT_DIR
- string
- option env="RTT_ROOT"
- default "../.."
- config PKGS_DIR
- string
- option env="PKGS_ROOT"
- default "packages"
- source "$RTT_DIR/Kconfig"
- source "$PKGS_DIR/Kconfig"
- config SOC_SIMULATOR
- bool
- select RT_USING_COMPONENTS_INIT
- select RT_USING_USER_MAIN
- default y
- menu "Peripheral Drivers"
- config RT_USING_DFS_WINSHAREDIR
- bool "Enable shared file system between Windows"
- select RT_USING_POSIX_FS
- default y
- config BSP_USING_RTC
- bool "Enable RTC"
- select RT_USING_RTC
- default y
- config BSP_USING_ALARM
- bool "Enable RTC alarm"
- select RT_USING_ALARM
- depends on BSP_USING_RTC
- default n
- config BSP_USING_SOCKET
- bool "Enable BSD Socket"
- select RT_USING_POSIX_FS
- select RT_USING_POSIX_SOCKET
- select SAL_USING_WINSOCK
- default y
- config BSP_USING_LVGL
- bool "Enable LVGL for LCD"
- select PKG_USING_LVGL
- default n
- if BSP_USING_LVGL
- config BSP_USING_LVGL_DEMO
- bool "Enable LVGL demo"
- select PKG_USING_LV_MUSIC_DEMO
- default n
- config BSP_LCD_WIDTH
- int "LCD width"
- default 800
- config BSP_LCD_HEIGHT
- int "LCD height"
- default 480
- endif
- endmenu
|