summaryrefslogtreecommitdiff
path: root/apps/examples/keypadtest/Kconfig
blob: 98c6d348e7987edc8bfd47ee8afd51b0bc7ebcc0 (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
#
# 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"

config EXAMPLES_KEYPADTEST_ENCODED
	bool "Use Keyboard CODEC"
	default n
	---help---
		Use the keyboard encoded/decoder to pass control information from
		the keypad driver to the keypad test.  This is the keyboard CODEC
		defined in nuttx/input/kbd_codec.h.

endif