AP_Motors: remove @Values from param metadata where @Bitmask exists

This commit is contained in:
Peter Barker 2021-06-22 13:18:24 +10:00 committed by Andrew Tridgell
parent dd8af14e57
commit 183cee3f2c
1 changed files with 0 additions and 1 deletions

View File

@ -113,7 +113,6 @@ const AP_Param::GroupInfo AP_MotorsHeli::var_info[] = {
// @Param: OPTIONS
// @DisplayName: Heli_Options
// @Description: Bitmask of heli options. Bit 0 changes how the pitch, roll, and yaw axis integrator term is managed for low speed and takeoff/landing. In AC 4.0 and earlier, scheme uses a leaky integrator for ground speeds less than 5 m/s and won't let the steady state integrator build above ILMI. The integrator is allowed to build to the ILMI value when it is landed. The other integrator management scheme bases integrator limiting on takeoff and landing. Whenever the aircraft is landed the integrator is set to zero. When the aicraft is airborne, the integrator is only limited by IMAX.
// @Values: 0:I term management based landed state, 1:Leaky I(4.0 and earlier)
// @Bitmask: 0:Use Leaky I
// @User: Standard
AP_GROUPINFO("OPTIONS", 28, AP_MotorsHeli, _heli_options, (uint8_t)HeliOption::USE_LEAKY_I),