diff options
author | Thomas Tsou <ttsou@vt.edu> | 2010-08-27 11:44:55 -0700 |
---|---|---|
committer | Thomas Tsou <ttsou@vt.edu> | 2010-08-27 11:54:29 -0700 |
commit | a455ed962ea29634ef658a0e6cfa58e2790312d6 (patch) | |
tree | e2af048ccd7fdcce9c657ad7f0c8009f80fd94d5 | |
parent | 273a10487699f8c2748a62b55f6f11f34b078f03 (diff) | |
download | uhd-a455ed962ea29634ef658a0e6cfa58e2790312d6.tar.gz uhd-a455ed962ea29634ef658a0e6cfa58e2790312d6.tar.bz2 uhd-a455ed962ea29634ef658a0e6cfa58e2790312d6.zip |
usrp1: Fix fpga load issue by increasing delay after firmware load
500ms is not enough. 1-2 seconds is suitable.
-rw-r--r-- | host/lib/usrp/usrp1/usrp1_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/usrp1/usrp1_impl.cpp b/host/lib/usrp/usrp1/usrp1_impl.cpp index a15d0a244..d37eec566 100644 --- a/host/lib/usrp/usrp1/usrp1_impl.cpp +++ b/host/lib/usrp/usrp1/usrp1_impl.cpp @@ -70,7 +70,7 @@ static device_addrs_t usrp1_find(const device_addr_t &hint) } //wait for things to settle - boost::this_thread::sleep(boost::posix_time::milliseconds(500)); + boost::this_thread::sleep(boost::posix_time::milliseconds(1000)); //get descriptors again with serial number device_list = usb_device_handle::get_device_list(); |