mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-03 15:31:15 -05:00
92 lines
3.5 KiB
C++
92 lines
3.5 KiB
C++
///////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright (C) 2018 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_BLADERF2_DEVICEBLADERF2SHARED_H_
|
|
#define DEVICES_BLADERF2_DEVICEBLADERF2SHARED_H_
|
|
|
|
#include "util/message.h"
|
|
#include "devicebladerf2.h"
|
|
|
|
class SampleSinkFifo;
|
|
class SampleSourceFifo;
|
|
|
|
/**
|
|
* Structure shared by a buddy with other buddies
|
|
*/
|
|
class DEVICES_API DeviceBladeRF2Shared
|
|
{
|
|
public:
|
|
class InputThreadInterface
|
|
{
|
|
public:
|
|
virtual ~InputThreadInterface() = 0;
|
|
virtual void startWork() = 0;
|
|
virtual void stopWork() = 0;
|
|
virtual bool isRunning() const = 0;
|
|
virtual unsigned int getNbChannels() const = 0;
|
|
virtual void setLog2Decimation(unsigned int channel, unsigned int log2_decim) = 0;
|
|
virtual unsigned int getLog2Decimation(unsigned int channel) const = 0;
|
|
virtual void setFcPos(unsigned int channel, int fcPos) = 0;
|
|
virtual int getFcPos(unsigned int channel) const = 0;
|
|
virtual void setFifo(unsigned int channel, SampleSinkFifo *fifo) = 0;
|
|
virtual SampleSinkFifo *getFifo(unsigned int channel) = 0;
|
|
};
|
|
|
|
class OutputThreadInterface
|
|
{
|
|
public:
|
|
virtual ~OutputThreadInterface() = 0;
|
|
virtual void startWork() = 0;
|
|
virtual void stopWork() = 0;
|
|
virtual bool isRunning() = 0;
|
|
virtual unsigned int getNbChannels() const = 0;
|
|
virtual void setFifo(unsigned int channel, SampleSourceFifo *fifo) = 0;
|
|
virtual SampleSourceFifo *getFifo(unsigned int channel) = 0;
|
|
};
|
|
|
|
class MsgReportBuddyChange : public Message {
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
public:
|
|
bool getRxElseTx() const { return m_rxElseTx; }
|
|
|
|
static MsgReportBuddyChange* create(bool rxElseTx)
|
|
{
|
|
return new MsgReportBuddyChange(rxElseTx);
|
|
}
|
|
|
|
private:
|
|
bool m_rxElseTx; //!< tells which side initiated the message
|
|
|
|
MsgReportBuddyChange(bool rxElseTx) :
|
|
Message(),
|
|
m_rxElseTx(rxElseTx)
|
|
{ }
|
|
};
|
|
|
|
DeviceBladeRF2Shared();
|
|
~DeviceBladeRF2Shared();
|
|
|
|
DeviceBladeRF2 *m_dev;
|
|
int m_channel; //!< allocated channel (-1 if none)
|
|
InputThreadInterface *m_inputThread; //!< The SISO/MIMO input thread
|
|
OutputThreadInterface *m_outputThread; //!< The SISO/MIMO output thread
|
|
};
|
|
|
|
|
|
|
|
#endif /* DEVICES_BLADERF2_DEVICEBLADERF2SHARED_H_ */
|