Update transmit.py print rx

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

@ -991,7 +991,8 @@ if __name__ == "__main__":
print(tx_doppler_start_hz)
rx_doppler_start_hz = rxf * 1e6
rx_doppler_shift_hz = 0
print(rx_doppler_start_hz)
print(rx_doppler_start_hz)
print(rx_doppler_freq_hz)
while True:
if (input(squelch) == False) and (command_tx == True):
tx_doppler_shift_hz = (time.perf_counter() - start_time) * 60
@ -1000,8 +1001,9 @@ if __name__ == "__main__":
txr = "{:.3f}".format(tx_doppler_freq_hz/1000)
print(txr)
rx_doppler_freq_hz = rx_doppler_start_hz + tx_doppler_shift_hz
print(rx_doppler_freq_hz)
rx = "{:.3f}".format(rx_doppler_freq_hz/1e6)
print(tx)
print(rx)
program_fm(rx,tx,rxpl_value,sq,txpl_value)
print("Carrier detected")
start_repeater(txr)

Loading…
Cancel
Save

Powered by TurnKey Linux.