Implement SISO OFDM with BPSK demodulation on USRP
In this repository, we are going to implement SISO OFDM with BPSK demodulation on USRP by using the example code on WARPLab wl_example_siso_ofdm_txrx.m
. Besides, you can get more information about SISO OFDM with BPSK demodulation from my previous repository - Simple SISO OFDM.
NOTCIE: This repository is the assignment in NCTU course “Wireless Communication Systems 2018”. If you are taking this course, please do not duplicate from this repository. All rights reserved.
The sample code wl_example_siso_ofdm_txrx.m
follows the following steps.
In the part of signal generation,
In the part of decoding,
NOTICE: The most of works can follow by my another repository - Simple_SISO_OFDM.
host/build/utils/uhd_find_devices --args "addr=192.168.10.14"
~/uhd/host/examples/
~/uhd/host/examples
cd ~/uhd/host/build/examples
make
mkdir wcs_trace
./single_tx --f=2.49 --i=128
./single_rx --f=2.49 --i=128
./wcs_trace/rx_signals.bin
USE_WARPLAB_TXRX = 0
to see the simulation resultMOD_ORDER = 2
to use BPSK modulationNOTICE: You can follow the contributing process CONTRIBUTING.md to join me. I am very welcome any issue!
NOTCIE: This repository is the assignment in NCTU course “Wireless Communication Systems 2018”. If you are taking this course, please do not duplicate from this repository. All rights reserved.