aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/usrp2/dsp_impl.cpp
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-04-05 16:36:51 -0700
committerJosh Blum <josh@joshknows.com>2010-04-05 16:36:51 -0700
commit97496ace66842f9d7529793b2b202be9abe156c3 (patch)
treeb3c584cba724e346e353dd82560644edbf92bfd6 /host/lib/usrp/usrp2/dsp_impl.cpp
parent1cc8c6c964d4368d9e918e4cb357600453a24c94 (diff)
downloaduhd-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/dsp_impl.cpp')
-rw-r--r--host/lib/usrp/usrp2/dsp_impl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/usrp2/dsp_impl.cpp b/host/lib/usrp/usrp2/dsp_impl.cpp
index 559ea38d8..92b55d029 100644
--- a/host/lib/usrp/usrp2/dsp_impl.cpp
+++ b/host/lib/usrp/usrp2/dsp_impl.cpp
@@ -66,7 +66,7 @@ pick_closest_rate(double exact_rate, const std::vector<rate_t> &rates){
void usrp2_impl::init_ddc_config(void){
//create the ddc in the rx dsp dict
- _rx_dsps["ddc0"] = wax_obj_proxy::make(
+ _rx_dsp_proxy = wax_obj_proxy::make(
boost::bind(&usrp2_impl::ddc_get, this, _1, _2),
boost::bind(&usrp2_impl::ddc_set, this, _1, _2)
);
@@ -149,7 +149,7 @@ void usrp2_impl::ddc_set(const wax::obj &key, const wax::obj &val){
**********************************************************************/
void usrp2_impl::init_duc_config(void){
//create the duc in the tx dsp dict
- _tx_dsps["duc0"] = wax_obj_proxy::make(
+ _tx_dsp_proxy = wax_obj_proxy::make(
boost::bind(&usrp2_impl::duc_get, this, _1, _2),
boost::bind(&usrp2_impl::duc_set, this, _1, _2)
);