mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-15 04:30:33 +00:00
Call the Intermediate Frequency parameter "IF" for consistency with the
freq_xlating_fir_filter block
This commit is contained in:
parent
c5d4ce239f
commit
a8ff283bac
@ -75,7 +75,8 @@ PulseBlankingFilter::PulseBlankingFilter(ConfigurationInterface* configuration,
|
||||
input_size_ = sizeof(gr_complex); //avoids uninitialization
|
||||
}
|
||||
double default_if = 0.0;
|
||||
double if_ = config_->property(role_ + ".if", default_if);
|
||||
double if_aux = config_->property(role_ + ".if", default_if);
|
||||
double if_ = config_->property(role_ + ".IF", if_aux);
|
||||
if (std::abs(if_) > 1.0)
|
||||
{
|
||||
double default_sampling_freq = 4000000.0;
|
||||
|
Loading…
Reference in New Issue
Block a user