mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-17 02:07:48 -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>
41 lines
1.3 KiB
C
41 lines
1.3 KiB
C
/*
|
|
* Trace Recorder for Tracealyzer v4.6.0
|
|
* Copyright 2021 Percepio AB
|
|
* www.percepio.com
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* The configuration for trace streaming ("stream ports").
|
|
*/
|
|
|
|
#ifndef TRC_STREAM_PORT_CONFIG_H
|
|
#define TRC_STREAM_PORT_CONFIG_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* This define will determine whether to use the internal buffer or not.
|
|
If file writing creates additional trace events (i.e. it uses semaphores or mutexes),
|
|
then the internal buffer must be enabled to avoid infinite recursion. */
|
|
#define TRC_CFG_STREAM_PORT_USE_INTERNAL_BUFFER 0
|
|
|
|
/*******************************************************************************
|
|
* Configuration Macro: TRC_CFG_STREAM_PORT_TCPIP_PORT
|
|
*
|
|
* Specifies the TCP/IP port.
|
|
******************************************************************************/
|
|
#define TRC_CFG_STREAM_PORT_TCPIP_PORT 8888
|
|
|
|
/*******************************************************************************
|
|
* Configuration Macro: TRC_CFG_STREAM_PORT_BUFFER_SIZE
|
|
*
|
|
* Specifies the size of the internal buffer, if one is used.
|
|
******************************************************************************/
|
|
#define TRC_CFG_STREAM_PORT_BUFFER_SIZE 10000
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* TRC_STREAM_PORT_CONFIG_H */
|