Changes between Version 4 and Version 5 of 802.11/app_notes/FDD-NoMAC


Ignore:
Timestamp:
Feb 13, 2017, 3:10:35 PM (7 years ago)
Author:
murphpo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • 802.11/app_notes/FDD-NoMAC

    v4 v5  
    2222 1. Update the NoMAC application to handle simultaneous Tx/Rx
    2323
     24----
     25
    2426=== 1. AP & STA Changes ===
    2527
     
    4143#define  WLAN_DEFAULT_RX_ANTENNA  RX_ANTMODE_SISO_ANTA
    4244}}}
     45
     46----
    4347
    4448=== 2. MAC Low Framework Changes ===
     
    106110}}}
    107111
     112----
    108113
     114=== 3. NoMAC Application Changes ===
     115Finally the NoMAC application must be modified to support simultaneous Tx and Rx operations. In the reference code NoMAC implements two callback functions, {{{frame_transmit()}}} and {{{frame_receive()}}}. The lower MAC framework calls these functions to handle new Tx and Rx events. By default these callbacks block during a Tx/Rx event until the corresponding PHY event is complete. In order to support FDD operation these functions must be generalized to not block during PHY events. Instead the callbacks are responsible for starting the Tx/Rx processing and new functions are implemented to finish Tx/Rx processing.
     116
     117'''TODO'''
    109118
    110119----