From f566645b71a3a8d136249278e323559144eba8e6 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 18 Jun 2026 09:08:17 -0400 Subject: [PATCH] Update transmit.py print start freq --- transmit.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/transmit.py b/transmit.py index 22244ac0..e922da92 100644 --- a/transmit.py +++ b/transmit.py @@ -950,8 +950,9 @@ if __name__ == "__main__": print("Ready to detect carrier") start_time = time.perf_counter() - doppler_start_tz = txr * 1e6 + doppler_start_hz = txr * 1e6 doppler_freq_hz = txr * 1e6 + print(doppler_start_hz) while True: if (input(squelch) == False) and (command_tx == True): doppler_freq_hz = doppler_start_hz + (time.perf_counter() - start_time) * 60