diff --git a/CHANGES.html b/CHANGES.html index 078736aed..16969e4e8 100644 --- a/CHANGES.html +++ b/CHANGES.html @@ -61,7 +61,6 @@ us a note on ns-developers mailing list.

the stats module, enabling TracedValues emitting values of type ns3::Time to be handled by the framework. -

Changes to existing API:

@@ -74,6 +73,9 @@ us a note on ns-developers mailing list.

  • WifiPhy::CalculateTxDuration() and WifiPhy::GetPayloadDurationMicroSeconds () now take an additional frequency parameter.
  • +
  • The attribute 'Recievers' in class YansWifiPhy was misspelled, so + this has been corrected to 'Receivers'. +
  • Changes to build system:

    diff --git a/src/wifi/model/yans-wifi-phy.cc b/src/wifi/model/yans-wifi-phy.cc index 87b4ab56d..46153c02f 100644 --- a/src/wifi/model/yans-wifi-phy.cc +++ b/src/wifi/model/yans-wifi-phy.cc @@ -131,7 +131,7 @@ YansWifiPhy::GetTypeId (void) MakeUintegerAccessor (&YansWifiPhy::GetNumberOfTransmitAntennas, &YansWifiPhy::SetNumberOfTransmitAntennas), MakeUintegerChecker ()) - .AddAttribute ("Recievers", "The number of recievers.", + .AddAttribute ("Receivers", "The number of receivers.", UintegerValue (1), MakeUintegerAccessor (&YansWifiPhy::GetNumberOfReceiveAntennas, &YansWifiPhy::SetNumberOfReceiveAntennas), diff --git a/src/wifi/model/yans-wifi-phy.h b/src/wifi/model/yans-wifi-phy.h index 345487693..85422a03c 100644 --- a/src/wifi/model/yans-wifi-phy.h +++ b/src/wifi/model/yans-wifi-phy.h @@ -477,7 +477,7 @@ private: bool m_stbc; //!< Flag if STBC is used bool m_greenfield; //!< Flag if GreenField format is supported bool m_guardInterval; //!< Flag if short guard interval is used - bool m_channelBonding; //!< Flag if channel conding is used + bool m_channelBonding; //!< Flag if channel bonding is used /**