aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;