1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-22 16:08:39 -05:00

Fix Doppler timing interval to be seconds not milliseconds

This commit is contained in:
Jon Beniston 2021-03-27 08:32:52 +00:00
parent 350b104512
commit 44fb239562

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);