1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

REST API: config: GET (11). Support of the rest of devices

This commit is contained in:
f4exb
2019-08-04 20:24:44 +02:00
parent 16e9684118
commit a078239685
205 changed files with 3843 additions and 494 deletions
@@ -22,6 +22,7 @@
#include "util/simpleserializer.h"
#include "perseus/deviceperseus.h"
#include "perseusplugin.h"
#include "perseuswebapiadapter.h"
#ifdef SERVER_MODE
#include "perseusinput.h"
@@ -31,7 +32,7 @@
const PluginDescriptor PerseusPlugin::m_pluginDescriptor = {
QString("Perseus Input"),
QString("4.5.2"),
QString("4.11.6"),
QString("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"),
true,
@@ -130,3 +131,8 @@ DeviceSampleSource *PerseusPlugin::createSampleSourcePluginInstance(const QStrin
return 0;
}
}
DeviceWebAPIAdapter *PerseusPlugin::createDeviceWebAPIAdapter() const
{
return new PerseusWebAPIAdapter();
}