zephyr/subsys/tracing/sysview/Kconfig
Joakim Andersson 43bce7e125 tracing: sysview: Remove redundant depends on
Remove redundant depends on statements for SEGGER_SYSTEMVIEW.
This is already inside an if SEGGER_SYSTEMVIEW so depends on are
already added.

Signed-off-by: Joakim Andersson <joakim.andersson@heimdallpower.com>
2024-03-11 09:09:07 -05:00

36 lines
851 B
Plaintext

# Copyright (c) 2016 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0
if SEGGER_SYSTEMVIEW
config SEGGER_SYSTEMVIEW_BOOT_ENABLE
bool "Start logging SystemView events on system start"
config SEGGER_SYSVIEW_RTT_BUFFER_SIZE
int "Buffer size for SystemView RTT"
default 4096
config SEGGER_SYSVIEW_RTT_CHANNEL
int "RTT channel for SystemView"
default 0
config SEGGER_SYSVIEW_APP_NAME
string "Application name to be displayed in SystemView"
default "ZephyrSysView"
config SEGGER_SYSVIEW_POST_MORTEM_MODE
bool "Post-mortem mode for SystemView"
choice SEGGER_SYSVIEW_SECTION
prompt "Choose SystemView data linker section"
config SEGGER_SYSVIEW_SECTION_NONE
bool "Place SystemView data in the default linker section"
config SEGGER_SYSVIEW_SECTION_DTCM
bool "Place SystemView data in the DTCM linker section"
endchoice
endif