Remove redundant code in flrig.c

pull/1022/head
Mike Black W9MDB 2022-05-04 15:43:01 -05:00
rodzic d60391fcb0
commit cc7d9cd78d
1 zmienionych plików z 1 dodań i 10 usunięć

Wyświetl plik

@ -818,6 +818,7 @@ static int flrig_open(RIG *rig)
rig_debug(RIG_DEBUG_VERBOSE, "%s: set_vfoA/ptt is available\n",
__func__);
}
priv->has_set_bwA = 0;
if (iversion >= 1004005012) // 1.4.5.12 or greater
{
priv->has_set_bwA = 1;
@ -873,7 +874,6 @@ static int flrig_open(RIG *rig)
RETURNFUNC(RIG_EPROTO);
}
/* see if get_bwA is available */
retval = flrig_transaction(rig, "rig.get_bwA", NULL, value, sizeof(value));
priv->has_get_bwA = 1;
@ -883,15 +883,6 @@ static int flrig_open(RIG *rig)
rig_debug(RIG_DEBUG_VERBOSE, "%s: get_bwA is not available=%s\n", __func__,
value);
}
/* see if set_bwA is available */
retval = flrig_transaction(rig, "rig.set_bwA", NULL, value, sizeof(value));
priv->has_set_bwA = 1;
if (retval == RIG_ENAVAIL) // must not have it
{
priv->has_set_bwA = 0;
rig_debug(RIG_DEBUG_VERBOSE, "%s: get_bwA is not available=%s\n", __func__,
value);
}
strcpy(arg, value);
retval = flrig_transaction(rig, "rig.get_AB", arg, value, sizeof(value));