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.
56 lines
1.4 KiB
56 lines
1.4 KiB
# ILI9XXX display driver configuration options |
|
|
|
# Copyright (c) 2017 Jan Van Winkel <jan.van_winkel@dxplore.eu> |
|
# Copyright (c) 2020 Teslabs Engineering S.L. |
|
# Copyright (c) 2021 Krivorot Oleg <krivorot.oleg@gmail.com> |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
config ILI9XXX |
|
bool |
|
help |
|
Hidden configuration entry for all ILI9XXX drivers. |
|
|
|
config ILI9XXX_READ |
|
bool "Allow display_read API with ILI9XXX" |
|
depends on ILI9XXX |
|
help |
|
Support display_read API with ILI9XXX controllers. This API is opt-in, |
|
because it adds code overhead and is not very performant due to |
|
the requirement to bitshift data read from the ILI9XXX. Note the |
|
API only supports RGB565 mode. |
|
|
|
config ILI9340 |
|
bool "ILI9340 display driver" |
|
default y |
|
depends on DT_HAS_ILITEK_ILI9340_ENABLED |
|
select MIPI_DBI |
|
select ILI9XXX |
|
help |
|
Enable driver for ILI9340 display driver. |
|
|
|
config ILI9341 |
|
bool "ILI9341 display driver" |
|
default y |
|
depends on DT_HAS_ILITEK_ILI9341_ENABLED |
|
select MIPI_DBI |
|
select ILI9XXX |
|
help |
|
Enable driver for ILI9341 display driver. |
|
|
|
config ILI9342C |
|
bool "ILI9342C display driver" |
|
default y |
|
depends on DT_HAS_ILITEK_ILI9342C_ENABLED |
|
select MIPI_DBI |
|
select ILI9XXX |
|
help |
|
Enable driver for ILI9342C display driver. |
|
|
|
config ILI9488 |
|
bool "ILI9488 display driver" |
|
default y |
|
depends on DT_HAS_ILITEK_ILI9488_ENABLED |
|
select MIPI_DBI |
|
select ILI9XXX |
|
help |
|
Enable driver for ILI9488 display driver.
|
|
|