diff options
author | eb | 2008-10-22 16:18:41 +0000 |
---|---|---|
committer | eb | 2008-10-22 16:18:41 +0000 |
commit | 631f63e5cb7a018cad6b6ecd05faf29a3c5e6bf7 (patch) | |
tree | 82134deae3b2970dadf61df773106a1470b572f6 /usrp2/host/include | |
parent | bfe79d23738f24562dc7612049a90e8b20b53f79 (diff) | |
download | gnuradio-631f63e5cb7a018cad6b6ecd05faf29a3c5e6bf7.tar.gz gnuradio-631f63e5cb7a018cad6b6ecd05faf29a3c5e6bf7.tar.bz2 gnuradio-631f63e5cb7a018cad6b6ecd05faf29a3c5e6bf7.zip |
added rx_decim and tx_interp accessors
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9819 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'usrp2/host/include')
-rw-r--r-- | usrp2/host/include/usrp2/usrp2.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/usrp2/host/include/usrp2/usrp2.h b/usrp2/host/include/usrp2/usrp2.h index 9a1b8b549..9fc168791 100644 --- a/usrp2/host/include/usrp2/usrp2.h +++ b/usrp2/host/include/usrp2/usrp2.h @@ -132,6 +132,9 @@ namespace usrp2 { */ bool set_rx_decim(int decimation_factor); + //! Return current decimation factor + int rx_decim(); + /*! * Set receiver IQ magnitude scaling */ @@ -214,6 +217,9 @@ namespace usrp2 { */ bool set_tx_interp(int interpolation_factor); + //! Return current interpolation factor + int tx_interp(); + /*! * Set transmit IQ magnitude scaling */ |