Skip to content

Commit 50e3ec0

Browse files
committed
AP_NavEKF3: rename EK3_MAX_FLOW to EK3_FLOW_MAX
1 parent 131318a commit 50e3ec0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

libraries/AP_NavEKF3/AP_NavEKF3.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -302,14 +302,14 @@ const AP_Param::GroupInfo NavEKF3::var_info[] = {
302302

303303
// Optical flow measurement parameters
304304

305-
// @Param: MAX_FLOW
306-
// @DisplayName: Maximum valid optical flow rate
307-
// @Description: This sets the magnitude maximum optical flow rate in rad/sec that will be accepted by the filter
305+
// @Param: FLOW_MAX
306+
// @DisplayName: Optical flow rate maximum
307+
// @Description: The maximum optical flow rate in rad/sec that will be accepted by the filter. Flow rates above this value will not be fused.
308308
// @Range: 1.0 4.0
309309
// @Increment: 0.1
310310
// @User: Advanced
311311
// @Units: rad/s
312-
AP_GROUPINFO("MAX_FLOW", 20, NavEKF3, _maxFlowRate, 2.5f),
312+
AP_GROUPINFO("FLOW_MAX", 20, NavEKF3, _maxFlowRate, 2.5f),
313313

314314
// @Param: FLOW_M_NSE
315315
// @DisplayName: Optical flow measurement noise (rad/s)

0 commit comments

Comments
 (0)