Ensure usb echo off is determined first thing for Icom rigs

https://github.com/Hamlib/Hamlib/issues/1318
pull/1322/head
Mike Black W9MDB 2023-06-20 09:32:10 -05:00
rodzic c5937b23e5
commit 701aaab1c6
2 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -684,6 +684,7 @@ int icom_init(RIG *rig)
priv->filter = RIG_PASSBAND_NOCHANGE;
priv->x25cmdfails = -1;
priv->x1cx03cmdfails = 0;
priv->serial_USB_echo_off = -1; // unknown at this point
// we can add rigs here that will never use the 0x25 cmd
// some like the 751 don't even reject the command and have to time out
@ -1520,8 +1521,10 @@ int icom_get_freq(RIG *rig, vfo_t vfo, freq_t *freq)
rig_debug(RIG_DEBUG_VERBOSE, "%s called for %s, curr_vfo=%s\n", __func__,
rig_strvfo(vfo), rig_strvfo(rig->state.current_vfo));
rs = &rig->state;
priv = (struct icom_priv_data *) rs->priv;
if (priv->serial_USB_echo_off == -1) icom_get_usb_echo_off(rig);
cmd = C_RD_FREQ;
subcmd = -1;

Wyświetl plik

@ -35,7 +35,7 @@
#include <sys/time.h>
#endif
#define BACKEND_VER "20230616"
#define BACKEND_VER "20230620"
#define ICOM_IS_ID31 rig_is_model(rig, RIG_MODEL_ID31)
#define ICOM_IS_ID51 rig_is_model(rig, RIG_MODEL_ID51)