1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-01-16 12:12:57 +00:00

GetBlock method modification

Adding Notch_Filter to the list of implementations
This commit is contained in:
Antonio Ramos 2017-06-19 15:22:54 +02:00
parent 70dc68b984
commit 93de803b41

View File

@ -883,6 +883,12 @@ std::unique_ptr<GNSSBlockInterface> GNSSBlockFactory::GetBlock(
out_streams));
block = std::move(block_);
}
else if (implementation.compare("Notch_Filter") == 0)
{
std::unique_ptr<GNSSBlockInterface> block_(new NotchFilter(configuration.get(), role, in_streams,
out_streams));
block = std::move(block_);
}
// RESAMPLER -------------------------------------------------------------------