diff --git a/src/wifi/model/wifi-phy.cc b/src/wifi/model/wifi-phy.cc index fac810b03..1f4547091 100644 --- a/src/wifi/model/wifi-phy.cc +++ b/src/wifi/model/wifi-phy.cc @@ -1612,11 +1612,8 @@ WifiPhy::StartReceivePreamble (Ptr ppdu, RxPowerWattPerChannelBand& rx { //TODO find a fallback PHY for receiving the PPDU (e.g. 11a for 11ax due to preamble structure) NS_LOG_DEBUG ("Unsupported modulation received (" << modulation << "), consider as noise"); - if (ppdu->GetTxDuration () > m_state->GetDelayUntilIdle ()) - { - m_interference.Add (ppdu, ppdu->GetTxVector (), rxDuration, rxPowersW); - SwitchMaybeToCcaBusy (GetMeasurementChannelWidth (nullptr)); - } + m_interference.Add (ppdu, ppdu->GetTxVector (), rxDuration, rxPowersW); + SwitchMaybeToCcaBusy (GetMeasurementChannelWidth (nullptr)); } }