sdrangel/devices/limesdr/devicelimesdrshared.h

54 lines
2.2 KiB
C
Raw Normal View History

2017-04-14 12:30:37 -04:00
///////////////////////////////////////////////////////////////////////////////////
// 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_LIMESDR_DEVICELIMESDRSHARED_H_
#define DEVICES_LIMESDR_DEVICELIMESDRSHARED_H_
#include <cstddef>
#include "devicelimesdrparam.h"
/**
* Structure shared by a buddy with other buddies
*/
struct DeviceLimeSDRShared
{
class ThreadInterface
{
public:
virtual void startWork() = 0;
virtual void stopWork() = 0;
};
2017-04-14 12:30:37 -04:00
DeviceLimeSDRParams *m_deviceParams; //!< unique hardware device parameters
std::size_t m_channel; //!< logical device channel number (-1 if none)
ThreadInterface *m_thread; //!< holds the thread address if started else 0
2017-04-20 17:43:24 -04:00
int m_ncoFrequency;
uint64_t m_centerFrequency;
2017-04-14 12:30:37 -04:00
DeviceLimeSDRShared() :
m_deviceParams(0),
m_channel(-1),
2017-04-20 17:43:24 -04:00
m_thread(0),
m_ncoFrequency(0),
m_centerFrequency(0)
2017-04-14 12:30:37 -04:00
{}
~DeviceLimeSDRShared()
{}
};
#endif /* DEVICES_LIMESDR_DEVICELIMESDRSHARED_H_ */