diff --git a/rigs/kenwood/ic10.h b/rigs/kenwood/ic10.h index bb1902880..709de294a 100644 --- a/rigs/kenwood/ic10.h +++ b/rigs/kenwood/ic10.h @@ -22,7 +22,7 @@ #ifndef _IC10_H #define _IC10_H 1 -#define IC10_VER ".1" +#define IC10_VER ".2" int ic10_cmd_trim (char *data, int data_len); int ic10_transaction (RIG *rig, const char *cmd, int cmd_len, char *data, int *data_len); diff --git a/rigs/kenwood/ts811.c b/rigs/kenwood/ts811.c index 2d6ba47af..2a4d3b558 100644 --- a/rigs/kenwood/ts811.c +++ b/rigs/kenwood/ts811.c @@ -27,7 +27,6 @@ #include #include "kenwood.h" -#include "ic10.h" #define TS811_ALL_MODES (RIG_MODE_CW|RIG_MODE_SSB|RIG_MODE_FM) diff --git a/rigs/kenwood/ts870s.c b/rigs/kenwood/ts870s.c index 5adc0930b..b05ddbc99 100644 --- a/rigs/kenwood/ts870s.c +++ b/rigs/kenwood/ts870s.c @@ -198,7 +198,6 @@ static int ts870s_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width) { char buf[16]; int kmode, retval; - pbwidth_t mode_default_hpf; switch (mode) { @@ -236,6 +235,7 @@ static int ts870s_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width) { if (RIG_MODE_USB == mode || RIG_MODE_LSB == mode || RIG_MODE_AM == mode) { + pbwidth_t mode_default_hpf; /* we assume the HPF is set to default and set the LPF to give the best approximaation of the requested width */ if (RIG_MODE_AM == mode) diff --git a/rigs/kenwood/ts940.c b/rigs/kenwood/ts940.c index a34e90932..f5baa2c5d 100644 --- a/rigs/kenwood/ts940.c +++ b/rigs/kenwood/ts940.c @@ -189,7 +189,6 @@ const struct rig_caps ts940_caps = .scan = kenwood_scan, .set_channel = kenwood_set_channel, .get_channel = kenwood_get_channel, - /* .decode_event = ic10_decode_event, */ };