FreeCalypso > hg > fc-magnetite
comparison src/g23m-fad/tcpip/include/rv_trace.h @ 174:90eb61ecd093
src/g23m-fad: initial import from TCS3.2/LoCosto
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 12 Oct 2016 05:40:46 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
173:bf64d785238a | 174:90eb61ecd093 |
---|---|
1 /************************************************************************************* | |
2 * * | |
3 * Name rv_trace.h * | |
4 * * | |
5 * Function this file contains trace definitions for basic layers * | |
6 * * | |
7 * Date Modification * | |
8 * ------------------------ * | |
9 * 10/12/00 - Create Cristian Livadiotti - c-livadiotti@ti.com * | |
10 * * | |
11 * * | |
12 * (C) Copyright 1999 by Texas Instruments Incorporated, All Rights Reserved * | |
13 * * | |
14 * --------------------------------------------------------------------------------- * | |
15 * * | |
16 * History: * | |
17 * * | |
18 * 10/18/2001 - Updated for R2D by Christophe Favergeon * | |
19 * * | |
20 *************************************************************************************/ | |
21 | |
22 #ifndef _RV_TRACE_H_ | |
23 #define _RV_TRACE_H_ | |
24 | |
25 /* Define trace levels. */ | |
26 #define RV_TRACE_LEVEL_ERROR (1) /* Error condition trace messages. */ | |
27 /* Used when an unrecoverable error is found */ | |
28 #define RV_TRACE_LEVEL_WARNING (2) /* Warning condition trace messages. */ | |
29 /* Used when an error is found but is handled properly by the code*/ | |
30 #define RV_TRACE_LEVEL_DEBUG_HIGH (3) /* Debug messages (high debugging). */ | |
31 /* high = important debug message */ | |
32 #define RV_TRACE_LEVEL_DEBUG_MEDIUM (4) /* Debug messages. */ | |
33 #define RV_TRACE_LEVEL_DEBUG_LOW (5) /* Debug messages (low debugging). */ | |
34 /* low = not important debug message */ | |
35 | |
36 /* temporary definition of this old flag for backward compatibility */ | |
37 #define TRACE_RVTEST (0x001E0004) | |
38 | |
39 #endif /* _RV_GENERAL_H_*/ | |
40 |