zephyr/subsys/tracing/sysview/Kconfig
Mattia Fiumara 8244590fb8 tracing: add feature for analysing post-mortem
This adds a Kconfig option for enabling post-mortem mode of SystemView.
This is useful for crashes that occur after a longer period of time.

Signed-off-by: Mattia Fiumara <mattia.fiumara@bgrid.com>
2020-10-07 10:10:48 -04:00

20 lines
475 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"
depends on SEGGER_SYSTEMVIEW
config SEGGER_SYSVIEW_RTT_BUFFER_SIZE
int "Buffer size for SystemView RTT"
depends on SEGGER_SYSTEMVIEW
default 4096
config SEGGER_SYSVIEW_POST_MORTEM_MODE
bool "Enable post-mortem mode for SystemView"
depends on SEGGER_SYSTEMVIEW
endif