tuner: Re-implement rotator_cc

This commit is contained in:
Mike Walters
2016-04-28 00:22:49 +01:00
parent c03f98f839
commit 6c9c40527f
5 changed files with 145 additions and 3 deletions

View File

@@ -47,7 +47,7 @@ SpectrogramPlot::SpectrogramPlot(std::shared_ptr<SampleSource<std::complex<float
auto tunerFlowGraph = gr::make_top_block("tuner");
auto memSource = gr::blocks::memory_source::make(8);
auto memSink = gr::blocks::memory_sink::make(8);
tunerRotator = gr::blocks::rotator_cc::make(getTunerPhaseInc());
tunerRotator = gr::blocks::rotator_ex_cc::make(getTunerPhaseInc());
tunerFilter = gr::filter::fir_filter_ccf::make(1, getTunerTaps());
tunerFlowGraph->connect(memSource, 0, tunerRotator, 0);