AP_SmartRTL: AP_AHRS no longer requires GPS in constructor

This commit is contained in:
Peter Barker 2017-12-02 16:40:49 +11:00 committed by Francisco Ferreira
parent 7646e09349
commit a35e86c2fd
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ public:
RangeFinder rangefinder{serial_manager, ROTATION_PITCH_270};
NavEKF2 EKF2{&ahrs, barometer, rangefinder};
NavEKF3 EKF3{&ahrs, barometer, rangefinder};
AP_AHRS_NavEKF ahrs{ins, barometer, gps, EKF2, EKF3, AP_AHRS_NavEKF::FLAG_ALWAYS_USE_EKF};
AP_AHRS_NavEKF ahrs{ins, barometer, EKF2, EKF3, AP_AHRS_NavEKF::FLAG_ALWAYS_USE_EKF};
};
static DummyVehicle vehicle;