summaryrefslogtreecommitdiff
path: root/apps/examples/keypadtest/Kconfig
blob: 9dee80633a9021c6c2c637c277b63af3c67426e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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