| 574 | |
| 575 | |
| 576 | shortfreq_t Rig::getResolution (rmode_t mode) |
| 577 | { |
| 578 | shortfreq_t res; |
| 579 | |
| 580 | res = rig_get_resolution(theRig, mode); |
| 581 | if (res < 0) |
| 582 | THROW(new RigException (res)); |
| 583 | |
| 584 | return res; |
| 585 | } |
| 586 | |
| 587 | void Rig::reset (reset_t reset) |
| 588 | { |
nothing calls this directly
no test coverage detected