summaryrefslogtreecommitdiff
path: root/apps/examples
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-03-27 08:10:20 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-03-27 08:10:20 -0600
commitf86ec6c668a4f0edbebcb0e3255aca5f1e3c486d (patch)
treec2614c4480918096d4dba6986ed95e28ca362b06 /apps/examples
parentc4c214d0e55dd1f790161530dade88aa0de258ab (diff)
downloadpx4-nuttx-f86ec6c668a4f0edbebcb0e3255aca5f1e3c486d.tar.gz
px4-nuttx-f86ec6c668a4f0edbebcb0e3255aca5f1e3c486d.tar.bz2
px4-nuttx-f86ec6c668a4f0edbebcb0e3255aca5f1e3c486d.zip
apps/examples/lcdrw: Fill out empty Kconfig file
Diffstat (limited to 'apps/examples')
-rw-r--r--apps/examples/lcdrw/Kconfig30
1 files changed, 30 insertions, 0 deletions
diff --git a/apps/examples/lcdrw/Kconfig b/apps/examples/lcdrw/Kconfig
index 2308ddc60..5675b11ed 100644
--- a/apps/examples/lcdrw/Kconfig
+++ b/apps/examples/lcdrw/Kconfig
@@ -6,8 +6,38 @@
config EXAMPLES_LCDRW
bool "LCD read/write example"
default n
+ depends on NX && NX_LCDDRIVER
---help---
Enable the LCD read/write example
if EXAMPLES_LCDRW
+
+config EXAMPLES_LDCRW_DEVNO
+ int "Video Device Number"
+ default 0
+ ---help---
+ The LCD device to select from the LCD driver for use in the test:
+ Default: 0
+
+config EXAMPLES_LCDRW_BPP
+ int "Bits-Per-Pixel"
+ default 16
+ range 1 32
+ depends on EXPERIMENTAL
+ ---help---
+ Pixels per pixel to use. Valid options include 1, 2, 4, 8, 16, 24,
+ and 32. Default is 16.
+
+config EXAMPLES_LDCRW_XRES
+ int "Horizontal display resolution (pixels)"
+ default 240
+ ---help---
+ Horizontal resolution of the display in pixels. Default 240.
+
+config EXAMPLES_LDCRW_YRES
+ int "Vertical display resolution (rows)"
+ default 320
+ ---help---
+ Vertical resolution of the display in rows. Default 320.
+
endif