diff options
Diffstat (limited to 'host/lib/usrp/b200')
| -rw-r--r-- | host/lib/usrp/b200/b200_impl.cpp | 8 | 
1 files changed, 3 insertions, 5 deletions
| diff --git a/host/lib/usrp/b200/b200_impl.cpp b/host/lib/usrp/b200/b200_impl.cpp index aeef4025b..070c8fee8 100644 --- a/host/lib/usrp/b200/b200_impl.cpp +++ b/host/lib/usrp/b200/b200_impl.cpp @@ -475,11 +475,9 @@ b200_impl::b200_impl(const device_addr_t &device_addr)          _tree->access<std::string>(mb_path / "time_source" / "value").set("gpsdo");          _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));      }  } | 
