• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * measurementSrvDbgPrint.h
3  *
4  * Copyright(c) 1998 - 2009 Texas Instruments. All rights reserved.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  *  * Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  *  * Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  *  * Neither the name Texas Instruments nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 /** \file MeasurementSrv.h
35  *  \brief This file include definitions for the measurmeent SRV module debug print functions.
36  *  \author Ronen Kalish
37  *  \date 23-december-2005
38  */
39 
40 #ifndef __MEASUREMENT_SRV__SBG_PRINT_H__
41 #define __MEASUREMENT_SRV__SBG_PRINT_H__
42 
43 /*
44  ***********************************************************************
45  *	Constant definitions.
46  ***********************************************************************
47  */
48 
49 /*
50  ***********************************************************************
51  *	Enums.
52  ***********************************************************************
53  */
54 
55 /*
56  ***********************************************************************
57  *	Typedefs.
58  ***********************************************************************
59  */
60 
61 /*
62  ***********************************************************************
63  *	Structure definitions.
64  ***********************************************************************
65  */
66 
67 /*
68  ***********************************************************************
69  *	External data definitions.
70  ***********************************************************************
71  */
72 
73 /*
74  ***********************************************************************
75  *	External functions definitions
76  ***********************************************************************
77  */
78 /**
79  * \author Ronen Kalish\n
80  * \date 23-December-2005\n
81  * \brief Prints a measurement request.\n
82  *
83  * Function Scope \e Public.\n
84  * \param hMeasurementSRV - handle to the measurement SRV object.\n
85  * \param pMsrRequest - the measurement request.\n
86  */
87 void measurementSRVPrintRequest( TI_HANDLE hMeasurementSRV, TMeasurementRequest *pMsrRequest );
88 
89 /**
90  * \author Ronen Kalish\n
91  * \date 23-December-2005\n
92  * \brief Prints a measurement type request.\n
93  *
94  * Function Scope \e Public.\n
95  * \param hMeasurementSRV - handle to the measurement SRV object.\n
96  * \param pMsrTypeRequest - the measurement type request.\n
97  */
98 void measurementSRVPrintTypeRequest( TI_HANDLE hMeasurementSRV, TMeasurementTypeRequest* pMsrTypeRequest );
99 
100 #endif /* __MEASUREMENT_SRV__SBG_PRINT_H__ */
101 
102