mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-03-22 08:09:51 +01:00
29 lines
688 B
C++
29 lines
688 B
C++
#include "radio_module.h"
|
|
|
|
SDRPP_MOD_INFO{
|
|
/* Name: */ "radio",
|
|
/* Description: */ "Analog radio decoder",
|
|
/* Author: */ "Ryzerth",
|
|
/* Version: */ 2, 0, 0,
|
|
/* Max instances */ -1
|
|
};
|
|
|
|
MOD_EXPORT void _INIT_() {
|
|
json def = json({});
|
|
config.setPath(core::args["root"].s() + "/radio_config.json");
|
|
config.load(def);
|
|
config.enableAutoSave();
|
|
}
|
|
|
|
MOD_EXPORT ModuleManager::Instance* _CREATE_INSTANCE_(std::string name) {
|
|
return new RadioModule(name);
|
|
}
|
|
|
|
MOD_EXPORT void _DELETE_INSTANCE_(void* instance) {
|
|
delete (RadioModule*)instance;
|
|
}
|
|
|
|
MOD_EXPORT void _END_() {
|
|
config.disableAutoSave();
|
|
config.save();
|
|
} |