From 2889f49392f1385e3fd5e63ea3d4e68f35b08980 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Sun, 27 Apr 2014 14:17:42 +0100 Subject: [PATCH] Fix Icom IC-756Pro mode get/set. The IC-756Pro doesn't have DATA mode but the capabilities incorrectly used commands to get/set DATA sub modes. --- icom/ic756.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icom/ic756.c b/icom/ic756.c index 6e1635b00..3a3c0bab5 100644 --- a/icom/ic756.c +++ b/icom/ic756.c @@ -360,8 +360,8 @@ const struct rig_caps ic756pro_caps = { .set_freq = icom_set_freq, .get_freq = icom_get_freq, -.set_mode = icom_set_mode_with_data, -.get_mode = icom_get_mode_with_data, +.set_mode = icom_set_mode, +.get_mode = icom_get_mode, .set_vfo = icom_set_vfo, .set_ant = icom_set_ant, .get_ant = icom_get_ant,