# Copyright (c) 2020 HAW Hamburg # # This file is subject to the terms and conditions of the GNU Lesser # General Public License v2.1. See the file LICENSE in the top level # directory for more details. # config MODULE_LCD bool "LCD display driver" depends on HAS_PERIPH_SPI depends on HAS_PERIPH_GPIO depends on TEST_KCONFIG select MODULE_PERIPH_SPI select MODULE_PERIPH_GPIO menuconfig KCONFIG_USEMODULE_LCD bool "Configure LCD driver" depends on USEMODULE_LCD help Configure the LCD display driver using Kconfig. if KCONFIG_USEMODULE_LCD config LCD_LE_MODE bool "Enable little endian to big endian conversion" help Enable this configuration to convert little endian colors to big endian. LCD device requires colors to be send in big endian RGB-565 format. Enabling this option allows for little endian colors. Enabling this however will slow down the driver as it cannot use DMA anymore. endif # KCONFIG_USEMODULE_LCD