2022-11-14 23:54:49 +01:00
|
|
|
#include "core/plugin.h"
|
|
|
|
|
#include "logger.h"
|
|
|
|
|
|
|
|
|
|
#include "fy4/module_fy4_lrit_data_decoder.h"
|
|
|
|
|
|
|
|
|
|
class FengYun4Support : public satdump::Plugin
|
|
|
|
|
{
|
|
|
|
|
public:
|
2025-05-31 20:26:47 +02:00
|
|
|
std::string getID() { return "fenyun4_support"; }
|
2022-11-14 23:54:49 +01:00
|
|
|
|
2025-05-31 20:26:47 +02:00
|
|
|
void init() { satdump::eventBus->register_handler<satdump::pipeline::RegisterModulesEvent>(registerPluginsHandler); }
|
2022-11-14 23:54:49 +01:00
|
|
|
|
2025-05-31 20:26:47 +02:00
|
|
|
static void registerPluginsHandler(const satdump::pipeline::RegisterModulesEvent &evt) { REGISTER_MODULE_EXTERNAL(evt.modules_registry, fy4::lrit::FY4LRITDataDecoderModule); }
|
2022-11-14 23:54:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
PLUGIN_LOADER(FengYun4Support)
|