| 597 | }; |
| 598 | |
| 599 | MOD_EXPORT void _INIT_() { |
| 600 | json def = json({}); |
| 601 | def["devices"] = json({}); |
| 602 | def["device"] = ""; |
| 603 | config.setPath(options::opts.root + "/bladerf_config.json"); |
| 604 | config.load(def); |
| 605 | config.enableAutoSave(); |
| 606 | } |
| 607 | |
| 608 | MOD_EXPORT ModuleManager::Instance* _CREATE_INSTANCE_(std::string name) { |
| 609 | return new BladeRFSourceModule(name); |
nothing calls this directly
no test coverage detected