Adds usrp2.sink_32fc, usrp2.sink_16sc, refactoring, cleanup
[debian/gnuradio] / gr-usrp2 / src / usrp2_sink_base.cc
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 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
26
27 #include <usrp2_sink_base.h>
28 #include <gr_io_signature.h>
29 #include <iostream>
30
31 #define USRP2_SINK_BASE_DEBUG 0
32
33 usrp2_sink_base::usrp2_sink_base(const char *name,
34                                  gr_io_signature_sptr input_signature,
35                                  const std::string &ifc,
36                                  const std::string &mac) 
37   throw (std::runtime_error)
38   : usrp2_base(name,
39                input_signature,
40                gr_make_io_signature(0, 0, 0),
41                ifc, mac)
42 {
43   // NOP
44 }
45
46 usrp2_sink_base::~usrp2_sink_base ()
47 {
48   // NOP
49 }
50
51 bool
52 usrp2_sink_base::set_gain(double gain)
53 {
54   return d_u2->set_tx_gain(gain);
55 }
56
57 bool
58 usrp2_sink_base::set_center_freq(double frequency, usrp2::tune_result *tr)
59 {
60   return d_u2->set_tx_center_freq(frequency, tr);
61 }
62
63 bool
64 usrp2_sink_base::set_interp(int interp_factor)
65 {
66   return d_u2->set_tx_interp(interp_factor);
67 }