2017-08-15 16:11:19 +08:00
|
|
|
menu "Example Configuration"
|
|
|
|
|
2024-04-05 12:30:17 +02:00
|
|
|
config CONSOLE_STORE_HISTORY
|
2019-01-25 17:10:53 +01:00
|
|
|
bool "Store command history in flash"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
Linenoise line editing library provides functions to save and load
|
2024-04-05 12:30:17 +02:00
|
|
|
command history. If this option is enabled, initializes a FAT filesystem
|
2019-01-25 17:10:53 +01:00
|
|
|
and uses it to store command history.
|
2017-08-15 16:11:19 +08:00
|
|
|
|
2024-04-05 12:30:17 +02:00
|
|
|
config CONSOLE_IGNORE_EMPTY_LINES
|
|
|
|
bool "Ignore empty lines inserted into the console"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
If an empty line is inserted to the console, the Console can either
|
|
|
|
ignore empty lines (the example would continue), or break on empty lines
|
|
|
|
(the example would stop after an empty line).
|
|
|
|
|
2020-11-10 18:40:01 +11:00
|
|
|
endmenu
|