From 6fc6310806042608fc5538adc5e2dc3ccef669fe Mon Sep 17 00:00:00 2001 From: "Terry Embry, KJ4EED" Date: Sat, 6 Dec 2008 13:28:32 +0000 Subject: [PATCH] Added get_ptt, set_split_vfo, get_split_vfo, set_rit git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2491 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- yaesu/ft450.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/yaesu/ft450.c b/yaesu/ft450.c index 61d5b9800..58934bb37 100644 --- a/yaesu/ft450.c +++ b/yaesu/ft450.c @@ -8,7 +8,7 @@ * via serial interface to an FT-450 using the "CAT" interface * * - * $Id: ft450.c,v 1.4 2008-11-01 22:39:07 fillods Exp $ + * $Id: ft450.c,v 1.5 2008-12-06 13:28:32 mrtembry Exp $ * * * This library is free software; you can redistribute it and/or @@ -165,11 +165,11 @@ const struct rig_caps ft450_caps = { .set_vfo = newcat_set_vfo, .get_vfo = newcat_get_vfo, .set_ptt = newcat_set_ptt, -// .get_ptt = newcat_get_ptt, -// .set_split_vfo = newcat_set_split_vfo, -// .get_split_vfo = newcat_get_split_vfo, -// .set_rit = newcat_set_rit, -// .get_rit = newcat_get_rit, + .get_ptt = newcat_get_ptt, + .set_split_vfo = newcat_set_split_vfo, + .get_split_vfo = newcat_get_split_vfo, + .set_rit = newcat_set_rit, + .get_rit = newcat_get_rit, .get_func = newcat_get_func, .set_func = newcat_set_func, .get_level = newcat_get_level,