Fix response length expected error in K3 back end

Hamlib-3.0
Bill Somerville 2014-10-20 13:43:34 +01:00
rodzic 7d01e0fc4d
commit 12e88dc33d
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -751,7 +751,7 @@ int k3_get_split_mode(RIG *rig, vfo_t vfo, rmode_t *tx_mode, pbwidth_t *tx_width
/* The K3 is not limited to specific filter widths so we can query
* the actual bandwidth using the BW$ command
*/
err = kenwood_safe_transaction(rig, "BW$", buf, KENWOOD_MAX_BUF_LEN, 9);
err = kenwood_safe_transaction(rig, "BW$", buf, KENWOOD_MAX_BUF_LEN, 8);
if (err != RIG_OK) {
rig_debug(RIG_DEBUG_VERBOSE, "%s: Cannot read K3 BW$ value\n", __func__);
return err;