From 835b66e7df30f40a1941985727e22662bcb2b77d Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Tue, 6 Jun 2023 23:34:15 -0500 Subject: [PATCH] Give the FT-920 some time during PTT OFF to allow it to occur Fake-It was not working probably due to this as can't set freq while PTT --- rigs/yaesu/ft920.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rigs/yaesu/ft920.c b/rigs/yaesu/ft920.c index 01be2022a..68cc18877 100644 --- a/rigs/yaesu/ft920.c +++ b/rigs/yaesu/ft920.c @@ -407,7 +407,7 @@ const struct rig_caps ft920_caps = RIG_MODEL(RIG_MODEL_FT920), .model_name = "FT-920", .mfg_name = "Yaesu", - .version = "20220529.0", /* YYYYMMDD */ + .version = "20220060.0", /* YYYYMMDD */ .copyright = "LGPL", .status = RIG_STATUS_STABLE, .rig_type = RIG_TYPE_TRANSCEIVER, @@ -2296,6 +2296,7 @@ static int ft920_set_ptt(RIG *rig, vfo_t vfo, ptt_t ptt) { return err; } + hl_usleep(200*1000); // give the rig some time before we try set_freq return RIG_OK; }