2014-04-22 15:52:08 +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.
|
2014-04-22 15:52:08 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
config EXAMPLES_SERIALBLASTER
|
2019-10-06 05:37:19 +02:00
|
|
|
tristate "Serial Blaster example"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable the serial blaster example
|
2014-04-22 15:52:08 +02:00
|
|
|
|
|
|
|
if EXAMPLES_SERIALBLASTER
|
2014-04-30 22:03:36 +02:00
|
|
|
|
|
|
|
config EXAMPLES_SERIALBLASTER_STACKSIZE
|
|
|
|
int "CPU hog stack size"
|
2020-03-27 06:10:33 +01:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2014-04-30 22:03:36 +02:00
|
|
|
|
|
|
|
config EXAMPLES_SERIALBLASTER_PRIORITY
|
|
|
|
int "CPU hog task priority"
|
|
|
|
default 50
|
|
|
|
|
2019-10-11 15:23:39 +02:00
|
|
|
config EXAMPLES_SERIALBLASTER_DEVPATH
|
|
|
|
string "Serial device path"
|
|
|
|
default "/dev/ttyS2"
|
|
|
|
---help---
|
|
|
|
The default path to the serial device
|
2014-04-22 15:52:08 +02:00
|
|
|
endif
|