You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
619 B
30 lines
619 B
# ST7789V display driver configuration options |
|
|
|
# Copyright (c) 2019 Marc Reilly <marc@cpdesign.com.au> |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
menuconfig ST7789V |
|
bool "ST7789V display driver" |
|
default y |
|
depends on DT_HAS_SITRONIX_ST7789V_ENABLED |
|
select MIPI_DBI |
|
help |
|
Enable driver for ST7789V display driver. |
|
|
|
choice ST7789V_PIXEL_FORMAT |
|
prompt "Color pixel format" |
|
default ST7789V_RGB565 |
|
depends on ST7789V |
|
help |
|
Specify the color pixel format for the ST7789V display controller. |
|
|
|
config ST7789V_RGB888 |
|
bool "RGB888" |
|
|
|
config ST7789V_RGB565 |
|
bool "RGB565" |
|
|
|
config ST7789V_BGR565 |
|
bool "BGR565" |
|
|
|
endchoice
|
|
|