For Kenwood rigs add 50ms wait after set_freq to allow rig to update internal IF command

pull/1592/head
Mike Black W9MDB 2024-08-07 12:02:09 -05:00
rodzic 782911f521
commit d9d07e513c
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -1963,6 +1963,7 @@ int kenwood_set_freq(RIG *rig, vfo_t vfo, freq_t freq)
if (priv->verify_cmd[1] == 'A' && vfo_letter == 'B') { priv->verify_cmd[1] = 'A'; }
err = kenwood_transaction(rig, freqbuf, NULL, 0);
hl_usleep(50*1000); // TS480 is slow to change freq so give it some time as well as others just in case
if (priv->verify_cmd[1] == 'B' && vfo_letter == 'B') { priv->verify_cmd[1] = 'A'; }

Wyświetl plik

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