2017-01-02 09:39:21 +00: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 04:39:30 +00:00
|
|
|
// (at your option) any later version. //
|
2017-01-02 09:39:21 +00: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 06:42:59 +00:00
|
|
|
#include "bladerf1outputplugin.h"
|
2019-08-04 18:24:44 +00:00
|
|
|
#include "bladerf1outputwebapiadapter.h"
|
2018-04-15 17:18:21 +00:00
|
|
|
|
|
|
|
#ifdef SERVER_MODE
|
2018-09-19 06:42:59 +00:00
|
|
|
#include "bladerf1output.h"
|
2018-04-15 17:18:21 +00:00
|
|
|
#else
|
2018-09-19 06:42:59 +00:00
|
|
|
#include "bladerf1outputgui.h"
|
2018-04-15 17:18:21 +00:00
|
|
|
#endif
|
2017-01-02 09:39:21 +00:00
|
|
|
|
2018-09-19 06:42:59 +00:00
|
|
|
const PluginDescriptor Bladerf1OutputPlugin::m_pluginDescriptor = {
|
2020-11-21 14:38:04 +00:00
|
|
|
QStringLiteral("BladeRF1"),
|
|
|
|
QStringLiteral("BladeRF1 Output"),
|
2022-03-30 20:16:08 +00:00
|
|
|
QStringLiteral("6.20.2"),
|
2020-11-21 14:38:04 +00:00
|
|
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
|
|
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
2017-01-02 09:39:21 +00:00
|
|
|
true,
|
2020-11-21 14:38:04 +00:00
|
|
|
QStringLiteral("https://github.com/f4exb/sdrangel")
|
2017-01-02 09:39:21 +00:00
|
|
|
};
|
|
|
|
|
2020-11-21 19:24:18 +00:00
|
|
|
static constexpr const char* const m_hardwareID = "BladeRF1";
|
|
|
|
static constexpr const char* const m_deviceTypeID = BLADERF1OUTPUT_DEVICE_TYPE_ID;
|
2017-01-02 09:39:21 +00:00
|
|
|
|
2018-09-19 06:42:59 +00:00
|
|
|
Bladerf1OutputPlugin::Bladerf1OutputPlugin(QObject* parent) :
|
2017-01-02 09:39:21 +00:00
|
|
|
QObject(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-09-19 06:42:59 +00:00
|
|
|
const PluginDescriptor& Bladerf1OutputPlugin::getPluginDescriptor() const
|
2017-01-02 09:39:21 +00:00
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
2018-09-19 06:42:59 +00:00
|
|
|
void Bladerf1OutputPlugin::initPlugin(PluginAPI* pluginAPI)
|
2017-01-02 09:39:21 +00:00
|
|
|
{
|
2017-01-02 11:30:42 +00:00
|
|
|
pluginAPI->registerSampleSink(m_deviceTypeID, this);
|
2017-01-02 09:39:21 +00:00
|
|
|
}
|
|
|
|
|
2019-09-16 22:34:11 +00:00
|
|
|
void Bladerf1OutputPlugin::enumOriginDevices(QStringList& listedHwIds, OriginDevices& originDevices)
|
2017-01-02 09:39:21 +00:00
|
|
|
{
|
2019-09-16 22:34:11 +00:00
|
|
|
if (listedHwIds.contains(m_hardwareID)) { // check if it was done
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-17 17:54:13 +00:00
|
|
|
DeviceBladeRF1::enumOriginDevices(m_hardwareID, originDevices);
|
2019-09-16 22:34:11 +00: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 09:39:21 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-04-15 17:18:21 +00:00
|
|
|
#ifdef SERVER_MODE
|
2020-10-05 17:23:13 +00:00
|
|
|
DeviceGUI* Bladerf1OutputPlugin::createSampleSinkPluginInstanceGUI(
|
2019-05-24 07:37:13 +00:00
|
|
|
const QString& sinkId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet)
|
2018-04-15 17:18:21 +00:00
|
|
|
{
|
2019-06-19 16:50:55 +00:00
|
|
|
(void) sinkId;
|
|
|
|
(void) widget;
|
|
|
|
(void) deviceUISet;
|
2018-04-15 17:18:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#else
|
2020-10-05 17:23:13 +00:00
|
|
|
DeviceGUI* Bladerf1OutputPlugin::createSampleSinkPluginInstanceGUI(
|
2017-10-30 00:11:35 +00:00
|
|
|
const QString& sinkId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet)
|
2017-01-02 09:39:21 +00:00
|
|
|
{
|
|
|
|
if(sinkId == m_deviceTypeID)
|
|
|
|
{
|
2018-09-19 06:42:59 +00:00
|
|
|
Bladerf1OutputGui* gui = new Bladerf1OutputGui(deviceUISet);
|
2017-01-02 09:39:21 +00:00
|
|
|
*widget = gui;
|
|
|
|
return gui;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2018-04-15 17:18:21 +00:00
|
|
|
#endif
|
2017-09-14 11:55:57 +00:00
|
|
|
|
2019-05-19 08:28:50 +00:00
|
|
|
DeviceSampleSink* Bladerf1OutputPlugin::createSampleSinkPluginInstance(const QString& sinkId, DeviceAPI *deviceAPI)
|
2017-09-14 11:55:57 +00:00
|
|
|
{
|
|
|
|
if(sinkId == m_deviceTypeID)
|
|
|
|
{
|
2018-09-19 06:42:59 +00:00
|
|
|
Bladerf1Output* output = new Bladerf1Output(deviceAPI);
|
2017-09-14 11:55:57 +00:00
|
|
|
return output;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2019-08-04 18:24:44 +00:00
|
|
|
|
|
|
|
DeviceWebAPIAdapter *Bladerf1OutputPlugin::createDeviceWebAPIAdapter() const
|
|
|
|
{
|
|
|
|
return new BladeRF1OutputWebAPIAdapter();
|
|
|
|
}
|