AP_NMEA_Output: EKF objects have moved into AP_AHRS_NavEKF

This commit is contained in:
Peter Barker 2019-12-10 21:46:48 +11:00 committed by Andrew Tridgell
parent 4ecb602def
commit e6150533fc
1 changed files with 1 additions and 3 deletions

View File

@ -49,9 +49,7 @@ static AP_Logger logger{logger_bitmask};
class DummyVehicle {
public:
NavEKF2 EKF2{&ahrs};
NavEKF3 EKF3{&ahrs};
AP_AHRS_NavEKF ahrs{EKF2, EKF3, AP_AHRS_NavEKF::FLAG_ALWAYS_USE_EKF};
AP_AHRS_NavEKF ahrs{AP_AHRS_NavEKF::FLAG_ALWAYS_USE_EKF};
};
static DummyVehicle vehicle;