mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-21 16:18:29 -04:00
NavEKF: Add GPS vertical accuracy to nav_gps_flags
This commit is contained in:
parent
cde1452da3
commit
61023fc636
@ -49,6 +49,7 @@ union nav_gps_status {
|
||||
uint16_t bad_vert_vel : 1; // 7 - true if the GPS vertical speed is too large to start using GPS (this check assumes vehicle is static)
|
||||
uint16_t bad_fix : 1; // 8 - true if the GPS is not providing a 3D fix
|
||||
uint16_t bad_horiz_vel : 1; // 9 - true if the GPS horizontal speed is excessive (this check assumes the vehicle is static)
|
||||
uint16_t bad_vAcc : 1; // 10 - true if reported gps vertical position accuracy is insufficient to start using GPS
|
||||
} flags;
|
||||
uint16_t value;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user