1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-11-29 11:23:27 -05:00

SSBMod: Initialise baseband settings when device is started. Fixes #2539

This commit is contained in:
Jon Beniston 2025-10-31 09:09:59 +00:00
parent 3827ff811c
commit baaf6e43c7

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