2024-01-15 23:50:10 +01:00
|
|
|
#include "core/plugin.h"
|
|
|
|
|
#include "logger.h"
|
|
|
|
|
|
|
|
|
|
#include "cluster/module_cluster_instruments.h"
|
|
|
|
|
|
|
|
|
|
class CLUSTERSupport : public satdump::Plugin
|
|
|
|
|
{
|
|
|
|
|
public:
|
2025-05-31 20:26:47 +02:00
|
|
|
std::string getID() { return "cluster_support"; }
|
2024-01-15 23:50:10 +01:00
|
|
|
|
2025-05-31 20:26:47 +02:00
|
|
|
void init() { satdump::eventBus->register_handler<satdump::pipeline::RegisterModulesEvent>(registerPluginsHandler); }
|
|
|
|
|
|
|
|
|
|
static void registerPluginsHandler(const satdump::pipeline::RegisterModulesEvent &evt) { REGISTER_MODULE_EXTERNAL(evt.modules_registry, cluster::instruments::CLUSTERInstrumentsDecoderModule); }
|
2024-01-15 23:50:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
PLUGIN_LOADER(CLUSTERSupport)
|