mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-09 07:02:45 +00:00
Convert SSD16XX display driver to use MIPI DBI API. This commit also updates in tree board devicetrees to include the emulated MIPI DBI SPI driver. Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
18 lines
490 B
Plaintext
18 lines
490 B
Plaintext
# SSD16XX display controller configuration options
|
|
|
|
# Copyright (c) 2018 Phytec Messtechnik GmbH
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config SSD16XX
|
|
bool "SSD16XX compatible display controller driver"
|
|
default y
|
|
depends on \
|
|
DT_HAS_SOLOMON_SSD1608_ENABLED || \
|
|
DT_HAS_SOLOMON_SSD1673_ENABLED || \
|
|
DT_HAS_SOLOMON_SSD1675A_ENABLED || \
|
|
DT_HAS_SOLOMON_SSD1680_ENABLED || \
|
|
DT_HAS_SOLOMON_SSD1681_ENABLED
|
|
select MIPI_DBI
|
|
help
|
|
Enable driver for SSD16XX compatible controller.
|