1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-04-04 18:48:34 -04:00

Merge pull request #818 from srcejon/sat_tracker_doppler_fix

Fix Doppler adjustment time interval to be seconds not milliseconds
This commit is contained in:
Edouard Griffiths 2021-03-27 09:37:05 +01:00 committed by GitHub
commit cc8bbf6559
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -663,7 +663,7 @@ void SatelliteTrackerWorker::applyDeviceAOSSettings(const QString& name)
}
if (requiresDoppler)
{
satWorkerState->m_dopplerTimer.setInterval(m_settings.m_dopplerPeriod);
satWorkerState->m_dopplerTimer.setInterval(m_settings.m_dopplerPeriod * 1000);
satWorkerState->m_dopplerTimer.start();
connect(&satWorkerState->m_dopplerTimer, &QTimer::timeout, [this, satWorkerState]() {
doppler(satWorkerState);