A Discrete-Event Network Simulator
API
ht-capabilities.cc
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@rim.com>
19  * Sébastien Deronne <sebastien.deronne@gmail.com>
20  */
21 
22 #include "ht-capabilities.h"
23 #include "ns3/assert.h"
24 #include "ns3/log.h"
25 
26 namespace ns3 {
27 
28 NS_LOG_COMPONENT_DEFINE ("HtCapabilities");
29 
31  : m_ldpc (0),
32  m_supportedChannelWidth (0),
33  m_smPowerSave (0),
34  m_greenField (0),
35  m_shortGuardInterval20 (0),
36  m_shortGuardInterval40 (0),
37  m_txStbc (0),
38  m_rxStbc (0),
39  m_htDelayedBlockAck (0),
40  m_maxAmsduLength (0),
41  m_dssMode40 (0),
42  m_psmpSupport (0),
43  m_fortyMhzIntolerant (0),
44  m_lsigProtectionSupport (0),
45  m_maxAmpduLength (0),
46  m_minMpduStartSpace (0),
47  m_ampduReserved (0),
48  m_reservedMcsSet1 (0),
49  m_rxHighestSupportedDataRate (0),
50  m_reservedMcsSet2 (0),
51  m_txMcsSetDefined (0),
52  m_txRxMcsSetUnequal (0),
53  m_txMaxNSpatialStreams (0),
54  m_txUnequalModulation (0),
55  m_reservedMcsSet3 (0),
56  m_pco (0),
57  m_pcoTransitionTime (0),
58  m_reservedExtendedCapabilities (0),
59  m_mcsFeedback (0),
60  m_htcSupport (0),
61  m_reverzeDirectionResponder (0),
62  m_reservedExtendedCapabilities2 (0),
63  m_implicitRxBfCapable (0),
64  m_rxStaggeredSoundingCapable (0),
65  m_txStaggeredSoundingCapable (0),
66  m_rxNdpCapable (0),
67  m_txNdpCapable (0),
68  m_implicitTxBfCapable (0),
69  m_calibration (0),
70  m_explicitCsiTxBfCapable (0),
71  m_explicitNoncompressedSteeringCapable (0),
72  m_explicitCompressedSteeringCapable (0),
73  m_explicitTxBfCsiFeedback (0),
74  m_explicitNoncompressedBfFeedbackCapable (0),
75  m_explicitCompressedBfFeedbackCapable (0),
76  m_minimalGrouping (0),
77  m_csiNBfAntennasSupported (0),
78  m_noncompressedSteeringNBfAntennasSupported (0),
79  m_compressedSteeringNBfAntennasSupported (0),
80  m_csiMaxNRowsBfSupported (0),
81  m_channelEstimationCapability (0),
82  m_reservedTxBf (0),
83  m_antennaSelectionCapability (0),
84  m_explicitCsiFeedbackBasedTxASelCapable (0),
85  m_antennaIndicesFeedbackBasedTxASelCapable (0),
86  m_explicitCsiFeedbackCapable (0),
87  m_antennaIndicesFeedbackCapable (0),
88  m_rxASelCapable (0),
89  m_txSoundingPpdusCapable (0),
90  m_reservedASel (0),
91  m_htSupported (0)
92 {
93  for (uint32_t k = 0; k < MAX_SUPPORTED_MCS; k++)
94  {
95  m_rxMcsBitmask[k] = 0;
96  }
97 }
98 
101 {
102  return IE_HT_CAPABILITIES;
103 }
104 
105 void
106 HtCapabilities::SetHtSupported (uint8_t htsupported)
107 {
108  m_htSupported = htsupported;
109 }
110 
111 void
113 {
114  m_ldpc = ldpc;
115 }
116 
117 void
118 HtCapabilities::SetSupportedChannelWidth (uint8_t supportedchannelwidth)
119 {
120  m_supportedChannelWidth = supportedchannelwidth;
121 }
122 
123 void
124 HtCapabilities::SetGreenfield (uint8_t greenfield)
125 {
126  m_greenField = greenfield;
127 }
128 
129 void
130 HtCapabilities::SetShortGuardInterval20 (uint8_t shortguardinterval)
131 {
132  m_shortGuardInterval20 = shortguardinterval;
133 }
134 
135 void
136 HtCapabilities::SetShortGuardInterval40 (uint8_t shortguardinterval)
137 {
138  m_shortGuardInterval40 = shortguardinterval;
139 }
140 
141 void
142 HtCapabilities::SetMaxAmsduLength (uint8_t maxamsdulength)
143 {
144  m_maxAmsduLength = maxamsdulength;
145 }
146 
147 void
149 {
150  m_lsigProtectionSupport = lsigprotection;
151 }
152 
153 void
154 HtCapabilities::SetMaxAmpduLength (uint8_t maxampdulength)
155 {
156  m_maxAmpduLength = maxampdulength;
157 }
158 
159 void
161 {
162  m_rxMcsBitmask[index] = 1;
163 }
164 
165 void
167 {
168  m_rxHighestSupportedDataRate = maxsupportedrate;
169 }
170 
171 void
172 HtCapabilities::SetTxMcsSetDefined (uint8_t txmcssetdefined)
173 {
174  m_txMcsSetDefined = txmcssetdefined;
175 }
176 
177 void
178 HtCapabilities::SetTxMaxNSpatialStreams (uint8_t maxtxspatialstreams)
179 {
180  m_txMaxNSpatialStreams = maxtxspatialstreams;
181 }
182 
183 uint8_t
185 {
186  return m_ldpc;
187 }
188 
189 uint8_t
191 {
193 }
194 
195 uint8_t
197 {
198  return m_greenField;
199 }
200 
201 uint8_t
203 {
204  return m_shortGuardInterval20;
205 }
206 
207 uint8_t
209 {
210  return m_shortGuardInterval40;
211 }
212 
213 uint8_t
215 {
216  return m_maxAmsduLength;
217 }
218 
219 uint8_t
221 {
223 }
224 
225 uint8_t
227 {
228  return m_maxAmpduLength;
229 }
230 
231 uint8_t*
233 {
234  uint8_t* p;
235  p = m_rxMcsBitmask;
236  return p;
237 }
238 
239 bool
241 {
242  if (m_rxMcsBitmask[mcs] == 1)
243  {
244  return true;
245  }
246  return false;
247 }
248 
249 uint16_t
251 {
253 }
254 
255 uint8_t
257 {
258  return m_txMcsSetDefined;
259 }
260 
261 uint8_t
263 {
264  return m_txMaxNSpatialStreams;
265 }
266 
267 uint8_t
269 {
270  //we should not be here if ht is not supported
271  NS_ASSERT (m_htSupported > 0);
272  return 26;
273 }
274 
277 {
278  if (m_htSupported < 1)
279  {
280  return i;
281  }
283 }
284 
285 uint16_t
287 {
288  if (m_htSupported < 1)
289  {
290  return 0;
291  }
293 }
294 
295 uint16_t
297 {
298  uint16_t val = 0;
299  val |= m_ldpc & 0x01;
300  val |= (m_supportedChannelWidth & 0x01) << 1;
301  val |= (m_smPowerSave & 0x03) << 2;
302  val |= (m_greenField & 0x01) << 4;
303  val |= (m_shortGuardInterval20 & 0x01) << 5;
304  val |= (m_shortGuardInterval40 & 0x01) << 6;
305  val |= (m_txStbc & 0x01) << 7;
306  val |= (m_rxStbc & 0x03) << 8;
307  val |= (m_htDelayedBlockAck & 0x01) << 10;
308  val |= (m_maxAmsduLength & 0x01) << 11;
309  val |= (m_dssMode40 & 0x01) << 12;
310  val |= (m_psmpSupport & 0x01) << 13;
311  val |= (m_fortyMhzIntolerant & 0x01) << 14;
312  val |= (m_lsigProtectionSupport & 0x01) << 15;
313  return val;
314 }
315 
316 void
318 {
319  m_ldpc = ctrl & 0x01;
320  m_supportedChannelWidth = (ctrl >> 1) & 0x01;
321  m_smPowerSave = (ctrl >> 2) & 0x03;
322  m_greenField = (ctrl >> 4) & 0x01;
323  m_shortGuardInterval20 = (ctrl >> 5) & 0x01;
324  m_shortGuardInterval40 = (ctrl >> 6) & 0x01;
325  m_txStbc = (ctrl >> 7) & 0x01;
326  m_rxStbc = (ctrl >> 8) & 0x03;
327  m_htDelayedBlockAck = (ctrl >> 10) & 0x01;
328  m_maxAmsduLength = (ctrl >> 11) & 0x01;
329  m_dssMode40 = (ctrl >> 12) & 0x01;
330  m_psmpSupport = (ctrl >> 13) & 0x01;
331  m_fortyMhzIntolerant = (ctrl >> 14) & 0x01;
332  m_lsigProtectionSupport = (ctrl >> 15) & 0x01;
333 }
334 
335 void
337 {
338  m_maxAmpduLength = ctrl & 0x03;
339  m_minMpduStartSpace = (ctrl >> 2) & 0x1b;
340  m_ampduReserved = (ctrl >> 5) & 0xe0;
341 }
342 
343 uint8_t
345 {
346  uint8_t val = 0;
347  val |= m_maxAmpduLength & 0x03;
348  val |= (m_minMpduStartSpace & 0x1b) << 2;
349  val |= (m_ampduReserved & 0xe0) << 5;
350  return val;
351 }
352 
353 void
354 HtCapabilities::SetSupportedMcsSet (uint64_t ctrl1, uint64_t ctrl2)
355 {
356  for (uint64_t i = 0; i < 77; i++)
357  {
358  if (i < 64)
359  {
360  m_rxMcsBitmask[i] = (ctrl1 >> i) & 0x01;
361  }
362  else
363  {
364  m_rxMcsBitmask[i] = (ctrl2 >> (i - 64)) & 0x01;
365  }
366  }
367  m_reservedMcsSet1 = (ctrl2 >> 13) & 0x07;
368  m_rxHighestSupportedDataRate = (ctrl2 >> 16) & 0x03ff;
369  m_reservedMcsSet2 = (ctrl2 >> 26) & 0x3f;
370  m_txMcsSetDefined = (ctrl2 >> 32) & 0x01;
371  m_txRxMcsSetUnequal = (ctrl2 >> 33) & 0x01;
372  m_txMaxNSpatialStreams = (ctrl2 >> 34) & 0x03;
373  m_txUnequalModulation = (ctrl2 >> 36) & 0x01;
374  m_reservedMcsSet3 = (ctrl2 >> 37) & 0x07ffffff;
375 }
376 
377 uint64_t
379 {
380  uint64_t val = 0;
381  for (uint64_t i = 63; i > 0; i--)
382  {
383  val = (val << 1) | (m_rxMcsBitmask[i] & 0x01);
384  }
385  val = (val << 1) | (m_rxMcsBitmask[0] & 0x01);
386  return val;
387 }
388 
389 uint64_t
391 {
392  uint64_t val = 0;
393  val = val | (m_reservedMcsSet3 & 0x07ffffff);
394  val = (val << 1) | (m_txUnequalModulation & 0x01);
395  val = (val << 2) | (m_txMaxNSpatialStreams & 0x03);
396  val = (val << 1) | (m_txRxMcsSetUnequal & 0x01);
397  val = (val << 1) | (m_txMcsSetDefined & 0x01);
398  val = (val << 6) | (m_reservedMcsSet2 & 0x3f);
399  val = (val << 10) | (m_rxHighestSupportedDataRate & 0x3ff);
400  val = (val << 3) | (m_reservedMcsSet1 & 0x07);
401 
402  for (uint64_t i = 13; i > 0; i--)
403  {
404  val = (val << 1) | ( m_rxMcsBitmask[i + 63] & 0x01);
405  }
406  return val;
407 }
408 
409 uint16_t
411 {
412  uint16_t val = 0;
413  val |= m_pco & 0x01;
414  val |= (m_pcoTransitionTime & 0x03) << 1;
415  val |= (m_reservedExtendedCapabilities & 0x1f) << 3;
416  val |= (m_mcsFeedback & 0x03) << 8;
417  val |= (m_htcSupport & 0x01) << 10;
418  val |= (m_reverzeDirectionResponder & 0x01) << 11;
419  val |= (m_reservedExtendedCapabilities2 & 0x0f) << 12;
420  return val;
421 }
422 
423 void
425 {
426  m_pco = ctrl & 0x01;
427  m_pcoTransitionTime = (ctrl >> 1) & 0x03;
428  m_reservedExtendedCapabilities = (ctrl >> 3) & 0x1f;
429  m_mcsFeedback = (ctrl >> 8) & 0x03;
430  m_htcSupport = (ctrl >> 10) & 0x01;
431  m_reverzeDirectionResponder = (ctrl >> 11) & 0x01;
432  m_reservedExtendedCapabilities2 = (ctrl >> 12) & 0x0f;
433 }
434 
435 uint32_t
437 {
438  uint32_t val = 0;
439  val |= m_implicitRxBfCapable & 0x01;
440  val |= (m_rxStaggeredSoundingCapable & 0x01) << 1;
441  val |= (m_txStaggeredSoundingCapable & 0x01) << 2;
442  val |= (m_rxNdpCapable & 0x01) << 3;
443  val |= (m_txNdpCapable & 0x01) << 4;
444  val |= (m_implicitTxBfCapable & 0x01) << 5;
445  val |= (m_calibration & 0x03) << 6;
446  val |= (m_explicitCsiTxBfCapable & 0x01) << 8;
447  val |= (m_explicitNoncompressedSteeringCapable & 0x01) << 9;
448  val |= (m_explicitCompressedSteeringCapable & 0x01) << 10;
449  val |= (m_explicitTxBfCsiFeedback & 0x03) << 11;
450  val |= (m_explicitNoncompressedBfFeedbackCapable & 0x03) << 13;
451  val |= (m_explicitCompressedBfFeedbackCapable & 0x03) << 15;
452  val |= (m_minimalGrouping & 0x03) << 17;
453  val |= (m_csiNBfAntennasSupported & 0x03) << 19;
454  val |= (m_noncompressedSteeringNBfAntennasSupported & 0x03) << 21;
455  val |= (m_compressedSteeringNBfAntennasSupported & 0x03) << 23;
456  val |= (m_csiMaxNRowsBfSupported & 0x03) << 25;
457  val |= (m_channelEstimationCapability & 0x03) << 27;
458  val |= (m_reservedTxBf & 0x07) << 29;
459  return val;
460 }
461 
462 void
464 {
465  m_implicitRxBfCapable = ctrl & 0x01;
466  m_rxStaggeredSoundingCapable = (ctrl >> 1) & 0x01;
467  m_txStaggeredSoundingCapable = (ctrl >> 2) & 0x01;
468  m_rxNdpCapable = (ctrl >> 3) & 0x01;
469  m_txNdpCapable = (ctrl >> 4) & 0x01;
470  m_implicitTxBfCapable = (ctrl >> 5) & 0x01;
471  m_calibration = (ctrl >> 6) & 0x03;
472  m_explicitCsiTxBfCapable = (ctrl >> 8) & 0x01;
473  m_explicitNoncompressedSteeringCapable = (ctrl >> 9) & 0x01;
474  m_explicitCompressedSteeringCapable = (ctrl >> 10) & 0x01;
475  m_explicitTxBfCsiFeedback = (ctrl >> 11) & 0x03;
476  m_explicitNoncompressedBfFeedbackCapable = (ctrl >> 13) & 0x03;
477  m_explicitCompressedBfFeedbackCapable = (ctrl >> 15) & 0x03;
478  m_minimalGrouping = (ctrl >> 17) & 0x03;
479  m_csiNBfAntennasSupported = (ctrl >> 19) & 0x03;
480  m_noncompressedSteeringNBfAntennasSupported = (ctrl >> 21) & 0x03;
481  m_compressedSteeringNBfAntennasSupported = (ctrl >> 23) & 0x03;
482  m_csiMaxNRowsBfSupported = (ctrl >> 25) & 0x03;
483  m_channelEstimationCapability = (ctrl >> 27) & 0x03;
484  m_reservedTxBf = (ctrl >> 29) & 0x07;
485 }
486 
487 uint8_t
489 {
490  uint8_t val = 0;
491  val |= m_antennaSelectionCapability & 0x01;
492  val |= (m_explicitCsiFeedbackBasedTxASelCapable & 0x01) << 1;
493  val |= (m_antennaIndicesFeedbackBasedTxASelCapable & 0x01) << 2;
494  val |= (m_explicitCsiFeedbackCapable & 0x01) << 3;
495  val |= (m_antennaIndicesFeedbackCapable & 0x01) << 4;
496  val |= (m_rxASelCapable & 0x01) << 5;
497  val |= (m_txSoundingPpdusCapable & 0x01) << 6;
498  val |= (m_reservedASel & 0x01) << 7;
499  return val;
500 }
501 
502 void
504 {
505  m_antennaSelectionCapability = ctrl & 0x01;
506  m_explicitCsiFeedbackBasedTxASelCapable = (ctrl >> 1) & 0x01;
507  m_antennaIndicesFeedbackBasedTxASelCapable = (ctrl >> 2) & 0x01;
508  m_explicitCsiFeedbackCapable = (ctrl >> 3) & 0x01;
509  m_antennaIndicesFeedbackCapable = (ctrl >> 4) & 0x01;
510  m_rxASelCapable = (ctrl >> 5) & 0x01;
511  m_txSoundingPpdusCapable = (ctrl >> 6) & 0x01;
512  m_reservedASel = (ctrl >> 7) & 0x01;
513 }
514 
515 void
517 {
518  if (m_htSupported == 1)
519  {
520  //write the corresponding value for each bit
522  start.WriteU8 (GetAmpduParameters ());
526  start.WriteU32 (GetTxBfCapabilities ());
528  }
529 }
530 
531 uint8_t
533  uint8_t length)
534 {
536  uint16_t htinfo = i.ReadLsbtohU16 ();
537  uint8_t ampduparam = i.ReadU8 ();
538  uint64_t mcsset1 = i.ReadLsbtohU64 ();
539  uint64_t mcsset2 = i.ReadLsbtohU64 ();
540  uint16_t extendedcapabilities = i.ReadU16 ();
541  uint32_t txbfcapabilities = i.ReadU32 ();
542  uint8_t aselcapabilities = i.ReadU8 ();
543  SetHtCapabilitiesInfo (htinfo);
544  SetAmpduParameters (ampduparam);
545  SetSupportedMcsSet (mcsset1, mcsset2);
546  SetExtendedHtCapabilities (extendedcapabilities);
547  SetTxBfCapabilities (txbfcapabilities);
548  SetAntennaSelectionCapabilities (aselcapabilities);
549  return length;
550 }
551 
553 
554 std::ostream &
555 operator << (std::ostream &os, const HtCapabilities &htcapabilities)
556 {
557  os << bool (htcapabilities.GetLdpc ())
558  << "|" << bool (htcapabilities.GetSupportedChannelWidth ())
559  << "|" << bool (htcapabilities.GetGreenfield ())
560  << "|" << bool (htcapabilities.GetShortGuardInterval20 ());
561 
562  return os;
563 }
564 
565 std::istream &operator >> (std::istream &is, HtCapabilities &htcapabilities)
566 {
567  bool c1, c2, c3, c4;
568  is >> c1 >> c2 >> c3 >> c4;
569  htcapabilities.SetLdpc (c1);
570  htcapabilities.SetSupportedChannelWidth (c2);
571  htcapabilities.SetGreenfield (c3);
572  htcapabilities.SetShortGuardInterval20 (c4);
573 
574  return is;
575 }
576 
577 } //namespace ns3
uint16_t ReadU16(void)
Definition: buffer.h:1023
uint8_t GetMaxAmsduLength(void) const
uint8_t m_rxMcsBitmask[MAX_SUPPORTED_MCS]
std::istream & operator>>(std::istream &is, Angles &a)
initialize a struct Angles from input
Definition: angles.cc:48
void SetTxMcsSetDefined(uint8_t txmcssetdefined)
uint32_t ReadU32(void)
Definition: buffer.cc:972
uint8_t m_rxStaggeredSoundingCapable
uint8_t GetLSigProtectionSupport(void) const
void SetGreenfield(uint8_t greenfield)
void SetTxBfCapabilities(uint32_t ctrl)
Set the Transmit Beamforming (TxBF) Capabilties field in the HT Capabilities information element...
uint8_t m_explicitNoncompressedSteeringCapable
#define MAX_SUPPORTED_MCS
This defines the maximum number of supported MCSs that a STA is allowed to have.
uint8_t m_antennaIndicesFeedbackCapable
void SetHtSupported(uint8_t htsupported)
#define ATTRIBUTE_HELPER_CPP(type)
Define the attribute value, accessor and checkers for class type.
uint8_t m_reservedExtendedCapabilities2
uint64_t GetSupportedMcsSet2(void) const
void SetRxMcsBitmask(uint8_t index)
def start()
Definition: core.py:1482
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file...
Definition: assert.h:67
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:201
The HT Capabilities Information ElementThis class knows how to serialise and deserialise the HT Capab...
uint8_t GetSupportedChannelWidth(void) const
void SetAmpduParameters(uint8_t ctrl)
Set the A-MPDU Parameters field in the HT Capabilities information element.
uint8_t GetShortGuardInterval40(void) const
uint8_t m_txSoundingPpdusCapable
uint16_t GetSerializedSize() const
Get the size of the serialized IE including Element ID and length fields.
iterator in a Buffer instance
Definition: buffer.h:98
void SetLSigProtectionSupport(uint8_t lsigprotection)
#define IE_HT_CAPABILITIES
uint8_t m_txStaggeredSoundingCapable
void SetShortGuardInterval20(uint8_t shortguardinterval)
uint8_t GetGreenfield(void) const
uint8_t m_csiNBfAntennasSupported
uint64_t GetSupportedMcsSet1(void) const
uint16_t m_rxHighestSupportedDataRate
void WriteU16(uint16_t data)
Definition: buffer.cc:870
void SetMaxAmsduLength(uint8_t maxamsdulength)
uint8_t m_antennaSelectionCapability
uint32_t GetTxBfCapabilities(void) const
uint8_t GetShortGuardInterval20(void) const
void SetMaxAmpduLength(uint8_t maxampdulength)
bool IsSupportedMcs(uint8_t mcs)
uint16_t GetRxHighestSupportedDataRate(void) const
uint8_t m_channelEstimationCapability
uint8_t GetTxMaxNSpatialStreams(void) const
WifiInformationElementId ElementId() const
Own unique Element ID.
uint8_t GetTxMcsSetDefined(void) const
std::ostream & operator<<(std::ostream &os, const Angles &a)
print a struct Angles to output
Definition: angles.cc:42
void SetRxHighestSupportedDataRate(uint16_t maxsupportedrate)
Every class exported by the ns3 library is enclosed in the ns3 namespace.
uint8_t m_explicitCompressedBfFeedbackCapable
uint8_t GetAmpduParameters(void) const
void SerializeInformationField(Buffer::Iterator start) const
Serialize information (i.e., the body of the IE, not including the Element ID and length octets) ...
void SetSupportedMcsSet(uint64_t ctrl1, uint64_t ctrl2)
Set the Supported MCS Set field in the HT Capabilities information element.
void SetExtendedHtCapabilities(uint16_t ctrl)
Set the Extended HT Capabilties field in the HT Capabilities information element. ...
uint8_t GetInformationFieldSize() const
Length of serialized information (i.e., the length of the body of the IE, not including the Element I...
void SetAntennaSelectionCapabilities(uint8_t ctrl)
Set the the Antenna Selection (ASEL) Capabilties field in the HT Capabilities information element...
void WriteHtolsbU16(uint16_t data)
Definition: buffer.cc:910
uint8_t GetLdpc(void) const
void SetHtCapabilitiesInfo(uint16_t ctrl)
Set the HT Capabilties Info field in the HT Capabilities information element.
uint16_t GetHtCapabilitiesInfo(void) const
void WriteU8(uint8_t data)
Definition: buffer.h:863
uint8_t m_noncompressedSteeringNBfAntennasSupported
uint8_t m_explicitCsiTxBfCapable
void WriteHtolsbU64(uint64_t data)
Definition: buffer.cc:926
uint8_t m_compressedSteeringNBfAntennasSupported
uint8_t m_explicitCsiFeedbackBasedTxASelCapable
uint8_t m_explicitCsiFeedbackCapable
void SetLdpc(uint8_t ldpc)
uint8_t ReadU8(void)
Definition: buffer.h:1015
uint8_t m_csiMaxNRowsBfSupported
uint8_t * GetRxMcsBitmask()
uint16_t ReadLsbtohU16(void)
Definition: buffer.cc:1065
uint8_t m_explicitTxBfCsiFeedback
uint8_t WifiInformationElementId
This type is used to represent an Information Element ID.
void SetTxMaxNSpatialStreams(uint8_t maxtxspatialstreams)
uint8_t DeserializeInformationField(Buffer::Iterator start, uint8_t length)
Deserialize information (i.e., the body of the IE, not including the Element ID and length octets) ...
uint64_t ReadLsbtohU64(void)
Definition: buffer.cc:1093
uint16_t GetSerializedSize() const
Return the serialized size of this HT capability information element.
void WriteU32(uint32_t data)
Definition: buffer.cc:878
uint8_t m_reservedExtendedCapabilities
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...
void SetShortGuardInterval40(uint8_t shortguardinterval)
uint8_t GetAntennaSelectionCapabilities(void) const
Buffer::Iterator Serialize(Buffer::Iterator i) const
Serialize entire IE including Element ID and length fields.
void SetSupportedChannelWidth(uint8_t supportedchannelwidth)
uint8_t m_reverzeDirectionResponder
uint8_t GetMaxAmpduLength(void) const
uint8_t m_explicitNoncompressedBfFeedbackCapable
uint8_t m_explicitCompressedSteeringCapable
uint8_t m_antennaIndicesFeedbackBasedTxASelCapable
uint16_t GetExtendedHtCapabilities(void) const