GNU Radio's TEST Package
bladerf_source_c.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2013-2017 Nuand LLC
4  * Copyright 2013 Dimitri Stolnikov <horiz0n@gmx.net>
5  *
6  * GNU Radio is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3, or (at your option)
9  * any later version.
10  *
11  * GNU Radio is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with GNU Radio; see the file COPYING. If not, write to
18  * the Free Software Foundation, Inc., 51 Franklin Street,
19  * Boston, MA 02110-1301, USA.
20  */
21 #ifndef INCLUDED_BLADERF_SOURCE_C_H
22 #define INCLUDED_BLADERF_SOURCE_C_H
23 
24 #include <gnuradio/sync_block.h>
25 #include "source_iface.h"
26 #include "bladerf_common.h"
27 
28 #include "osmosdr/ranges.h"
29 
30 class bladerf_source_c;
31 
32 /*
33  * We use std::shared_ptr's instead of raw pointers for all access
34  * to gr_blocks (and many other data structures). The shared_ptr gets
35  * us transparent reference counting, which greatly simplifies storage
36  * management issues. This is especially helpful in our hybrid
37  * C++ / Python system.
38  *
39  * See http://www.boost.org/libs/smart_ptr/smart_ptr.htm
40  *
41  * As a convention, the _sptr suffix indicates a std::shared_ptr
42  */
43 typedef std::shared_ptr<bladerf_source_c> bladerf_source_c_sptr;
44 
45 /*!
46  * \brief Return a shared_ptr to a new instance of bladerf_source_c.
47  *
48  * To avoid accidental use of raw pointers, bladerf_source_c's
49  * constructor is private. bladerf_make_source_c is the public
50  * interface for creating new instances.
51  */
52 bladerf_source_c_sptr make_bladerf_source_c(const std::string &args = "");
53 
55  public gr::sync_block,
56  public source_iface,
57  protected bladerf_common
58 {
59 private:
60  // The friend declaration allows bladerf_make_source_c to
61  // access the private constructor.
62  friend bladerf_source_c_sptr make_bladerf_source_c(const std::string &args);
63 
64  bladerf_source_c(const std::string &args);
65 
66  bool is_antenna_valid(const std::string &antenna);
67 
68 public:
69  std::string name();
70 
71  static std::vector<std::string> get_devices();
72 
73  size_t get_max_channels(void);
74  size_t get_num_channels(void);
75 
76  bool start();
77  bool stop();
78 
79  int work(int noutput_items,
80  gr_vector_const_void_star &input_items,
81  gr_vector_void_star &output_items);
82 
84  double set_sample_rate(double rate);
85  double get_sample_rate(void);
86 
88  double set_center_freq(double freq, size_t chan = 0);
89  double get_center_freq(size_t chan = 0);
90 
91  double set_freq_corr(double ppm, size_t chan = 0);
92  double get_freq_corr(size_t chan = 0);
93 
94  std::vector<std::string> get_gain_names(size_t chan = 0);
97  size_t chan = 0);
98  bool set_gain_mode(bool automatic, size_t chan = 0);
99  bool get_gain_mode(size_t chan = 0);
100  double set_gain(double gain, size_t chan = 0);
101  double set_gain(double gain, const std::string &name, size_t chan = 0);
102  double get_gain(size_t chan = 0);
103  double get_gain(const std::string &name, size_t chan = 0);
104 
105  std::vector<std::string> get_antennas(size_t chan = 0);
106  std::string set_antenna(const std::string &antenna, size_t chan = 0);
107  std::string get_antenna(size_t chan = 0);
108 
109  void set_dc_offset_mode(int mode, size_t chan = 0);
110  void set_dc_offset(const std::complex<double> &offset, size_t chan = 0);
111 
112  void set_iq_balance_mode(int mode, size_t chan = 0);
113  void set_iq_balance(const std::complex<double> &balance, size_t chan = 0);
114 
116  double set_bandwidth(double bandwidth, size_t chan = 0);
117  double get_bandwidth(size_t chan = 0);
118 
119  std::vector<std::string> get_clock_sources(size_t mboard);
120  void set_clock_source(const std::string &source, size_t mboard = 0);
121  std::string get_clock_source(size_t mboard);
122 
123  void set_biastee_mode(const std::string &mode);
124 
125  void set_loopback_mode(const std::string &loopback);
126  void set_rx_mux_mode(const std::string &rxmux);
127  void set_agc_mode(const std::string &agcmode);
128 
129 private:
130  // Sample-handling buffers
131  int16_t *_16icbuf; /**< raw samples from bladeRF */
132  gr_complex *_32fcbuf; /**< intermediate buffer to gnuradio */
133 
134  bool _running; /**< is the source running? */
135  bladerf_channel_layout _layout; /**< channel layout */
136  bladerf_gain_mode _agcmode; /**< gain mode when AGC is enabled */
137 
138  gr::thread::mutex d_mutex; /**< mutex to protect set/work access */
139 
140  /* Scaling factor used when converting from int16_t to float */
141  const float SCALING_FACTOR = 2048.0f;
142 };
143 
144 #endif // INCLUDED_BLADERF_SOURCE_C_H
bladerf_source_c_sptr make_bladerf_source_c(const std::string &args="")
Return a shared_ptr to a new instance of bladerf_source_c.
Definition: bladerf_common.h:104
Definition: bladerf_source_c.h:58
double set_sample_rate(double rate)
double set_bandwidth(double bandwidth, size_t chan=0)
size_t get_num_channels(void)
bool get_gain_mode(size_t chan=0)
double get_bandwidth(size_t chan=0)
double get_gain(size_t chan=0)
double set_gain(double gain, const std::string &name, size_t chan=0)
double get_center_freq(size_t chan=0)
std::string name()
int work(int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items)
void set_agc_mode(const std::string &agcmode)
size_t get_max_channels(void)
void set_clock_source(const std::string &source, size_t mboard=0)
void set_biastee_mode(const std::string &mode)
void set_iq_balance(const std::complex< double > &balance, size_t chan=0)
std::string get_clock_source(size_t mboard)
std::vector< std::string > get_gain_names(size_t chan=0)
friend bladerf_source_c_sptr make_bladerf_source_c(const std::string &args)
Return a shared_ptr to a new instance of bladerf_source_c.
osmosdr::gain_range_t get_gain_range(size_t chan=0)
void set_dc_offset_mode(int mode, size_t chan=0)
osmosdr::gain_range_t get_gain_range(const std::string &name, size_t chan=0)
std::vector< std::string > get_antennas(size_t chan=0)
double set_center_freq(double freq, size_t chan=0)
osmosdr::meta_range_t get_sample_rates(void)
static std::vector< std::string > get_devices()
std::string get_antenna(size_t chan=0)
double set_gain(double gain, size_t chan=0)
double get_gain(const std::string &name, size_t chan=0)
std::vector< std::string > get_clock_sources(size_t mboard)
void set_dc_offset(const std::complex< double > &offset, size_t chan=0)
void set_loopback_mode(const std::string &loopback)
bool set_gain_mode(bool automatic, size_t chan=0)
double get_sample_rate(void)
std::string set_antenna(const std::string &antenna, size_t chan=0)
void set_iq_balance_mode(int mode, size_t chan=0)
double get_freq_corr(size_t chan=0)
double set_freq_corr(double ppm, size_t chan=0)
osmosdr::freq_range_t get_bandwidth_range(size_t chan=0)
osmosdr::freq_range_t get_freq_range(size_t chan=0)
void set_rx_mux_mode(const std::string &rxmux)
Definition: source_iface.h:33
Definition: ranges.h:75