source: update header documentation

This commit is contained in:
Dimitri Stolnikov 2013-04-26 21:21:56 +02:00
parent e157449a9e
commit 9bd7cbf4e1
2 changed files with 5 additions and 5 deletions

View File

@ -281,6 +281,7 @@ public:
/*! /*!
* Get the possible bandpass filter settings on the radio frontend. * Get the possible bandpass filter settings on the radio frontend.
* \param chan the channel index 0 to N-1
* \return a range of bandwidths in Hz * \return a range of bandwidths in Hz
*/ */
virtual osmosdr::meta_range_t get_bandwidth_range( size_t chan = 0 ) = 0; virtual osmosdr::meta_range_t get_bandwidth_range( size_t chan = 0 ) = 0;

View File

@ -223,8 +223,7 @@ public:
* \param mode iq balance correction mode: 0 = Off, 1 = Manual, 2 = Automatic * \param mode iq balance correction mode: 0 = Off, 1 = Manual, 2 = Automatic
* \param chan the channel index 0 to N-1 * \param chan the channel index 0 to N-1
*/ */
virtual void set_iq_balance_mode( int mode, size_t chan = 0 ) virtual void set_iq_balance_mode( int mode, size_t chan = 0 ) { }
{ return; }
/*! /*!
* Set the RX frontend IQ balance correction. * Set the RX frontend IQ balance correction.
@ -233,8 +232,7 @@ public:
* \param correction the complex correction value * \param correction the complex correction value
* \param chan the channel index 0 to N-1 * \param chan the channel index 0 to N-1
*/ */
virtual void set_iq_balance( const std::complex<double> &correction, size_t chan = 0 ) virtual void set_iq_balance( const std::complex<double> &correction, size_t chan = 0 ) { }
{ return; }
/*! /*!
* Set the bandpass filter on the radio frontend. * Set the bandpass filter on the radio frontend.
@ -253,10 +251,11 @@ public:
/*! /*!
* Get the possible bandpass filter settings on the radio frontend. * Get the possible bandpass filter settings on the radio frontend.
* \param chan the channel index 0 to N-1
* \return a range of bandwidths in Hz * \return a range of bandwidths in Hz
*/ */
virtual osmosdr::meta_range_t get_bandwidth_range( size_t chan = 0 ) virtual osmosdr::meta_range_t get_bandwidth_range( size_t chan = 0 )
{ return osmosdr::meta_range_t(); } { return osmosdr::meta_range_t(); }
}; };
#endif // OSMOSDR_SRC_IFACE_H #endif // OSMOSDR_SRC_IFACE_H