summaryrefslogtreecommitdiff
path: root/apps/examples/slcd/Kconfig
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-05-24 10:00:54 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-05-24 10:00:54 -0600
commitd890cd67c3ef9e702a71bb5ed2f8a5e9e6d4cfac (patch)
treefddaba58cf98713c67b49be42e2936fa4ffe69a3 /apps/examples/slcd/Kconfig
parent4ed66f6618f4d13276d3135e9e2bfc6f8b5a2c3e (diff)
downloadnuttx-d890cd67c3ef9e702a71bb5ed2f8a5e9e6d4cfac.tar.gz
nuttx-d890cd67c3ef9e702a71bb5ed2f8a5e9e6d4cfac.tar.bz2
nuttx-d890cd67c3ef9e702a71bb5ed2f8a5e9e6d4cfac.zip
Add apps/examples/slcd, Remove USB from STM32L-Discovery, LSE support for the STM32 L family, some STM32L-Discovery LCD debug changes
Diffstat (limited to 'apps/examples/slcd/Kconfig')
-rw-r--r--apps/examples/slcd/Kconfig26
1 files changed, 26 insertions, 0 deletions
diff --git a/apps/examples/slcd/Kconfig b/apps/examples/slcd/Kconfig
new file mode 100644
index 000000000..5f56827fc
--- /dev/null
+++ b/apps/examples/slcd/Kconfig
@@ -0,0 +1,26 @@
+#
+# For a description of the syntax of this configuration file,
+# see misc/tools/kconfig-language.txt.
+#
+
+config EXAMPLES_SLCD
+ bool "Segment LCD test"
+ default n
+ ---help---
+ Enables a simple test of an alphanumer, segment LCD
+
+if EXAMPLES_SLCD
+
+config EXAMPLES_SLCD_DEVNAME
+ string "SLCD device path"
+ default "/dev/slcd"
+ ---help---
+ The full path to the SLCD device to be tested
+
+config EXAMPLES_SLCD_BUFSIZE
+ int "I/O buffer size"
+ default 64
+ ---help---
+ The size of the I/O buffer to use in the test (not a critical setting)
+
+endif