Michael Black W9MDB 2020-12-11 14:55:33 -06:00
rodzic f60f9e0181
commit 0a7c229f06
2 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -8963,6 +8963,7 @@ int newcat_get_cmd(RIG *rig)
__func__, priv->ret_data); __func__, priv->ret_data);
// we were using BUSBUSY but microham devices need retries // we were using BUSBUSY but microham devices need retries
//rc = -RIG_BUSBUSY; /* don't write command again */ //rc = -RIG_BUSBUSY; /* don't write command again */
rc = -RIG_EPROTO;
/* we could decrement retry_count /* we could decrement retry_count
here but there is a danger of here but there is a danger of
infinite looping so we just use up infinite looping so we just use up
@ -9038,6 +9039,7 @@ int newcat_get_cmd(RIG *rig)
// we were using BUSBUSY but microham devices need retries // we were using BUSBUSY but microham devices need retries
// this should be OK under all other circumstances too // this should be OK under all other circumstances too
//rc = -RIG_BUSBUSY; /* retry read only */ //rc = -RIG_BUSBUSY; /* retry read only */
rc = -RIG_EPROTO;
} }
} }

Wyświetl plik

@ -50,7 +50,7 @@
typedef char ncboolean; typedef char ncboolean;
/* shared function version */ /* shared function version */
#define NEWCAT_VER "20201209" #define NEWCAT_VER "20201211"
/* Hopefully large enough for future use, 128 chars plus '\0' */ /* Hopefully large enough for future use, 128 chars plus '\0' */
#define NEWCAT_DATA_LEN 129 #define NEWCAT_DATA_LEN 129