From: Tom Rondeau Date: Fri, 4 Sep 2009 02:50:43 +0000 (-0400) Subject: Fixing a line in the clock recovery algorithm. This works with a bit larger error... X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=302686ace014d7be82812c218121f00f5b28cdd1;p=debian%2Fgnuradio Fixing a line in the clock recovery algorithm. This works with a bit larger error than there proably should be. --- diff --git a/gnuradio-core/src/lib/filter/gr_pfb_clock_sync_ccf.cc b/gnuradio-core/src/lib/filter/gr_pfb_clock_sync_ccf.cc index 0efbc8a5..91cbf74c 100644 --- a/gnuradio-core/src/lib/filter/gr_pfb_clock_sync_ccf.cc +++ b/gnuradio-core/src/lib/filter/gr_pfb_clock_sync_ccf.cc @@ -226,7 +226,6 @@ gr_pfb_clock_sync_ccf::general_work (int noutput_items, if(newfilter != (int)d_last_filter) d_acc = 0.5; - d_last_filter = newfilter % d_nfilters; if(newfilter >= (int)d_nfilters) { d_last_filter = newfilter - d_nfilters; count++;