Fix get_vfo for FT757GX

pull/1022/head
Mike Black W9MDB 2022-04-29 08:33:36 -05:00
rodzic e1c2a08789
commit 4b64d5f7c3
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -620,7 +620,8 @@ static int ft757gx_get_vfo(RIG *rig, vfo_t *vfo)
{
struct ft757_priv_data *priv = (struct ft757_priv_data *)rig->state.priv;
// we'll just use the cached vfo for the 757GX since we can't read it
return priv->current_vfo;
*vfo = priv->current_vfo;
return RIG_OK;
}
static int ft757_get_vfo(RIG *rig, vfo_t *vfo)