aboutsummaryrefslogtreecommitdiffstats
path: root/host/utils
diff options
context:
space:
mode:
authorNicholas Corgan <nick.corgan@ettus.com>2016-01-15 12:36:06 -0800
committerMartin Braun <martin.braun@ettus.com>2016-03-25 10:39:38 -0700
commit8bfc4f541c083a60d27113897b0e7bacbc395717 (patch)
tree9e25c3fd3ff4ef9288a1b53ea9011c6279f7f3d9 /host/utils
parent7b54874264c8b9371c9ca88b0f420e9da5087075 (diff)
downloaduhd-8bfc4f541c083a60d27113897b0e7bacbc395717.tar.gz
uhd-8bfc4f541c083a60d27113897b0e7bacbc395717.tar.bz2
uhd-8bfc4f541c083a60d27113897b0e7bacbc395717.zip
query_gpsdo_sensors: fixed sleep time
Diffstat (limited to 'host/utils')
-rw-r--r--host/utils/query_gpsdo_sensors.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/utils/query_gpsdo_sensors.cpp b/host/utils/query_gpsdo_sensors.cpp
index 4c17c6044..21d26e81e 100644
--- a/host/utils/query_gpsdo_sensors.cpp
+++ b/host/utils/query_gpsdo_sensors.cpp
@@ -1,5 +1,5 @@
//
-// Copyright 2012,2014,2015 Ettus Research LLC
+// Copyright 2012,2014-2016 Ettus Research LLC
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -158,7 +158,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
//instruct the USRP to wait for the next PPS edge, then set the new time on the following PPS
usrp->set_time_unknown_pps(next_pps_time);
//allow some time to make sure the PPS has come…
- boost::this_thread::sleep(boost::posix_time::seconds(1.1));
+ boost::this_thread::sleep(boost::posix_time::milliseconds(1100));
//…then ask
gps_seconds = usrp->get_mboard_sensor("gps_time").to_int();
pps_seconds = usrp->get_time_last_pps().to_ticks(1.0);