mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
- removed examples/system/console/advanced_usb_cdc - refactor resulting console/advanced example - enabled advanced console for all peripherals (UART, USB_OTG, USB_JTAG) - added pytest to check UART console output - update docs
20 lines
716 B
Plaintext
20 lines
716 B
Plaintext
menu "Example Configuration"
|
|
|
|
config CONSOLE_STORE_HISTORY
|
|
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, initializes a FAT filesystem
|
|
and uses it to store command history.
|
|
|
|
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).
|
|
|
|
endmenu
|