2012-04-06 17:58:25 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:08:57 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 17:58:25 +02:00
|
|
|
#
|
2012-04-23 21:55:32 +02:00
|
|
|
|
|
|
|
if ARCH_BOARD_STM3220G_EVAL
|
2012-07-29 20:30:48 +02:00
|
|
|
|
2012-05-28 21:48:26 +02:00
|
|
|
config STM3220G_LCD
|
|
|
|
bool "Select support for the STM3210E-EVAL LCD"
|
|
|
|
default y
|
2012-08-19 00:57:17 +02:00
|
|
|
depends on LCD && STM32_FSMC
|
2012-08-20 02:57:14 +02:00
|
|
|
---help---
|
|
|
|
Enable support for the LCD on the STM3220G-EVAL board. See additional,
|
|
|
|
LCD-common settings in the drivers/lcd Kconfig file.
|
2012-05-28 21:48:26 +02:00
|
|
|
|
|
|
|
config LCD_RDSHIFT
|
|
|
|
int "LCD data shift"
|
|
|
|
default 5
|
|
|
|
depends on STM3220G_LCD
|
|
|
|
---help---
|
|
|
|
When reading 16-bit gram data, there appears to be a shift in the returned
|
|
|
|
data. This value fixes the offset. Default 5.
|
|
|
|
|
2013-04-25 23:52:00 +02:00
|
|
|
config STM32_ILI9320_DISABLE
|
2012-05-28 21:48:26 +02:00
|
|
|
bool "Disable LCD_ILI9320 (and LCD_ILI9321) support"
|
|
|
|
default n
|
|
|
|
depends on STM3220G_LCD
|
|
|
|
---help---
|
|
|
|
The LCD driver dynamically selects the LCD based on the reported LCD
|
|
|
|
ID value. However, code size can be reduced by suppressing support for
|
|
|
|
individual LCDs using this option.
|
|
|
|
|
2013-04-25 23:52:00 +02:00
|
|
|
config STM32_ILI9325_DISABLE
|
2012-05-28 21:48:26 +02:00
|
|
|
bool "Disable LCD_ILI9325 support"
|
|
|
|
default n
|
|
|
|
depends on STM3220G_LCD
|
|
|
|
---help---
|
|
|
|
The LCD driver dynamically selects the LCD based on the reported LCD
|
|
|
|
ID value. However, code size can be reduced by suppressing support for
|
|
|
|
individual LCDs using this option
|
|
|
|
|
2012-04-23 21:55:32 +02:00
|
|
|
endif
|