1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-11-15 12:43:18 -05:00

Merge pull request #2543 from srcejon/fix_2539

SSBMod: Initialise baseband settings when device is started.
This commit is contained in:
Edouard Griffiths 2025-10-31 12:14:39 +01:00 committed by GitHub
commit 901d98acad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -126,6 +126,9 @@ void SSBMod::start()
DSPSignalNotification *dspMsg = new DSPSignalNotification(m_basebandSampleRate, m_centerFrequency);
m_basebandSource->getInputMessageQueue()->push(dspMsg);
SSBModBaseband::MsgConfigureSSBModBaseband *msg = SSBModBaseband::MsgConfigureSSBModBaseband::create(m_settings, true);
m_basebandSource->getInputMessageQueue()->push(msg);
m_running = true;
}