0
|
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
|
|
26
|
|
27 /* Define trace levels. */
|
|
28 #define RV_TRACE_LEVEL_ERROR (1) /* Error condition trace messages. */
|
|
29 /* Used when an unrecoverable error is found */
|
|
30 #define RV_TRACE_LEVEL_WARNING (2) /* Warning condition trace messages. */
|
|
31 /* Used when an error is found but is handled properly by the code*/
|
|
32 #define RV_TRACE_LEVEL_DEBUG_HIGH (3) /* Debug messages (high debugging). */
|
|
33 /* high = important debug message */
|
|
34 #define RV_TRACE_LEVEL_DEBUG_MEDIUM (4) /* Debug messages. */
|
|
35 #define RV_TRACE_LEVEL_DEBUG_LOW (5) /* Debug messages (low debugging). */
|
|
36 /* low = not important debug message */
|
|
37
|
|
38 /* temporary definition of this old flag for backward compatibility */
|
|
39 #define TRACE_RVTEST (0x001E0004)
|
|
40
|
|
41 #endif /* _RV_GENERAL_H_*/
|