Skip to content

Commit fa2520c

Browse files
authored
Merge pull request Hamlib#1723 from jj1bdx/jj1bdx-ic705-meters
Fix IC-705 COMP, VD, and ID meter calibration values
2 parents fe3bb8b + d893974 commit fa2520c

File tree

1 file changed

+35
-3
lines changed

1 file changed

+35
-3
lines changed

rigs/icom/ic7300.c

+35-3
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,38 @@ int ic9700_set_vfo(RIG *rig, vfo_t vfo);
170170
{ 255, 12.0f } \
171171
} }
172172

173+
// flrig-2.0.05.93
174+
#define IC705_COMP_METER_CAL { 12, \
175+
{ \
176+
{ 0, 0.0f }, \
177+
{ 11, 0.0f }, \
178+
{ 34, 3.0f }, \
179+
{ 58, 6.0f }, \
180+
{ 81, 9.0f }, \
181+
{ 104, 12.0f }, \
182+
{ 128, 15.0f }, \
183+
{ 151, 18.0f }, \
184+
{ 174, 21.0f }, \
185+
{ 197, 24.0f }, \
186+
{ 221, 27.0f }, \
187+
{ 244, 30.0f } \
188+
} }
189+
190+
// flrig-2.0.05.93
191+
#define IC705_VD_METER_CAL { 2, \
192+
{ \
193+
{ 0, 0.0f }, \
194+
{ 241, 16.0f } \
195+
} }
196+
197+
198+
// flrig-2.0.05.93
199+
#define IC705_ID_METER_CAL { 2, \
200+
{ \
201+
{ 0, 0.0f }, \
202+
{ 241, 4.0f } \
203+
} }
204+
173205
/*
174206
* IC9700 items that differ from IC7300
175207
*/
@@ -1473,9 +1505,9 @@ struct rig_caps ic705_caps =
14731505
.swr_cal = IC7300_SWR_CAL,
14741506
.alc_cal = IC7300_ALC_CAL,
14751507
.rfpower_meter_cal = IC705_RFPOWER_METER_CAL,
1476-
.comp_meter_cal = IC7300_COMP_METER_CAL,
1477-
.vd_meter_cal = IC7300_VD_METER_CAL,
1478-
.id_meter_cal = IC7300_ID_METER_CAL,
1508+
.comp_meter_cal = IC705_COMP_METER_CAL,
1509+
.vd_meter_cal = IC705_VD_METER_CAL,
1510+
.id_meter_cal = IC705_ID_METER_CAL,
14791511

14801512
.spectrum_scopes = {
14811513
{

0 commit comments

Comments
 (0)