Browse Source

local_position_estimator: fix typo in params

sbg
Beat Küng 8 years ago committed by Lorenz Meier
parent
commit
b0ee1579a9
  1. 6
      src/modules/local_position_estimator/params.c

6
src/modules/local_position_estimator/params.c

@ -108,7 +108,7 @@ PARAM_DEFINE_FLOAT(LPE_LDR_OFF_Z, 0.00f); @@ -108,7 +108,7 @@ PARAM_DEFINE_FLOAT(LPE_LDR_OFF_Z, 0.00f);
* Larger than data sheet to account for tilt error.
*
* @group Local Position Estimator
* @unit m/s^2/srqt(Hz)
* @unit m/s^2/sqrt(Hz)
* @min 0.00001
* @max 2
* @decimal 4
@ -121,7 +121,7 @@ PARAM_DEFINE_FLOAT(LPE_ACC_XY, 0.012f); @@ -121,7 +121,7 @@ PARAM_DEFINE_FLOAT(LPE_ACC_XY, 0.012f);
* Data sheet noise density = 150ug/sqrt(Hz) = 0.0015 m/s^2/sqrt(Hz)
*
* @group Local Position Estimator
* @unit m/s^2/srqt(Hz)
* @unit m/s^2/sqrt(Hz)
* @min 0.00001
* @max 2
* @decimal 4
@ -451,4 +451,4 @@ PARAM_DEFINE_FLOAT(LPE_LAND_VXY, 0.05f); @@ -451,4 +451,4 @@ PARAM_DEFINE_FLOAT(LPE_LAND_VXY, 0.05f);
* @bit 6 flow gyro compensation
* @bit 7 fuse baro
*/
PARAM_DEFINE_INT32(LPE_FUSION, 145);
PARAM_DEFINE_INT32(LPE_FUSION, 145);

Loading…
Cancel
Save