added missing tx_interp and rx_decim proxies
authoreb <eb@221aa14e-8319-0410-a670-987f0aec2ac5>
Wed, 22 Oct 2008 16:20:10 +0000 (16:20 +0000)
committereb <eb@221aa14e-8319-0410-a670-987f0aec2ac5>
Wed, 22 Oct 2008 16:20:10 +0000 (16:20 +0000)
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@9820 221aa14e-8319-0410-a670-987f0aec2ac5

usrp2/host/lib/usrp2.cc

index 114b925ce282062986a52628fa59756f61156f64..55f80d8e05716d1ce22e7108e4f268d7b17016fa 100644 (file)
@@ -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)
   {