diff options
author | Ashish Chaudhari <ashish@ettus.com> | 2014-02-19 19:22:52 -0800 |
---|---|---|
committer | Ashish Chaudhari <ashish@ettus.com> | 2014-02-19 19:22:52 -0800 |
commit | a8caec5f93976c081d488118f53a72dca49efdf6 (patch) | |
tree | 9d94947be8286acb87cab738703e156b078dfe15 /host/lib/usrp/b200 | |
parent | 7fef199d194c9a63b3312845979fa353f90f4d23 (diff) | |
download | uhd-a8caec5f93976c081d488118f53a72dca49efdf6.tar.gz uhd-a8caec5f93976c081d488118f53a72dca49efdf6.tar.bz2 uhd-a8caec5f93976c081d488118f53a72dca49efdf6.zip |
b200: Fixed bug in rx_dsp_core_3000 that would assume 3 halfbands and X300 settings interface.
Diffstat (limited to 'host/lib/usrp/b200')
-rw-r--r-- | host/lib/usrp/b200/b200_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/b200/b200_impl.cpp b/host/lib/usrp/b200/b200_impl.cpp index 8ed8e99af..74e61143b 100644 --- a/host/lib/usrp/b200/b200_impl.cpp +++ b/host/lib/usrp/b200/b200_impl.cpp @@ -510,7 +510,7 @@ void b200_impl::setup_radio(const size_t dspno) // create rx dsp control objects //////////////////////////////////////////////////////////////////// perif.framer = rx_vita_core_3000::make(perif.ctrl, TOREG(SR_RX_CTRL)); - perif.ddc = rx_dsp_core_3000::make(perif.ctrl, TOREG(SR_RX_DSP)); + perif.ddc = rx_dsp_core_3000::make(perif.ctrl, TOREG(SR_RX_DSP), true /*is_b200?*/); perif.ddc->set_link_rate(10e9/8); //whatever _tree->access<double>(mb_path / "tick_rate") .subscribe(boost::bind(&rx_vita_core_3000::set_tick_rate, perif.framer, _1)) |