1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

Device sink plugins: implemented an init method for initializations to be done when all collaborating objects are created and possibly connected

This commit is contained in:
f4exb
2017-12-25 12:59:44 +01:00
parent 49d1439981
commit 9213b3c0b2
14 changed files with 39 additions and 0 deletions
@@ -104,6 +104,11 @@ bool HackRFOutput::openDevice()
return true;
}
void HackRFOutput::init()
{
applySettings(m_settings, true);
}
bool HackRFOutput::start()
{
if (!m_dev) {