A Discrete-Event Network Simulator
API
lr-wpan-csmaca.cc
Go to the documentation of this file.
1 /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2011 The Boeing Company
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  * Author:
19  * kwong yin <kwong-sang.yin@boeing.com>
20  * Sascha Alexander Jopen <jopen@cs.uni-bonn.de>
21  * Alberto Gallegos Ramonet <ramonet@fc.ritsumei.ac.jp>
22  */
23 
24 #include "lr-wpan-csmaca.h"
25 #include <ns3/random-variable-stream.h>
26 #include <ns3/simulator.h>
27 #include <ns3/log.h>
28 #include <algorithm>
29 
30 #undef NS_LOG_APPEND_CONTEXT
31 #define NS_LOG_APPEND_CONTEXT \
32  std::clog << "[address " << m_mac->GetShortAddress () << "] ";
33 
34 namespace ns3 {
35 
36 NS_LOG_COMPONENT_DEFINE ("LrWpanCsmaCa");
37 
38 NS_OBJECT_ENSURE_REGISTERED (LrWpanCsmaCa);
39 
40 TypeId
42 {
43  static TypeId tid = TypeId ("ns3::LrWpanCsmaCa")
44  .SetParent<Object> ()
45  .SetGroupName ("LrWpan")
46  .AddConstructor<LrWpanCsmaCa> ()
47  ;
48  return tid;
49 }
50 
52 {
53  // TODO-- make these into ns-3 attributes
54 
55  m_isSlotted = false;
56  m_NB = 0;
57  m_CW = 2;
58  m_macBattLifeExt = false;
59  m_macMinBE = 3;
60  m_macMaxBE = 5;
62  m_aUnitBackoffPeriod = 20; // symbols
63  m_random = CreateObject<UniformRandomVariable> ();
64  m_BE = m_macMinBE;
65  m_ccaRequestRunning = false;
67  m_coorDest = false;
68 }
69 
71 {
72  m_mac = 0;
73 }
74 
75 void
77 {
78  m_lrWpanMacStateCallback = MakeNullCallback <void, LrWpanMacState> ();
79  m_lrWpanMacTransCostCallback = MakeNullCallback <void, uint32_t> ();
80 
81  Cancel ();
82  m_mac = 0;
83 }
84 
85 void
87 {
88  m_mac = mac;
89 }
90 
93 {
94  return m_mac;
95 }
96 
97 void
99 {
100  NS_LOG_FUNCTION (this);
101  m_isSlotted = true;
102 }
103 
104 void
106 {
107  NS_LOG_FUNCTION (this);
108  m_isSlotted = false;
109 }
110 
111 bool
113 {
114  NS_LOG_FUNCTION (this);
115  return (m_isSlotted);
116 }
117 
118 bool
120 {
121  NS_LOG_FUNCTION (this);
122  return (!m_isSlotted);
123 }
124 
125 void
126 LrWpanCsmaCa::SetMacMinBE (uint8_t macMinBE)
127 {
128  NS_LOG_FUNCTION (this << macMinBE);
129  m_macMinBE = macMinBE;
130 }
131 
132 uint8_t
134 {
135  NS_LOG_FUNCTION (this);
136  return m_macMinBE;
137 }
138 
139 void
140 LrWpanCsmaCa::SetMacMaxBE (uint8_t macMaxBE)
141 {
142  NS_LOG_FUNCTION (this << macMaxBE);
143  m_macMinBE = macMaxBE;
144 }
145 
146 uint8_t
148 {
149  NS_LOG_FUNCTION (this);
150  return m_macMaxBE;
151 }
152 
153 void
154 LrWpanCsmaCa::SetMacMaxCSMABackoffs (uint8_t macMaxCSMABackoffs)
155 {
156  NS_LOG_FUNCTION (this << macMaxCSMABackoffs);
157  m_macMaxCSMABackoffs = macMaxCSMABackoffs;
158 }
159 
160 uint8_t
162 {
163  NS_LOG_FUNCTION (this);
164  return m_macMaxCSMABackoffs;
165 }
166 
167 void
168 LrWpanCsmaCa::SetUnitBackoffPeriod (uint64_t unitBackoffPeriod)
169 {
170  NS_LOG_FUNCTION (this << unitBackoffPeriod);
171  m_aUnitBackoffPeriod = unitBackoffPeriod;
172 }
173 
174 uint64_t
176 {
177  NS_LOG_FUNCTION (this);
178  return m_aUnitBackoffPeriod;
179 }
180 
181 
182 Time
184 {
185  NS_LOG_FUNCTION (this);
186 
187  // The reference for the beginning of the SUPERFRAME (the active period) changes depending
188  // on the data packet being sent from the Coordinator/outgoing frame (Tx beacon time reference)
189  // or other device/incoming frame (Rx beacon time reference ).
190 
191  Time elapsedSuperframe; // (i.e The beacon + the elapsed CAP)
192  Time currentTime;
193  double symbolsToBoundary;
194  Time nextBoundary;
195  uint64_t elapsedSuperframeSymbols;
196  uint64_t symbolRate;
197  Time timeAtBoundary;
198  Time elapsedCap;
199  Time beaconTime;
200 
201 
202  currentTime = Simulator::Now ();
203  symbolRate = (uint64_t) m_mac->GetPhy ()->GetDataOrSymbolRate (false); //symbols per second
204 
205  if (m_coorDest)
206  {
207  // Take the Incoming Frame Reference
208  elapsedSuperframe = currentTime - m_mac->m_macBeaconRxTime;
209 
210  beaconTime = Seconds ((double) m_mac->m_rxBeaconSymbols / symbolRate);
211  elapsedCap = elapsedSuperframe - beaconTime;
212  NS_LOG_DEBUG ("Elapsed incoming CAP symbols: " << (elapsedCap.GetSeconds () * symbolRate) << " (" << elapsedCap.As (Time::S) << ")");
213  NS_UNUSED (beaconTime);
214  NS_UNUSED (elapsedCap);
215  }
216  else
217  {
218  // Take the Outgoing Frame Reference
219  elapsedSuperframe = currentTime - m_mac->m_macBeaconTxTime;
220  }
221 
222  // get a close value to the the boundary in symbols
223  elapsedSuperframeSymbols = elapsedSuperframe.GetSeconds () * symbolRate;
224  symbolsToBoundary = m_aUnitBackoffPeriod - std::fmod ((double) elapsedSuperframeSymbols,m_aUnitBackoffPeriod);
225 
226  timeAtBoundary = Seconds ((double)(elapsedSuperframeSymbols + symbolsToBoundary) / symbolRate);
227 
228  // get the exact time boundary
229  nextBoundary = timeAtBoundary - elapsedSuperframe;
230 
231  NS_LOG_DEBUG ("Elapsed Superframe symbols: " << elapsedSuperframeSymbols << " ("
232  << elapsedSuperframe.As (Time::S) << ")");
233 
234  NS_LOG_DEBUG ("Next backoff period boundary in approx. " << nextBoundary.GetSeconds () * symbolRate << " symbols ("
235  << nextBoundary.As (Time::S) << ")");
236 
237  return nextBoundary;
238 
239 }
240 
241 
242 void
244 {
245  NS_LOG_FUNCTION (this);
246  m_NB = 0;
247  if (IsSlottedCsmaCa ())
248  {
249  // TODO: Check if the current PHY is using the Japanese band 950 Mhz:
250  // (IEEE_802_15_4_950MHZ_BPSK and IEEE_802_15_4_950MHZ_2GFSK)
251  // if in use, m_CW = 1.
252  // Currently 950 Mhz band PHYs are not supported in ns-3.
253  // To know the current used PHY, making the method for GetPhy()->GetMyPhyOption()
254  // public is necessary. Alternatively, the current PHY used
255  // can be known using phyCurrentPage variable.
256 
257  m_CW = 2;
258 
259  if (m_macBattLifeExt)
260  {
261  m_BE = std::min (static_cast<uint8_t> (2), m_macMinBE);
262  }
263  else
264  {
265  m_BE = m_macMinBE;
266  }
267 
268  // m_coorDest to decide between incoming and outgoing superframes times
269  m_coorDest = m_mac->isCoordDest ();
270 
271  // Locate backoff period boundary. (i.e. a time delay to align with the next backoff period boundary)
272  Time backoffBoundary = GetTimeToNextSlot ();
274 
275  }
276  else
277  {
278  m_BE = m_macMinBE;
280  }
281 }
282 
283 void
285 {
289 }
290 
291 
292 
293 void
295 {
296  NS_LOG_FUNCTION (this);
297 
298  uint64_t upperBound = (uint64_t) pow (2, m_BE) - 1;
299  Time randomBackoff;
300  uint64_t symbolRate;
301  Time timeLeftInCap;
302 
303  symbolRate = (uint64_t) m_mac->GetPhy ()->GetDataOrSymbolRate (false); //symbols per second
304 
305  // We should not recalculate the random backoffPeriods if we are in a slotted CSMA-CA and the
306  // transmission was previously deferred (m_randomBackoffPeriods != 0)
308  {
309  m_randomBackoffPeriodsLeft = (uint64_t)m_random->GetValue (0, upperBound + 1);
310  }
311 
312  randomBackoff = Seconds ((double) (m_randomBackoffPeriodsLeft * GetUnitBackoffPeriod ()) / symbolRate);
313 
314  if (IsUnSlottedCsmaCa ())
315  {
316  NS_LOG_DEBUG ("Unslotted CSMA-CA: requesting CCA after backoff of " << m_randomBackoffPeriodsLeft <<
317  " periods (" << randomBackoff.As (Time::S) << ")");
319  }
320  else
321  {
322  // We must make sure there is enough time left in the CAP, otherwise we continue in
323  // the CAP of the next superframe after the transmission/reception of the beacon (and the IFS)
324  timeLeftInCap = GetTimeLeftInCap ();
325 
326  NS_LOG_DEBUG ("Slotted CSMA-CA: proceeding after random backoff of " << m_randomBackoffPeriodsLeft <<
327  " periods (" << (randomBackoff.GetSeconds () * symbolRate) << " symbols or " << randomBackoff.As (Time::S) << ")");
328 
329 
330 
331 
332  NS_LOG_DEBUG ("Backoff periods left in CAP: " << ((timeLeftInCap.GetSeconds () * symbolRate) / m_aUnitBackoffPeriod) << " ("
333  << (timeLeftInCap.GetSeconds () * symbolRate) << " symbols or "
334  << timeLeftInCap.As (Time::S) << ")");
335 
336 
337  if (randomBackoff > timeLeftInCap)
338  {
339  uint64_t usedBackoffs = (double)(timeLeftInCap.GetSeconds () * symbolRate) / m_aUnitBackoffPeriod;
340  m_randomBackoffPeriodsLeft -= usedBackoffs;
341  NS_LOG_DEBUG ("No time in CAP to complete backoff delay, deferring to the next CAP");
343  }
344  else
345  {
347  }
348  }
349 }
350 
351 
352 Time
354 {
355  Time currentTime;
356  uint64_t capSymbols;
357  Time endCapTime;
358  uint64_t activeSlot;
359  uint64_t symbolRate;
360  Time rxBeaconTime;
361 
362 
363  // At this point, the currentTime should be aligned on a backoff period boundary
364  currentTime = Simulator::Now ();
365  symbolRate = (uint64_t) m_mac->GetPhy ()->GetDataOrSymbolRate (false); //symbols per second
366 
367 
368  if (m_coorDest)
369  { // Take Incoming frame reference
370  activeSlot = m_mac->m_incomingSuperframeDuration / 16;
371  capSymbols = activeSlot * (m_mac->m_incomingFnlCapSlot + 1);
372  endCapTime = m_mac->m_macBeaconRxTime +
373  Seconds ((double) capSymbols / symbolRate);
374  }
375  else
376  { // Take Outgoing frame reference
377  activeSlot = m_mac->m_superframeDuration / 16;
378  capSymbols = activeSlot * (m_mac->m_fnlCapSlot + 1);
379  endCapTime = m_mac->m_macBeaconTxTime +
380  Seconds ((double) capSymbols / symbolRate);
381  }
382 
383  return (endCapTime - currentTime);
384 }
385 
386 
387 void
389 {
390  NS_LOG_FUNCTION (this);
391 
392  Time timeLeftInCap;
393  uint16_t ccaSymbols;
394  uint32_t transactionSymbols;
395  Time transactionTime;
396  uint64_t symbolRate;
397 
398  ccaSymbols = 0;
400  symbolRate = (uint64_t) m_mac->GetPhy ()->GetDataOrSymbolRate (false);
401  timeLeftInCap = GetTimeLeftInCap ();
402 
403 
404  // TODO: On the 950 Mhz Band (Japanese Band)
405  // only a single CCA check is performed;
406  // the CCA check duration time is:
407  //
408  // CCA symbols = phyCCADuration * m_CW (1)
409  // other PHYs:
410  // CCA symbols = 8 * m_CW(2)
411  //
412  // note: phyCCADuration & 950Mhz band PHYs are
413  // not currently implemented in ns-3.
414  ccaSymbols += 8 * m_CW;
415 
416  // The MAC sublayer shall proceed if the remaining CSMA-CA algorithm steps
417  // can be completed before the end of the CAP.
418  // See IEEE 802.15.4-2011 (Sections 5.1.1.1 and 5.1.1.4)
419  // Transaction = 2 CCA + frame transmission (SHR+PHR+PPDU) + turnaroudtime*2 (Rx->Tx & Tx->Rx) + IFS (LIFS or SIFS) and Ack time (if ack flag true)
420 
421  transactionSymbols = ccaSymbols + m_mac->GetTxPacketSymbols ();
422 
423  if (m_mac->isTxAckReq ())
424  {
425  NS_LOG_DEBUG ("ACK duration symbols: " << m_mac->GetMacAckWaitDuration ());
426  transactionSymbols += m_mac->GetMacAckWaitDuration ();
427  }
428  else
429  {
430  //time the PHY takes to switch from Rx to Tx and Tx to Rx
431  transactionSymbols += (m_mac->GetPhy ()->aTurnaroundTime *2);
432  }
433  transactionSymbols += m_mac->GetIfsSize ();
434 
435  // Report the transaction cost
437  {
438  m_lrWpanMacTransCostCallback (transactionSymbols);
439  }
440 
441  transactionTime = Seconds ((double) transactionSymbols / symbolRate);
442  NS_LOG_DEBUG ("Total required transaction: " << transactionSymbols << " symbols (" << transactionTime.As (Time::S) << ")");
443 
444  if (transactionTime > timeLeftInCap)
445  {
446  NS_LOG_DEBUG ("Transaction of " << transactionSymbols << " symbols " <<
447  "cannot be completed in CAP, deferring transmission to the next CAP");
448 
449 
450 
451  NS_LOG_DEBUG ("Symbols left in CAP: " << (timeLeftInCap.GetSeconds () * symbolRate) <<
452  " (" << timeLeftInCap.As (Time::S) << ")");
453 
455  }
456  else
457  {
459  }
460 
461 }
462 
463 void
465 {
466  NS_LOG_FUNCTION (this);
467  m_ccaRequestRunning = true;
468  m_mac->GetPhy ()->PlmeCcaRequest ();
469 }
470 
471 void
473 {
474  NS_LOG_FUNCTION (this);
476 }
477 
478 void
480 {
481  NS_LOG_FUNCTION (this << status);
482 
483  // Only react on this event, if we are actually waiting for a CCA.
484  // If the CSMA algorithm was canceled, we could still receive this event from
485  // the PHY. In this case we ignore the event.
487  {
488  m_ccaRequestRunning = false;
489  if (status == IEEE_802_15_4_PHY_IDLE)
490  {
491  if (IsSlottedCsmaCa ())
492  {
493  m_CW--;
494  if (m_CW == 0)
495  {
496  // inform MAC channel is idle
498  {
499  NS_LOG_LOGIC ("Notifying MAC of idle channel");
501  }
502  }
503  else
504  {
505  NS_LOG_LOGIC ("Perform CCA again, m_CW = " << m_CW);
506  m_requestCcaEvent = Simulator::ScheduleNow (&LrWpanCsmaCa::RequestCCA, this); // Perform CCA again
507  }
508  }
509  else
510  {
511  // inform MAC, channel is idle
513  {
514  NS_LOG_LOGIC ("Notifying MAC of idle channel");
516  }
517  }
518  }
519  else
520  {
521  if (IsSlottedCsmaCa ())
522  {
523  m_CW = 2;
524  }
525  m_BE = std::min (static_cast<uint16_t> (m_BE + 1), static_cast<uint16_t> (m_macMaxBE));
526  m_NB++;
528  {
529  // no channel found so cannot send pkt
530  NS_LOG_DEBUG ("Channel access failure");
532  {
533  NS_LOG_LOGIC ("Notifying MAC of Channel access failure");
535  }
536  return;
537  }
538  else
539  {
540  NS_LOG_DEBUG ("Perform another backoff; m_NB = " << static_cast<uint16_t> (m_NB));
541  m_randomBackoffEvent = Simulator::ScheduleNow (&LrWpanCsmaCa::RandomBackoffDelay, this); //Perform another backoff (step 2)
542  }
543  }
544  }
545 }
546 
547 
548 void
550 {
551  NS_LOG_FUNCTION (this);
553 }
554 
555 
556 void
558 {
559  NS_LOG_FUNCTION (this);
561 }
562 
563 void
564 LrWpanCsmaCa::SetBatteryLifeExtension (bool batteryLifeExtension)
565 {
566  m_macBattLifeExt = batteryLifeExtension;
567 }
568 
569 
570 int64_t
572 {
573  NS_LOG_FUNCTION (this);
574  m_random->SetStream (stream);
575  return 1;
576 }
577 
578 uint8_t
580 {
581  return m_NB;
582 }
583 
584 bool
586 {
587  return m_macBattLifeExt;
588 }
589 
590 } //namespace ns3
static TypeId GetTypeId(void)
Get the type ID.
static EventId Schedule(Time const &delay, FUNC f, Ts &&... args)
Schedule an event to expire after delay.
Definition: simulator.h:557
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:102
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
void SetStream(int64_t stream)
Specifies the stream number for the RngStream.
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition: object-base.h:45
void SetMacMinBE(uint8_t macMinBE)
Set the minimum backoff exponent value.
#define min(a, b)
Definition: 80211b.c:42
CHANNEL_IDLE.
Definition: lr-wpan-mac.h:76
void PlmeCcaConfirm(LrWpanPhyEnumeration status)
IEEE 802.15.4-2006 section 6.2.2.2 PLME-CCA.confirm status.
double GetSeconds(void) const
Get an approximation of the time stored in this instance in the indicated unit.
Definition: nstime.h:361
uint8_t m_CW
Contention window length (used in slotted ver only).
MAC_CSMA_DEFERRED.
Definition: lr-wpan-mac.h:80
void SetMac(Ptr< LrWpanMac > mac)
Set the MAC to which this CSMA/CA implementation is attached to.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:205
uint8_t GetMacMinBE(void) const
Get the minimum backoff exponent value.
#define NS_UNUSED(x)
Mark a local variable as unused.
Definition: unused.h:36
uint8_t GetMacMaxBE(void) const
Get the maximum backoff exponent value.
uint8_t m_NB
Number of backoffs for the current transmission.
TimeWithUnit As(const enum Unit unit) const
Attach a unit to a Time, to facilitate output in a specific unit.
Definition: time.cc:389
void SetLrWpanMacTransCostCallback(LrWpanMacTransCostCallback trans)
Set the callback function to report a transaction cost in slotted CSMA-CA.
uint8_t GetNB(void)
Get the number of CSMA retries.
bool m_macBattLifeExt
Battery Life Extension.
void SetUnitBackoffPeriod(uint64_t unitBackoffPeriod)
Set the number of symbols forming the basic time period used by the CSMA-CA algorithm.
LrWpanMacTransCostCallback m_lrWpanMacTransCostCallback
The callback to inform the cost of a transaction in slotted CSMA-CA.
uint8_t m_macMinBE
Minimum backoff exponent.
void SetBatteryLifeExtension(bool batteryLifeExtension)
Set the value of the Battery Life Extension.
void DeferCsmaTimeout(void)
The CSMA algorithm call this function at the end of the CAP to return the MAC state back to to IDLE a...
LrWpanMacStateCallback m_lrWpanMacStateCallback
The callback to inform the configured MAC of the CSMA/CA result.
uint8_t GetMacMaxCSMABackoffs(void) const
Get the maximum number of backoffs.
void SetMacMaxBE(uint8_t macMaxBE)
Set the maximum backoff exponent value.
void SetUnSlottedCsmaCa(void)
Configure for the use of the unslotted CSMA/CA version.
uint64_t m_randomBackoffPeriodsLeft
Count the number of remaining random backoff periods left to delay.
void RequestCCA(void)
Request the Phy to perform CCA (Step 3)
static EventId ScheduleNow(FUNC f, Ts &&... args)
Schedule an event to expire Now.
Definition: simulator.h:588
virtual void DoDispose(void)
Destructor implementation.
void RandomBackoffDelay(void)
In step 2 of the CSMA-CA, perform a random backoff in the range of 0 to 2^BE -1.
void Start(void)
Start CSMA-CA algorithm (step 1), initialize NB, BE for both slotted and unslotted CSMA-CA...
void Cancel(void)
Cancel CSMA-CA algorithm.
mac
Definition: third.py:99
Time GetTimeLeftInCap()
Get the time left in the CAP portion of the Outgoing or Incoming superframe.
uint64_t m_aUnitBackoffPeriod
Number of symbols per CSMA/CA time unit, default 20 symbols.
LrWpanCsmaCa(void)
Default constructor.
Ptr< LrWpanMac > m_mac
The MAC instance for which this CSMA/CA implemenation is configured.
uint64_t GetUnitBackoffPeriod(void) const
Get the number of symbols forming the basic time period used by the CSMA-CA algorithm.
bool m_ccaRequestRunning
Flag indicating that the PHY is currently running a CCA.
void SetLrWpanMacStateCallback(LrWpanMacStateCallback macState)
Set the callback function to the MAC.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Ptr< UniformRandomVariable > m_random
Uniform random variable stream.
Time GetTimeToNextSlot(void) const
Locates the time to the next backoff period boundary in the SUPERFRAME and returns the amount of time...
double GetValue(double min, double max)
Get the next random value, as a double in the specified range .
bool IsUnSlottedCsmaCa(void) const
Check if the unslotted CSMA/CA version is being used.
bool m_isSlotted
Beacon-enabled slotted or nonbeacon-enabled unslotted CSMA-CA.
uint8_t m_macMaxBE
Maximum backoff exponent.
EventId m_randomBackoffEvent
Scheduler event for the start of the next random backoff/slot.
static Time Now(void)
Return the current simulation virtual time.
Definition: simulator.cc:195
bool GetBatteryLifeExtension(void)
Get the value of the Battery Life Extension.
NS_LOG_LOGIC("Net device "<< nd<< " is not bridged")
bool m_coorDest
Indicates whether the CSMA procedure is targeted for a message to be sent to the coordinator.
CHANNEL_ACCESS_FAILURE.
Definition: lr-wpan-mac.h:75
void SetSlottedCsmaCa(void)
Configure for the use of the slotted CSMA/CA version.
void CanProceed(void)
In the slotted CSMA-CA, after random backoff, determine if the remaining CSMA-CA operation can procee...
virtual ~LrWpanCsmaCa(void)
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
Definition: log.h:273
Time Seconds(double value)
Construct a Time in the indicated unit.
Definition: nstime.h:1062
uint8_t m_BE
Backoff exponent.
EventId m_canProceedEvent
Scheduler event for checking if we can complete the transmission before the end of the CAP...
This class is a helper for the LrWpanMac to manage the Csma/CA state machine according to IEEE 802...
void SetMacMaxCSMABackoffs(uint8_t macMaxCSMABackoffs)
Set the maximum number of backoffs.
void Cancel(void)
This method is syntactic sugar for the ns3::Simulator::Cancel method.
Definition: event-id.cc:53
bool IsSlottedCsmaCa(void) const
Check if the slotted CSMA/CA version is being used.
LrWpanPhyEnumeration
IEEE802.15.4-2006 PHY Emumerations Table 18 in section 6.2.3.
Definition: lr-wpan-phy.h:105
second
Definition: nstime.h:114
A base class which provides memory management and object aggregation.
Definition: object.h:87
EventId m_requestCcaEvent
Scheduler event when to start the CCA after a random backoff.
Ptr< LrWpanMac > GetMac(void) const
Get the MAC to which this CSMA/CA implementation is attached to.
bool IsNull(void) const
Check for null implementation.
Definition: callback.h:1386
a unique identifier for an interface.
Definition: type-id.h:58
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition: type-id.cc:923
int64_t AssignStreams(int64_t stream)
Assign a fixed random variable stream number to the random variables used by this model...
EventId m_endCapEvent
Scheduler event for the end of the current CAP.
uint8_t m_macMaxCSMABackoffs
Maximum number of backoffs.