aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/b200/b200_impl.cpp
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2015-07-03 13:47:53 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2016-05-25 21:37:51 +0200
commitb77653af89ef81e46cfb3a20e2e644893ea0adf3 (patch)
tree1efd8fca7347aec12d652ca2e52f7f628d97b3db /host/lib/usrp/b200/b200_impl.cpp
parent5c2395508b3ec9b3ba6fc928093514421f8110d6 (diff)
downloaduhd-b77653af89ef81e46cfb3a20e2e644893ea0adf3.tar.gz
uhd-b77653af89ef81e46cfb3a20e2e644893ea0adf3.tar.bz2
uhd-b77653af89ef81e46cfb3a20e2e644893ea0adf3.zip
Use TIM-TOS instead of NAV-SOL to determine time lock
Diffstat (limited to 'host/lib/usrp/b200/b200_impl.cpp')
-rw-r--r--host/lib/usrp/b200/b200_impl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/host/lib/usrp/b200/b200_impl.cpp b/host/lib/usrp/b200/b200_impl.cpp
index 43aba2621..4b17b27f0 100644
--- a/host/lib/usrp/b200/b200_impl.cpp
+++ b/host/lib/usrp/b200/b200_impl.cpp
@@ -727,9 +727,9 @@ b200_impl::b200_impl(const uhd::device_addr_t& device_addr, usb_device_handle::s
_tree->access<std::string>(mb_path / "clock_source" / "value").set("gpsdo");
if (not _gps->gps_detected_lea_m8f()) {
- UHD_MSG(status) << "Initializing time to the internal GPSDO" << std::endl;
- const time_t tp = time_t(_gps->get_sensor("gps_time").to_int()+1);
- _tree->access<time_spec_t>(mb_path / "time" / "pps").set(time_spec_t(tp));
+ UHD_MSG(status) << "Initializing time to the internal GPSDO" << std::endl;
+ const time_t tp = time_t(_gps->get_sensor("gps_time").to_int()+1);
+ _tree->access<time_spec_t>(mb_path / "time" / "pps").set(time_spec_t(tp));
}
}