automotive-dlt
dlt_client_cfg.h
Go to the documentation of this file.
1 /*
2  * @licence app begin@
3  * SPDX license identifier: MPL-2.0
4  *
5  * Copyright (C) 2011-2015, BMW AG
6  *
7  * This file is part of GENIVI Project DLT - Diagnostic Log and Trace.
8  *
9  * This Source Code Form is subject to the terms of the
10  * Mozilla Public License (MPL), v. 2.0.
11  * If a copy of the MPL was not distributed with this file,
12  * You can obtain one at http://mozilla.org/MPL/2.0/.
13  *
14  * For further information see http://www.genivi.org/.
15  * @licence end@
16  */
17 
28 /*******************************************************************************
29 ** **
30 ** SRC-MODULE: dlt_client_cfg.h **
31 ** **
32 ** TARGET : linux **
33 ** **
34 ** PROJECT : DLT **
35 ** **
36 ** AUTHOR : Alexander Wenzel Alexander.AW.Wenzel@bmw.de **
37 ** Markus Klein **
38 ** **
39 ** PURPOSE : **
40 ** **
41 ** REMARKS : **
42 ** **
43 ** PLATFORM DEPENDANT [yes/no]: yes **
44 ** **
45 ** TO BE CHANGED BY USER [yes/no]: no **
46 ** **
47 *******************************************************************************/
48 
49 /*******************************************************************************
50 ** Author Identity **
51 ********************************************************************************
52 ** **
53 ** Initials Name Company **
54 ** -------- ------------------------- ---------------------------------- **
55 ** aw Alexander Wenzel BMW **
56 ** mk Markus Klein Fraunhofer ESK **
57 *******************************************************************************/
58 
59 /*******************************************************************************
60 ** Author Identity **
61 ********************************************************************************
62 ** **
63 ** Initials Name Company **
64 ** -------- ------------------------- ---------------------------------- **
65 ** aw Alexander Wenzel BMW **
66 ** mk Markus Klein Fraunhofer ESK **
67 *******************************************************************************/
68 
69 #ifndef DLT_CLIENT_CFG_H
70 #define DLT_CLIENT_CFG_H
71 
72 /*************/
73 /* Changable */
74 /*************/
75 
76 /* Dummy application id of DLT client */
77 #define DLT_CLIENT_DUMMY_APP_ID "CA1"
78 
79 /* Dummy context id of DLT client */
80 #define DLT_CLIENT_DUMMY_CON_ID "CC1"
81 
82 /* Size of buffer */
83 #define DLT_CLIENT_TEXTBUFSIZE 512
84 
85 /* Size of receive buffer */
86 #define DLT_CLIENT_RCVBUFSIZE 10024
87 
88 /* Initial baudrate */
89 #if !defined (__WIN32__) && !defined(_MSC_VER)
90 #define DLT_CLIENT_INITIAL_BAUDRATE B115200
91 #else
92 #define DLT_CLIENT_INITIAL_BAUDRATE 0
93 #endif
94 
95 /* Name of environment variable for specifying the daemon port */
96 #define DLT_CLIENT_ENV_DAEMON_TCP_PORT "DLT_DAEMON_TCP_PORT"
97 
98 /************************/
99 /* Don't change please! */
100 /************************/
101 
102 #endif /* DLT_CLIENT_CFG_H */