diff options
Diffstat (limited to 'gr-uhd/include/gnuradio/uhd/rfnoc_rx_radio.h')
-rw-r--r-- | gr-uhd/include/gnuradio/uhd/rfnoc_rx_radio.h | 168 |
1 files changed, 0 insertions, 168 deletions
diff --git a/gr-uhd/include/gnuradio/uhd/rfnoc_rx_radio.h b/gr-uhd/include/gnuradio/uhd/rfnoc_rx_radio.h deleted file mode 100644 index 6a8e43ad1a..0000000000 --- a/gr-uhd/include/gnuradio/uhd/rfnoc_rx_radio.h +++ /dev/null @@ -1,168 +0,0 @@ -/* -*- c++ -*- */ -/* - * Copyright 2019 Ettus Research, a National Instruments Brand. - * Copyright 2020 Free Software Foundation, Inc. - * - * SPDX-License-Identifier: GPL-3.0-or-later - */ - -#ifndef INCLUDED_GR_UHD_RFNOC_RX_RADIO_H -#define INCLUDED_GR_UHD_RFNOC_RX_RADIO_H - -#include <gnuradio/uhd/api.h> -#include <gnuradio/uhd/rfnoc_block.h> -#include <gnuradio/uhd/rfnoc_graph.h> - -namespace gr { -namespace uhd { - -/*! RFNoC RX Radio - * - * This wraps a radio block into GNU Radio. Note: When doing TX and RX in the - * same flow graph, simply crate an rfnoc_rx_radio and an rfnoc_tx_radio with - * the same block ID. - * - * \ingroup uhd_blk - */ -class GR_UHD_API rfnoc_rx_radio : virtual public rfnoc_block -{ -public: - typedef boost::shared_ptr<rfnoc_rx_radio> sptr; - - /*! - * \param graph Reference to the underlying rfnoc_graph object - * \param block_args Additional block arguments - * \param device_select Device Selection - * \param instance Instance Selection - */ - static sptr make(rfnoc_graph::sptr graph, - const ::uhd::device_addr_t& block_args, - const int device_select, - const int instance); - - //! Set the output sampling rate of the radio block - // - // Note: The actual rate of the radio will be coerced to whatever it is - // capable of. - // - // \param rate The new sampling rate - virtual double set_rate(const double rate) = 0; - - //! Set the antenna for this radio - // - // \param antenna The antenna name (e.g., "RX2"). Valid name depend on the - // underlying hardware. - // \param chan The channel for which this antenna setting is for - virtual void set_antenna(const std::string& antenna, const size_t chan) = 0; - - //! Set the RX frequency for this radio - // - // \param frequency The received frequency (e.g., 1e9) - // \param chan The channel for which this frequency setting is for - virtual double set_frequency(const double frequency, const size_t chan) = 0; - - //! Configure the tune args for this RX radio - // - // \param args The new args (e.g., "mode_n=1") - // \param chan The channel for which this setting is for - virtual void set_tune_args(const ::uhd::device_addr_t& args, const size_t chan) = 0; - - //! Configure the overall gain for this RX radio - // - // \param gain The new gain value (in dB) - // \param chan The channel for which this setting is for - virtual double set_gain(const double gain, const size_t chan) = 0; - - //! Configure a specific gain for this RX radio - // - // \param gain The new gain value (in dB) - // \param name The gain stage name to set - // \param chan The channel for which this setting is for - virtual double - set_gain(const double gain, const std::string& name, const size_t chan) = 0; - - //! Enable/disable the AGC for this RX radio (if available) - // - // \param enable The new setting for the AGC (on or off) - // \param chan The channel for which this setting is for - virtual void set_agc(const bool enable, const size_t chan) = 0; - - //! Switch the gain profile for this RX radio - // - // \param profile The name of the gain profile (e.g., "low-noise") - // \param chan The channel for which this setting is for - virtual void set_gain_profile(const std::string& profile, const size_t chan) = 0; - - //! Set the analog bandwidth for this RX radio - // - // \param bandwidth The new bandwidth, in Hz - // \param chan The channel for which this setting is for - virtual double set_bandwidth(const double bandwidth, const size_t chan) = 0; - - //! Set the LO source for this RX radio - // - // Note: Available sources depend on the underlying hardware. - // - // \param source The new LO source (e.g., "internal") - // \param name The LO name (e.g. "LO1") - // \param chan The channel for which this setting is for - virtual void set_lo_source(const std::string& source, - const std::string& name, - const size_t chan) = 0; - - //! Enable/disable LO export for this RX radio - // - // \param enabled When true, export this LO - // \param name The LO name (e.g. "LO1") - // \param chan The channel for which this setting is for - virtual void set_lo_export_enabled(const bool enabled, - const std::string& name, - const size_t chan) = 0; - - //! Configure the LO frequency explicitly - // - // Consult uhd::rfnoc::radio_control::set_rx_lo_freq() for more details. - // \param freq The new LO frequency - // \param name The LO name (e.g. "LO1") - // \param chan The channel for which this setting is for - virtual double - set_lo_freq(const double freq, const std::string& name, const size_t chan) = 0; - - //! Enable/disable DC offset tracking - // - // Consult uhd::rfnoc::radio_control::set_rx_dc_offset() for more details. - // - // \param enable When true, export this LO - // \param chan The channel for which this setting is for - virtual void set_dc_offset(const bool enable, const size_t chan) = 0; - - //! Set the DC offset value explicitly - // - // Consult uhd::rfnoc::radio_control::set_rx_dc_offset() for more details. - // - // \param offset The DC offset value that gets used for compensation - // \param chan The channel for which this setting is for - virtual void set_dc_offset(const std::complex<double>& offset, const size_t chan) = 0; - - //! Enable/disable IQ imbalance tracking - // - // Consult uhd::rfnoc::radio_control::set_rx_iq_balance() for more details. - // - // \param enable When true, export this LO - // \param chan The channel for which this setting is for - virtual void set_iq_balance(const bool enable, const size_t chan) = 0; - - //! Set the I/Q imbalance correction value explicitly - // - // Consult uhd::rfnoc::radio_control::set_rx_iq_balance() for more details. - // - // \param offset The DC offset value that gets used for compensation - // \param chan The channel for which this setting is for - virtual void set_iq_balance(const std::complex<double>& correction, - const size_t chan) = 0; -}; - -} // namespace uhd -} // namespace gr - -#endif /* INCLUDED_GR_UHD_RFNOC_RX_RADIO_H */ |