2017-01-07 05:24:09 -05: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 //
|
2019-04-11 00:39:30 -04:00
|
|
|
// (at your option) any later version. //
|
2017-01-07 05:24:09 -05:00
|
|
|
// //
|
|
|
|
// 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_HACKRF_DEVICEHACKRF_H_
|
|
|
|
#define DEVICES_HACKRF_DEVICEHACKRF_H_
|
|
|
|
|
|
|
|
#include "libhackrf/hackrf.h"
|
|
|
|
|
2019-09-17 13:54:13 -04:00
|
|
|
#include "plugin/plugininterface.h"
|
2018-03-20 08:49:21 -04:00
|
|
|
#include "export.h"
|
2018-03-03 14:23:38 -05:00
|
|
|
|
|
|
|
class DEVICES_API DeviceHackRF
|
2017-01-07 05:24:09 -05:00
|
|
|
{
|
|
|
|
public:
|
2017-08-31 18:46:43 -04:00
|
|
|
static DeviceHackRF& instance();
|
2017-01-07 18:33:11 -05:00
|
|
|
static hackrf_device *open_hackrf(int sequence);
|
2017-04-13 20:09:36 -04:00
|
|
|
static hackrf_device *open_hackrf(const char * const serial);
|
2019-09-17 13:54:13 -04:00
|
|
|
static void enumOriginDevices(const QString& hardwareId, PluginInterface::OriginDevices& originDevices);
|
2021-03-28 23:59:00 -04:00
|
|
|
static void setDevicePPMCorrection(hackrf_device *dev, qint32 loPPMTenths);
|
2017-08-31 18:46:43 -04:00
|
|
|
protected:
|
|
|
|
DeviceHackRF();
|
|
|
|
DeviceHackRF(const DeviceHackRF&) {}
|
2018-11-12 09:48:41 -05:00
|
|
|
DeviceHackRF& operator=(const DeviceHackRF& other) { (void) other; return *this; }
|
2017-08-31 18:46:43 -04:00
|
|
|
~DeviceHackRF();
|
2017-01-07 18:33:11 -05:00
|
|
|
private:
|
2017-01-07 05:24:09 -05:00
|
|
|
static hackrf_device *open_hackrf_from_sequence(int sequence);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* DEVICES_HACKRF_DEVICEHACKRF_H_ */
|