23#ifndef INCLUDED_DIGITAL_CORR_EST_CC_IMPL_H
24#define INCLUDED_DIGITAL_CORR_EST_CC_IMPL_H
27#include <gnuradio/filter/fft_filter.h>
29using namespace gr::filter;
38 std::vector<gr_complex> d_symbols;
40 unsigned int d_mark_delay;
42 kernel::fft_filter_ccc *d_filter;
49 float sps,
unsigned int mark_delay,
56 int work(
int noutput_items,
57 gr_vector_const_void_star &input_items,
58 gr_vector_void_star &output_items);
Definition corr_est_cc_impl.h:35
int work(int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items)
std::vector< gr_complex > symbols() const
corr_est_cc_impl(const std::vector< gr_complex > &symbols, float sps, unsigned int mark_delay, float threshold=0.9)
void set_symbols(const std::vector< gr_complex > &symbols)
Correlate stream with a pre-defined sequence and estimate peak.
Definition corr_est_cc.h:86
Definition corr_est_cc.h:29