ArduPlane: fixed parameter names

This commit is contained in:
Andrew Tridgell 2024-01-19 20:48:27 +11:00
parent 315f4963cc
commit 0d434c8b54
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ bool AP_Arming_Plane::pre_arm_checks(bool display_failure)
}
if (plane.aparm.roll_limit < 3) {
check_failed(display_failure, "LIM_ROLL_DEG too small (%.1f)", plane.aparm.roll_limit.get());
check_failed(display_failure, "ROLL_LIMIT_DEG too small (%.1f)", plane.aparm.roll_limit.get());
ret = false;
}