diff options
author | Josh Blum <josh@joshknows.com> | 2010-03-19 18:08:20 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-03-19 18:08:20 -0800 |
commit | 26ada5ee709fc4d7e195d19720b467c14368bc05 (patch) | |
tree | fed7199054d8ae3860fb11499fb199a69ef9336a /host/lib/usrp/usrp2/dsp_impl.cpp | |
parent | 9c436f72cd065c172b04bcefcca71e80591059c6 (diff) | |
download | uhd-26ada5ee709fc4d7e195d19720b467c14368bc05.tar.gz uhd-26ada5ee709fc4d7e195d19720b467c14368bc05.tar.bz2 uhd-26ada5ee709fc4d7e195d19720b467c14368bc05.zip |
added install path for dll, fixed idiotic msvc error where making a vector with proxies crashes the app, seems to be ok with the sptr fix, in other good news, discover usrps works in my vm for the usrp2
Diffstat (limited to 'host/lib/usrp/usrp2/dsp_impl.cpp')
-rw-r--r-- | host/lib/usrp/usrp2/dsp_impl.cpp | 4 |
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 54ed45e41..34cce0afb 100644 --- a/host/lib/usrp/usrp2/dsp_impl.cpp +++ b/host/lib/usrp/usrp2/dsp_impl.cpp @@ -53,7 +53,7 @@ static boost::uint32_t calculate_iq_scale_word(boost::int16_t i, boost::int16_t void usrp2_impl::init_ddc_config(void){ //create the ddc in the rx dsp dict - _rx_dsps["ddc0"] = wax_obj_proxy( + _rx_dsps["ddc0"] = wax_obj_proxy::make( boost::bind(&usrp2_impl::ddc_get, this, _1, _2), boost::bind(&usrp2_impl::ddc_set, this, _1, _2) ); @@ -201,7 +201,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( + _tx_dsps["duc0"] = wax_obj_proxy::make( boost::bind(&usrp2_impl::duc_get, this, _1, _2), boost::bind(&usrp2_impl::duc_set, this, _1, _2) ); |