Author: n4hy
Date: 2007-02-22 07:55:16 -0700 (Thu, 22 Feb 2007)
New Revision: 4584
Modified:
gnuradio/branches/developers/n4hy/ofdm/gnuradio-core/src/lib/general/gr_dpll_ff.cc
Log:
bug fix in gr_dpll_ff.cc
Modified:
gnuradio/branches/developers/n4hy/ofdm/gnuradio-core/src/lib/general/gr_dpll_ff.cc
===================================================================
---
gnuradio/branches/developers/n4hy/ofdm/gnuradio-core/src/lib/general/gr_dpll_ff.cc
2007-02-22 05:28:14 UTC (rev 4583)
+++
gnuradio/branches/developers/n4hy/ofdm/gnuradio-core/src/lib/general/gr_dpll_ff.cc
2007-02-22 14:55:16 UTC (rev 4584)
@@ -60,7 +60,7 @@
if(iptr[i] ==(float)1) {
if (d_restart == 0) {
d_pulse_phase = 1;
- d_restart += 2;
+ d_restart += 3;
} else {
if (d_restart == 1) d_restart+=1;
if (d_pulse_phase > 0.5) d_pulse_phase += d_gain*(1.0-d_pulse_phase);
@@ -69,8 +69,10 @@
}
if (d_pulse_phase > d_decision_threshold) {
d_pulse_phase -= 1.0;
- if (d_restart > 0) d_restart -= 1;
- optr[i] = (float)1;
+ if (d_restart > 0) {
+ d_restart -= 1;
+ optr[i] = (float)1;
+ }
}
d_pulse_phase += d_pulse_frequency;
}
_______________________________________________
Commit-gnuradio mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/commit-gnuradio