GPS: detect new style 3DR UBlox
This commit is contained in:
parent
08bc7f1a41
commit
711814085b
@ -165,6 +165,17 @@ AP_GPS_Auto::_detect(void)
|
||||
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
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user