diff options
author | Nicholas Corgan <nick.corgan@ettus.com> | 2014-08-29 10:06:47 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2014-09-23 13:05:37 -0700 |
commit | df0c602c43959d15b5102fefe0b2d999a6b27141 (patch) | |
tree | 8ed90309e420d9780c77620ccc4bad8476a63611 /host/lib/usrp/e100 | |
parent | 0d6454b27b99a137c55bc772a641e0df9d7ddaa0 (diff) | |
download | uhd-df0c602c43959d15b5102fefe0b2d999a6b27141.tar.gz uhd-df0c602c43959d15b5102fefe0b2d999a6b27141.tar.bz2 uhd-df0c602c43959d15b5102fefe0b2d999a6b27141.zip |
usrp: don't print duplicate GPSDO detection messages
Diffstat (limited to 'host/lib/usrp/e100')
-rw-r--r-- | host/lib/usrp/e100/e100_impl.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/host/lib/usrp/e100/e100_impl.cpp b/host/lib/usrp/e100/e100_impl.cpp index b49ba64a2..1d026e2bf 100644 --- a/host/lib/usrp/e100/e100_impl.cpp +++ b/host/lib/usrp/e100/e100_impl.cpp @@ -1,5 +1,5 @@ // -// Copyright 2010-2012 Ettus Research LLC +// Copyright 2010-2012,2014 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 @@ -259,7 +259,6 @@ e100_impl::e100_impl(const uhd::device_addr_t &device_addr){ } if (_gps and _gps->gps_detected()) { - UHD_MSG(status) << "found" << std::endl; BOOST_FOREACH(const std::string &name, _gps->get_sensors()) { _tree->create<sensor_value_t>(mb_path / "sensors" / name) @@ -268,7 +267,6 @@ e100_impl::e100_impl(const uhd::device_addr_t &device_addr){ } else { - UHD_MSG(status) << "not found" << std::endl; std::ofstream(GPSDO_VOLATILE_PATH.string().c_str(), std::ofstream::binary) << "42" << std::endl; } } |