View | Details | Raw Unified | Return to bug 2120
Collapse All | Expand All

(-)a/src/wifi/doc/source/wifi-user.rst (-1 / +1 lines)
 Lines 421-427    Link Here 
421
Note on the current implementation
421
Note on the current implementation
422
**********************************
422
**********************************
423
423
424
* 802.11g does not support 9 microseconds slot
424
* 802.11g supports a default of long slot time (20 microseconds)
425
* PHY_RXSTART is not supported
425
* PHY_RXSTART is not supported
426
* 802.11e TXOP is not supported
426
* 802.11e TXOP is not supported
427
* 802.11n/ac MIMO is not supported
427
* 802.11n/ac MIMO is not supported
(-)a/src/wifi/model/wifi-mac.cc (-1 / +5 lines)
 Lines 350-356    Link Here 
350
WifiMac::Configure80211g (void)
350
WifiMac::Configure80211g (void)
351
{
351
{
352
  SetSifs (MicroSeconds (10));
352
  SetSifs (MicroSeconds (10));
353
  //Note: no support for Short Slot Time yet
353
  // Slot time defaults to the "long slot time" of 20 us in the standard
354
  // according to mixed 802.11b/g deployments.  Short slot time is supported
355
  // if the user sets the slot to 9 us *after* calling Configure80211g().
356
  // The other parameters below should also be adjusted accordingly as they
357
  // depend on slot time.
354
  SetSlot (MicroSeconds (20));
358
  SetSlot (MicroSeconds (20));
355
  SetEifsNoDifs (MicroSeconds (10 + 304));
359
  SetEifsNoDifs (MicroSeconds (10 + 304));
356
  SetPifs (MicroSeconds (10 + 20));
360
  SetPifs (MicroSeconds (10 + 20));

Return to bug 2120