2012-04-06 18:33:17 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:14:53 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 18:33:17 +02:00
|
|
|
#
|
2012-04-13 04:14:09 +02:00
|
|
|
|
|
|
|
config EXAMPLES_BUTTONS
|
|
|
|
bool "Buttons example"
|
|
|
|
default n
|
|
|
|
---help---
|
2012-10-04 20:42:28 +02:00
|
|
|
Enable the buttons example. May require ARCH_BUTTONS on some boards.
|
2012-04-13 04:14:09 +02:00
|
|
|
|
|
|
|
if EXAMPLES_BUTTONS
|
2012-10-04 20:42:28 +02:00
|
|
|
config EXAMPLES_BUTTONS_MIN
|
|
|
|
int "Lowest Button Number"
|
|
|
|
default 0
|
|
|
|
|
|
|
|
config EXAMPLES_BUTTONS_MAX
|
|
|
|
int "Highest Button Number"
|
|
|
|
default 7
|
|
|
|
|
2014-04-14 00:24:28 +02:00
|
|
|
if ARCH_IRQBUTTONS
|
2012-10-04 20:42:28 +02:00
|
|
|
config EXAMPLES_IRQBUTTONS_MIN
|
|
|
|
int "Lowest Interrupting Button Number"
|
|
|
|
default 0
|
|
|
|
|
|
|
|
config EXAMPLES_IRQBUTTONS_MAX
|
|
|
|
int "Highest Interrupting Button Number"
|
|
|
|
default 7
|
|
|
|
|
|
|
|
config EXAMPLES_BUTTONS_NAME0
|
|
|
|
string "Button 0 Name"
|
|
|
|
default "Button 0"
|
|
|
|
|
|
|
|
config EXAMPLES_BUTTONS_NAME1
|
|
|
|
string "Button 1 Name"
|
|
|
|
default "Button 1"
|
|
|
|
|
|
|
|
config EXAMPLES_BUTTONS_NAME2
|
|
|
|
string "Button 2 Name"
|
|
|
|
default "Button 2"
|
|
|
|
|
|
|
|
config EXAMPLES_BUTTONS_NAME3
|
|
|
|
string "Button 3 Name"
|
|
|
|
default "Button 3"
|
|
|
|
|
|
|
|
config EXAMPLES_BUTTONS_NAME4
|
|
|
|
string "Button 4 Name"
|
|
|
|
default "Button 4"
|
|
|
|
|
|
|
|
config EXAMPLES_BUTTONS_NAME5
|
|
|
|
string "Button 5 Name"
|
|
|
|
default "Button 5"
|
|
|
|
|
|
|
|
config EXAMPLES_BUTTONS_NAME6
|
|
|
|
string "Button 6 Name"
|
|
|
|
default "Button 6"
|
|
|
|
|
|
|
|
config EXAMPLES_BUTTONS_NAME7
|
|
|
|
string "Button 7 Name"
|
|
|
|
default "Button 7"
|
|
|
|
|
|
|
|
endif
|
2012-04-13 04:14:09 +02:00
|
|
|
endif
|