ChannelDecimator now unused, remove from Makefile, remove commented code.

This commit is contained in:
Jared Boone 2016-01-04 09:49:48 -08:00
parent 168bd02dea
commit cd17f414b7
2 changed files with 0 additions and 3 deletions

View File

@ -131,7 +131,6 @@ CPPSRC = main.cpp \
portapack_shared_memory.cpp \
baseband_thread.cpp \
baseband_processor.cpp \
channel_decimator.cpp \
dsp_decimate.cpp \
dsp_demodulate.cpp \
matched_filter.cpp \

View File

@ -61,8 +61,6 @@ private:
const size_t samples_per_symbol = channel_sampling_rate / symbol_rate;
const float clock_recovery_rate = symbol_rate * 2;
// ChannelDecimator decimator { ChannelDecimator::DecimationFactor::By2, false };
clock_recovery::ClockRecovery<clock_recovery::FixedErrorFilter> clock_recovery {
clock_recovery_rate, symbol_rate, { 1.0f / 18.0f },
[this](const float symbol) { this->consume_symbol(symbol); }