Fixed a bug that caused incorrect frequency retrieval.

Bumped ft-767GX to BETA status.
Set myself as maintainer for the ft-767gx module.


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2766 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.11
Steve Conklin, AI4QR 2009-11-06 19:31:47 +00:00
rodzic 581359dca0
commit fa7ecdce46
2 zmienionych plików z 5 dodań i 4 usunięć

Wyświetl plik

@ -165,8 +165,7 @@ M:
C: Frank Singleton, VK3FCS C: Frank Singleton, VK3FCS
[yaesu: ft767gx] [yaesu: ft767gx]
M: M: Steve Conklin, AI4QR
C: Steve Conklin, AI4QR
[yaesu: ft817] [yaesu: ft817]
M: Chris Karpinsky, AA1VL M: Chris Karpinsky, AA1VL

Wyświetl plik

@ -254,9 +254,9 @@ const struct rig_caps ft767gx_caps = {
.rig_model = RIG_MODEL_FT767, .rig_model = RIG_MODEL_FT767,
.model_name = "FT-767GX", .model_name = "FT-767GX",
.mfg_name = "Yaesu", .mfg_name = "Yaesu",
.version = "0.1", .version = "0.2",
.copyright = "LGPL", .copyright = "LGPL",
.status = RIG_STATUS_ALPHA, .status = RIG_STATUS_BETA,
.rig_type = RIG_TYPE_TRANSCEIVER, .rig_type = RIG_TYPE_TRANSCEIVER,
.ptt_type = RIG_PTT_RIG, .ptt_type = RIG_PTT_RIG,
.dcd_type = RIG_DCD_NONE, .dcd_type = RIG_DCD_NONE,
@ -552,6 +552,8 @@ int ft767_get_freq(RIG *rig, vfo_t vfo, freq_t *freq)
return -RIG_EINVAL; /* sorry, wrong VFO */ return -RIG_EINVAL; /* sorry, wrong VFO */
} }
*freq *= 10.0; /* rig reads in 10 Hz increments*/
return RIG_OK; return RIG_OK;
} }