zephyr/drivers/auxdisplay/Kconfig
Jamie McCrae 71c727e92e drivers: auxdisplay: Port Jinghua Display JHD1313 driver
Ports the Jinghua Display JHD1313 LCD (with RGB backlight) driver
to use the new auxdisplay driver interface. This driver is used on
the seeed grove LCD RGB display, and replaces it.

Signed-off-by: Jamie McCrae <spam@helper3000.net>
2023-05-26 23:05:58 +02:00

26 lines
629 B
Text

# Auxiliary Display drivers
# Copyright (c) 2022 Jamie McCrae
# SPDX-License-Identifier: Apache-2.0
menuconfig AUXDISPLAY
bool "Auxiliary (textual) Display Drivers"
help
Enable auxiliary/texual display drivers (e.g. alphanumerical displays)
if AUXDISPLAY
config AUXDISPLAY_INIT_PRIORITY
int "Auxiliary display devices init priority"
default 85
help
Auxiliary (textual) display devices initialization priority.
module = AUXDISPLAY
module-str = auxdisplay
source "subsys/logging/Kconfig.template.log_config"
source "drivers/auxdisplay/Kconfig.itron"
source "drivers/auxdisplay/Kconfig.jhd1313"
endif # AUXDISPLAY