Update frequency.py not kHz anymore

master-bf-test
Alan Johnston 2 weeks ago committed by GitHub
parent b57d9442d4
commit b7edaabe94
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -826,9 +826,9 @@ if (doppler_mode == 'sim'):
current_index = index
print(f"relative time: {relative_time:.1f} seconds after AOS is index: {index}")
table_row = doppler_table[index]
rx_doppler_shift_hz = table_row["doppler_434_khz"] * 1000
rx_doppler_shift_hz = table_row["doppler_434_khz"] # * 1000
if (mode == 'e'):
tx_doppler_shift_hz = table_row["doppler_144_khz"] * 1000
tx_doppler_shift_hz = table_row["doppler_144_khz"] # * 1000
else:
tx_doppler_shift_hz = rx_doppler_shift_hz
tx_doppler_freq_hz = tx_doppler_start_hz + tx_doppler_shift_hz

Loading…
Cancel
Save

Powered by TurnKey Linux.