mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-16 01:37:45 -04:00
* * Percepio Trace Recorder v4.6.0 * Add space between inclusion of header and comment * Fix broken posix build - part 1 * Add percepio timer implementation * Remove delted trace recorder header file * Fix Networking demo build * Fix CLI demo * Fix visual studio version number * Fix core header check * Fix more core checks * Fix last of core checks Co-authored-by: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Co-authored-by: Alfred Gedeon <alfred2g@hotmail.com>
30 lines
1.3 KiB
Text
30 lines
1.3 KiB
Text
Percepio Trace Recorder Initialization v4.6.0
|
|
Copyright 2021 Percepio AB
|
|
www.percepio.com
|
|
|
|
This folder contains files that should only be included in a project
|
|
if there is a need to initialize the Trace Recorder before main()
|
|
has been called.
|
|
|
|
An example of this scenario is if you have a global object instance that has
|
|
a constructor that creates an object that should be traced.
|
|
TraceRecorderInit will make it easier to initiate the recorder correctly.
|
|
|
|
Usage:
|
|
Add a call to TraceRecorderInit::Initialize() wherever a traced object
|
|
is created before the Trace Recorder is normally initialized, or simply
|
|
as early as absloutely possible. This will ensure the Trace Recorder is
|
|
initialized only once.
|
|
|
|
Set TRC_CFG_RECORDER_DATA_INIT to 0 in trcConfig.h to ensure
|
|
recorder data isn't initialized cleared after the recorder has been
|
|
already initialized.
|
|
|
|
It is possible that you also need to make sure certain recorder data isn't
|
|
cleared when RAM sections are initialized. Create a RAM section that isn't
|
|
cleared, then set the appropriate attribute in TRC_CFG_RECORDER_DATA_ATTRIBUTE.
|
|
This attribute will then be set for all necessary recorder data that should
|
|
not be cleared.
|
|
|
|
After the hardware and clocks are properly initialized, use
|
|
vTraceEnable(TRC_START) to start the tracing.
|