Skip to content

Commit

Permalink
AP_AHRS: support variances from External_AHRS
Browse files Browse the repository at this point in the history
  • Loading branch information
tridge committed Oct 22, 2024
1 parent b69087a commit 04d18f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/AP_AHRS/AP_AHRS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3164,7 +3164,7 @@ bool AP_AHRS::get_variances(float &velVar, float &posVar, float &hgtVar, Vector3

#if AP_AHRS_EXTERNAL_ENABLED
case EKFType::EXTERNAL:
return false;
return external.get_variances(velVar, posVar, hgtVar, magVar, tasVar);
#endif
}

Expand Down

0 comments on commit 04d18f1

Please sign in to comment.