Merged r9834:9855 from jcorgan/u2-wip into trunk. Catches up gr-usrp2 with the lates...
[debian/gnuradio] / gr-usrp2 / src / usrp2_source_base.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2008 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 #ifndef INCLUDED_USRP2_SOURCE_BASE_H
24 #define INCLUDED_USRP2_SOURCE_BASE_H
25
26 #include <usrp2_base.h>
27
28 /*!
29  * Base class for all USRP2 source blocks
30  */
31 class usrp2_source_base : public usrp2_base 
32 {
33 protected:
34   usrp2_source_base(const char *name,
35                     gr_io_signature_sptr output_signature,
36                     const std::string &ifc,
37                     const std::string &mac)
38     throw (std::runtime_error);
39
40 public:
41   ~usrp2_source_base();
42
43   /*!
44    * \brief Set receiver gain
45    */
46   bool set_gain(double gain);
47
48   /*!
49    * \brief Set receiver center frequency
50    */
51   bool set_center_freq(double frequency, usrp2::tune_result *tr);
52    
53   /*!
54    * \brief Set receive decimation rate
55    */
56   bool set_decim(int decimation_factor);
57
58   /*!
59    * \brief Set receive IQ scale factors
60    */
61   bool set_scale_iq(int scale_i, int scale_q);
62
63   /*!
64    * \brief Get receive decimation rate
65    */
66   int decim();
67
68   /*!
69    * \brief Get the ADC sample rate
70    */
71   bool adc_rate(long *rate);
72
73   /*!
74    * \brief Returns minimum Rx gain 
75    */
76   double gain_min();
77
78   /*!
79    * \brief Returns maximum Rx gain 
80    */
81   double gain_max();
82   
83   /*!
84    * \brief Returns Rx gain db_per_step
85    */
86   double gain_db_per_step();
87   
88   /*!
89    * \brief Returns minimum Rx center frequency
90    */
91   double freq_min();
92
93   /*!
94    * \brief Returns maximum Rx center frequency
95    */
96   double freq_max();
97   
98   /*!
99    * \brief Get Rx daughterboard ID
100    *
101    * \param[out] dbid returns the daughterboard id.
102    *
103    * daughterboard id >= 0 if successful, -1 if no daugherboard installed,
104    * -2 if invalid EEPROM on daughterboard.
105    */
106   bool daughterboard_id(int *dbid);
107
108   /*!
109    * \brief Returns number of receiver overruns
110    */
111   unsigned int overruns();
112
113   /*!
114    * \brief Returns number of missing sequence numbers
115    */
116   unsigned int missing();
117
118   /*!
119    * \brief Called by scheduler when starting flowgraph
120    */
121   virtual bool start();
122   
123   /*!
124    * \brief Called by scheduler when stopping flowgraph
125    */
126   virtual bool stop();
127 };
128
129 #endif /* INCLUDED_USRP2_SOURCE_BASE_H */