zephyr/subsys/fb/Kconfig
Johann Fischer f531e0d62e subsys: add monochrome character framebuffer
Add monochrome character framebuffer for monochrome
graphic dot matrix displays and electrophoretic displays.

These displays are mostly monochrome and can only display
black and some other color, for example white. Typically,
a byte controls 8 pixels, arranged vertically or horizontally
depending on the controller or settings.
The API is not suitable to display graphics, the purpose is
to display text or symbols. It is possible to use several fonts.
A font can also consist of graphic symbols only and thus,
for example, enable the realization of a menu.

Signed-off-by: Johann Fischer <j.fischer@phytec.de>
2018-10-16 14:54:47 -04: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