Update transmit.py rename tx_doppler

master-b-d
Alan Johnston 1 month ago committed by GitHub
parent 2cd07c5f76
commit 7aa35b3f63
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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)

Loading…
Cancel
Save

Powered by TurnKey Linux.