diff --git a/utility/obsw_binary_uploader.py b/utility/obsw_binary_uploader.py
index 60c3de66a08d7a357d2ae58b547c3c0d61c3d09b..3e08c2060c68a8e9c4067f63070c574a35a57957 100644
--- a/utility/obsw_binary_uploader.py
+++ b/utility/obsw_binary_uploader.py
@@ -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