2017-08-15 04:11:19 -04:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
2021-07-14 23:37:11 -04:00
|
|
|
config CONSOLE_STORE_HISTORY
|
2019-01-25 11:10:53 -05: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.
|
2017-08-15 04:11:19 -04:00
|
|
|
|
2021-07-14 23:37:11 -04:00
|
|
|
config CONSOLE_MAX_COMMAND_LINE_LENGTH
|
|
|
|
int "Maximum command line length"
|
|
|
|
default 1024
|
|
|
|
help
|
|
|
|
This value marks the maximum length of a single command line. Once it is
|
|
|
|
reached, no more characters will be accepted by the console.
|
|
|
|
|
2020-11-10 02:40:01 -05:00
|
|
|
endmenu
|