Browse Source

autotest: allow more time for angle test to retrieve correct angle

Faster speedups mean we can simply not run this loop often enough to see the change
apm_2208
Peter Barker 3 years ago committed by Peter Barker
parent
commit
7284fbc978
  1. 2
      Tools/autotest/arducopter.py

2
Tools/autotest/arducopter.py

@ -6137,7 +6137,7 @@ class AutoTestCopter(AutoTest):
last_send = 0 last_send = 0
while True: while True:
now = self.get_sim_time_cached() now = self.get_sim_time_cached()
if now - tstart > 10: if now - tstart > 100:
raise NotAchievedException("Did not get correct angle back") raise NotAchievedException("Did not get correct angle back")
if now - last_send > 0.1: if now - last_send > 0.1:

Loading…
Cancel
Save