diff options
-rw-r--r-- | host/lib/usrp/gps_ctrl.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/host/lib/usrp/gps_ctrl.cpp b/host/lib/usrp/gps_ctrl.cpp index 8a7b79ba6..84b919620 100644 --- a/host/lib/usrp/gps_ctrl.cpp +++ b/host/lib/usrp/gps_ctrl.cpp @@ -606,8 +606,7 @@ private: std::string reply; if (gps_type == GPS_TYPE_LEA_M8F) { reply = get_cached_sensor("TIMELOCK", GPS_LOCK_FRESHNESS, false, false); - UHD_MSG(warning) << "TIMELOCK is " << reply << std::endl; - return reply == "locked"; + return reply == "TIME LOCKED"; } else { reply = get_cached_sensor("GPGGA", GPS_LOCK_FRESHNESS, false, false); |