diff options
author | Thomas Tsou <ttsou@vt.edu> | 2010-08-26 12:34:06 -0700 |
---|---|---|
committer | Thomas Tsou <ttsou@vt.edu> | 2010-08-26 12:34:06 -0700 |
commit | af44e589a2ed47f08fa060629b33e441fb2dc4ea (patch) | |
tree | ad970811fc253d03400ee70a41e96066e8cd7b6f /host/lib/usrp/simple_usrp.cpp | |
parent | 4434e8233fadc4eec81d345a6c4e63922d8c01ab (diff) | |
parent | 738f4a86558aca8d2fdfecd480613766bfc82510 (diff) | |
download | uhd-af44e589a2ed47f08fa060629b33e441fb2dc4ea.tar.gz uhd-af44e589a2ed47f08fa060629b33e441fb2dc4ea.tar.bz2 uhd-af44e589a2ed47f08fa060629b33e441fb2dc4ea.zip |
Merge branch 'convert_types' into usrp1
Diffstat (limited to 'host/lib/usrp/simple_usrp.cpp')
-rw-r--r-- | host/lib/usrp/simple_usrp.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/host/lib/usrp/simple_usrp.cpp b/host/lib/usrp/simple_usrp.cpp index 60b25a647..e573d0fc0 100644 --- a/host/lib/usrp/simple_usrp.cpp +++ b/host/lib/usrp/simple_usrp.cpp @@ -168,6 +168,10 @@ public: return _rx_subdev()[SUBDEV_PROP_RSSI].as<float>(); } + dboard_iface::sptr get_rx_dboard_iface(void){ + return _rx_dboard()[DBOARD_PROP_DBOARD_IFACE].as<dboard_iface::sptr>(); + } + /******************************************************************* * TX methods ******************************************************************/ @@ -232,6 +236,10 @@ public: return _tx_subdev()[SUBDEV_PROP_LO_LOCKED].as<bool>(); } + dboard_iface::sptr get_tx_dboard_iface(void){ + return _tx_dboard()[DBOARD_PROP_DBOARD_IFACE].as<dboard_iface::sptr>(); + } + private: device::sptr _dev; wax::obj _mboard(void){ |