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 
353 Time
355 {
356  Time currentTime;
357  uint64_t capSymbols;
358  Time endCapTime;
359  uint64_t activeSlot;
360  uint64_t symbolRate;
361  Time rxBeaconTime;
362 
363 
364  // At this point, the currentTime should be aligned on a backoff period boundary
365  currentTime = Simulator::Now ();
366  symbolRate = (uint64_t) m_mac->GetPhy ()->GetDataOrSymbolRate (false); //symbols per second
367 
368 
369  if (m_coorDest)
370  { // Take Incoming frame reference
371  activeSlot = m_mac->m_incomingSuperframeDuration / 16;
372  capSymbols = activeSlot * (m_mac->m_incomingFnlCapSlot + 1);
373  endCapTime = m_mac->m_macBeaconRxTime +
374  Seconds ((double) capSymbols / symbolRate);
375  }
376  else
377  { // Take Outgoing frame reference
378  activeSlot = m_mac->m_superframeDuration / 16;
379  capSymbols = activeSlot * (m_mac->m_fnlCapSlot + 1);
380  endCapTime = m_mac->m_macBeaconTxTime +
381  Seconds ((double) capSymbols / symbolRate);
382  }
383 
384  return (endCapTime - currentTime);
385 }
386 
387 
388 void
390 {
391  NS_LOG_FUNCTION (this);
392 
393  Time timeLeftInCap;
394  uint16_t ccaSymbols;
395  uint32_t transactionSymbols;
396  Time transactionTime;
397  uint64_t symbolRate;
398 
399  ccaSymbols = 0;
401  symbolRate = (uint64_t) m_mac->GetPhy ()->GetDataOrSymbolRate (false);
402  timeLeftInCap = GetTimeLeftInCap ();
403 
404 
405  // TODO: On the 950 Mhz Band (Japanese Band)
406  // only a single CCA check is performed;
407  // the CCA check duration time is:
408  //
409  // CCA symbols = phyCCADuration * m_CW (1)
410  // other PHYs:
411  // CCA symbols = 8 * m_CW(2)
412  //
413  // note: phyCCADuration & 950Mhz band PHYs are
414  // not currently implemented in ns-3.
415  ccaSymbols += 8 * m_CW;
416 
417  // The MAC sublayer shall proceed if the remaining CSMA-CA algorithm steps
418  // can be completed before the end of the CAP.
419  // See IEEE 802.15.4-2011 (Sections 5.1.1.1 and 5.1.1.4)
420  // 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)
421 
422  transactionSymbols = ccaSymbols + m_mac->GetTxPacketSymbols ();
423 
424  if (m_mac->isTxAckReq ())
425  {
426  NS_LOG_DEBUG ("ACK duration symbols: " << m_mac->GetMacAckWaitDuration ());
427  transactionSymbols += m_mac->GetMacAckWaitDuration ();
428  }
429  else
430  {
431  //time the PHY takes to switch from Rx to Tx and Tx to Rx
432  transactionSymbols += (m_mac->GetPhy ()->aTurnaroundTime *2);
433  }
434  transactionSymbols += m_mac->GetIfsSize ();
435 
436  // Report the transaction cost
438  {
439  m_lrWpanMacTransCostCallback (transactionSymbols);
440  }
441 
442  transactionTime = Seconds ((double) transactionSymbols / symbolRate);
443  NS_LOG_DEBUG ("Total required transaction: " << transactionSymbols << " symbols (" << transactionTime.As (Time::S) << ")");
444 
445  if (transactionTime > timeLeftInCap)
446  {
447  NS_LOG_DEBUG ("Transaction of " << transactionSymbols << " symbols " <<
448  "cannot be completed in CAP, deferring transmission to the next CAP");
449 
450 
451 
452  NS_LOG_DEBUG ("Symbols left in CAP: " << (timeLeftInCap.GetSeconds () * symbolRate) <<
453  " (" << timeLeftInCap.As (Time::S) << ")");
454 
456  }
457  else
458  {
460  }
461 
462 }
463 
464 void
466 {
467  NS_LOG_FUNCTION (this);
468  m_ccaRequestRunning = true;
469  m_mac->GetPhy ()->PlmeCcaRequest ();
470 }
471 
472 void
474 {
475  NS_LOG_FUNCTION (this);
477 }
478 
479 void
481 {
482  NS_LOG_FUNCTION (this << status);
483 
484  // Only react on this event, if we are actually waiting for a CCA.
485  // If the CSMA algorithm was canceled, we could still receive this event from
486  // the PHY. In this case we ignore the event.
488  {
489  m_ccaRequestRunning = false;
490  if (status == IEEE_802_15_4_PHY_IDLE)
491  {
492  if (IsSlottedCsmaCa ())
493  {
494  m_CW--;
495  if (m_CW == 0)
496  {
497  // inform MAC channel is idle
499  {
500  NS_LOG_LOGIC ("Notifying MAC of idle channel");
502  }
503  }
504  else
505  {
506  NS_LOG_LOGIC ("Perform CCA again, m_CW = " << m_CW);
507  m_requestCcaEvent = Simulator::ScheduleNow (&LrWpanCsmaCa::RequestCCA, this); // Perform CCA again
508  }
509  }
510  else
511  {
512  // inform MAC, channel is idle
514  {
515  NS_LOG_LOGIC ("Notifying MAC of idle channel");
517  }
518  }
519  }
520  else
521  {
522  if (IsSlottedCsmaCa ())
523  {
524  m_CW = 2;
525  }
526  m_BE = std::min (static_cast<uint16_t> (m_BE + 1), static_cast<uint16_t> (m_macMaxBE));
527  m_NB++;
529  {
530  // no channel found so cannot send pkt
531  NS_LOG_DEBUG ("Channel access failure");
533  {
534  NS_LOG_LOGIC ("Notifying MAC of Channel access failure");
536  }
537  return;
538  }
539  else
540  {
541  NS_LOG_DEBUG ("Perform another backoff; m_NB = " << static_cast<uint16_t> (m_NB));
542  m_randomBackoffEvent = Simulator::ScheduleNow (&LrWpanCsmaCa::RandomBackoffDelay, this); //Perform another backoff (step 2)
543  }
544  }
545  }
546 }
547 
548 
549 void
551 {
552  NS_LOG_FUNCTION (this);
554 }
555 
556 
557 void
559 {
560  NS_LOG_FUNCTION (this);
562 }
563 
564 void
565 LrWpanCsmaCa::SetBatteryLifeExtension (bool batteryLifeExtension)
566 {
567  m_macBattLifeExt = batteryLifeExtension;
568 }
569 
570 
571 int64_t
573 {
574  NS_LOG_FUNCTION (this);
575  m_random->SetStream (stream);
576  return 1;
577 }
578 
579 uint8_t
581 {
582  return m_NB;
583 }
584 
585 bool
587 {
588  return m_macBattLifeExt;
589 }
590 
591 } //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
TimeWithUnit As(const enum Unit unit=Time::AUTO) const
Attach a unit to a Time, to facilitate output in a specific unit.
Definition: time.cc:429
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:103
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:380
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.
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.
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
Definition: log.h:289
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.
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:1289
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:115
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.