1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-04-25 17:04:00 -04:00

SSB modulator: fixed debug message

This commit is contained in:
f4exb 2020-02-21 18:35:07 +01:00
parent 118840db0c
commit 738f671255

View File

@ -108,7 +108,7 @@ bool SSBMod::handleMessage(const Message& cmd)
if (MsgConfigureSSBMod::match(cmd))
{
MsgConfigureSSBMod& cfg = (MsgConfigureSSBMod&) cmd;
qDebug() << "NFMMod::handleMessage: MsgConfigureSSBMod";
qDebug() << "SSBMod::handleMessage: MsgConfigureSSBMod";
applySettings(cfg.getSettings(), cfg.getForce());
@ -163,7 +163,7 @@ bool SSBMod::handleMessage(const Message& cmd)
// Forward to the source
DSPSignalNotification& notif = (DSPSignalNotification&) cmd;
DSPSignalNotification* rep = new DSPSignalNotification(notif); // make a copy
qDebug() << "NFMMod::handleMessage: DSPSignalNotification";
qDebug() << "SSBMod::handleMessage: DSPSignalNotification";
m_basebandSource->getInputMessageQueue()->push(rep);
return true;