aboutsummaryrefslogtreecommitdiffstats
path: root/host/utils
diff options
context:
space:
mode:
Diffstat (limited to 'host/utils')
-rw-r--r--host/utils/CMakeLists.txt14
-rw-r--r--host/utils/query_gpsdo_sensors.cpp4
2 files changed, 16 insertions, 2 deletions
diff --git a/host/utils/CMakeLists.txt b/host/utils/CMakeLists.txt
index bf8d88799..6f72c97bc 100644
--- a/host/utils/CMakeLists.txt
+++ b/host/utils/CMakeLists.txt
@@ -192,4 +192,18 @@ IF(ENABLE_USRP2)
ENDIF(ENABLE_USRP2)
+########################################################################
+# Other files that are not utilities or executables
+########################################################################
+IF(WIN32)
+ SET(windows_extra_files
+ FastSendDatagramThreshold.reg
+ )
+ UHD_INSTALL(
+ FILES ${windows_extra_files}
+ DESTINATION ${PKG_DATA_DIR}
+ COMPONENT utilities
+ )
+ENDIF(WIN32)
+
ADD_SUBDIRECTORY(latency)
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);