aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2015-04-03 12:55:27 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2016-05-25 21:37:51 +0200
commitab0d62c71cffcdca56c3e10a54c98abb142ca0bc (patch)
treea60a73f149c12d34d5f6a87117e9a2780214c1e2 /host/lib
parentc80d4245ae5f0526a82079d0048af1a30f13e808 (diff)
downloaduhd-ab0d62c71cffcdca56c3e10a54c98abb142ca0bc.tar.gz
uhd-ab0d62c71cffcdca56c3e10a54c98abb142ca0bc.tar.bz2
uhd-ab0d62c71cffcdca56c3e10a54c98abb142ca0bc.zip
Comment out some debugging messages
Diffstat (limited to 'host/lib')
-rw-r--r--host/lib/usrp/gps_ctrl.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/host/lib/usrp/gps_ctrl.cpp b/host/lib/usrp/gps_ctrl.cpp
index b6019efbd..b18382ede 100644
--- a/host/lib/usrp/gps_ctrl.cpp
+++ b/host/lib/usrp/gps_ctrl.cpp
@@ -152,12 +152,14 @@ private:
// Creating a map here because we only want the latest of each message type
for (std::string msg = _recv(); msg.length() > 6; msg = _recv())
{
+ /*
std::stringstream ss;
ss << "Got message ";
for (size_t m = 0; m < msg.size(); m++) {
ss << std::hex << (unsigned int)(unsigned char)msg[m] << " " << std::dec;
}
UHD_MSG(warning) << ss.str() << ":" << std::endl << msg << std::endl;
+ */
// Get UBX-NAV-SOL
const uint8_t nav_sol_head[4] = {0xb5, 0x62, 0x01, 0x06};
const std::string nav_sol_head_str(reinterpret_cast<const char *>(nav_sol_head), 4);
@@ -197,7 +199,7 @@ private:
std::string next_msg = msg.substr(52+8);
- UHD_MSG(warning) << "Next message " << next_msg << std::endl;
+ //UHD_MSG(warning) << "Next message " << next_msg << std::endl;
if (next_msg.find("$") == 0) {
msgs[next_msg.substr(1,5)] = next_msg;
}
@@ -252,7 +254,7 @@ public:
const boost::system_time comm_timeout = boost::get_system_time() + milliseconds(GPS_COMM_TIMEOUT_MS);
while(boost::get_system_time() < comm_timeout) {
reply = _recv();
- UHD_MSG(warning) << "Received " << reply << std::endl;
+ //UHD_MSG(warning) << "Received " << reply << std::endl;
if(reply.find("Command Error") != std::string::npos) {
gps_type = GPS_TYPE_INTERNAL_GPSDO;
break;