From baaf6e43c7cfb35399f1f69bb903eca68d3e2ecf Mon Sep 17 00:00:00 2001 From: Jon Beniston Date: Fri, 31 Oct 2025 09:09:59 +0000 Subject: [PATCH] SSBMod: Initialise baseband settings when device is started. Fixes #2539 --- plugins/channeltx/modssb/ssbmod.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/channeltx/modssb/ssbmod.cpp b/plugins/channeltx/modssb/ssbmod.cpp index 54485d601..ac2df1c41 100644 --- a/plugins/channeltx/modssb/ssbmod.cpp +++ b/plugins/channeltx/modssb/ssbmod.cpp @@ -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; }