mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-07-28 13:04:17 -04:00
DV Serial support: working signal/slot mechanism
This commit is contained in:
@@ -154,3 +154,18 @@ QString DSPEngine::sourceDeviceDescription()
|
||||
{
|
||||
return m_deviceEngine->sourceDeviceDescription();
|
||||
}
|
||||
|
||||
void DSPEngine::setDVSerialSupport(bool support)
|
||||
{
|
||||
#ifdef DSD_USE_SERIALDV
|
||||
if (support)
|
||||
{
|
||||
m_dvSerialSupport = m_dvSerialEngine.scan();
|
||||
}
|
||||
else
|
||||
{
|
||||
m_dvSerialEngine.release();
|
||||
m_dvSerialSupport = false;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user