diff options
author | Josh Blum <josh@joshknows.com> | 2010-04-05 16:36:51 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-04-05 16:36:51 -0700 |
commit | 97496ace66842f9d7529793b2b202be9abe156c3 (patch) | |
tree | b3c584cba724e346e353dd82560644edbf92bfd6 /host/lib/usrp/usrp2/dboard_impl.cpp | |
parent | 1cc8c6c964d4368d9e918e4cb357600453a24c94 (diff) | |
download | uhd-97496ace66842f9d7529793b2b202be9abe156c3.tar.gz uhd-97496ace66842f9d7529793b2b202be9abe156c3.tar.bz2 uhd-97496ace66842f9d7529793b2b202be9abe156c3.zip |
simplified the usage of dboard, dsp, and mboard proxies.
removed the dict structure for each, we are just going to have one.
Diffstat (limited to 'host/lib/usrp/usrp2/dboard_impl.cpp')
-rw-r--r-- | host/lib/usrp/usrp2/dboard_impl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/usrp2/dboard_impl.cpp b/host/lib/usrp/usrp2/dboard_impl.cpp index 39e4baa7b..d1515f2d5 100644 --- a/host/lib/usrp/usrp2/dboard_impl.cpp +++ b/host/lib/usrp/usrp2/dboard_impl.cpp @@ -49,11 +49,11 @@ void usrp2_impl::dboard_init(void){ ); //load dboards - _rx_dboards[""] = wax_obj_proxy::make( + _rx_dboard_proxy = wax_obj_proxy::make( boost::bind(&usrp2_impl::rx_dboard_get, this, _1, _2), boost::bind(&usrp2_impl::rx_dboard_set, this, _1, _2) ); - _tx_dboards[""] = wax_obj_proxy::make( + _tx_dboard_proxy = wax_obj_proxy::make( boost::bind(&usrp2_impl::tx_dboard_get, this, _1, _2), boost::bind(&usrp2_impl::tx_dboard_set, this, _1, _2) ); |