mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-05 23:45:00 -04:00
Test Sink fixes
This commit is contained in:
@@ -139,7 +139,7 @@ bool TestSinkGui::handleMessage(const Message& message)
|
||||
else if (TestSinkOutput::MsgStartStop::match(message))
|
||||
{
|
||||
TestSinkOutput::MsgStartStop& notif = (TestSinkOutput::MsgStartStop&) message;
|
||||
qDebug("TestSinkOutput::handleMessage: message: MsgStartStop: %s", notif.getStartStop() ? "start" : "stop");
|
||||
qDebug("TestSinkGui::handleMessage: message: MsgStartStop: %s", notif.getStartStop() ? "start" : "stop");
|
||||
blockApplySettings(true);
|
||||
ui->startStop->setChecked(notif.getStartStop());
|
||||
blockApplySettings(false);
|
||||
@@ -161,7 +161,7 @@ void TestSinkGui::handleInputMessages()
|
||||
if (DSPSignalNotification::match(*message))
|
||||
{
|
||||
DSPSignalNotification* notif = (DSPSignalNotification*) message;
|
||||
qDebug("FileSinkGui::handleInputMessages: DSPSignalNotification: SampleRate:%d, CenterFrequency:%llu", notif->getSampleRate(), notif->getCenterFrequency());
|
||||
qDebug("TestSinkGui::handleInputMessages: DSPSignalNotification: SampleRate:%d, CenterFrequency:%llu", notif->getSampleRate(), notif->getCenterFrequency());
|
||||
m_sampleRate = notif->getSampleRate();
|
||||
m_deviceCenterFrequency = notif->getCenterFrequency();
|
||||
updateSampleRateAndFrequency();
|
||||
@@ -198,7 +198,6 @@ void TestSinkGui::sendSettings()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void TestSinkGui::updateHardware()
|
||||
{
|
||||
qDebug() << "TestSinkGui::updateHardware";
|
||||
|
||||
Reference in New Issue
Block a user