| 1061 | }; |
| 1062 | |
| 1063 | MOD_EXPORT void _INIT_() { |
| 1064 | json def = json({}); |
| 1065 | def["devices"] = json({}); |
| 1066 | def["device"] = ""; |
| 1067 | config.setPath(options::opts.root + "/sdrplay_config.json"); |
| 1068 | config.load(def); |
| 1069 | config.enableAutoSave(); |
| 1070 | } |
| 1071 | |
| 1072 | MOD_EXPORT ModuleManager::Instance* _CREATE_INSTANCE_(std::string name) { |
| 1073 | return new SDRPlaySourceModule(name); |
nothing calls this directly
no test coverage detected