Skip to content
Snippets Groups Projects
Commit a0d80f2b authored by Robin Mueller's avatar Robin Mueller
Browse files

Unit Test SendReceive adaption

parent 915a3158
No related branches found
No related tags found
No related merge requests found
...@@ -94,7 +94,7 @@ class MultipleCommandSenderReceiver(SequentialCommandSenderReceiver): ...@@ -94,7 +94,7 @@ class MultipleCommandSenderReceiver(SequentialCommandSenderReceiver):
elapsed_time_seconds = 0 elapsed_time_seconds = 0
while elapsed_time_seconds < self.tmTimeout: while elapsed_time_seconds < self.tmTimeout:
elapsed_time_seconds = time.time() - start_time elapsed_time_seconds = time.time() - start_time
tmReady = self.comInterface.dataAvailable(self.tmTimeout) tmReady = self.comInterface.dataAvailable(self.tmTimeout/2.0)
if tmReady: if tmReady:
self.receiveTelemetryAndStoreInformation() self.receiveTelemetryAndStoreInformation()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment