An open API service indexing awesome lists of open source software.

https://github.com/drom/ofdm

Orthogonal Frequency Division Multiplexing pipeline
https://github.com/drom/ofdm

Last synced: about 1 year ago
JSON representation

Orthogonal Frequency Division Multiplexing pipeline

Awesome Lists containing this project

README

          

# OFDM pipeline

# Protocol

Keep it simple, stupid OFDM pipeline.

## Signal structure
* encode data bits
* add preamble symbols
* add 32 pilots
* zeros in DC area [-7..7]
* zeros left/right ends of spectrum [-128..-97, 97...127]
* 128 data subcarriers per symbol
* BPSK modulation
* IFFT 256
* 1/4 Guard Inteval

[kiss-ofdm.grc](kiss-ofdm.grc)

## Transmitter

[kiss-ofdm-tx-stream.grc](https://github.com/drom/OFDM/blob/master/kiss-ofdm-tx-stream.grc)

### Tx bit-stream

Generating randomized bit-stream, modulating with BPSK, tagging each 128 bit.

![tx_bits](kiss-ofdm-tx-bits-bd.png)

![tx_bits](kiss-ofdm-tx-bits-plot.png)

### Tx OFDM modulator

Allocating each of 128-bit to one of 256 subcarriers, FFT, CP

![tx_bits](kiss-ofdm-tx-samples-bd.png)

![tx_bits](kiss-ofdm-tx-samples-plot.png)

## Channel

Very simple AWGN channel.

![AWGN channel BD](kiss-ofdm-chan-awgn-bd.png)

![AWGN channel plot](kiss-ofdm-chan-awgn-plot.png)

## Receiver

### Rx OFDM demodulator

[kiss-ofdm-rx-stream.grc](https://github.com/drom/OFDM/blob/master/kiss-ofdm-rx-stream.grc)

![rx_samples](kiss-ofdm-rx-samples-bd.png)

![rx_samples](kiss-ofdm-rx-samples-plot-time.png)

![rx_samples](kiss-ofdm-rx-samples-plot-quad.png)