1menu "Example Configuration" 2 3 config CONSOLE_STORE_HISTORY 4 bool "Store command history in flash" 5 default y 6 help 7 Linenoise line editing library provides functions to save and load 8 command history. If this option is enabled, initalizes a FAT filesystem 9 and uses it to store command history. 10 11 config CONSOLE_MAX_COMMAND_LINE_LENGTH 12 int "Maximum command line length" 13 default 1024 14 help 15 This value marks the maximum length of a single command line. Once it is 16 reached, no more characters will be accepted by the console. 17 18endmenu 19