Kconfig 851 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. mainmenu "RT-Thread Configuration"
  2. config BSP_DIR
  3. string
  4. option env="BSP_ROOT"
  5. default "."
  6. config RTT_DIR
  7. string
  8. option env="RTT_ROOT"
  9. default "../.."
  10. config PKGS_DIR
  11. string
  12. option env="PKGS_ROOT"
  13. default "packages"
  14. source "$RTT_DIR/Kconfig"
  15. source "$PKGS_DIR/Kconfig"
  16. config SOC_SIMULATOR
  17. bool
  18. select RT_USING_COMPONENTS_INIT
  19. select RT_USING_USER_MAIN
  20. default y
  21. if RT_USING_DFS
  22. config RT_USING_DFS_WINSHAREDIR
  23. bool "Enable shared file system between windows"
  24. default n
  25. endif
  26. config BSP_USING_LVGL
  27. bool "Enable LVGL for LCD"
  28. select PKG_USING_LVGL
  29. select PKG_USING_LV_MUSIC_DEMO
  30. default n
  31. if BSP_USING_LVGL
  32. config BSP_LCD_WIDTH
  33. int "LCD width"
  34. default 800
  35. config BSP_LCD_HEIGHT
  36. int "LCD height"
  37. default 480
  38. endif