From f41e07c0e68f70f95f8ba7e22dd488c20c3b0eda Mon Sep 17 00:00:00 2001 From: Michael Black W9MDB Date: Mon, 14 Sep 2020 07:34:02 -0500 Subject: [PATCH] Remove rptr functions from ic7300.c https://github.com/Hamlib/Hamlib/issues/373 --- rigs/icom/ic7300.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rigs/icom/ic7300.c b/rigs/icom/ic7300.c index 68987aef0..880dd0bf5 100644 --- a/rigs/icom/ic7300.c +++ b/rigs/icom/ic7300.c @@ -270,7 +270,7 @@ const struct rig_caps ic7300_caps = RIG_MODEL(RIG_MODEL_IC7300), .model_name = "IC-7300", .mfg_name = "Icom", - .version = BACKEND_VER ".0", + .version = BACKEND_VER ".1", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rig_type = RIG_TYPE_TRANSCEIVER, @@ -414,10 +414,10 @@ const struct rig_caps ic7300_caps = .get_dcd = icom_get_dcd, .set_ts = icom_set_ts, .get_ts = icom_get_ts, - .set_rptr_shift = icom_set_rptr_shift, - .get_rptr_shift = icom_get_rptr_shift, - .set_rptr_offs = icom_set_rptr_offs, - .get_rptr_offs = icom_get_rptr_offs, + .set_rptr_shift = NULL, + .get_rptr_shift = NULL, + .set_rptr_offs = NULL, + .get_rptr_offs = NULL, .set_ctcss_tone = icom_set_ctcss_tone, .get_ctcss_tone = icom_get_ctcss_tone, .set_ctcss_sql = icom_set_ctcss_sql,