1 /*
2 * connDebug.c
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 reportReplvl.c
35 * \brief Report level implementation
36 *
37 * \see reportReplvl.h
38 */
39
40 /***************************************************************************/
41 /* */
42 /* MODULE: reportReplvl.c */
43 /* PURPOSE: Report level implementation */
44 /* */
45 /***************************************************************************/
46 #include "tidef.h"
47 #include "osApi.h"
48 #include "paramOut.h"
49 #include "connDebug.h"
50 #include "conn.h"
51 #include "connApi.h"
52 #include "report.h"
53
54 #ifdef REPORT_LOG
55 void printConnDbgFunctions(void);
56 #endif
57
connDebugSetParam(TI_HANDLE hConn,TI_UINT32 paramType,TI_UINT32 * value)58 void connDebugSetParam(TI_HANDLE hConn, TI_UINT32 paramType, TI_UINT32 *value)
59 {
60 #ifdef REPORT_LOG
61 conn_t *pConn = (conn_t *)hConn;
62
63 switch (paramType)
64 {
65 default:
66 WLAN_OS_REPORT(("Invalid param type in Set Debug Connection command: %d, curr state %d\n\n", value, pConn->state));
67 break;
68 }
69 #endif
70 }
71
connDebugGetParam(TI_HANDLE hConn,TI_UINT32 paramType,TI_UINT32 * value)72 void connDebugGetParam(TI_HANDLE hConn, TI_UINT32 paramType, TI_UINT32 *value)
73 {
74 #ifdef REPORT_LOG
75 conn_t *pConn = (conn_t *)hConn;
76
77 switch (paramType)
78 {
79 default:
80 WLAN_OS_REPORT(("Invalid param type in Get Debug Connection command: %d, curr state %d\n\n", value, pConn->state));
81 break;
82 }
83 #endif
84 }
85
connDebugFunction(TI_HANDLE hConn,TI_UINT32 funcType,void * pParam)86 void connDebugFunction(TI_HANDLE hConn,
87 TI_UINT32 funcType,
88 void *pParam)
89 {
90 #ifdef REPORT_LOG
91 conn_t *pConn = (conn_t *)hConn;
92
93 switch (funcType)
94 {
95 case CONN_PRINT_TEST_FUNCTIONS:
96 printConnDbgFunctions();
97 break;
98
99 case CONN_PRINT_TEST:
100 WLAN_OS_REPORT(("Connection Print Test, param = %d , curr state %d\n\n", *((TI_UINT32 *)pParam), pConn->state));
101 break;
102
103 default:
104 WLAN_OS_REPORT(("Invalid function type in Debug Connection Function Command: %d\n\n", funcType));
105 break;
106 }
107 #endif
108 }
109
printConnDbgFunctions(void)110 void printConnDbgFunctions(void)
111 {
112 #ifdef REPORT_LOG
113 WLAN_OS_REPORT((" Conn Dbg Functions \n"));
114 WLAN_OS_REPORT(("----------------------\n"));
115
116 WLAN_OS_REPORT(("601 - Connection Print Test.\n"));
117 #endif
118 }
119