gnuradio-core: allow swig to handle exceptions in UDP source/sink
[debian/gnuradio] / gr-usrp2 / src / usrp2_source_base.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2008,2009,2010 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 antenna
45    */
46   bool set_antenna(int ant);
47
48   /*!
49    * \brief Set receiver gain
50    */
51   bool set_gain(double gain);
52
53   /*!
54    * \brief Set receive LO offset frequency
55    */
56   bool set_lo_offset(double frequency);
57
58   /*!
59    * \brief Set receiver center frequency
60    */
61   bool set_center_freq(double frequency, usrp2::tune_result *tr);
62    
63   /*!
64    * \brief Set receive decimation rate
65    */
66   bool set_decim(int decimation_factor);
67
68   /*!
69    * \brief Set receive IQ scale factors
70    */
71   bool set_scale_iq(int scale_i, int scale_q);
72
73   /*!
74    * \brief Get receive decimation rate
75    */
76   int decim();
77
78   /*!
79    * \brief Get the ADC sample rate
80    */
81   bool adc_rate(long *rate);
82
83   /*!
84    * \brief Returns minimum Rx gain 
85    */
86   double gain_min();
87
88   /*!
89    * \brief Returns maximum Rx gain 
90    */
91   double gain_max();
92   
93   /*!
94    * \brief Returns Rx gain db_per_step
95    */
96   double gain_db_per_step();
97   
98   /*!
99    * \brief Returns minimum Rx center frequency
100    */
101   double freq_min();
102
103   /*!
104    * \brief Returns maximum Rx center frequency
105    */
106   double freq_max();
107   
108   /*!
109    * \brief Get Rx daughterboard ID
110    *
111    * \param[out] dbid returns the daughterboard id.
112    *
113    * daughterboard id >= 0 if successful, -1 if no daugherboard installed,
114    * -2 if invalid EEPROM on daughterboard.
115    */
116   bool daughterboard_id(int *dbid);
117
118   /*!
119    * \brief Returns number of receiver overruns
120    */
121   unsigned int overruns();
122
123   /*!
124    * \brief Returns number of missing sequence numbers
125    */
126   unsigned int missing();
127
128   /*!
129    * \brief Called by scheduler when starting flowgraph
130    */
131   virtual bool start();
132   
133   /*!
134    * \brief Called by scheduler when stopping flowgraph
135    */
136   virtual bool stop();
137
138   /*!
139    * \brief Set daughterboard GPIO data direction register.
140    */
141   bool set_gpio_ddr(uint16_t value, uint16_t mask);
142
143   /*!
144    * \brief Set daughterboard GPIO output selection register.
145    */
146   bool set_gpio_sels(std::string sels);
147
148   /*!
149    * \brief Set daughterboard GPIO pin values.
150    */
151   bool write_gpio(uint16_t value, uint16_t mask);
152
153   /*!
154    * \brief Read daughterboard GPIO pin values
155    */
156   bool read_gpio(uint16_t *value);
157
158   /*!
159    * \brief Enable streaming GPIO in sample LSBs
160    */
161   bool enable_gpio_streaming(int enable);
162 };
163
164 #endif /* INCLUDED_USRP2_SOURCE_BASE_H */