Add ID 800 for FT710

pull/1148/head
Mike Black W9MDB 2022-11-04 22:41:02 -05:00
rodzic bf22bc4b02
commit 8789321465
2 zmienionych plików z 4 dodań i 3 usunięć

Wyświetl plik

@ -68,7 +68,8 @@ typedef enum nc_rigid_e
NC_RIGID_FTDX3000 = 460,
NC_RIGID_FTDX3000DM = 462, // an undocumented FT-DX3000DM 50W rig
NC_RIGID_FTDX101D = 681,
NC_RIGID_FTDX101MP = 682
NC_RIGID_FTDX101MP = 682,
NC_RIGID_FT710 = 800,
} nc_rigid_t;
@ -10484,7 +10485,7 @@ int newcat_set_cmd_validate(RIG *rig)
// For FA and FB rig.c now tries to verify the set_freq actually works
// For example the FT-2000 can't do a FA set followed by an immediate read
// We were using "ID" to verify the command but rig.c now does
// a verifcation of frequency and retries if it doesn't match
// a verification of frequency and retries if it doesn't match
if ((strncmp(priv->cmd_str, "FA", 2) == 0) && (strlen(priv->cmd_str) > 3))
{
strcpy(valcmd, "FA;");

Wyświetl plik

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