| 6 | std::vector<const struct rig_caps *> RigThread::rigCaps; |
| 7 | |
| 8 | RigThread::RigThread() { |
| 9 | freq = wxGetApp().getFrequency(); |
| 10 | newFreq = freq; |
| 11 | freqChanged.store(true); |
| 12 | termStatus = 0; |
| 13 | controlMode.store(true); |
| 14 | followMode.store(true); |
| 15 | centerLock.store(false); |
| 16 | followModem.store(false); |
| 17 | errorState.store(false); |
| 18 | errorMessage = ""; |
| 19 | } |
| 20 | |
| 21 | RigThread::~RigThread() = default; |
| 22 |
nothing calls this directly
no test coverage detected