1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-11-12 05:13:04 +00:00

Fix building with new GNU Radio firdes API. No functional change, since WIN_HAMMING is the default

This commit is contained in:
Carles Fernandez
2020-12-19 12:40:57 +01:00
parent a9de3d4244
commit 42efb68310
4 changed files with 4 additions and 8 deletions

View File

@@ -55,8 +55,7 @@ MmseResamplerConditioner::MmseResamplerConditioner(
std::vector<float> taps = gr::filter::firdes::low_pass(1.0,
sample_freq_in_,
sample_freq_out_ / 2.1,
sample_freq_out_ / 5,
gr::filter::firdes::win_type::WIN_HAMMING);
sample_freq_out_ / 5);
std::cout << "Enabled fractional resampler low pass filter with " << taps.size() << " taps\n";
fir_filter_ccf_ = gr::filter::fir_filter_ccf::make(1, taps);