1# ST7789V display driver configuration options 2 3# Copyright (c) 2019 Marc Reilly <marc@cpdesign.com.au> 4# SPDX-License-Identifier: Apache-2.0 5 6menuconfig ST7789V 7 bool "ST7789V display driver" 8 default y 9 depends on DT_HAS_SITRONIX_ST7789V_ENABLED 10 select MIPI_DBI 11 help 12 Enable driver for ST7789V display driver. 13 14choice ST7789V_PIXEL_FORMAT 15 prompt "Color pixel format" 16 default ST7789V_RGB565 17 depends on ST7789V 18 help 19 Specify the color pixel format for the ST7789V display controller. 20 21config ST7789V_RGB888 22 bool "RGB888" 23 24config ST7789V_RGB565 25 bool "RGB565" 26 27config ST7789V_BGR565 28 bool "BGR565" 29 30endchoice 31