ACM: enable GPS in AHRS for ArduCopter

this is an experiment in centripetal correction for multicopters
This commit is contained in:
Andrew Tridgell 2012-03-23 16:28:10 +11:00
parent d4c8041c51
commit b676caa626

View File

@ -251,7 +251,7 @@ static GPS *g_gps_null;
#if QUATERNION_ENABLE == ENABLED
AP_AHRS_Quaternion ahrs(&imu, g_gps_null);
#else
AP_AHRS_DCM ahrs(&imu, g_gps_null);
AP_AHRS_DCM ahrs(&imu, g_gps);
#endif
AP_TimerProcess timer_scheduler;