1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-08-14 23:43:43 -04:00

REST API: config (8): preset channel Tx adapters where there is CW keyer. AM mod working only

This commit is contained in:
f4exb
2019-08-02 18:16:37 +02:00
parent 9610a6b93a
commit 68a4e23fb0
27 changed files with 777 additions and 15 deletions
+6 -1
View File
@@ -22,11 +22,12 @@
#include "ammodgui.h"
#endif
#include "ammod.h"
#include "ammodwebapiadapter.h"
#include "ammodplugin.h"
const PluginDescriptor AMModPlugin::m_pluginDescriptor = {
QString("AM Modulator"),
QString("4.11.5"),
QString("4.11.6"),
QString("(c) Edouard Griffiths, F4EXB"),
QString("https://github.com/f4exb/sdrangel"),
true,
@@ -76,3 +77,7 @@ ChannelAPI* AMModPlugin::createTxChannelCS(DeviceAPI *deviceAPI) const
return new AMMod(deviceAPI);
}
ChannelAPI* AMModPlugin::createChannelWebAPIAdapter() const
{
return new AMModWebAPIAdapter();
}