1# Copyright (c) 2016 Nordic Semiconductor ASA 2# SPDX-License-Identifier: Apache-2.0 3 4if SEGGER_SYSTEMVIEW 5 6config SEGGER_SYSTEMVIEW_BOOT_ENABLE 7 bool "Start logging SystemView events on system start" 8 depends on SEGGER_SYSTEMVIEW 9 10config SEGGER_SYSVIEW_RTT_BUFFER_SIZE 11 int "Buffer size for SystemView RTT" 12 depends on SEGGER_SYSTEMVIEW 13 default 4096 14 15config SEGGER_SYSVIEW_RTT_CHANNEL 16 int "RTT channel for SystemView" 17 depends on SEGGER_SYSTEMVIEW 18 default 0 19 20config SEGGER_SYSVIEW_APP_NAME 21 string "Application name to be displayed in SystemView" 22 depends on SEGGER_SYSTEMVIEW 23 default "ZephyrSysView" 24 25config SEGGER_SYSVIEW_POST_MORTEM_MODE 26 bool "Post-mortem mode for SystemView" 27 depends on SEGGER_SYSTEMVIEW 28 29choice SEGGER_SYSVIEW_SECTION 30 prompt "Choose SystemView data linker section" 31 32config SEGGER_SYSVIEW_SECTION_NONE 33 bool "Place SystemView data in the default linker section" 34 35config SEGGER_SYSVIEW_SECTION_DTCM 36 bool "Place SystemView data in the DTCM linker section" 37 38endchoice 39 40endif 41