2017-01-02 04:39:21 -05: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:39:30 -04:00
|
|
|
// (at your option) any later version. //
|
2017-01-02 04:39:21 -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 <libbladeRF.h>
|
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "util/simpleserializer.h"
|
|
|
|
|
2018-09-19 02:42:59 -04:00
|
|
|
#include "bladerf1outputplugin.h"
|
2019-08-04 14:24:44 -04:00
|
|
|
#include "bladerf1outputwebapiadapter.h"
|
2018-04-15 13:18:21 -04:00
|
|
|
|
|
|
|
#ifdef SERVER_MODE
|
2018-09-19 02:42:59 -04:00
|
|
|
#include "bladerf1output.h"
|
2018-04-15 13:18:21 -04:00
|
|
|
#else
|
2018-09-19 02:42:59 -04:00
|
|
|
#include "bladerf1outputgui.h"
|
2018-04-15 13:18:21 -04:00
|
|
|
#endif
|
2017-01-02 04:39:21 -05:00
|
|
|
|
2018-09-19 02:42:59 -04:00
|
|
|
const PluginDescriptor Bladerf1OutputPlugin::m_pluginDescriptor = {
|
2018-09-18 23:54:07 -04:00
|
|
|
QString("BladeRF1 Output"),
|
2019-09-16 18:34:11 -04:00
|
|
|
QString("4.11.10"),
|
2017-01-02 04:39:21 -05:00
|
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QString("https://github.com/f4exb/sdrangel"),
|
|
|
|
true,
|
|
|
|
QString("https://github.com/f4exb/sdrangel")
|
|
|
|
};
|
|
|
|
|
2018-09-19 02:42:59 -04:00
|
|
|
const QString Bladerf1OutputPlugin::m_hardwareID = "BladeRF1";
|
|
|
|
const QString Bladerf1OutputPlugin::m_deviceTypeID = BLADERF1OUTPUT_DEVICE_TYPE_ID;
|
2017-01-02 04:39:21 -05:00
|
|
|
|
2018-09-19 02:42:59 -04:00
|
|
|
Bladerf1OutputPlugin::Bladerf1OutputPlugin(QObject* parent) :
|
2017-01-02 04:39:21 -05:00
|
|
|
QObject(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-09-19 02:42:59 -04:00
|
|
|
const PluginDescriptor& Bladerf1OutputPlugin::getPluginDescriptor() const
|
2017-01-02 04:39:21 -05:00
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
2018-09-19 02:42:59 -04:00
|
|
|
void Bladerf1OutputPlugin::initPlugin(PluginAPI* pluginAPI)
|
2017-01-02 04:39:21 -05:00
|
|
|
{
|
2017-01-02 06:30:42 -05:00
|
|
|
pluginAPI->registerSampleSink(m_deviceTypeID, this);
|
2017-01-02 04:39:21 -05:00
|
|
|
}
|
|
|
|
|
2019-09-16 18:34:11 -04:00
|
|
|
void Bladerf1OutputPlugin::enumOriginDevices(QStringList& listedHwIds, OriginDevices& originDevices)
|
2017-01-02 04:39:21 -05:00
|
|
|
{
|
2019-09-16 18:34:11 -04:00
|
|
|
if (listedHwIds.contains(m_hardwareID)) { // check if it was done
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-02 04:39:21 -05:00
|
|
|
struct bladerf_devinfo *devinfo = 0;
|
|
|
|
|
|
|
|
int count = bladerf_get_device_list(&devinfo);
|
|
|
|
|
|
|
|
if (devinfo)
|
|
|
|
{
|
2018-02-24 04:29:27 -05:00
|
|
|
for(int i = 0; i < count; i++)
|
|
|
|
{
|
2018-09-19 00:15:22 -04:00
|
|
|
struct bladerf *dev;
|
|
|
|
|
|
|
|
int status = bladerf_open_with_devinfo(&dev, &devinfo[i]);
|
|
|
|
|
|
|
|
if (status == BLADERF_ERR_NODEV)
|
|
|
|
{
|
2019-09-16 18:34:11 -04:00
|
|
|
qCritical("BladerfOutputPlugin::enumOriginDevices: No device at index %d", i);
|
2018-09-19 00:15:22 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if (status != 0)
|
|
|
|
{
|
2019-09-16 18:34:11 -04:00
|
|
|
qCritical("BladerfOutputPlugin::enumOriginDevices: Failed to open device at index %d", i);
|
2018-09-19 00:15:22 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *boardName = bladerf_get_board_name(dev);
|
|
|
|
|
|
|
|
if (strcmp(boardName, "bladerf1") == 0)
|
|
|
|
{
|
2019-09-16 18:34:11 -04:00
|
|
|
QString displayableName(QString("BladeRF1[%1] %2").arg(devinfo[i].instance).arg(devinfo[i].serial));
|
|
|
|
|
|
|
|
originDevices.append(OriginDevice(
|
|
|
|
displayableName,
|
|
|
|
m_hardwareID,
|
|
|
|
QString(devinfo[i].serial),
|
|
|
|
i, // Sequence
|
|
|
|
1, // Has 1 Rx known by construction
|
|
|
|
1 // Has 1 Tx known by construction
|
|
|
|
));
|
2018-09-19 00:15:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bladerf_close(dev);
|
2018-02-24 04:29:27 -05:00
|
|
|
}
|
|
|
|
|
2017-01-02 04:39:21 -05:00
|
|
|
bladerf_free_device_list(devinfo); // Valgrind memcheck
|
|
|
|
}
|
|
|
|
|
2019-09-16 18:34:11 -04:00
|
|
|
listedHwIds.append(m_hardwareID);
|
|
|
|
}
|
|
|
|
|
|
|
|
PluginInterface::SamplingDevices Bladerf1OutputPlugin::enumSampleSinks(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,
|
|
|
|
it->hardwareId,
|
|
|
|
m_deviceTypeID,
|
|
|
|
it->serial,
|
|
|
|
it->sequence,
|
|
|
|
PluginInterface::SamplingDevice::PhysicalDevice,
|
|
|
|
PluginInterface::SamplingDevice::StreamSingleTx,
|
|
|
|
1, // Nb of Tx streams
|
|
|
|
0 // Stream index
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-02 04:39:21 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-04-15 13:18:21 -04:00
|
|
|
#ifdef SERVER_MODE
|
2018-09-19 02:42:59 -04:00
|
|
|
PluginInstanceGUI* Bladerf1OutputPlugin::createSampleSinkPluginInstanceGUI(
|
2019-05-24 03:37:13 -04:00
|
|
|
const QString& sinkId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet)
|
2018-04-15 13:18:21 -04:00
|
|
|
{
|
2019-06-19 12:50:55 -04:00
|
|
|
(void) sinkId;
|
|
|
|
(void) widget;
|
|
|
|
(void) deviceUISet;
|
2018-04-15 13:18:21 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
2018-09-19 02:42:59 -04:00
|
|
|
PluginInstanceGUI* Bladerf1OutputPlugin::createSampleSinkPluginInstanceGUI(
|
2017-10-29 20:11:35 -04:00
|
|
|
const QString& sinkId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet)
|
2017-01-02 04:39:21 -05:00
|
|
|
{
|
|
|
|
if(sinkId == m_deviceTypeID)
|
|
|
|
{
|
2018-09-19 02:42:59 -04:00
|
|
|
Bladerf1OutputGui* gui = new Bladerf1OutputGui(deviceUISet);
|
2017-01-02 04:39:21 -05:00
|
|
|
*widget = gui;
|
|
|
|
return gui;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2018-04-15 13:18:21 -04:00
|
|
|
#endif
|
2017-09-14 07:55:57 -04:00
|
|
|
|
2019-05-19 04:28:50 -04:00
|
|
|
DeviceSampleSink* Bladerf1OutputPlugin::createSampleSinkPluginInstance(const QString& sinkId, DeviceAPI *deviceAPI)
|
2017-09-14 07:55:57 -04:00
|
|
|
{
|
|
|
|
if(sinkId == m_deviceTypeID)
|
|
|
|
{
|
2018-09-19 02:42:59 -04:00
|
|
|
Bladerf1Output* output = new Bladerf1Output(deviceAPI);
|
2017-09-14 07:55:57 -04:00
|
|
|
return output;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2019-08-04 14:24:44 -04:00
|
|
|
|
|
|
|
DeviceWebAPIAdapter *Bladerf1OutputPlugin::createDeviceWebAPIAdapter() const
|
|
|
|
{
|
|
|
|
return new BladeRF1OutputWebAPIAdapter();
|
|
|
|
}
|