Imported Upstream version 3.0
[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 2, 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  */
31 class gr_fxpt_vco {
32   gr_int32      d_phase;
33
34 public:
35   gr_fxpt_vco () : d_phase (0) {}
36
37   ~gr_fxpt_vco () {}
38
39   // radians
40   void set_phase (float angle) {
41     d_phase = gr_fxpt::float_to_fixed (angle);
42   }
43
44   void adjust_phase (float delta_phase) {
45     d_phase += gr_fxpt::float_to_fixed (delta_phase);
46   }
47
48   float get_phase () const { return gr_fxpt::fixed_to_float (d_phase); }
49
50   // compute sin and cos for current phase angle
51   void sincos (float *sinx, float *cosx) const
52   {
53     *sinx = gr_fxpt::sin (d_phase);
54     *cosx = gr_fxpt::cos (d_phase);
55   }
56
57   // compute a block at a time
58   void cos (float *output, const float *input, int noutput_items, float k, float ampl = 1.0)
59   {
60     for (int i = 0; i < noutput_items; i++){
61       output[i] = (float)(gr_fxpt::cos (d_phase) * ampl);
62       adjust_phase(input[i] * k);
63     }
64   }
65
66   // compute cos or sin for current phase angle
67   float cos () const { return gr_fxpt::cos (d_phase); }
68   float sin () const { return gr_fxpt::sin (d_phase); }
69 };
70
71 #endif /* INCLUDED_GR_FXPT_VCO_H */