1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-08-14 15:33:34 -04:00

SSB demod: increase audio volume range to -10 to +40 dB. Restored Appveyour MSVC build

This commit is contained in:
f4exb
2021-03-16 05:16:59 +01:00
parent af98689c37
commit 996e4d7816
3 changed files with 45 additions and 42 deletions
+2 -2
View File
@@ -113,7 +113,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());
@@ -168,7 +168,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;