Browse Source

AP_NavEKF: filter status gets dead_reckoning bit

apm_2208
Randy Mackay 3 years ago
parent
commit
6553b9145a
  1. 1
      libraries/AP_NavEKF/AP_Nav_Common.h

1
libraries/AP_NavEKF/AP_Nav_Common.h

@ -39,6 +39,7 @@ union nav_filter_status { @@ -39,6 +39,7 @@ union nav_filter_status {
bool gps_quality_good : 1; // 15 - true if we can use GPS for navigation
bool initalized : 1; // 16 - true if the EKF has ever been healthy
bool rejecting_airspeed : 1; // 17 - true if we are rejecting airspeed data
bool dead_reckoning : 1; // 18 - true if we are dead reckoning (e.g. no position or velocity source)
} flags;
uint32_t value;
};

Loading…
Cancel
Save