diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-05-08 14:18:33 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-08-22 10:35:13 -0700 |
commit | 69e4b0ed7f80fc241e9b69f05e2af0d9f52b3521 (patch) | |
tree | 3f154e5135ff5af16e1d996739aad20044a6d52e /host/lib/usrp/dboard/magnesium/magnesium_ad9371_iface.cpp | |
parent | 227fe34217e5430f78c6b679ba215b68a6a5c1a0 (diff) | |
download | uhd-69e4b0ed7f80fc241e9b69f05e2af0d9f52b3521.tar.gz uhd-69e4b0ed7f80fc241e9b69f05e2af0d9f52b3521.tar.bz2 uhd-69e4b0ed7f80fc241e9b69f05e2af0d9f52b3521.zip |
mg: Allow for timeout on retune
set_freq() calls now have a 15 seconds timeout.
Diffstat (limited to 'host/lib/usrp/dboard/magnesium/magnesium_ad9371_iface.cpp')
-rw-r--r-- | host/lib/usrp/dboard/magnesium/magnesium_ad9371_iface.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/host/lib/usrp/dboard/magnesium/magnesium_ad9371_iface.cpp b/host/lib/usrp/dboard/magnesium/magnesium_ad9371_iface.cpp index 6a14f3976..d7d1b43de 100644 --- a/host/lib/usrp/dboard/magnesium/magnesium_ad9371_iface.cpp +++ b/host/lib/usrp/dboard/magnesium/magnesium_ad9371_iface.cpp @@ -5,6 +5,7 @@ // #include "magnesium_ad9371_iface.hpp" +#include "magnesium_constants.hpp" #include <uhd/utils/log.hpp> using namespace uhd; @@ -42,7 +43,8 @@ double magnesium_ad9371_iface::set_frequency( { // Note: This sets the frequency for both channels (1 and 2). auto which = _get_which(dir, chan); - auto actual_freq = request<double>("set_freq", which, freq, false); + auto actual_freq = + request<double>(MAGNESIUM_TUNE_TIMEOUT, "set_freq", which, freq, false); UHD_LOG_TRACE(_log_prefix, _rpc_prefix << "set_freq returned " << actual_freq); return actual_freq; } |