Tools: autotest: reduce dummy streamrate

Given we have trouble with the amount of data flowing around, doubling
this seems somewhat unfortunate.
This commit is contained in:
Peter Barker 2018-10-08 18:10:53 +11:00 committed by Peter Barker
parent 04e4484d96
commit b8e1d26708

View File

@ -208,7 +208,7 @@ class AutoTest(ABC):
tstart = self.get_sim_time()
while True:
self.mavproxy.send("set streamrate %u\n" % (self.sitl_streamrate()*2))
self.mavproxy.send("set streamrate %u\n" % (self.sitl_streamrate()+1))
if self.mav is None:
break