From 181831bbd81c61b3d3aced3a08c8a74213d88235 Mon Sep 17 00:00:00 2001 From: Michael Black W9MDB Date: Sun, 5 Jan 2025 16:46:30 -0600 Subject: [PATCH] Revert "Remove get_powerstat from ic785x.c -- rig does not support querying power status" Wrong rig This reverts commit 61f3a817d339d7010b192f6a588bfe13620c803c. --- rigs/icom/ic785x.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rigs/icom/ic785x.c b/rigs/icom/ic785x.c index aaeaa14d2..a2d225bb6 100644 --- a/rigs/icom/ic785x.c +++ b/rigs/icom/ic785x.c @@ -249,7 +249,7 @@ struct rig_caps ic785x_caps = RIG_MODEL(RIG_MODEL_IC785x), .model_name = "IC-7850/7851", .mfg_name = "Icom", - .version = BACKEND_VER ".9", + .version = BACKEND_VER ".8", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rig_type = RIG_TYPE_TRANSCEIVER, @@ -489,7 +489,7 @@ struct rig_caps ic785x_caps = .set_split_vfo = icom_set_split_vfo, .get_split_vfo = icom_get_split_vfo, .set_powerstat = icom_set_powerstat, -// .get_powerstat = icom_get_powerstat, + .get_powerstat = icom_get_powerstat, .send_morse = icom_send_morse, .stop_morse = icom_stop_morse, .wait_morse = rig_wait_morse,