]> git.gag.com Git - debian/gnuradio/blob - gnuradio-core/src/lib/general/gr_fll_band_edge_cc.h
Adding a band-edge based frequency lock loop.
[debian/gnuradio] / gnuradio-core / src / lib / general / gr_fll_band_edge_cc.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2009 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with GNU Radio; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22
23
24 #ifndef INCLUDED_GR_FLL_BAND_EDGE_CC_H
25 #define INCLUDED_GR_FLL_BAND_EDGE_CC_H
26
27 #include <gr_sync_block.h>
28
29 class gr_fll_band_edge_cc;
30 typedef boost::shared_ptr<gr_fll_band_edge_cc> gr_fll_band_edge_cc_sptr;
31 gr_fll_band_edge_cc_sptr gr_make_fll_band_edge_cc (const std::vector<gr_complex> &taps);
32
33 class gr_fir_ccc;
34 class gri_fft_complex;
35
36 /*!
37  * \class gr_fll_band_edge_cc
38  * \brief Frequency Lock Loop using band-edge filters
39  *
40  * \ingroup general
41  */
42
43 class gr_fll_band_edge_cc : public gr_sync_block
44 {
45  private:
46   /*!
47    * Build the FLL
48    * \param taps    (vector/list of gr_complex) The taps of the band-edge filter
49    */
50   friend gr_fll_band_edge_cc_sptr gr_make_fll_band_edge_cc (const std::vector<gr_complex> &taps);
51
52   float                   d_alpha;
53   float                   d_beta;
54   float                   d_max_freq;
55   float                   d_min_freq;
56
57   gr_fir_ccc*             d_filter_upper;
58   gr_fir_ccc*             d_filter_lower;
59   std::vector<gr_complex> d_taps_upper;
60   std::vector<gr_complex> d_taps_lower;
61   bool                    d_updated;
62   float                   d_freq;
63   float                   d_phase;
64
65   /*!
66    * Build the FLL
67    * \param taps    (vector/list of gr_complex) The taps of the band-edge filter
68    */
69   gr_fll_band_edge_cc(const std::vector<gr_complex> &taps);
70
71 public:
72   ~gr_fll_band_edge_cc ();
73   
74   /*!
75    * Resets the filter taps with the new prototype filter
76    * \param taps    (vector/list of gr_complex) The band-edge filter
77    */
78    void set_taps (const std::vector<gr_complex> &taps);
79
80   /*!
81    * Print the taps to screen.
82    */
83   void print_taps();
84    
85   int work (int noutput_items,
86             gr_vector_const_void_star &input_items,
87             gr_vector_void_star &output_items);
88 };
89
90 #endif