| 282 | } |
| 283 | |
| 284 | float Rig::getParmF(setting_t parm) |
| 285 | { |
| 286 | value_t val; |
| 287 | |
| 288 | if (!RIG_LEVEL_IS_FLOAT(parm)) |
| 289 | THROW(new RigException (-RIG_EINVAL)); |
| 290 | |
| 291 | CHECK_RIG( rig_get_parm(theRig, parm, &val) ); |
| 292 | return val.f; |
| 293 | } |
| 294 | |
| 295 | void Rig::setSplitFreq(freq_t tx_freq, vfo_t vfo) { |
| 296 | CHECK_RIG( rig_set_split_freq(theRig, vfo, tx_freq) ); |
nothing calls this directly
no test coverage detected