From fc32da0d2ef0c1390c1e995e0f08103818881249 Mon Sep 17 00:00:00 2001 From: Jason Short Date: Sat, 10 Mar 2012 12:39:16 -0800 Subject: [PATCH] ACM: increased the available rate error constrain, it was too low --- ArduCopter/Attitude.pde | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArduCopter/Attitude.pde b/ArduCopter/Attitude.pde index 277e87561b..5188a57a32 100644 --- a/ArduCopter/Attitude.pde +++ b/ArduCopter/Attitude.pde @@ -192,7 +192,7 @@ get_nav_throttle(int32_t z_error) // convert to desired Rate: rate_error = g.pi_alt_hold.get_p(z_error); - rate_error = constrain(rate_error, -150, 150); + rate_error = constrain(rate_error, -250, 250); // limit error to prevent I term wind up z_error = constrain(z_error, -400, 400);