From 44460fc7e9b221e7c1855f62ead8e3844aeac991 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Wed, 18 Feb 2026 23:02:08 -0500 Subject: [PATCH] Update program_fm.py 1e6 --- 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 c64c512a..76f1fbeb 100644 --- a/groundstation/program_fm.py +++ b/groundstation/program_fm.py @@ -13,8 +13,8 @@ if __name__ == "__main__": print("There are more arguments!") rxf = float(sys.argv[2]) print("Programming FM module!\n") - tx = "{:.4f}".format(txf/e6) - rx = "{:.4f}".format(rxf/e6) + tx = "{:.4f}".format(txf/1e6) + rx = "{:.4f}".format(rxf/1e6) print(f"Transmit frequency: {tx}") print(f"Receive frequency: {rx}")