20 #ifndef XTRX_SOURCE_C_H
21 #define XTRX_SOURCE_C_H
23 #include <gnuradio/block.h>
24 #include <gnuradio/sync_block.h>
29 static const pmt::pmt_t
TIME_KEY = pmt::string_to_symbol(
"rx_time");
30 static const pmt::pmt_t
RATE_KEY = pmt::string_to_symbol(
"rx_rate");
31 static const pmt::pmt_t
FREQ_KEY = pmt::string_to_symbol(
"rx_freq");
35 typedef std::shared_ptr< xtrx_source_c > xtrx_source_c_sptr;
40 public gr::sync_block,
72 double set_gain(
double gain,
size_t chan = 0 );
73 double set_gain(
double gain,
const std::string &
name,
size_t chan = 0 );
80 std::string
set_antenna(
const std::string & antenna,
size_t chan = 0 );
87 int work (
int noutput_items,
88 gr_vector_const_void_star &input_items,
89 gr_vector_void_star &output_items);
98 unsigned _sample_flags;
106 xtrx_wire_format_t _otw;
Definition: source_iface.h:33
static std::vector< std::string > get_devices()
Definition: xtrx_source_c.h:42
std::vector< std::string > get_gain_names(size_t chan=0)
bool set_gain_mode(bool automatic, size_t chan=0)
osmosdr::meta_range_t get_sample_rates(void)
double set_center_freq(double freq, size_t chan=0)
friend xtrx_source_c_sptr make_xtrx_source_c(const std::string &args)
double get_bandwidth(size_t chan=0)
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)
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)
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
static const pmt::pmt_t TIME_KEY
Definition: xtrx_source_c.h:29
static const pmt::pmt_t FREQ_KEY
Definition: xtrx_source_c.h:31