FreeRTOS¶
Watch the video for a quick start with Snapshot trace, or see the detailed guides below that also covers streaming.
Copy the TraceRecorder files into your project. The folder structure is a bit different depending on if the code is copied from the Tracealyzer installation directory or from the official git repository.
If the code is copied from the Tracealyzer directory (see links in Help menu): copy all files in the root of the TraceRecorder folder, and also the include and config subfolders.
If the code is cloned from the git repository: copy all c and h files from the following folders:
/ /config /include /kernelports/FreeRTOS /kernelports/FreeRTOS/config /kernelports/FreeRTOS/include
Make sure to add the path to the h files to the compiler’s “include paths” so the compiler can find them. This step is different depending on your development environment.
In trcConfig.h set
TRC_CFG_HARDWARE_PORT
to the architecture used. For some hardware ports you need to#include
the processor header file by replacing the row#error "Trace Recorder: Please include your processor's header file here and remove this line."
. If the error line is removed and your project compiles, the header file isn’t needed. All available hardware ports can be found at the bottom of trcDefines.h.
TRC_CFG_FREERTOS_VERSION
needs to be set in trcKernelPortConfig.h.In FreeRTOSConfig.h
configUSE_TRACE_FACILITY
needs to be set to 1 and#include "trcRecorder.h"
needs to be included at the end of the file as described below./* Integrates the Tracealyzer recorder with FreeRTOS */ #if ( configUSE_TRACE_FACILITY == 1 ) #include "trcRecorder.h" #endif /* Note: Since FreeRTOSConfig.h is also included from some FreeRTOS assembly files, depending on your IDE you may need to use a conditional include, like in the examples below.*/ /* IAR Embedded Workbench */ #ifndef __IASMARM__ #if ( configUSE_TRACE_FACILITY == 1 ) #include "trcRecorder.h" #endif #endif /* Microchip MPLAB X IDE */ #ifndef __LANGUAGE_ASSEMBLY #if ( configUSE_TRACE_FACILITY == 1 ) #include "trcRecorder.h" #endif #endif
6. Call xTraceEnable(TRC_START)
in your main function to initialize and start the recorder. This must be done after the initial hardware setup, but before any RTOS objects (tasks etc.) have been created.
Optionally, xTraceInitialize()
can be used to only initialize the trace system and then xTraceEnable()
can be used later when appropriate. Other start options for xTraceEnable are described in trcRecorder.h.
Configure the project for snapshot or streaming as mentioned below.
Note
For hardware ports that use the same time source as FreeRTOS tick interrupt (for example the hardware port for Pic32/24 and Cortex-A9)
xTraceInitialize()
needs to be called in the main function before any RTOS objects are created. ThenxTraceEnable()
needs to be called after the kernel has started. This ensures that the clock used for timestamps have been correctly configured by FreeRTOS.
Snapshot Trace¶
In snapshot tracing, trace data is stored in a local RAM buffer on the target device that can later be read from the host. The recorder can be configured to either stop or overwrite the start when the buffer becomes full.
Copy the files from the RingBuffer streamport folder into your project. Make sure to include all .c files and the header files from the Config and Include folders.
For RingBuffer settings, see trcStreamPortConfig.h
TRC_CFG_STREAM_PORT_BUFFER_SIZE
decides the size of the trace buffer that is stored in RAM.TRC_CFG_STREAM_PORT_RINGBUFFER_MODE
can be set toTRC_CFG_STREAM_PORT_RINGBUFFER_MODE_OVERWRITE_WHEN_FULL
for continuously recording orTRC_CFG_STREAM_PORT_RINGBUFFER_MODE_STOP_WHEN_FULL
for stopping when the buffer is full.
Now the project should compile and write data to the ring buffer, from which snapshots can be taken when the target is halted.
Note that the “Snapshot Mode” setting in trcKernelPortConfig.h refers to a legacy solution that is limited to snapshot tracing only. This mode is deprecated and is no longer recommended for new projects. The config file trcSnapshotConfig.h belongs to the legacy snapshot mode.
The default and recommended setting is “Streaming Mode” which allows for both streaming and snapshot tracing by selecting different stream ports. The RingBuffer stream port provides snapshot tracing support.
Reading a snapshot¶
There are a few ways to read a snapshot. More information is found in the Tracealyzer User Manual and also in some of the vendor-specific guides found on the main Getting Started page (e.g. for STM32CubeIDE, IAR and Keil).
For convenience we provide two examples below - the Percepio plugins for Eclipse and MPLAB X IDE. But basically you can use any method to save the contents of your RAM buffer to a .hex or .bin file, and then simply open that file in Tracealyzer.
The Eclipse plugin can be found on Eclipse Marketplace. This plugin will work for most versions of Eclipse. After the plugin has been installed the Percepio option can be found in the toolbar. To save a snapshot, start a debugging session, halt the application and then select Percepio -> Save Snapshot.
The MPLAB x plugin can be downloaded here then it can be installed following these instructions. To save a snapshot first open the Tracealyzer plugin by going to Tools -> Embedded -> Tracealyzer Export Plugin. Then start a debugging session, halt it, and press the “Save Trace” button.
Streaming¶
Streaming is a method where trace data are offloaded from the target continuously, this means that a streaming trace can run for hours or even days depending on the setup. The different streaming methods included can be found in the stream ports folder. If there are no stream ports available that work with the target and/or application a custom stream port can be made, as long as an interface with high enough bandwidth is used.
Follow the below steps to integrate a stream port:
Copy the files from the selected stream port into the project.
Now the project should compile and streaming can be started using the selected interface.
SEGGER J-Link Streaming¶
For SEGGER J-Link streaming a proprietary SEGGER feature called RTT, Real-Time Transfer, is used. This method utilizes a RAM buffer that the J-Link debugger can read during run time. Note: if you were already using RTT before adding Tracealyzer to your project, you can keep your RTT files as long as you make sure that your version of SEGGER_RTT_Conf.h is compatible with the one that Tracealyzer uses.
After the files have been included in the project from the Jlink_RTT folder as described in the streaming section the different configurations can be changed in trcStreamPortConfig.h. The different settings are:
TRC_CFG_STREAM_PORT_USE_INTERNAL_BUFFER
, decides if an extra internal buffer should be used. This should be turned off in most cases when using this port.TRC_CFG_STREAM_PORT_INTERNAL_BUFFER_SIZE
, sets the size of the internal buffer.TRC_CFG_STREAM_PORT_RTT_UP_BUFFER_SIZE
, sets the size of the dedicated RTT output buffer.TRC_CFG_STREAM_PORT_RTT_UP_BUFFER_INDEX
, defines the buffers RTT channel. 0 is reserved for for built in RTT functions and shouldn’t be used.TRC_CFG_STREAM_PORT_RTT_DOWN_BUFFER_INDEX
, defines the RTT buffer channel for incoming data.TRC_CFG_STREAM_PORT_RTT_MODE
, can be set toSEGGER_RTT_MODE_BLOCK_IF_FIFO_FULL
orSEGGER_RTT_MODE_NO_BLOCK_SKIP
. Where the first one will block the system until the whole buffer is cleared, this may disturb the real-time behavior of the system. The second option will generate missed events if the interface isn’t fast enough to clear the buffer.TRC_CFG_STREAM_PORT_RTT_NO_LOCK_WRITE
, set this if RTT should write without locking. This should normally be disabled.
To connect to the target from Tracealyzer, open the settings and go to J-Link settings. Set the debugger, speed, interface and device to match the target.
Go to PSF Streaming Settings and select SEGGER RTT as target connection. Sometimes the J-Link drivers cannot find the RTT control block, in that case the address must be set manually to the address of _SEGGER_RTT
from the target. The up and down buffer index should be set to the same as in trcStreamPortConfig. If the argument TRC_START
is used when calling xTraceEnable
in the application, the Target Starts Tracing box should also be checked, otherwise it should be empty.
When all the settings are set, the settings window can be closed. Start streaming by pressing the connect button in the Live Stream window followed by pressing the Start Session button. If everything is set up correctly, data should now flow from the target.