summaryrefslogtreecommitdiff
path: root/nuttx/configs/stm3240g-eval/Kconfig
blob: e47bd4121e13de66ea6117417ebd1806d39bd192 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

if ARCH_BOARD_STM3240G_EVAL
config ARCH_LEDS
	bool "NuttX LED support"
	default n
	---help---
		"Support control of board LEDs by NuttX to indicate system state"

config ARCH_BUTTONS
	bool "Button support"
	default n
	---help---
		"Support interfaces to use buttons provided by the board."

config STM3240G_LCD
	bool "Select support for the STM3210E-EVAL LCD"
	default y
	depends on STM32_FSMC

choice
	prompt "STM3240G-EVAL LCD Orientation"
	default LCD_LANDSCAPE
	depends on STM3240G_LCD

config LCD_LANDSCAPE
	bool "320x240 landscape display"
	---help---
		Define for 320x240 display "landscape" support. Default is this 320x240
		"landscape" orientation (this setting is informative only... not used).

config LCD_PORTRAIT
	bool "240x320 portrait display"
	---help---
		Define for 240x320 display "portrait" orientation support.  In this
		orientation, the STM3210E-EVAL's LCD ribbon cable is at the bottom of
		the display. Default is 320x240 "landscape" orientation.

config LCD_RPORTRAIT
	bool "240x320 reverse portrait display"
	---help---
		Define for 240x320 display "reverse portrait" orientation support.  In
		this orientation, the STM3210E-EVAL's LCD ribbon cable is at the top
		of the display. Default is 320x240 "landscape" orientation.

endchoice

config LCD_RDSHIFT
	int "LCD data shift"
	default 5
	depends on STM3240G_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.

config CONFIG_STM32_ILI9320_DISABLE
	bool "Disable LCD_ILI9320 (and LCD_ILI9321) support"
	default n
	depends on STM3240G_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.

config CONFIG_STM32_ILI9325_DISABLE
	bool "Disable LCD_ILI9325 support"
	default n
	depends on STM3240G_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

endif