2014-04-22 07:52:08 -06:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 08:14:53 -06:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2014-04-22 07:52:08 -06:00
|
|
|
#
|
|
|
|
|
|
|
|
config EXAMPLES_SERIALBLASTER
|
2019-10-05 21:37:19 -06:00
|
|
|
tristate "Serial Blaster example"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable the serial blaster example
|
2014-04-22 07:52:08 -06:00
|
|
|
|
|
|
|
if EXAMPLES_SERIALBLASTER
|
2014-04-30 14:03:36 -06:00
|
|
|
|
|
|
|
config EXAMPLES_SERIALBLASTER_STACKSIZE
|
|
|
|
int "CPU hog stack size"
|
2020-03-27 14:10:33 +09:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2014-04-30 14:03:36 -06:00
|
|
|
|
|
|
|
config EXAMPLES_SERIALBLASTER_PRIORITY
|
|
|
|
int "CPU hog task priority"
|
|
|
|
default 50
|
|
|
|
|
2019-10-11 21:23:39 +08:00
|
|
|
config EXAMPLES_SERIALBLASTER_DEVPATH
|
|
|
|
string "Serial device path"
|
|
|
|
default "/dev/ttyS2"
|
|
|
|
---help---
|
|
|
|
The default path to the serial device
|
2014-04-22 07:52:08 -06:00
|
|
|
endif
|