GNU Radio's TEST Package
xtrx_source_c.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2016,2017 Sergey Kostanbaev <sergey.kostanbaev@fairwaves.co>
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 XTRX_SOURCE_C_H
21#define XTRX_SOURCE_C_H
22
23#include <gnuradio/block.h>
24#include <gnuradio/sync_block.h>
25
26#include "source_iface.h"
27#include "xtrx_obj.h"
28
29static const pmt::pmt_t TIME_KEY = pmt::string_to_symbol("rx_time");
30static const pmt::pmt_t RATE_KEY = pmt::string_to_symbol("rx_rate");
31static const pmt::pmt_t FREQ_KEY = pmt::string_to_symbol("rx_freq");
32
33class xtrx_source_c;
34
35typedef std::shared_ptr< xtrx_source_c > xtrx_source_c_sptr;
36
37xtrx_source_c_sptr make_xtrx_source_c( const std::string & args = "" );
38
39class xtrx_source_c :
40 public gr::sync_block,
41 public source_iface
42{
43private:
44 friend xtrx_source_c_sptr make_xtrx_source_c(const std::string &args);
45
46 xtrx_source_c(const std::string &args);
47
48public:
50
51 std::string name();
52
53 static std::vector< std::string > get_devices( bool fake = false ) { return xtrx_obj::get_devices(); }
54
55 size_t get_num_channels( void );
56
58 double set_sample_rate( double rate );
59 double get_sample_rate( void );
60
62 double set_center_freq( double freq, size_t chan = 0 );
63 double get_center_freq( size_t chan = 0 );
64 double set_freq_corr( double ppm, size_t chan = 0 );
65 double get_freq_corr( size_t chan = 0 );
66
67 std::vector<std::string> get_gain_names( size_t chan = 0 );
69 osmosdr::gain_range_t get_gain_range( const std::string & name, size_t chan = 0 );
70 bool set_gain_mode( bool automatic, size_t chan = 0 );
71 bool get_gain_mode( size_t chan = 0 );
72 double set_gain( double gain, size_t chan = 0 );
73 double set_gain( double gain, const std::string & name, size_t chan = 0 );
74 double get_gain( size_t chan = 0 );
75 double get_gain( const std::string & name, size_t chan = 0 );
76
77 double set_if_gain( double gain, size_t chan = 0 );
78
79 std::vector< std::string > get_antennas( size_t chan = 0 );
80 std::string set_antenna( const std::string & antenna, size_t chan = 0 );
81 std::string get_antenna( size_t chan = 0 );
82
83 double set_bandwidth( double bandwidth, size_t chan = 0 );
84 double get_bandwidth( size_t chan = 0 );
86
87 int work (int noutput_items,
88 gr_vector_const_void_star &input_items,
89 gr_vector_void_star &output_items);
90
91 bool start();
92 bool stop();
93
94private:
95 xtrx_obj_sptr _xtrx;
96 pmt::pmt_t _id;
97
98 unsigned _sample_flags;
99 double _rate;
100 double _master;
101 double _freq;
102 double _corr;
103 double _bandwidth;
104 bool _auto_gain;
105
106 xtrx_wire_format_t _otw;
107 bool _mimo_mode;
108
109 int _gain_lna;
110 int _gain_tia;
111 int _gain_pga;
112
113 unsigned _channels;
114 xtrx_antenna_t _ant;
115
116 bool _swap_ab;
117 bool _swap_iq;
118 bool _loopback;
119 bool _tdd;
120 bool _fbctrl;
121 bool _timekey;
122
123 double _dsp;
124 std::string _dev;
125};
126
127#endif // XTRX_SOURCE_C_H
Definition source_iface.h:33
static std::vector< std::string > get_devices()
Definition xtrx_source_c.h:42
bool set_gain_mode(bool automatic, size_t chan=0)
std::vector< std::string > get_gain_names(size_t chan=0)
osmosdr::meta_range_t get_sample_rates(void)
double set_center_freq(double freq, size_t chan=0)
double get_bandwidth(size_t chan=0)
std::string name()
std::vector< std::string > get_antennas(size_t chan=0)
osmosdr::gain_range_t get_gain_range(size_t chan=0)
double set_freq_corr(double ppm, size_t chan=0)
double set_gain(double gain, size_t chan=0)
std::string set_antenna(const std::string &antenna, size_t chan=0)
double set_gain(double gain, const std::string &name, size_t chan=0)
double set_sample_rate(double rate)
osmosdr::freq_range_t get_bandwidth_range(size_t chan=0)
double set_if_gain(double gain, size_t chan=0)
friend xtrx_source_c_sptr make_xtrx_source_c(const std::string &args)
double get_center_freq(size_t chan=0)
double get_gain(const std::string &name, size_t chan=0)
double get_sample_rate(void)
double get_gain(size_t chan=0)
int work(int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items)
double get_freq_corr(size_t chan=0)
size_t get_num_channels(void)
static std::vector< std::string > get_devices(bool fake=false)
Definition xtrx_source_c.h:53
osmosdr::gain_range_t get_gain_range(const std::string &name, size_t chan=0)
osmosdr::freq_range_t get_freq_range(size_t chan=0)
std::string get_antenna(size_t chan=0)
bool get_gain_mode(size_t chan=0)
double set_bandwidth(double bandwidth, size_t chan=0)
meta_range_t freq_range_t
Definition ranges.h:125
meta_range_t gain_range_t
Definition ranges.h:124
Definition ranges.h:75
static const pmt::pmt_t TIME_KEY
Definition xtrx_sink_c.h:33
static const pmt::pmt_t FREQ_KEY
Definition xtrx_sink_c.h:34
xtrx_source_c_sptr make_xtrx_source_c(const std::string &args="")
static const pmt::pmt_t RATE_KEY
Definition xtrx_source_c.h:30