diff --git a/barrett/barrett.c b/barrett/barrett.c index 422b0b19f..eeddcc234 100644 --- a/barrett/barrett.c +++ b/barrett/barrett.c @@ -410,7 +410,7 @@ int barrett_set_freq(RIG *rig, vfo_t vfo, freq_t freq) // If we are not explicity asking for VFO_B then we'll set the receive side also if (vfo != RIG_VFO_B) { - sprintf((char *) cmd_buf, "PR%08.0f", freq); + sprintf((char *) cmd_buf, "TR%08.0f", freq); char *response = NULL; retval = barrett_transaction(rig, cmd_buf, 0, &response); @@ -429,7 +429,7 @@ int barrett_set_freq(RIG *rig, vfo_t vfo, freq_t freq) if (priv->split == 0 || vfo == RIG_VFO_B) { // if we aren't in split mode we have to set the TX VFO too - sprintf((char *) cmd_buf, "PT%08.0f", freq); + sprintf((char *) cmd_buf, "TT%08.0f", freq); char *response = NULL; retval = barrett_transaction(rig, cmd_buf, 0, &response); @@ -648,7 +648,7 @@ int barrett_set_split_freq(RIG *rig, vfo_t vfo, freq_t tx_freq) rig_debug(RIG_DEBUG_VERBOSE, "%s: vfo=%s freq=%g\n", __FUNCTION__, rig_strvfo(vfo), tx_freq); - sprintf((char *) cmd_buf, "PT%08.0f" EOM, tx_freq); + sprintf((char *) cmd_buf, "TT%08.0f" EOM, tx_freq); int retval = barrett_transaction(rig, cmd_buf, 0, NULL); diff --git a/barrett/barrett.h b/barrett/barrett.h index 8235a96a3..b32e8c54a 100644 --- a/barrett/barrett.h +++ b/barrett/barrett.h @@ -28,7 +28,7 @@ #include #endif -#define BACKEND_VER "0.1" +#define BACKEND_VER "0.2" #define EOM "\x0d" #define TRUE 1 diff --git a/yaesu/ft1000d.h b/yaesu/ft1000d.h index 1a606ec29..4bd26e5cb 100644 --- a/yaesu/ft1000d.h +++ b/yaesu/ft1000d.h @@ -77,7 +77,7 @@ #define FT1000D_PACING_INTERVAL 5 #define FT1000D_PACING_DEFAULT_VALUE 0 -#define FT1000D_WRITE_DELAY 175 +#define FT1000D_WRITE_DELAY 0 /* Delay sequential fast writes */