|
| ofdm_equalizer_static (int fft_len, const std::vector< std::vector< int > > &occupied_carriers=std::vector< std::vector< int > >(), const std::vector< std::vector< int > > &pilot_carriers=std::vector< std::vector< int > >(), const std::vector< std::vector< gr_complex > > &pilot_symbols=std::vector< std::vector< gr_complex > >(), int symbols_skipped=0, bool input_is_shifted=true) |
|
| ~ofdm_equalizer_static () override |
|
void | equalize (gr_complex *frame, int n_sym, const std::vector< gr_complex > &initial_taps=std::vector< gr_complex >(), const std::vector< tag_t > &tags=std::vector< tag_t >()) override |
| Divide the input signal with the current channel state.
|
|
| ofdm_equalizer_1d_pilots (int fft_len, const std::vector< std::vector< int > > &occupied_carriers, const std::vector< std::vector< int > > &pilot_carriers, const std::vector< std::vector< gr_complex > > &pilot_symbols, int symbols_skipped, bool input_is_shifted) |
|
| ~ofdm_equalizer_1d_pilots () override |
|
void | reset () override |
| Reset the channel information state knowledge.
|
|
void | get_channel_state (std::vector< gr_complex > &taps) override |
| Return the current channel state.
|
|
| ofdm_equalizer_base (int fft_len) |
|
virtual | ~ofdm_equalizer_base () |
|
int | fft_len () |
|
sptr | base () |
|
|
std::vector< bool > | d_occupied_carriers |
| If d_occupied_carriers [k][l] is true, symbol k, carrier l is carrying data.
|
|
std::vector< std::vector< bool > > | d_pilot_carriers |
| If d_pilot_carriers [k][l] is true, symbol k, carrier l is carrying data.
|
|
std::vector< std::vector< gr_complex > > | d_pilot_symbols |
| If d_pilot_carriers [k][l] is true, d_pilot_symbols[k][l] is its tx'd value.
|
|
int | d_symbols_skipped |
| In case the frame doesn't begin with OFDM symbol 0, this is the index of the first symbol.
|
|
int | d_pilot_carr_set |
| The current position in the set of pilot symbols.
|
|
std::vector< gr_complex > | d_channel_state |
| Vector of length d_fft_len saving the current channel state (on the occupied carriers)
|
|
int | d_fft_len |
|
Very simple static equalizer for OFDM.
This is an extremely simple equalizer. It will only work for high-SNR, very, very slowly changing channels.
It simply divides the signal with the currently known channel state. Whenever a pilot symbol comes around, it updates the channel state on that particular carrier by dividing the received symbol with the known pilot symbol.