Don't do any ID checks on Hilberling PT8000A

pull/1592/head
Mike Black W9MDB 2024-07-30 10:03:16 -05:00
rodzic 6679746c62
commit 9ace7dbe5c
2 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -378,7 +378,7 @@ transaction_write:
skip |= strncmp(cmdstr, "PS1", 3) == 0; skip |= strncmp(cmdstr, "PS1", 3) == 0;
skip |= strncmp(cmdstr, "PS0", 3) == 0; skip |= strncmp(cmdstr, "PS0", 3) == 0;
skip |= strncmp(cmdstr, "K22", 3) == 0; skip |= strncmp(cmdstr, "K22", 3) == 0;
skip |= (rig->caps->rig_model == RIG_MODEL_PT8000A && (strncmp(cmdstr, "TQ", 2) == 0)); // Skip Hilberling TQn command check skip |= (rig->caps->rig_model == RIG_MODEL_PT8000A); // Skip Hilberling command check
if (skip) if (skip)
{ {
@ -5161,6 +5161,7 @@ int kenwood_set_trn(RIG *rig, int trn)
case RIG_MODEL_POWERSDR: // powersdr doesn't have AI command case RIG_MODEL_POWERSDR: // powersdr doesn't have AI command
case RIG_MODEL_THETIS: // powersdr doesn't have AI command case RIG_MODEL_THETIS: // powersdr doesn't have AI command
case RIG_MODEL_PT8000A: // powersdr doesn't have AI command
RETURNFUNC(-RIG_ENAVAIL); RETURNFUNC(-RIG_ENAVAIL);
case RIG_MODEL_TS990S: case RIG_MODEL_TS990S:

Wyświetl plik

@ -28,7 +28,7 @@
#include "token.h" #include "token.h"
#include "idx_builtin.h" #include "idx_builtin.h"
#define BACKEND_VER "20240712" #define BACKEND_VER "20240730"
#define EOM_KEN ';' #define EOM_KEN ';'
#define EOM_TH '\r' #define EOM_TH '\r'