fix bug in mode setting

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1933 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.4
Stéphane Fillod, F8CFE 2005-02-26 22:30:55 +00:00
rodzic b6c547533d
commit f9af9e4d0d
1 zmienionych plików z 5 dodań i 5 usunięć

Wyświetl plik

@ -1,10 +1,10 @@
/* /*
* frg100.c - (C) Stephane Fillod 2002-2004 * frg100.c - (C) Stephane Fillod 2002-2005
* *
* This shared library provides an API for communicating * This shared library provides an API for communicating
* via serial interface to an FRG-100 using the "CAT" interface * via serial interface to an FRG-100 using the "CAT" interface
* *
* $Id: frg100.c,v 1.3 2004-11-15 15:21:11 fillods Exp $ * $Id: frg100.c,v 1.4 2005-02-26 22:30:55 fillods Exp $
* *
* This library is free software; you can redistribute it and/or modify * This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as * it under the terms of the GNU Library General Public License as
@ -88,7 +88,7 @@ const struct rig_caps frg100_caps = {
.rig_model = RIG_MODEL_FRG100, .rig_model = RIG_MODEL_FRG100,
.model_name = "FRG-100", .model_name = "FRG-100",
.mfg_name = "Yaesu", .mfg_name = "Yaesu",
.version = "0.2", .version = "0.3",
.copyright = "LGPL", .copyright = "LGPL",
.status = RIG_STATUS_BETA, .status = RIG_STATUS_BETA,
.rig_type = RIG_TYPE_RECEIVER, .rig_type = RIG_TYPE_RECEIVER,
@ -312,9 +312,9 @@ int mode2rig(RIG *rig, rmode_t mode, pbwidth_t width)
case RIG_MODE_FM: case RIG_MODE_FM:
if (width != RIG_PASSBAND_NORMAL || if (width != RIG_PASSBAND_NORMAL ||
width < rig_passband_normal(rig, mode)) width < rig_passband_normal(rig, mode))
md = MODE_AMN; md = MODE_FMN;
else else
md = MODE_AMW; md = MODE_FMW;
break; break;
case RIG_MODE_CW: case RIG_MODE_CW:
if (width != RIG_PASSBAND_NORMAL || if (width != RIG_PASSBAND_NORMAL ||