Kconfig 634 B

12345678910111213141516171819
  1. config RT_USING_LCD
  2. bool "Using LCD graphic drivers" if !RT_USING_DM
  3. default n
  4. help
  5. Enable the RT-Thread LCD/graphics driver framework so display controllers
  6. can expose framebuffers or panel pipelines. This pulls in the drawing
  7. helpers used by GUI packages; select it whenever your board has an LCD or
  8. RGB/MIPI panel. Disable it on headless builds to save code size.
  9. menuconfig RT_USING_GRAPHIC
  10. bool "Using Graphics device drivers"
  11. depends on RT_USING_DM
  12. default n
  13. if RT_USING_GRAPHIC
  14. rsource "backlight/Kconfig"
  15. rsource "framebuffer/Kconfig"
  16. rsource "logo/Kconfig"
  17. endif