comparison nuc-fw/riviera/rvf/rvf_trace_adapt.c @ 120:e7d4ec9c4c32

All of RVF compiles
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Thu, 31 Oct 2013 00:17:12 +0000
parents 21de8d8e6ea7
children
comparison
equal deleted inserted replaced
119:dd56546ad9e0 120:e7d4ec9c4c32
14 /* Author Pascal Puel (p-puel@tif.ti.com) */ 14 /* Author Pascal Puel (p-puel@tif.ti.com) */
15 /* */ 15 /* */
16 /* (C) Copyright 1999 by Texas Instruments Incorporated, All Rights Reserved*/ 16 /* (C) Copyright 1999 by Texas Instruments Incorporated, All Rights Reserved*/
17 /****************************************************************************/ 17 /****************************************************************************/
18 18
19 #include "../../include/config.h"
19 20
20 #ifndef _WINDOWS 21 #include "../rv/general.h"
21 #include "config/rv.cfg" 22 #include "../rv/rv.h"
22 #include "config/trace.cfg" 23 #include "../rv/rv_general.h"
23 #endif 24 #include "rvf_api.h"
24 25
25 #include "rv/general.h" 26 #include "../rvt/rvt_gen.h"
26 #include "rv/rv.h"
27 #include "rv/rv_general.h"
28 #include "rvf/rvf_api.h"
29 27
30 #include "rvt/rvt_gen.h" 28 #include "../rvm/rvm_use_id_list.h"
31
32 #include "rvm/rvm_use_id_list.h"
33 29
34 #include <string.h> 30 #include <string.h>
35 31
36 /* DAR files used to redirect trace to DAR entity */ 32 /* DAR files used to redirect trace to DAR entity */
37 //#ifdef RVM_DAR_SWE 33 //#ifdef RVM_DAR_SWE
41 // #include "dar_diagnose_i.h" 37 // #include "dar_diagnose_i.h"
42 38
43 /* Define a pointer to the DAR Global Environment Control block */ 39 /* Define a pointer to the DAR Global Environment Control block */
44 // extern T_DAR_ENV_CTRL_BLK *dar_gbl_var_p; 40 // extern T_DAR_ENV_CTRL_BLK *dar_gbl_var_p;
45 //#endif 41 //#endif
42
43 /*
44 * FreeCalypso: the configuration we've got with the Sotomodem semi-src
45 * has this in g23m/__out__/gsm_<blah>/config/trace.cfg:
46 */
47
48 #define LAYER_DBG 0xFFFFFFFF
49 #define TRACE_LEVEL_FILTER 5
50
51 /*
52 * The above configuration corresponds to all trace output
53 * being enabled by default.
54 */
46 55
47 UINT8 rvf_trace_level = TRACE_LEVEL_FILTER; 56 UINT8 rvf_trace_level = TRACE_LEVEL_FILTER;
48 UINT32 rvf_layer_mask = LAYER_DBG; 57 UINT32 rvf_layer_mask = LAYER_DBG;
49 58
50 /* Decimal to hexadecimal conversion table */ 59 /* Decimal to hexadecimal conversion table */