aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/usrp1/usrp1_impl.cpp
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-10-25 19:26:11 -0700
committerJosh Blum <josh@joshknows.com>2011-11-03 20:37:14 -0700
commitdedfa65256470f31a20c99a210457937d3f36056 (patch)
treefff9e4f7d2d1e602343dfe7bbf6400a5e5a48797 /host/lib/usrp/usrp1/usrp1_impl.cpp
parent7f815e124f217f37eb5e612a34ec84c33043aa87 (diff)
downloaduhd-dedfa65256470f31a20c99a210457937d3f36056.tar.gz
uhd-dedfa65256470f31a20c99a210457937d3f36056.tar.bz2
uhd-dedfa65256470f31a20c99a210457937d3f36056.zip
usrp: reorganize frontend paths in tree for correction stuff
Diffstat (limited to 'host/lib/usrp/usrp1/usrp1_impl.cpp')
-rw-r--r--host/lib/usrp/usrp1/usrp1_impl.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/host/lib/usrp/usrp1/usrp1_impl.cpp b/host/lib/usrp/usrp1/usrp1_impl.cpp
index fcc4f36ae..6634b43da 100644
--- a/host/lib/usrp/usrp1/usrp1_impl.cpp
+++ b/host/lib/usrp/usrp1/usrp1_impl.cpp
@@ -272,10 +272,11 @@ usrp1_impl::usrp1_impl(const device_addr_t &device_addr){
.subscribe(boost::bind(&usrp1_impl::update_tx_subdev_spec, this, _1));
BOOST_FOREACH(const std::string &db, _dbc.keys()){
- _tree->create<std::complex<double> >(mb_path / "dboards" / db / "rx_frontends" / "dc_offset" / "value")
+ const fs_path rx_fe_path = mb_path / "rx_frontends" / db;
+ _tree->create<std::complex<double> >(rx_fe_path / "dc_offset" / "value")
.coerce(boost::bind(&usrp1_impl::set_rx_dc_offset, this, db, _1))
.set(std::complex<double>(0.0, 0.0));
- _tree->create<bool>(mb_path / "dboards" / db / "rx_frontends" / "dc_offset" / "enable")
+ _tree->create<bool>(rx_fe_path / "dc_offset" / "enable")
.subscribe(boost::bind(&usrp1_impl::set_enb_rx_dc_offset, this, db, _1))
.set(true);
}