2018-01-10 20:21:29 -05: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 //
|
2019-04-11 00:57:41 -04:00
|
|
|
// (at your option) any later version. //
|
2018-01-10 20:21:29 -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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <QtPlugin>
|
|
|
|
#include <libairspyhf/airspyhf.h>
|
|
|
|
|
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "util/simpleserializer.h"
|
2018-02-05 02:38:47 -05:00
|
|
|
#include "airspyhfplugin.h"
|
2019-08-04 14:24:44 -04:00
|
|
|
#include "airspyhfwebapiadapter.h"
|
2018-04-15 13:14:20 -04:00
|
|
|
#ifdef SERVER_MODE
|
|
|
|
#include "airspyhfinput.h"
|
|
|
|
#else
|
2018-02-05 02:38:47 -05:00
|
|
|
#include "airspyhfgui.h"
|
2018-04-15 13:14:20 -04:00
|
|
|
#endif
|
2022-12-22 06:04:12 -05:00
|
|
|
#ifdef ANDROID
|
|
|
|
#include "util/android.h"
|
|
|
|
#endif
|
2018-01-10 20:21:29 -05:00
|
|
|
|
|
|
|
const PluginDescriptor AirspyHFPlugin::m_pluginDescriptor = {
|
2020-11-21 09:38:04 -05:00
|
|
|
QStringLiteral("AirspyHF"),
|
|
|
|
QStringLiteral("AirspyHF Input"),
|
2022-11-01 18:51:06 -04:00
|
|
|
QStringLiteral("7.8.2"),
|
2020-11-21 09:38:04 -05:00
|
|
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
2018-01-10 20:21:29 -05:00
|
|
|
true,
|
2020-11-21 09:38:04 -05:00
|
|
|
QStringLiteral("https://github.com/f4exb/sdrangel")
|
2018-01-10 20:21:29 -05:00
|
|
|
};
|
|
|
|
|
2020-11-21 14:24:18 -05:00
|
|
|
static constexpr const char* const m_hardwareID = "AirspyHF";
|
|
|
|
static constexpr const char* const m_deviceTypeID = AIRSPYHF_DEVICE_TYPE_ID;
|
2018-01-10 20:21:29 -05:00
|
|
|
const int AirspyHFPlugin::m_maxDevices = 32;
|
|
|
|
|
|
|
|
AirspyHFPlugin::AirspyHFPlugin(QObject* parent) :
|
|
|
|
QObject(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& AirspyHFPlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AirspyHFPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
|
|
{
|
|
|
|
pluginAPI->registerSampleSource(m_deviceTypeID, this);
|
|
|
|
}
|
|
|
|
|
2019-09-16 18:34:11 -04:00
|
|
|
void AirspyHFPlugin::enumOriginDevices(QStringList& listedHwIds, OriginDevices& originDevices)
|
2018-01-10 20:21:29 -05:00
|
|
|
{
|
2019-09-16 18:34:11 -04:00
|
|
|
if (listedHwIds.contains(m_hardwareID)) { // check if it was done
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-10 20:21:29 -05:00
|
|
|
int nbDevices;
|
|
|
|
uint64_t deviceSerials[m_maxDevices];
|
|
|
|
|
2022-12-22 06:04:12 -05:00
|
|
|
#ifdef ANDROID
|
|
|
|
QStringList serialStrings = Android::listUSBDeviceSerials(0x03EB, 0x800C);
|
|
|
|
nbDevices = 0;
|
|
|
|
for (const auto serialString : serialStrings)
|
|
|
|
{
|
|
|
|
// Serials are of the form: "AIRSPYHF SN:12345678ABCDEF00"
|
|
|
|
int idx = serialString.indexOf(':');
|
|
|
|
if (idx != -1)
|
|
|
|
{
|
|
|
|
bool ok;
|
|
|
|
uint64_t serialInt = serialString.mid(idx+1).toULongLong(&ok, 16);
|
|
|
|
if (ok)
|
|
|
|
{
|
|
|
|
deviceSerials[nbDevices] = serialInt;
|
|
|
|
nbDevices++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug() << "AirspyHFPlugin::enumOriginDevices: Couldn't convert " << serialString.mid(idx+1) << " to integer";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug() << "AirspyHFPlugin::enumOriginDevices: No : in serial " << serialString;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
2018-01-10 20:21:29 -05:00
|
|
|
nbDevices = airspyhf_list_devices(deviceSerials, m_maxDevices);
|
2022-12-22 06:04:12 -05:00
|
|
|
#endif
|
2018-01-10 20:21:29 -05:00
|
|
|
|
|
|
|
if (nbDevices < 0)
|
|
|
|
{
|
2019-09-16 18:34:11 -04:00
|
|
|
qCritical("AirspyHFPlugin::enumOriginDevices: failed to list Airspy HF devices");
|
2018-01-10 20:21:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < nbDevices; i++)
|
|
|
|
{
|
|
|
|
if (deviceSerials[i])
|
|
|
|
{
|
|
|
|
QString serial_str = QString::number(deviceSerials[i], 16);
|
2019-09-16 18:34:11 -04:00
|
|
|
QString displayableName(QString("AirspyHF[%1] %2").arg(i).arg(serial_str));
|
|
|
|
|
|
|
|
originDevices.append(OriginDevice(
|
|
|
|
displayableName,
|
|
|
|
m_hardwareID,
|
|
|
|
serial_str,
|
|
|
|
i,
|
|
|
|
1,
|
|
|
|
0
|
|
|
|
));
|
|
|
|
|
|
|
|
qDebug("AirspyHFPlugin::enumOriginDevices: enumerated Airspy HF device #%d", i);
|
2018-01-10 20:21:29 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-09-16 18:34:11 -04:00
|
|
|
qDebug("AirspyHFPlugin::enumOriginDevices: finished to enumerate Airspy HF. %d devices found", i);
|
2018-01-10 20:21:29 -05:00
|
|
|
break; // finished
|
|
|
|
}
|
|
|
|
}
|
2019-09-16 18:34:11 -04:00
|
|
|
|
|
|
|
listedHwIds.append(m_hardwareID);
|
|
|
|
}
|
|
|
|
|
|
|
|
PluginInterface::SamplingDevices AirspyHFPlugin::enumSampleSources(const OriginDevices& originDevices)
|
|
|
|
{
|
|
|
|
SamplingDevices result;
|
|
|
|
|
|
|
|
for (OriginDevices::const_iterator it = originDevices.begin(); it != originDevices.end(); ++it)
|
|
|
|
{
|
|
|
|
if (it->hardwareId == m_hardwareID)
|
|
|
|
{
|
|
|
|
result.append(SamplingDevice(
|
|
|
|
it->displayableName,
|
|
|
|
m_hardwareID,
|
|
|
|
m_deviceTypeID,
|
|
|
|
it->serial,
|
|
|
|
it->sequence,
|
|
|
|
PluginInterface::SamplingDevice::PhysicalDevice,
|
|
|
|
PluginInterface::SamplingDevice::StreamSingleRx,
|
|
|
|
1,
|
|
|
|
0
|
|
|
|
));
|
|
|
|
qDebug("AirspyHFPlugin::enumSampleSources: enumerated Airspy HF device #%d", it->sequence);
|
|
|
|
}
|
|
|
|
}
|
2018-01-10 20:21:29 -05:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-04-15 13:14:20 -04:00
|
|
|
#ifdef SERVER_MODE
|
2020-10-05 13:23:13 -04:00
|
|
|
DeviceGUI* AirspyHFPlugin::createSampleSourcePluginInstanceGUI(
|
2019-05-24 03:37:13 -04:00
|
|
|
const QString& sourceId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet)
|
2018-04-15 13:14:20 -04:00
|
|
|
{
|
2019-06-19 12:50:55 -04:00
|
|
|
(void) sourceId;
|
|
|
|
(void) widget;
|
|
|
|
(void) deviceUISet;
|
2018-04-15 13:14:20 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
2020-10-05 13:23:13 -04:00
|
|
|
DeviceGUI* AirspyHFPlugin::createSampleSourcePluginInstanceGUI(
|
2018-01-10 20:21:29 -05:00
|
|
|
const QString& sourceId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet)
|
|
|
|
{
|
|
|
|
if (sourceId == m_deviceTypeID)
|
|
|
|
{
|
|
|
|
AirspyHFGui* gui = new AirspyHFGui(deviceUISet);
|
|
|
|
*widget = gui;
|
|
|
|
return gui;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2018-04-15 13:14:20 -04:00
|
|
|
#endif
|
2018-01-10 20:21:29 -05:00
|
|
|
|
2019-05-19 04:28:50 -04:00
|
|
|
DeviceSampleSource *AirspyHFPlugin::createSampleSourcePluginInstance(const QString& sourceId, DeviceAPI *deviceAPI)
|
2018-01-10 20:21:29 -05:00
|
|
|
{
|
|
|
|
if (sourceId == m_deviceTypeID)
|
|
|
|
{
|
|
|
|
AirspyHFInput* input = new AirspyHFInput(deviceAPI);
|
|
|
|
return input;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2019-08-04 14:24:44 -04:00
|
|
|
|
|
|
|
DeviceWebAPIAdapter *AirspyHFPlugin::createDeviceWebAPIAdapter() const
|
|
|
|
{
|
|
|
|
return new AirspyHFWebAPIAdapter();
|
2020-10-05 13:23:13 -04:00
|
|
|
}
|