Take out EX echo request -- can't do that as EX command does not expect response

https://github.com/Hamlib/Hamlib/issues/1100
pull/1106/head
Mike Black W9MDB 2022-08-21 11:57:53 -05:00
rodzic 4664620b92
commit f8f0678988
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -600,7 +600,7 @@ int newcat_open(RIG *rig)
{
int err;
// set the CAT TIME OUT TIMER to 100ms
SNPRINTF(priv->cmd_str, sizeof(priv->cmd_str), "EX0331;EX033;");
SNPRINTF(priv->cmd_str, sizeof(priv->cmd_str), "EX0331;");
if (RIG_OK != (err = newcat_set_cmd(rig)))
{
@ -612,7 +612,7 @@ int newcat_open(RIG *rig)
{
int err;
// set the CAT TIME OUT TIMER to 100ms
SNPRINTF(priv->cmd_str, sizeof(priv->cmd_str), "EX0391;EX039;");
SNPRINTF(priv->cmd_str, sizeof(priv->cmd_str), "EX0391;");
if (RIG_OK != (err = newcat_set_cmd(rig)))
{