kopia lustrzana https://github.com/Hamlib/Hamlib
Add FTDX-9000 to Yaesu rigs that cannot deal with "VS0;VS;" and end up muting the VFO
rodzic
1eb474f2e6
commit
03aa7b1d83
|
@ -10150,7 +10150,8 @@ int newcat_set_cmd_validate(RIG *rig)
|
|||
else if ((strncmp(priv->cmd_str, "VS", 2) == 0) && (strlen(priv->cmd_str) > 3))
|
||||
{
|
||||
strcpy(valcmd, "VS;");
|
||||
if (priv->rig_id == NC_RIGID_FTDX3000)
|
||||
// Some models treat the 2nd VS as a mute request
|
||||
if (is_ftdx3000 || is_ftdx9000)
|
||||
{
|
||||
strcpy(valcmd, "");
|
||||
}
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
typedef char ncboolean;
|
||||
|
||||
/* shared function version */
|
||||
#define NEWCAT_VER "20220118"
|
||||
#define NEWCAT_VER "20220121"
|
||||
|
||||
/* Hopefully large enough for future use, 128 chars plus '\0' */
|
||||
#define NEWCAT_DATA_LEN 129
|
||||
|
|
Ładowanie…
Reference in New Issue