Changes between Version 1 and Version 2 of 802.11/MAC/Lower/DCF


Ignore:
Timestamp:
Aug 6, 2015, 3:24:44 PM (9 years ago)
Author:
chunter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • 802.11/MAC/Lower/DCF

    v1 v2  
    1414* Binary Exponential Backoff (BEB)
    1515
    16 The purpose of this document is not to explain or defend every aspect of the DCF. Instead, this document is to aid in the understanding of how the standard DCF behavior is realized within the Mango 802.11 Reference Design.
     16The purpose of this document is not to explain or defend aspects of the DCF. Instead, this document is to aid in the understanding of how the standard DCF behavior is realized within the Mango 802.11 Reference Design. This document is intended to be read alongside the actual [browser:ReferenceDesigns/w3_802.11/c/wlan_mac_low_dcf/wlan_mac_dcf.c wlan_mac_dcf.c] and [browser:ReferenceDesigns/w3_802.11/c/wlan_mac_low_framework/wlan_mac_low.c wlan_mac_low.c] code themselves.
     17
     18Rather than structure this documentation as a function-by-function pseudocode equivalent to the above-linked codebases, we will instead approach the documentation from the perspective of two different roles: MPDU transmission and MPDU reception. There is overlap between these roles in what functions they execute (e.g., MPDU transmission still has an element of frame reception to deal with acknowledgments).
     19
     20== MPDU Transmission ==
    1721
    1822[[Image(wiki:802.11/files:mpdu_tx.png, width=800)]]
     
    2327}}}
    2428
     29== MPDU Reception ==
     30
    2531[[Image(wiki:802.11/files:mpdu_rx.png, width=800)]]