[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. ca3e67aa27fcdd68fa880
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2021-03-08 14:11:28
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Hamlib -- Ham radio control libraries". The branch, master has been updated via ca3e67aa27fcdd68fa880056426c80141c14dc73 (commit) from 57ba6800f1bc918653a12612a88ec5abacfe70b4 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit ca3e67aa27fcdd68fa880056426c80141c14dc73 Author: Michael Black W9MDB <mdb...@ya...> Date: Mon Mar 8 08:01:00 2021 -0600 Fix newcat.c set_cmd_validate to return RIG_OK when succesful https://github.com/Hamlib/Hamlib/issues/591 diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index 10062080..4fa5a733 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -9814,7 +9814,9 @@ int newcat_set_cmd(RIG *rig) if (rc == RIG_OK) { + // if we were able to set and and validate we're done rig_debug(RIG_DEBUG_TRACE, "%s: cmd_validate OK\n", __func__); + RETURNFUNC(RIG_OK); } else if (rc == -RIG_EPROTO) { diff --git a/rigs/yaesu/newcat.h b/rigs/yaesu/newcat.h index cc855037..127ebfbb 100644 --- a/rigs/yaesu/newcat.h +++ b/rigs/yaesu/newcat.h @@ -50,7 +50,7 @@ typedef char ncboolean; /* shared function version */ -#define NEWCAT_VER "20210307" +#define NEWCAT_VER "20210308" /* Hopefully large enough for future use, 128 chars plus '\0' */ #define NEWCAT_DATA_LEN 129 ----------------------------------------------------------------------- Summary of changes: rigs/yaesu/newcat.c | 2 ++ rigs/yaesu/newcat.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |