summaryrefslogtreecommitdiff
path: root/gnuradio-core/src
diff options
context:
space:
mode:
authorTom2009-10-06 15:19:12 -0700
committerTom2009-10-06 15:19:12 -0700
commit9d3f297ded7d78e49760c17696df49a5a7f920f8 (patch)
tree13183f8c0ff46189b5d719ccc29238c29d3544b8 /gnuradio-core/src
parentc014a0926d24d0edf10ced7ce122d154b7e33f18 (diff)
downloadgnuradio-9d3f297ded7d78e49760c17696df49a5a7f920f8.tar.gz
gnuradio-9d3f297ded7d78e49760c17696df49a5a7f920f8.tar.bz2
gnuradio-9d3f297ded7d78e49760c17696df49a5a7f920f8.zip
Changinging behavior of parameter update for PFB clock recovery alg.
Diffstat (limited to 'gnuradio-core/src')
-rw-r--r--gnuradio-core/src/lib/filter/gr_pfb_clock_sync_ccf.cc32
-rw-r--r--gnuradio-core/src/lib/filter/gr_pfb_clock_sync_ccf.h10
2 files changed, 23 insertions, 19 deletions
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 f7dd94685..b67efc52d 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
@@ -51,7 +51,7 @@ gr_pfb_clock_sync_ccf::gr_pfb_clock_sync_ccf (float sps, float gain,
: gr_block ("pfb_clock_sync_ccf",
gr_make_io_signature (1, 1, sizeof(gr_complex)),
gr_make_io_signature2 (1, 2, sizeof(gr_complex), sizeof(float))),
- d_updated (false), d_sps(sps), d_alpha(gain)
+ d_updated (false), d_sps(sps)
{
d_nfilters = filter_size;
@@ -59,10 +59,9 @@ gr_pfb_clock_sync_ccf::gr_pfb_clock_sync_ccf (float sps, float gain,
// The accumulator keeps track of overflow to increment the stride correctly.
// set it here to the fractional difference based on the initial phaes
// assert(init_phase <= 2*M_PI);
- float x = init_phase / (2*M_PI); //normalize initial phase
- d_acc = 0.5; //x*(d_nfilters-1);
- d_last_filter = (int)floor(d_acc);
- d_acc = fmodf(d_acc, 1);
+ set_gain(gain);
+ d_k = d_nfilters / 2;
+ d_rate = 0;
d_start_count = 0;
@@ -227,28 +226,29 @@ gr_pfb_clock_sync_ccf::general_work (int noutput_items,
// produce output as long as we can and there are enough input samples
while((i < noutput_items) && (count < nrequired)) {
- out[i] = d_filters[d_last_filter]->filter(&in[count]);
- error = (out[i] * d_diff_filters[d_last_filter]->filter(&in[count])).real();
+ int filtnum = (int)d_k;
+ out[i] = d_filters[filtnum]->filter(&in[count]);
+ error = (out[i] * d_diff_filters[filtnum]->filter(&in[count])).real();
if(ninput_items.size() == 2)
err[i] = error;
- d_acc += d_alpha*error;
- if(d_acc >= (int)d_nfilters) {
- d_acc -= d_nfilters;
+ d_k = d_k + d_alpha*error + d_rate;
+ d_rate = d_rate + d_beta*error;
+ while(d_k >= d_nfilters) {
+ d_k -= d_nfilters;
count++;
}
- else if(d_acc < 0) {
- d_acc += d_nfilters-1;
+ while(d_k < 0) {
+ d_k += d_nfilters;
count--;
}
- d_last_filter = (int)floor(d_acc);
- printf("error: %e d_acc: %e filter: %d\n",
- error, d_acc, d_last_filter);
-
i++;
count += d_sps;
+
+ printf("error: %f k: %f rate: %f\n",
+ error, d_k, d_rate);
}
// Set the start index at the next entrance to the work function
diff --git a/gnuradio-core/src/lib/filter/gr_pfb_clock_sync_ccf.h b/gnuradio-core/src/lib/filter/gr_pfb_clock_sync_ccf.h
index d99bd6fe7..b8e0f83b6 100644
--- a/gnuradio-core/src/lib/filter/gr_pfb_clock_sync_ccf.h
+++ b/gnuradio-core/src/lib/filter/gr_pfb_clock_sync_ccf.h
@@ -58,13 +58,14 @@ class gr_pfb_clock_sync_ccf : public gr_block
bool d_updated;
unsigned int d_sps;
float d_alpha;
+ float d_beta;
unsigned int d_nfilters;
std::vector<gr_fir_ccf*> d_filters;
std::vector<gr_fir_ccf*> d_diff_filters;
std::vector< std::vector<float> > d_taps;
std::vector< std::vector<float> > d_dtaps;
- float d_acc;
- unsigned int d_last_filter;
+ float d_k;
+ float d_rate;
unsigned int d_start_count;
unsigned int d_taps_per_filter;
@@ -98,7 +99,10 @@ public:
void print_diff_taps();
void set_gain(float gain)
- { d_alpha = gain; }
+ {
+ d_alpha = gain;
+ d_beta = 0.25*d_alpha*d_alpha;
+ }
int general_work (int noutput_items,
gr_vector_int &ninput_items,