Browse Source

AP_AHRS: Make EKF2 PosDownDerivative interface follow coding conventions

Updates arising from peer review.
mission-4.1.18
Paul Riseborough 9 years ago committed by Andrew Tridgell
parent
commit
ae830b44c4
  1. 2
      libraries/AP_AHRS/AP_AHRS_NavEKF.cpp

2
libraries/AP_AHRS/AP_AHRS_NavEKF.cpp

@ -438,7 +438,7 @@ bool AP_AHRS_NavEKF::get_vert_pos_rate(float &velocity) @@ -438,7 +438,7 @@ bool AP_AHRS_NavEKF::get_vert_pos_rate(float &velocity)
case EKF_TYPE1:
default:
EKF1.getPosDownDerivative(velocity);
velocity = EKF1.getPosDownDerivative();
return true;
case EKF_TYPE2:

Loading…
Cancel
Save