satdump/plugins/tubsat_support/main.cpp

16 lines
521 B
C++
Raw Permalink Normal View History

2023-01-18 11:39:41 +01:00
#include "core/plugin.h"
#include "logger.h"
2023-01-18 11:39:41 +01:00
#include "tubin/module_tubin_decoder.h"
class TUBSATSupport : public satdump::Plugin
{
public:
std::string getID() { return "tubsat_support"; }
2023-01-18 11:39:41 +01:00
void init() { satdump::eventBus->register_handler<satdump::pipeline::RegisterModulesEvent>(registerPluginsHandler); }
2023-01-18 11:39:41 +01:00
static void registerPluginsHandler(const satdump::pipeline::RegisterModulesEvent &evt) { REGISTER_MODULE_EXTERNAL(evt.modules_registry, tubin::TUBINDecoderModule); }
2023-01-18 11:39:41 +01:00
};
PLUGIN_LOADER(TUBSATSupport)