this rig does not have a command for reading IF bandwidth

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1315 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.1.4
Joop Stakenborg, PG4I 2002-12-20 09:49:14 +00:00
rodzic 6acb2908bd
commit 3dd64d2cac
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib Kenwood backend - TS450S description
* Copyright (c) 2000-2002 by Stephane Fillod
*
* $Id: ts450s.c,v 1.13 2002-12-17 22:46:18 fillods Exp $
* $Id: ts450s.c,v 1.14 2002-12-20 09:49:14 pa4tu Exp $
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
@ -72,7 +72,8 @@ static int ts450s_get_mode(RIG *rig, vfo_t vfo, rmode_t *mode, pbwidth_t *width)
return -RIG_ERJCTED;
}
*width = RIG_PASSBAND_NORMAL; /* FIXME */
/* this rig does not have a command for reading IF bandwidth */
*width = rig_passband_normal(rig, *mode);
switch (infobuf[29]) {
case MD_CW: *mode = RIG_MODE_CW; break;