v7: rename vordemod files to vordemodmc files. Part of #1223
@ -2,7 +2,7 @@ project(demod)
|
||||
|
||||
if (Qt5Quick_FOUND AND Qt5QuickWidgets_FOUND AND Qt5Positioning_FOUND)
|
||||
add_subdirectory(demodadsb)
|
||||
add_subdirectory(demodvor)
|
||||
add_subdirectory(demodvormc)
|
||||
endif()
|
||||
|
||||
add_subdirectory(demodam)
|
||||
|
@ -1,23 +1,23 @@
|
||||
project(vor)
|
||||
project(vormc)
|
||||
|
||||
set(vor_SOURCES
|
||||
vordemod.cpp
|
||||
vordemodsettings.cpp
|
||||
vordemodbaseband.cpp
|
||||
vordemodsink.cpp
|
||||
vordemodplugin.cpp
|
||||
vordemodwebapiadapter.cpp
|
||||
vordemodreport.cpp
|
||||
set(vormc_SOURCES
|
||||
vordemodmc.cpp
|
||||
vordemodmcsettings.cpp
|
||||
vordemodmcbaseband.cpp
|
||||
vordemodmcsink.cpp
|
||||
vordemodmcplugin.cpp
|
||||
vordemodmcwebapiadapter.cpp
|
||||
vordemodmcreport.cpp
|
||||
)
|
||||
|
||||
set(vor_HEADERS
|
||||
vordemod.h
|
||||
vordemodsettings.h
|
||||
vordemodbaseband.h
|
||||
vordemodsink.h
|
||||
vordemodplugin.h
|
||||
vordemodwebapiadapter.h
|
||||
vordemodreport.h
|
||||
set(vormc_HEADERS
|
||||
vordemodmc.h
|
||||
vordemodmcsettings.h
|
||||
vordemodmcbaseband.h
|
||||
vordemodmcsink.h
|
||||
vordemodmcplugin.h
|
||||
vordemodmcwebapiadapter.h
|
||||
vordemodmcreport.h
|
||||
)
|
||||
|
||||
|
||||
@ -26,33 +26,33 @@ include_directories(
|
||||
)
|
||||
|
||||
if(NOT SERVER_MODE)
|
||||
set(vor_SOURCES
|
||||
${vor_SOURCES}
|
||||
vordemodgui.cpp
|
||||
vordemodgui.ui
|
||||
set(vormc_SOURCES
|
||||
${vormc_SOURCES}
|
||||
vordemodmcgui.cpp
|
||||
vordemodmcgui.ui
|
||||
map.qrc
|
||||
icons.qrc
|
||||
)
|
||||
set(vor_HEADERS
|
||||
${vor_HEADERS}
|
||||
vordemodgui.h
|
||||
set(vormc_HEADERS
|
||||
${vormc_HEADERS}
|
||||
vordemodmcgui.h
|
||||
navaid.h
|
||||
../demodadsb/csv.h
|
||||
)
|
||||
|
||||
set(TARGET_NAME demodvor)
|
||||
set(TARGET_NAME demodvormc)
|
||||
set(TARGET_LIB "Qt5::Widgets" Qt5::Quick Qt5::QuickWidgets Qt5::Positioning)
|
||||
set(TARGET_LIB_GUI "sdrgui")
|
||||
set(INSTALL_FOLDER ${INSTALL_PLUGINS_DIR})
|
||||
else()
|
||||
set(TARGET_NAME demodvorsrv)
|
||||
set(TARGET_NAME demodvormcsrv)
|
||||
set(TARGET_LIB "")
|
||||
set(TARGET_LIB_GUI "")
|
||||
set(INSTALL_FOLDER ${INSTALL_PLUGINSSRV_DIR})
|
||||
endif()
|
||||
|
||||
add_library(${TARGET_NAME} SHARED
|
||||
${vor_SOURCES}
|
||||
${vormc_SOURCES}
|
||||
)
|
||||
|
||||
target_link_libraries(${TARGET_NAME}
|
Before Width: | Height: | Size: 547 B After Width: | Height: | Size: 547 B |
Before Width: | Height: | Size: 365 B After Width: | Height: | Size: 365 B |
Before Width: | Height: | Size: 652 B After Width: | Height: | Size: 652 B |
Before Width: | Height: | Size: 415 B After Width: | Height: | Size: 415 B |
Before Width: | Height: | Size: 847 B After Width: | Height: | Size: 847 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
@ -16,7 +16,7 @@
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
||||
///////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "vordemod.h"
|
||||
#include "vordemodmc.h"
|
||||
|
||||
#include <QTime>
|
||||
#include <QDebug>
|
@ -28,8 +28,8 @@
|
||||
#include "channel/channelapi.h"
|
||||
#include "util/message.h"
|
||||
|
||||
#include "vordemodbaseband.h"
|
||||
#include "vordemodsettings.h"
|
||||
#include "vordemodmcbaseband.h"
|
||||
#include "vordemodmcsettings.h"
|
||||
|
||||
class QNetworkAccessManager;
|
||||
class QNetworkReply;
|
@ -22,8 +22,8 @@
|
||||
#include "dsp/dspcommands.h"
|
||||
#include "dsp/downchannelizer.h"
|
||||
|
||||
#include "vordemodbaseband.h"
|
||||
#include "vordemodreport.h"
|
||||
#include "vordemodmcbaseband.h"
|
||||
#include "vordemodmcreport.h"
|
||||
|
||||
MESSAGE_CLASS_DEFINITION(VORDemodMCBaseband::MsgConfigureVORDemodBaseband, Message)
|
||||
|
@ -26,7 +26,7 @@
|
||||
#include "util/message.h"
|
||||
#include "util/messagequeue.h"
|
||||
|
||||
#include "vordemodsink.h"
|
||||
#include "vordemodmcsink.h"
|
||||
|
||||
class DownChannelizer;
|
||||
|
@ -27,12 +27,12 @@
|
||||
#include <QMessageBox>
|
||||
#include <QAction>
|
||||
|
||||
#include "vordemodgui.h"
|
||||
#include "vordemodmcgui.h"
|
||||
|
||||
#include "device/deviceuiset.h"
|
||||
#include "dsp/dspengine.h"
|
||||
#include "dsp/dspcommands.h"
|
||||
#include "ui_vordemodgui.h"
|
||||
#include "ui_vordemodmcgui.h"
|
||||
#include "plugin/pluginapi.h"
|
||||
#include "util/simpleserializer.h"
|
||||
#include "util/db.h"
|
||||
@ -46,9 +46,9 @@
|
||||
#include "channel/channelwebapiutils.h"
|
||||
#include "maincore.h"
|
||||
|
||||
#include "vordemod.h"
|
||||
#include "vordemodreport.h"
|
||||
#include "vordemodsink.h"
|
||||
#include "vordemodmc.h"
|
||||
#include "vordemodmcreport.h"
|
||||
#include "vordemodmcsink.h"
|
||||
|
||||
#define VOR_COL_NAME 0
|
||||
#define VOR_COL_FREQUENCY 1
|
@ -38,7 +38,7 @@
|
||||
#include "util/httpdownloadmanager.h"
|
||||
#include "util/azel.h"
|
||||
#include "settings/rollupstate.h"
|
||||
#include "vordemodsettings.h"
|
||||
#include "vordemodmcsettings.h"
|
||||
#include "navaid.h"
|
||||
|
||||
class PluginAPI;
|
@ -20,11 +20,11 @@
|
||||
#include "plugin/pluginapi.h"
|
||||
|
||||
#ifndef SERVER_MODE
|
||||
#include "vordemodgui.h"
|
||||
#include "vordemodmcgui.h"
|
||||
#endif
|
||||
#include "vordemod.h"
|
||||
#include "vordemodwebapiadapter.h"
|
||||
#include "vordemodplugin.h"
|
||||
#include "vordemodmc.h"
|
||||
#include "vordemodmcwebapiadapter.h"
|
||||
#include "vordemodmcplugin.h"
|
||||
|
||||
const PluginDescriptor VORDemodMCPlugin::m_pluginDescriptor = {
|
||||
VORDemodMC::m_channelId,
|
||||
@ -88,5 +88,5 @@ ChannelGUI* VORDemodMCPlugin::createRxChannelGUI(DeviceUISet *deviceUISet, Baseb
|
||||
|
||||
ChannelWebAPIAdapter* VORDemodMCPlugin::createChannelWebAPIAdapter() const
|
||||
{
|
||||
return new VORDemodWebAPIAdapter();
|
||||
return new VORDemodMCWebAPIAdapter();
|
||||
}
|
@ -15,7 +15,7 @@
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
||||
///////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "vordemodreport.h"
|
||||
#include "vordemodmcreport.h"
|
||||
|
||||
MESSAGE_CLASS_DEFINITION(VORDemodMCReport::MsgReportFreqOffset, Message)
|
||||
MESSAGE_CLASS_DEFINITION(VORDemodMCReport::MsgReportRadial, Message)
|
@ -21,7 +21,7 @@
|
||||
#include "dsp/dspengine.h"
|
||||
#include "util/simpleserializer.h"
|
||||
#include "settings/serializable.h"
|
||||
#include "vordemodsettings.h"
|
||||
#include "vordemodmcsettings.h"
|
||||
|
||||
VORDemodMCSettings::VORDemodMCSettings() :
|
||||
m_channelMarker(nullptr),
|
@ -27,8 +27,8 @@
|
||||
#include "util/morse.h"
|
||||
#include "util/units.h"
|
||||
|
||||
#include "vordemodsink.h"
|
||||
#include "vordemodreport.h"
|
||||
#include "vordemodmcsink.h"
|
||||
#include "vordemodmcreport.h"
|
||||
|
||||
VORDemodMCSink::VORDemodMCSink(const VORDemodMCSettings& settings, int subChannel,
|
||||
MessageQueue *messageQueueToGUI) :
|
@ -30,7 +30,7 @@
|
||||
#include "util/doublebufferfifo.h"
|
||||
#include "util/messagequeue.h"
|
||||
|
||||
#include "vordemodsettings.h"
|
||||
#include "vordemodmcsettings.h"
|
||||
|
||||
#include <vector>
|
||||
|
@ -17,16 +17,16 @@
|
||||
///////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include "SWGChannelSettings.h"
|
||||
#include "vordemod.h"
|
||||
#include "vordemodwebapiadapter.h"
|
||||
#include "vordemodmc.h"
|
||||
#include "vordemodmcwebapiadapter.h"
|
||||
|
||||
VORDemodWebAPIAdapter::VORDemodWebAPIAdapter()
|
||||
VORDemodMCWebAPIAdapter::VORDemodMCWebAPIAdapter()
|
||||
{}
|
||||
|
||||
VORDemodWebAPIAdapter::~VORDemodWebAPIAdapter()
|
||||
VORDemodMCWebAPIAdapter::~VORDemodMCWebAPIAdapter()
|
||||
{}
|
||||
|
||||
int VORDemodWebAPIAdapter::webapiSettingsGet(
|
||||
int VORDemodMCWebAPIAdapter::webapiSettingsGet(
|
||||
SWGSDRangel::SWGChannelSettings& response,
|
||||
QString& errorMessage)
|
||||
{
|
||||
@ -38,7 +38,7 @@ int VORDemodWebAPIAdapter::webapiSettingsGet(
|
||||
return 200;
|
||||
}
|
||||
|
||||
int VORDemodWebAPIAdapter::webapiSettingsPutPatch(
|
||||
int VORDemodMCWebAPIAdapter::webapiSettingsPutPatch(
|
||||
bool force,
|
||||
const QStringList& channelSettingsKeys,
|
||||
SWGSDRangel::SWGChannelSettings& response,
|
@ -20,15 +20,15 @@
|
||||
#define INCLUDE_VORDEMOD_WEBAPIADAPTER_H
|
||||
|
||||
#include "channel/channelwebapiadapter.h"
|
||||
#include "vordemodsettings.h"
|
||||
#include "vordemodmcsettings.h"
|
||||
|
||||
/**
|
||||
* Standalone API adapter only for the settings
|
||||
*/
|
||||
class VORDemodWebAPIAdapter : public ChannelWebAPIAdapter {
|
||||
class VORDemodMCWebAPIAdapter : public ChannelWebAPIAdapter {
|
||||
public:
|
||||
VORDemodWebAPIAdapter();
|
||||
virtual ~VORDemodWebAPIAdapter();
|
||||
VORDemodMCWebAPIAdapter();
|
||||
virtual ~VORDemodMCWebAPIAdapter();
|
||||
|
||||
virtual QByteArray serialize() const { return m_settings.serialize(); }
|
||||
virtual bool deserialize(const QByteArray& data) { return m_settings.deserialize(data); }
|