forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tracing: cleanup and split segger/rtt configuration options
Move rtt configuration options to drivers/debug and split the systemview configuration. drivers/debug will service for this class of drivers that are enabled in debug mode only and provide a hardware interface to the system. Signed-off-by: Anas Nashif <[email protected]>
- Loading branch information
Showing
6 changed files
with
36 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Copyright (c) 2020 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
source "drivers/debug/Kconfig.rtt" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# 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 | ||
|
||
endif |