From d2d578710a4463600862b2b20005ad6fb515dee5 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Fri, 13 Jun 2025 11:25:21 -0400 Subject: [PATCH] Update transmit.py shift tx each key --- transmit.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/transmit.py b/transmit.py index 660de332..a77c5ef3 100644 --- a/transmit.py +++ b/transmit.py @@ -299,7 +299,7 @@ if __name__ == "__main__": # print( "{:.4f}".format(txf)) if (mode == 'e'): - txr = (txf - 290.0) - 0.25 # Cross Band Repeater mode transmit frequency in 2m band + txr = (txf - 290.0) # Cross Band Repeater mode transmit frequency in 2m band tx = "{:.4f}".format(txr) else: tx = "{:.4f}".format(txf) @@ -839,6 +839,7 @@ if __name__ == "__main__": system("sudo /etc/init.d/alsa-utils start") print("Finished resetting audio") print("Ready to detect carrier") + tx = tx - 0.05 # shift tx frequency down by 50kHz else: print("FSK")