Skip to content
Snippets Groups Projects
Commit 3141cfe0 authored by Andrew Tridgell's avatar Andrew Tridgell
Browse files

GPS: detect new style 3DR UBlox

parent 64d5f4c2
No related branches found
No related tags found
No related merge requests found
...@@ -165,6 +165,17 @@ AP_GPS_Auto::_detect(void) ...@@ -165,6 +165,17 @@ AP_GPS_Auto::_detect(void)
break; break;
} }
// new style 3DR UBlox (April 2012)x
if (0xb5 == fingerprint[0] &&
0x62 == fingerprint[1] &&
0x0d == fingerprint[2] &&
0x01 == fingerprint[3]) {
// new style Ublox
gps = new AP_GPS_UBLOX(_port);
Serial.print_P(PSTR(" ublox "));
break;
}
// //
// MTK v1.6 // MTK v1.6
// //
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment