mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-14 16:57:41 -04:00
* Use new version of CI-CD Actions, checkout@v3 instead of checkout@v2 on all jobs * Use cSpell spell check, and use ubuntu-20.04 for formatting check * Add in bot formatting action * Update freertos_demo.yml and freertos_plus_demo.yml files to increase github log readability * Add in a Qemu demo onto the workflows.
102 lines
2.9 KiB
C
102 lines
2.9 KiB
C
/*
|
|
* Percepio Trace Recorder for Tracealyzer v4.6.0
|
|
* Copyright 2021 Percepio AB
|
|
* www.percepio.com
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
*
|
|
* @brief Public trace extension APIs.
|
|
*/
|
|
|
|
#ifndef TRC_EXTENSION_H
|
|
#define TRC_EXTENSION_H
|
|
|
|
#if ( TRC_USE_TRACEALYZER_RECORDER == 1 )
|
|
|
|
#if ( TRC_CFG_RECORDER_MODE == TRC_RECORDER_MODE_STREAMING )
|
|
|
|
#include <trcTypes.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @defgroup trace_extension_apis Trace Extension APIs
|
|
* @ingroup trace_recorder_apis
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @brief Creates trace extension.
|
|
*
|
|
* @param[in] szName Name.
|
|
* @param[in] uiMajor Major version.
|
|
* @param[in] uiMinor Minor version.
|
|
* @param[in] uiPatch Patch version.
|
|
* @param[in] uiEventCount Event count.
|
|
* @param[out] pxExtensionHandle Pointer to uninitialized extension handle.
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
traceResult xTraceExtensionCreate( const char * szName,
|
|
uint8_t uiMajor,
|
|
uint8_t uiMinor,
|
|
uint16_t uiPatch,
|
|
uint32_t uiEventCount,
|
|
TraceExtensionHandle_t * pxExtensionHandle );
|
|
|
|
/**
|
|
* @brief Gets extension base event id.
|
|
*
|
|
* @param[in] xExtensionHandle Pointer to initialized extension handle.
|
|
* @param[out] puiBaseEventId Base event id.
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
traceResult xTraceExtensionGetBaseEventId( TraceExtensionHandle_t xExtensionHandle,
|
|
uint32_t * puiBaseEventId );
|
|
|
|
/**
|
|
* @brief Gets extension event id.
|
|
*
|
|
* @param[in] xExtensionHandle Pointer to initialized extension handle.
|
|
* @param[in] uiLocalEventId Local event id.
|
|
* @param[out] puiGlobalEventId Global event id.
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
traceResult xTraceExtensionGetEventId( TraceExtensionHandle_t xExtensionHandle,
|
|
uint32_t uiLocalEventId,
|
|
uint32_t * puiGlobalEventId );
|
|
|
|
/**
|
|
* @brief Gets extension configuration name.
|
|
*
|
|
* @param[in] xExtensionHandle Pointer to initialized extension handle.
|
|
* @param[out] pszName Name.
|
|
*
|
|
* @retval TRC_FAIL Failure
|
|
* @retval TRC_SUCCESS Success
|
|
*/
|
|
traceResult xTraceExtensionGetConfigName( TraceExtensionHandle_t xExtensionHandle,
|
|
const char ** pszName );
|
|
|
|
/** @} */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* (TRC_CFG_RECORDER_MODE == TRC_RECORDER_MODE_STREAMING) */
|
|
|
|
#endif /* (TRC_USE_TRACEALYZER_RECORDER == 1) */
|
|
|
|
#endif /* TRC_EXTENSION_H */
|