2015-06-07 11:56:19 -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-06-07 11:56:19 -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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2018-09-19 02:56:39 -04:00
|
|
|
#include "bladerf1inputplugin.h"
|
2016-12-26 21:11:57 -05:00
|
|
|
|
2015-06-06 21:30:28 -04:00
|
|
|
#include <QtPlugin>
|
|
|
|
#include <libbladeRF.h>
|
|
|
|
#include "plugin/pluginapi.h"
|
|
|
|
#include "util/simpleserializer.h"
|
2016-12-26 21:11:57 -05:00
|
|
|
|
2018-04-15 13:14:20 -04:00
|
|
|
#ifdef SERVER_MODE
|
2018-09-19 02:56:39 -04:00
|
|
|
#include "bladerf1input.h"
|
2018-04-15 13:14:20 -04:00
|
|
|
#else
|
2018-09-19 02:56:39 -04:00
|
|
|
#include "bladerf1inputgui.h"
|
2018-04-15 13:14:20 -04:00
|
|
|
#endif
|
2015-06-06 21:30:28 -04:00
|
|
|
|
2018-09-19 02:56:39 -04:00
|
|
|
const PluginDescriptor Blderf1InputPlugin::m_pluginDescriptor = {
|
2018-09-18 23:54:07 -04:00
|
|
|
QString("BladeRF1 Input"),
|
2019-04-11 18:30:57 -04:00
|
|
|
QString("4.5.4"),
|
2015-06-06 21:30:28 -04:00
|
|
|
QString("(c) Edouard Griffiths, F4EXB"),
|
2015-09-01 19:16:40 -04:00
|
|
|
QString("https://github.com/f4exb/sdrangel"),
|
2015-06-06 21:30:28 -04:00
|
|
|
true,
|
2015-09-01 19:16:40 -04:00
|
|
|
QString("https://github.com/f4exb/sdrangel")
|
2015-06-06 21:30:28 -04:00
|
|
|
};
|
|
|
|
|
2018-09-19 02:56:39 -04:00
|
|
|
const QString Blderf1InputPlugin::m_hardwareID = "BladeRF1";
|
|
|
|
const QString Blderf1InputPlugin::m_deviceTypeID = BLADERF1INPUT_DEVICE_TYPE_ID;
|
2015-09-30 23:47:24 -04:00
|
|
|
|
2018-09-19 02:56:39 -04:00
|
|
|
Blderf1InputPlugin::Blderf1InputPlugin(QObject* parent) :
|
2016-05-17 11:57:48 -04:00
|
|
|
QObject(parent)
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-09-19 02:56:39 -04:00
|
|
|
const PluginDescriptor& Blderf1InputPlugin::getPluginDescriptor() const
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
|
|
|
return m_pluginDescriptor;
|
|
|
|
}
|
|
|
|
|
2018-09-19 02:56:39 -04:00
|
|
|
void Blderf1InputPlugin::initPlugin(PluginAPI* pluginAPI)
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
2016-05-17 11:57:48 -04:00
|
|
|
pluginAPI->registerSampleSource(m_deviceTypeID, this);
|
2015-06-06 21:30:28 -04:00
|
|
|
}
|
|
|
|
|
2018-09-19 02:56:39 -04:00
|
|
|
PluginInterface::SamplingDevices Blderf1InputPlugin::enumSampleSources()
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
2016-10-13 16:23:43 -04:00
|
|
|
SamplingDevices result;
|
2019-06-26 11:44:44 -04:00
|
|
|
struct bladerf_devinfo *devinfo = nullptr;
|
2015-08-28 21:09:44 -04:00
|
|
|
|
2015-06-06 21:30:28 -04:00
|
|
|
int count = bladerf_get_device_list(&devinfo);
|
|
|
|
|
2018-02-24 04:29:27 -05:00
|
|
|
if (devinfo)
|
|
|
|
{
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
qCritical("BlderfInputPlugin::enumSampleSources: No device at index %d", i);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if (status != 0)
|
|
|
|
{
|
|
|
|
qCritical("BlderfInputPlugin::enumSampleSources: Failed to open device at index %d", i);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *boardName = bladerf_get_board_name(dev);
|
|
|
|
|
|
|
|
if (strcmp(boardName, "bladerf1") == 0)
|
|
|
|
{
|
|
|
|
QString displayedName(QString("BladeRF1[%1] %2").arg(devinfo[i].instance).arg(devinfo[i].serial));
|
|
|
|
|
|
|
|
result.append(SamplingDevice(displayedName,
|
|
|
|
m_hardwareID,
|
|
|
|
m_deviceTypeID,
|
|
|
|
QString(devinfo[i].serial),
|
|
|
|
i,
|
|
|
|
PluginInterface::SamplingDevice::PhysicalDevice,
|
2019-05-07 12:58:20 -04:00
|
|
|
PluginInterface::SamplingDevice::StreamSingleRx,
|
2018-09-19 00:15:22 -04:00
|
|
|
1,
|
|
|
|
0));
|
|
|
|
}
|
|
|
|
|
|
|
|
bladerf_close(dev);
|
2018-02-24 04:29:27 -05:00
|
|
|
}
|
2015-08-28 21:09:44 -04:00
|
|
|
|
2015-08-30 07:03:27 -04:00
|
|
|
bladerf_free_device_list(devinfo); // Valgrind memcheck
|
|
|
|
}
|
2015-08-28 21:09:44 -04:00
|
|
|
|
2015-06-06 21:30:28 -04:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-04-15 13:14:20 -04:00
|
|
|
#ifdef SERVER_MODE
|
2018-09-19 02:56:39 -04:00
|
|
|
PluginInstanceGUI* Blderf1InputPlugin::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
|
2018-09-19 02:56:39 -04:00
|
|
|
PluginInstanceGUI* Blderf1InputPlugin::createSampleSourcePluginInstanceGUI(
|
2017-10-29 19:02:28 -04:00
|
|
|
const QString& sourceId,
|
|
|
|
QWidget **widget,
|
|
|
|
DeviceUISet *deviceUISet)
|
2015-06-06 21:30:28 -04:00
|
|
|
{
|
2015-09-30 23:47:24 -04:00
|
|
|
if(sourceId == m_deviceTypeID)
|
2015-08-28 21:09:44 -04:00
|
|
|
{
|
2018-09-19 02:56:39 -04:00
|
|
|
Bladerf1InputGui* gui = new Bladerf1InputGui(deviceUISet);
|
2016-05-16 21:41:01 -04:00
|
|
|
*widget = gui;
|
2015-06-06 21:30:28 -04:00
|
|
|
return gui;
|
2015-08-28 21:09:44 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
2015-06-06 21:30:28 -04:00
|
|
|
}
|
|
|
|
}
|
2018-04-15 13:14:20 -04:00
|
|
|
#endif
|
2017-09-14 07:34:32 -04:00
|
|
|
|
2019-05-19 04:28:50 -04:00
|
|
|
DeviceSampleSource *Blderf1InputPlugin::createSampleSourcePluginInstance(const QString& sourceId, DeviceAPI *deviceAPI)
|
2017-09-14 07:34:32 -04:00
|
|
|
{
|
|
|
|
if (sourceId == m_deviceTypeID)
|
|
|
|
{
|
2018-09-19 02:56:39 -04:00
|
|
|
Bladerf1Input *input = new Bladerf1Input(deviceAPI);
|
2017-09-14 07:34:32 -04:00
|
|
|
return input;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|