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