AP_AHRS: re-run update_trig() after EKF AHRS update

This commit is contained in:
Andrew Tridgell 2014-02-13 19:53:14 +11:00
parent a88212eb7a
commit 801ceacaf2

View File

@ -77,6 +77,7 @@ void AP_AHRS_NavEKF::update(void)
yaw_sensor = degrees(yaw) * 100;
if (yaw_sensor < 0)
yaw_sensor += 36000;
update_trig();
}
}
}