mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-20 02:25:23 -05: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.
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 */
|