gr-osmosdr/include/osmosdr/source.h

325 lines
11 KiB
C
Raw Normal View History

2012-04-06 13:29:14 +00:00
/* -*- c++ -*- */
/*
* Copyright 2012 Dimitri Stolnikov <horiz0n@gmx.net>
*
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
*
* GNU Radio is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNU Radio; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#ifndef INCLUDED_OSMOSDR_SOURCE_H
#define INCLUDED_OSMOSDR_SOURCE_H
2012-04-06 13:29:14 +00:00
#include <osmosdr/api.h>
#include <osmosdr/ranges.h>
2013-05-29 20:34:40 +00:00
#include <gnuradio/hier_block2.h>
2012-04-06 13:29:14 +00:00
namespace osmosdr {
2012-04-06 13:29:14 +00:00
class source;
2012-04-06 13:29:14 +00:00
/*!
* \brief Provides a stream of complex samples.
* \ingroup block
*
2013-05-29 20:34:40 +00:00
* This uses the preferred technique: subclassing gr::hier_block2.
2012-04-06 13:29:14 +00:00
*/
class OSMOSDR_API source : virtual public gr::hier_block2
2012-04-06 13:29:14 +00:00
{
public:
typedef boost::shared_ptr< source > sptr;
/*!
* \brief Return a shared_ptr to a new instance of source.
*
* To avoid accidental use of raw pointers, source's
* constructor is private. osmosdr::source::make is the public
* interface for creating new instances.
*
* \param args the address to identify the hardware
* \return a new osmosdr source block object
*/
static sptr make( const std::string & args = "" );
2012-04-06 13:29:14 +00:00
/*!
2012-04-11 21:37:02 +00:00
* Get the number of channels the underlying radio hardware offers.
* \return the number of available channels
*/
virtual size_t get_num_channels( void ) = 0;
/*!
* \brief seek file to \p seek_point relative to \p whence
*
* \param seek_point sample offset in file
* \param whence one of SEEK_SET, SEEK_CUR, SEEK_END (man fseek)
* \return true on success
*/
virtual bool seek( long seek_point, int whence, size_t chan = 0 ) = 0;
2012-04-11 21:37:02 +00:00
/*!
* Get the possible sample rates for the underlying radio hardware.
2012-04-06 13:29:14 +00:00
* \return a range of rates in Sps
*/
2012-04-11 21:37:02 +00:00
virtual osmosdr::meta_range_t get_sample_rates( void ) = 0;
2012-04-06 13:29:14 +00:00
/*!
2012-04-11 21:37:02 +00:00
* Set the sample rate for the underlying radio hardware.
2012-04-06 13:29:14 +00:00
* This also will select the appropriate IF bandpass, if applicable.
* \param rate a new rate in Sps
*/
2012-04-11 21:37:02 +00:00
virtual double set_sample_rate( double rate ) = 0;
2012-04-06 13:29:14 +00:00
/*!
2012-04-11 21:37:02 +00:00
* Get the sample rate for the underlying radio hardware.
2012-04-06 13:29:14 +00:00
* This is the actual sample rate and may differ from the rate set.
* \return the actual rate in Sps
*/
2012-04-11 21:37:02 +00:00
virtual double get_sample_rate( void ) = 0;
2012-04-06 13:29:14 +00:00
/*!
2012-04-11 21:37:02 +00:00
* Get the tunable frequency range for the underlying radio hardware.
* \param chan the channel index 0 to N-1
2012-04-06 13:29:14 +00:00
* \return the frequency range in Hz
*/
virtual osmosdr::freq_range_t get_freq_range( size_t chan = 0 ) = 0;
/*!
2012-04-11 21:37:02 +00:00
* Tune the underlying radio hardware to the desired center frequency.
2012-04-06 13:29:14 +00:00
* This also will select the appropriate RF bandpass.
* \param freq the desired frequency in Hz
2012-04-11 21:37:02 +00:00
* \param chan the channel index 0 to N-1
* \return the actual frequency in Hz
2012-04-06 13:29:14 +00:00
*/
virtual double set_center_freq( double freq, size_t chan = 0 ) = 0;
/*!
2012-04-11 21:37:02 +00:00
* Get the center frequency the underlying radio hardware is tuned to.
* This is the actual frequency and may differ from the frequency set.
* \param chan the channel index 0 to N-1
2012-04-06 13:29:14 +00:00
* \return the frequency in Hz
*/
virtual double get_center_freq( size_t chan = 0 ) = 0;
/*!
* Set the frequency correction value in parts per million.
2012-04-11 21:37:02 +00:00
* \param ppm the desired correction value in parts per million
* \param chan the channel index 0 to N-1
2012-04-06 13:29:14 +00:00
* \return correction value in parts per million
*/
2012-04-11 21:37:02 +00:00
virtual double set_freq_corr( double ppm, size_t chan = 0 ) = 0;
2012-04-06 13:29:14 +00:00
/*!
* Get the frequency correction value.
2012-04-11 21:37:02 +00:00
* \param chan the channel index 0 to N-1
2012-04-06 13:29:14 +00:00
* \return correction value in parts per million
*/
2012-04-11 21:37:02 +00:00
virtual double get_freq_corr( size_t chan = 0 ) = 0;
2012-04-06 13:29:14 +00:00
/*!
2012-04-11 21:37:02 +00:00
* Get the gain stage names of the underlying radio hardware.
* \param chan the channel index 0 to N-1
* \return a vector of strings containing the names of gain stages
2012-04-06 13:29:14 +00:00
*/
virtual std::vector<std::string> get_gain_names( size_t chan = 0 ) = 0;
/*!
2012-04-11 21:37:02 +00:00
* Get the settable overall gain range for the underlying radio hardware.
* \param chan the channel index 0 to N-1
2012-04-06 13:29:14 +00:00
* \return the gain range in dB
*/
2012-04-11 21:37:02 +00:00
virtual osmosdr::gain_range_t get_gain_range( size_t chan = 0 ) = 0;
2012-04-06 13:29:14 +00:00
/*!
2012-04-11 21:37:02 +00:00
* Get the settable gain range for a specific gain stage.
* \param name the name of the gain stage
* \param chan the channel index 0 to N-1
* \return the gain range in dB
2012-04-06 13:29:14 +00:00
*/
2012-04-11 21:37:02 +00:00
virtual osmosdr::gain_range_t get_gain_range( const std::string & name,
size_t chan = 0 ) = 0;
2012-04-06 13:29:14 +00:00
2012-05-04 22:43:32 +00:00
/*!
* Set the gain mode for the underlying radio hardware.
* This might be supported only for certain hardware types.
* \param automatic the gain mode (true means automatic gain mode)
2012-05-04 22:43:32 +00:00
* \param chan the channel index 0 to N-1
* \return the actual gain mode
*/
virtual bool set_gain_mode( bool automatic, size_t chan = 0 ) = 0;
2012-05-04 22:43:32 +00:00
/*!
* Get the gain mode selected for the underlying radio hardware.
* \param chan the channel index 0 to N-1
* \return the actual gain mode (true means automatic gain mode)
2012-05-04 22:43:32 +00:00
*/
virtual bool get_gain_mode( size_t chan = 0 ) = 0;
2012-04-06 13:29:14 +00:00
/*!
2012-04-11 21:37:02 +00:00
* Set the gain for the underlying radio hardware.
* This function will automatically distribute the desired gain value over
* available gain stages in an appropriate way and return the actual value.
2012-04-06 13:29:14 +00:00
* \param gain the gain in dB
2012-04-11 21:37:02 +00:00
* \param chan the channel index 0 to N-1
* \return the actual gain in dB
2012-04-06 13:29:14 +00:00
*/
2012-04-11 21:37:02 +00:00
virtual double set_gain( double gain, size_t chan = 0 ) = 0;
2012-04-06 13:29:14 +00:00
/*!
2012-04-11 21:37:02 +00:00
* Set the named gain on the underlying radio hardware.
* \param gain the gain in dB
2012-04-06 13:29:14 +00:00
* \param name the name of the gain stage
2012-04-11 21:37:02 +00:00
* \param chan the channel index 0 to N-1
2012-04-06 13:29:14 +00:00
* \return the actual gain in dB
*/
2012-04-11 21:37:02 +00:00
virtual double set_gain( double gain,
const std::string & name,
size_t chan = 0 ) = 0;
2012-04-06 13:29:14 +00:00
/*!
2012-04-11 21:37:02 +00:00
* Get the actual gain setting of the underlying radio hardware.
* \param chan the channel index 0 to N-1
* \return the actual gain in dB
2012-04-06 13:29:14 +00:00
*/
2012-04-11 21:37:02 +00:00
virtual double get_gain( size_t chan = 0 ) = 0;
2012-04-06 13:29:14 +00:00
/*!
2012-04-11 21:37:02 +00:00
* Get the actual gain setting of a named stage.
* \param name the name of the gain stage
* \param chan the channel index 0 to N-1
* \return the actual gain in dB
2012-04-06 13:29:14 +00:00
*/
2012-04-11 21:37:02 +00:00
virtual double get_gain( const std::string & name, size_t chan = 0 ) = 0;
2012-04-06 13:29:14 +00:00
/*!
* Set the IF gain for the underlying radio hardware.
* This function will automatically distribute the desired gain value over
* available IF gain stages in an appropriate way and return the actual value.
* \param gain the gain in dB
* \param chan the channel index 0 to N-1
* \return the actual gain in dB
*/
virtual double set_if_gain( double gain, size_t chan = 0 ) = 0;
/*!
* Set the BB gain for the underlying radio hardware.
* This function will automatically distribute the desired gain value over
* available BB gain stages in an appropriate way and return the actual value.
* \param gain the gain in dB
* \param chan the channel index 0 to N-1
* \return the actual gain in dB
*/
virtual double set_bb_gain( double gain, size_t chan = 0 ) = 0;
2012-04-06 13:29:14 +00:00
/*!
2012-04-11 21:37:02 +00:00
* Get the available antennas of the underlying radio hardware.
* \param chan the channel index 0 to N-1
* \return a vector of strings containing the names of available antennas
2012-04-06 13:29:14 +00:00
*/
2012-04-11 21:37:02 +00:00
virtual std::vector< std::string > get_antennas( size_t chan = 0 ) = 0;
2012-04-06 13:29:14 +00:00
/*!
2012-04-11 21:37:02 +00:00
* Select the active antenna of the underlying radio hardware.
2012-04-28 21:51:00 +00:00
* \param antenna name of the antenna to be selected
2012-04-11 21:37:02 +00:00
* \param chan the channel index 0 to N-1
* \return the actual antenna's name
2012-04-06 13:29:14 +00:00
*/
2012-04-11 21:37:02 +00:00
virtual std::string set_antenna( const std::string & antenna,
size_t chan = 0 ) = 0;
2012-04-06 13:29:14 +00:00
/*!
2012-04-11 21:37:02 +00:00
* Get the actual underlying radio hardware antenna setting.
* \param chan the channel index 0 to N-1
* \return the actual antenna's name
2012-04-06 13:29:14 +00:00
*/
2012-04-11 21:37:02 +00:00
virtual std::string get_antenna( size_t chan = 0 ) = 0;
2013-06-09 18:19:17 +00:00
enum DCOffsetMode {
DCOffsetOff = 0,
DCOffsetManual,
DCOffsetAutomatic
};
/*!
* Set the RX frontend DC correction mode.
* The automatic correction subtracts out the long-run average.
*
* When disabled, the averaging option operation is reset.
* Once in Manual mode, the average value will be held constant until
* the user re-enables the automatic correction or overrides the
* value by manually setting the offset.
*
* \param mode dc offset correction mode: 0 = Off, 1 = Manual, 2 = Automatic
* \param chan the channel index 0 to N-1
*/
virtual void set_dc_offset_mode( int mode, size_t chan = 0) = 0;
/*!
* Set the RX frontend DC offset value.
* The value is complex to control both I and Q.
* Only set this when automatic correction is disabled.
*
* \param offset the dc offset (1.0 is full-scale)
* \param chan the channel index 0 to N-1
*/
virtual void set_dc_offset( const std::complex<double> &offset, size_t chan = 0 ) = 0;
enum IQBalanceMode {
IQBalanceOff = 0,
IQBalanceManual,
IQBalanceAutomatic
};
/*!
* Set the RX frontend IQ balance mode.
*
* \param mode iq balance correction mode: 0 = Off, 1 = Manual, 2 = Automatic
* \param chan the channel index 0 to N-1
*/
virtual void set_iq_balance_mode( int mode, size_t chan = 0 ) = 0;
/*!
* Set the RX frontend IQ balance correction.
* Use this to adjust the magnitude and phase of I and Q.
*
2013-06-09 18:19:17 +00:00
* \param balance the complex correction value
* \param chan the channel index 0 to N-1
*/
2013-06-09 18:19:17 +00:00
virtual void set_iq_balance( const std::complex<double> &balance, size_t chan = 0 ) = 0;
/*!
* Set the bandpass filter on the radio frontend.
* \param bandwidth the filter bandwidth in Hz, set to 0 for automatic selection
* \param chan the channel index 0 to N-1
* \return the actual filter bandwidth in Hz
*/
virtual double set_bandwidth( double bandwidth, size_t chan = 0 ) = 0;
/*!
* Get the actual bandpass filter setting on the radio frontend.
* \param chan the channel index 0 to N-1
* \return the actual filter bandwidth in Hz
*/
virtual double get_bandwidth( size_t chan = 0 ) = 0;
/*!
* Get the possible bandpass filter settings on the radio frontend.
2013-04-26 19:21:56 +00:00
* \param chan the channel index 0 to N-1
* \return a range of bandwidths in Hz
*/
virtual osmosdr::freq_range_t get_bandwidth_range( size_t chan = 0 ) = 0;
2012-04-06 13:29:14 +00:00
};
} /* namespace osmosdr */
#endif /* INCLUDED_OSMOSDR_SOURCE_H */