made echo test more stable

master
Robbe Derks 2021-03-10 16:56:09 +01:00
parent 3bb0408ee6
commit 08eec16960
1 changed files with 2 additions and 2 deletions

View File

@ -14,9 +14,9 @@ def heartbeat_thread(p):
while True:
try:
p.send_heartbeat()
time.sleep(1)
time.sleep(0.5)
except Exception:
break
continue
# Resend every CAN message that has been received on the same bus, but with the data reversed
if __name__ == "__main__":