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