mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
25 lines
555 B
C++
25 lines
555 B
C++
|
|
#include "core/plugin.h"
|
||
|
|
#include "logger.h"
|
||
|
|
#include "core/module.h"
|
||
|
|
#include "tubin/module_tubin_decoder.h"
|
||
|
|
|
||
|
|
class TUBSATSupport : public satdump::Plugin
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
std::string getID()
|
||
|
|
{
|
||
|
|
return "tubsat_support";
|
||
|
|
}
|
||
|
|
|
||
|
|
void init()
|
||
|
|
{
|
||
|
|
satdump::eventBus->register_handler<RegisterModulesEvent>(registerPluginsHandler);
|
||
|
|
}
|
||
|
|
|
||
|
|
static void registerPluginsHandler(const RegisterModulesEvent &evt)
|
||
|
|
{
|
||
|
|
REGISTER_MODULE_EXTERNAL(evt.modules_registry, tubin::TUBINDecoderModule);
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
PLUGIN_LOADER(TUBSATSupport)
|