29 lines
494 B
Plaintext
29 lines
494 B
Plaintext
|
# Kconfig - SSD16XX display controller configuration options
|
||
|
|
||
|
#
|
||
|
# Copyright (c) 2018 Phytec Messtechnik GmbH
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
#
|
||
|
|
||
|
menuconfig SSD16XX
|
||
|
bool "SSD16XX display driver"
|
||
|
depends on SPI
|
||
|
help
|
||
|
Enable driver for SSD16XX display driver.
|
||
|
|
||
|
if SSD16XX
|
||
|
|
||
|
choice
|
||
|
prompt "EPD display"
|
||
|
default SSD16XX_EPD_GDE0213B1
|
||
|
help
|
||
|
Specify the type of EPD connected to the SSD16XX controller.
|
||
|
|
||
|
config SSD16XX_EPD_GDE0213B1
|
||
|
bool "GDE0213B1 2.13\""
|
||
|
|
||
|
endchoice
|
||
|
|
||
|
endif #SSD16XX
|