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

interval changed

parent 32437124
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,8 @@ class BinaryFileUploader:
self.tmtc_printer = tmtc_printer
self.tm_listener = tm_listener
self.iobc = False
self.send_interval = 1.0
# Will be set later depending on board.
self.send_interval = 0
def perform_file_upload(self):
gui_cl_prompt = input("GUI(0) or command line version (1)? [0/1]: ")
......@@ -89,7 +90,7 @@ class BinaryFileUploader:
iobc_prompt = input("iOBC? [y/n]: ")
if iobc_prompt in ['y', 'yes', 1]:
self.iobc = True
self.send_interval = 0.8
self.send_interval = 1.2
iobc_prompt = True
else:
self.iobc = False
......
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