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
9config SEGGER_SYSVIEW_RTT_BUFFER_SIZE
10	int "Buffer size for SystemView RTT"
11	default 4096
12
13config SEGGER_SYSVIEW_RTT_CHANNEL
14	int "RTT channel for SystemView"
15	default 0
16
17config SEGGER_SYSVIEW_APP_NAME
18	string "Application name to be displayed in SystemView"
19	default "ZephyrSysView"
20
21config SEGGER_SYSVIEW_POST_MORTEM_MODE
22	bool "Post-mortem mode for SystemView"
23
24choice SEGGER_SYSVIEW_SECTION
25	prompt "Choose SystemView data linker section"
26
27config SEGGER_SYSVIEW_SECTION_NONE
28	bool "Place SystemView data in the default linker section"
29
30config SEGGER_SYSVIEW_SECTION_DTCM
31	bool "Place SystemView data in the DTCM linker section"
32
33endchoice
34
35endif
36