Skip to content

Commit

Permalink
ekf2: Minor parameter description edits
Browse files Browse the repository at this point in the history
  • Loading branch information
priseborough committed Mar 1, 2019
1 parent efddd5f commit 0de2d25
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/modules/ekf2/ekf2_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ class Ekf2 final : public ModuleBase<Ekf2>, public ModuleParams
(ParamFloat<px4::params::EKF2_PCOEF_YP>)
_K_pstatic_coef_yp, ///< static pressure position error coefficient along the positive Y body axis
(ParamFloat<px4::params::EKF2_PCOEF_YN>)
_K_pstatic_coef_yn, ///< static pressure position error coefficient along the negativeY body axis
_K_pstatic_coef_yn, ///< static pressure position error coefficient along the negative Y body axis
(ParamFloat<px4::params::EKF2_PCOEF_Z>)
_K_pstatic_coef_z, ///< static pressure position error coefficient along the Z body axis

Expand Down
4 changes: 2 additions & 2 deletions src/modules/ekf2/ekf2_params.c
Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,7 @@ PARAM_DEFINE_FLOAT(EKF2_PCOEF_XP, 0.0f);
PARAM_DEFINE_FLOAT(EKF2_PCOEF_XN, 0.0f);

/**
* Pressure position error coefficient for the Y axis.
* Pressure position error coefficient for the positive Y axis.
* This is the ratio of static pressure error to dynamic pressure generated by a wind relative velocity along the positive Y (RH) body axis.
* If the baro height estimate rises during sideways flight to the right, then this will be a negative number.
*
Expand All @@ -1214,7 +1214,7 @@ PARAM_DEFINE_FLOAT(EKF2_PCOEF_XN, 0.0f);
PARAM_DEFINE_FLOAT(EKF2_PCOEF_YP, 0.0f);

/**
* Pressure position error coefficient for the Y axis.
* Pressure position error coefficient for the negative Y axis.
* This is the ratio of static pressure error to dynamic pressure generated by a wind relative velocity along the negative Y (LH) body axis.
* If the baro height estimate rises during sideways flight to the left, then this will be a negative number.
*
Expand Down

0 comments on commit 0de2d25

Please sign in to comment.