From fa7289995c29719739edd13d3e945248adc0905a Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Mon, 2 Jan 2023 08:48:59 -0600 Subject: [PATCH] Remove get_powerstat from Icom ID-5100 -- does not have the ability to get power status https://github.com/Hamlib/Hamlib/issues/1201 --- rigs/icom/id5100.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rigs/icom/id5100.c b/rigs/icom/id5100.c index e9769737c..2448ff8fb 100644 --- a/rigs/icom/id5100.c +++ b/rigs/icom/id5100.c @@ -86,7 +86,7 @@ const struct rig_caps id5100_caps = RIG_MODEL(RIG_MODEL_ID5100), .model_name = "ID-5100", .mfg_name = "Icom", - .version = BACKEND_VER ".1", + .version = BACKEND_VER ".2", .copyright = "LGPL", .status = RIG_STATUS_BETA, .rig_type = RIG_TYPE_MOBILE, @@ -189,7 +189,7 @@ const struct rig_caps id5100_caps = .set_vfo = icom_set_vfo, .set_powerstat = icom_set_powerstat, - .get_powerstat = icom_get_powerstat, + //.get_powerstat = icom_get_powerstat, // ID-5100 cannot get power status .decode_event = icom_decode_event, .set_func = icom_set_func,