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