2018-12-28 19:20:48 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2017 Sergey Kostanbaev, Fairwaves Inc. //
|
|
|
|
// //
|
|
|
|
// 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 "devicextrxparam.h"
|
|
|
|
#include "util/message.h"
|
|
|
|
|
2018-12-30 19:43:24 -05:00
|
|
|
class DeviceXTRX;
|
|
|
|
class XTRXInput;
|
|
|
|
class XTRXOutput;
|
|
|
|
|
2018-12-28 19:20:48 -05:00
|
|
|
/**
|
|
|
|
* Structure shared by a buddy with other buddies
|
|
|
|
*/
|
|
|
|
class DeviceXTRXShared
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
class MsgReportBuddyChange : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
int getDevSampleRate() const { return m_devSampleRate; }
|
|
|
|
unsigned getLog2HardDecimInterp() const { return m_log2HardDecimInterp; }
|
|
|
|
uint64_t getCenterFrequency() const { return m_centerFrequency; }
|
|
|
|
bool getRxElseTx() const { return m_rxElseTx; }
|
|
|
|
|
|
|
|
static MsgReportBuddyChange* create(
|
|
|
|
int devSampleRate,
|
|
|
|
unsigned log2HardDecimInterp,
|
|
|
|
uint64_t centerFrequency,
|
|
|
|
bool rxElseTx)
|
|
|
|
{
|
|
|
|
return new MsgReportBuddyChange(
|
|
|
|
devSampleRate,
|
|
|
|
log2HardDecimInterp,
|
|
|
|
centerFrequency,
|
|
|
|
rxElseTx);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
int m_devSampleRate; //!< device/host sample rate
|
|
|
|
unsigned m_log2HardDecimInterp; //!< log2 of hardware decimation or interpolation
|
|
|
|
uint64_t m_centerFrequency; //!< Center frequency
|
|
|
|
bool m_rxElseTx; //!< tells which side initiated the message
|
|
|
|
|
|
|
|
MsgReportBuddyChange(
|
|
|
|
int devSampleRate,
|
|
|
|
unsigned log2HardDecimInterp,
|
|
|
|
uint64_t centerFrequency,
|
|
|
|
bool rxElseTx) :
|
|
|
|
Message(),
|
|
|
|
m_devSampleRate(devSampleRate),
|
|
|
|
m_log2HardDecimInterp(log2HardDecimInterp),
|
|
|
|
m_centerFrequency(centerFrequency),
|
|
|
|
m_rxElseTx(rxElseTx)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgReportClockSourceChange : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
bool getExtClock() const { return m_extClock; }
|
|
|
|
uint32_t getExtClockFeq() const { return m_extClockFreq; }
|
|
|
|
|
|
|
|
static MsgReportClockSourceChange* create(
|
|
|
|
bool extClock,
|
|
|
|
uint32_t m_extClockFreq)
|
|
|
|
{
|
|
|
|
return new MsgReportClockSourceChange(
|
|
|
|
extClock,
|
|
|
|
m_extClockFreq);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool m_extClock; //!< True if external clock source
|
|
|
|
uint32_t m_extClockFreq; //!< Frequency (Hz) of external clock source
|
|
|
|
|
|
|
|
MsgReportClockSourceChange(
|
|
|
|
bool extClock,
|
|
|
|
uint32_t m_extClockFreq) :
|
|
|
|
Message(),
|
|
|
|
m_extClock(extClock),
|
|
|
|
m_extClockFreq(m_extClockFreq)
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
class MsgReportDeviceInfo : public Message {
|
|
|
|
MESSAGE_CLASS_DECLARATION
|
|
|
|
|
|
|
|
public:
|
|
|
|
float getTemperature() const { return m_temperature; }
|
2018-12-29 05:07:14 -05:00
|
|
|
bool getGPSLocked() const { return m_gpsLocked; }
|
2018-12-28 19:20:48 -05:00
|
|
|
|
2018-12-29 05:07:14 -05:00
|
|
|
static MsgReportDeviceInfo* create(float temperature, bool gpsLocked)
|
2018-12-28 19:20:48 -05:00
|
|
|
{
|
2018-12-29 05:07:14 -05:00
|
|
|
return new MsgReportDeviceInfo(temperature, gpsLocked);
|
2018-12-28 19:20:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2018-12-29 05:07:14 -05:00
|
|
|
float m_temperature;
|
|
|
|
bool m_gpsLocked;
|
2018-12-28 19:20:48 -05:00
|
|
|
|
2018-12-29 05:07:14 -05:00
|
|
|
MsgReportDeviceInfo(float temperature, bool gpsLocked) :
|
2018-12-28 19:20:48 -05:00
|
|
|
Message(),
|
2018-12-29 05:07:14 -05:00
|
|
|
m_temperature(temperature),
|
|
|
|
m_gpsLocked(gpsLocked)
|
2018-12-28 19:20:48 -05:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
class ThreadInterface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void startWork() = 0;
|
|
|
|
virtual void stopWork() = 0;
|
|
|
|
virtual bool isRunning() = 0;
|
|
|
|
};
|
|
|
|
|
2018-12-30 19:43:24 -05:00
|
|
|
DeviceXTRX *m_dev;
|
|
|
|
int m_channel; //!< allocated channel (-1 if none)
|
|
|
|
XTRXInput *m_source;
|
|
|
|
XTRXOutput *m_sink;
|
2019-01-03 22:45:52 -05:00
|
|
|
|
2019-01-02 09:35:43 -05:00
|
|
|
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
|
2018-12-28 19:20:48 -05:00
|
|
|
|
|
|
|
static const float m_sampleFifoLengthInSeconds;
|
|
|
|
static const int m_sampleFifoMinSize;
|
|
|
|
|
2018-12-30 19:43:24 -05:00
|
|
|
DeviceXTRXShared();
|
|
|
|
~DeviceXTRXShared();
|
2018-12-28 19:20:48 -05:00
|
|
|
|
2018-12-29 05:07:14 -05:00
|
|
|
double get_board_temperature();
|
|
|
|
bool get_gps_status();
|
2019-01-19 18:52:57 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool m_first_1pps_count;
|
|
|
|
uint64_t m_last_1pps_count;
|
|
|
|
uint32_t m_no_1pps_count_change_counter;
|
2018-12-28 19:20:48 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* DEVICES_LIMESDR_DEVICELIMESDRSHARED_H_ */
|