GNU Radio's TEST Package
redpitaya_source_c.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2015 Pavel Demin
4 * Copyright 2012 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 REDPITAYA_SOURCE_C_H
22#define REDPITAYA_SOURCE_C_H
23
24#include <gnuradio/sync_block.h>
25
26#include "source_iface.h"
27
28#include "redpitaya_common.h"
29
31
32typedef std::shared_ptr< redpitaya_source_c > redpitaya_source_c_sptr;
33
34redpitaya_source_c_sptr make_redpitaya_source_c( const std::string & args = "" );
35
37 public gr::sync_block,
38 public source_iface
39{
40private:
41 friend redpitaya_source_c_sptr make_redpitaya_source_c(const std::string &args);
42
43 redpitaya_source_c(const std::string &args);
44
45public:
47
48 int work( int noutput_items,
49 gr_vector_const_void_star &input_items,
50 gr_vector_void_star &output_items );
51
52 std::string name();
53
54 static std::vector< std::string > get_devices( bool fake = false );
55
56 size_t get_num_channels( void );
57
59 double set_sample_rate( double rate );
60 double get_sample_rate( void );
61
63 double set_center_freq( double freq, size_t chan = 0 );
64 double get_center_freq( size_t chan = 0 );
65 double set_freq_corr( double ppm, size_t chan = 0 );
66 double get_freq_corr( size_t chan = 0 );
67
68 std::vector<std::string> get_gain_names( size_t chan = 0 );
70 osmosdr::gain_range_t get_gain_range( const std::string & name, size_t chan = 0 );
71 double set_gain( double gain, size_t chan = 0 );
72 double set_gain( double gain, const std::string & name, size_t chan = 0 );
73 double get_gain( size_t chan = 0 );
74 double get_gain( const std::string & name, size_t chan = 0 );
75
76 std::vector< std::string > get_antennas( size_t chan = 0 );
77 std::string set_antenna( const std::string & antenna, size_t chan = 0 );
78 std::string get_antenna( size_t chan = 0 );
79
80private:
81 double _freq, _rate, _corr;
82 SOCKET _sockets[2];
83};
84
85#endif // REDPITAYA_SOURCE_C_H
Definition redpitaya_source_c.h:39
friend redpitaya_source_c_sptr make_redpitaya_source_c(const std::string &args)
std::vector< std::string > get_antennas(size_t chan=0)
int work(int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items)
double set_sample_rate(double rate)
double get_center_freq(size_t chan=0)
double get_freq_corr(size_t chan=0)
double set_gain(double gain, const std::string &name, size_t chan=0)
std::string set_antenna(const std::string &antenna, size_t chan=0)
osmosdr::freq_range_t get_freq_range(size_t chan=0)
osmosdr::gain_range_t get_gain_range(size_t chan=0)
size_t get_num_channels(void)
osmosdr::gain_range_t get_gain_range(const std::string &name, size_t chan=0)
std::string name()
double set_center_freq(double freq, size_t chan=0)
static std::vector< std::string > get_devices(bool fake=false)
double get_gain(const std::string &name, size_t chan=0)
std::string get_antenna(size_t chan=0)
std::vector< std::string > get_gain_names(size_t chan=0)
double get_gain(size_t chan=0)
double set_gain(double gain, size_t chan=0)
double set_freq_corr(double ppm, size_t chan=0)
osmosdr::meta_range_t get_sample_rates(void)
double get_sample_rate(void)
Definition source_iface.h:33
#define SOCKET
Definition redpitaya_common.h:42
redpitaya_source_c_sptr make_redpitaya_source_c(const std::string &args="")
Definition ranges.h:75