GNU Radio's TEST Package
plutosdr_source_c.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2017 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 PLUTOSDR_SOURCE_C_H
21#define PLUTOSDR_SOURCE_C_H
22
23#include <gnuradio/blocks/float_to_complex.h>
24#include <gnuradio/blocks/short_to_float.h>
25#include <gnuradio/hier_block2.h>
26#include <iio/pluto_source.h>
27
28#include "source_iface.h"
29
31
32typedef boost::shared_ptr< plutosdr_source_c > plutosdr_source_c_sptr;
33
34plutosdr_source_c_sptr make_plutosdr_source_c(const std::string &args = "");
35
37 public gr::hier_block2,
38 public source_iface
39{
40private:
41 friend plutosdr_source_c_sptr make_plutosdr_source_c(const std::string &args);
42
43 plutosdr_source_c(const std::string &args);
44
45public:
47
48 static std::vector< std::string > get_devices();
49
50 std::string name();
51
52 size_t get_num_channels( void );
53
55 double set_sample_rate( double rate );
56 double get_sample_rate( void );
57
59 double set_center_freq( double freq, size_t chan = 0 );
60 double get_center_freq( size_t chan = 0 );
61
62 double set_freq_corr( double ppm, size_t chan = 0 );
63 double get_freq_corr( size_t chan = 0 );
64
65 std::vector<std::string> get_gain_names( size_t chan = 0 );
67 osmosdr::gain_range_t get_gain_range( const std::string & name, size_t chan = 0 );
68 bool set_gain_mode( bool automatic, size_t chan = 0 );
69 bool get_gain_mode( size_t chan = 0 );
70 double set_gain( double gain, size_t chan = 0 );
71 double set_gain( double gain, const std::string & name, size_t chan = 0 );
72 double get_gain( size_t chan = 0 );
73 double get_gain( const std::string & name, size_t chan = 0 );
74
75 std::vector< std::string > get_antennas( size_t chan = 0 );
76 std::string set_antenna( const std::string & antenna, size_t chan = 0 );
77 std::string get_antenna( size_t chan = 0 );
78
79 double set_bandwidth( double bw, size_t chan = 0 );
80 double get_bandwidth( size_t chan = 0 );
81
82private:
83
84 void set_params(void);
85
86 gr::iio::pluto_source::sptr _src;
87
88 std::string uri;
89 unsigned long long frequency;
90 unsigned long samplerate;
91 unsigned long decimation;
92 unsigned long bandwidth;
93 unsigned long buffer_size;
94 bool quadrature;
95 bool rfdc;
96 bool bbdc;
97 bool gain_auto;
98 double gain_value;
99 std::string filter;
100 bool filter_auto;
101
102 double _freq_corr;
103};
104
105#endif // PLUTOSDR_SOURCE_C_H
Definition: plutosdr_source_c.h:39
double get_gain(const std::string &name, size_t chan=0)
std::vector< std::string > get_antennas(size_t chan=0)
double set_gain(double gain, size_t chan=0)
osmosdr::gain_range_t get_gain_range(size_t chan=0)
double set_center_freq(double freq, size_t chan=0)
double get_bandwidth(size_t chan=0)
double set_sample_rate(double rate)
double get_freq_corr(size_t chan=0)
std::string get_antenna(size_t chan=0)
osmosdr::gain_range_t get_gain_range(const std::string &name, size_t chan=0)
bool get_gain_mode(size_t chan=0)
friend plutosdr_source_c_sptr make_plutosdr_source_c(const std::string &args)
double get_gain(size_t chan=0)
osmosdr::meta_range_t get_sample_rates(void)
double set_bandwidth(double bw, size_t chan=0)
double set_gain(double gain, const std::string &name, size_t chan=0)
osmosdr::freq_range_t get_freq_range(size_t chan=0)
double get_center_freq(size_t chan=0)
double get_sample_rate(void)
std::string name()
size_t get_num_channels(void)
double set_freq_corr(double ppm, size_t chan=0)
static std::vector< std::string > get_devices()
std::vector< std::string > get_gain_names(size_t chan=0)
std::string set_antenna(const std::string &antenna, size_t chan=0)
bool set_gain_mode(bool automatic, size_t chan=0)
Definition: source_iface.h:33
plutosdr_source_c_sptr make_plutosdr_source_c(const std::string &args="")
Definition: ranges.h:75