fix calculation issue (found by notipa in Discord);

pull/19/head
Bryan Biedenkapp 3 years ago
parent 07fad26ec3
commit 89b5563621

@ -110,6 +110,6 @@ if __name__ == '__main__':
offsetHz = int(cli_args.InputOffset * HZ_MHZ)
rootFreq = cli_args.TxFrequency - cli_args.BaseFrequency
chNo = rootFreq / spaceHz
chNo = int(rootFreq / spaceHz)
print ('\r\nChannel Number: ' + '%x' % chNo)

Loading…
Cancel
Save

Powered by TurnKey Linux.