2023-07-23 23:40:42 +02:00
|
|
|
#include "core/plugin.h"
|
|
|
|
|
#include "logger.h"
|
|
|
|
|
|
|
|
|
|
#include "dscovr/module_dscovr_instruments.h"
|
|
|
|
|
|
|
|
|
|
class DSCOVRSupport : public satdump::Plugin
|
|
|
|
|
{
|
|
|
|
|
public:
|
2025-05-31 20:26:47 +02:00
|
|
|
std::string getID() { return "dscovr_support"; }
|
2023-07-23 23:40:42 +02:00
|
|
|
|
2025-05-31 20:26:47 +02:00
|
|
|
void init() { satdump::eventBus->register_handler<satdump::pipeline::RegisterModulesEvent>(registerPluginsHandler); }
|
2023-07-23 23:40:42 +02:00
|
|
|
|
2025-05-31 20:26:47 +02:00
|
|
|
static void registerPluginsHandler(const satdump::pipeline::RegisterModulesEvent &evt) { REGISTER_MODULE_EXTERNAL(evt.modules_registry, dscovr::instruments::DSCOVRInstrumentsDecoderModule); }
|
2023-07-23 23:40:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
PLUGIN_LOADER(DSCOVRSupport)
|