2015-09-09 03:13:24 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2015 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. //
|
2015-09-09 03:13:24 -04: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 <libairspy/airspy.h>
|
|
|
|
|
2018-05-29 10:48:41 -04:00
|
|
|
#ifdef SERVER_MODE
|
|
|
|
#include "airspyinput.h"
|
|
|
|
#else
|
2015-09-09 03:13:24 -04:00
|
|
|
#include "airspygui.h"
|
2018-05-29 10:48:41 -04:00
|
|
|
#endif
|
2019-08-03 05:21:46 -04:00
|
|
|
#include "airspywebapiadapter.h"
|
2015-09-09 03:13:24 -04:00
|
|
|
#include "airspyplugin.h"
|
2016-10-10 19:17:55 -04:00
|
|
|
|
2015-09-09 03:13:24 -04:00
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "util/simpleserializer.h"
|
|
|
|
|
2018-01-10 18:17:06 -05:00
|
|
|
const int AirspyPlugin::m_maxDevices = 32;
|
|
|
|
|
2015-09-09 03:13:24 -04:00
|
|
|
const PluginDescriptor AirspyPlugin::m_pluginDescriptor = {
|
2020-11-21 09:38:04 -05:00
|
|
|
QStringLiteral("Airspy"),
|
|
|
|
QStringLiteral("Airspy Input"),
|
2022-10-06 18:24:31 -04:00
|
|
|
QStringLiteral("7.8.0"),
|
2020-11-21 09:38:04 -05:00
|
|
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
2015-09-09 03:13:24 -04:00
|
|
|
true,
|
2020-11-21 09:38:04 -05:00
|
|
|
QStringLiteral("https://github.com/f4exb/sdrangel")
|
2015-09-09 03:13:24 -04:00
|
|
|
};
|
|
|
|
|
2020-11-21 14:24:18 -05:00
|
|
|
static constexpr const char* const m_hardwareID = "Airspy";
|
|
|
|
static constexpr const char* const m_deviceTypeID = AIRSPY_DEVICE_TYPE_ID;
|
2015-09-30 07:53:09 -04:00
|
|
|
|
2015-09-09 03:13:24 -04:00
|
|
|
AirspyPlugin::AirspyPlugin(QObject* parent) :
|
2016-05-17 13:26:23 -04:00
|
|
|
QObject(parent)
|
2015-09-09 03:13:24 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const PluginDescriptor& AirspyPlugin::getPluginDescriptor() const
|
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AirspyPlugin::initPlugin(PluginAPI* pluginAPI)
|
|
|
|
{
|
2016-05-17 13:26:23 -04:00
|
|
|
pluginAPI->registerSampleSource(m_deviceTypeID, this);
|
2015-09-09 03:13:24 -04:00
|
|
|
}
|
|
|
|
|
2019-09-16 18:34:11 -04:00
|
|
|
void AirspyPlugin::enumOriginDevices(QStringList& listedHwIds, OriginDevices& originDevices)
|
2015-09-09 03:13:24 -04:00
|
|
|
{
|
2019-09-16 18:34:11 -04:00
|
|
|
if (listedHwIds.contains(m_hardwareID)) { // check if it was done
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-09-09 03:13:24 -04:00
|
|
|
airspy_read_partid_serialno_t read_partid_serialno;
|
2015-09-10 21:02:02 -04:00
|
|
|
struct airspy_device *devinfo;
|
|
|
|
uint32_t serial_msb = 0;
|
|
|
|
uint32_t serial_lsb = 0;
|
2015-09-09 03:13:24 -04:00
|
|
|
airspy_error rc;
|
2015-09-10 21:02:02 -04:00
|
|
|
int i;
|
2015-09-09 03:13:24 -04:00
|
|
|
|
2015-09-09 23:53:37 -04:00
|
|
|
rc = (airspy_error) airspy_init();
|
2015-09-09 03:13:24 -04:00
|
|
|
|
|
|
|
if (rc != AIRSPY_SUCCESS)
|
|
|
|
{
|
2019-09-16 18:34:11 -04:00
|
|
|
qCritical("AirspyPlugin::enumOriginDevices: failed to initiate Airspy library: %s", airspy_error_name(rc));
|
2015-09-09 03:13:24 -04:00
|
|
|
}
|
|
|
|
|
2018-01-10 18:17:06 -05:00
|
|
|
for (i=0; i < m_maxDevices; i++)
|
2015-09-09 03:13:24 -04:00
|
|
|
{
|
2015-09-09 23:53:37 -04:00
|
|
|
rc = (airspy_error) airspy_open(&devinfo);
|
2015-09-09 03:13:24 -04:00
|
|
|
|
|
|
|
if (rc == AIRSPY_SUCCESS)
|
|
|
|
{
|
2019-09-16 18:34:11 -04:00
|
|
|
qDebug("AirspyPlugin::enumOriginDevices: try to enumerate Airspy device #%d", i);
|
2015-09-10 21:02:02 -04:00
|
|
|
|
2015-09-09 23:53:37 -04:00
|
|
|
rc = (airspy_error) airspy_board_partid_serialno_read(devinfo, &read_partid_serialno);
|
2015-09-09 03:13:24 -04:00
|
|
|
|
|
|
|
if (rc != AIRSPY_SUCCESS)
|
|
|
|
{
|
2019-09-16 18:34:11 -04:00
|
|
|
qDebug("AirspyPlugin::enumOriginDevices: failed to read serial no: %s", airspy_error_name(rc));
|
2015-09-10 21:02:02 -04:00
|
|
|
airspy_close(devinfo);
|
2015-09-09 03:13:24 -04:00
|
|
|
continue; // next
|
|
|
|
}
|
|
|
|
|
2015-09-10 21:02:02 -04:00
|
|
|
if ((read_partid_serialno.serial_no[2] != serial_msb) && (read_partid_serialno.serial_no[3] != serial_lsb))
|
|
|
|
{
|
|
|
|
serial_msb = read_partid_serialno.serial_no[2];
|
|
|
|
serial_lsb = read_partid_serialno.serial_no[3];
|
|
|
|
|
|
|
|
QString serial_str = QString::number(serial_msb, 16) + QString::number(serial_lsb, 16);
|
2017-05-25 14:13:34 -04:00
|
|
|
//uint64_t serial_num = (((uint64_t) serial_msb)<<32) + serial_lsb;
|
2019-09-16 18:34:11 -04:00
|
|
|
QString displayableName(QString("Airspy[%1] %2").arg(i).arg(serial_str));
|
|
|
|
|
|
|
|
originDevices.append(OriginDevice(
|
|
|
|
displayableName,
|
|
|
|
m_hardwareID,
|
|
|
|
serial_str,
|
|
|
|
i,
|
|
|
|
1,
|
|
|
|
0
|
|
|
|
));
|
|
|
|
|
|
|
|
qDebug("AirspyPlugin::enumOriginDevices: enumerated Airspy device #%d", i);
|
2015-09-10 21:02:02 -04:00
|
|
|
}
|
2015-09-09 03:13:24 -04:00
|
|
|
|
2015-09-10 21:02:02 -04:00
|
|
|
airspy_close(devinfo);
|
2015-09-09 03:13:24 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-09-16 18:34:11 -04:00
|
|
|
qDebug("AirspyPlugin::enumOriginDevices: enumerated %d Airspy devices %s", i, airspy_error_name(rc));
|
2015-09-09 03:13:24 -04:00
|
|
|
break; // finished
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-10 21:02:02 -04:00
|
|
|
rc = (airspy_error) airspy_exit();
|
2019-09-16 18:34:11 -04:00
|
|
|
qDebug("AirspyPlugin::enumOriginDevices: airspy_exit: %s", airspy_error_name(rc));
|
|
|
|
|
|
|
|
listedHwIds.append(m_hardwareID);
|
|
|
|
}
|
|
|
|
|
|
|
|
PluginInterface::SamplingDevices AirspyPlugin::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("AirspyPlugin::enumSampleSources: enumerated Airspy device #%d", it->sequence);
|
|
|
|
}
|
|
|
|
}
|
2015-09-09 03:13:24 -04:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-05-29 10:48:41 -04:00
|
|
|
#ifdef SERVER_MODE
|
2020-10-05 13:23:13 -04:00
|
|
|
DeviceGUI* AirspyPlugin::createSampleSourcePluginInstanceGUI(
|
2019-05-24 03:37:13 -04:00
|
|
|
const QString& sourceId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet)
|
2018-05-29 10:48:41 -04:00
|
|
|
{
|
2019-06-19 12:50:55 -04:00
|
|
|
(void) sourceId;
|
|
|
|
(void) widget;
|
|
|
|
(void) deviceUISet;
|
2019-08-03 05:21:46 -04:00
|
|
|
return nullptr;
|
2018-05-29 10:48:41 -04:00
|
|
|
}
|
|
|
|
#else
|
2020-10-05 13:23:13 -04:00
|
|
|
DeviceGUI* AirspyPlugin::createSampleSourcePluginInstanceGUI(
|
2017-10-29 19:02:28 -04:00
|
|
|
const QString& sourceId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet)
|
2015-09-09 03:13:24 -04:00
|
|
|
{
|
2016-05-17 13:26:23 -04:00
|
|
|
if (sourceId == m_deviceTypeID)
|
2015-09-09 03:13:24 -04:00
|
|
|
{
|
2017-10-29 19:45:23 -04:00
|
|
|
AirspyGui* gui = new AirspyGui(deviceUISet);
|
2016-05-16 21:41:01 -04:00
|
|
|
*widget = gui;
|
2015-09-09 03:13:24 -04:00
|
|
|
return gui;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-08-03 05:21:46 -04:00
|
|
|
return nullptr;
|
2015-09-09 03:13:24 -04:00
|
|
|
}
|
|
|
|
}
|
2018-05-29 10:48:41 -04:00
|
|
|
#endif
|
2017-09-14 02:49:31 -04:00
|
|
|
|
2019-05-19 04:28:50 -04:00
|
|
|
DeviceSampleSource *AirspyPlugin::createSampleSourcePluginInstance(const QString& sourceId, DeviceAPI *deviceAPI)
|
2017-09-14 02:49:31 -04:00
|
|
|
{
|
|
|
|
if (sourceId == m_deviceTypeID)
|
|
|
|
{
|
|
|
|
AirspyInput* input = new AirspyInput(deviceAPI);
|
|
|
|
return input;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-08-03 05:21:46 -04:00
|
|
|
return nullptr;
|
2017-09-14 02:49:31 -04:00
|
|
|
}
|
|
|
|
}
|
2019-08-03 05:21:46 -04:00
|
|
|
|
|
|
|
DeviceWebAPIAdapter *AirspyPlugin::createDeviceWebAPIAdapter() const
|
|
|
|
{
|
|
|
|
return new AirspyWebAPIAdapter();
|
2020-10-05 13:23:13 -04:00
|
|
|
}
|