Siksha Sarovar

Siksha Sarovar (sikshasarovar.com) is a free educational web application that helps students in India learn programming and prepare for academic and competitive exams. The platform offers structured coding courses (C, C++, Python, Java, HTML, CSS, PHP, Power BI, AI, Machine Learning, Data Science), complete university curriculum notes for BCA/MCA students with previous year question papers, Class 10 and Class 12 CBSE/HBSE school notes, and dedicated preparation material for SSC, UPSC, Banking, Railway and other government exams. Browsing the site is completely free and requires no account. Users may optionally sign in with Google solely to save their learning progress, quiz scores and personal preferences across devices.

Privacy Policy | Terms of Service | Contact Siksha Sarovar | About Siksha Sarovar

v4.0.9 · PWA
Siksha Sarovar logo
Siksha Sarovar
Your Learning Universe

Siksha Sarovar is a free e-learning platform for coding courses, BCA university notes and competitive exam preparation. Optional Google sign-in saves your learning progress across devices.

Initializing knowledge base…
Compiling modules 0%

3.2 MAC Protocol Survey: Optimization for Low-Power Networks

Lesson 16 of 31 in the free Internet of Things (IoT) notes on Siksha Sarovar, written by Rohit Jangra.

3.2.1 The Critical Role of MAC in IoT Optimization

The Medium Access Control (MAC) layer manages the "Who, When, and How" of channel access. In IoT, the primary constraint is Energy Efficiency, as the radio is the #1 consumer of power. Every millisecond spent "Listening" to an empty channel is energy wasted (Idle Listening).

3.2.2 Categorization of IoT MAC Protocols (Academic Taxonomy)

  1. Contention-Based (CSMA/CA):
  • Mechanism: Listen-Before-Talk (LBT). If the channel is busy, wait for a random backoff.
  • Standard: IEEE 802.15.4 MAC (Non-beacon mode).
  • Pros: Highly scalable, no complex time synchronization needed.
  1. Schedule-Based (TDMA):
  • Mechanism: Each node is assigned a specific time slot to transmit. The radio is off when not scheduled.
  • Pros: Zero collisions, zero idle listening.
  • Cons: Requires precise time synchronization (PTP) across all nodes.
  1. Preamble-Sampling (Low Power Listening - LPL):
  • Mechanism: Receiver wakes up for a few microseconds periodically. Sender sends a preamble longer than the receiver's sleep period to "catch" it.

3.2.3 Comparative Survey of Research and Industry MACs

ProtocolMechanismEnergy EfficiencyDuty CycleLatencyTarget App
S-MACSynchronized Sleep/WakeHighFixedHighStatic WSN
T-MACAdaptive TimeoutVery HighTraffic-basedMediumBursty Traffic
B-MACLPL (Duty Cycling)HighLowLowLongevity Nodes
Z-MACHybrid CSMA/TDMAMediumHighLowInd. Sensing
802.15.4Beacon-enabled SlottedHighBeacon-syncedMediumZigbee/Thread

3.2.4 Rendezvous Problem in Sleeping Networks

The main challenge: How do two nodes talk if they are both in deep sleep for 99.9% of the time?

  • Synchronous: All nodes wake up at the same time using a global heartbeat (Beacon).
  • Asynchronous: The sender keeps shouting (Preamble) until the receiver happens to wake up.