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

PlutoSDR: added common parameters and shared structure

This commit is contained in:
f4exb
2017-09-05 16:23:10 +02:00
parent 8ab3ad3b63
commit 6fa8b4ac87
7 changed files with 192 additions and 1 deletions
@@ -87,3 +87,23 @@ bool PlutoSDRInput::handleMessage(const Message& message)
return false;
}
}
bool PlutoSDRInput::openDevice()
{
}
void PlutoSDRInput::closeDevice()
{
}
void PlutoSDRInput::suspendBuddies()
{
}
void PlutoSDRInput::resumeBuddies()
{
}
@@ -67,8 +67,12 @@ public:
QString m_deviceDescription;
PlutoSDRInputSettings m_settings;
bool m_running;
QMutex m_mutex;
bool openDevice();
void closeDevice();
void suspendBuddies();
void resumeBuddies();
};