[Hamlib-commits] Hamlib -- Ham radio control libraries branch Hamlib-4.0 updated. 763bb9ae556ba7dc5
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Nate B. <n0...@us...> - 2020-12-05 11:55:40
|
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, Hamlib-4.0 has been updated via 763bb9ae556ba7dc5ee571cab2ebaa9bf65fa1e9 (commit) from 42f9c05c81728cf1137367a3e1954d8948958b19 (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 763bb9ae556ba7dc5ee571cab2ebaa9bf65fa1e9 Author: Michael Black W9MDB <mdb...@ya...> Date: Fri Dec 4 23:32:32 2020 -0600 Fix SH command for ft891 https://github.com/Hamlib/Hamlib/issues/455 (cherry picked from commit 12335d5c254af24950d678a797aef2661ebc4f9d) diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index 27ac0fea..e112876f 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -7261,7 +7261,7 @@ int newcat_set_rx_bandwidth(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width) } /* end else */ - if (is_ftdx101) + if (is_ftdx101 || is_ft891) { snprintf(priv->cmd_str, sizeof(priv->cmd_str), "SH%c0%02d;", main_sub_vfo, w); } diff --git a/rigs/yaesu/newcat.h b/rigs/yaesu/newcat.h index 5c16c129..4443fd03 100644 --- a/rigs/yaesu/newcat.h +++ b/rigs/yaesu/newcat.h @@ -50,7 +50,7 @@ typedef char ncboolean; /* shared function version */ -#define NEWCAT_VER "20201121" +#define NEWCAT_VER "20201204" /* 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, 2 insertions(+), 2 deletions(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |