GNU Radio 3.6.5 C++ API

fcd_source_c.h

Go to the documentation of this file.
00001 /* -*- c++ -*- */
00002 /*
00003  * Copyright 2011-2012 Free Software Foundation, Inc.
00004  *
00005  * GNU Radio is free software; you can redistribute it and/or modify
00006  * it under the terms of the GNU General Public License as published by
00007  * the Free Software Foundation; either version 3, or (at your option)
00008  * any later version.
00009  *
00010  * GNU Radio is distributed in the hope that it will be useful,
00011  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00012  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013  * GNU General Public License for more details.
00014  *
00015  * You should have received a copy of the GNU General Public License
00016  * along with GNU Radio; see the file COPYING.  If not, write to
00017  * the Free Software Foundation, Inc., 51 Franklin Street,
00018  * Boston, MA 02110-1301, USA.
00019  */
00020 
00021 #ifndef INCLUDED_FCD_SOURCE_C_H
00022 #define INCLUDED_FCD_SOURCE_C_H
00023 
00024 #include <fcd_api.h>
00025 #include <gr_hier_block2.h>
00026 
00027 class fcd_source_c;
00028 
00029 typedef boost::shared_ptr<fcd_source_c> fcd_source_c_sptr;
00030 
00031 /*!
00032  * \brief Return a shared_ptr to a new instance of fcd_source_c.
00033  *
00034  * \details
00035  * This is effectively the public constructor. To avoid accidental use
00036  * of raw pointers, fcd_source_c's constructor is private.
00037  * fcd_make_source_c is the public interface for creating new instances.
00038  */
00039 FCD_API fcd_source_c_sptr fcd_make_source_c(const std::string device_name = "");
00040 
00041 /*!
00042  * \brief Funcube Dongle source block.
00043  * \ingroup fcd_blk
00044  *
00045  * \details
00046  * This class provides a Funcube Dongle soure block by wrapping the
00047  * USB audio interface and the USB HID control interface of the Funcube
00048  * Dongle into one convenient source block.
00049  *
00050  * The Funcube Dongle needs to have firmware 18f or later for the control
00051  * interface to work properly. As of early 2011, FCDs still come with firmware
00052  * 18b. You can use qthid 2.2 (not 3) to upgrade the firmware: http://qthid.sf.net
00053  */
00054 class FCD_API fcd_source_c : virtual public gr_hier_block2
00055 {
00056 public:
00057     /*! \brief Set frequency with Hz resolution.
00058      *  \param freq The frequency in Hz
00059      *
00060      * Set the frequency of the Funcube Dongle with 1 Hz resolution applying
00061      * the frequency correction set by set_freq_corr().
00062      *
00063      * \see set_freq_khz()
00064      */
00065     virtual void set_freq(int freq) = 0;
00066 
00067     /*! \brief Set frequency with Hz resolution.
00068      *  \param freq The frequency in Hz
00069      *
00070      * This is a convenience function that uses float parameter in order to allow
00071      * using engineering notation in GRC.
00072      *
00073      * \see set_freq_khz()
00074      */
00075     virtual void set_freq(float freq) = 0;
00076 
00077     /*! \brief Set frequency with kHz resolution.
00078      *  \param freq The frequency in kHz
00079      *
00080      * Sets the frequency of the Funcube Dongle with 1 kHz resolution
00081      * applying the frequency correction set by set_freq_corr().
00082      *
00083      * \see set_freq()
00084      */
00085     virtual void set_freq_khz(int freq) = 0;
00086 
00087     /*! \brief Set LNA gain.
00088      *  \param gain The new gain in dB.
00089      *
00090      * Set the LNA gain in the FCD. Valid range is -5 to 30. Although
00091      * the LNA gain in the FCD takes enumerated values corresponding to
00092      * 2.5 dB steps, you can can call this method with any float value
00093      * and it will be rounded to the nearest valid value.
00094      *
00095      * By default the LNA gain is set to 20 dB and this is a good value for
00096      * most cases. In noisy areas you may try to reduce the gain.
00097      */
00098     virtual void set_lna_gain(float gain) = 0;
00099 
00100     /*! \brief Set mixer gain.
00101      *  \param gain The new gain in dB.
00102      *
00103      * Set the mixer gain in the FCD. Valid values are +4 and +12 dB.
00104      *
00105      * By default the mixer gain is set to +12 dB and this is a good value for
00106      * most cases. In noisy areas you may try to reduce the gain.
00107      */
00108     virtual void set_mixer_gain(float gain) = 0;
00109 
00110     /*! \brief Set new frequency correction.
00111      *  \param ppm The new frequency correction in parts per million
00112      *
00113      * Version 1.1 FCDs (S/N 810 or later) need a correction of -12 ppm.
00114      * Earlier FCDs need roughly -120 ppm (default for gr-fcd).
00115      *
00116      * Ref: http://www.funcubedongle.com/?p=617
00117      */
00118     virtual void set_freq_corr(int ppm) = 0;
00119 
00120     /*! \brief Set DC offset correction.
00121      *  \param _dci DC correction for I component (-1.0 to 1.0)
00122      *  \param _dcq DC correction for Q component (-1.0 to 1.0)
00123      *
00124      * Set DC offset correction in the device. Default is 0.0.
00125      */
00126     virtual void set_dc_corr(double _dci, double _dcq) = 0;
00127 
00128     /*! \brief Set IQ phase and gain balance.
00129      *  \param _gain The gain correction (-1.0 to 1.0)
00130      *  \param _phase The phase correction (-1.0 to 1.0)
00131      *
00132      * Set IQ phase and gain balance in the device. The default values
00133      * are 0.0 for phase and 1.0 for gain.
00134      */
00135     virtual void set_iq_corr(double _gain, double _phase) = 0;
00136 };
00137 
00138 #endif /* INCLUDED_FCD_SOURCE_C_H */