Imported Upstream version 3.2.2
[debian/gnuradio] / gnuradio-core / src / lib / general / gr_fxpt_vco.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2002,2004,2005 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 #ifndef INCLUDED_GR_FXPT_VCO_H
23 #define INCLUDED_GR_FXPT_VCO_H
24
25 #include <gr_fxpt.h>
26 #include <gr_complex.h>
27
28 /*!
29  * \brief Voltage Controlled Oscillator (VCO)
30  * \ingroup misc
31  */
32 class gr_fxpt_vco {
33   gr_int32      d_phase;
34
35 public:
36   gr_fxpt_vco () : d_phase (0) {}
37
38   ~gr_fxpt_vco () {}
39
40   // radians
41   void set_phase (float angle) {
42     d_phase = gr_fxpt::float_to_fixed (angle);
43   }
44
45   void adjust_phase (float delta_phase) {
46     d_phase += gr_fxpt::float_to_fixed (delta_phase);
47   }
48
49   float get_phase () const { return gr_fxpt::fixed_to_float (d_phase); }
50
51   // compute sin and cos for current phase angle
52   void sincos (float *sinx, float *cosx) const
53   {
54     *sinx = gr_fxpt::sin (d_phase);
55     *cosx = gr_fxpt::cos (d_phase);
56   }
57
58   // compute a block at a time
59   void cos (float *output, const float *input, int noutput_items, float k, float ampl = 1.0)
60   {
61     for (int i = 0; i < noutput_items; i++){
62       output[i] = (float)(gr_fxpt::cos (d_phase) * ampl);
63       adjust_phase(input[i] * k);
64     }
65   }
66
67   // compute cos or sin for current phase angle
68   float cos () const { return gr_fxpt::cos (d_phase); }
69   float sin () const { return gr_fxpt::sin (d_phase); }
70 };
71
72 #endif /* INCLUDED_GR_FXPT_VCO_H */