GDLT-38, Update license in internal headers.
[profile/ivi/dlt-daemon.git] / src / lib / dlt_client_cfg.h
1 /**\r
2  * @licence app begin@\r
3  * Copyright (C) 2012  BMW AG\r
4  *\r
5  * This file is part of GENIVI Project Dlt - Diagnostic Log and Trace console apps.\r
6  *\r
7  * Contributions are licensed to the GENIVI Alliance under one or more\r
8  * Contribution License Agreements.\r
9  *\r
10  * \copyright\r
11  * This Source Code Form is subject to the terms of the\r
12  * Mozilla Public License, v. 2.0. If a  copy of the MPL was not distributed with\r
13  * this file, You can obtain one at http://mozilla.org/MPL/2.0/.\r
14  *\r
15  *\r
16  * \author Alexander Wenzel <alexander.wenzel@bmw.de> BMW 2011-2012\r
17  *\r
18  * \file <FILE>\r
19  * For further information see http://www.genivi.org/.\r
20  * @licence end@\r
21  */\r
22 \r
23 \r
24 /*******************************************************************************\r
25 **                                                                            **\r
26 **  SRC-MODULE: dlt_client_cfg.h                                              **\r
27 **                                                                            **\r
28 **  TARGET    : linux                                                         **\r
29 **                                                                            **\r
30 **  PROJECT   : DLT                                                           **\r
31 **                                                                            **\r
32 **  AUTHOR    : Alexander Wenzel Alexander.AW.Wenzel@bmw.de                   **\r
33 **              Markus Klein                                                  **\r
34 **                                                                            **\r
35 **  PURPOSE   :                                                               **\r
36 **                                                                            **\r
37 **  REMARKS   :                                                               **\r
38 **                                                                            **\r
39 **  PLATFORM DEPENDANT [yes/no]: yes                                          **\r
40 **                                                                            **\r
41 **  TO BE CHANGED BY USER [yes/no]: no                                        **\r
42 **                                                                            **\r
43 *******************************************************************************/\r
44 \r
45 /*******************************************************************************\r
46 **                      Author Identity                                       **\r
47 ********************************************************************************\r
48 **                                                                            **\r
49 ** Initials     Name                       Company                            **\r
50 ** --------     -------------------------  ---------------------------------- **\r
51 **  aw          Alexander Wenzel           BMW                                **\r
52 **  mk          Markus Klein               Fraunhofer ESK                     **\r
53 *******************************************************************************/\r
54 \r
55 /*******************************************************************************\r
56 **                      Author Identity                                       **\r
57 ********************************************************************************\r
58 **                                                                            **\r
59 ** Initials     Name                       Company                            **\r
60 ** --------     -------------------------  ---------------------------------- **\r
61 **  aw          Alexander Wenzel           BMW                                **\r
62 **  mk          Markus Klein               Fraunhofer ESK                     **\r
63 *******************************************************************************/\r
64 \r
65 #ifndef DLT_CLIENT_CFG_H\r
66 #define DLT_CLIENT_CFG_H\r
67 \r
68 /*************/\r
69 /* Changable */\r
70 /*************/\r
71
72 /* Dummy application id of DLT client */\r
73 #define DLT_CLIENT_DUMMY_APP_ID "CA1"
74
75 /* Dummy context id of DLT client */
76 #define DLT_CLIENT_DUMMY_CON_ID "CC1"
77
78 /* Size of buffer */
79 #define DLT_CLIENT_TEXTBUFSIZE          512 
80
81 /* Size of receive buffer */
82 #define DLT_CLIENT_RCVBUFSIZE         10024 
83
84 /* Initial baudrate */
85 #if !defined (__WIN32__) && !defined(_MSC_VER)
86 #define DLT_CLIENT_INITIAL_BAUDRATE B115200
87 #else
88 #define DLT_CLIENT_INITIAL_BAUDRATE 0
89 #endif\r
90 \r
91 /************************/\r
92 /* Don't change please! */\r
93 /************************/\r
94 \r
95 #endif /* DLT_CLIENT_CFG_H */\r