Adds ifc_name() to libusrp2 and gr-usrp2
[debian/gnuradio] / usrp2 / host / lib / usrp2.cc
index 6a54c6da68e6fc8f7aae12be6f9f50919082f743..ab64cb6cdbde5975dc19833105a280f1b7d2161b 100644 (file)
@@ -160,6 +160,12 @@ namespace usrp2 {
     return d_impl->mac_addr();
   }
 
+  std::string
+  usrp2::ifc_name()
+  {
+    return d_impl->ifc_name();
+  }
+
   // Receive
 
   bool 
@@ -413,6 +419,12 @@ namespace usrp2 {
     return d_impl->sync_to_pps();
   }
 
+  bool
+  usrp2::sync_every_pps(bool enable)
+  {
+    return d_impl->sync_every_pps(enable);
+  }
+
   std::vector<uint32_t>
   usrp2::peek32(uint32_t addr, uint32_t words)
   {