According to Kconfig guidelines, boolean prompts must not start with "Enable...". The following command has been used to automate the changes in this patch: sed -i "s/bool \"[Ee]nables\? \(\w\)/bool \"\U\1/g" **/Kconfig* Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
31 lines
747 B
Plaintext
31 lines
747 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 "Post-mortem mode for SystemView"
|
|
depends on SEGGER_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
|