CMSIS-FreeRTOS  
CMSIS-RTOS2 compliant FreeRTOS Implementation
Event Recorder Setup

Information about Event Recorder configuration and setup. More...

Functions

void EvrFreeRTOSSetup (uint32_t reset)
 Setup Event Recorder configuration. More...
 

Description

Information about Event Recorder configuration and setup.

CMSIS-FreeRTOS interfaces to the Event Recorder to provide event information which helps you to understand and analyze the operation.

To use the Event Recorder together with CMSIS-FreeRTOS, it is required to create an image that generates event information. The steps are described under Create a FreeRTOS project.

Function Documentation

◆ EvrFreeRTOSSetup()

void EvrFreeRTOSSetup ( uint32_t  reset)

Setup Event Recorder configuration.

Parameters
[in]resetreset if already configured (0:no reset, 1:reset)

The function EvrFreeRTOSSetup initializes Event Recorder and configures recording level filter. It must be called before any event is sent to the Event Recorder.

The argument reset specifies if reset of previously applied configuration is performed in case if EvrFreeRTOSSetup was already called.

Behavior of this function execution is defined with Event Recorder Configuration (Configure Event Recorder). Calling this function has no effect when Event Recorder component is not selected.

Note
EvrFreeRTOSSetup is called by function osKernelInitialize when CMSIS-RTOS2 API is in use and should not be called explicitly.