diff options
author | eb <eb@221aa14e-8319-0410-a670-987f0aec2ac5> | 2008-10-22 16:20:10 +0000 |
---|---|---|
committer | eb <eb@221aa14e-8319-0410-a670-987f0aec2ac5> | 2008-10-22 16:20:10 +0000 |
commit | 532fa71cbe88afea044339ec47780e200e82e555 (patch) | |
tree | fa05a9efff3c0ea5b039bbf18bf649e78cf80123 | |
parent | 631f63e5cb7a018cad6b6ecd05faf29a3c5e6bf7 (diff) |
added missing tx_interp and rx_decim proxies
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9820 221aa14e-8319-0410-a670-987f0aec2ac5
-rw-r--r-- | usrp2/host/lib/usrp2.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/usrp2/host/lib/usrp2.cc b/usrp2/host/lib/usrp2.cc index 114b925ce2..55f80d8e05 100644 --- a/usrp2/host/lib/usrp2.cc +++ b/usrp2/host/lib/usrp2.cc @@ -210,6 +210,12 @@ namespace usrp2 { return d_impl->set_rx_decim(decimation_factor); } + int + usrp2::rx_decim() + { + return d_impl->rx_decim(); + } + bool usrp2::set_rx_scale_iq(int scale_i, int scale_q) { @@ -297,6 +303,12 @@ namespace usrp2 { return d_impl->set_tx_interp(interpolation_factor); } + int + usrp2::tx_interp() + { + return d_impl->tx_interp(); + } + bool usrp2::set_tx_scale_iq(int scale_i, int scale_q) { |