summaryrefslogtreecommitdiffstats
path: root/host
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2012-05-17 15:50:07 -0700
committerJosh Blum <josh@joshknows.com>2012-05-17 15:50:07 -0700
commit19874c04d49a732189aafa45e2a9638dce810da2 (patch)
tree29ff69efc22d700b571cd157664a4421b7d706bd /host
parentc033017a3f74d90cecd14b99f55402a01d7154ce (diff)
downloaduhd-19874c04d49a732189aafa45e2a9638dce810da2.tar.gz
uhd-19874c04d49a732189aafa45e2a9638dce810da2.tar.bz2
uhd-19874c04d49a732189aafa45e2a9638dce810da2.zip
usrp1: removed print from codec_ctrl last commit
Diffstat (limited to 'host')
-rw-r--r--host/lib/usrp/usrp1/codec_ctrl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/usrp1/codec_ctrl.cpp b/host/lib/usrp/usrp1/codec_ctrl.cpp
index b41e197ca..20a7f9bab 100644
--- a/host/lib/usrp/usrp1/codec_ctrl.cpp
+++ b/host/lib/usrp/usrp1/codec_ctrl.cpp
@@ -392,7 +392,7 @@ double calc_dxc_freq(double target_freq, double rate)
while(delta < -rate) {
delta += rate;
}
- std::cout << std::fixed << "delta: " << delta << std::endl;
+ //std::cout << std::fixed << "delta: " << delta << std::endl;
if (delta >= -rate/2) {
// non-inverted region
dxc_freq = -delta;