mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-10 15:39:38 +00:00
17d1637977
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
66 lines
1.9 KiB
C
Executable file
66 lines
1.9 KiB
C
Executable file
/******************************************************************************
|
|
*
|
|
* Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of version 2 of the GNU General Public License as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
|
|
*
|
|
*
|
|
******************************************************************************/
|
|
|
|
//============================================================
|
|
// include files
|
|
//============================================================
|
|
|
|
#include "odm_precomp.h"
|
|
|
|
void
|
|
ODM_InitDebugSetting(
|
|
IN PDM_ODM_T pDM_Odm
|
|
)
|
|
{
|
|
pDM_Odm->DebugLevel = ODM_DBG_TRACE;
|
|
|
|
pDM_Odm->DebugComponents =
|
|
\
|
|
#if DBG
|
|
//BB Functions
|
|
// ODM_COMP_DIG |
|
|
// ODM_COMP_RA_MASK |
|
|
// ODM_COMP_DYNAMIC_TXPWR |
|
|
// ODM_COMP_FA_CNT |
|
|
// ODM_COMP_RSSI_MONITOR |
|
|
// ODM_COMP_CCK_PD |
|
|
// ODM_COMP_ANT_DIV |
|
|
// ODM_COMP_PWR_SAVE |
|
|
// ODM_COMP_PWR_TRAIN |
|
|
// ODM_COMP_RATE_ADAPTIVE |
|
|
// ODM_COMP_PATH_DIV |
|
|
// ODM_COMP_DYNAMIC_PRICCA |
|
|
// ODM_COMP_RXHP |
|
|
|
|
//MAC Functions
|
|
// ODM_COMP_EDCA_TURBO |
|
|
// ODM_COMP_EARLY_MODE |
|
|
//RF Functions
|
|
// ODM_COMP_TX_PWR_TRACK |
|
|
// ODM_COMP_RX_GAIN_TRACK |
|
|
// ODM_COMP_CALIBRATION |
|
|
//Common
|
|
// ODM_COMP_COMMON |
|
|
// ODM_COMP_INIT |
|
|
#endif
|
|
0;
|
|
}
|
|
|
|
|