GNU Radio's OsmoSDR Package
uhd_sink_c.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2012 Dimitri Stolnikov <horiz0n@gmx.net>
4  *
5  * GNU Radio is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3, or (at your option)
8  * any later version.
9  *
10  * GNU Radio is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with GNU Radio; see the file COPYING. If not, write to
17  * the Free Software Foundation, Inc., 51 Franklin Street,
18  * Boston, MA 02110-1301, USA.
19  */
20 #ifndef UHD_SINK_C_H
21 #define UHD_SINK_C_H
22 
23 #include <gnuradio/hier_block2.h>
24 #include <gnuradio/uhd/usrp_sink.h>
25 
26 #include "sink_iface.h"
27 
28 class uhd_sink_c;
29 
30 typedef boost::shared_ptr< uhd_sink_c > uhd_sink_c_sptr;
31 
32 uhd_sink_c_sptr make_uhd_sink_c(const std::string &args = "");
33 
34 class uhd_sink_c :
35  public gr::hier_block2,
36  public sink_iface
37 {
38 private:
39  friend uhd_sink_c_sptr make_uhd_sink_c(const std::string &args);
40 
41  uhd_sink_c(const std::string &args);
42 
43 public:
44  ~uhd_sink_c();
45 
46  static std::vector< std::string > get_devices();
47 
48  std::string name();
49 
50  size_t get_num_channels( void );
51 
53  double set_sample_rate( double rate );
54  double get_sample_rate( void );
55 
56  osmosdr::freq_range_t get_freq_range( size_t chan = 0 );
57  double set_center_freq( double freq, size_t chan = 0 );
58  double get_center_freq( size_t chan = 0 );
59  double set_freq_corr( double ppm, size_t chan = 0 );
60  double get_freq_corr( size_t chan = 0 );
61 
62  std::vector<std::string> get_gain_names( size_t chan = 0 );
63  osmosdr::gain_range_t get_gain_range( size_t chan = 0 );
64  osmosdr::gain_range_t get_gain_range( const std::string & name, size_t chan = 0 );
65  double set_gain( double gain, size_t chan = 0 );
66  double set_gain( double gain, const std::string & name, size_t chan = 0 );
67  double get_gain( size_t chan = 0 );
68  double get_gain( const std::string & name, size_t chan = 0 );
69 
70  std::vector< std::string > get_antennas( size_t chan = 0 );
71  std::string set_antenna( const std::string & antenna, size_t chan = 0 );
72  std::string get_antenna( size_t chan = 0 );
73 
74  void set_dc_offset( const std::complex<double> &offset, size_t chan = 0 );
75 
76  void set_iq_balance( const std::complex<double> &balance, size_t chan = 0 );
77 
78  double set_bandwidth( double bandwidth, size_t chan = 0 );
79  double get_bandwidth( size_t chan = 0 );
80  osmosdr::freq_range_t get_bandwidth_range( size_t chan = 0 );
81 
82 private:
83  double _center_freq;
84  double _freq_corr;
85  double _lo_offset;
86  gr::uhd::usrp_sink::sptr _snk;
87 };
88 
89 #endif // UHD_SINK_C_H
friend uhd_sink_c_sptr make_uhd_sink_c(const std::string &args)
osmosdr::gain_range_t get_gain_range(size_t chan=0)
osmosdr::freq_range_t get_bandwidth_range(size_t chan=0)
double set_bandwidth(double bandwidth, size_t chan=0)
double set_sample_rate(double rate)
double set_center_freq(double freq, size_t chan=0)
static std::vector< std::string > get_devices()
void set_dc_offset(const std::complex< double > &offset, size_t chan=0)
double set_freq_corr(double ppm, size_t chan=0)
Definition: ranges.h:69
double get_freq_corr(size_t chan=0)
std::vector< std::string > get_antennas(size_t chan=0)
Definition: sink_iface.h:31
std::vector< std::string > get_gain_names(size_t chan=0)
std::string get_antenna(size_t chan=0)
std::string name()
double get_gain(size_t chan=0)
osmosdr::freq_range_t get_freq_range(size_t chan=0)
double get_bandwidth(size_t chan=0)
Definition: uhd_sink_c.h:34
double get_sample_rate(void)
uhd_sink_c_sptr make_uhd_sink_c(const std::string &args="")
std::string set_antenna(const std::string &antenna, size_t chan=0)
void set_iq_balance(const std::complex< double > &balance, size_t chan=0)
double set_gain(double gain, size_t chan=0)
osmosdr::meta_range_t get_sample_rates(void)
double get_center_freq(size_t chan=0)
size_t get_num_channels(void)