autotest: lower throttle level for lowering altitude in loiter

we were not dropping altitude in the change_alt test
This commit is contained in:
Andrew Tridgell 2012-02-19 23:21:00 +11:00
parent 1e9f53cc44
commit 982e6f22c3

View File

@ -90,7 +90,7 @@ def change_alt(mavproxy, mav, alt_min):
wait_altitude(mav, alt_min, (alt_min + 5))
else:
print("Lower to alt:%u from %u" % (alt_min, m.alt))
mavproxy.send('rc 3 1100\n')
mavproxy.send('rc 3 1070\n')
wait_altitude(mav, (alt_min -5), alt_min)
mavproxy.send('rc 3 1430\n')
return True