diff options
author | Josh Blum <josh@joshknows.com> | 2010-10-18 01:03:11 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-10-18 01:03:11 -0700 |
commit | 5e9908fbec19ce9309c12ea61c0303e6666e981a (patch) | |
tree | f82e0a61cabdd87396eda5d6f2118e818a83e306 /gr-uhd/lib/uhd_mimo_source.cc | |
parent | 068aa7f5b2591f7cc06e4495c89600101bd19b6b (diff) |
uhd: removed utils warning functions, moved into the lower level wrappers
Diffstat (limited to 'gr-uhd/lib/uhd_mimo_source.cc')
-rw-r--r-- | gr-uhd/lib/uhd_mimo_source.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-uhd/lib/uhd_mimo_source.cc b/gr-uhd/lib/uhd_mimo_source.cc index 62157142db..abd70ba369 100644 --- a/gr-uhd/lib/uhd_mimo_source.cc +++ b/gr-uhd/lib/uhd_mimo_source.cc @@ -23,7 +23,7 @@ #include <uhd_mimo_source.h> #include <gr_io_signature.h> #include <stdexcept> -#include "utils.h" +//#include "utils.h" /*********************************************************************** * UHD Source @@ -59,7 +59,7 @@ public: void set_samp_rate_all(double rate){ _dev->set_rx_rate_all(rate); - do_samp_rate_error_message(rate, get_samp_rate_all(), "RX"); + //do_samp_rate_error_message(rate, get_samp_rate_all(), "RX"); } double get_samp_rate_all(void){ @@ -68,7 +68,7 @@ public: uhd::tune_result_t set_center_freq(size_t chan, double freq){ uhd::tune_result_t tr = _dev->set_rx_freq(chan, freq); - do_tune_freq_error_message(freq, _dev->get_rx_freq(chan), "RX"); + //do_tune_freq_error_message(freq, _dev->get_rx_freq(chan), "RX"); return tr; } |