Barrett 4050 add channel 9999 query during open

pull/928/head
Mike Black W9MDB 2022-01-08 07:49:13 -06:00
rodzic 1cb47f6af4
commit 7bcc35ebc4
1 zmienionych plików z 8 dodań i 1 usunięć

Wyświetl plik

@ -87,9 +87,16 @@ static int barrett4050_open(RIG *rig)
char *response;
ENTERFUNC;
barrett4050_get_info(rig);
retval = barrett_transaction(rig, "XC9999", 0, &response);
retval = barrett_transaction(rig, "IDC9999", 0, &response);
if (retval == RIG_OK)
{
rig_debug(RIG_DEBUG_VERBOSE, "%s: channel 9999 info=%s\n", response);
}
retval = barrett_transaction(rig, "XC9999", 0, &response);
if (retval != RIG_OK)
{
rig_debug(RIG_DEBUG_ERR, "%s: result=%s\n", __func__, response);
}