Update transmit.py 20k max doppler shift

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

@ -994,7 +994,7 @@ if __name__ == "__main__":
print(rx_doppler_start_hz) print(rx_doppler_start_hz)
while True: while True:
if (input(squelch) == False) and (command_tx == 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 tx_doppler_freq_hz = tx_doppler_start_hz + tx_doppler_shift_hz
print(tx_doppler_freq_hz) print(tx_doppler_freq_hz)
txr = "{:.3f}".format(tx_doppler_freq_hz/1000) txr = "{:.3f}".format(tx_doppler_freq_hz/1000)

Loading…
Cancel
Save

Powered by TurnKey Linux.