mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
59 lines
2.3 KiB
C++
59 lines
2.3 KiB
C++
///////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) 2017 Edouard Griffiths, F4EXB //
|
|
// //
|
|
// This program is free software; you can redistribute it and/or modify //
|
|
// it under the terms of the GNU General Public License as published by //
|
|
// the Free Software Foundation as version 3 of the License, or //
|
|
// //
|
|
// This program is distributed in the hope that it will be useful, //
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
// GNU General Public License V3 for more details. //
|
|
// //
|
|
// You should have received a copy of the GNU General Public License //
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef DEVICES_PLUTOSDR_DEVICEPLUTOSDRSHARED_H_
|
|
#define DEVICES_PLUTOSDR_DEVICEPLUTOSDRSHARED_H_
|
|
|
|
class DevicePlutoSDRParams;
|
|
|
|
/**
|
|
* Structure shared by a buddy with other buddies
|
|
*/
|
|
class DevicePlutoSDRShared
|
|
{
|
|
public:
|
|
/**
|
|
* Expose own samples processing thread control
|
|
*/
|
|
class ThreadInterface
|
|
{
|
|
public:
|
|
virtual void startWork() = 0;
|
|
virtual void stopWork() = 0;
|
|
virtual void setDeviceSampleRate(int sampleRate) = 0;
|
|
virtual bool isRunning() = 0;
|
|
};
|
|
|
|
DevicePlutoSDRParams *m_deviceParams; //!< unique hardware device parameters
|
|
ThreadInterface *m_thread; //!< holds the thread address if started else 0
|
|
bool m_threadWasRunning; //!< flag to know if thread needs to be resumed after suspend
|
|
|
|
static const float m_sampleFifoLengthInSeconds;
|
|
static const int m_sampleFifoMinSize;
|
|
|
|
DevicePlutoSDRShared() :
|
|
m_deviceParams(0),
|
|
m_thread(0),
|
|
m_threadWasRunning(false)
|
|
{}
|
|
|
|
~DevicePlutoSDRShared()
|
|
{}
|
|
};
|
|
|
|
|
|
#endif /* DEVICES_PLUTOSDR_DEVICEPLUTOSDRSHARED_H_ */
|