Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # Copyright (c) 2017 Linaro Limited
  2. # SPDX-License-Identifier: Apache-2.0
  3. menuconfig CONSOLE_SUBSYS
  4. bool "Console subsystem/support routines [EXPERIMENTAL]"
  5. help
  6. Console subsystem and helper functions
  7. if CONSOLE_SUBSYS
  8. choice
  9. prompt "Console 'get' function selection"
  10. optional
  11. depends on UART_CONSOLE && SERIAL_SUPPORT_INTERRUPT
  12. config CONSOLE_GETCHAR
  13. bool "Character by character input and output"
  14. select UART_CONSOLE_DEBUG_SERVER_HOOKS
  15. select CONSOLE_HANDLER
  16. config CONSOLE_GETLINE
  17. bool "Line by line input"
  18. select CONSOLE_HANDLER
  19. endchoice
  20. if CONSOLE_GETCHAR
  21. config CONSOLE_GETCHAR_BUFSIZE
  22. int "console_getchar() buffer size"
  23. default 16
  24. help
  25. Buffer size for console_getchar(). The default is optimized
  26. to save RAM. You may need to increase it e.g. to support
  27. large host-side clipboard pastes. Set to 0 to disable
  28. interrupt-driven operation and use busy-polling.
  29. config CONSOLE_PUTCHAR_BUFSIZE
  30. int "console_putchar() buffer size"
  31. default 16
  32. help
  33. Buffer size for console_putchar(). The default is optimized
  34. to save RAM. You may need to increase it e.g. to support
  35. large host-side clipboard pastes. Set to 0 to disable
  36. interrupt-driven operation and use busy-polling.
  37. endif # CONSOLE_GETCHAR
  38. endif # CONSOLE_SUBSYS