GNU Radio Manual and C++ API Reference  3.10.9.1
The Free & Open Software Radio Ecosystem
fmcomms2_source.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2014 Analog Devices Inc.
4  * Author: Paul Cercueil <paul.cercueil@analog.com>
5  *
6  * SPDX-License-Identifier: GPL-3.0-or-later
7  *
8  */
9 
10 
11 #ifndef INCLUDED_IIO_FMCOMMS2_SOURCE_H
12 #define INCLUDED_IIO_FMCOMMS2_SOURCE_H
13 
14 #include <gnuradio/hier_block2.h>
15 #include <gnuradio/iio/api.h>
16 #include <gnuradio/sync_block.h>
17 
18 #include "device_source.h"
19 
20 namespace gr {
21 namespace iio {
22 
23 /*!
24  * \brief Device specific source for FMComms evaluation cards
25  * \ingroup iio
26  *
27  * \details
28  * This block is a source specifically designed for FMComms2/3/4 evaluation
29  * cards. However, it should support any AD936x based device using an IIO
30  * driver.
31  */
32 template <typename T>
33 class IIO_API fmcomms2_source : virtual public gr::sync_block
34 {
35 public:
36  typedef std::shared_ptr<fmcomms2_source> sptr;
37 
38  static sptr make(const std::string& uri,
39  const std::vector<bool>& ch_en,
40  unsigned long buffer_size);
41 
42  /*!
43  * \brief Key of the packet length tag. If empty no tag will be emitted
44  */
45  virtual void set_len_tag_key(const std::string& len_tag_key = "packet_len") = 0;
46 
47  virtual void set_frequency(double frequency) = 0;
48  virtual void set_samplerate(unsigned long samplerate) = 0;
49  virtual void set_gain_mode(size_t chan, const std::string& mode) = 0;
50  virtual void set_gain(size_t chan, double gain) = 0;
51  virtual void set_quadrature(bool quadrature) = 0;
52  virtual void set_rfdc(bool rfdc) = 0;
53  virtual void set_bbdc(bool bbdc) = 0;
54  virtual void set_filter_params(const std::string& filter_source,
55  const std::string& filter_filename = "",
56  float fpass = 0.0,
57  float fstop = 0.0) = 0;
58 };
59 
63 
64 } // namespace iio
65 } // namespace gr
66 
67 #endif /* INCLUDED_IIO_FMCOMMS2_SOURCE_H */
Device specific source for FMComms evaluation cards.
Definition: fmcomms2_source.h:34
virtual void set_gain(size_t chan, double gain)=0
virtual void set_rfdc(bool rfdc)=0
virtual void set_gain_mode(size_t chan, const std::string &mode)=0
virtual void set_samplerate(unsigned long samplerate)=0
virtual void set_bbdc(bool bbdc)=0
std::shared_ptr< fmcomms2_source > sptr
Definition: fmcomms2_source.h:36
virtual void set_quadrature(bool quadrature)=0
virtual void set_filter_params(const std::string &filter_source, const std::string &filter_filename="", float fpass=0.0, float fstop=0.0)=0
virtual void set_frequency(double frequency)=0
static sptr make(const std::string &uri, const std::vector< bool > &ch_en, unsigned long buffer_size)
virtual void set_len_tag_key(const std::string &len_tag_key="packet_len")=0
Key of the packet length tag. If empty no tag will be emitted.
synchronous 1:1 input to output with history
Definition: sync_block.h:26
#define IIO_API
Definition: gr-iio/include/gnuradio/iio/api.h:18
fmcomms2_source< int16_t > fmcomms2_source_s
Definition: fmcomms2_source.h:60
fmcomms2_source< gr_complex > fmcomms2_source_fc32
Definition: fmcomms2_source.h:62
fmcomms2_source< std::complex< int16_t > > fmcomms2_source_sc16
Definition: fmcomms2_source.h:61
GNU Radio logging wrapper.
Definition: basic_block.h:29