From 047242f2d3359f66c99bda1f469a07db221c2e99 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Mon, 20 May 2024 16:45:23 -0500 Subject: [PATCH] Ignore all ack replies for FT817/FT818 as there are none documented. https://github.com/Hamlib/Hamlib/issues/1553 --- rigs/yaesu/ft817.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rigs/yaesu/ft817.c b/rigs/yaesu/ft817.c index 4d239014f..df9a0debc 100644 --- a/rigs/yaesu/ft817.c +++ b/rigs/yaesu/ft817.c @@ -294,7 +294,7 @@ struct rig_caps ft817_caps = RIG_MODEL(RIG_MODEL_FT817), .model_name = "FT-817", .mfg_name = "Yaesu", - .version = "20230607.0", + .version = "20240520.0", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rig_type = RIG_TYPE_TRANSCEIVER, @@ -1505,12 +1505,14 @@ int ft817_read_ack(RIG *rig) return RIG_OK; // let it continue without checking for ack now } - rig_debug(RIG_DEBUG_TRACE, "%s: ack received (%d)\n", __func__, dummy); + rig_debug(RIG_DEBUG_TRACE, "%s: ack value=0x%x\n", __func__, dummy); +#if 0 // don't know of any reject codes -- none documented if (dummy != 0) { return -RIG_ERJCTED; } +#endif } return RIG_OK;