aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormichael-west <michael.west@ettus.com>2016-09-08 11:09:25 -0700
committermichael-west <michael.west@ettus.com>2016-09-08 11:09:25 -0700
commit23198a9092fccbd29336073947db0a4d9aad098d (patch)
tree77d010fe36791f8c7a6b6beb91d02d05a59efb28
parent8e5a81e2096887d7581fd232fb86cc303ca6ecc6 (diff)
downloaduhd-23198a9092fccbd29336073947db0a4d9aad098d.tar.gz
uhd-23198a9092fccbd29336073947db0a4d9aad098d.tar.bz2
uhd-23198a9092fccbd29336073947db0a4d9aad098d.zip
Fix TXCO GPSDO recognition
-rw-r--r--host/lib/usrp/gps_ctrl.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/host/lib/usrp/gps_ctrl.cpp b/host/lib/usrp/gps_ctrl.cpp
index 908f84a00..bfc243d79 100644
--- a/host/lib/usrp/gps_ctrl.cpp
+++ b/host/lib/usrp/gps_ctrl.cpp
@@ -211,7 +211,9 @@ public:
while(boost::get_system_time() < comm_timeout) {
reply = _recv();
//known devices are JL "FireFly" and "LC_XO"
- if(reply.find("FireFly") != std::string::npos or reply.find("LC_XO") != std::string::npos) {
+ if(reply.find("FireFly") != std::string::npos
+ or reply.find("LC_XO") != std::string::npos
+ or reply.find("GPSTCXO") != std::string::npos) {
_gps_type = GPS_TYPE_INTERNAL_GPSDO;
break;
} else if(reply.substr(0, 3) == "$GP") {