diff --git a/firmware/baseband/Makefile b/firmware/baseband/Makefile index 4d167f9a9..ca7ecee3f 100755 --- a/firmware/baseband/Makefile +++ b/firmware/baseband/Makefile @@ -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 \ diff --git a/firmware/baseband/proc_ert.hpp b/firmware/baseband/proc_ert.hpp index 439180d1c..9c0663c95 100644 --- a/firmware/baseband/proc_ert.hpp +++ b/firmware/baseband/proc_ert.hpp @@ -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 { clock_recovery_rate, symbol_rate, { 1.0f / 18.0f }, [this](const float symbol) { this->consume_symbol(symbol); }