Kconfig.rtt 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # Copyright (c) 2016 Nordic Semiconductor ASA
  2. # SPDX-License-Identifier: Apache-2.0
  3. config HAS_SEGGER_RTT
  4. bool
  5. help
  6. Indicates that the platform supports SEGGER J-Link RTT.
  7. config USE_SEGGER_RTT
  8. bool "Enable SEGGER RTT libraries."
  9. depends on HAS_SEGGER_RTT
  10. help
  11. Enable Segger J-Link RTT libraries for platforms that support it.
  12. Selection of this option enables use of RTT for various subsystems.
  13. Note that by enabling this option, RTT buffers consume more RAM.
  14. if USE_SEGGER_RTT
  15. config SEGGER_RTT_CUSTOM_LOCKING
  16. bool "Enable custom locking"
  17. help
  18. Enable custom locking using a mutex.
  19. config SEGGER_RTT_MAX_NUM_UP_BUFFERS
  20. int "Maximum number of up-buffers"
  21. default 3
  22. config SEGGER_RTT_MAX_NUM_DOWN_BUFFERS
  23. int "Maximum number of down-buffers"
  24. default 3
  25. config SEGGER_RTT_BUFFER_SIZE_UP
  26. int "Size of the buffer for terminal output of target, up to host"
  27. default 1024
  28. config SEGGER_RTT_BUFFER_SIZE_DOWN
  29. int "Size of the buffer for terminal input of target, from host"
  30. default 16
  31. config SEGGER_RTT_PRINTF_BUFFER_SIZE
  32. int "Size of buffer for RTT printf to bulk-send chars via RTT"
  33. default 64
  34. choice
  35. prompt "Mode for pre-initialized terminal channel (buffer 0)"
  36. default SEGGER_RTT_MODE_NO_BLOCK_SKIP
  37. config SEGGER_RTT_MODE_NO_BLOCK_SKIP
  38. bool "Skip. Do not block, output nothing."
  39. config SEGGER_RTT_MODE_NO_BLOCK_TRIM
  40. bool "Trim: Do not block, output as much as fits."
  41. config SEGGER_RTT_MODE_BLOCK_IF_FIFO_FULL
  42. bool "Block: Wait until there is space in the buffer."
  43. endchoice
  44. config SEGGER_RTT_MODE
  45. int
  46. default 2 if SEGGER_RTT_MODE_BLOCK_IF_FIFO_FULL
  47. default 1 if SEGGER_RTT_MODE_NO_BLOCK_TRIM
  48. default 0
  49. config SEGGER_RTT_MEMCPY_USE_BYTELOOP
  50. bool "Use a simple byte-loop instead of standard memcpy"
  51. choice SEGGER_RTT_SECTION
  52. prompt "Choose RTT data linker section"
  53. config SEGGER_RTT_SECTION_NONE
  54. bool "Place RTT data in the default linker section"
  55. config SEGGER_RTT_SECTION_DTCM
  56. bool "Place RTT data in the DTCM linker section"
  57. endchoice
  58. endif