2022-10-19 19:34:55 +02:00
|
|
|
#include "core/plugin.h"
|
|
|
|
|
#include "logger.h"
|
|
|
|
|
#include "sdrpp_server.h"
|
|
|
|
|
|
2023-11-29 11:53:13 +01:00
|
|
|
class SDRPPServerSupport : public satdump::Plugin
|
2022-10-19 19:34:55 +02:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
std::string getID()
|
|
|
|
|
{
|
|
|
|
|
return "spyserver_support";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void init()
|
|
|
|
|
{
|
|
|
|
|
satdump::eventBus->register_handler<dsp::RegisterDSPSampleSourcesEvent>(registerSources);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void registerSources(const dsp::RegisterDSPSampleSourcesEvent &evt)
|
|
|
|
|
{
|
|
|
|
|
evt.dsp_sources_registry.insert({SDRPPServerSource::getID(), {SDRPPServerSource::getInstance, SDRPPServerSource::getAvailableSources}});
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2023-11-29 11:53:13 +01:00
|
|
|
PLUGIN_LOADER(SDRPPServerSupport)
|