These libraries allow publishing information to enable system profiling when using the SEGGER SystemView tool. This tool provides a way to record and visualize events such as threads scheduling, interrupts, and can help find unintended interactions and resource conflicts. More information can be obtained from SEGGER website at [1], including downloads for major platforms. [1] https://www.segger.com/systemview.html?p=1731 Jira: ZEP-1463 Origin: https://www.segger.com/systemview.html?p=1731 Change-Id: I04f5897690089dc8a8fb4ae60726fe3a022b7a30 Signed-off-by: Leandro Pereira <leandro.pereira@intel.com>
17 lines
265 B
Plaintext
17 lines
265 B
Plaintext
#
|
|
# Copyright (c) 2016 Nordic Semiconductor ASA
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
config HAS_SEGGER_RTT
|
|
bool
|
|
prompt "Segger RTT support"
|
|
default n
|
|
|
|
config HAS_SEGGER_SYSTEMVIEW
|
|
bool
|
|
prompt "Segger SystemView support"
|
|
default n
|
|
select HAS_SEGGER_RTT
|