From 801853d9c5f0bfd27f1d4400875fe22ee4afefa1 Mon Sep 17 00:00:00 2001 From: rmackay9 Date: Sun, 19 Aug 2012 12:33:21 +0900 Subject: [PATCH] AutoTest: reduced descend throttle for arducopter's change_alt test. --- Tools/autotest/arducopter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/autotest/arducopter.py b/Tools/autotest/arducopter.py index 6896d71671..8597b554cf 100644 --- a/Tools/autotest/arducopter.py +++ b/Tools/autotest/arducopter.py @@ -84,7 +84,7 @@ def loiter(mavproxy, mav, holdtime=60, maxaltchange=20): print("Loiter FAILED") return False -def change_alt(mavproxy, mav, alt_min, climb_throttle=1920, descend_throttle=1120): +def change_alt(mavproxy, mav, alt_min, climb_throttle=1920, descend_throttle=1080): '''change altitude''' m = mav.recv_match(type='VFR_HUD', blocking=True) if(m.alt < alt_min):