summaryrefslogtreecommitdiff
path: root/apps/examples/djoystick/Kconfig
blob: aa2955fe3f0c58f4354e46b283f1cd12dfaa5037 (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
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

config EXAMPLES_DJOYSTICK
	bool "Discrete joystick example"
	default n
	depends on DJOYSTICK && !DISABLE_SIGNALS
	---help---
		Enable the discrete joystick example

if EXAMPLES_DJOYSTICK

config EXAMPLES_DJOYSTICK_DEVNAME
	string "Joystick device name"
	default "/dev/djoy0"

config EXAMPLES_DJOYSTICK_SIGNO
	int "Joystick signal"
	default 13

endif