nuttx-apps/examples/oneshot/Kconfig
Xiang Xiao aa99d267b7 Change the private default signal number to 32
and remove the unused private signal number macro

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
2023-04-05 03:38:24 -07:00

56 lines
1.4 KiB
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config EXAMPLES_ONESHOT
tristate "Oneshot timer example"
default n
depends on ONESHOT
---help---
Enable the oneshot timer driver example
if EXAMPLES_ONESHOT
config EXAMPLES_ONESHOT_DEVNAME
string "Oneshot time device name"
default "/dev/oneshot"
---help---
This is the default name of the timer device that will be tested if
one is not specified on the command line.
config EXAMPLES_ONESHOT_DELAY
int "Sample delay (microseconds)"
default 2000000
---help---
This is the default delay samples in microseconds if one is not
specified on the command line
config EXAMPLES_ONESHOT_SIGNO
int "Signal number"
default 32
---help---
This is the number of the signal that will be used in the oneshot
notification.
config EXAMPLES_ONESHOT_STACKSIZE
int "Oneshot timer stack size"
default DEFAULT_TASK_STACKSIZE
---help---
This is the stack size allocated when the oneshot timer task runs
config EXAMPLES_ONESHOT_PRIORITY
int "Oneshot timer task priority"
default 100
---help---
This is the priority of the oneshot timer task
config EXAMPLES_ONESHOT_PROGNAME
string "Oneshot timer program name"
default "oneshot"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
endif