From e57302f27e41f968a182a579dba65bac33fd1c39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Fillod=2C=20F8CFE?= Date: Tue, 17 Dec 2002 22:46:18 +0000 Subject: [PATCH] filter list fix git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1313 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- kenwood/ts450s.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/kenwood/ts450s.c b/kenwood/ts450s.c index eccadebac..7566b8690 100644 --- a/kenwood/ts450s.c +++ b/kenwood/ts450s.c @@ -2,7 +2,7 @@ * Hamlib Kenwood backend - TS450S description * Copyright (c) 2000-2002 by Stephane Fillod * - * $Id: ts450s.c,v 1.12 2002-12-17 12:08:05 pa4tu Exp $ + * $Id: ts450s.c,v 1.13 2002-12-17 22:46:18 fillods 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 @@ -238,11 +238,11 @@ const struct rig_caps ts450s_caps = { }, /* mode/filter list, remember: order matters! */ .filters = { - {RIG_MODE_SSB, kHz(2.2)}, - {RIG_MODE_CW, Hz(200)}, - {RIG_MODE_RTTY, Hz(500)}, - {RIG_MODE_AM, kHz(9)}, - {RIG_MODE_FM, kHz(14)}, + {RIG_MODE_SSB, kHz(2.4)}, + {RIG_MODE_CW|RIG_MODE_RTTY, Hz(500)}, + {RIG_MODE_AM, kHz(6)}, + {RIG_MODE_FM, kHz(12)}, + {RIG_MODE_FM, kHz(6)}, RIG_FLT_END, }, .priv = (void *)&ts450_priv_caps,