| 514 | }; |
| 515 | |
| 516 | MOD_EXPORT void _INIT_() { |
| 517 | json def = json({}); |
| 518 | def["devices"] = json({}); |
| 519 | def["device"] = ""; |
| 520 | config.setPath(options::opts.root + "/limesdr_config.json"); |
| 521 | config.load(def); |
| 522 | config.enableAutoSave(); |
| 523 | } |
| 524 | |
| 525 | MOD_EXPORT ModuleManager::Instance* _CREATE_INSTANCE_(std::string name) { |
| 526 | return new LimeSDRSourceModule(name); |
nothing calls this directly
no test coverage detected