From 4ba3a025124669776f88e29af6d84e035ac903cc Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Sat, 22 Apr 2023 11:22:16 -0500 Subject: [PATCH] FT-817 add 100ms delay during ft817_open to avoid initial cmd error during startup https://github.com/Hamlib/Hamlib/issues/1278 --- rigs/yaesu/ft817.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rigs/yaesu/ft817.c b/rigs/yaesu/ft817.c index d87efa05a..efc84ea6c 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 = "20230421.0", + .version = "20230422.0", .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rig_type = RIG_TYPE_TRANSCEIVER, @@ -623,6 +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 return RIG_OK; }