diff options
author | Michael West <michael.west@ettus.com> | 2017-03-29 13:24:32 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-04-05 17:26:28 -0700 |
commit | 748689ae5402b154d78b60d61b67cb96b50d7916 (patch) | |
tree | 8d9ccfc491ccc9505c00728c2553c088189da300 /host | |
parent | e348353c4f5acef6a5ece11e9c336df4c15d65e1 (diff) | |
download | uhd-748689ae5402b154d78b60d61b67cb96b50d7916.tar.gz uhd-748689ae5402b154d78b60d61b67cb96b50d7916.tar.bz2 uhd-748689ae5402b154d78b60d61b67cb96b50d7916.zip |
X300: Increase FW control ACK timeout
- Fixes issue of fw_communication timeout errors on (Windows) systems where clock ticks are >10ms
Diffstat (limited to 'host')
-rw-r--r-- | host/lib/usrp/x300/x300_fw_ctrl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/x300/x300_fw_ctrl.cpp b/host/lib/usrp/x300/x300_fw_ctrl.cpp index 080d235a4..d149dadf3 100644 --- a/host/lib/usrp/x300/x300_fw_ctrl.cpp +++ b/host/lib/usrp/x300/x300_fw_ctrl.cpp @@ -292,7 +292,7 @@ protected: private: niriok_proxy::sptr _drv_proxy; - static const uint32_t READ_TIMEOUT_IN_MS = 10; + static const uint32_t READ_TIMEOUT_IN_MS = 100; static const uint32_t INIT_TIMEOUT_IN_MS = 5000; }; |