Kconfig.st7789v 525 B

12345678910111213141516171819202122232425
  1. # ST7789V display driver configuration options
  2. # Copyright (c) 2019 Marc Reilly <marc@cpdesign.com.au>
  3. # SPDX-License-Identifier: Apache-2.0
  4. menuconfig ST7789V
  5. bool "ST7789V display driver"
  6. depends on SPI
  7. help
  8. Enable driver for ST7789V display driver.
  9. choice ST7789V_PIXEL_FORMAT
  10. prompt "Color pixel format"
  11. default ST7789V_RGB565
  12. depends on ST7789V
  13. help
  14. Specify the color pixel format for the ST7789V display controller.
  15. config ST7789V_RGB888
  16. bool "RGB888"
  17. config ST7789V_RGB565
  18. bool "RGB565"
  19. endchoice