From 7aa35b3f63e8f8516ea28a7c102f887c31a51009 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 18 Jun 2026 09:45:43 -0400 Subject: [PATCH] Update transmit.py rename tx_doppler --- transmit.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/transmit.py b/transmit.py index a0135477..abdced43 100644 --- a/transmit.py +++ b/transmit.py @@ -969,10 +969,10 @@ if __name__ == "__main__": print(tx_doppler_start_hz + tx_doppler_shift_hz) while True: if (input(squelch) == False) and (command_tx == True): - doppler_shift_hz = (time.perf_counter() - start_time) * 60 - doppler_freq_hz = doppler_start_hz + doppler_shift_hz - print(doppler_freq_hz) - txr = "{:.3f}".format(doppler_freq_hz/1000) + tx_doppler_shift_hz = (time.perf_counter() - start_time) * 60 + 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) print(txr) print("Carrier detected, starting repeater") output(txLed, 1)