uan: (fixes #2007) Remove deprecation on SetRxThresholdDb

This commit is contained in:
Federico Guerra
2016-10-06 22:48:50 -07:00
parent 61a0ca13de
commit 104ce293ce
2 changed files with 1 additions and 2 deletions

View File

@@ -341,7 +341,6 @@ UanPhyDual::SetTxPowerDbPhy2 (double txpwr)
void
UanPhyDual::SetRxThresholdDb (double thresh)
{
NS_LOG_WARN ("SetRxThresholdDb is deprecated and has no effect. Look at PER Functor attribute");
m_phy1->SetRxThresholdDb (thresh);
m_phy2->SetRxThresholdDb (thresh);
}

View File

@@ -114,7 +114,7 @@ public:
virtual void SetReceiveErrorCallback (RxErrCallback cb);
virtual void SetRxGainDb (double gain);
virtual void SetTxPowerDb (double txpwr);
NS_DEPRECATED virtual void SetRxThresholdDb (double thresh);
virtual void SetRxThresholdDb (double thresh);
virtual void SetCcaThresholdDb (double thresh);
virtual double GetRxGainDb (void);
virtual double GetTxPowerDb (void);