23 lines
321 B
Plaintext
23 lines
321 B
Plaintext
# Kconfig - Display drivers
|
|
|
|
#
|
|
# Copyright (c) 2017 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig DISPLAY
|
|
bool
|
|
prompt "Display Drivers"
|
|
default n
|
|
help
|
|
Enable display drivers
|
|
|
|
if DISPLAY
|
|
|
|
source "drivers/display/Kconfig.microbit"
|
|
|
|
source "drivers/display/Kconfig.ili9340"
|
|
|
|
endif # DISPLAY
|