GNU Radio's OsmoSDR Package
fcd_source_c.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2013 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 FCD_SOURCE_C_H
21 #define FCD_SOURCE_C_H
22 
23 #include <gnuradio/hier_block2.h>
24 
25 #ifdef HAVE_FCD
26 #include <gnuradio/fcd/source_c.h>
27 #endif
28 
29 #ifdef HAVE_FCDPP
30 #include <fcdproplus/fcdproplus.h>
31 #endif
32 
33 #include "source_iface.h"
34 
35 class fcd_source_c;
36 
37 typedef boost::shared_ptr< fcd_source_c > fcd_source_c_sptr;
38 
39 fcd_source_c_sptr make_fcd_source_c( const std::string & args = "" );
40 
41 class fcd_source_c :
42  public gr::hier_block2,
43  public source_iface
44 {
45 private:
46  friend fcd_source_c_sptr make_fcd_source_c(const std::string &args);
47 
48  fcd_source_c(const std::string &args);
49 
50 public:
51  ~fcd_source_c();
52 
53  enum dongle_type {
57  };
58 
59  static std::vector< std::string > get_devices();
60 
61  std::string name();
62 
63  size_t get_num_channels( void );
64 
66  double set_sample_rate( double rate );
67  double get_sample_rate( void );
68 
69  osmosdr::freq_range_t get_freq_range( size_t chan = 0 );
70  double set_center_freq( double freq, size_t chan = 0 );
71  double get_center_freq( size_t chan = 0 );
72  double set_freq_corr( double ppm, size_t chan = 0 );
73  double get_freq_corr( size_t chan = 0 );
74 
75  std::vector<std::string> get_gain_names( size_t chan = 0 );
76  osmosdr::gain_range_t get_gain_range( size_t chan = 0 );
77  osmosdr::gain_range_t get_gain_range( const std::string & name, size_t chan = 0 );
78  double set_gain( double gain, size_t chan = 0 );
79  double set_gain( double gain, const std::string & name, size_t chan = 0 );
80  double get_gain( size_t chan = 0 );
81  double get_gain( const std::string & name, size_t chan = 0 );
82 
83  std::vector< std::string > get_antennas( size_t chan = 0 );
84  std::string set_antenna( const std::string & antenna, size_t chan = 0 );
85  std::string get_antenna( size_t chan = 0 );
86 
87 private:
88  dongle_type _type;
89 #ifdef HAVE_FCD
90  gr::fcd::source_c::sptr _src_v1;
91 #endif
92 #ifdef HAVE_FCDPP
93  gr::fcdproplus::fcdproplus::sptr _src_v2;
94 #endif
95  double _lna_gain, _mix_gain, _bb_gain, _freq;
96  int _correct;
97 };
98 
99 #endif // FCD_SOURCE_C_H
double get_center_freq(size_t chan=0)
double set_sample_rate(double rate)
osmosdr::meta_range_t get_sample_rates(void)
dongle_type
Definition: fcd_source_c.h:53
Definition: source_iface.h:31
double get_gain(size_t chan=0)
size_t get_num_channels(void)
std::string set_antenna(const std::string &antenna, size_t chan=0)
double set_center_freq(double freq, size_t chan=0)
double set_freq_corr(double ppm, size_t chan=0)
Definition: ranges.h:69
std::string name()
double get_sample_rate(void)
std::string get_antenna(size_t chan=0)
Definition: fcd_source_c.h:41
friend fcd_source_c_sptr make_fcd_source_c(const std::string &args)
double set_gain(double gain, size_t chan=0)
double get_freq_corr(size_t chan=0)
fcd_source_c_sptr make_fcd_source_c(const std::string &args="")
std::vector< std::string > get_gain_names(size_t chan=0)
Definition: fcd_source_c.h:55
Definition: fcd_source_c.h:56
static std::vector< std::string > get_devices()
Definition: fcd_source_c.h:54
std::vector< std::string > get_antennas(size_t chan=0)
osmosdr::freq_range_t get_freq_range(size_t chan=0)
osmosdr::gain_range_t get_gain_range(size_t chan=0)