Skip to content

Commit

Permalink
Change ft817 startup timeout to 1500ms to avoid a timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
mdblack98 committed Apr 29, 2023
1 parent e5a6055 commit a349c3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rigs/yaesu/ft817.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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;
}
Expand Down

0 comments on commit a349c3e

Please sign in to comment.