1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

New Jogdial Controller feature plugin. Implements #1088

This commit is contained in:
f4exb
2022-01-06 22:47:41 +01:00
parent 7142ef0b0d
commit 128dd03684
123 changed files with 3333 additions and 22 deletions
@@ -148,7 +148,12 @@ quint64 RemoteInput::getCenterFrequency() const
void RemoteInput::setCenterFrequency(qint64 centerFrequency)
{
(void) centerFrequency;
qint64 streamFrequency = m_remoteInputUDPHandler->getCenterFrequency();
qint64 deviceFrequency = m_remoteChannelSettings.m_deviceCenterFrequency;
deviceFrequency += centerFrequency - streamFrequency;
RemoteChannelSettings remoteChannelSettings = m_remoteChannelSettings;
remoteChannelSettings.m_deviceCenterFrequency = deviceFrequency;
applyRemoteChannelSettings(remoteChannelSettings);
}
std::time_t RemoteInput::getStartingTimeStamp() const