summaryrefslogtreecommitdiff
path: root/apps/examples/ajoystick/Kconfig
blob: 31c87b6d95ec74c53b298fbac6af3798694ef7df (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_AJOYSTICK
	bool "Analog joystick example"
	default n
	depends on AJOYSTICK && !DISABLE_SIGNALS
	---help---
		Enable the analog joystick example

if EXAMPLES_AJOYSTICK

config EXAMPLES_AJOYSTICK_DEVNAME
	string "Joystick device name"
	default "/dev/ajoy0"

config EXAMPLES_AJOYSTICK_SIGNO
	int "Joystick signal"
	default 13

endif