56 lines
1.6 KiB
C
56 lines
1.6 KiB
C
/******************************************************************************
|
|
*
|
|
* Copyright(c) 2007 - 2017 Realtek Corporation.
|
|
*
|
|
* 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.
|
|
*
|
|
*****************************************************************************/
|
|
|
|
/* ************************************************************
|
|
* include files
|
|
* ************************************************************ */
|
|
|
|
#include "mp_precomp.h"
|
|
|
|
#include "../phydm_precomp.h"
|
|
|
|
#if (RTL8188E_SUPPORT == 1)
|
|
|
|
void
|
|
odm_dig_lower_bound_88e(
|
|
struct dm_struct *dm
|
|
)
|
|
{
|
|
struct phydm_dig_struct *dig_t = &dm->dm_dig_table;
|
|
|
|
if (dm->ant_div_type == CG_TRX_HW_ANTDIV) {
|
|
dig_t->rx_gain_range_min = (u8) dig_t->ant_div_rssi_max;
|
|
PHYDM_DBG(dm, DBG_ANT_DIV, "odm_dig_lower_bound_88e(): dig_t->ant_div_rssi_max=%d\n", dig_t->ant_div_rssi_max);
|
|
}
|
|
/* If only one Entry connected */
|
|
}
|
|
|
|
/*=============================================================
|
|
* AntDiv Before Link
|
|
===============================================================*/
|
|
void
|
|
odm_sw_ant_div_reset_before_link(
|
|
struct dm_struct *dm
|
|
)
|
|
{
|
|
|
|
struct sw_antenna_switch *dm_swat_table = &dm->dm_swat_table;
|
|
|
|
dm_swat_table->swas_no_link_state = 0;
|
|
|
|
}
|
|
|
|
#endif
|