mirror of https://github.com/ArduPilot/ardupilot
AC_PrecLand: add floating point specifier on constant
This commit is contained in:
parent
112ace8adb
commit
63e75459e2
|
@ -102,7 +102,7 @@ const AP_Param::GroupInfo AC_PrecLand::var_info[] = {
|
|||
// @Units: s
|
||||
// @User: Advanced
|
||||
// @RebootRequired: True
|
||||
AP_GROUPINFO("LAG", 9, AC_PrecLand, _lag, 0.02), // 20ms is the old default buffer size (8 frames @ 400hz/2.5ms)
|
||||
AP_GROUPINFO("LAG", 9, AC_PrecLand, _lag, 0.02f), // 20ms is the old default buffer size (8 frames @ 400hz/2.5ms)
|
||||
|
||||
AP_GROUPEND
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue