Skip to content

Commit

Permalink
added back in support for fskGain in P25 Recorder
Browse files Browse the repository at this point in the history
  • Loading branch information
robotastic committed Jan 16, 2017
1 parent 7006feb commit 7f91e95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trunk-recorder/recorders/p25_recorder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ BOOST_LOG_TRIVIAL(error) << "Size of LPF: " << dest.size();
double fd = 600.0;
double pll_demod_gain = 1.0/(fd*freq_to_norm_radians);
pll_freq_lock = gr::analog::pll_freqdet_cf::make ( (symbol_rate/2.0*1.2)*freq_to_norm_radians, (fc+(3*fd*1.9))*freq_to_norm_radians, (fc+(-3*fd*1.9))*freq_to_norm_radians);
pll_amp = gr::blocks::multiply_const_ff::make(pll_demod_gain);
pll_amp = gr::blocks::multiply_const_ff::make(pll_demod_gain * bb_gain);

baseband_noise_filter_taps = gr::filter::firdes::low_pass_2(1.0, system_channel_rate, symbol_rate/2.0*1.175, symbol_rate/2.0*0.125, 20.0, gr::filter::firdes::WIN_KAISER, 6.76);
noise_filter = gr::filter::fft_filter_fff::make(1.0, baseband_noise_filter_taps);
Expand Down

0 comments on commit 7f91e95

Please sign in to comment.