zephyr/subsys/fb/Kconfig
Anas Nashif 4e2c9d1491 Revert "shell: Add initial code for Character Framebuffer shell module"
This reverts commit 2e27113eec.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2018-12-06 11:39:44 -05:00

31 lines
535 B
Plaintext

# Kconfig - frame buffer configuration options
#
# Copyright (c) 2018 Phytec Messtechnik GmbH
#
# SPDX-License-Identifier: Apache-2.0
#
menu "Framebuffer"
config CHARACTER_FRAMEBUFFER
bool "Character framebuffer for dot matrix displays"
help
Character framebuffer for dot matrix displays.
if CHARACTER_FRAMEBUFFER
config CHARACTER_FRAMEBUFFER_USE_DEFAULT_FONTS
bool "Use default fonts"
default y
help
Use default fonts.
module = CFB
module-str = cfb
source "subsys/logging/Kconfig.template.log_config"
endif
endmenu