From e1df088e52424f3d9b07f328b22d6c73c5804613 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 18 Jun 2026 12:59:09 -0400 Subject: [PATCH] Update transmit.py 20k max doppler shift --- transmit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transmit.py b/transmit.py index 72c50942..315f5cdf 100644 --- a/transmit.py +++ b/transmit.py @@ -994,7 +994,7 @@ if __name__ == "__main__": print(rx_doppler_start_hz) while True: if (input(squelch) == False) and (command_tx == True): - tx_doppler_shift_hz = (time.perf_counter() - start_time) * 60 + tx_doppler_shift_hz = ((time.perf_counter() - start_time) * 100) % 20000 tx_doppler_freq_hz = tx_doppler_start_hz + tx_doppler_shift_hz print(tx_doppler_freq_hz) txr = "{:.3f}".format(tx_doppler_freq_hz/1000)