|
|
|
@ -421,7 +421,8 @@ if __name__ == "__main__":
|
|
|
|
txf = float(config[6])
|
|
|
|
txf = float(config[6])
|
|
|
|
tx = "{:.4f}".format(txf)
|
|
|
|
tx = "{:.4f}".format(txf)
|
|
|
|
if (mode == 'e'):
|
|
|
|
if (mode == 'e'):
|
|
|
|
txr = (txf - 290.0) # - 0.1 # Cross Band Repeater mode transmit frequency in 2m band
|
|
|
|
txrf = (txf - 290.0) # - 0.1 # Cross Band Repeater mode transmit frequency in 2m band
|
|
|
|
|
|
|
|
txr = "{:.4f}".format(txrf)
|
|
|
|
print("Transmit frequency: ",txr)
|
|
|
|
print("Transmit frequency: ",txr)
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
print("Transmit frequency: ",tx)
|
|
|
|
print("Transmit frequency: ",tx)
|
|
|
|
|