Fix icom_rig_open return for RIG_OK

pull/224/head
Michael Black 2020-03-07 22:00:15 -06:00
rodzic c33c02965d
commit 53b1a93431
1 zmienionych plików z 10 dodań i 1 usunięć

Wyświetl plik

@ -774,7 +774,7 @@ icom_rig_open(RIG *rig)
priv->tx_vfo = RIG_VFO_MAIN;
}
return retval;
return RIG_OK;
}
/*
@ -6518,6 +6518,15 @@ int icom_send_voice_mem(RIG *rig, vfo_t vfo, int ch)
return RIG_OK;
}
/*
* icom_get_freq_range
* Assumes rig!=NULL, rig->state.priv!=NULL
*/
int icom_get_freq_range(RIG *rig, vfo_t vfo, int ch)
{
// Automatically fill in the freq range for this rig if available
}
// Sets rig vfo && priv->curr_vfo to default VFOA, or current vfo, or the vfo requested
static int set_vfo_curr(RIG *rig, vfo_t vfo, vfo_t curr_vfo)
{