Kconfig 523 B

12345678910111213141516171819202122232425
  1. menu "Hardware Drivers Config"
  2. config SOC_RP2040
  3. bool
  4. select SOC_SERIES_RP2040_PICO
  5. select RT_USING_COMPONENTS_INIT
  6. default y
  7. menu "Onboard Peripheral Drivers"
  8. config BSP_USING_LVGL
  9. bool "Enable LVGL for LCD"
  10. select PKG_USING_LVGL
  11. select BSP_USING_SPI_LCD
  12. default n
  13. if BSP_USING_LVGL
  14. config BSP_USING_LVGL_DEMO
  15. bool "Enable LVGL demo"
  16. select PKG_USING_LV_MUSIC_DEMO
  17. default n
  18. endif
  19. endmenu
  20. endmenu