From f2c44413a6f27eb34b8363e87af4745330282eba Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Mon, 27 Oct 2025 14:16:06 -0400 Subject: [PATCH] Update auto-tune.py only print results --- groundstation/auto-tune.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/groundstation/auto-tune.py b/groundstation/auto-tune.py index 82883702..4ed89696 100644 --- a/groundstation/auto-tune.py +++ b/groundstation/auto-tune.py @@ -7,12 +7,12 @@ if __name__ == "__main__": graph = 'n' center_frequency = 434.7e6 if (len(sys.argv)) > 0: - print("There are arguments!") +# print("There are arguments!") center_frequency = float(sys.argv[1]) - 200e3 if (center_frequency == 0): center_frequency = 434.7e6 if (len(sys.argv)) > 1: - print("There are more arguments") +# print("There are more arguments") if (sys.argv[2] == 'g') or (sys.argv[2] == '-g'): graph = 'y' @@ -32,7 +32,7 @@ if __name__ == "__main__": # signal = sdr.read_samples(64*1024) #256 signal = sdr.read_samples(duration*sampling_rate).real #256 - print(f"Center frequency is {center_frequency}") +# print(f"Center frequency is {center_frequency}") sdr.close()