| 7 | #include <wx/msgdlg.h> |
| 8 | |
| 9 | DeviceConfig::DeviceConfig() { |
| 10 | ppm.store(0); |
| 11 | offset.store(0); |
| 12 | agcMode.store(true); |
| 13 | sampleRate.store(0); |
| 14 | } |
| 15 | |
| 16 | DeviceConfig::DeviceConfig(std::string deviceId_in) : DeviceConfig() { |
| 17 | deviceId = deviceId_in; |
nothing calls this directly
no outgoing calls
no test coverage detected