Sythesizable, modular Verilog implementation of 802.11 OFDM decoder.
Go to file
2023-01-09 14:51:55 +01:00
docs usrp 2017-04-25 15:19:32 -04:00
scripts necessary bug fixes and improvements for openwifi 2019-12-10 13:31:16 +01:00
testing_inputs Add more test vectors into testing_inputs/simulated 2022-03-16 15:07:48 +01:00
verilog Adapt the test bench to align with ... 2023-01-09 14:51:55 +01:00
.gitignore doc init 2017-04-03 14:42:37 -04:00
create_vivado_proj.sh Update create_vivado_proj.sh 2022-08-15 09:12:08 +02:00
get_git_rev.sh Add git rev tracking to reg 31 2022-03-15 15:57:57 +01:00
LICENSE.txt license 2017-04-26 14:47:59 -04:00
openofdm_rx_side_ch_sim_ultra_scale.tcl Add git rev tracking to reg 31 2022-03-15 15:57:57 +01:00
openofdm_rx.tcl Add threshold_scale and enable it by default: 2023-01-09 14:43:34 +01:00
parse_board_name.tcl add support for antsdr e200 2022-10-21 20:47:56 +02:00
Readme.rst faq 2017-12-09 19:05:26 -05:00
requirements.txt working 2017-04-03 15:48:25 -04:00

OpenOFDM

This project contains a Verilog implementation of 802.11 OFDM PHY decoder. Features are:

  • Fully synthesizable (tested on Ettus Research USRP N210 platform)
  • Full support for legacy 802.11a/g
  • Support 802.11n for MCS 0 - 7 @ 20 MHz bandwidth
  • Cross validation with included Python decoder
  • Modular design for easy modification and extension

See full documentation at http://openofdm.readthedocs.io.

Environment Setup

This project has the following dependencies:

Input and Output

In a nutshell, the top level dot11 Verilog module takes 32-bit I/Q samples (16-bit each) as input, and output decoded bytes in 802.11 packet. The sampling rate is 20 MSPS and the clock rate is 100 MHz. This means this module expects one pair of I/Q sample every 5 clock ticks.

License

Apache License 2.0

FAQs

Q: Is there any need to change host driver UHD to incorporate new changes in FPGA?

A: No. In fact OpenOFDM relies on the current UHD-USRP communication mechanism. However, since the logic of the FPGA is changed in OpenOFDM, its behavior is also different. For instance, utilities such as rx_samples_to_file do not work as expected since the FPGA in OpenOFDM does not dumping RF signals back to host.

Q: Any example code to communicate with OFDM core in FPGA from host?

A: OpenOFDM FPGA module is configurable via USRP user setting registers (set_user_reg function). The register address definition is in common_params.v. The whole OpenOFM FPGA module takes 32 bit I/Q samples and outputs decoded bytes. It is supposed to be placed in the receive chain of the USRP (e.g., custom_dsp_rx.v.

Q: Is there any change in ZPU firmware?

A: No.