diff options
author | Josh Blum <josh@joshknows.com> | 2012-05-17 15:50:07 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-05-17 15:50:07 -0700 |
commit | 19874c04d49a732189aafa45e2a9638dce810da2 (patch) | |
tree | 29ff69efc22d700b571cd157664a4421b7d706bd /host | |
parent | c033017a3f74d90cecd14b99f55402a01d7154ce (diff) | |
download | uhd-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.cpp | 2 |
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; |