AP_NavEKF: Clarify definition for gps_glitching flag

This commit is contained in:
priseborough 2018-03-26 20:16:20 +11:00 committed by Randy Mackay
parent 08189e0754
commit 6a91b294b4

View File

@ -32,7 +32,7 @@ union nav_filter_status {
uint16_t takeoff : 1; // 11 - true if filter is compensating for baro errors during takeoff
uint16_t touchdown : 1; // 12 - true if filter is compensating for baro errors during touchdown
uint16_t using_gps : 1; // 13 - true if we are using GPS position
uint16_t gps_glitching : 1; // 14 - true if the the GPS is glitching
uint16_t gps_glitching : 1; // 14 - true if GPS glitching is affecting navigation accuracy
} flags;
uint16_t value;
};