From 0cfa505190156aaa28f57e8cb5af0a93bbe7a0aa Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Wed, 18 Feb 2026 23:29:37 -0500 Subject: [PATCH] Update program_fm.py don't print arguments --- groundstation/program_fm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/groundstation/program_fm.py b/groundstation/program_fm.py index 76f1fbeb..20a71fbb 100644 --- a/groundstation/program_fm.py +++ b/groundstation/program_fm.py @@ -7,10 +7,10 @@ if __name__ == "__main__": txf = 434.9e6 rxf = 435e6 if (len(sys.argv)) > 1: - print("There are arguments!") +# print("There are arguments!") txf = float(sys.argv[1]) if (len(sys.argv)) > 2: - print("There are more arguments!") +# print("There are more arguments!") rxf = float(sys.argv[2]) print("Programming FM module!\n") tx = "{:.4f}".format(txf/1e6)