From a349c3e07bcc40f30c43a1c465cd8b4030a1055f Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Sat, 29 Apr 2023 07:57:07 -0500 Subject: [PATCH] Change ft817 startup timeout to 1500ms to avoid a timeout https://github.com/Hamlib/Hamlib/issues/1278 --- rigs/yaesu/ft817.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rigs/yaesu/ft817.c b/rigs/yaesu/ft817.c index c81b6be01..19c4da6bc 100644 --- a/rigs/yaesu/ft817.c +++ b/rigs/yaesu/ft817.c @@ -292,7 +292,7 @@ const struct rig_caps ft817_caps = RIG_MODEL(RIG_MODEL_FT817), .model_name = "FT-817", .mfg_name = "Yaesu", - .version = "20230429.0", + .version = "20230429.1", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rig_type = RIG_TYPE_TRANSCEIVER, @@ -623,7 +623,7 @@ static int ft817_cleanup(RIG *rig) static int ft817_open(RIG *rig) { rig_debug(RIG_DEBUG_VERBOSE, "%s: called \n", __func__); - hl_usleep(100*1000); // rig needs a bit to allow commands to come through + hl_usleep(1500*1000); // rig needs a bit to allow commands to come through on startup return RIG_OK; }