aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/b200
diff options
context:
space:
mode:
authorAndrew Lynch <andrew.lynch@ni.com>2016-05-05 09:30:44 -0500
committerAndrew Lynch <andrew.lynch@ni.com>2016-05-05 09:30:44 -0500
commit60ed2ef4212a74911c490f2bb6b91d791844fcfc (patch)
tree402327e8c70b2554fa68e60994444c801610d8b6 /host/lib/usrp/b200
parent9e8bb7e7d6a8191ff582c40665d1d85ff55328e6 (diff)
downloaduhd-60ed2ef4212a74911c490f2bb6b91d791844fcfc.tar.gz
uhd-60ed2ef4212a74911c490f2bb6b91d791844fcfc.tar.bz2
uhd-60ed2ef4212a74911c490f2bb6b91d791844fcfc.zip
b200: Changed implicit conversion to explicit conversion for wptr
Diffstat (limited to 'host/lib/usrp/b200')
-rw-r--r--host/lib/usrp/b200/b200_impl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/b200/b200_impl.cpp b/host/lib/usrp/b200/b200_impl.cpp
index 3c9fe2e27..734367af1 100644
--- a/host/lib/usrp/b200/b200_impl.cpp
+++ b/host/lib/usrp/b200/b200_impl.cpp
@@ -800,7 +800,7 @@ void b200_impl::setup_radio(const size_t dspno)
_tree->create<bool>(rx_dsp_path / "rate" / "set").set(false);
_tree->access<double>(rx_dsp_path / "rate" / "value")
.coerce(boost::bind(&b200_impl::coerce_rx_samp_rate, this, perif.ddc, dspno, _1))
- .subscribe(boost::bind(&lambda_set_bool_prop, _tree, rx_dsp_path / "rate" / "set", true, _1))
+ .subscribe(boost::bind(&lambda_set_bool_prop, boost::weak_ptr<property_tree>(_tree), rx_dsp_path / "rate" / "set", true, _1))
.subscribe(boost::bind(&b200_impl::update_rx_samp_rate, this, dspno, _1))
;
_tree->create<stream_cmd_t>(rx_dsp_path / "stream_cmd")
@@ -817,7 +817,7 @@ void b200_impl::setup_radio(const size_t dspno)
_tree->create<bool>(tx_dsp_path / "rate" / "set").set(false);
_tree->access<double>(tx_dsp_path / "rate" / "value")
.coerce(boost::bind(&b200_impl::coerce_tx_samp_rate, this, perif.duc, dspno, _1))
- .subscribe(boost::bind(&lambda_set_bool_prop, _tree, tx_dsp_path / "rate" / "set", true, _1))
+ .subscribe(boost::bind(&lambda_set_bool_prop, boost::weak_ptr<property_tree>(_tree), tx_dsp_path / "rate" / "set", true, _1))
.subscribe(boost::bind(&b200_impl::update_tx_samp_rate, this, dspno, _1))
;