[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. fa2520c894c91f23c1c7b
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: n0nb <n0...@us...> - 2025-05-03 02:45:07
|
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 fa2520c894c91f23c1c7be58e7ee4566e1dc102c (commit) via d893974b3d3fb26cfb46e3f85adaa1b0f9da9ac2 (commit) from fe3bb8b84a47ec4e928e65fc5a9a104b89747162 (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 fa2520c894c91f23c1c7be58e7ee4566e1dc102c Merge: fe3bb8b84 d893974b3 Author: Nate Bargmann <n0...@n0...> Date: Fri May 2 21:43:46 2025 -0500 Merge pull request #1723 from jj1bdx/jj1bdx-ic705-meters Fix IC-705 COMP, VD, and ID meter calibration values commit d893974b3d3fb26cfb46e3f85adaa1b0f9da9ac2 Author: Kenji Rikitake <ken...@ac...> Date: Fri May 2 03:11:27 2025 +0000 Fix IC-705 COMP, VD, and ID meter calibration values * Define IC-705-specific values ported from flrig-2.0.05.93 diff --git a/rigs/icom/ic7300.c b/rigs/icom/ic7300.c index 16e3602db..a43939060 100644 --- a/rigs/icom/ic7300.c +++ b/rigs/icom/ic7300.c @@ -170,6 +170,38 @@ int ic9700_set_vfo(RIG *rig, vfo_t vfo); { 255, 12.0f } \ } } +// flrig-2.0.05.93 +#define IC705_COMP_METER_CAL { 12, \ + { \ + { 0, 0.0f }, \ + { 11, 0.0f }, \ + { 34, 3.0f }, \ + { 58, 6.0f }, \ + { 81, 9.0f }, \ + { 104, 12.0f }, \ + { 128, 15.0f }, \ + { 151, 18.0f }, \ + { 174, 21.0f }, \ + { 197, 24.0f }, \ + { 221, 27.0f }, \ + { 244, 30.0f } \ + } } + +// flrig-2.0.05.93 +#define IC705_VD_METER_CAL { 2, \ + { \ + { 0, 0.0f }, \ + { 241, 16.0f } \ + } } + + +// flrig-2.0.05.93 +#define IC705_ID_METER_CAL { 2, \ + { \ + { 0, 0.0f }, \ + { 241, 4.0f } \ + } } + /* * IC9700 items that differ from IC7300 */ @@ -1473,9 +1505,9 @@ struct rig_caps ic705_caps = .swr_cal = IC7300_SWR_CAL, .alc_cal = IC7300_ALC_CAL, .rfpower_meter_cal = IC705_RFPOWER_METER_CAL, - .comp_meter_cal = IC7300_COMP_METER_CAL, - .vd_meter_cal = IC7300_VD_METER_CAL, - .id_meter_cal = IC7300_ID_METER_CAL, + .comp_meter_cal = IC705_COMP_METER_CAL, + .vd_meter_cal = IC705_VD_METER_CAL, + .id_meter_cal = IC705_ID_METER_CAL, .spectrum_scopes = { { ----------------------------------------------------------------------- Summary of changes: rigs/icom/ic7300.c | 38 +++++++++++++++++++++++++++++++++++--- 1 file changed, 35 insertions(+), 3 deletions(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |