Add FTDX1200 to rigs that need to ensure PTT is off before changing frequency

https://github.com/Hamlib/Hamlib/issues/1185
Hamlib-4.5.2
Mike Black W9MDB 2022-12-11 11:53:22 -06:00
rodzic ec5dde91c5
commit 0d4f647da3
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -886,7 +886,7 @@ int newcat_set_freq(RIG *rig, vfo_t vfo, freq_t freq)
if (vfo != rig->state.tx_vfo) { return -RIG_ENTARGET; }
}
if (is_ftdx3000 || is_ftdx3000dm || is_ftdx5000)
if (is_ftdx3000 || is_ftdx3000dm || is_ftdx5000 || is_ftdx1200)
{
// we have a few rigs that can't set freq while PTT_ON
// so we'll try a few times to see if we just need to wait a bit

Wyświetl plik

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