summaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/usrp1
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2012-02-28 13:35:50 -0800
committerJosh Blum <josh@joshknows.com>2012-02-28 13:35:50 -0800
commitbd7e53d385431d792a8f7b3a006c3ba5c5d0867d (patch)
tree5873889bc6eb2993a022cceb2ad8433b07ec59c4 /host/lib/usrp/usrp1
parentaa422ece8206ad40dcc27aa31fcaeb6edd8f3e20 (diff)
downloaduhd-bd7e53d385431d792a8f7b3a006c3ba5c5d0867d.tar.gz
uhd-bd7e53d385431d792a8f7b3a006c3ba5c5d0867d.tar.bz2
uhd-bd7e53d385431d792a8f7b3a006c3ba5c5d0867d.zip
usrp: reset cordics on init after tick rate update
Diffstat (limited to 'host/lib/usrp/usrp1')
-rw-r--r--host/lib/usrp/usrp1/usrp1_impl.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/host/lib/usrp/usrp1/usrp1_impl.cpp b/host/lib/usrp/usrp1/usrp1_impl.cpp
index 430ea59c8..e6e4fe70f 100644
--- a/host/lib/usrp/usrp1/usrp1_impl.cpp
+++ b/host/lib/usrp/usrp1/usrp1_impl.cpp
@@ -395,6 +395,15 @@ usrp1_impl::usrp1_impl(const device_addr_t &device_addr){
// do some post-init tasks
////////////////////////////////////////////////////////////////////
this->update_rates();
+
+ //reset cordic rates and their properties to zero
+ BOOST_FOREACH(const std::string &name, _tree->list(mb_path / "rx_dsps")){
+ _tree->access<double>(mb_path / "rx_dsps" / name / "freq" / "value").set(0.0);
+ }
+ BOOST_FOREACH(const std::string &name, _tree->list(mb_path / "tx_dsps")){
+ _tree->access<double>(mb_path / "tx_dsps" / name / "freq" / "value").set(0.0);
+ }
+
if (_tree->list(mb_path / "rx_dsps").size() > 0)
_tree->access<subdev_spec_t>(mb_path / "rx_subdev_spec").set(_rx_subdev_spec);
if (_tree->list(mb_path / "tx_dsps").size() > 0)