summaryrefslogtreecommitdiff
path: root/nuttx/drivers
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-18 22:57:17 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-18 22:57:17 +0000
commitd870b7c875b937810063262c31c9ec14b6178890 (patch)
tree3a1837d06b10e73f59d647842a091433bda334d7 /nuttx/drivers
parentfc95d9efcf01e283aa69151af5b65244c9fbe287 (diff)
downloadpx4-nuttx-d870b7c875b937810063262c31c9ec14b6178890.tar.gz
px4-nuttx-d870b7c875b937810063262c31c9ec14b6178890.tar.bz2
px4-nuttx-d870b7c875b937810063262c31c9ec14b6178890.zip
Move duplicate LCD orieations settings from configs/*/Kconfig to drivers/lcd/Kconfig
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5036 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/drivers')
-rw-r--r--nuttx/drivers/lcd/Kconfig39
1 files changed, 39 insertions, 0 deletions
diff --git a/nuttx/drivers/lcd/Kconfig b/nuttx/drivers/lcd/Kconfig
index af94ac16a..081a79c89 100644
--- a/nuttx/drivers/lcd/Kconfig
+++ b/nuttx/drivers/lcd/Kconfig
@@ -173,3 +173,42 @@ config LCD_UG9664HSWAG01
ug-9664hswag01.c. OLED Display Module, UG-9664HSWAG01", Univision
Technology Inc. Used with the LPC Xpresso and Embedded Artists
base board.
+
+choice
+ prompt "LCD Orientation"
+ default LCD_LANDSCAPE
+ depends on LCD
+ ---help---
+ Some LCD drivers may support displays in different orientations.
+ If the LCD driver supports this capability, than these are configuration
+ options to select that display orientation.
+
+config LCD_LANDSCAPE
+ bool "Landscape orientation"
+ ---help---
+ Define for "landscape" orientation support. Landscape mode refers one
+ of two orientations where the the display is wider than it is tall
+ (LCD_RLANDSCAPE is the other). This is the default orientation.
+
+config LCD_PORTRAIT
+ bool "Portrait orientation"
+ ---help---
+ Define for "portrait" orientation support. Portrait mode refers one
+ of two orientations where the the display is taller than it is wide
+ (LCD_RPORTAIT is the other).
+
+config LCD_RPORTRAIT
+ bool "Reverse portrait display"
+ ---help---
+ Define for "reverse portrait" orientation support. Reverse portrait mode
+ refers one of two orientations where the the display is taller than it is
+ wide (LCD_PORTAIT is the other).
+
+config LCD_RLANDSCAPE
+ bool "Reverse landscape orientation"
+ ---help---
+ Define for "reverse landscape" orientation support. Reverse landscape mode
+ refers one of two orientations where the the display is wider than it is
+ tall (LCD_LANDSCAPE is the other).
+
+endchoice