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
|
|
|
|
2018-08-18 17:04:43 +02:00
|
|
|
config SYSTEM_NSH
|
2018-08-23 19:06:15 +02:00
|
|
|
tristate "NuttShell (NSH) example"
|
2012-04-13 04:14:09 +02:00
|
|
|
default n
|
2012-09-05 14:45:35 +02:00
|
|
|
select NSH_LIBRARY
|
|
|
|
select SYSTEM_READLINE
|
2012-04-13 04:14:09 +02:00
|
|
|
---help---
|
|
|
|
Enable the NuttShell (NSH) example
|
|
|
|
|
2018-08-18 17:04:43 +02:00
|
|
|
if SYSTEM_NSH
|
2013-06-21 17:32:57 +02:00
|
|
|
|
2018-08-23 19:06:15 +02:00
|
|
|
config SYSTEM_NSH_PRIORITY
|
2020-10-19 05:14:35 +02:00
|
|
|
int "NuttX shell thread priority"
|
2018-08-23 19:06:15 +02:00
|
|
|
default 100
|
|
|
|
|
|
|
|
config SYSTEM_NSH_STACKSIZE
|
2020-10-19 05:14:35 +02:00
|
|
|
int "NuttX shell stack size"
|
2020-03-27 06:10:33 +01:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2018-08-23 19:06:15 +02:00
|
|
|
|
2018-08-18 17:04:43 +02:00
|
|
|
config SYSTEM_NSH_PROGNAME
|
2014-09-06 19:17:05 +02:00
|
|
|
string "Program name"
|
|
|
|
default "nsh"
|
|
|
|
---help---
|
2019-08-23 19:59:28 +02:00
|
|
|
This is the name of the program that will be used when the NSH ELF
|
2014-09-06 19:17:05 +02:00
|
|
|
program is installed.
|
|
|
|
|
2012-04-13 04:14:09 +02:00
|
|
|
endif
|