mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-22 15:53:56 -04:00
Tools: relax navigation test accuracy
This commit is contained in:
parent
082f8e42f6
commit
b6bbaed0db
@ -3749,7 +3749,7 @@ class AutoTestCopter(AutoTest):
|
|||||||
# determine if we've successfully navigated to close to
|
# determine if we've successfully navigated to close to
|
||||||
# where we should be:
|
# where we should be:
|
||||||
dist = math.sqrt(delta_ef.x * delta_ef.x + delta_ef.y * delta_ef.y)
|
dist = math.sqrt(delta_ef.x * delta_ef.x + delta_ef.y * delta_ef.y)
|
||||||
dist_max = 0.1
|
dist_max = 0.15
|
||||||
self.progress("dist=%f want <%f" % (dist, dist_max))
|
self.progress("dist=%f want <%f" % (dist, dist_max))
|
||||||
if dist < dist_max:
|
if dist < dist_max:
|
||||||
# success! We've gotten within our target distance
|
# success! We've gotten within our target distance
|
||||||
|
Loading…
Reference in New Issue
Block a user