mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-05-24 11:12:27 -04:00
PlutoSDR: fixed warnings and use smaller Rx block to get smoother waterfall
This commit is contained in:
parent
d1061a3c2f
commit
752ceab420
@ -138,6 +138,8 @@ bool PlutoSDROutput::handleMessage(const Message& message)
|
|||||||
PlutoSDROutputSettings newSettings = m_settings;
|
PlutoSDROutputSettings newSettings = m_settings;
|
||||||
newSettings.m_lpfFIREnable = conf.isLpfFirEnable();
|
newSettings.m_lpfFIREnable = conf.isLpfFirEnable();
|
||||||
applySettings(newSettings);
|
applySettings(newSettings);
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include "plutosdrinput.h"
|
#include "plutosdrinput.h"
|
||||||
#include "plutosdrinputthread.h"
|
#include "plutosdrinputthread.h"
|
||||||
|
|
||||||
#define PLUTOSDR_BLOCKSIZE_SAMPLES (32*1024) //complex samples per buffer (must be multiple of 64)
|
#define PLUTOSDR_BLOCKSIZE_SAMPLES (8*1024) //complex samples per buffer (must be multiple of 64)
|
||||||
|
|
||||||
MESSAGE_CLASS_DEFINITION(PlutoSDRInput::MsgConfigurePlutoSDR, Message)
|
MESSAGE_CLASS_DEFINITION(PlutoSDRInput::MsgConfigurePlutoSDR, Message)
|
||||||
MESSAGE_CLASS_DEFINITION(PlutoSDRInput::MsgFileRecord, Message)
|
MESSAGE_CLASS_DEFINITION(PlutoSDRInput::MsgFileRecord, Message)
|
||||||
@ -160,6 +160,8 @@ bool PlutoSDRInput::handleMessage(const Message& message)
|
|||||||
PlutoSDRInputSettings newSettings = m_settings;
|
PlutoSDRInputSettings newSettings = m_settings;
|
||||||
newSettings.m_lpfFIREnable = conf.isLpfFirEnable();
|
newSettings.m_lpfFIREnable = conf.isLpfFirEnable();
|
||||||
applySettings(newSettings);
|
applySettings(newSettings);
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user