zephyr/drivers/display/Kconfig
Andrzej Głąbek e7f7e955b3 drivers: display: Add support for LED matrix driven by nRF SoC GPIOs
Add a display driver and the corresponding devicetree binding for a LED
matrix with rows and columns driven by nRF SoCs GPIOs. Such matrix can
be found, for example, in the BBC micro:bit boards.

Signed-off-by: Andrzej Głąbek <andrzej.glabek@nordicsemi.no>
2021-12-17 15:48:08 +01:00

44 lines
1.1 KiB
Plaintext

# Display drivers
# Copyright (c) 2017 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
menuconfig DISPLAY
bool "Display Drivers"
help
Enable display drivers
if DISPLAY
config DISPLAY_INIT_PRIORITY
int "Display devices init priority"
default 85
help
Display devices initialization priority.
module = DISPLAY
module-str = display
source "subsys/logging/Kconfig.template.log_config"
source "drivers/display/Kconfig.grove"
source "drivers/display/Kconfig.mcux_elcdif"
source "drivers/display/Kconfig.microbit"
source "drivers/display/Kconfig.nrf_led_matrix"
source "drivers/display/Kconfig.ili9xxx"
source "drivers/display/Kconfig.sdl"
source "drivers/display/Kconfig.ssd1306"
source "drivers/display/Kconfig.ssd16xx"
source "drivers/display/Kconfig.st7735r"
source "drivers/display/Kconfig.st7789v"
source "drivers/display/Kconfig.gd7965"
source "drivers/display/Kconfig.dummy"
source "drivers/display/Kconfig.ls0xx"
config FRAMEBUF_DISPLAY
# Hidden, selected by client drivers.
bool
help
Enable framebuffer-based display 'helper' driver.
endif # DISPLAY