Changes between Version 20 and Version 21 of OFDM/MIMO/Docs/AutoResponse


Ignore:
Timestamp:
Aug 29, 2009, 3:47:44 PM (15 years ago)
Author:
murphpo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OFDM/MIMO/Docs/AutoResponse

    v20 v21  
    8585This example configures the PHY to automatically transmit an ACK packet whenever a DATA packet is received whose destination address matches the local node's address. This is the usual behavior of protocols like Aloha and CSMA. Notice that all other MAC behaviors, like random backoffs and re-transmissions, are handled by the MAC implementation in C (not included here).
    8686
     87This example uses a temlate ACK packet ({{{templatePkt}}}), stored in a PHY packet buffer ({{{pktBuf_tx_ACK}}}). This template specifies header fields which are not read from the received packet header (i.e. header fields not overwritten by the header translator).
     88
    8789{{{
    8890#!C
     
    128130This example configures the PHY to automatically re-transmit received DATA packets, overwriting the source MAC address with the node's own address.
    129131
     132Note that the actor is configured to transmit from the same packet buffer where the PHY wrote the received packet. This eliminates the need for a template packet header, as the transmitted header will match the received header except where the header translator overwrites values.
    130133{{{
    131134#!C