Skip to content
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

Plane: Fix metadata (increments) for changed params #26969

Merged
merged 1 commit into from
May 3, 2024
Merged
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
6 changes: 3 additions & 3 deletions ArduPlane/Parameters.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ const AP_Param::Info Plane::var_info[] = {
// @Description: Maximum bank angle commanded in modes with stabilized limits. Increase this value for sharper turns, but decrease to prevent accelerated stalls.
// @Units: deg
// @Range: 0 90
// @Increment: 0.1
// @Increment: 1
// @User: Standard
ASCALAR(roll_limit, "ROLL_LIMIT_DEG", ROLL_LIMIT_DEG),

Expand All @@ -526,7 +526,7 @@ const AP_Param::Info Plane::var_info[] = {
// @Description: Maximum pitch up angle commanded in modes with stabilized limits.
// @Units: deg
// @Range: 0 90
// @Increment: 10
// @Increment: 1
// @User: Standard
ASCALAR(pitch_limit_max, "PTCH_LIM_MAX_DEG", PITCH_MAX),

Expand All @@ -535,7 +535,7 @@ const AP_Param::Info Plane::var_info[] = {
// @Description: Maximum pitch down angle commanded in modes with stabilized limits
// @Units: deg
// @Range: -90 0
// @Increment: 10
// @Increment: 1
// @User: Standard
ASCALAR(pitch_limit_min, "PTCH_LIM_MIN_DEG", PITCH_MIN),

Expand Down
Loading