Changes between Version 7 and Version 8 of OFDMReferenceDesign/Applications/Characterization


Ignore:
Timestamp:
Jun 26, 2009, 3:23:47 PM (15 years ago)
Author:
rpl1
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OFDMReferenceDesign/Applications/Characterization

    v7 v8  
    2222
    2323=== OFDM Reference Design Code ===
     24
    2425__Summary:__ The following extensions to the OFDM Reference Design expand node control by allowing a server to relay requests to warpnodes. The requests are sent as different struct types. These structs will set board parameters to certain values using Command and Traffic structs, and command (command structs) the board to stop and start transmissions, as well as request data (stat structs) about the transmission. This model places the boards in a state where data for wireless transmission is locally created instead of taken from the Ethernet.
    2526
     
    241242
    242243NODECMC_REQUESTSTATS sends the stats packet and ack packet if requested:
     244{{{
    243245case NODECMC_REQUESTSTATS:
    244246        if( (cmdStruct->nodeID) == myID)
     
    249251                if(rxSeqNum > 0) sendAck(rxSeqNum);
    250252        }
    251 
     253}}}
    252254
    253255Whenever phyRx_badHeader_callback is called,  the otherBadPackets count should be incremented:
     
    334336
    335337
    336 
    337 
    338 
    339338=== Dumb Server Code ===
    340339