2018-10-15 02:19:02 +00:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
2019-05-09 14:43:06 +00:00
|
|
|
config EXAMPLE_STORE_HISTORY
|
2019-01-25 16:10:53 +00:00
|
|
|
bool "Store command history in flash"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Linenoise line editing library provides functions to save and load
|
|
|
|
command history. If this option is enabled, initalizes a FAT filesystem
|
|
|
|
and uses it to store command history.
|
2018-10-15 02:19:02 +00:00
|
|
|
|
2019-05-09 14:43:06 +00:00
|
|
|
config EXAMPLE_MAX_CMD_ARGUMENTS
|
2019-01-25 16:10:53 +00:00
|
|
|
int "Maximum number of command line arguments"
|
|
|
|
default 16
|
|
|
|
range 8 256
|
|
|
|
help
|
|
|
|
maximum number of command line arguments to parse
|
2018-10-18 03:25:22 +00:00
|
|
|
|
2019-05-09 14:43:06 +00:00
|
|
|
config EXAMPLE_MAX_CMD_LENGTH
|
2019-01-25 16:10:53 +00:00
|
|
|
int "Command line buffer length"
|
|
|
|
default 256
|
|
|
|
range 256 512
|
|
|
|
help
|
|
|
|
length of command line buffer, in bytes
|
2018-10-18 03:25:22 +00:00
|
|
|
|
2018-10-15 02:19:02 +00:00
|
|
|
endmenu
|