Skip to content

Global: fix param increment description #29054

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ArduCopter/Parameters.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const AP_Param::Info Copter::var_info[] = {
// @User: Advanced
// @Units: Hz
// @Range: 0 10
// @Increment: .5
// @Increment: 0.5
GSCALAR(throttle_filt, "PILOT_THR_FILT", 0),

// @Param: PILOT_TKOFF_ALT
Expand Down Expand Up @@ -109,7 +109,7 @@ const AP_Param::Info Copter::var_info[] = {
// @DisplayName: RTL cone slope
// @Description: Defines a cone above home which determines maximum climb
// @Range: 0.5 10.0
// @Increment: .1
// @Increment: 0.1
// @Values: 0:Disabled,1:Shallow,3:Steep
// @User: Standard
GSCALAR(rtl_cone_slope, "RTL_CONE_SLOPE", RTL_CONE_SLOPE_DEFAULT),
Expand Down
2 changes: 1 addition & 1 deletion ArduPlane/quadplane.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ const AP_Param::GroupInfo QuadPlane::var_info2[] = {
// @DisplayName: Throttle expo strength
// @Description: Amount of curvature in throttle curve: 0 is linear, 1 is cubic
// @Range: 0 1
// @Increment: .1
// @Increment: 0.1
// @User: Advanced
AP_GROUPINFO("THROTTLE_EXPO", 10, QuadPlane, throttle_expo, 0.2),

Expand Down
2 changes: 1 addition & 1 deletion ArduSub/Parameters.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const AP_Param::Info Sub::var_info[] = {
// @User: Advanced
// @Units: Hz
// @Range: 0 10
// @Increment: .5
// @Increment: 0.5
GSCALAR(throttle_filt, "PILOT_THR_FILT", 0),

// AP_SerialManager was here
Expand Down
2 changes: 1 addition & 1 deletion Blimp/Parameters.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const AP_Param::Info Blimp::var_info[] = {
// @User: Advanced
// @Units: Hz
// @Range: 0 10
// @Increment: .5
// @Increment: 0.5
GSCALAR(throttle_filt, "PILOT_THR_FILT", 0),

// @Param: PILOT_THR_BHV
Expand Down
Loading