A Discrete-Event Network Simulator
API
ht-capabilities.h
Go to the documentation of this file.
1 /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2013
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Authors: Ghada Badawy <gbadawy@gmail.com>
19  * Sébastien Deronne <sebastien.deronne@gmail.com>
20  */
21 
22 #ifndef HT_CAPABILITIES_H
23 #define HT_CAPABILITIES_H
24 
26 
31 #define MAX_SUPPORTED_MCS (77)
32 
33 namespace ns3 {
34 
44 {
45 public:
46  HtCapabilities ();
52  void SetHtSupported (uint8_t htsupported);
53 
59  void SetHtCapabilitiesInfo (uint16_t ctrl);
65  void SetAmpduParameters (uint8_t ctrl);
72  void SetSupportedMcsSet (uint64_t ctrl1, uint64_t ctrl2);
78  void SetExtendedHtCapabilities (uint16_t ctrl);
84  void SetTxBfCapabilities (uint32_t ctrl);
90  void SetAntennaSelectionCapabilities (uint8_t ctrl);
91 
97  void SetLdpc (uint8_t ldpc);
103  void SetSupportedChannelWidth (uint8_t supportedchannelwidth);
109  void SetGreenfield (uint8_t greenfield);
115  void SetShortGuardInterval20 (uint8_t shortguardinterval);
121  void SetShortGuardInterval40 (uint8_t shortguardinterval);
127  void SetMaxAmsduLength (uint16_t maxamsdulength);
133  void SetLSigProtectionSupport (uint8_t lsigprotection);
134 
140  void SetMaxAmpduLength (uint32_t maxampdulength);
141 
147  void SetRxMcsBitmask (uint8_t index);
153  void SetRxHighestSupportedDataRate (uint16_t maxsupportedrate);
159  void SetTxMcsSetDefined (uint8_t txmcssetdefined);
165  void SetTxRxMcsSetUnequal (uint8_t txrxmcssetunequal);
171  void SetTxMaxNSpatialStreams (uint8_t maxtxspatialstreams);
177  void SetTxUnequalModulation (uint8_t txunequalmodulation);
178 
184  uint16_t GetHtCapabilitiesInfo (void) const;
190  uint8_t GetAmpduParameters (void) const;
196  uint64_t GetSupportedMcsSet1 (void) const;
202  uint64_t GetSupportedMcsSet2 (void) const;
208  uint16_t GetExtendedHtCapabilities (void) const;
214  uint32_t GetTxBfCapabilities (void) const;
220  uint8_t GetAntennaSelectionCapabilities (void) const;
221 
227  uint8_t GetLdpc (void) const;
233  uint8_t GetSupportedChannelWidth (void) const;
239  uint8_t GetGreenfield (void) const;
245  uint8_t GetShortGuardInterval20 (void) const;
251  uint16_t GetMaxAmsduLength (void) const;
257  uint32_t GetMaxAmpduLength (void) const;
265  bool IsSupportedMcs (uint8_t mcs) const;
271  uint8_t GetRxHighestSupportedAntennas (void) const;
272 
284  uint8_t GetInformationFieldSize () const;
300  uint8_t length);
318  uint16_t GetSerializedSize () const;
319 
320 
321 private:
322  //HT Capabilities Info field
323  uint8_t m_ldpc;
325  uint8_t m_smPowerSave;
326  uint8_t m_greenField;
329  uint8_t m_txStbc;
330  uint8_t m_rxStbc;
333  uint8_t m_dssMode40;
334  uint8_t m_psmpSupport;
337 
338  //A-MPDU Parameters field
341  uint8_t m_ampduReserved;
342 
343  //Supported MCS Set field
351  uint32_t m_reservedMcsSet3;
353 
354  //HT Extended Capabilities field
355  uint8_t m_pco;
358  uint8_t m_mcsFeedback;
359  uint8_t m_htcSupport;
362 
363  //Transmit Beamforming Capabilities field
367  uint8_t m_rxNdpCapable;
368  uint8_t m_txNdpCapable;
370  uint8_t m_calibration;
383  uint8_t m_reservedTxBf;
384 
385  //ASEL Capabilities field
391  uint8_t m_rxASelCapable;
393  uint8_t m_reservedASel;
394 
396  uint8_t m_htSupported;
397 };
398 
399 std::ostream &operator << (std::ostream &os, const HtCapabilities &htcapabilities);
400 
401 } //namespace ns3
402 
403 #endif /* HT_CAPABILITY_H */
uint8_t m_psmpSupport
PSMP support.
uint8_t m_rxMcsBitmask[MAX_SUPPORTED_MCS]
receive MCS bitmask
uint8_t GetGreenfield(void) const
Return the green field.
uint8_t m_dssMode40
DSS mode 40.
uint32_t GetTxBfCapabilities(void) const
Return the Transmit Beamforming (TxBF) Capabilities field in the HT Capabilities information element...
Buffer::Iterator Serialize(Buffer::Iterator start) const
This information element is a bit special in that it is only included if the STA is an HT STA...
uint8_t m_reservedTxBf
reserved transmit BF
uint8_t m_mcsFeedback
MCS feedback.
void SetTxMcsSetDefined(uint8_t txmcssetdefined)
Set the transmit MCS set defined.
uint8_t m_rxStaggeredSoundingCapable
receive staggered sounding capable
uint32_t m_reservedMcsSet3
reserved MCS set 3
void SetGreenfield(uint8_t greenfield)
Set the green field.
void SetTxBfCapabilities(uint32_t ctrl)
Set the Transmit Beamforming (TxBF) Capabilities field in the HT Capabilities information element...
uint8_t m_explicitNoncompressedSteeringCapable
explicit non compressed steeering capable
uint8_t m_supportedChannelWidth
supported channel width
#define MAX_SUPPORTED_MCS
This defines the maximum number of supported MCSs that a STA is allowed to have.
uint8_t m_antennaIndicesFeedbackCapable
antenna indices feedback capable
void SetHtSupported(uint8_t htsupported)
Set the HT supported field.
uint64_t GetSupportedMcsSet2(void) const
Return the last 64 bytes of the Supported MCS Set field in the HT Capabilities information element...
WifiInformationElementId ElementId() const
Return the element ID.
uint8_t m_reservedExtendedCapabilities2
reserver extended capabilities 2
void SetRxMcsBitmask(uint8_t index)
Set the receive MCS bitmask.
def start()
Definition: core.py:1858
The HT Capabilities Information ElementThis class knows how to serialise and deserialise the HT Capab...
uint8_t GetAntennaSelectionCapabilities(void) const
Return the Antenna Selection (ASEL) Capabilities field in the HT Capabilities information element...
uint8_t GetSupportedChannelWidth(void) const
Return the supported channel width.
uint8_t m_shortGuardInterval40
short guard interval 40
void SetAmpduParameters(uint8_t ctrl)
Set the A-MPDU Parameters field in the HT Capabilities information element.
uint8_t m_txSoundingPpdusCapable
sounding PPDUS capable
uint8_t m_fortyMhzIntolerant
40 Mhz intolerant
iterator in a Buffer instance
Definition: buffer.h:98
uint8_t m_txMcsSetDefined
transmit MCS set defined
uint8_t m_rxNdpCapable
receive NDP capable
void SetLSigProtectionSupport(uint8_t lsigprotection)
Set the LSIG protection support.
Information element, as defined in 802.11-2007 standardThe IEEE 802.11 standard includes the notion o...
uint8_t m_txStbc
transmit STBC
uint8_t GetRxHighestSupportedAntennas(void) const
Return the receive highest supported antennas.
uint8_t m_txStaggeredSoundingCapable
transmit staggered soundign capable
bool IsSupportedMcs(uint8_t mcs) const
Return the is MCS supported flag.
void SetShortGuardInterval20(uint8_t shortguardinterval)
Set the short guard interval 20 field.
uint8_t GetLdpc(void) const
Return LDPC.
uint8_t GetAmpduParameters(void) const
Return the A-MPDU Parameters field in the HT Capabilities information element.
uint8_t m_txMaxNSpatialStreams
transmit maximum number spatial streams
uint8_t m_csiNBfAntennasSupported
CSI NBF antenna supported.
void SetMaxAmpduLength(uint32_t maxampdulength)
Set the maximum AMPDU length.
uint8_t m_htSupported
This is used to decide whether this element should be added to the frame or not.
uint16_t m_rxHighestSupportedDataRate
receive highest supported data rate
uint8_t m_implicitTxBfCapable
implicit transmit BF capable
uint8_t m_greenField
green field
uint8_t m_antennaSelectionCapability
antenna selection capability
uint8_t m_reservedMcsSet1
reserved MCS set 1
uint8_t m_reservedMcsSet2
reserved MCS set 2
void SetMaxAmsduLength(uint16_t maxamsdulength)
Set the maximum AMSDU length.
uint8_t m_channelEstimationCapability
channel estimation capability
uint8_t m_reservedASel
reserved a sel
uint8_t m_htDelayedBlockAck
HT delayed block ack.
void SerializeInformationField(Buffer::Iterator start) const
Serialize the information field.
std::ostream & operator<<(std::ostream &os, const Angles &a)
print a struct Angles to output
Definition: angles.cc:42
void SetRxHighestSupportedDataRate(uint16_t maxsupportedrate)
Set the receive highest supported data rate.
uint8_t m_smPowerSave
SM power save.
uint16_t GetSerializedSize() const
Return the serialized size of this HT capability information element.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
uint8_t m_implicitRxBfCapable
implicit receive BF capable
uint8_t m_explicitCompressedBfFeedbackCapable
explicit compressed BF feedback capable
uint8_t m_maxAmsduLength
maximum AMSDU length
uint8_t m_ampduReserved
AMPDU reserved.
uint8_t m_htcSupport
HTS support.
uint8_t m_txRxMcsSetUnequal
transmit / receive MCS set unequal
uint8_t m_rxASelCapable
receive a sel capable
void SetTxUnequalModulation(uint8_t txunequalmodulation)
Set the transmit unequal modulation.
void SetSupportedMcsSet(uint64_t ctrl1, uint64_t ctrl2)
Set the Supported MCS Set field in the HT Capabilities information element.
uint16_t GetMaxAmsduLength(void) const
Return the maximum A-MSDU length.
void SetExtendedHtCapabilities(uint16_t ctrl)
Set the Extended HT Capabilities field in the HT Capabilities information element.
void SetAntennaSelectionCapabilities(uint8_t ctrl)
Set the the Antenna Selection (ASEL) Capabilities field in the HT Capabilities information element...
void SetHtCapabilitiesInfo(uint16_t ctrl)
Set the HT Capabilities Info field in the HT Capabilities information element.
uint8_t m_rxStbc
receive STBC
uint64_t GetSupportedMcsSet1(void) const
Return the first 64 bytes of the Supported MCS Set field in the HT Capabilities information element...
uint32_t GetMaxAmpduLength(void) const
Return the maximum A-MPDU length.
uint8_t m_noncompressedSteeringNBfAntennasSupported
non compressed steering NBF antenna supported
uint8_t m_explicitCsiTxBfCapable
explicit CSI transmit BF capable
uint8_t m_compressedSteeringNBfAntennasSupported
compressed steering NBF antenna supported
uint8_t m_explicitCsiFeedbackBasedTxASelCapable
explicit CSI feedback based transmit a sel capable
uint8_t m_minMpduStartSpace
minimum MPDU start space
uint8_t m_explicitCsiFeedbackCapable
explicit CSI feedback capable
uint8_t m_maxAmpduLengthExponent
maximum AMPDU length
uint8_t GetShortGuardInterval20(void) const
Return the short guard interval 20 value.
uint8_t m_ldpc
LDPC.
void SetLdpc(uint8_t ldpc)
Set the LDPC field.
void SetTxRxMcsSetUnequal(uint8_t txrxmcssetunequal)
Set the transmit / receive MCS set unequal.
uint8_t m_csiMaxNRowsBfSupported
CSI maximum number rows BF supported.
uint8_t m_pcoTransitionTime
PCO trnsition time.
uint8_t m_txUnequalModulation
transmit unequal modulation
uint8_t GetInformationFieldSize() const
Return the information field size.
uint8_t m_explicitTxBfCsiFeedback
explicit transmit BF CSI feedback
uint8_t m_minimalGrouping
minimal grouping
uint8_t WifiInformationElementId
This type is used to represent an Information Element ID.
void SetTxMaxNSpatialStreams(uint8_t maxtxspatialstreams)
Set the transmit maximum N spatial streams.
uint8_t DeserializeInformationField(Buffer::Iterator start, uint8_t length)
Return the information field.
uint8_t m_shortGuardInterval20
short guard interval 20
uint8_t m_txNdpCapable
transmit NDP capable
uint8_t m_reservedExtendedCapabilities
reserved extended capabilities
void SetShortGuardInterval40(uint8_t shortguardinterval)
Set the short guard interval 40 field.
uint16_t GetHtCapabilitiesInfo(void) const
Return the HT Capabilities Info field in the HT Capabilities information element. ...
uint16_t GetExtendedHtCapabilities(void) const
Return the Extended HT Capabilities field in the HT Capabilities information element.
uint8_t m_lsigProtectionSupport
LSIG protection support.
void SetSupportedChannelWidth(uint8_t supportedchannelwidth)
Set the supported channel width field.
uint8_t m_calibration
calibration
uint8_t m_reverzeDirectionResponder
reverse direction responder
uint8_t m_explicitNoncompressedBfFeedbackCapable
eplicit non complressed BF feedback capable
uint8_t m_explicitCompressedSteeringCapable
explicit compressed steeering capable
uint8_t m_antennaIndicesFeedbackBasedTxASelCapable
antenna indices feedback absed transmit a sel capable