Kconfig 754 B

123456789101112131415161718192021222324252627282930
  1. # Copyright (c) 2016 Nordic Semiconductor ASA
  2. # SPDX-License-Identifier: Apache-2.0
  3. if SEGGER_SYSTEMVIEW
  4. config SEGGER_SYSTEMVIEW_BOOT_ENABLE
  5. bool "Start logging SystemView events on system start"
  6. depends on SEGGER_SYSTEMVIEW
  7. config SEGGER_SYSVIEW_RTT_BUFFER_SIZE
  8. int "Buffer size for SystemView RTT"
  9. depends on SEGGER_SYSTEMVIEW
  10. default 4096
  11. config SEGGER_SYSVIEW_POST_MORTEM_MODE
  12. bool "Enable post-mortem mode for SystemView"
  13. depends on SEGGER_SYSTEMVIEW
  14. choice SEGGER_SYSVIEW_SECTION
  15. prompt "Choose SystemView data linker section"
  16. config SEGGER_SYSVIEW_SECTION_NONE
  17. bool "Place SystemView data in the default linker section"
  18. config SEGGER_SYSVIEW_SECTION_DTCM
  19. bool "Place SystemView data in the DTCM linker section"
  20. endchoice
  21. endif