summaryrefslogtreecommitdiff
path: root/apps/examples/keypadtest/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/keypadtest/Kconfig')
-rw-r--r--apps/examples/keypadtest/Kconfig21
1 files changed, 21 insertions, 0 deletions
diff --git a/apps/examples/keypadtest/Kconfig b/apps/examples/keypadtest/Kconfig
new file mode 100644
index 000000000..9dee80633
--- /dev/null
+++ b/apps/examples/keypadtest/Kconfig
@@ -0,0 +1,21 @@
+#
+# For a description of the syntax of this configuration file,
+# see misc/tools/kconfig-language.txt.
+#
+
+config EXAMPLES_KEYPADTEST
+ bool "Keypad test example program"
+ default n
+ ---help---
+ Enable the Keypad test example programe
+
+if EXAMPLES_KEYPADTEST
+
+ config EXAMPLES_KEYPAD_DEVNAME
+ string "Keypad Device Name"
+ default "/dev/keypad"
+ ---help---
+ The name of the keypad device that will be opened in order to perform
+ the keypad test. Default: "/dev/keypad"
+
+endif