Kconfig.projbuild 640 B

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