Changes between Version 10 and Version 11 of OFDM


Ignore:
Timestamp:
Jan 23, 2007, 4:39:30 PM (17 years ago)
Author:
murphpo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OFDM

    v10 v11  
    1 = OFDM Physical Layer =
    2 We have chosen OFDM as the underlying physical layer for our research. Currently a SISO OFDM transceiver is fully implemented as an FPGA design and tested in hardware using the [wiki:"FPGA Board" WARP FPGA] and [wiki:"Radio Board" radio] boards.
     1= MIMO OFDM Physical Layer =
    32
    4 == OFDM Models Overview ==
    5 Our SISO OFDM transceiver is implemented in the FPGA fabric, and is composed of two Simulink models built using Xilinx's System Generator for DSP. Both models are designed from scratch for real-time, wideband operation on the WARP hardware. The models have top-level interfaces to the WARP radio board's Tx/Rx analog converters. They also utilize an OPB interface for data exchange and control by the embedded PowerPC in the WARP FPGA.
     3{{{
     4#!NewsFlash
     5= Model Verisons Note =
     6This documention refers to the MIMO OFDM peripheral core, available in [source:/PlatformSupport/CusotmPeripherals/pcores/]. The OFDM model in [source:/ResearchApps/MIMO_OFDM/] is a development version which contains experimental features that are not yet fully tested in hardware. If you're interested in using the OFDM model only in simulation, please use the [source:/ResearchApps/MIMO_OFDM/ experimental version]. If you want to use the model in hardware, use the [source:/PlatformSupport/CustomPeripherals/pcores/ofdm_TxRx_mimo_opbw_v1_07_a pcore] and the documentation below.
     7}}}
    68
    7 == Files ==
    8 All of the files required to use our OFDM model are available in the [source:/ResearchApps/PHY/SISO_OFDM repository]. A description of each file is included below.
     9Get the latest version of the OFDM peripheral core from the repository: [source:/PlatformSupport/CustomPeripherals/pcores/ofdm_TxRx_mimo_opbw_v1_07_a].
    910
    10 === System Generator/Simulink Models ===
    11 [source:/ResearchApps/PHY/SISO_OFDM/ofdm_TxRx_simOnly.mdl ofdm_txrx_simOnly.mdl][[BR]]
    12   This model is a simulation-ready OFDM transceiver. The model cannot be used in hardware without being converted to OPB peripherals and is included here as the simulation-friendly counterpart to the OPB model below.
     11----
    1312
    14 [source:/ResearchApps/PHY/SISO_OFDM/ofdm_tx_opb.mdl ofdm_tx_opb.mdl]
    15   Complete OFDM transmitter model, including the OPB interface. This model is used to generate the OFDM transmitter pcore. This model is not useful in simulation.
    16 
    17 [source:/ResearchApps/PHY/SISO_OFDM/ofdm_rx_opb.mdl ofdm_rx_opb.mdl]
    18   Complete OFDM receiver model, including the OPB interface. This model is used to generate the OFDM receiver pcore. This model is not useful in simulation.
    19 
    20  
    21 
    22 
    23 === MATLAB scripts ===
    24 [source:/ResearchApps/PHY/SISO_OFDM/ofdm_tx_init.m ofdm_tx_init.m]
    25   This script sets a number of initial values and parameters for the transmitter model. Some of these parameters are shared by both the transmitter and receiver models, so this script is also called by the receiver model's initilization script.
    26 
    27 [source:/ResearchApps/PHY/SISO_OFDM/ofdm_rx_init.m ofdm_rx_init.m]
    28   This script sets a number of initial values and parameters in the receiver model. It also requires [source:/ResearchApps/PHY/SISO_OFDM/ofdm_tx_init.m ofdm_tx_init.m],  [source:/ResearchApps/PHY/SISO_OFDM/ofdm_rx_init_packetTimingControl.m ofdm_rx_init_packetTimingControl.m] and [source:/ResearchApps/PHY/SISO_OFDM/CRC_table_gen.m CRC_table_gen.m].
    29 
    30 [source:/ResearchApps/PHY/SISO_OFDM/ofdm_rx_init_packetTimingControl.m ofdm_rx_init_packetTimingControl.m]
    31   Defines the behavior of the receiver's packet timing control block, setting the expected arrival times of different parts of a received packet.
    32 
    33 [source:/ResearchApps/PHY/SISO_OFDM/CRC_table_gen.m CRC_table_gen.m]
    34   Generates a table of remainders for the calculation of a 32-bit CRC. This table is used by both the Tx and Rx models for checksum calculation.
    35 
    36 
    37 
    38 == Features & Performance ==
    39 Some basic performance paramters are listed below. This page will be updated as we further verify and extend the models in hardware.
    40 
    41 '''Modulation:'''
    42   Both models support flexible modulation schemes, allowing individual subcarriers to carry [0, 1, 2, 4, 6, 8] bits. In other words, any combination of 0, BPSK, QPSK, 16/64/256 QAM can be used per packet. We have fully tested a QPSK-only system in hardware, loading 48 of 64 subcarriers with user data.
    43 
    44 '''Bandwidth:'''
    45   The effective bandwidth is currently 10 MHz. The ADC/DAC sampling rate is actually 50 MHz; interpolation/decimation filters are included in the models to achieve this rate change.
    46 
    47 '''Data rate:'''
    48   We have tested a 12 Mbps PHY configuration over-the-air (10 MHz bandwidth with 48 data-bearing subcarriers using QPSK modulation). We have also tested a 16 QAM system in hardware (running at 24 Mbps) and are in the process of fully verifying its operation over-the-air.
    49 
    50 '''Checksum calculation:'''
    51   Both the Tx and Rx models include hardware checksum calculation blocks. These blocks calculate a 32-bit CRC over each packet's payload in real-time. The Tx model appends the 4-byte checksum to each transmitted packet. The Rx model automatically notifies user code of a received packet's checksum status.
     13== Examples ==
     14Reference designs built around the MIMO OFDM core will be posted soon.
     15----
     16== Documentation ==
     17 1. [wiki:OFDM/MIMO/Docs/Overview Overview]
     18  1. [wiki:OFDM/MIMO/Docs/Overview#Intro Introduction]
     19  1. [wiki:OFDM/MIMO/Docs/Overview#Tools Tools & hardware requirements]
     20  1. [wiki:OFDM/MIMO/Docs/Overview#Files Model files list]
     21 1. [wiki:OFDM/MIMO/Docs/PHYDetails Physical layer details ]
     22  1. [wiki:OFDM/MIMO/Docs/PHYDetails/Features PHY features]
     23  1. [wiki:OFDM/MIMO/Docs/PHYDetails/FrameFormat OFDM frame format]
     24 1. [wiki:OFDM/MIMO/Docs/Architecture Model architecture]
     25  1. [wiki:OFDM/MIMO/Docs/Architecture Architecture overview]
     26  1. [wiki:OFDM/MIMO/Docs/TransmitterArchitecture Transmitter]
     27  1. [wiki:OFDM/MIMO/Docs/ReceiverArchitecture Receiver]
     28 1. [wiki:OFDM/MIMO/Docs/ModelSimulation Using the model in simulation]
     29 1. [wiki:OFDM/MIMO/Docs/ModelHardware Using the model in hardware]
     30  1. [wiki:OFDM/MIMO/Docs/ModelPorts Top-level ports]
     31  1. [wiki:OFDM/MIMO/Docs/ModelRegisters Register map]
     32  1. [wiki:OFDM/MIMO/Docs/ModelSharedMem Shared memory blocks]
     33  1. [wiki:OFDM/MIMO/Docs/ModelDriver Driver]
     34  1. [wiki:OFDM/MIMO/Docs/AppRequirements Application requirements]
     35  1. [wiki:OFDM/MIMO/Docs/SystemRequirements System requirements]