kopia lustrzana https://github.com/Hamlib/Hamlib
Fix FTDX101D/MP to not validate ST command
https://github.com/Hamlib/Hamlib/issues/1379pull/1389/head
rodzic
c07e40e18b
commit
6f229d1c1a
|
@ -11099,9 +11099,11 @@ int newcat_set_cmd(RIG *rig)
|
||||||
}
|
}
|
||||||
|
|
||||||
// freq set and ptt are now verified in rig.c
|
// freq set and ptt are now verified in rig.c
|
||||||
|
// ST command is not validate -- caused problems on FTDX101D
|
||||||
if (strncmp(priv->cmd_str, "FA", 2) == 0
|
if (strncmp(priv->cmd_str, "FA", 2) == 0
|
||||||
|| strncmp(priv->cmd_str, "FB", 2) == 0
|
|| strncmp(priv->cmd_str, "FB", 2) == 0
|
||||||
|| strncmp(priv->cmd_str, "TX", 2) == 0)
|
|| strncmp(priv->cmd_str, "TX", 2) == 0
|
||||||
|
|| strncmp(priv->cmd_str, "ST", 2) == 0)
|
||||||
{
|
{
|
||||||
RETURNFUNC(RIG_OK);
|
RETURNFUNC(RIG_OK);
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
typedef char ncboolean;
|
typedef char ncboolean;
|
||||||
|
|
||||||
/* shared function version */
|
/* shared function version */
|
||||||
#define NEWCAT_VER "20230907"
|
#define NEWCAT_VER "20230911"
|
||||||
|
|
||||||
/* 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
|
||||||
|
|
Ładowanie…
Reference in New Issue