sdrangel/devices/bladerf2/devicebladerf2shared.h

64 lines
2.3 KiB
C
Raw Normal View History

2018-09-23 13:56:24 -04:00
///////////////////////////////////////////////////////////////////////////////////
// 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_
2018-09-24 02:43:16 -04:00
#include "util/message.h"
2018-09-23 13:56:24 -04:00
#include "devicebladerf2.h"
class SampleSinkFifo;
class SampleSourceFifo;
class BladeRF2Input;
2018-09-23 13:56:24 -04:00
/**
* Structure shared by a buddy with other buddies
*/
class DEVICES_API DeviceBladeRF2Shared
{
public:
2018-09-24 02:43:16 -04:00
class MsgReportBuddyChange : public Message {
MESSAGE_CLASS_DECLARATION
public:
bool getRxElseTx() const { return m_rxElseTx; }
static MsgReportBuddyChange* create(bool rxElseTx)
2018-09-24 02:43:16 -04:00
{
return new MsgReportBuddyChange(rxElseTx);
2018-09-24 02:43:16 -04:00
}
private:
bool m_rxElseTx; //!< tells which side initiated the message
2018-09-24 02:43:16 -04:00
MsgReportBuddyChange(bool rxElseTx) :
2018-09-24 02:43:16 -04:00
Message(),
m_rxElseTx(rxElseTx)
{ }
};
2018-09-23 13:56:24 -04:00
DeviceBladeRF2Shared();
~DeviceBladeRF2Shared();
DeviceBladeRF2 *m_dev;
int m_channel; //!< allocated channel (-1 if none)
BladeRF2Input *m_source;
2018-09-23 13:56:24 -04:00
};
#endif /* DEVICES_BLADERF2_DEVICEBLADERF2SHARED_H_ */