This driver introduces an emulated LCD display for the native POSIX board. The emulated display driver makes use of SDL2 to render the displays frame buffer into a dedicated desktop window. Signed-off-by: Jan Van Winkel <jan.van_winkel@dxplore.eu>
31 lines
553 B
Plaintext
31 lines
553 B
Plaintext
# Kconfig - Display drivers
|
|
|
|
#
|
|
# Copyright (c) 2017 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig DISPLAY
|
|
bool "Display Drivers"
|
|
help
|
|
Enable display drivers
|
|
|
|
if DISPLAY
|
|
|
|
module = DISPLAY
|
|
module-str = display
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
source "drivers/display/Kconfig.grove"
|
|
|
|
source "drivers/display/Kconfig.microbit"
|
|
source "drivers/display/Kconfig.ili9340"
|
|
source "drivers/display/Kconfig.sdl"
|
|
|
|
source "drivers/display/Kconfig.ssd1306"
|
|
|
|
source "drivers/display/Kconfig.ssd1673"
|
|
|
|
endif # DISPLAY
|