nuttx-apps/examples/txmorse/Kconfig
Matteo Golin c814059f6c examples/txmorse: Example application for transmitting Morse code
Adds an example application leveraging the Morsey library for
transmitting Morse code, either to the console (debug) or to GPIO
devices for now as the two supported sinks.

Signed-off-by: Matteo Golin <matteo.golin@gmail.com>
2026-07-21 05:46:11 -03:00

30 lines
680 B
Text

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config EXAMPLES_TXMORSE
tristate "txmorse (Morse code transmitter)"
default n
depends on AUDIOUTILS_MORSEY
---help---
Enable the Morse code transmission example.
if EXAMPLES_TXMORSE
config EXAMPLES_TXMORSE_PROGNAME
string "Program name"
default "txmorse"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config EXAMPLES_TXMORSE_PRIORITY
int "txmorse task priority"
default 100
config EXAMPLES_TXMORSE_STACKSIZE
int "txmorse stack size"
default DEFAULT_TASK_STACKSIZE
endif