]> rtime.felk.cvut.cz Git - arc.git/blob - include/Trace.h
61186402233be16ca982b6c6a0b96ec276f5b1f4
[arc.git] / include / Trace.h
1 /* -------------------------------- Arctic Core ------------------------------
2  * Arctic Core - the open source AUTOSAR platform http://arccore.com
3  *
4  * Copyright (C) 2009  ArcCore AB <contact@arccore.com>
5  *
6  * This source code is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License version 2 as published by the
8  * Free Software Foundation; See <http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt>.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13  * for more details.
14  * -------------------------------- Arctic Core ------------------------------*/
15
16
17
18 #ifndef TRACE_H_\r
19 #define TRACE_H_\r
20
21 #include "simple_printf.h"\r
22 /**\r
23  *\r
24  * NOTE!!!!\r
25  * Do not use this in a header file. Should be used in the *.c file like this.\r
26  *\r
27  * #define USE_TRACE\r
28  * #include "Trace.h"\r
29  *\r
30  * Macro's for debugging and tracing\r
31  *\r
32  * Define USE_DEBUG and DBG_LEVEL either globally( e.g. a makefile )\r
33  * or in a specific file.  The DBG_LEVEL macro controls the amount\r
34  * of detail you want in the debug printout.\r
35  * There are 3 levels:\r
36  * DEBUG_LOW    - Used mainly by drivers to get very detailed\r
37  * DEBUG_MEDIUM - Medium detail\r
38  * DEBUG_HIGH   - General init\r
39  *\r
40  * Example:\r
41  * #define DEBUG_LVL    DEBUG_HIGH\r
42  * DEBUG(DEBUG_HIGH,"Starting GPT");\r
43  *\r
44  * TRACE\r
45  *   TODO:\r
46  *\r
47  */\r
48 \r
49 #define DEBUG_LOW               1\r
50 #define DEBUG_MEDIUM    2\r
51 #define DEBUG_HIGH              3\r
52 \r
53 #ifndef DEBUG_LVL\r
54 #define DEBUG_LVL               2\r
55 #endif\r
56 \r
57 #define CH_ISR          0\r
58 #define CH_PROC         1\r
59 \r
60 #if defined(USE_DEBUG)\r
61 #define DEBUG(_level,...) \\r
62         do { \\r
63                 if(_level>=DEBUG_LVL) { \\r
64                         simple_printf (__VA_ARGS__); \\r
65                 }; \\r
66         } while(0);\r
67 \r
68 #else\r
69 #define DEBUG(_level,...)\r
70 #endif\r
71 \r
72 #if defined(USE_DEBUG)\r
73 #define dbg_printf(format,...) simple_printf(format,## __VA_ARGS__ )\r
74 #else\r
75 #define dbg_printf(format,...)\r
76 #endif\r
77 \r
78 \r
79 #endif /*RAMLOG_H_*/\r