Skip to content

Commit

Permalink
Suppress no get_vfo message for Icom rigs.
Browse files Browse the repository at this point in the history
No hope of getting Icom to ever provide this ability
  • Loading branch information
mdblack98 committed Jan 15, 2024
1 parent 0e5d2cf commit df64af4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rig.c
Original file line number Diff line number Diff line change
Expand Up @@ -3329,7 +3329,7 @@ int HAMLIB_API rig_get_vfo(RIG *rig, vfo_t *vfo)

caps = rig->caps;

if (caps->get_vfo == NULL)
if (caps->get_vfo == NULL && RIG_ICOM != RIG_BACKEND_NUM(rig->caps->rig_model))
{
rig_debug(RIG_DEBUG_WARN, "%s: no get_vfo\n", __func__);
ELAPSED2;
Expand Down

0 comments on commit df64af4

Please sign in to comment.