mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
Plane: To add a judgment of 0 degrees longitude.
This commit is contained in:
parent
41f2450bf4
commit
2f18d1de73
@ -449,7 +449,7 @@ void Plane::update_GPS_10Hz(void)
|
|||||||
// We countdown N number of good GPS fixes
|
// We countdown N number of good GPS fixes
|
||||||
// so that the altitude is more accurate
|
// so that the altitude is more accurate
|
||||||
// -------------------------------------
|
// -------------------------------------
|
||||||
if (current_loc.lat == 0) {
|
if (current_loc.lat == 0 && current_loc.lng == 0) {
|
||||||
ground_start_count = 5;
|
ground_start_count = 5;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
@ -63,7 +63,7 @@ void Plane::navigate()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (next_WP_loc.lat == 0) {
|
if (next_WP_loc.lat == 0 && next_WP_loc.lng == 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user